|
@@ -1092,15 +1092,14 @@ static void annotate__branch_printf(struct block_range *br, u64 addr)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-static int disasm_line__print(struct disasm_line *dl, u64 start)
|
|
|
|
|
|
+static int disasm_line__print(struct disasm_line *dl, u64 start, int addr_fmt_width)
|
|
{
|
|
{
|
|
s64 offset = dl->al.offset;
|
|
s64 offset = dl->al.offset;
|
|
const u64 addr = start + offset;
|
|
const u64 addr = start + offset;
|
|
struct block_range *br;
|
|
struct block_range *br;
|
|
|
|
|
|
br = block_range__find(addr);
|
|
br = block_range__find(addr);
|
|
- color_fprintf(stdout, annotate__address_color(br), " %" PRIx64 ":", addr);
|
|
|
|
|
|
+ color_fprintf(stdout, annotate__address_color(br), " %*" PRIx64 ":", addr_fmt_width, addr);
|
|
color_fprintf(stdout, annotate__asm_color(br), "%s", dl->al.line);
|
|
color_fprintf(stdout, annotate__asm_color(br), "%s", dl->al.line);
|
|
annotate__branch_printf(br, addr);
|
|
annotate__branch_printf(br, addr);
|
|
return 0;
|
|
return 0;
|
|
@@ -1109,7 +1108,7 @@ static int disasm_line__print(struct disasm_line *dl, u64 start)
|
|
static int
|
|
static int
|
|
annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start,
|
|
annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start,
|
|
struct perf_evsel *evsel, u64 len, int min_pcnt, int printed,
|
|
struct perf_evsel *evsel, u64 len, int min_pcnt, int printed,
|
|
- int max_lines, struct annotation_line *queue)
|
|
|
|
|
|
+ int max_lines, struct annotation_line *queue, int addr_fmt_width)
|
|
{
|
|
{
|
|
struct disasm_line *dl = container_of(al, struct disasm_line, al);
|
|
struct disasm_line *dl = container_of(al, struct disasm_line, al);
|
|
static const char *prev_line;
|
|
static const char *prev_line;
|
|
@@ -1139,7 +1138,7 @@ annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start
|
|
if (queue == al)
|
|
if (queue == al)
|
|
break;
|
|
break;
|
|
annotation_line__print(queue, sym, start, evsel, len,
|
|
annotation_line__print(queue, sym, start, evsel, len,
|
|
- 0, 0, 1, NULL);
|
|
|
|
|
|
+ 0, 0, 1, NULL, addr_fmt_width);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1174,9 +1173,9 @@ annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start
|
|
color_fprintf(stdout, color, " %7.2f", sample->percent);
|
|
color_fprintf(stdout, color, " %7.2f", sample->percent);
|
|
}
|
|
}
|
|
|
|
|
|
- printf(" : ");
|
|
|
|
|
|
+ printf(" : ");
|
|
|
|
|
|
- disasm_line__print(dl, start);
|
|
|
|
|
|
+ disasm_line__print(dl, start, addr_fmt_width);
|
|
printf("\n");
|
|
printf("\n");
|
|
} else if (max_lines && printed >= max_lines)
|
|
} else if (max_lines && printed >= max_lines)
|
|
return 1;
|
|
return 1;
|
|
@@ -1192,7 +1191,7 @@ annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start
|
|
if (!*al->line)
|
|
if (!*al->line)
|
|
printf(" %*s:\n", width, " ");
|
|
printf(" %*s:\n", width, " ");
|
|
else
|
|
else
|
|
- printf(" %*s: %s\n", width, " ", al->line);
|
|
|
|
|
|
+ printf(" %*s: %*s %s\n", width, " ", addr_fmt_width, " ", al->line);
|
|
}
|
|
}
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
@@ -1796,6 +1795,19 @@ static void symbol__annotate_hits(struct symbol *sym, struct perf_evsel *evsel)
|
|
printf("%*s: %" PRIu64 "\n", BITS_PER_LONG / 2, "h->nr_samples", h->nr_samples);
|
|
printf("%*s: %" PRIu64 "\n", BITS_PER_LONG / 2, "h->nr_samples", h->nr_samples);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static int annotated_source__addr_fmt_width(struct list_head *lines, u64 start)
|
|
|
|
+{
|
|
|
|
+ char bf[32];
|
|
|
|
+ struct annotation_line *line;
|
|
|
|
+
|
|
|
|
+ list_for_each_entry_reverse(line, lines, node) {
|
|
|
|
+ if (line->offset != -1)
|
|
|
|
+ return scnprintf(bf, sizeof(bf), "%" PRIx64, start + line->offset);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
int symbol__annotate_printf(struct symbol *sym, struct map *map,
|
|
int symbol__annotate_printf(struct symbol *sym, struct map *map,
|
|
struct perf_evsel *evsel, bool full_paths,
|
|
struct perf_evsel *evsel, bool full_paths,
|
|
int min_pcnt, int max_lines, int context)
|
|
int min_pcnt, int max_lines, int context)
|
|
@@ -1808,7 +1820,7 @@ int symbol__annotate_printf(struct symbol *sym, struct map *map,
|
|
struct sym_hist *h = annotation__histogram(notes, evsel->idx);
|
|
struct sym_hist *h = annotation__histogram(notes, evsel->idx);
|
|
struct annotation_line *pos, *queue = NULL;
|
|
struct annotation_line *pos, *queue = NULL;
|
|
u64 start = map__rip_2objdump(map, sym->start);
|
|
u64 start = map__rip_2objdump(map, sym->start);
|
|
- int printed = 2, queue_len = 0;
|
|
|
|
|
|
+ int printed = 2, queue_len = 0, addr_fmt_width;
|
|
int more = 0;
|
|
int more = 0;
|
|
u64 len;
|
|
u64 len;
|
|
int width = symbol_conf.show_total_period ? 12 : 8;
|
|
int width = symbol_conf.show_total_period ? 12 : 8;
|
|
@@ -1839,6 +1851,8 @@ int symbol__annotate_printf(struct symbol *sym, struct map *map,
|
|
if (verbose > 0)
|
|
if (verbose > 0)
|
|
symbol__annotate_hits(sym, evsel);
|
|
symbol__annotate_hits(sym, evsel);
|
|
|
|
|
|
|
|
+ addr_fmt_width = annotated_source__addr_fmt_width(¬es->src->source, start);
|
|
|
|
+
|
|
list_for_each_entry(pos, ¬es->src->source, node) {
|
|
list_for_each_entry(pos, ¬es->src->source, node) {
|
|
int err;
|
|
int err;
|
|
|
|
|
|
@@ -1849,7 +1863,7 @@ int symbol__annotate_printf(struct symbol *sym, struct map *map,
|
|
|
|
|
|
err = annotation_line__print(pos, sym, start, evsel, len,
|
|
err = annotation_line__print(pos, sym, start, evsel, len,
|
|
min_pcnt, printed, max_lines,
|
|
min_pcnt, printed, max_lines,
|
|
- queue);
|
|
|
|
|
|
+ queue, addr_fmt_width);
|
|
|
|
|
|
switch (err) {
|
|
switch (err) {
|
|
case 0:
|
|
case 0:
|