Commit a17c4ca0 authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo

perf annotate: Add annotation_line struct

In order to make the annotation support generic, addadding 'struct
annotation_line', which will hold generic data common to annotation
sources (such as the one for python scripts, coming on upcoming
patches).

Having this, we can add different annotation line support other than
objdump disasm.
Signed-off-by: default avatarJiri Olsa <jolsa@kernel.org>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20171011150158.11895-3-jolsa@kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent d3dbf43c
...@@ -84,7 +84,7 @@ static bool disasm_line__filter(struct ui_browser *browser __maybe_unused, ...@@ -84,7 +84,7 @@ static bool disasm_line__filter(struct ui_browser *browser __maybe_unused,
void *entry) void *entry)
{ {
if (annotate_browser__opts.hide_src_code) { if (annotate_browser__opts.hide_src_code) {
struct disasm_line *dl = list_entry(entry, struct disasm_line, node); struct disasm_line *dl = list_entry(entry, struct disasm_line, al.node);
return dl->offset == -1; return dl->offset == -1;
} }
...@@ -123,7 +123,7 @@ static int annotate_browser__cycles_width(struct annotate_browser *ab) ...@@ -123,7 +123,7 @@ static int annotate_browser__cycles_width(struct annotate_browser *ab)
static void annotate_browser__write(struct ui_browser *browser, void *entry, int row) static void annotate_browser__write(struct ui_browser *browser, void *entry, int row)
{ {
struct annotate_browser *ab = container_of(browser, struct annotate_browser, b); struct annotate_browser *ab = container_of(browser, struct annotate_browser, b);
struct disasm_line *dl = list_entry(entry, struct disasm_line, node); struct disasm_line *dl = list_entry(entry, struct disasm_line, al.node);
struct browser_disasm_line *bdl = disasm_line__browser(dl); struct browser_disasm_line *bdl = disasm_line__browser(dl);
bool current_entry = ui_browser__is_current_entry(browser, row); bool current_entry = ui_browser__is_current_entry(browser, row);
bool change_color = (!annotate_browser__opts.hide_src_code && bool change_color = (!annotate_browser__opts.hide_src_code &&
...@@ -286,7 +286,7 @@ static bool disasm_line__is_valid_jump(struct disasm_line *dl, struct symbol *sy ...@@ -286,7 +286,7 @@ static bool disasm_line__is_valid_jump(struct disasm_line *dl, struct symbol *sy
static bool is_fused(struct annotate_browser *ab, struct disasm_line *cursor) static bool is_fused(struct annotate_browser *ab, struct disasm_line *cursor)
{ {
struct disasm_line *pos = list_prev_entry(cursor, node); struct disasm_line *pos = list_prev_entry(cursor, al.node);
const char *name; const char *name;
if (!pos) if (!pos)
...@@ -404,16 +404,16 @@ static void annotate_browser__set_top(struct annotate_browser *browser, ...@@ -404,16 +404,16 @@ static void annotate_browser__set_top(struct annotate_browser *browser,
browser->b.top_idx = browser->b.index = idx; browser->b.top_idx = browser->b.index = idx;
while (browser->b.top_idx != 0 && back != 0) { while (browser->b.top_idx != 0 && back != 0) {
pos = list_entry(pos->node.prev, struct disasm_line, node); pos = list_entry(pos->al.node.prev, struct disasm_line, al.node);
if (disasm_line__filter(&browser->b, &pos->node)) if (disasm_line__filter(&browser->b, &pos->al.node))
continue; continue;
--browser->b.top_idx; --browser->b.top_idx;
--back; --back;
} }
browser->b.top = pos; browser->b.top = &pos->al;
browser->b.navkeypressed = true; browser->b.navkeypressed = true;
} }
...@@ -446,7 +446,7 @@ static void annotate_browser__calc_percent(struct annotate_browser *browser, ...@@ -446,7 +446,7 @@ static void annotate_browser__calc_percent(struct annotate_browser *browser,
pthread_mutex_lock(&notes->lock); pthread_mutex_lock(&notes->lock);
list_for_each_entry(pos, &notes->src->source, node) { list_for_each_entry(pos, &notes->src->source, al.node) {
struct browser_disasm_line *bpos = disasm_line__browser(pos); struct browser_disasm_line *bpos = disasm_line__browser(pos);
const char *path = NULL; const char *path = NULL;
double max_percent = 0.0; double max_percent = 0.0;
...@@ -492,7 +492,7 @@ static bool annotate_browser__toggle_source(struct annotate_browser *browser) ...@@ -492,7 +492,7 @@ static bool annotate_browser__toggle_source(struct annotate_browser *browser)
off_t offset = browser->b.index - browser->b.top_idx; off_t offset = browser->b.index - browser->b.top_idx;
browser->b.seek(&browser->b, offset, SEEK_CUR); browser->b.seek(&browser->b, offset, SEEK_CUR);
dl = list_entry(browser->b.top, struct disasm_line, node); dl = list_entry(browser->b.top, struct disasm_line, al.node);
bdl = disasm_line__browser(dl); bdl = disasm_line__browser(dl);
if (annotate_browser__opts.hide_src_code) { if (annotate_browser__opts.hide_src_code) {
...@@ -589,10 +589,10 @@ struct disasm_line *annotate_browser__find_offset(struct annotate_browser *brows ...@@ -589,10 +589,10 @@ struct disasm_line *annotate_browser__find_offset(struct annotate_browser *brows
struct disasm_line *pos; struct disasm_line *pos;
*idx = 0; *idx = 0;
list_for_each_entry(pos, &notes->src->source, node) { list_for_each_entry(pos, &notes->src->source, al.node) {
if (pos->offset == offset) if (pos->offset == offset)
return pos; return pos;
if (!disasm_line__filter(&browser->b, &pos->node)) if (!disasm_line__filter(&browser->b, &pos->al.node))
++*idx; ++*idx;
} }
...@@ -630,8 +630,8 @@ struct disasm_line *annotate_browser__find_string(struct annotate_browser *brows ...@@ -630,8 +630,8 @@ struct disasm_line *annotate_browser__find_string(struct annotate_browser *brows
struct disasm_line *pos = browser->selection; struct disasm_line *pos = browser->selection;
*idx = browser->b.index; *idx = browser->b.index;
list_for_each_entry_continue(pos, &notes->src->source, node) { list_for_each_entry_continue(pos, &notes->src->source, al.node) {
if (disasm_line__filter(&browser->b, &pos->node)) if (disasm_line__filter(&browser->b, &pos->al.node))
continue; continue;
++*idx; ++*idx;
...@@ -669,8 +669,8 @@ struct disasm_line *annotate_browser__find_string_reverse(struct annotate_browse ...@@ -669,8 +669,8 @@ struct disasm_line *annotate_browser__find_string_reverse(struct annotate_browse
struct disasm_line *pos = browser->selection; struct disasm_line *pos = browser->selection;
*idx = browser->b.index; *idx = browser->b.index;
list_for_each_entry_continue_reverse(pos, &notes->src->source, node) { list_for_each_entry_continue_reverse(pos, &notes->src->source, al.node) {
if (disasm_line__filter(&browser->b, &pos->node)) if (disasm_line__filter(&browser->b, &pos->al.node))
continue; continue;
--*idx; --*idx;
...@@ -1134,7 +1134,7 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map, ...@@ -1134,7 +1134,7 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map,
notes = symbol__annotation(sym); notes = symbol__annotation(sym);
browser.start = map__rip_2objdump(map, sym->start); browser.start = map__rip_2objdump(map, sym->start);
list_for_each_entry(pos, &notes->src->source, node) { list_for_each_entry(pos, &notes->src->source, al.node) {
struct browser_disasm_line *bpos; struct browser_disasm_line *bpos;
size_t line_len = strlen(pos->line); size_t line_len = strlen(pos->line);
...@@ -1174,8 +1174,8 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map, ...@@ -1174,8 +1174,8 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map,
annotate_browser__update_addr_width(&browser); annotate_browser__update_addr_width(&browser);
ret = annotate_browser__run(&browser, evsel, hbt); ret = annotate_browser__run(&browser, evsel, hbt);
list_for_each_entry_safe(pos, n, &notes->src->source, node) { list_for_each_entry_safe(pos, n, &notes->src->source, al.node) {
list_del(&pos->node); list_del(&pos->al.node);
disasm_line__free(pos); disasm_line__free(pos);
} }
......
...@@ -119,7 +119,7 @@ static int perf_gtk__annotate_symbol(GtkWidget *window, struct symbol *sym, ...@@ -119,7 +119,7 @@ static int perf_gtk__annotate_symbol(GtkWidget *window, struct symbol *sym,
gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store)); gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store));
g_object_unref(GTK_TREE_MODEL(store)); g_object_unref(GTK_TREE_MODEL(store));
list_for_each_entry(pos, &notes->src->source, node) { list_for_each_entry(pos, &notes->src->source, al.node) {
GtkTreeIter iter; GtkTreeIter iter;
int ret = 0; int ret = 0;
...@@ -148,8 +148,8 @@ static int perf_gtk__annotate_symbol(GtkWidget *window, struct symbol *sym, ...@@ -148,8 +148,8 @@ static int perf_gtk__annotate_symbol(GtkWidget *window, struct symbol *sym,
gtk_container_add(GTK_CONTAINER(window), view); gtk_container_add(GTK_CONTAINER(window), view);
list_for_each_entry_safe(pos, n, &notes->src->source, node) { list_for_each_entry_safe(pos, n, &notes->src->source, al.node) {
list_del(&pos->node); list_del(&pos->al.node);
disasm_line__free(pos); disasm_line__free(pos);
} }
......
...@@ -931,12 +931,12 @@ int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool r ...@@ -931,12 +931,12 @@ int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool r
static void disasm__add(struct list_head *head, struct disasm_line *line) static void disasm__add(struct list_head *head, struct disasm_line *line)
{ {
list_add_tail(&line->node, head); list_add_tail(&line->al.node, head);
} }
struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos) struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos)
{ {
list_for_each_entry_continue(pos, head, node) list_for_each_entry_continue(pos, head, al.node)
if (pos->offset >= 0) if (pos->offset >= 0)
return pos; return pos;
...@@ -1122,7 +1122,7 @@ static int disasm_line__print(struct disasm_line *dl, struct symbol *sym, u64 st ...@@ -1122,7 +1122,7 @@ static int disasm_line__print(struct disasm_line *dl, struct symbol *sym, u64 st
return 1; return 1;
if (queue != NULL) { if (queue != NULL) {
list_for_each_entry_from(queue, &notes->src->source, node) { list_for_each_entry_from(queue, &notes->src->source, al.node) {
if (queue == dl) if (queue == dl)
break; break;
disasm_line__print(queue, sym, start, evsel, len, disasm_line__print(queue, sym, start, evsel, len,
...@@ -1305,7 +1305,7 @@ static void delete_last_nop(struct symbol *sym) ...@@ -1305,7 +1305,7 @@ static void delete_last_nop(struct symbol *sym)
struct disasm_line *dl; struct disasm_line *dl;
while (!list_empty(list)) { while (!list_empty(list)) {
dl = list_entry(list->prev, struct disasm_line, node); dl = list_entry(list->prev, struct disasm_line, al.node);
if (dl->ins.ops) { if (dl->ins.ops) {
if (dl->ins.ops != &nop_ops) if (dl->ins.ops != &nop_ops)
...@@ -1317,7 +1317,7 @@ static void delete_last_nop(struct symbol *sym) ...@@ -1317,7 +1317,7 @@ static void delete_last_nop(struct symbol *sym)
return; return;
} }
list_del(&dl->node); list_del(&dl->al.node);
disasm_line__free(dl); disasm_line__free(dl);
} }
} }
...@@ -1844,7 +1844,7 @@ int symbol__annotate_printf(struct symbol *sym, struct map *map, ...@@ -1844,7 +1844,7 @@ 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);
list_for_each_entry(pos, &notes->src->source, node) { list_for_each_entry(pos, &notes->src->source, al.node) {
if (context && queue == NULL) { if (context && queue == NULL) {
queue = pos; queue = pos;
queue_len = 0; queue_len = 0;
...@@ -1874,7 +1874,7 @@ int symbol__annotate_printf(struct symbol *sym, struct map *map, ...@@ -1874,7 +1874,7 @@ int symbol__annotate_printf(struct symbol *sym, struct map *map,
if (!context) if (!context)
break; break;
if (queue_len == context) if (queue_len == context)
queue = list_entry(queue->node.next, typeof(*queue), node); queue = list_entry(queue->al.node.next, typeof(*queue), al.node);
else else
++queue_len; ++queue_len;
break; break;
...@@ -1911,8 +1911,8 @@ void disasm__purge(struct list_head *head) ...@@ -1911,8 +1911,8 @@ void disasm__purge(struct list_head *head)
{ {
struct disasm_line *pos, *n; struct disasm_line *pos, *n;
list_for_each_entry_safe(pos, n, head, node) { list_for_each_entry_safe(pos, n, head, al.node) {
list_del(&pos->node); list_del(&pos->al.node);
disasm_line__free(pos); disasm_line__free(pos);
} }
} }
...@@ -1939,7 +1939,7 @@ size_t disasm__fprintf(struct list_head *head, FILE *fp) ...@@ -1939,7 +1939,7 @@ size_t disasm__fprintf(struct list_head *head, FILE *fp)
struct disasm_line *pos; struct disasm_line *pos;
size_t printed = 0; size_t printed = 0;
list_for_each_entry(pos, head, node) list_for_each_entry(pos, head, al.node)
printed += disasm_line__fprintf(pos, fp); printed += disasm_line__fprintf(pos, fp);
return printed; return printed;
......
...@@ -59,8 +59,12 @@ bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2); ...@@ -59,8 +59,12 @@ bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2);
struct annotation; struct annotation;
struct disasm_line { struct annotation_line {
struct list_head node; struct list_head node;
};
struct disasm_line {
struct annotation_line al;
s64 offset; s64 offset;
char *line; char *line;
struct ins ins; struct ins ins;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment