annotate.c 20.3 KB
Newer Older
1
#include "../../util/util.h"
2 3 4
#include "../browser.h"
#include "../helpline.h"
#include "../libslang.h"
5 6
#include "../ui.h"
#include "../util.h"
7 8 9 10
#include "../../util/annotate.h"
#include "../../util/hist.h"
#include "../../util/sort.h"
#include "../../util/symbol.h"
11
#include <pthread.h>
12
#include <newt.h>
13

14 15 16 17 18 19 20 21
struct browser_disasm_line {
	struct rb_node	rb_node;
	double		percent;
	u32		idx;
	int		idx_asm;
	bool		jump_target;
};

22 23 24
struct annotate_browser {
	struct ui_browser b;
	struct rb_root	  entries;
25
	struct rb_node	  *curr_hot;
26
	struct disasm_line	  *selection;
27
	struct disasm_line  **offsets;
28
	u64		    start;
29 30 31
	int		    nr_asm_entries;
	int		    nr_entries;
	bool		    hide_src_code;
32
	bool		    use_offset;
33
	bool		    jump_arrows;
34
	bool		    searching_backwards;
35 36 37
	u8		    addr_width;
	u8		    min_addr_width;
	u8		    max_addr_width;
38
	char		    search_bf[128];
39 40
};

41
static inline struct browser_disasm_line *disasm_line__browser(struct disasm_line *dl)
42
{
43
	return (struct browser_disasm_line *)(dl + 1);
44 45
}

46
static bool disasm_line__filter(struct ui_browser *browser, void *entry)
47 48 49 50
{
	struct annotate_browser *ab = container_of(browser, struct annotate_browser, b);

	if (ab->hide_src_code) {
51 52
		struct disasm_line *dl = list_entry(entry, struct disasm_line, node);
		return dl->offset == -1;
53 54 55 56 57
	}

	return false;
}

58 59
static void annotate_browser__write(struct ui_browser *self, void *entry, int row)
{
60
	struct annotate_browser *ab = container_of(self, struct annotate_browser, b);
61
	struct disasm_line *dl = list_entry(entry, struct disasm_line, node);
62
	struct browser_disasm_line *bdl = disasm_line__browser(dl);
63
	bool current_entry = ui_browser__is_current_entry(self, row);
64 65 66
	bool change_color = (!ab->hide_src_code &&
			     (!current_entry || (self->use_navkeypressed &&
					         !self->navkeypressed)));
67 68
	int width = self->width, printed;
	char bf[256];
69

70
	if (dl->offset != -1 && bdl->percent != 0.0) {
71
		ui_browser__set_percent_color(self, bdl->percent, current_entry);
72
		slsmg_printf("%6.2f ", bdl->percent);
73
	} else {
74
		ui_browser__set_percent_color(self, 0, current_entry);
75
		slsmg_write_nstring(" ", 7);
76 77
	}

78
	SLsmg_write_char(' ');
79 80 81 82 83

	/* The scroll bar isn't being used */
	if (!self->navkeypressed)
		width += 1;

84
	if (!*dl->line)
85
		slsmg_write_nstring(" ", width - 7);
86 87 88 89 90 91
	else if (dl->offset == -1) {
		printed = scnprintf(bf, sizeof(bf), "%*s  ",
				    ab->addr_width, " ");
		slsmg_write_nstring(bf, printed);
		slsmg_write_nstring(dl->line, width - printed - 6);
	} else {
92
		u64 addr = dl->offset;
93
		int color = -1;
94

95 96 97
		if (!ab->use_offset)
			addr += ab->start;

98
		if (!ab->use_offset) {
99
			printed = scnprintf(bf, sizeof(bf), "%" PRIx64 ": ", addr);
100 101
		} else {
			if (bdl->jump_target) {
102 103
				printed = scnprintf(bf, sizeof(bf), "%*" PRIx64 ": ",
						    ab->addr_width, addr);
104
			} else {
105 106
				printed = scnprintf(bf, sizeof(bf), "%*s  ",
						    ab->addr_width, " ");
107 108
			}
		}
109

110 111 112 113 114
		if (change_color)
			color = ui_browser__set_color(self, HE_COLORSET_ADDR);
		slsmg_write_nstring(bf, printed);
		if (change_color)
			ui_browser__set_color(self, color);
115
		if (dl->ins && dl->ins->ops->scnprintf) {
116
			if (ins__is_jump(dl->ins)) {
117
				bool fwd = dl->ops.target.offset > (u64)dl->offset;
118

119 120
				ui_browser__write_graph(self, fwd ? SLSMG_DARROW_CHAR :
								    SLSMG_UARROW_CHAR);
121
				SLsmg_write_char(' ');
122 123 124
			} else if (ins__is_call(dl->ins)) {
				ui_browser__write_graph(self, SLSMG_RARROW_CHAR);
				SLsmg_write_char(' ');
125 126 127 128
			} else {
				slsmg_write_nstring(" ", 2);
			}

129 130
			dl->ins->ops->scnprintf(dl->ins, bf, sizeof(bf), &dl->ops,
						!ab->use_offset);
131 132 133 134
		} else {
			if (strcmp(dl->name, "retq")) {
				slsmg_write_nstring(" ", 2);
			} else {
135
				ui_browser__write_graph(self, SLSMG_LARROW_CHAR);
136 137 138 139 140
				SLsmg_write_char(' ');
			}

			scnprintf(bf, sizeof(bf), "%-6.6s %s", dl->name, dl->ops.raw);
		}
141

142
		slsmg_write_nstring(bf, width - 10 - printed);
143
	}
144

145
	if (current_entry)
146
		ab->selection = dl;
147 148
}

149
static void annotate_browser__draw_current_jump(struct ui_browser *browser)
150 151
{
	struct annotate_browser *ab = container_of(browser, struct annotate_browser, b);
152 153
	struct disasm_line *cursor = ab->selection, *target;
	struct browser_disasm_line *btarget, *bcursor;
154
	unsigned int from, to;
155

156 157 158
	if (!cursor->ins || !ins__is_jump(cursor->ins) ||
	    !disasm_line__has_offset(cursor))
		return;
159

160 161 162
	target = ab->offsets[cursor->ops.target.offset];
	if (!target)
		return;
163

164 165
	bcursor = disasm_line__browser(cursor);
	btarget = disasm_line__browser(target);
166 167

	if (ab->hide_src_code) {
168
		from = bcursor->idx_asm;
169 170
		to = btarget->idx_asm;
	} else {
171
		from = (u64)bcursor->idx;
172 173 174 175
		to = (u64)btarget->idx;
	}

	ui_browser__set_color(browser, HE_COLORSET_CODE);
176
	__ui_browser__line_arrow(browser, 9 + ab->addr_width, from, to);
177 178 179 180
}

static unsigned int annotate_browser__refresh(struct ui_browser *browser)
{
181
	struct annotate_browser *ab = container_of(browser, struct annotate_browser, b);
182 183
	int ret = ui_browser__list_head_refresh(browser);

184 185
	if (ab->jump_arrows)
		annotate_browser__draw_current_jump(browser);
186

187 188
	ui_browser__set_color(browser, HE_COLORSET_NORMAL);
	__ui_browser__vline(browser, 7, 0, browser->height - 1);
189 190 191
	return ret;
}

192
static double disasm_line__calc_percent(struct disasm_line *dl, struct symbol *sym, int evidx)
193 194 195
{
	double percent = 0.0;

196
	if (dl->offset != -1) {
197
		int len = sym->end - sym->start;
198
		unsigned int hits = 0;
199
		struct annotation *notes = symbol__annotation(sym);
200
		struct source_line *src_line = notes->src->lines;
201
		struct sym_hist *h = annotation__histogram(notes, evidx);
202 203
		s64 offset = dl->offset;
		struct disasm_line *next;
204

205
		next = disasm__get_next_ip_line(&notes->src->source, dl);
206 207
		while (offset < (s64)len &&
		       (next == NULL || offset < next->offset)) {
208 209
			if (src_line) {
				percent += src_line[offset].percent;
210
			} else
211
				hits += h->addr[offset];
212 213 214

			++offset;
		}
215 216 217 218 219
		/*
 		 * If the percentage wasn't already calculated in
 		 * symbol__get_source_line, do it now:
 		 */
		if (src_line == NULL && h->sum)
220 221 222
			percent = 100.0 * hits / h->sum;
	}

223 224 225
	return percent;
}

226
static void disasm_rb_tree__insert(struct rb_root *root, struct browser_disasm_line *bdl)
227
{
228
	struct rb_node **p = &root->rb_node;
229
	struct rb_node *parent = NULL;
230
	struct browser_disasm_line *l;
231 232 233

	while (*p != NULL) {
		parent = *p;
234 235
		l = rb_entry(parent, struct browser_disasm_line, rb_node);
		if (bdl->percent < l->percent)
236 237 238 239
			p = &(*p)->rb_left;
		else
			p = &(*p)->rb_right;
	}
240 241
	rb_link_node(&bdl->rb_node, parent, p);
	rb_insert_color(&bdl->rb_node, root);
242 243
}

244
static void annotate_browser__set_top(struct annotate_browser *self,
245
				      struct disasm_line *pos, u32 idx)
246 247 248 249 250
{
	unsigned back;

	ui_browser__refresh_dimensions(&self->b);
	back = self->b.height / 2;
251
	self->b.top_idx = self->b.index = idx;
252 253

	while (self->b.top_idx != 0 && back != 0) {
254
		pos = list_entry(pos->node.prev, struct disasm_line, node);
255

256
		if (disasm_line__filter(&self->b, &pos->node))
257 258
			continue;

259 260 261 262 263
		--self->b.top_idx;
		--back;
	}

	self->b.top = pos;
264
	self->b.navkeypressed = true;
265 266 267 268 269
}

static void annotate_browser__set_rb_top(struct annotate_browser *browser,
					 struct rb_node *nd)
{
270
	struct browser_disasm_line *bpos;
271
	struct disasm_line *pos;
272

273 274 275
	bpos = rb_entry(nd, struct browser_disasm_line, rb_node);
	pos = ((struct disasm_line *)bpos) - 1;
	annotate_browser__set_top(browser, pos, bpos->idx);
276
	browser->curr_hot = nd;
277 278
}

279 280
static void annotate_browser__calc_percent(struct annotate_browser *browser,
					   int evidx)
281
{
282 283
	struct map_symbol *ms = browser->b.priv;
	struct symbol *sym = ms->sym;
284
	struct annotation *notes = symbol__annotation(sym);
285
	struct disasm_line *pos;
286 287 288 289 290 291

	browser->entries = RB_ROOT;

	pthread_mutex_lock(&notes->lock);

	list_for_each_entry(pos, &notes->src->source, node) {
292 293 294 295
		struct browser_disasm_line *bpos = disasm_line__browser(pos);
		bpos->percent = disasm_line__calc_percent(pos, sym, evidx);
		if (bpos->percent < 0.01) {
			RB_CLEAR_NODE(&bpos->rb_node);
296 297
			continue;
		}
298
		disasm_rb_tree__insert(&browser->entries, bpos);
299 300 301 302 303 304
	}
	pthread_mutex_unlock(&notes->lock);

	browser->curr_hot = rb_last(&browser->entries);
}

305 306
static bool annotate_browser__toggle_source(struct annotate_browser *browser)
{
307
	struct disasm_line *dl;
308
	struct browser_disasm_line *bdl;
309 310 311
	off_t offset = browser->b.index - browser->b.top_idx;

	browser->b.seek(&browser->b, offset, SEEK_CUR);
312
	dl = list_entry(browser->b.top, struct disasm_line, node);
313
	bdl = disasm_line__browser(dl);
314 315

	if (browser->hide_src_code) {
316 317
		if (bdl->idx_asm < offset)
			offset = bdl->idx;
318 319 320 321

		browser->b.nr_entries = browser->nr_entries;
		browser->hide_src_code = false;
		browser->b.seek(&browser->b, -offset, SEEK_CUR);
322 323
		browser->b.top_idx = bdl->idx - offset;
		browser->b.index = bdl->idx;
324
	} else {
325
		if (bdl->idx_asm < 0) {
326 327 328 329 330
			ui_helpline__puts("Only available for assembly lines.");
			browser->b.seek(&browser->b, -offset, SEEK_CUR);
			return false;
		}

331 332
		if (bdl->idx_asm < offset)
			offset = bdl->idx_asm;
333 334 335 336

		browser->b.nr_entries = browser->nr_asm_entries;
		browser->hide_src_code = true;
		browser->b.seek(&browser->b, -offset, SEEK_CUR);
337 338
		browser->b.top_idx = bdl->idx_asm - offset;
		browser->b.index = bdl->idx_asm;
339 340 341 342 343
	}

	return true;
}

344 345 346 347 348
static bool annotate_browser__callq(struct annotate_browser *browser,
				    int evidx, void (*timer)(void *arg),
				    void *arg, int delay_secs)
{
	struct map_symbol *ms = browser->b.priv;
349
	struct disasm_line *dl = browser->selection;
350 351 352 353 354
	struct symbol *sym = ms->sym;
	struct annotation *notes;
	struct symbol *target;
	u64 ip;

355
	if (!ins__is_call(dl->ins))
356 357
		return false;

358
	ip = ms->map->map_ip(ms->map, dl->ops.target.addr);
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
	target = map__find_symbol(ms->map, ip, NULL);
	if (target == NULL) {
		ui_helpline__puts("The called function was not found.");
		return true;
	}

	notes = symbol__annotation(target);
	pthread_mutex_lock(&notes->lock);

	if (notes->src == NULL && symbol__alloc_hist(target) < 0) {
		pthread_mutex_unlock(&notes->lock);
		ui__warning("Not enough memory for annotating '%s' symbol!\n",
			    target->name);
		return true;
	}

	pthread_mutex_unlock(&notes->lock);
	symbol__tui_annotate(target, ms->map, evidx, timer, arg, delay_secs);
	ui_browser__show_title(&browser->b, sym->name);
	return true;
}

381 382 383
static
struct disasm_line *annotate_browser__find_offset(struct annotate_browser *browser,
					  s64 offset, s64 *idx)
384 385 386 387
{
	struct map_symbol *ms = browser->b.priv;
	struct symbol *sym = ms->sym;
	struct annotation *notes = symbol__annotation(sym);
388
	struct disasm_line *pos;
389 390 391 392 393

	*idx = 0;
	list_for_each_entry(pos, &notes->src->source, node) {
		if (pos->offset == offset)
			return pos;
394
		if (!disasm_line__filter(&browser->b, &pos->node))
395 396 397 398 399 400 401 402
			++*idx;
	}

	return NULL;
}

static bool annotate_browser__jump(struct annotate_browser *browser)
{
403
	struct disasm_line *dl = browser->selection;
404
	s64 idx;
405

406
	if (!ins__is_jump(dl->ins))
407 408
		return false;

409
	dl = annotate_browser__find_offset(browser, dl->ops.target.offset, &idx);
410
	if (dl == NULL) {
411 412 413 414
		ui_helpline__puts("Invallid jump offset");
		return true;
	}

415
	annotate_browser__set_top(browser, dl, idx);
416 417 418 419
	
	return true;
}

420 421 422
static
struct disasm_line *annotate_browser__find_string(struct annotate_browser *browser,
					  char *s, s64 *idx)
423 424 425 426
{
	struct map_symbol *ms = browser->b.priv;
	struct symbol *sym = ms->sym;
	struct annotation *notes = symbol__annotation(sym);
427
	struct disasm_line *pos = browser->selection;
428 429 430

	*idx = browser->b.index;
	list_for_each_entry_continue(pos, &notes->src->source, node) {
431
		if (disasm_line__filter(&browser->b, &pos->node))
432 433 434 435 436 437 438 439 440 441 442 443 444
			continue;

		++*idx;

		if (pos->line && strstr(pos->line, s) != NULL)
			return pos;
	}

	return NULL;
}

static bool __annotate_browser__search(struct annotate_browser *browser)
{
445
	struct disasm_line *dl;
446 447
	s64 idx;

448 449
	dl = annotate_browser__find_string(browser, browser->search_bf, &idx);
	if (dl == NULL) {
450 451 452 453
		ui_helpline__puts("String not found!");
		return false;
	}

454
	annotate_browser__set_top(browser, dl, idx);
455 456 457 458
	browser->searching_backwards = false;
	return true;
}

459 460 461
static
struct disasm_line *annotate_browser__find_string_reverse(struct annotate_browser *browser,
						  char *s, s64 *idx)
462 463 464 465
{
	struct map_symbol *ms = browser->b.priv;
	struct symbol *sym = ms->sym;
	struct annotation *notes = symbol__annotation(sym);
466
	struct disasm_line *pos = browser->selection;
467 468 469

	*idx = browser->b.index;
	list_for_each_entry_continue_reverse(pos, &notes->src->source, node) {
470
		if (disasm_line__filter(&browser->b, &pos->node))
471 472 473 474 475 476 477 478 479 480 481 482 483
			continue;

		--*idx;

		if (pos->line && strstr(pos->line, s) != NULL)
			return pos;
	}

	return NULL;
}

static bool __annotate_browser__search_reverse(struct annotate_browser *browser)
{
484
	struct disasm_line *dl;
485 486
	s64 idx;

487 488
	dl = annotate_browser__find_string_reverse(browser, browser->search_bf, &idx);
	if (dl == NULL) {
489 490 491 492
		ui_helpline__puts("String not found!");
		return false;
	}

493
	annotate_browser__set_top(browser, dl, idx);
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
	browser->searching_backwards = true;
	return true;
}

static bool annotate_browser__search_window(struct annotate_browser *browser,
					    int delay_secs)
{
	if (ui_browser__input_window("Search", "String: ", browser->search_bf,
				     "ENTER: OK, ESC: Cancel",
				     delay_secs * 2) != K_ENTER ||
	    !*browser->search_bf)
		return false;

	return true;
}

static bool annotate_browser__search(struct annotate_browser *browser, int delay_secs)
{
	if (annotate_browser__search_window(browser, delay_secs))
		return __annotate_browser__search(browser);

	return false;
}

static bool annotate_browser__continue_search(struct annotate_browser *browser,
					      int delay_secs)
{
	if (!*browser->search_bf)
		return annotate_browser__search(browser, delay_secs);

	return __annotate_browser__search(browser);
}

static bool annotate_browser__search_reverse(struct annotate_browser *browser,
					   int delay_secs)
{
	if (annotate_browser__search_window(browser, delay_secs))
		return __annotate_browser__search_reverse(browser);

	return false;
}

static
bool annotate_browser__continue_search_reverse(struct annotate_browser *browser,
					       int delay_secs)
{
	if (!*browser->search_bf)
		return annotate_browser__search_reverse(browser, delay_secs);

	return __annotate_browser__search_reverse(browser);
}

546
static int annotate_browser__run(struct annotate_browser *self, int evidx,
547
				 void(*timer)(void *arg),
548
				 void *arg, int delay_secs)
549 550
{
	struct rb_node *nd = NULL;
551 552
	struct map_symbol *ms = self->b.priv;
	struct symbol *sym = ms->sym;
553 554
	const char *help = "<-/ESC: Exit, TAB/shift+TAB: Cycle hot lines, "
			   "H: Go to hottest line, ->/ENTER: Line action, "
555
			   "O: Toggle offset view, "
556
			   "S: Toggle source code view";
557
	int key;
558

559
	if (ui_browser__show(&self->b, sym->name, help) < 0)
560
		return -1;
561 562 563

	annotate_browser__calc_percent(self, evidx);

564
	if (self->curr_hot) {
565
		annotate_browser__set_rb_top(self, self->curr_hot);
566 567
		self->b.navkeypressed = false;
	}
568 569

	nd = self->curr_hot;
570

571
	while (1) {
572
		key = ui_browser__run(&self->b, delay_secs);
573

574
		if (delay_secs != 0) {
575 576 577 578 579 580 581 582 583 584
			annotate_browser__calc_percent(self, evidx);
			/*
			 * Current line focus got out of the list of most active
			 * lines, NULL it so that if TAB|UNTAB is pressed, we
			 * move to curr_hot (current hottest line).
			 */
			if (nd != NULL && RB_EMPTY_NODE(nd))
				nd = NULL;
		}

585
		switch (key) {
586
		case K_TIMER:
587 588 589 590
			if (timer != NULL)
				timer(arg);

			if (delay_secs != 0)
591 592
				symbol__annotate_decay_histogram(sym, evidx);
			continue;
593
		case K_TAB:
594 595 596 597 598 599
			if (nd != NULL) {
				nd = rb_prev(nd);
				if (nd == NULL)
					nd = rb_last(&self->entries);
			} else
				nd = self->curr_hot;
600
			break;
601
		case K_UNTAB:
602 603 604 605 606 607 608 609
			if (nd != NULL)
				nd = rb_next(nd);
				if (nd == NULL)
					nd = rb_first(&self->entries);
			else
				nd = self->curr_hot;
			break;
		case 'H':
610
		case 'h':
611
			nd = self->curr_hot;
612
			break;
613
		case 'S':
614
		case 's':
615 616 617
			if (annotate_browser__toggle_source(self))
				ui_helpline__puts(help);
			continue;
618 619 620
		case 'O':
		case 'o':
			self->use_offset = !self->use_offset;
621 622 623 624
			if (self->use_offset)
				self->addr_width = self->min_addr_width;
			else
				self->addr_width = self->max_addr_width;
625
			continue;
626 627 628
		case 'j':
			self->jump_arrows = !self->jump_arrows;
			continue;
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
		case '/':
			if (annotate_browser__search(self, delay_secs)) {
show_help:
				ui_helpline__puts(help);
			}
			continue;
		case 'n':
			if (self->searching_backwards ?
			    annotate_browser__continue_search_reverse(self, delay_secs) :
			    annotate_browser__continue_search(self, delay_secs))
				goto show_help;
			continue;
		case '?':
			if (annotate_browser__search_reverse(self, delay_secs))
				goto show_help;
			continue;
645 646
		case K_ENTER:
		case K_RIGHT:
647
			if (self->selection == NULL)
648
				ui_helpline__puts("Huh? No selection. Report to linux-kernel@vger.kernel.org");
649
			else if (self->selection->offset == -1)
650
				ui_helpline__puts("Actions are only available for assembly lines.");
651 652 653 654 655 656 657 658 659
			else if (!self->selection->ins) {
				if (strcmp(self->selection->name, "retq"))
					goto show_sup_ins;
				goto out;
			} else if (!(annotate_browser__jump(self) ||
				     annotate_browser__callq(self, evidx, timer, arg, delay_secs))) {
show_sup_ins:
				ui_helpline__puts("Actions are only available for 'callq', 'retq' & jump instructions.");
			}
660
			continue;
661 662
		case K_LEFT:
		case K_ESC:
663 664
		case 'q':
		case CTRL('c'):
665
			goto out;
666 667
		default:
			continue;
668
		}
669 670

		if (nd != NULL)
671
			annotate_browser__set_rb_top(self, nd);
672 673
	}
out:
674
	ui_browser__hide(&self->b);
675
	return key;
676 677
}

678
int hist_entry__tui_annotate(struct hist_entry *he, int evidx,
679
			     void(*timer)(void *arg), void *arg, int delay_secs)
680
{
681
	return symbol__tui_annotate(he->ms.sym, he->ms.map, evidx,
682
				    timer, arg, delay_secs);
683 684
}

685 686 687 688 689 690 691 692 693
static void annotate_browser__mark_jump_targets(struct annotate_browser *browser,
						size_t size)
{
	u64 offset;

	for (offset = 0; offset < size; ++offset) {
		struct disasm_line *dl = browser->offsets[offset], *dlt;
		struct browser_disasm_line *bdlt;

694 695
		if (!dl || !dl->ins || !ins__is_jump(dl->ins) ||
		    !disasm_line__has_offset(dl))
696 697
			continue;

698
		if (dl->ops.target.offset >= size) {
699 700
			ui__error("jump to after symbol!\n"
				  "size: %zx, jump target: %" PRIx64,
701
				  size, dl->ops.target.offset);
702 703 704
			continue;
		}

705
		dlt = browser->offsets[dl->ops.target.offset];
706 707 708 709 710 711 712
		/*
 		 * FIXME: Oops, no jump target? Buggy disassembler? Or do we
 		 * have to adjust to the previous offset?
 		 */
		if (dlt == NULL)
			continue;

713 714 715 716 717 718
		bdlt = disasm_line__browser(dlt);
		bdlt->jump_target = true;
	}
		
}

719
int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
720
			 void(*timer)(void *arg), void *arg,
721
			 int delay_secs)
722
{
723
	struct disasm_line *pos, *n;
724
	struct annotation *notes;
725
	const size_t size = symbol__size(sym);
726 727 728 729
	struct map_symbol ms = {
		.map = map,
		.sym = sym,
	};
730 731
	struct annotate_browser browser = {
		.b = {
732
			.refresh = annotate_browser__refresh,
733 734
			.seek	 = ui_browser__list_head_seek,
			.write	 = annotate_browser__write,
735
			.filter  = disasm_line__filter,
736
			.priv	 = &ms,
737
			.use_navkeypressed = true,
738
		},
739
		.use_offset = true,
740
		.jump_arrows = true,
741
	};
742
	int ret = -1;
743

744
	if (sym == NULL)
745 746
		return -1;

747
	if (map->dso->annotate_warned)
748 749
		return -1;

750 751 752 753 754 755
	browser.offsets = zalloc(size * sizeof(struct disasm_line *));
	if (browser.offsets == NULL) {
		ui__error("Not enough memory!");
		return -1;
	}

756
	if (symbol__annotate(sym, map, sizeof(struct browser_disasm_line)) < 0) {
757
		ui__error("%s", ui_helpline__last_msg);
758
		goto out_free_offsets;
759 760 761 762
	}

	ui_helpline__push("Press <- or ESC to exit");

763
	notes = symbol__annotation(sym);
764
	browser.start = map__rip_2objdump(map, sym->start);
765

766
	list_for_each_entry(pos, &notes->src->source, node) {
767
		struct browser_disasm_line *bpos;
768
		size_t line_len = strlen(pos->line);
769

770 771
		if (browser.b.width < line_len)
			browser.b.width = line_len;
772 773
		bpos = disasm_line__browser(pos);
		bpos->idx = browser.nr_entries++;
774
		if (pos->offset != -1) {
775
			bpos->idx_asm = browser.nr_asm_entries++;
776 777 778 779 780 781 782 783 784
			/*
			 * FIXME: short term bandaid to cope with assembly
			 * routines that comes with labels in the same column
			 * as the address in objdump, sigh.
			 *
			 * E.g. copy_user_generic_unrolled
 			 */
			if (pos->offset < (s64)size)
				browser.offsets[pos->offset] = pos;
785
		} else
786
			bpos->idx_asm = -1;
787 788
	}

789 790
	annotate_browser__mark_jump_targets(&browser, size);

791 792
	browser.addr_width = browser.min_addr_width = hex_width(size);
	browser.max_addr_width = hex_width(sym->end);
793
	browser.b.nr_entries = browser.nr_entries;
794
	browser.b.entries = &notes->src->source,
795
	browser.b.width += 18; /* Percentage */
796
	ret = annotate_browser__run(&browser, evidx, timer, arg, delay_secs);
797
	list_for_each_entry_safe(pos, n, &notes->src->source, node) {
798
		list_del(&pos->node);
799
		disasm_line__free(pos);
800
	}
801 802 803

out_free_offsets:
	free(browser.offsets);
804 805
	return ret;
}