blob: 9fddca749ca2fa541b7f3c247f5567476c296f40 [file] [log] [blame]
Li Zefanba77c9e2009-11-20 15:53:25 +08001#include "builtin.h"
2#include "perf.h"
3
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -03004#include "util/evlist.h"
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03005#include "util/evsel.h"
Li Zefanba77c9e2009-11-20 15:53:25 +08006#include "util/util.h"
7#include "util/cache.h"
8#include "util/symbol.h"
9#include "util/thread.h"
10#include "util/header.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020011#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020012#include "util/tool.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080013
14#include "util/parse-options.h"
15#include "util/trace-event.h"
16
17#include "util/debug.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080018
19#include <linux/rbtree.h>
20
21struct alloc_stat;
22typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *);
23
Li Zefanba77c9e2009-11-20 15:53:25 +080024static int alloc_flag;
25static int caller_flag;
26
Li Zefanba77c9e2009-11-20 15:53:25 +080027static int alloc_lines = -1;
28static int caller_lines = -1;
29
Li Zefan7707b6b2009-11-24 13:25:48 +080030static bool raw_ip;
31
Li Zefan7d0d3942009-11-24 13:26:31 +080032static int *cpunode_map;
33static int max_cpu_num;
34
Li Zefanba77c9e2009-11-20 15:53:25 +080035struct alloc_stat {
Li Zefan079d3f62009-11-24 13:26:55 +080036 u64 call_site;
37 u64 ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +080038 u64 bytes_req;
39 u64 bytes_alloc;
40 u32 hit;
Li Zefan079d3f62009-11-24 13:26:55 +080041 u32 pingpong;
42
43 short alloc_cpu;
Li Zefanba77c9e2009-11-20 15:53:25 +080044
45 struct rb_node node;
46};
47
48static struct rb_root root_alloc_stat;
49static struct rb_root root_alloc_sorted;
50static struct rb_root root_caller_stat;
51static struct rb_root root_caller_sorted;
52
53static unsigned long total_requested, total_allocated;
Li Zefan7d0d3942009-11-24 13:26:31 +080054static unsigned long nr_allocs, nr_cross_allocs;
Li Zefanba77c9e2009-11-20 15:53:25 +080055
Li Zefan7d0d3942009-11-24 13:26:31 +080056#define PATH_SYS_NODE "/sys/devices/system/node"
57
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030058static int init_cpunode_map(void)
Li Zefan7d0d3942009-11-24 13:26:31 +080059{
60 FILE *fp;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030061 int i, err = -1;
Li Zefan7d0d3942009-11-24 13:26:31 +080062
63 fp = fopen("/sys/devices/system/cpu/kernel_max", "r");
64 if (!fp) {
65 max_cpu_num = 4096;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030066 return 0;
Li Zefan7d0d3942009-11-24 13:26:31 +080067 }
68
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030069 if (fscanf(fp, "%d", &max_cpu_num) < 1) {
70 pr_err("Failed to read 'kernel_max' from sysfs");
71 goto out_close;
72 }
73
Li Zefan7d0d3942009-11-24 13:26:31 +080074 max_cpu_num++;
75
76 cpunode_map = calloc(max_cpu_num, sizeof(int));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030077 if (!cpunode_map) {
78 pr_err("%s: calloc failed\n", __func__);
79 goto out_close;
80 }
81
Li Zefan7d0d3942009-11-24 13:26:31 +080082 for (i = 0; i < max_cpu_num; i++)
83 cpunode_map[i] = -1;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030084
85 err = 0;
86out_close:
Li Zefan7d0d3942009-11-24 13:26:31 +080087 fclose(fp);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030088 return err;
Li Zefan7d0d3942009-11-24 13:26:31 +080089}
90
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030091static int setup_cpunode_map(void)
Li Zefan7d0d3942009-11-24 13:26:31 +080092{
93 struct dirent *dent1, *dent2;
94 DIR *dir1, *dir2;
95 unsigned int cpu, mem;
96 char buf[PATH_MAX];
97
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030098 if (init_cpunode_map())
99 return -1;
Li Zefan7d0d3942009-11-24 13:26:31 +0800100
101 dir1 = opendir(PATH_SYS_NODE);
102 if (!dir1)
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300103 return -1;
Li Zefan7d0d3942009-11-24 13:26:31 +0800104
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500105 while ((dent1 = readdir(dir1)) != NULL) {
106 if (dent1->d_type != DT_DIR ||
107 sscanf(dent1->d_name, "node%u", &mem) < 1)
Li Zefan7d0d3942009-11-24 13:26:31 +0800108 continue;
109
110 snprintf(buf, PATH_MAX, "%s/%s", PATH_SYS_NODE, dent1->d_name);
111 dir2 = opendir(buf);
112 if (!dir2)
113 continue;
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500114 while ((dent2 = readdir(dir2)) != NULL) {
115 if (dent2->d_type != DT_LNK ||
116 sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
Li Zefan7d0d3942009-11-24 13:26:31 +0800117 continue;
118 cpunode_map[cpu] = mem;
119 }
Namhyung Kim8442da12012-01-08 02:25:28 +0900120 closedir(dir2);
Li Zefan7d0d3942009-11-24 13:26:31 +0800121 }
Namhyung Kim8442da12012-01-08 02:25:28 +0900122 closedir(dir1);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300123 return 0;
Li Zefan7d0d3942009-11-24 13:26:31 +0800124}
125
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300126static int insert_alloc_stat(unsigned long call_site, unsigned long ptr,
127 int bytes_req, int bytes_alloc, int cpu)
Li Zefanba77c9e2009-11-20 15:53:25 +0800128{
129 struct rb_node **node = &root_alloc_stat.rb_node;
130 struct rb_node *parent = NULL;
131 struct alloc_stat *data = NULL;
132
Li Zefanba77c9e2009-11-20 15:53:25 +0800133 while (*node) {
134 parent = *node;
135 data = rb_entry(*node, struct alloc_stat, node);
136
137 if (ptr > data->ptr)
138 node = &(*node)->rb_right;
139 else if (ptr < data->ptr)
140 node = &(*node)->rb_left;
141 else
142 break;
143 }
144
145 if (data && data->ptr == ptr) {
146 data->hit++;
147 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +0800148 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +0800149 } else {
150 data = malloc(sizeof(*data));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300151 if (!data) {
152 pr_err("%s: malloc failed\n", __func__);
153 return -1;
154 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800155 data->ptr = ptr;
Li Zefan079d3f62009-11-24 13:26:55 +0800156 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800157 data->hit = 1;
158 data->bytes_req = bytes_req;
159 data->bytes_alloc = bytes_alloc;
160
161 rb_link_node(&data->node, parent, node);
162 rb_insert_color(&data->node, &root_alloc_stat);
163 }
Li Zefan079d3f62009-11-24 13:26:55 +0800164 data->call_site = call_site;
165 data->alloc_cpu = cpu;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300166 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800167}
168
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300169static int insert_caller_stat(unsigned long call_site,
Li Zefanba77c9e2009-11-20 15:53:25 +0800170 int bytes_req, int bytes_alloc)
171{
172 struct rb_node **node = &root_caller_stat.rb_node;
173 struct rb_node *parent = NULL;
174 struct alloc_stat *data = NULL;
175
Li Zefanba77c9e2009-11-20 15:53:25 +0800176 while (*node) {
177 parent = *node;
178 data = rb_entry(*node, struct alloc_stat, node);
179
180 if (call_site > data->call_site)
181 node = &(*node)->rb_right;
182 else if (call_site < data->call_site)
183 node = &(*node)->rb_left;
184 else
185 break;
186 }
187
188 if (data && data->call_site == call_site) {
189 data->hit++;
190 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +0800191 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +0800192 } else {
193 data = malloc(sizeof(*data));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300194 if (!data) {
195 pr_err("%s: malloc failed\n", __func__);
196 return -1;
197 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800198 data->call_site = call_site;
Li Zefan079d3f62009-11-24 13:26:55 +0800199 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800200 data->hit = 1;
201 data->bytes_req = bytes_req;
202 data->bytes_alloc = bytes_alloc;
203
204 rb_link_node(&data->node, parent, node);
205 rb_insert_color(&data->node, &root_caller_stat);
206 }
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300207
208 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800209}
210
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300211static int perf_evsel__process_alloc_event(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300212 struct perf_sample *sample)
Li Zefanba77c9e2009-11-20 15:53:25 +0800213{
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300214 unsigned long ptr = perf_evsel__intval(evsel, sample, "ptr"),
215 call_site = perf_evsel__intval(evsel, sample, "call_site");
216 int bytes_req = perf_evsel__intval(evsel, sample, "bytes_req"),
217 bytes_alloc = perf_evsel__intval(evsel, sample, "bytes_alloc");
Li Zefanba77c9e2009-11-20 15:53:25 +0800218
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300219 if (insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, sample->cpu) ||
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300220 insert_caller_stat(call_site, bytes_req, bytes_alloc))
221 return -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800222
223 total_requested += bytes_req;
224 total_allocated += bytes_alloc;
Li Zefan7d0d3942009-11-24 13:26:31 +0800225
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300226 nr_allocs++;
227 return 0;
228}
229
230static int perf_evsel__process_alloc_node_event(struct perf_evsel *evsel,
231 struct perf_sample *sample)
232{
233 int ret = perf_evsel__process_alloc_event(evsel, sample);
234
235 if (!ret) {
236 int node1 = cpunode_map[sample->cpu],
237 node2 = perf_evsel__intval(evsel, sample, "node");
238
Li Zefan7d0d3942009-11-24 13:26:31 +0800239 if (node1 != node2)
240 nr_cross_allocs++;
241 }
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300242
243 return ret;
Li Zefanba77c9e2009-11-20 15:53:25 +0800244}
245
Li Zefan079d3f62009-11-24 13:26:55 +0800246static int ptr_cmp(struct alloc_stat *, struct alloc_stat *);
247static int callsite_cmp(struct alloc_stat *, struct alloc_stat *);
248
249static struct alloc_stat *search_alloc_stat(unsigned long ptr,
250 unsigned long call_site,
251 struct rb_root *root,
252 sort_fn_t sort_fn)
253{
254 struct rb_node *node = root->rb_node;
255 struct alloc_stat key = { .ptr = ptr, .call_site = call_site };
256
257 while (node) {
258 struct alloc_stat *data;
259 int cmp;
260
261 data = rb_entry(node, struct alloc_stat, node);
262
263 cmp = sort_fn(&key, data);
264 if (cmp < 0)
265 node = node->rb_left;
266 else if (cmp > 0)
267 node = node->rb_right;
268 else
269 return data;
270 }
271 return NULL;
272}
273
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300274static int perf_evsel__process_free_event(struct perf_evsel *evsel,
275 struct perf_sample *sample)
Li Zefanba77c9e2009-11-20 15:53:25 +0800276{
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300277 unsigned long ptr = perf_evsel__intval(evsel, sample, "ptr");
Li Zefan079d3f62009-11-24 13:26:55 +0800278 struct alloc_stat *s_alloc, *s_caller;
279
Li Zefan079d3f62009-11-24 13:26:55 +0800280 s_alloc = search_alloc_stat(ptr, 0, &root_alloc_stat, ptr_cmp);
281 if (!s_alloc)
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300282 return 0;
Li Zefan079d3f62009-11-24 13:26:55 +0800283
Arnaldo Carvalho de Melo22ad7982012-08-07 10:56:43 -0300284 if ((short)sample->cpu != s_alloc->alloc_cpu) {
Li Zefan079d3f62009-11-24 13:26:55 +0800285 s_alloc->pingpong++;
286
287 s_caller = search_alloc_stat(0, s_alloc->call_site,
288 &root_caller_stat, callsite_cmp);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300289 if (!s_caller)
290 return -1;
Li Zefan079d3f62009-11-24 13:26:55 +0800291 s_caller->pingpong++;
292 }
293 s_alloc->alloc_cpu = -1;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300294
295 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800296}
297
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300298typedef int (*tracepoint_handler)(struct perf_evsel *evsel,
299 struct perf_sample *sample);
Li Zefanba77c9e2009-11-20 15:53:25 +0800300
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300301static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200302 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200303 struct perf_sample *sample,
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300304 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200305 struct machine *machine)
Li Zefanba77c9e2009-11-20 15:53:25 +0800306{
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200307 struct thread *thread = machine__findnew_thread(machine, event->ip.pid);
Li Zefanba77c9e2009-11-20 15:53:25 +0800308
Li Zefanba77c9e2009-11-20 15:53:25 +0800309 if (thread == NULL) {
310 pr_debug("problem processing %d event, skipping it.\n",
311 event->header.type);
312 return -1;
313 }
314
315 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
316
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300317 if (evsel->handler.func != NULL) {
318 tracepoint_handler f = evsel->handler.func;
319 return f(evsel, sample);
320 }
321
322 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800323}
324
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300325static struct perf_tool perf_kmem = {
326 .sample = process_sample_event,
327 .comm = perf_event__process_comm,
328 .ordered_samples = true,
Li Zefanba77c9e2009-11-20 15:53:25 +0800329};
330
Li Zefanba77c9e2009-11-20 15:53:25 +0800331static double fragmentation(unsigned long n_req, unsigned long n_alloc)
332{
333 if (n_alloc == 0)
334 return 0.0;
335 else
336 return 100.0 - (100.0 * n_req / n_alloc);
337}
338
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200339static void __print_result(struct rb_root *root, struct perf_session *session,
340 int n_lines, int is_caller)
Li Zefanba77c9e2009-11-20 15:53:25 +0800341{
342 struct rb_node *next;
Arnaldo Carvalho de Melo34ba5122012-12-19 09:04:24 -0300343 struct machine *machine = &session->machines.host;
Li Zefanba77c9e2009-11-20 15:53:25 +0800344
Li Zefan079d3f62009-11-24 13:26:55 +0800345 printf("%.102s\n", graph_dotted_line);
346 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr");
Pekka Enberg47103272010-01-19 19:23:23 +0200347 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
Li Zefan079d3f62009-11-24 13:26:55 +0800348 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800349
350 next = rb_first(root);
351
352 while (next && n_lines--) {
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200353 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
354 node);
355 struct symbol *sym = NULL;
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300356 struct map *map;
Li Zefan079d3f62009-11-24 13:26:55 +0800357 char buf[BUFSIZ];
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200358 u64 addr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800359
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200360 if (is_caller) {
361 addr = data->call_site;
Li Zefan7707b6b2009-11-24 13:25:48 +0800362 if (!raw_ip)
Arnaldo Carvalho de Melo5c0541d2010-04-29 15:25:23 -0300363 sym = machine__find_kernel_function(machine, addr, &map, NULL);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200364 } else
365 addr = data->ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800366
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200367 if (sym != NULL)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200368 snprintf(buf, sizeof(buf), "%s+%" PRIx64 "", sym->name,
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300369 addr - map->unmap_ip(map, sym->start));
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200370 else
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200371 snprintf(buf, sizeof(buf), "%#" PRIx64 "", addr);
Li Zefan079d3f62009-11-24 13:26:55 +0800372 printf(" %-34s |", buf);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200373
Pekka Enberg47103272010-01-19 19:23:23 +0200374 printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n",
Li Zefan079d3f62009-11-24 13:26:55 +0800375 (unsigned long long)data->bytes_alloc,
Li Zefanba77c9e2009-11-20 15:53:25 +0800376 (unsigned long)data->bytes_alloc / data->hit,
377 (unsigned long long)data->bytes_req,
378 (unsigned long)data->bytes_req / data->hit,
379 (unsigned long)data->hit,
Li Zefan079d3f62009-11-24 13:26:55 +0800380 (unsigned long)data->pingpong,
Li Zefanba77c9e2009-11-20 15:53:25 +0800381 fragmentation(data->bytes_req, data->bytes_alloc));
382
383 next = rb_next(next);
384 }
385
386 if (n_lines == -1)
Li Zefan079d3f62009-11-24 13:26:55 +0800387 printf(" ... | ... | ... | ... | ... | ... \n");
Li Zefanba77c9e2009-11-20 15:53:25 +0800388
Li Zefan079d3f62009-11-24 13:26:55 +0800389 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800390}
391
392static void print_summary(void)
393{
394 printf("\nSUMMARY\n=======\n");
395 printf("Total bytes requested: %lu\n", total_requested);
396 printf("Total bytes allocated: %lu\n", total_allocated);
397 printf("Total bytes wasted on internal fragmentation: %lu\n",
398 total_allocated - total_requested);
399 printf("Internal fragmentation: %f%%\n",
400 fragmentation(total_requested, total_allocated));
Li Zefan7d0d3942009-11-24 13:26:31 +0800401 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs, nr_allocs);
Li Zefanba77c9e2009-11-20 15:53:25 +0800402}
403
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200404static void print_result(struct perf_session *session)
Li Zefanba77c9e2009-11-20 15:53:25 +0800405{
406 if (caller_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200407 __print_result(&root_caller_sorted, session, caller_lines, 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800408 if (alloc_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200409 __print_result(&root_alloc_sorted, session, alloc_lines, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800410 print_summary();
411}
412
Li Zefan29b3e152009-11-24 13:26:10 +0800413struct sort_dimension {
414 const char name[20];
415 sort_fn_t cmp;
416 struct list_head list;
417};
418
419static LIST_HEAD(caller_sort);
420static LIST_HEAD(alloc_sort);
421
Li Zefanba77c9e2009-11-20 15:53:25 +0800422static void sort_insert(struct rb_root *root, struct alloc_stat *data,
Li Zefan29b3e152009-11-24 13:26:10 +0800423 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800424{
425 struct rb_node **new = &(root->rb_node);
426 struct rb_node *parent = NULL;
Li Zefan29b3e152009-11-24 13:26:10 +0800427 struct sort_dimension *sort;
Li Zefanba77c9e2009-11-20 15:53:25 +0800428
429 while (*new) {
430 struct alloc_stat *this;
Li Zefan29b3e152009-11-24 13:26:10 +0800431 int cmp = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800432
433 this = rb_entry(*new, struct alloc_stat, node);
434 parent = *new;
435
Li Zefan29b3e152009-11-24 13:26:10 +0800436 list_for_each_entry(sort, sort_list, list) {
437 cmp = sort->cmp(data, this);
438 if (cmp)
439 break;
440 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800441
442 if (cmp > 0)
443 new = &((*new)->rb_left);
444 else
445 new = &((*new)->rb_right);
446 }
447
448 rb_link_node(&data->node, parent, new);
449 rb_insert_color(&data->node, root);
450}
451
452static void __sort_result(struct rb_root *root, struct rb_root *root_sorted,
Li Zefan29b3e152009-11-24 13:26:10 +0800453 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800454{
455 struct rb_node *node;
456 struct alloc_stat *data;
457
458 for (;;) {
459 node = rb_first(root);
460 if (!node)
461 break;
462
463 rb_erase(node, root);
464 data = rb_entry(node, struct alloc_stat, node);
Li Zefan29b3e152009-11-24 13:26:10 +0800465 sort_insert(root_sorted, data, sort_list);
Li Zefanba77c9e2009-11-20 15:53:25 +0800466 }
467}
468
469static void sort_result(void)
470{
Li Zefan29b3e152009-11-24 13:26:10 +0800471 __sort_result(&root_alloc_stat, &root_alloc_sorted, &alloc_sort);
472 __sort_result(&root_caller_stat, &root_caller_sorted, &caller_sort);
Li Zefanba77c9e2009-11-20 15:53:25 +0800473}
474
Feng Tang70cb4e92012-10-30 11:56:02 +0800475static int __cmd_kmem(void)
Li Zefanba77c9e2009-11-20 15:53:25 +0800476{
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200477 int err = -EINVAL;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300478 struct perf_session *session;
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300479 const struct perf_evsel_str_handler kmem_tracepoints[] = {
480 { "kmem:kmalloc", perf_evsel__process_alloc_event, },
481 { "kmem:kmem_cache_alloc", perf_evsel__process_alloc_event, },
482 { "kmem:kmalloc_node", perf_evsel__process_alloc_node_event, },
483 { "kmem:kmem_cache_alloc_node", perf_evsel__process_alloc_node_event, },
484 { "kmem:kfree", perf_evsel__process_free_event, },
485 { "kmem:kmem_cache_free", perf_evsel__process_free_event, },
486 };
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300487
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300488 session = perf_session__new(input_name, O_RDONLY, 0, false, &perf_kmem);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200489 if (session == NULL)
490 return -ENOMEM;
Li Zefanba77c9e2009-11-20 15:53:25 +0800491
Arnaldo Carvalho de Meloe727ca72010-04-01 19:12:13 -0300492 if (perf_session__create_kernel_maps(session) < 0)
493 goto out_delete;
494
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200495 if (!perf_session__has_traces(session, "kmem record"))
496 goto out_delete;
497
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300498 if (perf_session__set_tracepoints_handlers(session, kmem_tracepoints)) {
499 pr_err("Initializing perf session tracepoint handlers failed\n");
500 return -1;
501 }
502
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200503 setup_pager();
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300504 err = perf_session__process_events(session, &perf_kmem);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200505 if (err != 0)
506 goto out_delete;
507 sort_result();
508 print_result(session);
509out_delete:
510 perf_session__delete(session);
511 return err;
Li Zefanba77c9e2009-11-20 15:53:25 +0800512}
513
Li Zefanba77c9e2009-11-20 15:53:25 +0800514static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
515{
516 if (l->ptr < r->ptr)
517 return -1;
518 else if (l->ptr > r->ptr)
519 return 1;
520 return 0;
521}
522
Li Zefan29b3e152009-11-24 13:26:10 +0800523static struct sort_dimension ptr_sort_dimension = {
524 .name = "ptr",
525 .cmp = ptr_cmp,
526};
527
Li Zefanba77c9e2009-11-20 15:53:25 +0800528static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
529{
530 if (l->call_site < r->call_site)
531 return -1;
532 else if (l->call_site > r->call_site)
533 return 1;
534 return 0;
535}
536
Li Zefan29b3e152009-11-24 13:26:10 +0800537static struct sort_dimension callsite_sort_dimension = {
538 .name = "callsite",
539 .cmp = callsite_cmp,
540};
541
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200542static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
543{
544 if (l->hit < r->hit)
545 return -1;
546 else if (l->hit > r->hit)
547 return 1;
548 return 0;
549}
550
Li Zefan29b3e152009-11-24 13:26:10 +0800551static struct sort_dimension hit_sort_dimension = {
552 .name = "hit",
553 .cmp = hit_cmp,
554};
555
Li Zefanba77c9e2009-11-20 15:53:25 +0800556static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
557{
558 if (l->bytes_alloc < r->bytes_alloc)
559 return -1;
560 else if (l->bytes_alloc > r->bytes_alloc)
561 return 1;
562 return 0;
563}
564
Li Zefan29b3e152009-11-24 13:26:10 +0800565static struct sort_dimension bytes_sort_dimension = {
566 .name = "bytes",
567 .cmp = bytes_cmp,
568};
569
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200570static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
571{
572 double x, y;
573
574 x = fragmentation(l->bytes_req, l->bytes_alloc);
575 y = fragmentation(r->bytes_req, r->bytes_alloc);
576
577 if (x < y)
578 return -1;
579 else if (x > y)
580 return 1;
581 return 0;
582}
583
Li Zefan29b3e152009-11-24 13:26:10 +0800584static struct sort_dimension frag_sort_dimension = {
585 .name = "frag",
586 .cmp = frag_cmp,
587};
588
Li Zefan079d3f62009-11-24 13:26:55 +0800589static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)
590{
591 if (l->pingpong < r->pingpong)
592 return -1;
593 else if (l->pingpong > r->pingpong)
594 return 1;
595 return 0;
596}
597
598static struct sort_dimension pingpong_sort_dimension = {
599 .name = "pingpong",
600 .cmp = pingpong_cmp,
601};
602
Li Zefan29b3e152009-11-24 13:26:10 +0800603static struct sort_dimension *avail_sorts[] = {
604 &ptr_sort_dimension,
605 &callsite_sort_dimension,
606 &hit_sort_dimension,
607 &bytes_sort_dimension,
608 &frag_sort_dimension,
Li Zefan079d3f62009-11-24 13:26:55 +0800609 &pingpong_sort_dimension,
Li Zefan29b3e152009-11-24 13:26:10 +0800610};
611
612#define NUM_AVAIL_SORTS \
613 (int)(sizeof(avail_sorts) / sizeof(struct sort_dimension *))
614
615static int sort_dimension__add(const char *tok, struct list_head *list)
616{
617 struct sort_dimension *sort;
618 int i;
619
620 for (i = 0; i < NUM_AVAIL_SORTS; i++) {
621 if (!strcmp(avail_sorts[i]->name, tok)) {
622 sort = malloc(sizeof(*sort));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300623 if (!sort) {
624 pr_err("%s: malloc failed\n", __func__);
625 return -1;
626 }
Li Zefan29b3e152009-11-24 13:26:10 +0800627 memcpy(sort, avail_sorts[i], sizeof(*sort));
628 list_add_tail(&sort->list, list);
629 return 0;
630 }
631 }
632
633 return -1;
634}
635
636static int setup_sorting(struct list_head *sort_list, const char *arg)
637{
638 char *tok;
639 char *str = strdup(arg);
640
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300641 if (!str) {
642 pr_err("%s: strdup failed\n", __func__);
643 return -1;
644 }
Li Zefan29b3e152009-11-24 13:26:10 +0800645
646 while (true) {
647 tok = strsep(&str, ",");
648 if (!tok)
649 break;
650 if (sort_dimension__add(tok, sort_list) < 0) {
651 error("Unknown --sort key: '%s'", tok);
Namhyung Kim1b228592012-01-08 02:25:29 +0900652 free(str);
Li Zefan29b3e152009-11-24 13:26:10 +0800653 return -1;
654 }
655 }
656
657 free(str);
658 return 0;
659}
660
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300661static int parse_sort_opt(const struct option *opt __maybe_unused,
662 const char *arg, int unset __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800663{
Li Zefanba77c9e2009-11-20 15:53:25 +0800664 if (!arg)
665 return -1;
666
Li Zefanba77c9e2009-11-20 15:53:25 +0800667 if (caller_flag > alloc_flag)
Li Zefan29b3e152009-11-24 13:26:10 +0800668 return setup_sorting(&caller_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800669 else
Li Zefan29b3e152009-11-24 13:26:10 +0800670 return setup_sorting(&alloc_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800671
672 return 0;
673}
674
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300675static int parse_caller_opt(const struct option *opt __maybe_unused,
676 const char *arg __maybe_unused,
677 int unset __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800678{
Li Zefan90b86a92009-12-10 15:21:57 +0800679 caller_flag = (alloc_flag + 1);
680 return 0;
681}
Li Zefanba77c9e2009-11-20 15:53:25 +0800682
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300683static int parse_alloc_opt(const struct option *opt __maybe_unused,
684 const char *arg __maybe_unused,
685 int unset __maybe_unused)
Li Zefan90b86a92009-12-10 15:21:57 +0800686{
687 alloc_flag = (caller_flag + 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800688 return 0;
689}
690
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300691static int parse_line_opt(const struct option *opt __maybe_unused,
692 const char *arg, int unset __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800693{
694 int lines;
695
696 if (!arg)
697 return -1;
698
699 lines = strtoul(arg, NULL, 10);
700
701 if (caller_flag > alloc_flag)
702 caller_lines = lines;
703 else
704 alloc_lines = lines;
705
706 return 0;
707}
708
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300709static int __cmd_record(int argc, const char **argv)
710{
711 const char * const record_args[] = {
712 "record", "-a", "-R", "-f", "-c", "1",
Li Zefanba77c9e2009-11-20 15:53:25 +0800713 "-e", "kmem:kmalloc",
714 "-e", "kmem:kmalloc_node",
715 "-e", "kmem:kfree",
716 "-e", "kmem:kmem_cache_alloc",
717 "-e", "kmem:kmem_cache_alloc_node",
718 "-e", "kmem:kmem_cache_free",
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300719 };
Li Zefanba77c9e2009-11-20 15:53:25 +0800720 unsigned int rec_argc, i, j;
721 const char **rec_argv;
722
723 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
724 rec_argv = calloc(rec_argc + 1, sizeof(char *));
725
Chris Samuelce47dc52010-11-13 13:35:06 +1100726 if (rec_argv == NULL)
727 return -ENOMEM;
728
Li Zefanba77c9e2009-11-20 15:53:25 +0800729 for (i = 0; i < ARRAY_SIZE(record_args); i++)
730 rec_argv[i] = strdup(record_args[i]);
731
732 for (j = 1; j < (unsigned int)argc; j++, i++)
733 rec_argv[i] = argv[j];
734
735 return cmd_record(i, rec_argv, NULL);
736}
737
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300738int cmd_kmem(int argc, const char **argv, const char *prefix __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800739{
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300740 const char * const default_sort_order = "frag,hit,bytes";
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300741 const struct option kmem_options[] = {
742 OPT_STRING('i', "input", &input_name, "file", "input file name"),
743 OPT_CALLBACK_NOOPT(0, "caller", NULL, NULL,
744 "show per-callsite statistics", parse_caller_opt),
745 OPT_CALLBACK_NOOPT(0, "alloc", NULL, NULL,
746 "show per-allocation statistics", parse_alloc_opt),
747 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
748 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
749 parse_sort_opt),
750 OPT_CALLBACK('l', "line", NULL, "num", "show n lines", parse_line_opt),
751 OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
752 OPT_END()
753 };
754 const char * const kmem_usage[] = {
755 "perf kmem [<options>] {record|stat}",
756 NULL
757 };
Li Zefanba77c9e2009-11-20 15:53:25 +0800758 argc = parse_options(argc, argv, kmem_options, kmem_usage, 0);
759
Li Zefan90b86a92009-12-10 15:21:57 +0800760 if (!argc)
Li Zefanba77c9e2009-11-20 15:53:25 +0800761 usage_with_options(kmem_usage, kmem_options);
762
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200763 symbol__init();
764
Li Zefan90b86a92009-12-10 15:21:57 +0800765 if (!strncmp(argv[0], "rec", 3)) {
766 return __cmd_record(argc, argv);
767 } else if (!strcmp(argv[0], "stat")) {
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300768 if (setup_cpunode_map())
769 return -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800770
Li Zefan90b86a92009-12-10 15:21:57 +0800771 if (list_empty(&caller_sort))
772 setup_sorting(&caller_sort, default_sort_order);
773 if (list_empty(&alloc_sort))
774 setup_sorting(&alloc_sort, default_sort_order);
Li Zefan7d0d3942009-11-24 13:26:31 +0800775
Feng Tang70cb4e92012-10-30 11:56:02 +0800776 return __cmd_kmem();
Pekka Enbergb00eca82010-01-19 19:26:11 +0200777 } else
778 usage_with_options(kmem_usage, kmem_options);
Li Zefan90b86a92009-12-10 15:21:57 +0800779
780 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800781}
782