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