perf tui: Introduce list_head based generic ui_browser refresh routine

So that building other browser based on structures linked via a linked
list can be as easy as it is already for the ones linked via an rb_tree.

Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
LKML-Reference: <new-submission>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 449e5b24
...@@ -15,4 +15,12 @@ static inline void list_del_range(struct list_head *begin, ...@@ -15,4 +15,12 @@ static inline void list_del_range(struct list_head *begin,
begin->prev->next = end->next; begin->prev->next = end->next;
end->next->prev = begin->prev; end->next->prev = begin->prev;
} }
/**
* list_for_each_from - iterate over a list from one of its nodes
* @pos: the &struct list_head to use as a loop cursor, from where to start
* @head: the head for your list.
*/
#define list_for_each_from(pos, head) \
for (; prefetch(pos->next), pos != (head); pos = pos->next)
#endif #endif
...@@ -456,20 +456,24 @@ static int ui_browser__show(struct ui_browser *self, const char *title) ...@@ -456,20 +456,24 @@ static int ui_browser__show(struct ui_browser *self, const char *title)
return 0; return 0;
} }
static int objdump_line__show(struct objdump_line *self, struct list_head *head, static void annotate_browser__write(struct ui_browser *self, void *entry, int row)
int width, struct hist_entry *he, int len,
bool current_entry)
{ {
if (self->offset != -1) { struct objdump_line *ol = rb_entry(entry, struct objdump_line, node);
bool current_entry = ui_browser__is_current_entry(self, row);
int width = self->width;
if (ol->offset != -1) {
struct hist_entry *he = self->priv;
struct symbol *sym = he->ms.sym; struct symbol *sym = he->ms.sym;
int len = he->ms.sym->end - he->ms.sym->start;
unsigned int hits = 0; unsigned int hits = 0;
double percent = 0.0; double percent = 0.0;
int color; int color;
struct sym_priv *priv = symbol__priv(sym); struct sym_priv *priv = symbol__priv(sym);
struct sym_ext *sym_ext = priv->ext; struct sym_ext *sym_ext = priv->ext;
struct sym_hist *h = priv->hist; struct sym_hist *h = priv->hist;
s64 offset = self->offset; s64 offset = ol->offset;
struct objdump_line *next = objdump__get_next_ip_line(head, self); struct objdump_line *next = objdump__get_next_ip_line(self->entries, ol);
while (offset < (s64)len && while (offset < (s64)len &&
(next == NULL || offset < next->offset)) { (next == NULL || offset < next->offset)) {
...@@ -497,12 +501,10 @@ static int objdump_line__show(struct objdump_line *self, struct list_head *head, ...@@ -497,12 +501,10 @@ static int objdump_line__show(struct objdump_line *self, struct list_head *head,
SLsmg_write_char(':'); SLsmg_write_char(':');
slsmg_write_nstring(" ", 8); slsmg_write_nstring(" ", 8);
if (!*self->line) if (!*ol->line)
slsmg_write_nstring(" ", width - 18); slsmg_write_nstring(" ", width - 18);
else else
slsmg_write_nstring(self->line, width - 18); slsmg_write_nstring(ol->line, width - 18);
return 0;
} }
static int ui_browser__refresh(struct ui_browser *self) static int ui_browser__refresh(struct ui_browser *self)
...@@ -607,24 +609,20 @@ static char *callchain_list__sym_name(struct callchain_list *self, ...@@ -607,24 +609,20 @@ static char *callchain_list__sym_name(struct callchain_list *self,
return bf; return bf;
} }
static unsigned int hist_entry__annotate_browser_refresh(struct ui_browser *self) static unsigned int ui_browser__list_head_refresh(struct ui_browser *self)
{ {
struct objdump_line *pos; struct list_head *pos;
struct list_head *head = self->entries; struct list_head *head = self->entries;
struct hist_entry *he = self->priv;
int row = 0; int row = 0;
int len = he->ms.sym->end - he->ms.sym->start;
if (self->first_visible_entry == NULL || self->first_visible_entry == self->entries) if (self->first_visible_entry == NULL || self->first_visible_entry == self->entries)
self->first_visible_entry = head->next; self->first_visible_entry = head->next;
pos = list_entry(self->first_visible_entry, struct objdump_line, node); pos = self->first_visible_entry;
list_for_each_entry_from(pos, head, node) { list_for_each_from(pos, head) {
bool current_entry = ui_browser__is_current_entry(self, row);
SLsmg_gotorc(self->top + row, self->left); SLsmg_gotorc(self->top + row, self->left);
objdump_line__show(pos, head, self->width, self->write(self, pos, row);
he, len, current_entry);
if (++row == self->height) if (++row == self->height)
break; break;
} }
...@@ -634,10 +632,16 @@ static unsigned int hist_entry__annotate_browser_refresh(struct ui_browser *self ...@@ -634,10 +632,16 @@ static unsigned int hist_entry__annotate_browser_refresh(struct ui_browser *self
int hist_entry__tui_annotate(struct hist_entry *self) int hist_entry__tui_annotate(struct hist_entry *self)
{ {
struct ui_browser browser;
struct newtExitStruct es; struct newtExitStruct es;
struct objdump_line *pos, *n; struct objdump_line *pos, *n;
LIST_HEAD(head); LIST_HEAD(head);
struct ui_browser browser = {
.entries = &head,
.refresh = ui_browser__list_head_refresh,
.seek = ui_browser__list_head_seek,
.write = annotate_browser__write,
.priv = self,
};
int ret; int ret;
if (self->ms.sym == NULL) if (self->ms.sym == NULL)
...@@ -653,11 +657,6 @@ int hist_entry__tui_annotate(struct hist_entry *self) ...@@ -653,11 +657,6 @@ int hist_entry__tui_annotate(struct hist_entry *self)
ui_helpline__push("Press <- or ESC to exit"); ui_helpline__push("Press <- or ESC to exit");
memset(&browser, 0, sizeof(browser));
browser.entries = &head;
browser.refresh = hist_entry__annotate_browser_refresh;
browser.seek = ui_browser__list_head_seek;
browser.priv = self;
list_for_each_entry(pos, &head, node) { list_for_each_entry(pos, &head, node) {
size_t line_len = strlen(pos->line); size_t line_len = strlen(pos->line);
if (browser.width < line_len) if (browser.width < line_len)
......
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