]> Pileus Git - ~andy/linux/blob - tools/perf/util/ui/browsers/map.c
1bf09796cb31166b4e87d4fc3410986eb64c2bac
[~andy/linux] / tools / perf / util / ui / browsers / map.c
1 #include "../libslang.h"
2 #include <elf.h>
3 #include <sys/ttydefaults.h>
4 #include <ctype.h>
5 #include <string.h>
6 #include <linux/bitops.h>
7 #include "../../debug.h"
8 #include "../../symbol.h"
9 #include "../browser.h"
10 #include "../helpline.h"
11 #include "map.h"
12
13 static int ui_entry__read(const char *title, char *bf, size_t size, int width)
14 {
15         struct newtExitStruct es;
16         newtComponent form, entry;
17         const char *result;
18         int err = -1;
19
20         newtCenteredWindow(width, 1, title);
21         form = newtForm(NULL, NULL, 0);
22         if (form == NULL)
23                 return -1;
24
25         entry = newtEntry(0, 0, "0x", width, &result, NEWT_FLAG_SCROLL);
26         if (entry == NULL)
27                 goto out_free_form;
28
29         newtFormAddComponent(form, entry);
30         newtFormAddHotKey(form, NEWT_KEY_ENTER);
31         newtFormAddHotKey(form, NEWT_KEY_ESCAPE);
32         newtFormAddHotKey(form, NEWT_KEY_LEFT);
33         newtFormAddHotKey(form, CTRL('c'));
34         newtFormRun(form, &es);
35
36         if (result != NULL) {
37                 strncpy(bf, result, size);
38                 err = 0;
39         }
40 out_free_form:
41         newtPopWindow();
42         newtFormDestroy(form);
43         return 0;
44 }
45
46 struct map_browser {
47         struct ui_browser b;
48         struct map        *map;
49         u16               namelen;
50         u8                addrlen;
51 };
52
53 static void map_browser__write(struct ui_browser *self, void *nd, int row)
54 {
55         struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
56         struct map_browser *mb = container_of(self, struct map_browser, b);
57         bool current_entry = ui_browser__is_current_entry(self, row);
58
59         ui_browser__set_percent_color(self, 0, current_entry);
60         slsmg_printf("%*llx %*llx %c ",
61                      mb->addrlen, sym->start, mb->addrlen, sym->end,
62                      sym->binding == STB_GLOBAL ? 'g' :
63                      sym->binding == STB_LOCAL  ? 'l' : 'w');
64         slsmg_write_nstring(sym->name, mb->namelen);
65 }
66
67 /* FIXME uber-kludgy, see comment on cmd_report... */
68 static u32 *symbol__browser_index(struct symbol *self)
69 {
70         return ((void *)self) - sizeof(struct rb_node) - sizeof(u32);
71 }
72
73 static int map_browser__search(struct map_browser *self)
74 {
75         char target[512];
76         struct symbol *sym;
77         int err = ui_entry__read("Search by name/addr", target, sizeof(target), 40);
78
79         if (err)
80                 return err;
81
82         if (target[0] == '0' && tolower(target[1]) == 'x') {
83                 u64 addr = strtoull(target, NULL, 16);
84                 sym = map__find_symbol(self->map, addr, NULL);
85         } else
86                 sym = map__find_symbol_by_name(self->map, target, NULL);
87
88         if (sym != NULL) {
89                 u32 *idx = symbol__browser_index(sym);
90
91                 self->b.top = &sym->rb_node;
92                 self->b.index = self->b.top_idx = *idx;
93         } else
94                 ui_helpline__fpush("%s not found!", target);
95
96         return 0;
97 }
98
99 static int map_browser__run(struct map_browser *self)
100 {
101         int key;
102
103         if (ui_browser__show(&self->b, self->map->dso->long_name,
104                              "Press <- or ESC to exit, %s / to search",
105                              verbose ? "" : "restart with -v to use") < 0)
106                 return -1;
107
108         if (verbose)
109                 ui_browser__add_exit_key(&self->b, '/');
110
111         while (1) {
112                 key = ui_browser__run(&self->b);
113
114                 if (verbose && key == '/')
115                         map_browser__search(self);
116                 else
117                         break;
118         }
119
120         ui_browser__hide(&self->b);
121         return key;
122 }
123
124 int map__browse(struct map *self)
125 {
126         struct map_browser mb = {
127                 .b = {
128                         .entries = &self->dso->symbols[self->type],
129                         .refresh = ui_browser__rb_tree_refresh,
130                         .seek    = ui_browser__rb_tree_seek,
131                         .write   = map_browser__write,
132                 },
133                 .map = self,
134         };
135         struct rb_node *nd;
136         char tmp[BITS_PER_LONG / 4];
137         u64 maxaddr = 0;
138
139         for (nd = rb_first(mb.b.entries); nd; nd = rb_next(nd)) {
140                 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
141
142                 if (mb.namelen < pos->namelen)
143                         mb.namelen = pos->namelen;
144                 if (maxaddr < pos->end)
145                         maxaddr = pos->end;
146                 if (verbose) {
147                         u32 *idx = symbol__browser_index(pos);
148                         *idx = mb.b.nr_entries;
149                 }
150                 ++mb.b.nr_entries;
151         }
152
153         mb.addrlen = snprintf(tmp, sizeof(tmp), "%llx", maxaddr);
154         mb.b.width += mb.addrlen * 2 + 4 + mb.namelen;
155         return map_browser__run(&mb);
156 }