blob: 31f60a2535e0ec95b60e6b90e3e24818fa0dd972 [file] [log] [blame]
Li Zefanba77c9e2009-11-20 15:53:25 +08001#include "builtin.h"
2#include "perf.h"
3
4#include "util/util.h"
5#include "util/cache.h"
6#include "util/symbol.h"
7#include "util/thread.h"
8#include "util/header.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02009#include "util/session.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080010
11#include "util/parse-options.h"
12#include "util/trace-event.h"
13
14#include "util/debug.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080015
16#include <linux/rbtree.h>
17
18struct alloc_stat;
19typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *);
20
21static char const *input_name = "perf.data";
22
Li Zefanba77c9e2009-11-20 15:53:25 +080023static int alloc_flag;
24static int caller_flag;
25
Li Zefanba77c9e2009-11-20 15:53:25 +080026static int alloc_lines = -1;
27static int caller_lines = -1;
28
Li Zefan7707b6b2009-11-24 13:25:48 +080029static bool raw_ip;
30
Li Zefan29b3e152009-11-24 13:26:10 +080031static char default_sort_order[] = "frag,hit,bytes";
32
Li Zefan7d0d3942009-11-24 13:26:31 +080033static int *cpunode_map;
34static int max_cpu_num;
35
Li Zefanba77c9e2009-11-20 15:53:25 +080036struct alloc_stat {
Li Zefan079d3f62009-11-24 13:26:55 +080037 u64 call_site;
38 u64 ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +080039 u64 bytes_req;
40 u64 bytes_alloc;
41 u32 hit;
Li Zefan079d3f62009-11-24 13:26:55 +080042 u32 pingpong;
43
44 short alloc_cpu;
Li Zefanba77c9e2009-11-20 15:53:25 +080045
46 struct rb_node node;
47};
48
49static struct rb_root root_alloc_stat;
50static struct rb_root root_alloc_sorted;
51static struct rb_root root_caller_stat;
52static struct rb_root root_caller_sorted;
53
54static unsigned long total_requested, total_allocated;
Li Zefan7d0d3942009-11-24 13:26:31 +080055static unsigned long nr_allocs, nr_cross_allocs;
Li Zefanba77c9e2009-11-20 15:53:25 +080056
Li Zefan7d0d3942009-11-24 13:26:31 +080057#define PATH_SYS_NODE "/sys/devices/system/node"
58
59static void init_cpunode_map(void)
60{
61 FILE *fp;
62 int i;
63
64 fp = fopen("/sys/devices/system/cpu/kernel_max", "r");
65 if (!fp) {
66 max_cpu_num = 4096;
67 return;
68 }
69
70 if (fscanf(fp, "%d", &max_cpu_num) < 1)
71 die("Failed to read 'kernel_max' from sysfs");
72 max_cpu_num++;
73
74 cpunode_map = calloc(max_cpu_num, sizeof(int));
75 if (!cpunode_map)
76 die("calloc");
77 for (i = 0; i < max_cpu_num; i++)
78 cpunode_map[i] = -1;
79 fclose(fp);
80}
81
82static void setup_cpunode_map(void)
83{
84 struct dirent *dent1, *dent2;
85 DIR *dir1, *dir2;
86 unsigned int cpu, mem;
87 char buf[PATH_MAX];
88
89 init_cpunode_map();
90
91 dir1 = opendir(PATH_SYS_NODE);
92 if (!dir1)
93 return;
94
Ulrich Drepper659d8cf2009-12-19 16:40:28 -050095 while ((dent1 = readdir(dir1)) != NULL) {
96 if (dent1->d_type != DT_DIR ||
97 sscanf(dent1->d_name, "node%u", &mem) < 1)
Li Zefan7d0d3942009-11-24 13:26:31 +080098 continue;
99
100 snprintf(buf, PATH_MAX, "%s/%s", PATH_SYS_NODE, dent1->d_name);
101 dir2 = opendir(buf);
102 if (!dir2)
103 continue;
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500104 while ((dent2 = readdir(dir2)) != NULL) {
105 if (dent2->d_type != DT_LNK ||
106 sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
Li Zefan7d0d3942009-11-24 13:26:31 +0800107 continue;
108 cpunode_map[cpu] = mem;
109 }
110 }
111}
112
Li Zefan079d3f62009-11-24 13:26:55 +0800113static void insert_alloc_stat(unsigned long call_site, unsigned long ptr,
114 int bytes_req, int bytes_alloc, int cpu)
Li Zefanba77c9e2009-11-20 15:53:25 +0800115{
116 struct rb_node **node = &root_alloc_stat.rb_node;
117 struct rb_node *parent = NULL;
118 struct alloc_stat *data = NULL;
119
Li Zefanba77c9e2009-11-20 15:53:25 +0800120 while (*node) {
121 parent = *node;
122 data = rb_entry(*node, struct alloc_stat, node);
123
124 if (ptr > data->ptr)
125 node = &(*node)->rb_right;
126 else if (ptr < data->ptr)
127 node = &(*node)->rb_left;
128 else
129 break;
130 }
131
132 if (data && data->ptr == ptr) {
133 data->hit++;
134 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +0800135 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +0800136 } else {
137 data = malloc(sizeof(*data));
Li Zefan079d3f62009-11-24 13:26:55 +0800138 if (!data)
139 die("malloc");
Li Zefanba77c9e2009-11-20 15:53:25 +0800140 data->ptr = ptr;
Li Zefan079d3f62009-11-24 13:26:55 +0800141 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800142 data->hit = 1;
143 data->bytes_req = bytes_req;
144 data->bytes_alloc = bytes_alloc;
145
146 rb_link_node(&data->node, parent, node);
147 rb_insert_color(&data->node, &root_alloc_stat);
148 }
Li Zefan079d3f62009-11-24 13:26:55 +0800149 data->call_site = call_site;
150 data->alloc_cpu = cpu;
Li Zefanba77c9e2009-11-20 15:53:25 +0800151}
152
153static void insert_caller_stat(unsigned long call_site,
154 int bytes_req, int bytes_alloc)
155{
156 struct rb_node **node = &root_caller_stat.rb_node;
157 struct rb_node *parent = NULL;
158 struct alloc_stat *data = NULL;
159
Li Zefanba77c9e2009-11-20 15:53:25 +0800160 while (*node) {
161 parent = *node;
162 data = rb_entry(*node, struct alloc_stat, node);
163
164 if (call_site > data->call_site)
165 node = &(*node)->rb_right;
166 else if (call_site < data->call_site)
167 node = &(*node)->rb_left;
168 else
169 break;
170 }
171
172 if (data && data->call_site == call_site) {
173 data->hit++;
174 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +0800175 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +0800176 } else {
177 data = malloc(sizeof(*data));
Li Zefan079d3f62009-11-24 13:26:55 +0800178 if (!data)
179 die("malloc");
Li Zefanba77c9e2009-11-20 15:53:25 +0800180 data->call_site = call_site;
Li Zefan079d3f62009-11-24 13:26:55 +0800181 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800182 data->hit = 1;
183 data->bytes_req = bytes_req;
184 data->bytes_alloc = bytes_alloc;
185
186 rb_link_node(&data->node, parent, node);
187 rb_insert_color(&data->node, &root_caller_stat);
188 }
189}
190
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800191static void process_alloc_event(void *data,
Li Zefanba77c9e2009-11-20 15:53:25 +0800192 struct event *event,
Li Zefan7d0d3942009-11-24 13:26:31 +0800193 int cpu,
Li Zefanba77c9e2009-11-20 15:53:25 +0800194 u64 timestamp __used,
195 struct thread *thread __used,
Li Zefan7d0d3942009-11-24 13:26:31 +0800196 int node)
Li Zefanba77c9e2009-11-20 15:53:25 +0800197{
198 unsigned long call_site;
199 unsigned long ptr;
200 int bytes_req;
201 int bytes_alloc;
Li Zefan7d0d3942009-11-24 13:26:31 +0800202 int node1, node2;
Li Zefanba77c9e2009-11-20 15:53:25 +0800203
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800204 ptr = raw_field_value(event, "ptr", data);
205 call_site = raw_field_value(event, "call_site", data);
206 bytes_req = raw_field_value(event, "bytes_req", data);
207 bytes_alloc = raw_field_value(event, "bytes_alloc", data);
Li Zefanba77c9e2009-11-20 15:53:25 +0800208
Li Zefan079d3f62009-11-24 13:26:55 +0800209 insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, cpu);
Li Zefanba77c9e2009-11-20 15:53:25 +0800210 insert_caller_stat(call_site, bytes_req, bytes_alloc);
211
212 total_requested += bytes_req;
213 total_allocated += bytes_alloc;
Li Zefan7d0d3942009-11-24 13:26:31 +0800214
215 if (node) {
216 node1 = cpunode_map[cpu];
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800217 node2 = raw_field_value(event, "node", data);
Li Zefan7d0d3942009-11-24 13:26:31 +0800218 if (node1 != node2)
219 nr_cross_allocs++;
220 }
221 nr_allocs++;
Li Zefanba77c9e2009-11-20 15:53:25 +0800222}
223
Li Zefan079d3f62009-11-24 13:26:55 +0800224static int ptr_cmp(struct alloc_stat *, struct alloc_stat *);
225static int callsite_cmp(struct alloc_stat *, struct alloc_stat *);
226
227static struct alloc_stat *search_alloc_stat(unsigned long ptr,
228 unsigned long call_site,
229 struct rb_root *root,
230 sort_fn_t sort_fn)
231{
232 struct rb_node *node = root->rb_node;
233 struct alloc_stat key = { .ptr = ptr, .call_site = call_site };
234
235 while (node) {
236 struct alloc_stat *data;
237 int cmp;
238
239 data = rb_entry(node, struct alloc_stat, node);
240
241 cmp = sort_fn(&key, data);
242 if (cmp < 0)
243 node = node->rb_left;
244 else if (cmp > 0)
245 node = node->rb_right;
246 else
247 return data;
248 }
249 return NULL;
250}
251
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800252static void process_free_event(void *data,
Li Zefan079d3f62009-11-24 13:26:55 +0800253 struct event *event,
254 int cpu,
Li Zefanba77c9e2009-11-20 15:53:25 +0800255 u64 timestamp __used,
256 struct thread *thread __used)
257{
Li Zefan079d3f62009-11-24 13:26:55 +0800258 unsigned long ptr;
259 struct alloc_stat *s_alloc, *s_caller;
260
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800261 ptr = raw_field_value(event, "ptr", data);
Li Zefan079d3f62009-11-24 13:26:55 +0800262
263 s_alloc = search_alloc_stat(ptr, 0, &root_alloc_stat, ptr_cmp);
264 if (!s_alloc)
265 return;
266
267 if (cpu != s_alloc->alloc_cpu) {
268 s_alloc->pingpong++;
269
270 s_caller = search_alloc_stat(0, s_alloc->call_site,
271 &root_caller_stat, callsite_cmp);
272 assert(s_caller);
273 s_caller->pingpong++;
274 }
275 s_alloc->alloc_cpu = -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800276}
277
278static void
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800279process_raw_event(event_t *raw_event __used, void *data,
Li Zefanba77c9e2009-11-20 15:53:25 +0800280 int cpu, u64 timestamp, struct thread *thread)
281{
Li Zefanba77c9e2009-11-20 15:53:25 +0800282 struct event *event;
283 int type;
284
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800285 type = trace_parse_common_type(data);
Li Zefanba77c9e2009-11-20 15:53:25 +0800286 event = trace_find_event(type);
287
288 if (!strcmp(event->name, "kmalloc") ||
289 !strcmp(event->name, "kmem_cache_alloc")) {
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800290 process_alloc_event(data, event, cpu, timestamp, thread, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800291 return;
292 }
293
294 if (!strcmp(event->name, "kmalloc_node") ||
295 !strcmp(event->name, "kmem_cache_alloc_node")) {
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800296 process_alloc_event(data, event, cpu, timestamp, thread, 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800297 return;
298 }
299
300 if (!strcmp(event->name, "kfree") ||
301 !strcmp(event->name, "kmem_cache_free")) {
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800302 process_free_event(data, event, cpu, timestamp, thread);
Li Zefanba77c9e2009-11-20 15:53:25 +0800303 return;
304 }
305}
306
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200307static int process_sample_event(event_t *event, struct perf_session *session)
Li Zefanba77c9e2009-11-20 15:53:25 +0800308{
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900309 struct sample_data data;
310 struct thread *thread;
Li Zefanba77c9e2009-11-20 15:53:25 +0800311
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900312 memset(&data, 0, sizeof(data));
313 data.time = -1;
314 data.cpu = -1;
315 data.period = 1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800316
Arnaldo Carvalho de Meloc0198792009-12-14 14:23:00 -0200317 event__parse_sample(event, session->sample_type, &data);
Li Zefanba77c9e2009-11-20 15:53:25 +0800318
Arnaldo Carvalho de Melo0d755032010-01-14 12:23:09 -0200319 dump_printf("(IP, %d): %d/%d: %#Lx period: %Ld\n", event->header.misc,
320 data.pid, data.tid, data.ip, data.period);
Li Zefanba77c9e2009-11-20 15:53:25 +0800321
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200322 thread = perf_session__findnew(session, event->ip.pid);
Li Zefanba77c9e2009-11-20 15:53:25 +0800323 if (thread == NULL) {
324 pr_debug("problem processing %d event, skipping it.\n",
325 event->header.type);
326 return -1;
327 }
328
329 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
330
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800331 process_raw_event(event, data.raw_data, data.cpu,
Xiao Guangrongd8bd9e02009-12-07 12:06:29 +0800332 data.time, thread);
Li Zefanba77c9e2009-11-20 15:53:25 +0800333
334 return 0;
335}
336
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -0200337static struct perf_event_ops event_ops = {
Frederic Weisbecker587570d2010-04-24 00:34:53 +0200338 .sample = process_sample_event,
339 .comm = event__process_comm,
340 .ordered_samples = true,
Li Zefanba77c9e2009-11-20 15:53:25 +0800341};
342
Li Zefanba77c9e2009-11-20 15:53:25 +0800343static double fragmentation(unsigned long n_req, unsigned long n_alloc)
344{
345 if (n_alloc == 0)
346 return 0.0;
347 else
348 return 100.0 - (100.0 * n_req / n_alloc);
349}
350
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200351static void __print_result(struct rb_root *root, struct perf_session *session,
352 int n_lines, int is_caller)
Li Zefanba77c9e2009-11-20 15:53:25 +0800353{
354 struct rb_node *next;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300355 struct machine *machine;
Li Zefanba77c9e2009-11-20 15:53:25 +0800356
Li Zefan079d3f62009-11-24 13:26:55 +0800357 printf("%.102s\n", graph_dotted_line);
358 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr");
Pekka Enberg47103272010-01-19 19:23:23 +0200359 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
Li Zefan079d3f62009-11-24 13:26:55 +0800360 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800361
362 next = rb_first(root);
363
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300364 machine = perf_session__find_host_machine(session);
365 if (!machine) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800366 pr_err("__print_result: couldn't find kernel information\n");
367 return;
368 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800369 while (next && n_lines--) {
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200370 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
371 node);
372 struct symbol *sym = NULL;
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300373 struct map *map;
Li Zefan079d3f62009-11-24 13:26:55 +0800374 char buf[BUFSIZ];
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200375 u64 addr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800376
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200377 if (is_caller) {
378 addr = data->call_site;
Li Zefan7707b6b2009-11-24 13:25:48 +0800379 if (!raw_ip)
Arnaldo Carvalho de Melo5c0541d2010-04-29 15:25:23 -0300380 sym = machine__find_kernel_function(machine, addr, &map, NULL);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200381 } else
382 addr = data->ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800383
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200384 if (sym != NULL)
Li Zefan079d3f62009-11-24 13:26:55 +0800385 snprintf(buf, sizeof(buf), "%s+%Lx", sym->name,
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300386 addr - map->unmap_ip(map, sym->start));
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200387 else
Li Zefan079d3f62009-11-24 13:26:55 +0800388 snprintf(buf, sizeof(buf), "%#Lx", addr);
389 printf(" %-34s |", buf);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200390
Pekka Enberg47103272010-01-19 19:23:23 +0200391 printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n",
Li Zefan079d3f62009-11-24 13:26:55 +0800392 (unsigned long long)data->bytes_alloc,
Li Zefanba77c9e2009-11-20 15:53:25 +0800393 (unsigned long)data->bytes_alloc / data->hit,
394 (unsigned long long)data->bytes_req,
395 (unsigned long)data->bytes_req / data->hit,
396 (unsigned long)data->hit,
Li Zefan079d3f62009-11-24 13:26:55 +0800397 (unsigned long)data->pingpong,
Li Zefanba77c9e2009-11-20 15:53:25 +0800398 fragmentation(data->bytes_req, data->bytes_alloc));
399
400 next = rb_next(next);
401 }
402
403 if (n_lines == -1)
Li Zefan079d3f62009-11-24 13:26:55 +0800404 printf(" ... | ... | ... | ... | ... | ... \n");
Li Zefanba77c9e2009-11-20 15:53:25 +0800405
Li Zefan079d3f62009-11-24 13:26:55 +0800406 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800407}
408
409static void print_summary(void)
410{
411 printf("\nSUMMARY\n=======\n");
412 printf("Total bytes requested: %lu\n", total_requested);
413 printf("Total bytes allocated: %lu\n", total_allocated);
414 printf("Total bytes wasted on internal fragmentation: %lu\n",
415 total_allocated - total_requested);
416 printf("Internal fragmentation: %f%%\n",
417 fragmentation(total_requested, total_allocated));
Li Zefan7d0d3942009-11-24 13:26:31 +0800418 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs, nr_allocs);
Li Zefanba77c9e2009-11-20 15:53:25 +0800419}
420
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200421static void print_result(struct perf_session *session)
Li Zefanba77c9e2009-11-20 15:53:25 +0800422{
423 if (caller_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200424 __print_result(&root_caller_sorted, session, caller_lines, 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800425 if (alloc_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200426 __print_result(&root_alloc_sorted, session, alloc_lines, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800427 print_summary();
428}
429
Li Zefan29b3e152009-11-24 13:26:10 +0800430struct sort_dimension {
431 const char name[20];
432 sort_fn_t cmp;
433 struct list_head list;
434};
435
436static LIST_HEAD(caller_sort);
437static LIST_HEAD(alloc_sort);
438
Li Zefanba77c9e2009-11-20 15:53:25 +0800439static void sort_insert(struct rb_root *root, struct alloc_stat *data,
Li Zefan29b3e152009-11-24 13:26:10 +0800440 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800441{
442 struct rb_node **new = &(root->rb_node);
443 struct rb_node *parent = NULL;
Li Zefan29b3e152009-11-24 13:26:10 +0800444 struct sort_dimension *sort;
Li Zefanba77c9e2009-11-20 15:53:25 +0800445
446 while (*new) {
447 struct alloc_stat *this;
Li Zefan29b3e152009-11-24 13:26:10 +0800448 int cmp = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800449
450 this = rb_entry(*new, struct alloc_stat, node);
451 parent = *new;
452
Li Zefan29b3e152009-11-24 13:26:10 +0800453 list_for_each_entry(sort, sort_list, list) {
454 cmp = sort->cmp(data, this);
455 if (cmp)
456 break;
457 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800458
459 if (cmp > 0)
460 new = &((*new)->rb_left);
461 else
462 new = &((*new)->rb_right);
463 }
464
465 rb_link_node(&data->node, parent, new);
466 rb_insert_color(&data->node, root);
467}
468
469static void __sort_result(struct rb_root *root, struct rb_root *root_sorted,
Li Zefan29b3e152009-11-24 13:26:10 +0800470 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800471{
472 struct rb_node *node;
473 struct alloc_stat *data;
474
475 for (;;) {
476 node = rb_first(root);
477 if (!node)
478 break;
479
480 rb_erase(node, root);
481 data = rb_entry(node, struct alloc_stat, node);
Li Zefan29b3e152009-11-24 13:26:10 +0800482 sort_insert(root_sorted, data, sort_list);
Li Zefanba77c9e2009-11-20 15:53:25 +0800483 }
484}
485
486static void sort_result(void)
487{
Li Zefan29b3e152009-11-24 13:26:10 +0800488 __sort_result(&root_alloc_stat, &root_alloc_sorted, &alloc_sort);
489 __sort_result(&root_caller_stat, &root_caller_sorted, &caller_sort);
Li Zefanba77c9e2009-11-20 15:53:25 +0800490}
491
492static int __cmd_kmem(void)
493{
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200494 int err = -EINVAL;
Tom Zanussi454c4072010-05-01 01:41:20 -0500495 struct perf_session *session = perf_session__new(input_name, O_RDONLY, 0, false);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200496 if (session == NULL)
497 return -ENOMEM;
Li Zefanba77c9e2009-11-20 15:53:25 +0800498
Arnaldo Carvalho de Meloe727ca72010-04-01 19:12:13 -0300499 if (perf_session__create_kernel_maps(session) < 0)
500 goto out_delete;
501
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200502 if (!perf_session__has_traces(session, "kmem record"))
503 goto out_delete;
504
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200505 setup_pager();
506 err = perf_session__process_events(session, &event_ops);
507 if (err != 0)
508 goto out_delete;
509 sort_result();
510 print_result(session);
511out_delete:
512 perf_session__delete(session);
513 return err;
Li Zefanba77c9e2009-11-20 15:53:25 +0800514}
515
516static const char * const kmem_usage[] = {
Li Zefan90b86a92009-12-10 15:21:57 +0800517 "perf kmem [<options>] {record|stat}",
Li Zefanba77c9e2009-11-20 15:53:25 +0800518 NULL
519};
520
Li Zefanba77c9e2009-11-20 15:53:25 +0800521static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
522{
523 if (l->ptr < r->ptr)
524 return -1;
525 else if (l->ptr > r->ptr)
526 return 1;
527 return 0;
528}
529
Li Zefan29b3e152009-11-24 13:26:10 +0800530static struct sort_dimension ptr_sort_dimension = {
531 .name = "ptr",
532 .cmp = ptr_cmp,
533};
534
Li Zefanba77c9e2009-11-20 15:53:25 +0800535static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
536{
537 if (l->call_site < r->call_site)
538 return -1;
539 else if (l->call_site > r->call_site)
540 return 1;
541 return 0;
542}
543
Li Zefan29b3e152009-11-24 13:26:10 +0800544static struct sort_dimension callsite_sort_dimension = {
545 .name = "callsite",
546 .cmp = callsite_cmp,
547};
548
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200549static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
550{
551 if (l->hit < r->hit)
552 return -1;
553 else if (l->hit > r->hit)
554 return 1;
555 return 0;
556}
557
Li Zefan29b3e152009-11-24 13:26:10 +0800558static struct sort_dimension hit_sort_dimension = {
559 .name = "hit",
560 .cmp = hit_cmp,
561};
562
Li Zefanba77c9e2009-11-20 15:53:25 +0800563static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
564{
565 if (l->bytes_alloc < r->bytes_alloc)
566 return -1;
567 else if (l->bytes_alloc > r->bytes_alloc)
568 return 1;
569 return 0;
570}
571
Li Zefan29b3e152009-11-24 13:26:10 +0800572static struct sort_dimension bytes_sort_dimension = {
573 .name = "bytes",
574 .cmp = bytes_cmp,
575};
576
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200577static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
578{
579 double x, y;
580
581 x = fragmentation(l->bytes_req, l->bytes_alloc);
582 y = fragmentation(r->bytes_req, r->bytes_alloc);
583
584 if (x < y)
585 return -1;
586 else if (x > y)
587 return 1;
588 return 0;
589}
590
Li Zefan29b3e152009-11-24 13:26:10 +0800591static struct sort_dimension frag_sort_dimension = {
592 .name = "frag",
593 .cmp = frag_cmp,
594};
595
Li Zefan079d3f62009-11-24 13:26:55 +0800596static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)
597{
598 if (l->pingpong < r->pingpong)
599 return -1;
600 else if (l->pingpong > r->pingpong)
601 return 1;
602 return 0;
603}
604
605static struct sort_dimension pingpong_sort_dimension = {
606 .name = "pingpong",
607 .cmp = pingpong_cmp,
608};
609
Li Zefan29b3e152009-11-24 13:26:10 +0800610static struct sort_dimension *avail_sorts[] = {
611 &ptr_sort_dimension,
612 &callsite_sort_dimension,
613 &hit_sort_dimension,
614 &bytes_sort_dimension,
615 &frag_sort_dimension,
Li Zefan079d3f62009-11-24 13:26:55 +0800616 &pingpong_sort_dimension,
Li Zefan29b3e152009-11-24 13:26:10 +0800617};
618
619#define NUM_AVAIL_SORTS \
620 (int)(sizeof(avail_sorts) / sizeof(struct sort_dimension *))
621
622static int sort_dimension__add(const char *tok, struct list_head *list)
623{
624 struct sort_dimension *sort;
625 int i;
626
627 for (i = 0; i < NUM_AVAIL_SORTS; i++) {
628 if (!strcmp(avail_sorts[i]->name, tok)) {
629 sort = malloc(sizeof(*sort));
630 if (!sort)
631 die("malloc");
632 memcpy(sort, avail_sorts[i], sizeof(*sort));
633 list_add_tail(&sort->list, list);
634 return 0;
635 }
636 }
637
638 return -1;
639}
640
641static int setup_sorting(struct list_head *sort_list, const char *arg)
642{
643 char *tok;
644 char *str = strdup(arg);
645
646 if (!str)
647 die("strdup");
648
649 while (true) {
650 tok = strsep(&str, ",");
651 if (!tok)
652 break;
653 if (sort_dimension__add(tok, sort_list) < 0) {
654 error("Unknown --sort key: '%s'", tok);
655 return -1;
656 }
657 }
658
659 free(str);
660 return 0;
661}
662
Li Zefanba77c9e2009-11-20 15:53:25 +0800663static int parse_sort_opt(const struct option *opt __used,
664 const char *arg, int unset __used)
665{
Li Zefanba77c9e2009-11-20 15:53:25 +0800666 if (!arg)
667 return -1;
668
Li Zefanba77c9e2009-11-20 15:53:25 +0800669 if (caller_flag > alloc_flag)
Li Zefan29b3e152009-11-24 13:26:10 +0800670 return setup_sorting(&caller_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800671 else
Li Zefan29b3e152009-11-24 13:26:10 +0800672 return setup_sorting(&alloc_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800673
674 return 0;
675}
676
Li Zefan90b86a92009-12-10 15:21:57 +0800677static int parse_caller_opt(const struct option *opt __used,
Ingo Molnar79312412009-12-10 08:43:34 +0100678 const char *arg __used, int unset __used)
Li Zefanba77c9e2009-11-20 15:53:25 +0800679{
Li Zefan90b86a92009-12-10 15:21:57 +0800680 caller_flag = (alloc_flag + 1);
681 return 0;
682}
Li Zefanba77c9e2009-11-20 15:53:25 +0800683
Li Zefan90b86a92009-12-10 15:21:57 +0800684static int parse_alloc_opt(const struct option *opt __used,
Ingo Molnar79312412009-12-10 08:43:34 +0100685 const char *arg __used, int unset __used)
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
691static int parse_line_opt(const struct option *opt __used,
692 const char *arg, int unset __used)
693{
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
709static const struct option kmem_options[] = {
710 OPT_STRING('i', "input", &input_name, "file",
711 "input file name"),
Li Zefan90b86a92009-12-10 15:21:57 +0800712 OPT_CALLBACK_NOOPT(0, "caller", NULL, NULL,
713 "show per-callsite statistics",
714 parse_caller_opt),
715 OPT_CALLBACK_NOOPT(0, "alloc", NULL, NULL,
716 "show per-allocation statistics",
717 parse_alloc_opt),
Li Zefan29b3e152009-11-24 13:26:10 +0800718 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
Li Zefan079d3f62009-11-24 13:26:55 +0800719 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
Li Zefanba77c9e2009-11-20 15:53:25 +0800720 parse_sort_opt),
721 OPT_CALLBACK('l', "line", NULL, "num",
Li Zefan90b86a92009-12-10 15:21:57 +0800722 "show n lines",
Li Zefanba77c9e2009-11-20 15:53:25 +0800723 parse_line_opt),
Li Zefan7707b6b2009-11-24 13:25:48 +0800724 OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
Li Zefanba77c9e2009-11-20 15:53:25 +0800725 OPT_END()
726};
727
728static const char *record_args[] = {
729 "record",
730 "-a",
731 "-R",
Li Zefanba77c9e2009-11-20 15:53:25 +0800732 "-f",
733 "-c", "1",
734 "-e", "kmem:kmalloc",
735 "-e", "kmem:kmalloc_node",
736 "-e", "kmem:kfree",
737 "-e", "kmem:kmem_cache_alloc",
738 "-e", "kmem:kmem_cache_alloc_node",
739 "-e", "kmem:kmem_cache_free",
740};
741
742static int __cmd_record(int argc, const char **argv)
743{
744 unsigned int rec_argc, i, j;
745 const char **rec_argv;
746
747 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
748 rec_argv = calloc(rec_argc + 1, sizeof(char *));
749
750 for (i = 0; i < ARRAY_SIZE(record_args); i++)
751 rec_argv[i] = strdup(record_args[i]);
752
753 for (j = 1; j < (unsigned int)argc; j++, i++)
754 rec_argv[i] = argv[j];
755
756 return cmd_record(i, rec_argv, NULL);
757}
758
759int cmd_kmem(int argc, const char **argv, const char *prefix __used)
760{
Li Zefanba77c9e2009-11-20 15:53:25 +0800761 argc = parse_options(argc, argv, kmem_options, kmem_usage, 0);
762
Li Zefan90b86a92009-12-10 15:21:57 +0800763 if (!argc)
Li Zefanba77c9e2009-11-20 15:53:25 +0800764 usage_with_options(kmem_usage, kmem_options);
765
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200766 symbol__init();
767
Li Zefan90b86a92009-12-10 15:21:57 +0800768 if (!strncmp(argv[0], "rec", 3)) {
769 return __cmd_record(argc, argv);
770 } else if (!strcmp(argv[0], "stat")) {
771 setup_cpunode_map();
Li Zefanba77c9e2009-11-20 15:53:25 +0800772
Li Zefan90b86a92009-12-10 15:21:57 +0800773 if (list_empty(&caller_sort))
774 setup_sorting(&caller_sort, default_sort_order);
775 if (list_empty(&alloc_sort))
776 setup_sorting(&alloc_sort, default_sort_order);
Li Zefan7d0d3942009-11-24 13:26:31 +0800777
Li Zefan90b86a92009-12-10 15:21:57 +0800778 return __cmd_kmem();
Pekka Enbergb00eca82010-01-19 19:26:11 +0200779 } else
780 usage_with_options(kmem_usage, kmem_options);
Li Zefan90b86a92009-12-10 15:21:57 +0800781
782 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800783}
784