1 #include "../../util/util.h"
2 #include "../browser.h"
3 #include "../helpline.h"
4 #include "../libslang.h"
7 #include "../../util/annotate.h"
8 #include "../../util/hist.h"
9 #include "../../util/sort.h"
10 #include "../../util/symbol.h"
11 #include "../../util/evsel.h"
14 struct browser_disasm_line {
15 struct rb_node rb_node;
20 * actual length of this array is saved on the nr_events field
21 * of the struct annotate_browser
26 static struct annotate_browser_opt {
31 } annotate_browser__opts = {
36 struct annotate_browser {
38 struct rb_root entries;
39 struct rb_node *curr_hot;
40 struct disasm_line *selection;
41 struct disasm_line **offsets;
48 bool searching_backwards;
57 static inline struct browser_disasm_line *disasm_line__browser(struct disasm_line *dl)
59 return (struct browser_disasm_line *)(dl + 1);
62 static bool disasm_line__filter(struct ui_browser *browser __maybe_unused,
65 if (annotate_browser__opts.hide_src_code) {
66 struct disasm_line *dl = list_entry(entry, struct disasm_line, node);
67 return dl->offset == -1;
73 static int annotate_browser__jumps_percent_color(struct annotate_browser *browser,
76 if (current && (!browser->b.use_navkeypressed || browser->b.navkeypressed))
77 return HE_COLORSET_SELECTED;
78 if (nr == browser->max_jump_sources)
79 return HE_COLORSET_TOP;
81 return HE_COLORSET_MEDIUM;
82 return HE_COLORSET_NORMAL;
85 static int annotate_browser__set_jumps_percent_color(struct annotate_browser *browser,
88 int color = annotate_browser__jumps_percent_color(browser, nr, current);
89 return ui_browser__set_color(&browser->b, color);
92 static void annotate_browser__write(struct ui_browser *browser, void *entry, int row)
94 struct annotate_browser *ab = container_of(browser, struct annotate_browser, b);
95 struct disasm_line *dl = list_entry(entry, struct disasm_line, node);
96 struct browser_disasm_line *bdl = disasm_line__browser(dl);
97 bool current_entry = ui_browser__is_current_entry(browser, row);
98 bool change_color = (!annotate_browser__opts.hide_src_code &&
99 (!current_entry || (browser->use_navkeypressed &&
100 !browser->navkeypressed)));
101 int width = browser->width, printed;
102 int i, pcnt_width = 7 * ab->nr_events;
103 double percent_max = 0.0;
106 for (i = 0; i < ab->nr_events; i++) {
107 if (bdl->percent[i] > percent_max)
108 percent_max = bdl->percent[i];
111 if (dl->offset != -1 && percent_max != 0.0) {
112 for (i = 0; i < ab->nr_events; i++) {
113 ui_browser__set_percent_color(browser, bdl->percent[i],
115 slsmg_printf("%6.2f ", bdl->percent[i]);
118 ui_browser__set_percent_color(browser, 0, current_entry);
119 slsmg_write_nstring(" ", pcnt_width);
122 SLsmg_write_char(' ');
124 /* The scroll bar isn't being used */
125 if (!browser->navkeypressed)
129 slsmg_write_nstring(" ", width - pcnt_width);
130 else if (dl->offset == -1) {
131 printed = scnprintf(bf, sizeof(bf), "%*s ",
132 ab->addr_width, " ");
133 slsmg_write_nstring(bf, printed);
134 slsmg_write_nstring(dl->line, width - printed - pcnt_width + 1);
136 u64 addr = dl->offset;
139 if (!annotate_browser__opts.use_offset)
142 if (!annotate_browser__opts.use_offset) {
143 printed = scnprintf(bf, sizeof(bf), "%" PRIx64 ": ", addr);
145 if (bdl->jump_sources) {
146 if (annotate_browser__opts.show_nr_jumps) {
148 printed = scnprintf(bf, sizeof(bf), "%*d ",
151 prev = annotate_browser__set_jumps_percent_color(ab, bdl->jump_sources,
153 slsmg_write_nstring(bf, printed);
154 ui_browser__set_color(browser, prev);
157 printed = scnprintf(bf, sizeof(bf), "%*" PRIx64 ": ",
158 ab->target_width, addr);
160 printed = scnprintf(bf, sizeof(bf), "%*s ",
161 ab->addr_width, " ");
166 color = ui_browser__set_color(browser, HE_COLORSET_ADDR);
167 slsmg_write_nstring(bf, printed);
169 ui_browser__set_color(browser, color);
170 if (dl->ins && dl->ins->ops->scnprintf) {
171 if (ins__is_jump(dl->ins)) {
172 bool fwd = dl->ops.target.offset > (u64)dl->offset;
174 ui_browser__write_graph(browser, fwd ? SLSMG_DARROW_CHAR :
176 SLsmg_write_char(' ');
177 } else if (ins__is_call(dl->ins)) {
178 ui_browser__write_graph(browser, SLSMG_RARROW_CHAR);
179 SLsmg_write_char(' ');
181 slsmg_write_nstring(" ", 2);
184 if (strcmp(dl->name, "retq")) {
185 slsmg_write_nstring(" ", 2);
187 ui_browser__write_graph(browser, SLSMG_LARROW_CHAR);
188 SLsmg_write_char(' ');
192 disasm_line__scnprintf(dl, bf, sizeof(bf), !annotate_browser__opts.use_offset);
193 slsmg_write_nstring(bf, width - pcnt_width - 3 - printed);
200 static bool disasm_line__is_valid_jump(struct disasm_line *dl, struct symbol *sym)
202 if (!dl || !dl->ins || !ins__is_jump(dl->ins)
203 || !disasm_line__has_offset(dl)
204 || dl->ops.target.offset >= symbol__size(sym))
210 static void annotate_browser__draw_current_jump(struct ui_browser *browser)
212 struct annotate_browser *ab = container_of(browser, struct annotate_browser, b);
213 struct disasm_line *cursor = ab->selection, *target;
214 struct browser_disasm_line *btarget, *bcursor;
215 unsigned int from, to;
216 struct map_symbol *ms = ab->b.priv;
217 struct symbol *sym = ms->sym;
220 /* PLT symbols contain external offsets */
221 if (strstr(sym->name, "@plt"))
224 if (!disasm_line__is_valid_jump(cursor, sym))
227 target = ab->offsets[cursor->ops.target.offset];
231 bcursor = disasm_line__browser(cursor);
232 btarget = disasm_line__browser(target);
234 if (annotate_browser__opts.hide_src_code) {
235 from = bcursor->idx_asm;
236 to = btarget->idx_asm;
238 from = (u64)bcursor->idx;
239 to = (u64)btarget->idx;
242 pcnt_width *= ab->nr_events;
244 ui_browser__set_color(browser, HE_COLORSET_CODE);
245 __ui_browser__line_arrow(browser, pcnt_width + 2 + ab->addr_width,
249 static unsigned int annotate_browser__refresh(struct ui_browser *browser)
251 struct annotate_browser *ab = container_of(browser, struct annotate_browser, b);
252 int ret = ui_browser__list_head_refresh(browser);
255 pcnt_width = 7 * ab->nr_events;
257 if (annotate_browser__opts.jump_arrows)
258 annotate_browser__draw_current_jump(browser);
260 ui_browser__set_color(browser, HE_COLORSET_NORMAL);
261 __ui_browser__vline(browser, pcnt_width, 0, browser->height - 1);
265 static int disasm__cmp(struct browser_disasm_line *a,
266 struct browser_disasm_line *b, int nr_pcnt)
270 for (i = 0; i < nr_pcnt; i++) {
271 if (a->percent[i] == b->percent[i])
273 return a->percent[i] < b->percent[i];
278 static void disasm_rb_tree__insert(struct rb_root *root, struct browser_disasm_line *bdl,
281 struct rb_node **p = &root->rb_node;
282 struct rb_node *parent = NULL;
283 struct browser_disasm_line *l;
287 l = rb_entry(parent, struct browser_disasm_line, rb_node);
289 if (disasm__cmp(bdl, l, nr_events))
294 rb_link_node(&bdl->rb_node, parent, p);
295 rb_insert_color(&bdl->rb_node, root);
298 static void annotate_browser__set_top(struct annotate_browser *browser,
299 struct disasm_line *pos, u32 idx)
303 ui_browser__refresh_dimensions(&browser->b);
304 back = browser->b.height / 2;
305 browser->b.top_idx = browser->b.index = idx;
307 while (browser->b.top_idx != 0 && back != 0) {
308 pos = list_entry(pos->node.prev, struct disasm_line, node);
310 if (disasm_line__filter(&browser->b, &pos->node))
313 --browser->b.top_idx;
317 browser->b.top = pos;
318 browser->b.navkeypressed = true;
321 static void annotate_browser__set_rb_top(struct annotate_browser *browser,
324 struct browser_disasm_line *bpos;
325 struct disasm_line *pos;
328 bpos = rb_entry(nd, struct browser_disasm_line, rb_node);
329 pos = ((struct disasm_line *)bpos) - 1;
331 if (annotate_browser__opts.hide_src_code)
333 annotate_browser__set_top(browser, pos, idx);
334 browser->curr_hot = nd;
337 static void annotate_browser__calc_percent(struct annotate_browser *browser,
338 struct perf_evsel *evsel)
340 struct map_symbol *ms = browser->b.priv;
341 struct symbol *sym = ms->sym;
342 struct annotation *notes = symbol__annotation(sym);
343 struct disasm_line *pos, *next;
344 s64 len = symbol__size(sym);
346 browser->entries = RB_ROOT;
348 pthread_mutex_lock(¬es->lock);
350 list_for_each_entry(pos, ¬es->src->source, node) {
351 struct browser_disasm_line *bpos = disasm_line__browser(pos);
352 const char *path = NULL;
353 double max_percent = 0.0;
356 if (pos->offset == -1) {
357 RB_CLEAR_NODE(&bpos->rb_node);
361 next = disasm__get_next_ip_line(¬es->src->source, pos);
363 for (i = 0; i < browser->nr_events; i++) {
364 bpos->percent[i] = disasm__calc_percent(notes,
367 next ? next->offset : len,
370 if (max_percent < bpos->percent[i])
371 max_percent = bpos->percent[i];
374 if (max_percent < 0.01) {
375 RB_CLEAR_NODE(&bpos->rb_node);
378 disasm_rb_tree__insert(&browser->entries, bpos,
381 pthread_mutex_unlock(¬es->lock);
383 browser->curr_hot = rb_last(&browser->entries);
386 static bool annotate_browser__toggle_source(struct annotate_browser *browser)
388 struct disasm_line *dl;
389 struct browser_disasm_line *bdl;
390 off_t offset = browser->b.index - browser->b.top_idx;
392 browser->b.seek(&browser->b, offset, SEEK_CUR);
393 dl = list_entry(browser->b.top, struct disasm_line, node);
394 bdl = disasm_line__browser(dl);
396 if (annotate_browser__opts.hide_src_code) {
397 if (bdl->idx_asm < offset)
400 browser->b.nr_entries = browser->nr_entries;
401 annotate_browser__opts.hide_src_code = false;
402 browser->b.seek(&browser->b, -offset, SEEK_CUR);
403 browser->b.top_idx = bdl->idx - offset;
404 browser->b.index = bdl->idx;
406 if (bdl->idx_asm < 0) {
407 ui_helpline__puts("Only available for assembly lines.");
408 browser->b.seek(&browser->b, -offset, SEEK_CUR);
412 if (bdl->idx_asm < offset)
413 offset = bdl->idx_asm;
415 browser->b.nr_entries = browser->nr_asm_entries;
416 annotate_browser__opts.hide_src_code = true;
417 browser->b.seek(&browser->b, -offset, SEEK_CUR);
418 browser->b.top_idx = bdl->idx_asm - offset;
419 browser->b.index = bdl->idx_asm;
425 static void annotate_browser__init_asm_mode(struct annotate_browser *browser)
427 ui_browser__reset_index(&browser->b);
428 browser->b.nr_entries = browser->nr_asm_entries;
431 #define SYM_TITLE_MAX_SIZE (PATH_MAX + 64)
433 static int sym_title(struct symbol *sym, struct map *map, char *title,
436 return snprintf(title, sz, "%s %s", sym->name, map->dso->long_name);
439 static bool annotate_browser__callq(struct annotate_browser *browser,
440 struct perf_evsel *evsel,
441 struct hist_browser_timer *hbt)
443 struct map_symbol *ms = browser->b.priv;
444 struct disasm_line *dl = browser->selection;
445 struct symbol *sym = ms->sym;
446 struct annotation *notes;
447 struct symbol *target;
449 char title[SYM_TITLE_MAX_SIZE];
451 if (!ins__is_call(dl->ins))
454 ip = ms->map->map_ip(ms->map, dl->ops.target.addr);
455 target = map__find_symbol(ms->map, ip, NULL);
456 if (target == NULL) {
457 ui_helpline__puts("The called function was not found.");
461 notes = symbol__annotation(target);
462 pthread_mutex_lock(¬es->lock);
464 if (notes->src == NULL && symbol__alloc_hist(target) < 0) {
465 pthread_mutex_unlock(¬es->lock);
466 ui__warning("Not enough memory for annotating '%s' symbol!\n",
471 pthread_mutex_unlock(¬es->lock);
472 symbol__tui_annotate(target, ms->map, evsel, hbt);
473 sym_title(sym, ms->map, title, sizeof(title));
474 ui_browser__show_title(&browser->b, title);
479 struct disasm_line *annotate_browser__find_offset(struct annotate_browser *browser,
480 s64 offset, s64 *idx)
482 struct map_symbol *ms = browser->b.priv;
483 struct symbol *sym = ms->sym;
484 struct annotation *notes = symbol__annotation(sym);
485 struct disasm_line *pos;
488 list_for_each_entry(pos, ¬es->src->source, node) {
489 if (pos->offset == offset)
491 if (!disasm_line__filter(&browser->b, &pos->node))
498 static bool annotate_browser__jump(struct annotate_browser *browser)
500 struct disasm_line *dl = browser->selection;
503 if (!ins__is_jump(dl->ins))
506 dl = annotate_browser__find_offset(browser, dl->ops.target.offset, &idx);
508 ui_helpline__puts("Invallid jump offset");
512 annotate_browser__set_top(browser, dl, idx);
518 struct disasm_line *annotate_browser__find_string(struct annotate_browser *browser,
521 struct map_symbol *ms = browser->b.priv;
522 struct symbol *sym = ms->sym;
523 struct annotation *notes = symbol__annotation(sym);
524 struct disasm_line *pos = browser->selection;
526 *idx = browser->b.index;
527 list_for_each_entry_continue(pos, ¬es->src->source, node) {
528 if (disasm_line__filter(&browser->b, &pos->node))
533 if (pos->line && strstr(pos->line, s) != NULL)
540 static bool __annotate_browser__search(struct annotate_browser *browser)
542 struct disasm_line *dl;
545 dl = annotate_browser__find_string(browser, browser->search_bf, &idx);
547 ui_helpline__puts("String not found!");
551 annotate_browser__set_top(browser, dl, idx);
552 browser->searching_backwards = false;
557 struct disasm_line *annotate_browser__find_string_reverse(struct annotate_browser *browser,
560 struct map_symbol *ms = browser->b.priv;
561 struct symbol *sym = ms->sym;
562 struct annotation *notes = symbol__annotation(sym);
563 struct disasm_line *pos = browser->selection;
565 *idx = browser->b.index;
566 list_for_each_entry_continue_reverse(pos, ¬es->src->source, node) {
567 if (disasm_line__filter(&browser->b, &pos->node))
572 if (pos->line && strstr(pos->line, s) != NULL)
579 static bool __annotate_browser__search_reverse(struct annotate_browser *browser)
581 struct disasm_line *dl;
584 dl = annotate_browser__find_string_reverse(browser, browser->search_bf, &idx);
586 ui_helpline__puts("String not found!");
590 annotate_browser__set_top(browser, dl, idx);
591 browser->searching_backwards = true;
595 static bool annotate_browser__search_window(struct annotate_browser *browser,
598 if (ui_browser__input_window("Search", "String: ", browser->search_bf,
599 "ENTER: OK, ESC: Cancel",
600 delay_secs * 2) != K_ENTER ||
601 !*browser->search_bf)
607 static bool annotate_browser__search(struct annotate_browser *browser, int delay_secs)
609 if (annotate_browser__search_window(browser, delay_secs))
610 return __annotate_browser__search(browser);
615 static bool annotate_browser__continue_search(struct annotate_browser *browser,
618 if (!*browser->search_bf)
619 return annotate_browser__search(browser, delay_secs);
621 return __annotate_browser__search(browser);
624 static bool annotate_browser__search_reverse(struct annotate_browser *browser,
627 if (annotate_browser__search_window(browser, delay_secs))
628 return __annotate_browser__search_reverse(browser);
634 bool annotate_browser__continue_search_reverse(struct annotate_browser *browser,
637 if (!*browser->search_bf)
638 return annotate_browser__search_reverse(browser, delay_secs);
640 return __annotate_browser__search_reverse(browser);
643 static void annotate_browser__update_addr_width(struct annotate_browser *browser)
645 if (annotate_browser__opts.use_offset)
646 browser->target_width = browser->min_addr_width;
648 browser->target_width = browser->max_addr_width;
650 browser->addr_width = browser->target_width;
652 if (annotate_browser__opts.show_nr_jumps)
653 browser->addr_width += browser->jumps_width + 1;
656 static int annotate_browser__run(struct annotate_browser *browser,
657 struct perf_evsel *evsel,
658 struct hist_browser_timer *hbt)
660 struct rb_node *nd = NULL;
661 struct map_symbol *ms = browser->b.priv;
662 struct symbol *sym = ms->sym;
663 const char *help = "Press 'h' for help on key bindings";
664 int delay_secs = hbt ? hbt->refresh : 0;
666 char title[SYM_TITLE_MAX_SIZE];
668 sym_title(sym, ms->map, title, sizeof(title));
669 if (ui_browser__show(&browser->b, title, help) < 0)
672 annotate_browser__calc_percent(browser, evsel);
674 if (browser->curr_hot) {
675 annotate_browser__set_rb_top(browser, browser->curr_hot);
676 browser->b.navkeypressed = false;
679 nd = browser->curr_hot;
682 key = ui_browser__run(&browser->b, delay_secs);
684 if (delay_secs != 0) {
685 annotate_browser__calc_percent(browser, evsel);
687 * Current line focus got out of the list of most active
688 * lines, NULL it so that if TAB|UNTAB is pressed, we
689 * move to curr_hot (current hottest line).
691 if (nd != NULL && RB_EMPTY_NODE(nd))
698 hbt->timer(hbt->arg);
701 symbol__annotate_decay_histogram(sym, evsel->idx);
707 nd = rb_last(&browser->entries);
709 nd = browser->curr_hot;
715 nd = rb_first(&browser->entries);
717 nd = browser->curr_hot;
721 ui_browser__help_window(&browser->b,
723 "PGDN/SPACE Navigate\n"
724 "q/ESC/CTRL+C Exit\n\n"
727 "H Cycle thru hottest instructions\n"
728 "j Toggle showing jump to target arrows\n"
729 "J Toggle showing number of jump sources on targets\n"
730 "n Search next string\n"
731 "o Toggle disassembler output/simplified view\n"
732 "s Toggle source code view\n"
734 "r Run available scripts\n"
735 "? Search previous string\n");
743 nd = browser->curr_hot;
746 if (annotate_browser__toggle_source(browser))
747 ui_helpline__puts(help);
750 annotate_browser__opts.use_offset = !annotate_browser__opts.use_offset;
751 annotate_browser__update_addr_width(browser);
754 annotate_browser__opts.jump_arrows = !annotate_browser__opts.jump_arrows;
757 annotate_browser__opts.show_nr_jumps = !annotate_browser__opts.show_nr_jumps;
758 annotate_browser__update_addr_width(browser);
761 if (annotate_browser__search(browser, delay_secs)) {
763 ui_helpline__puts(help);
767 if (browser->searching_backwards ?
768 annotate_browser__continue_search_reverse(browser, delay_secs) :
769 annotate_browser__continue_search(browser, delay_secs))
773 if (annotate_browser__search_reverse(browser, delay_secs))
779 ui_helpline__fpush("%d: nr_ent=%d, height=%d, idx=%d, top_idx=%d, nr_asm_entries=%d",
780 seq++, browser->b.nr_entries,
784 browser->nr_asm_entries);
789 if (browser->selection == NULL)
790 ui_helpline__puts("Huh? No selection. Report to linux-kernel@vger.kernel.org");
791 else if (browser->selection->offset == -1)
792 ui_helpline__puts("Actions are only available for assembly lines.");
793 else if (!browser->selection->ins) {
794 if (strcmp(browser->selection->name, "retq"))
797 } else if (!(annotate_browser__jump(browser) ||
798 annotate_browser__callq(browser, evsel, hbt))) {
800 ui_helpline__puts("Actions are only available for 'callq', 'retq' & jump instructions.");
813 annotate_browser__set_rb_top(browser, nd);
816 ui_browser__hide(&browser->b);
820 int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
821 struct hist_browser_timer *hbt)
823 return symbol__tui_annotate(he->ms.sym, he->ms.map, evsel, hbt);
826 static void annotate_browser__mark_jump_targets(struct annotate_browser *browser,
830 struct map_symbol *ms = browser->b.priv;
831 struct symbol *sym = ms->sym;
833 /* PLT symbols contain external offsets */
834 if (strstr(sym->name, "@plt"))
837 for (offset = 0; offset < size; ++offset) {
838 struct disasm_line *dl = browser->offsets[offset], *dlt;
839 struct browser_disasm_line *bdlt;
841 if (!disasm_line__is_valid_jump(dl, sym))
844 dlt = browser->offsets[dl->ops.target.offset];
846 * FIXME: Oops, no jump target? Buggy disassembler? Or do we
847 * have to adjust to the previous offset?
852 bdlt = disasm_line__browser(dlt);
853 if (++bdlt->jump_sources > browser->max_jump_sources)
854 browser->max_jump_sources = bdlt->jump_sources;
861 static inline int width_jumps(int n)
870 int symbol__tui_annotate(struct symbol *sym, struct map *map,
871 struct perf_evsel *evsel,
872 struct hist_browser_timer *hbt)
874 struct disasm_line *pos, *n;
875 struct annotation *notes;
877 struct map_symbol ms = {
881 struct annotate_browser browser = {
883 .refresh = annotate_browser__refresh,
884 .seek = ui_browser__list_head_seek,
885 .write = annotate_browser__write,
886 .filter = disasm_line__filter,
888 .use_navkeypressed = true,
893 size_t sizeof_bdl = sizeof(struct browser_disasm_line);
898 size = symbol__size(sym);
900 if (map->dso->annotate_warned)
903 browser.offsets = zalloc(size * sizeof(struct disasm_line *));
904 if (browser.offsets == NULL) {
905 ui__error("Not enough memory!");
909 if (perf_evsel__is_group_event(evsel)) {
910 nr_pcnt = evsel->nr_members;
911 sizeof_bdl += sizeof(double) * (nr_pcnt - 1);
914 if (symbol__annotate(sym, map, sizeof_bdl) < 0) {
915 ui__error("%s", ui_helpline__last_msg);
916 goto out_free_offsets;
919 ui_helpline__push("Press <- or ESC to exit");
921 notes = symbol__annotation(sym);
922 browser.start = map__rip_2objdump(map, sym->start);
924 list_for_each_entry(pos, ¬es->src->source, node) {
925 struct browser_disasm_line *bpos;
926 size_t line_len = strlen(pos->line);
928 if (browser.b.width < line_len)
929 browser.b.width = line_len;
930 bpos = disasm_line__browser(pos);
931 bpos->idx = browser.nr_entries++;
932 if (pos->offset != -1) {
933 bpos->idx_asm = browser.nr_asm_entries++;
935 * FIXME: short term bandaid to cope with assembly
936 * routines that comes with labels in the same column
937 * as the address in objdump, sigh.
939 * E.g. copy_user_generic_unrolled
941 if (pos->offset < (s64)size)
942 browser.offsets[pos->offset] = pos;
947 annotate_browser__mark_jump_targets(&browser, size);
949 browser.addr_width = browser.target_width = browser.min_addr_width = hex_width(size);
950 browser.max_addr_width = hex_width(sym->end);
951 browser.jumps_width = width_jumps(browser.max_jump_sources);
952 browser.nr_events = nr_pcnt;
953 browser.b.nr_entries = browser.nr_entries;
954 browser.b.entries = ¬es->src->source,
955 browser.b.width += 18; /* Percentage */
957 if (annotate_browser__opts.hide_src_code)
958 annotate_browser__init_asm_mode(&browser);
960 annotate_browser__update_addr_width(&browser);
962 ret = annotate_browser__run(&browser, evsel, hbt);
963 list_for_each_entry_safe(pos, n, ¬es->src->source, node) {
964 list_del(&pos->node);
965 disasm_line__free(pos);
969 free(browser.offsets);
973 #define ANNOTATE_CFG(n) \
974 { .name = #n, .value = &annotate_browser__opts.n, }
977 * Keep the entries sorted, they are bsearch'ed
979 static struct annotate_config {
982 } annotate__configs[] = {
983 ANNOTATE_CFG(hide_src_code),
984 ANNOTATE_CFG(jump_arrows),
985 ANNOTATE_CFG(show_nr_jumps),
986 ANNOTATE_CFG(use_offset),
991 static int annotate_config__cmp(const void *name, const void *cfgp)
993 const struct annotate_config *cfg = cfgp;
995 return strcmp(name, cfg->name);
998 static int annotate__config(const char *var, const char *value,
999 void *data __maybe_unused)
1001 struct annotate_config *cfg;
1004 if (prefixcmp(var, "annotate.") != 0)
1008 cfg = bsearch(name, annotate__configs, ARRAY_SIZE(annotate__configs),
1009 sizeof(struct annotate_config), annotate_config__cmp);
1014 *cfg->value = perf_config_bool(name, value);
1018 void annotate_browser__init(void)
1020 perf_config(annotate__config, NULL);