]> bbs.cooldavid.org Git - net-next-2.6.git/blame - tools/perf/builtin-kmem.c
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[net-next-2.6.git] / tools / perf / builtin-kmem.c
CommitLineData
ba77c9e1
LZ
1#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"
94c744b6 9#include "util/session.h"
ba77c9e1
LZ
10
11#include "util/parse-options.h"
12#include "util/trace-event.h"
13
14#include "util/debug.h"
ba77c9e1
LZ
15
16#include <linux/rbtree.h>
5a0e3ad6 17#include <linux/slab.h>
ba77c9e1
LZ
18
19struct alloc_stat;
20typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *);
21
22static char const *input_name = "perf.data";
23
ba77c9e1
LZ
24static int alloc_flag;
25static int caller_flag;
26
ba77c9e1
LZ
27static int alloc_lines = -1;
28static int caller_lines = -1;
29
7707b6b6
LZ
30static bool raw_ip;
31
29b3e152
LZ
32static char default_sort_order[] = "frag,hit,bytes";
33
7d0d3945
LZ
34static int *cpunode_map;
35static int max_cpu_num;
36
ba77c9e1 37struct alloc_stat {
079d3f65
LZ
38 u64 call_site;
39 u64 ptr;
ba77c9e1
LZ
40 u64 bytes_req;
41 u64 bytes_alloc;
42 u32 hit;
079d3f65
LZ
43 u32 pingpong;
44
45 short alloc_cpu;
ba77c9e1
LZ
46
47 struct rb_node node;
48};
49
50static struct rb_root root_alloc_stat;
51static struct rb_root root_alloc_sorted;
52static struct rb_root root_caller_stat;
53static struct rb_root root_caller_sorted;
54
55static unsigned long total_requested, total_allocated;
7d0d3945 56static unsigned long nr_allocs, nr_cross_allocs;
ba77c9e1 57
7d0d3945
LZ
58#define PATH_SYS_NODE "/sys/devices/system/node"
59
60static void init_cpunode_map(void)
61{
62 FILE *fp;
63 int i;
64
65 fp = fopen("/sys/devices/system/cpu/kernel_max", "r");
66 if (!fp) {
67 max_cpu_num = 4096;
68 return;
69 }
70
71 if (fscanf(fp, "%d", &max_cpu_num) < 1)
72 die("Failed to read 'kernel_max' from sysfs");
73 max_cpu_num++;
74
75 cpunode_map = calloc(max_cpu_num, sizeof(int));
76 if (!cpunode_map)
77 die("calloc");
78 for (i = 0; i < max_cpu_num; i++)
79 cpunode_map[i] = -1;
80 fclose(fp);
81}
82
83static void setup_cpunode_map(void)
84{
85 struct dirent *dent1, *dent2;
86 DIR *dir1, *dir2;
87 unsigned int cpu, mem;
88 char buf[PATH_MAX];
89
90 init_cpunode_map();
91
92 dir1 = opendir(PATH_SYS_NODE);
93 if (!dir1)
94 return;
95
659d8cfb
UD
96 while ((dent1 = readdir(dir1)) != NULL) {
97 if (dent1->d_type != DT_DIR ||
98 sscanf(dent1->d_name, "node%u", &mem) < 1)
7d0d3945
LZ
99 continue;
100
101 snprintf(buf, PATH_MAX, "%s/%s", PATH_SYS_NODE, dent1->d_name);
102 dir2 = opendir(buf);
103 if (!dir2)
104 continue;
659d8cfb
UD
105 while ((dent2 = readdir(dir2)) != NULL) {
106 if (dent2->d_type != DT_LNK ||
107 sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
7d0d3945
LZ
108 continue;
109 cpunode_map[cpu] = mem;
110 }
111 }
112}
113
079d3f65
LZ
114static void insert_alloc_stat(unsigned long call_site, unsigned long ptr,
115 int bytes_req, int bytes_alloc, int cpu)
ba77c9e1
LZ
116{
117 struct rb_node **node = &root_alloc_stat.rb_node;
118 struct rb_node *parent = NULL;
119 struct alloc_stat *data = NULL;
120
ba77c9e1
LZ
121 while (*node) {
122 parent = *node;
123 data = rb_entry(*node, struct alloc_stat, node);
124
125 if (ptr > data->ptr)
126 node = &(*node)->rb_right;
127 else if (ptr < data->ptr)
128 node = &(*node)->rb_left;
129 else
130 break;
131 }
132
133 if (data && data->ptr == ptr) {
134 data->hit++;
135 data->bytes_req += bytes_req;
4efb5290 136 data->bytes_alloc += bytes_alloc;
ba77c9e1
LZ
137 } else {
138 data = malloc(sizeof(*data));
079d3f65
LZ
139 if (!data)
140 die("malloc");
ba77c9e1 141 data->ptr = ptr;
079d3f65 142 data->pingpong = 0;
ba77c9e1
LZ
143 data->hit = 1;
144 data->bytes_req = bytes_req;
145 data->bytes_alloc = bytes_alloc;
146
147 rb_link_node(&data->node, parent, node);
148 rb_insert_color(&data->node, &root_alloc_stat);
149 }
079d3f65
LZ
150 data->call_site = call_site;
151 data->alloc_cpu = cpu;
ba77c9e1
LZ
152}
153
154static void insert_caller_stat(unsigned long call_site,
155 int bytes_req, int bytes_alloc)
156{
157 struct rb_node **node = &root_caller_stat.rb_node;
158 struct rb_node *parent = NULL;
159 struct alloc_stat *data = NULL;
160
ba77c9e1
LZ
161 while (*node) {
162 parent = *node;
163 data = rb_entry(*node, struct alloc_stat, node);
164
165 if (call_site > data->call_site)
166 node = &(*node)->rb_right;
167 else if (call_site < data->call_site)
168 node = &(*node)->rb_left;
169 else
170 break;
171 }
172
173 if (data && data->call_site == call_site) {
174 data->hit++;
175 data->bytes_req += bytes_req;
4efb5290 176 data->bytes_alloc += bytes_alloc;
ba77c9e1
LZ
177 } else {
178 data = malloc(sizeof(*data));
079d3f65
LZ
179 if (!data)
180 die("malloc");
ba77c9e1 181 data->call_site = call_site;
079d3f65 182 data->pingpong = 0;
ba77c9e1
LZ
183 data->hit = 1;
184 data->bytes_req = bytes_req;
185 data->bytes_alloc = bytes_alloc;
186
187 rb_link_node(&data->node, parent, node);
188 rb_insert_color(&data->node, &root_caller_stat);
189 }
190}
191
f48f669d 192static void process_alloc_event(void *data,
ba77c9e1 193 struct event *event,
7d0d3945 194 int cpu,
ba77c9e1
LZ
195 u64 timestamp __used,
196 struct thread *thread __used,
7d0d3945 197 int node)
ba77c9e1
LZ
198{
199 unsigned long call_site;
200 unsigned long ptr;
201 int bytes_req;
202 int bytes_alloc;
7d0d3945 203 int node1, node2;
ba77c9e1 204
f48f669d
XG
205 ptr = raw_field_value(event, "ptr", data);
206 call_site = raw_field_value(event, "call_site", data);
207 bytes_req = raw_field_value(event, "bytes_req", data);
208 bytes_alloc = raw_field_value(event, "bytes_alloc", data);
ba77c9e1 209
079d3f65 210 insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, cpu);
ba77c9e1
LZ
211 insert_caller_stat(call_site, bytes_req, bytes_alloc);
212
213 total_requested += bytes_req;
214 total_allocated += bytes_alloc;
7d0d3945
LZ
215
216 if (node) {
217 node1 = cpunode_map[cpu];
f48f669d 218 node2 = raw_field_value(event, "node", data);
7d0d3945
LZ
219 if (node1 != node2)
220 nr_cross_allocs++;
221 }
222 nr_allocs++;
ba77c9e1
LZ
223}
224
079d3f65
LZ
225static int ptr_cmp(struct alloc_stat *, struct alloc_stat *);
226static int callsite_cmp(struct alloc_stat *, struct alloc_stat *);
227
228static struct alloc_stat *search_alloc_stat(unsigned long ptr,
229 unsigned long call_site,
230 struct rb_root *root,
231 sort_fn_t sort_fn)
232{
233 struct rb_node *node = root->rb_node;
234 struct alloc_stat key = { .ptr = ptr, .call_site = call_site };
235
236 while (node) {
237 struct alloc_stat *data;
238 int cmp;
239
240 data = rb_entry(node, struct alloc_stat, node);
241
242 cmp = sort_fn(&key, data);
243 if (cmp < 0)
244 node = node->rb_left;
245 else if (cmp > 0)
246 node = node->rb_right;
247 else
248 return data;
249 }
250 return NULL;
251}
252
f48f669d 253static void process_free_event(void *data,
079d3f65
LZ
254 struct event *event,
255 int cpu,
ba77c9e1
LZ
256 u64 timestamp __used,
257 struct thread *thread __used)
258{
079d3f65
LZ
259 unsigned long ptr;
260 struct alloc_stat *s_alloc, *s_caller;
261
f48f669d 262 ptr = raw_field_value(event, "ptr", data);
079d3f65
LZ
263
264 s_alloc = search_alloc_stat(ptr, 0, &root_alloc_stat, ptr_cmp);
265 if (!s_alloc)
266 return;
267
268 if (cpu != s_alloc->alloc_cpu) {
269 s_alloc->pingpong++;
270
271 s_caller = search_alloc_stat(0, s_alloc->call_site,
272 &root_caller_stat, callsite_cmp);
273 assert(s_caller);
274 s_caller->pingpong++;
275 }
276 s_alloc->alloc_cpu = -1;
ba77c9e1
LZ
277}
278
279static void
f48f669d 280process_raw_event(event_t *raw_event __used, void *data,
ba77c9e1
LZ
281 int cpu, u64 timestamp, struct thread *thread)
282{
ba77c9e1
LZ
283 struct event *event;
284 int type;
285
f48f669d 286 type = trace_parse_common_type(data);
ba77c9e1
LZ
287 event = trace_find_event(type);
288
289 if (!strcmp(event->name, "kmalloc") ||
290 !strcmp(event->name, "kmem_cache_alloc")) {
f48f669d 291 process_alloc_event(data, event, cpu, timestamp, thread, 0);
ba77c9e1
LZ
292 return;
293 }
294
295 if (!strcmp(event->name, "kmalloc_node") ||
296 !strcmp(event->name, "kmem_cache_alloc_node")) {
f48f669d 297 process_alloc_event(data, event, cpu, timestamp, thread, 1);
ba77c9e1
LZ
298 return;
299 }
300
301 if (!strcmp(event->name, "kfree") ||
302 !strcmp(event->name, "kmem_cache_free")) {
f48f669d 303 process_free_event(data, event, cpu, timestamp, thread);
ba77c9e1
LZ
304 return;
305 }
306}
307
b3165f41 308static int process_sample_event(event_t *event, struct perf_session *session)
ba77c9e1 309{
180f95e2
OH
310 struct sample_data data;
311 struct thread *thread;
ba77c9e1 312
180f95e2
OH
313 memset(&data, 0, sizeof(data));
314 data.time = -1;
315 data.cpu = -1;
316 data.period = 1;
ba77c9e1 317
c019879b 318 event__parse_sample(event, session->sample_type, &data);
ba77c9e1 319
0d755034
ACM
320 dump_printf("(IP, %d): %d/%d: %#Lx period: %Ld\n", event->header.misc,
321 data.pid, data.tid, data.ip, data.period);
ba77c9e1 322
b3165f41 323 thread = perf_session__findnew(session, event->ip.pid);
ba77c9e1
LZ
324 if (thread == NULL) {
325 pr_debug("problem processing %d event, skipping it.\n",
326 event->header.type);
327 return -1;
328 }
329
330 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
331
f48f669d 332 process_raw_event(event, data.raw_data, data.cpu,
d8bd9e0a 333 data.time, thread);
ba77c9e1
LZ
334
335 return 0;
336}
337
301a0b02 338static struct perf_event_ops event_ops = {
55aa640f
ACM
339 .sample = process_sample_event,
340 .comm = event__process_comm,
ba77c9e1
LZ
341};
342
ba77c9e1
LZ
343static 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
4aa65636
ACM
351static void __print_result(struct rb_root *root, struct perf_session *session,
352 int n_lines, int is_caller)
ba77c9e1
LZ
353{
354 struct rb_node *next;
355
079d3f65
LZ
356 printf("%.102s\n", graph_dotted_line);
357 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr");
47103277 358 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
079d3f65 359 printf("%.102s\n", graph_dotted_line);
ba77c9e1
LZ
360
361 next = rb_first(root);
362
363 while (next && n_lines--) {
1b145ae5
ACM
364 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
365 node);
366 struct symbol *sym = NULL;
079d3f65 367 char buf[BUFSIZ];
1b145ae5
ACM
368 u64 addr;
369
370 if (is_caller) {
371 addr = data->call_site;
7707b6b6 372 if (!raw_ip)
9de89fe7 373 sym = map_groups__find_function(&session->kmaps, addr, NULL);
1b145ae5
ACM
374 } else
375 addr = data->ptr;
376
377 if (sym != NULL)
079d3f65 378 snprintf(buf, sizeof(buf), "%s+%Lx", sym->name,
1b145ae5
ACM
379 addr - sym->start);
380 else
079d3f65
LZ
381 snprintf(buf, sizeof(buf), "%#Lx", addr);
382 printf(" %-34s |", buf);
ba77c9e1 383
47103277 384 printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n",
079d3f65 385 (unsigned long long)data->bytes_alloc,
ba77c9e1
LZ
386 (unsigned long)data->bytes_alloc / data->hit,
387 (unsigned long long)data->bytes_req,
388 (unsigned long)data->bytes_req / data->hit,
389 (unsigned long)data->hit,
079d3f65 390 (unsigned long)data->pingpong,
ba77c9e1
LZ
391 fragmentation(data->bytes_req, data->bytes_alloc));
392
393 next = rb_next(next);
394 }
395
396 if (n_lines == -1)
079d3f65 397 printf(" ... | ... | ... | ... | ... | ... \n");
ba77c9e1 398
079d3f65 399 printf("%.102s\n", graph_dotted_line);
ba77c9e1
LZ
400}
401
402static void print_summary(void)
403{
404 printf("\nSUMMARY\n=======\n");
405 printf("Total bytes requested: %lu\n", total_requested);
406 printf("Total bytes allocated: %lu\n", total_allocated);
407 printf("Total bytes wasted on internal fragmentation: %lu\n",
408 total_allocated - total_requested);
409 printf("Internal fragmentation: %f%%\n",
410 fragmentation(total_requested, total_allocated));
7d0d3945 411 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs, nr_allocs);
ba77c9e1
LZ
412}
413
4aa65636 414static void print_result(struct perf_session *session)
ba77c9e1
LZ
415{
416 if (caller_flag)
4aa65636 417 __print_result(&root_caller_sorted, session, caller_lines, 1);
ba77c9e1 418 if (alloc_flag)
4aa65636 419 __print_result(&root_alloc_sorted, session, alloc_lines, 0);
ba77c9e1
LZ
420 print_summary();
421}
422
29b3e152
LZ
423struct sort_dimension {
424 const char name[20];
425 sort_fn_t cmp;
426 struct list_head list;
427};
428
429static LIST_HEAD(caller_sort);
430static LIST_HEAD(alloc_sort);
431
ba77c9e1 432static void sort_insert(struct rb_root *root, struct alloc_stat *data,
29b3e152 433 struct list_head *sort_list)
ba77c9e1
LZ
434{
435 struct rb_node **new = &(root->rb_node);
436 struct rb_node *parent = NULL;
29b3e152 437 struct sort_dimension *sort;
ba77c9e1
LZ
438
439 while (*new) {
440 struct alloc_stat *this;
29b3e152 441 int cmp = 0;
ba77c9e1
LZ
442
443 this = rb_entry(*new, struct alloc_stat, node);
444 parent = *new;
445
29b3e152
LZ
446 list_for_each_entry(sort, sort_list, list) {
447 cmp = sort->cmp(data, this);
448 if (cmp)
449 break;
450 }
ba77c9e1
LZ
451
452 if (cmp > 0)
453 new = &((*new)->rb_left);
454 else
455 new = &((*new)->rb_right);
456 }
457
458 rb_link_node(&data->node, parent, new);
459 rb_insert_color(&data->node, root);
460}
461
462static void __sort_result(struct rb_root *root, struct rb_root *root_sorted,
29b3e152 463 struct list_head *sort_list)
ba77c9e1
LZ
464{
465 struct rb_node *node;
466 struct alloc_stat *data;
467
468 for (;;) {
469 node = rb_first(root);
470 if (!node)
471 break;
472
473 rb_erase(node, root);
474 data = rb_entry(node, struct alloc_stat, node);
29b3e152 475 sort_insert(root_sorted, data, sort_list);
ba77c9e1
LZ
476 }
477}
478
479static void sort_result(void)
480{
29b3e152
LZ
481 __sort_result(&root_alloc_stat, &root_alloc_sorted, &alloc_sort);
482 __sort_result(&root_caller_stat, &root_caller_sorted, &caller_sort);
ba77c9e1
LZ
483}
484
485static int __cmd_kmem(void)
486{
d549c769 487 int err = -EINVAL;
75be6cf4 488 struct perf_session *session = perf_session__new(input_name, O_RDONLY, 0);
4aa65636
ACM
489 if (session == NULL)
490 return -ENOMEM;
491
d549c769
ACM
492 if (!perf_session__has_traces(session, "kmem record"))
493 goto out_delete;
494
ba77c9e1 495 setup_pager();
4aa65636
ACM
496 err = perf_session__process_events(session, &event_ops);
497 if (err != 0)
498 goto out_delete;
ba77c9e1 499 sort_result();
4aa65636
ACM
500 print_result(session);
501out_delete:
502 perf_session__delete(session);
503 return err;
ba77c9e1
LZ
504}
505
506static const char * const kmem_usage[] = {
90b86a9f 507 "perf kmem [<options>] {record|stat}",
ba77c9e1
LZ
508 NULL
509};
510
ba77c9e1
LZ
511static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
512{
513 if (l->ptr < r->ptr)
514 return -1;
515 else if (l->ptr > r->ptr)
516 return 1;
517 return 0;
518}
519
29b3e152
LZ
520static struct sort_dimension ptr_sort_dimension = {
521 .name = "ptr",
522 .cmp = ptr_cmp,
523};
524
ba77c9e1
LZ
525static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
526{
527 if (l->call_site < r->call_site)
528 return -1;
529 else if (l->call_site > r->call_site)
530 return 1;
531 return 0;
532}
533
29b3e152
LZ
534static struct sort_dimension callsite_sort_dimension = {
535 .name = "callsite",
536 .cmp = callsite_cmp,
537};
538
f3ced7cd
PE
539static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
540{
541 if (l->hit < r->hit)
542 return -1;
543 else if (l->hit > r->hit)
544 return 1;
545 return 0;
546}
547
29b3e152
LZ
548static struct sort_dimension hit_sort_dimension = {
549 .name = "hit",
550 .cmp = hit_cmp,
551};
552
ba77c9e1
LZ
553static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
554{
555 if (l->bytes_alloc < r->bytes_alloc)
556 return -1;
557 else if (l->bytes_alloc > r->bytes_alloc)
558 return 1;
559 return 0;
560}
561
29b3e152
LZ
562static struct sort_dimension bytes_sort_dimension = {
563 .name = "bytes",
564 .cmp = bytes_cmp,
565};
566
f3ced7cd
PE
567static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
568{
569 double x, y;
570
571 x = fragmentation(l->bytes_req, l->bytes_alloc);
572 y = fragmentation(r->bytes_req, r->bytes_alloc);
573
574 if (x < y)
575 return -1;
576 else if (x > y)
577 return 1;
578 return 0;
579}
580
29b3e152
LZ
581static struct sort_dimension frag_sort_dimension = {
582 .name = "frag",
583 .cmp = frag_cmp,
584};
585
079d3f65
LZ
586static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)
587{
588 if (l->pingpong < r->pingpong)
589 return -1;
590 else if (l->pingpong > r->pingpong)
591 return 1;
592 return 0;
593}
594
595static struct sort_dimension pingpong_sort_dimension = {
596 .name = "pingpong",
597 .cmp = pingpong_cmp,
598};
599
29b3e152
LZ
600static struct sort_dimension *avail_sorts[] = {
601 &ptr_sort_dimension,
602 &callsite_sort_dimension,
603 &hit_sort_dimension,
604 &bytes_sort_dimension,
605 &frag_sort_dimension,
079d3f65 606 &pingpong_sort_dimension,
29b3e152
LZ
607};
608
609#define NUM_AVAIL_SORTS \
610 (int)(sizeof(avail_sorts) / sizeof(struct sort_dimension *))
611
612static int sort_dimension__add(const char *tok, struct list_head *list)
613{
614 struct sort_dimension *sort;
615 int i;
616
617 for (i = 0; i < NUM_AVAIL_SORTS; i++) {
618 if (!strcmp(avail_sorts[i]->name, tok)) {
619 sort = malloc(sizeof(*sort));
620 if (!sort)
621 die("malloc");
622 memcpy(sort, avail_sorts[i], sizeof(*sort));
623 list_add_tail(&sort->list, list);
624 return 0;
625 }
626 }
627
628 return -1;
629}
630
631static int setup_sorting(struct list_head *sort_list, const char *arg)
632{
633 char *tok;
634 char *str = strdup(arg);
635
636 if (!str)
637 die("strdup");
638
639 while (true) {
640 tok = strsep(&str, ",");
641 if (!tok)
642 break;
643 if (sort_dimension__add(tok, sort_list) < 0) {
644 error("Unknown --sort key: '%s'", tok);
645 return -1;
646 }
647 }
648
649 free(str);
650 return 0;
651}
652
ba77c9e1
LZ
653static int parse_sort_opt(const struct option *opt __used,
654 const char *arg, int unset __used)
655{
ba77c9e1
LZ
656 if (!arg)
657 return -1;
658
ba77c9e1 659 if (caller_flag > alloc_flag)
29b3e152 660 return setup_sorting(&caller_sort, arg);
ba77c9e1 661 else
29b3e152 662 return setup_sorting(&alloc_sort, arg);
ba77c9e1
LZ
663
664 return 0;
665}
666
90b86a9f 667static int parse_caller_opt(const struct option *opt __used,
79312416 668 const char *arg __used, int unset __used)
ba77c9e1 669{
90b86a9f
LZ
670 caller_flag = (alloc_flag + 1);
671 return 0;
672}
ba77c9e1 673
90b86a9f 674static int parse_alloc_opt(const struct option *opt __used,
79312416 675 const char *arg __used, int unset __used)
90b86a9f
LZ
676{
677 alloc_flag = (caller_flag + 1);
ba77c9e1
LZ
678 return 0;
679}
680
681static int parse_line_opt(const struct option *opt __used,
682 const char *arg, int unset __used)
683{
684 int lines;
685
686 if (!arg)
687 return -1;
688
689 lines = strtoul(arg, NULL, 10);
690
691 if (caller_flag > alloc_flag)
692 caller_lines = lines;
693 else
694 alloc_lines = lines;
695
696 return 0;
697}
698
699static const struct option kmem_options[] = {
700 OPT_STRING('i', "input", &input_name, "file",
701 "input file name"),
90b86a9f
LZ
702 OPT_CALLBACK_NOOPT(0, "caller", NULL, NULL,
703 "show per-callsite statistics",
704 parse_caller_opt),
705 OPT_CALLBACK_NOOPT(0, "alloc", NULL, NULL,
706 "show per-allocation statistics",
707 parse_alloc_opt),
29b3e152 708 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
079d3f65 709 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
ba77c9e1
LZ
710 parse_sort_opt),
711 OPT_CALLBACK('l', "line", NULL, "num",
90b86a9f 712 "show n lines",
ba77c9e1 713 parse_line_opt),
7707b6b6 714 OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
ba77c9e1
LZ
715 OPT_END()
716};
717
718static const char *record_args[] = {
719 "record",
720 "-a",
721 "-R",
722 "-M",
723 "-f",
724 "-c", "1",
725 "-e", "kmem:kmalloc",
726 "-e", "kmem:kmalloc_node",
727 "-e", "kmem:kfree",
728 "-e", "kmem:kmem_cache_alloc",
729 "-e", "kmem:kmem_cache_alloc_node",
730 "-e", "kmem:kmem_cache_free",
731};
732
733static int __cmd_record(int argc, const char **argv)
734{
735 unsigned int rec_argc, i, j;
736 const char **rec_argv;
737
738 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
739 rec_argv = calloc(rec_argc + 1, sizeof(char *));
740
741 for (i = 0; i < ARRAY_SIZE(record_args); i++)
742 rec_argv[i] = strdup(record_args[i]);
743
744 for (j = 1; j < (unsigned int)argc; j++, i++)
745 rec_argv[i] = argv[j];
746
747 return cmd_record(i, rec_argv, NULL);
748}
749
750int cmd_kmem(int argc, const char **argv, const char *prefix __used)
751{
ba77c9e1
LZ
752 argc = parse_options(argc, argv, kmem_options, kmem_usage, 0);
753
90b86a9f 754 if (!argc)
ba77c9e1
LZ
755 usage_with_options(kmem_usage, kmem_options);
756
655000e7
ACM
757 symbol__init();
758
90b86a9f
LZ
759 if (!strncmp(argv[0], "rec", 3)) {
760 return __cmd_record(argc, argv);
761 } else if (!strcmp(argv[0], "stat")) {
762 setup_cpunode_map();
763
764 if (list_empty(&caller_sort))
765 setup_sorting(&caller_sort, default_sort_order);
766 if (list_empty(&alloc_sort))
767 setup_sorting(&alloc_sort, default_sort_order);
ba77c9e1 768
90b86a9f 769 return __cmd_kmem();
b00eca8c
PE
770 } else
771 usage_with_options(kmem_usage, kmem_options);
7d0d3945 772
90b86a9f 773 return 0;
ba77c9e1
LZ
774}
775