annotate.c 18.4 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		    searching_backwards;
34
	u8		    offset_width;
35
	char		    search_bf[128];
36 37
};

38
static inline struct browser_disasm_line *disasm_line__browser(struct disasm_line *dl)
39
{
40
	return (struct browser_disasm_line *)(dl + 1);
41 42
}

43
static bool disasm_line__filter(struct ui_browser *browser, void *entry)
44 45 46 47
{
	struct annotate_browser *ab = container_of(browser, struct annotate_browser, b);

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

	return false;
}

55 56
static void annotate_browser__write(struct ui_browser *self, void *entry, int row)
{
57
	struct annotate_browser *ab = container_of(self, struct annotate_browser, b);
58
	struct disasm_line *dl = list_entry(entry, struct disasm_line, node);
59
	struct browser_disasm_line *bdl = disasm_line__browser(dl);
60
	bool current_entry = ui_browser__is_current_entry(self, row);
61 62 63
	bool change_color = (!ab->hide_src_code &&
			     (!current_entry || (self->use_navkeypressed &&
					         !self->navkeypressed)));
64 65
	int width = self->width;

66
	if (dl->offset != -1) {
67 68
		ui_browser__set_percent_color(self, bdl->percent, current_entry);
		slsmg_printf(" %7.2f ", bdl->percent);
69
	} else {
70
		ui_browser__set_percent_color(self, 0, current_entry);
71 72 73
		slsmg_write_nstring(" ", 9);
	}

74 75 76 77
	SLsmg_set_char_set(1);
	SLsmg_write_char(SLSMG_VLINE_CHAR);
	SLsmg_set_char_set(0);
	SLsmg_write_char(' ');
78 79 80 81 82

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

83
	if (dl->offset != -1 && change_color)
84
		ui_browser__set_color(self, HE_COLORSET_CODE);
85

86
	if (!*dl->line)
87
		slsmg_write_nstring(" ", width - 10);
88
	else if (dl->offset == -1)
89
		slsmg_write_nstring(dl->line, width - 10);
90
	else {
91
		char bf[256];
92
		u64 addr = dl->offset;
93
		int printed, color = -1;
94

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

98 99 100 101 102 103 104 105 106 107 108
		if (!ab->use_offset) {
			printed = scnprintf(bf, sizeof(bf), "%" PRIx64 ":", addr);
		} else {
			if (bdl->jump_target) {
				printed = scnprintf(bf, sizeof(bf), "%*" PRIx64 ":",
						    ab->offset_width, addr);
			} else {
				printed = scnprintf(bf, sizeof(bf), "%*s ",
						    ab->offset_width, " ");
			}
		}
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 117 118 119 120 121 122 123 124 125 126 127
			if (ins__is_jump(dl->ins)) {
				bool fwd = dl->ops.target > (u64)dl->offset;

				SLsmg_set_char_set(1);
				SLsmg_write_char(fwd ? SLSMG_DARROW_CHAR :
						       SLSMG_UARROW_CHAR);
				SLsmg_set_char_set(0);
				SLsmg_write_char(' ');
			} else {
				slsmg_write_nstring(" ", 2);
			}

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

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

143
		slsmg_write_nstring(bf, width - 12 - printed);
144
	}
145

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

150
static double disasm_line__calc_percent(struct disasm_line *dl, struct symbol *sym, int evidx)
151 152 153
{
	double percent = 0.0;

154
	if (dl->offset != -1) {
155
		int len = sym->end - sym->start;
156
		unsigned int hits = 0;
157
		struct annotation *notes = symbol__annotation(sym);
158
		struct source_line *src_line = notes->src->lines;
159
		struct sym_hist *h = annotation__histogram(notes, evidx);
160 161
		s64 offset = dl->offset;
		struct disasm_line *next;
162

163
		next = disasm__get_next_ip_line(&notes->src->source, dl);
164 165
		while (offset < (s64)len &&
		       (next == NULL || offset < next->offset)) {
166 167
			if (src_line) {
				percent += src_line[offset].percent;
168
			} else
169
				hits += h->addr[offset];
170 171 172

			++offset;
		}
173 174 175 176 177
		/*
 		 * If the percentage wasn't already calculated in
 		 * symbol__get_source_line, do it now:
 		 */
		if (src_line == NULL && h->sum)
178 179 180
			percent = 100.0 * hits / h->sum;
	}

181 182 183
	return percent;
}

184
static void disasm_rb_tree__insert(struct rb_root *root, struct browser_disasm_line *bdl)
185
{
186
	struct rb_node **p = &root->rb_node;
187
	struct rb_node *parent = NULL;
188
	struct browser_disasm_line *l;
189 190 191

	while (*p != NULL) {
		parent = *p;
192 193
		l = rb_entry(parent, struct browser_disasm_line, rb_node);
		if (bdl->percent < l->percent)
194 195 196 197
			p = &(*p)->rb_left;
		else
			p = &(*p)->rb_right;
	}
198 199
	rb_link_node(&bdl->rb_node, parent, p);
	rb_insert_color(&bdl->rb_node, root);
200 201
}

202
static void annotate_browser__set_top(struct annotate_browser *self,
203
				      struct disasm_line *pos, u32 idx)
204 205 206 207 208
{
	unsigned back;

	ui_browser__refresh_dimensions(&self->b);
	back = self->b.height / 2;
209
	self->b.top_idx = self->b.index = idx;
210 211

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

214
		if (disasm_line__filter(&self->b, &pos->node))
215 216
			continue;

217 218 219 220 221
		--self->b.top_idx;
		--back;
	}

	self->b.top = pos;
222
	self->b.navkeypressed = true;
223 224 225 226 227
}

static void annotate_browser__set_rb_top(struct annotate_browser *browser,
					 struct rb_node *nd)
{
228
	struct browser_disasm_line *bpos;
229
	struct disasm_line *pos;
230

231 232 233
	bpos = rb_entry(nd, struct browser_disasm_line, rb_node);
	pos = ((struct disasm_line *)bpos) - 1;
	annotate_browser__set_top(browser, pos, bpos->idx);
234
	browser->curr_hot = nd;
235 236
}

237 238
static void annotate_browser__calc_percent(struct annotate_browser *browser,
					   int evidx)
239
{
240 241
	struct map_symbol *ms = browser->b.priv;
	struct symbol *sym = ms->sym;
242
	struct annotation *notes = symbol__annotation(sym);
243
	struct disasm_line *pos;
244 245 246 247 248 249

	browser->entries = RB_ROOT;

	pthread_mutex_lock(&notes->lock);

	list_for_each_entry(pos, &notes->src->source, node) {
250 251 252 253
		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);
254 255
			continue;
		}
256
		disasm_rb_tree__insert(&browser->entries, bpos);
257 258 259 260 261 262
	}
	pthread_mutex_unlock(&notes->lock);

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

263 264
static bool annotate_browser__toggle_source(struct annotate_browser *browser)
{
265
	struct disasm_line *dl;
266
	struct browser_disasm_line *bdl;
267 268 269
	off_t offset = browser->b.index - browser->b.top_idx;

	browser->b.seek(&browser->b, offset, SEEK_CUR);
270
	dl = list_entry(browser->b.top, struct disasm_line, node);
271
	bdl = disasm_line__browser(dl);
272 273

	if (browser->hide_src_code) {
274 275
		if (bdl->idx_asm < offset)
			offset = bdl->idx;
276 277 278 279

		browser->b.nr_entries = browser->nr_entries;
		browser->hide_src_code = false;
		browser->b.seek(&browser->b, -offset, SEEK_CUR);
280 281
		browser->b.top_idx = bdl->idx - offset;
		browser->b.index = bdl->idx;
282
	} else {
283
		if (bdl->idx_asm < 0) {
284 285 286 287 288
			ui_helpline__puts("Only available for assembly lines.");
			browser->b.seek(&browser->b, -offset, SEEK_CUR);
			return false;
		}

289 290
		if (bdl->idx_asm < offset)
			offset = bdl->idx_asm;
291 292 293 294

		browser->b.nr_entries = browser->nr_asm_entries;
		browser->hide_src_code = true;
		browser->b.seek(&browser->b, -offset, SEEK_CUR);
295 296
		browser->b.top_idx = bdl->idx_asm - offset;
		browser->b.index = bdl->idx_asm;
297 298 299 300 301
	}

	return true;
}

302 303 304 305 306
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;
307
	struct disasm_line *dl = browser->selection;
308 309 310 311 312
	struct symbol *sym = ms->sym;
	struct annotation *notes;
	struct symbol *target;
	u64 ip;

313
	if (!ins__is_call(dl->ins))
314 315
		return false;

316
	ip = ms->map->map_ip(ms->map, dl->ops.target);
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
	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;
}

339 340 341
static
struct disasm_line *annotate_browser__find_offset(struct annotate_browser *browser,
					  s64 offset, s64 *idx)
342 343 344 345
{
	struct map_symbol *ms = browser->b.priv;
	struct symbol *sym = ms->sym;
	struct annotation *notes = symbol__annotation(sym);
346
	struct disasm_line *pos;
347 348 349 350 351

	*idx = 0;
	list_for_each_entry(pos, &notes->src->source, node) {
		if (pos->offset == offset)
			return pos;
352
		if (!disasm_line__filter(&browser->b, &pos->node))
353 354 355 356 357 358 359 360
			++*idx;
	}

	return NULL;
}

static bool annotate_browser__jump(struct annotate_browser *browser)
{
361
	struct disasm_line *dl = browser->selection;
362
	s64 idx;
363

364
	if (!ins__is_jump(dl->ins))
365 366
		return false;

367
	dl = annotate_browser__find_offset(browser, dl->ops.target, &idx);
368
	if (dl == NULL) {
369 370 371 372
		ui_helpline__puts("Invallid jump offset");
		return true;
	}

373
	annotate_browser__set_top(browser, dl, idx);
374 375 376 377
	
	return true;
}

378 379 380
static
struct disasm_line *annotate_browser__find_string(struct annotate_browser *browser,
					  char *s, s64 *idx)
381 382 383 384
{
	struct map_symbol *ms = browser->b.priv;
	struct symbol *sym = ms->sym;
	struct annotation *notes = symbol__annotation(sym);
385
	struct disasm_line *pos = browser->selection;
386 387 388

	*idx = browser->b.index;
	list_for_each_entry_continue(pos, &notes->src->source, node) {
389
		if (disasm_line__filter(&browser->b, &pos->node))
390 391 392 393 394 395 396 397 398 399 400 401 402
			continue;

		++*idx;

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

	return NULL;
}

static bool __annotate_browser__search(struct annotate_browser *browser)
{
403
	struct disasm_line *dl;
404 405
	s64 idx;

406 407
	dl = annotate_browser__find_string(browser, browser->search_bf, &idx);
	if (dl == NULL) {
408 409 410 411
		ui_helpline__puts("String not found!");
		return false;
	}

412
	annotate_browser__set_top(browser, dl, idx);
413 414 415 416
	browser->searching_backwards = false;
	return true;
}

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

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

		--*idx;

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

	return NULL;
}

static bool __annotate_browser__search_reverse(struct annotate_browser *browser)
{
442
	struct disasm_line *dl;
443 444
	s64 idx;

445 446
	dl = annotate_browser__find_string_reverse(browser, browser->search_bf, &idx);
	if (dl == NULL) {
447 448 449 450
		ui_helpline__puts("String not found!");
		return false;
	}

451
	annotate_browser__set_top(browser, dl, idx);
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
	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);
}

504
static int annotate_browser__run(struct annotate_browser *self, int evidx,
505
				 void(*timer)(void *arg),
506
				 void *arg, int delay_secs)
507 508
{
	struct rb_node *nd = NULL;
509 510
	struct map_symbol *ms = self->b.priv;
	struct symbol *sym = ms->sym;
511 512
	const char *help = "<-/ESC: Exit, TAB/shift+TAB: Cycle hot lines, "
			   "H: Go to hottest line, ->/ENTER: Line action, "
513
			   "O: Toggle offset view, "
514
			   "S: Toggle source code view";
515
	int key;
516

517
	if (ui_browser__show(&self->b, sym->name, help) < 0)
518
		return -1;
519 520 521

	annotate_browser__calc_percent(self, evidx);

522
	if (self->curr_hot) {
523
		annotate_browser__set_rb_top(self, self->curr_hot);
524 525
		self->b.navkeypressed = false;
	}
526 527

	nd = self->curr_hot;
528

529
	while (1) {
530
		key = ui_browser__run(&self->b, delay_secs);
531

532
		if (delay_secs != 0) {
533 534 535 536 537 538 539 540 541 542
			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;
		}

543
		switch (key) {
544
		case K_TIMER:
545 546 547 548
			if (timer != NULL)
				timer(arg);

			if (delay_secs != 0)
549 550
				symbol__annotate_decay_histogram(sym, evidx);
			continue;
551
		case K_TAB:
552 553 554 555 556 557
			if (nd != NULL) {
				nd = rb_prev(nd);
				if (nd == NULL)
					nd = rb_last(&self->entries);
			} else
				nd = self->curr_hot;
558
			break;
559
		case K_UNTAB:
560 561 562 563 564 565 566 567
			if (nd != NULL)
				nd = rb_next(nd);
				if (nd == NULL)
					nd = rb_first(&self->entries);
			else
				nd = self->curr_hot;
			break;
		case 'H':
568
		case 'h':
569
			nd = self->curr_hot;
570
			break;
571
		case 'S':
572
		case 's':
573 574 575
			if (annotate_browser__toggle_source(self))
				ui_helpline__puts(help);
			continue;
576 577 578 579
		case 'O':
		case 'o':
			self->use_offset = !self->use_offset;
			continue;
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
		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;
596 597
		case K_ENTER:
		case K_RIGHT:
598
			if (self->selection == NULL)
599
				ui_helpline__puts("Huh? No selection. Report to linux-kernel@vger.kernel.org");
600
			else if (self->selection->offset == -1)
601
				ui_helpline__puts("Actions are only available for assembly lines.");
602 603
			else if (!self->selection->ins ||
				 !(annotate_browser__jump(self) ||
604 605
				   annotate_browser__callq(self, evidx, timer, arg, delay_secs)))
				ui_helpline__puts("Actions are only available for the 'callq' and jump instructions.");
606
			continue;
607 608
		case K_LEFT:
		case K_ESC:
609 610
		case 'q':
		case CTRL('c'):
611
			goto out;
612 613
		default:
			continue;
614
		}
615 616

		if (nd != NULL)
617
			annotate_browser__set_rb_top(self, nd);
618 619
	}
out:
620
	ui_browser__hide(&self->b);
621
	return key;
622 623
}

624
int hist_entry__tui_annotate(struct hist_entry *he, int evidx,
625
			     void(*timer)(void *arg), void *arg, int delay_secs)
626
{
627
	return symbol__tui_annotate(he->ms.sym, he->ms.map, evidx,
628
				    timer, arg, delay_secs);
629 630
}

631 632 633 634 635 636 637 638 639 640 641 642
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;

		if (!dl || !dl->ins || !ins__is_jump(dl->ins))
			continue;

643
		if (dl->ops.target >= size) {
644 645
			ui__error("jump to after symbol!\n"
				  "size: %zx, jump target: %" PRIx64,
646
				  size, dl->ops.target);
647 648 649
			continue;
		}

650
		dlt = browser->offsets[dl->ops.target];
651 652 653 654 655 656
		bdlt = disasm_line__browser(dlt);
		bdlt->jump_target = true;
	}
		
}

657
int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
658
			 void(*timer)(void *arg), void *arg,
659
			 int delay_secs)
660
{
661
	struct disasm_line *pos, *n;
662
	struct annotation *notes;
663
	const size_t size = symbol__size(sym);
664 665 666 667
	struct map_symbol ms = {
		.map = map,
		.sym = sym,
	};
668 669 670 671 672
	struct annotate_browser browser = {
		.b = {
			.refresh = ui_browser__list_head_refresh,
			.seek	 = ui_browser__list_head_seek,
			.write	 = annotate_browser__write,
673
			.filter  = disasm_line__filter,
674
			.priv	 = &ms,
675
			.use_navkeypressed = true,
676
		},
677
		.use_offset = true,
678
	};
679
	int ret = -1;
680

681
	if (sym == NULL)
682 683
		return -1;

684
	if (map->dso->annotate_warned)
685 686
		return -1;

687 688 689 690 691 692
	browser.offsets = zalloc(size * sizeof(struct disasm_line *));
	if (browser.offsets == NULL) {
		ui__error("Not enough memory!");
		return -1;
	}

693
	if (symbol__annotate(sym, map, sizeof(struct browser_disasm_line)) < 0) {
694
		ui__error("%s", ui_helpline__last_msg);
695
		goto out_free_offsets;
696 697 698 699
	}

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

700
	notes = symbol__annotation(sym);
701
	browser.start = map__rip_2objdump(map, sym->start);
702

703
	list_for_each_entry(pos, &notes->src->source, node) {
704
		struct browser_disasm_line *bpos;
705
		size_t line_len = strlen(pos->line);
706

707 708
		if (browser.b.width < line_len)
			browser.b.width = line_len;
709 710
		bpos = disasm_line__browser(pos);
		bpos->idx = browser.nr_entries++;
711
		if (pos->offset != -1) {
712
			bpos->idx_asm = browser.nr_asm_entries++;
713 714 715 716 717 718 719 720 721
			/*
			 * 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;
722
		} else
723
			bpos->idx_asm = -1;
724 725
	}

726 727
	annotate_browser__mark_jump_targets(&browser, size);

728
	browser.offset_width = hex_width(size);
729
	browser.b.nr_entries = browser.nr_entries;
730
	browser.b.entries = &notes->src->source,
731
	browser.b.width += 18; /* Percentage */
732
	ret = annotate_browser__run(&browser, evidx, timer, arg, delay_secs);
733
	list_for_each_entry_safe(pos, n, &notes->src->source, node) {
734
		list_del(&pos->node);
735
		disasm_line__free(pos);
736
	}
737 738 739

out_free_offsets:
	free(browser.offsets);
740 741
	return ret;
}