4 #include "util/evlist.h"
5 #include "util/evsel.h"
7 #include "util/cache.h"
8 #include "util/symbol.h"
9 #include "util/thread.h"
10 #include "util/header.h"
11 #include "util/session.h"
12 #include "util/tool.h"
14 #include "util/parse-options.h"
15 #include "util/trace-event.h"
17 #include "util/debug.h"
19 #include <linux/rbtree.h>
20 #include <linux/string.h>
23 typedef int (*sort_fn_t
)(struct alloc_stat
*, struct alloc_stat
*);
25 static int alloc_flag
;
26 static int caller_flag
;
28 static int alloc_lines
= -1;
29 static int caller_lines
= -1;
33 static int *cpunode_map
;
34 static int max_cpu_num
;
49 static struct rb_root root_alloc_stat
;
50 static struct rb_root root_alloc_sorted
;
51 static struct rb_root root_caller_stat
;
52 static struct rb_root root_caller_sorted
;
54 static unsigned long total_requested
, total_allocated
;
55 static unsigned long nr_allocs
, nr_cross_allocs
;
57 #define PATH_SYS_NODE "/sys/devices/system/node"
59 static int init_cpunode_map(void)
64 fp
= fopen("/sys/devices/system/cpu/kernel_max", "r");
70 if (fscanf(fp
, "%d", &max_cpu_num
) < 1) {
71 pr_err("Failed to read 'kernel_max' from sysfs");
77 cpunode_map
= calloc(max_cpu_num
, sizeof(int));
79 pr_err("%s: calloc failed\n", __func__
);
83 for (i
= 0; i
< max_cpu_num
; i
++)
92 static int setup_cpunode_map(void)
94 struct dirent
*dent1
, *dent2
;
96 unsigned int cpu
, mem
;
99 if (init_cpunode_map())
102 dir1
= opendir(PATH_SYS_NODE
);
106 while ((dent1
= readdir(dir1
)) != NULL
) {
107 if (dent1
->d_type
!= DT_DIR
||
108 sscanf(dent1
->d_name
, "node%u", &mem
) < 1)
111 snprintf(buf
, PATH_MAX
, "%s/%s", PATH_SYS_NODE
, dent1
->d_name
);
115 while ((dent2
= readdir(dir2
)) != NULL
) {
116 if (dent2
->d_type
!= DT_LNK
||
117 sscanf(dent2
->d_name
, "cpu%u", &cpu
) < 1)
119 cpunode_map
[cpu
] = mem
;
127 static int insert_alloc_stat(unsigned long call_site
, unsigned long ptr
,
128 int bytes_req
, int bytes_alloc
, int cpu
)
130 struct rb_node
**node
= &root_alloc_stat
.rb_node
;
131 struct rb_node
*parent
= NULL
;
132 struct alloc_stat
*data
= NULL
;
136 data
= rb_entry(*node
, struct alloc_stat
, node
);
139 node
= &(*node
)->rb_right
;
140 else if (ptr
< data
->ptr
)
141 node
= &(*node
)->rb_left
;
146 if (data
&& data
->ptr
== ptr
) {
148 data
->bytes_req
+= bytes_req
;
149 data
->bytes_alloc
+= bytes_alloc
;
151 data
= malloc(sizeof(*data
));
153 pr_err("%s: malloc failed\n", __func__
);
159 data
->bytes_req
= bytes_req
;
160 data
->bytes_alloc
= bytes_alloc
;
162 rb_link_node(&data
->node
, parent
, node
);
163 rb_insert_color(&data
->node
, &root_alloc_stat
);
165 data
->call_site
= call_site
;
166 data
->alloc_cpu
= cpu
;
170 static int insert_caller_stat(unsigned long call_site
,
171 int bytes_req
, int bytes_alloc
)
173 struct rb_node
**node
= &root_caller_stat
.rb_node
;
174 struct rb_node
*parent
= NULL
;
175 struct alloc_stat
*data
= NULL
;
179 data
= rb_entry(*node
, struct alloc_stat
, node
);
181 if (call_site
> data
->call_site
)
182 node
= &(*node
)->rb_right
;
183 else if (call_site
< data
->call_site
)
184 node
= &(*node
)->rb_left
;
189 if (data
&& data
->call_site
== call_site
) {
191 data
->bytes_req
+= bytes_req
;
192 data
->bytes_alloc
+= bytes_alloc
;
194 data
= malloc(sizeof(*data
));
196 pr_err("%s: malloc failed\n", __func__
);
199 data
->call_site
= call_site
;
202 data
->bytes_req
= bytes_req
;
203 data
->bytes_alloc
= bytes_alloc
;
205 rb_link_node(&data
->node
, parent
, node
);
206 rb_insert_color(&data
->node
, &root_caller_stat
);
212 static int perf_evsel__process_alloc_event(struct perf_evsel
*evsel
,
213 struct perf_sample
*sample
)
215 unsigned long ptr
= perf_evsel__intval(evsel
, sample
, "ptr"),
216 call_site
= perf_evsel__intval(evsel
, sample
, "call_site");
217 int bytes_req
= perf_evsel__intval(evsel
, sample
, "bytes_req"),
218 bytes_alloc
= perf_evsel__intval(evsel
, sample
, "bytes_alloc");
220 if (insert_alloc_stat(call_site
, ptr
, bytes_req
, bytes_alloc
, sample
->cpu
) ||
221 insert_caller_stat(call_site
, bytes_req
, bytes_alloc
))
224 total_requested
+= bytes_req
;
225 total_allocated
+= bytes_alloc
;
231 static int perf_evsel__process_alloc_node_event(struct perf_evsel
*evsel
,
232 struct perf_sample
*sample
)
234 int ret
= perf_evsel__process_alloc_event(evsel
, sample
);
237 int node1
= cpunode_map
[sample
->cpu
],
238 node2
= perf_evsel__intval(evsel
, sample
, "node");
247 static int ptr_cmp(struct alloc_stat
*, struct alloc_stat
*);
248 static int callsite_cmp(struct alloc_stat
*, struct alloc_stat
*);
250 static struct alloc_stat
*search_alloc_stat(unsigned long ptr
,
251 unsigned long call_site
,
252 struct rb_root
*root
,
255 struct rb_node
*node
= root
->rb_node
;
256 struct alloc_stat key
= { .ptr
= ptr
, .call_site
= call_site
};
259 struct alloc_stat
*data
;
262 data
= rb_entry(node
, struct alloc_stat
, node
);
264 cmp
= sort_fn(&key
, data
);
266 node
= node
->rb_left
;
268 node
= node
->rb_right
;
275 static int perf_evsel__process_free_event(struct perf_evsel
*evsel
,
276 struct perf_sample
*sample
)
278 unsigned long ptr
= perf_evsel__intval(evsel
, sample
, "ptr");
279 struct alloc_stat
*s_alloc
, *s_caller
;
281 s_alloc
= search_alloc_stat(ptr
, 0, &root_alloc_stat
, ptr_cmp
);
285 if ((short)sample
->cpu
!= s_alloc
->alloc_cpu
) {
288 s_caller
= search_alloc_stat(0, s_alloc
->call_site
,
289 &root_caller_stat
, callsite_cmp
);
292 s_caller
->pingpong
++;
294 s_alloc
->alloc_cpu
= -1;
299 typedef int (*tracepoint_handler
)(struct perf_evsel
*evsel
,
300 struct perf_sample
*sample
);
302 static int process_sample_event(struct perf_tool
*tool __maybe_unused
,
303 union perf_event
*event
,
304 struct perf_sample
*sample
,
305 struct perf_evsel
*evsel
,
306 struct machine
*machine
)
308 struct thread
*thread
= machine__findnew_thread(machine
, event
->ip
.pid
);
310 if (thread
== NULL
) {
311 pr_debug("problem processing %d event, skipping it.\n",
316 dump_printf(" ... thread: %s:%d\n", thread
->comm
, thread
->pid
);
318 if (evsel
->handler
.func
!= NULL
) {
319 tracepoint_handler f
= evsel
->handler
.func
;
320 return f(evsel
, sample
);
326 static struct perf_tool perf_kmem
= {
327 .sample
= process_sample_event
,
328 .comm
= perf_event__process_comm
,
329 .ordered_samples
= true,
332 static double fragmentation(unsigned long n_req
, unsigned long n_alloc
)
337 return 100.0 - (100.0 * n_req
/ n_alloc
);
340 static void __print_result(struct rb_root
*root
, struct perf_session
*session
,
341 int n_lines
, int is_caller
)
343 struct rb_node
*next
;
344 struct machine
*machine
= &session
->machines
.host
;
346 printf("%.102s\n", graph_dotted_line
);
347 printf(" %-34s |", is_caller
? "Callsite": "Alloc Ptr");
348 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
349 printf("%.102s\n", graph_dotted_line
);
351 next
= rb_first(root
);
353 while (next
&& n_lines
--) {
354 struct alloc_stat
*data
= rb_entry(next
, struct alloc_stat
,
356 struct symbol
*sym
= NULL
;
362 addr
= data
->call_site
;
364 sym
= machine__find_kernel_function(machine
, addr
, &map
, NULL
);
369 snprintf(buf
, sizeof(buf
), "%s+%" PRIx64
"", sym
->name
,
370 addr
- map
->unmap_ip(map
, sym
->start
));
372 snprintf(buf
, sizeof(buf
), "%#" PRIx64
"", addr
);
373 printf(" %-34s |", buf
);
375 printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n",
376 (unsigned long long)data
->bytes_alloc
,
377 (unsigned long)data
->bytes_alloc
/ data
->hit
,
378 (unsigned long long)data
->bytes_req
,
379 (unsigned long)data
->bytes_req
/ data
->hit
,
380 (unsigned long)data
->hit
,
381 (unsigned long)data
->pingpong
,
382 fragmentation(data
->bytes_req
, data
->bytes_alloc
));
384 next
= rb_next(next
);
388 printf(" ... | ... | ... | ... | ... | ... \n");
390 printf("%.102s\n", graph_dotted_line
);
393 static void print_summary(void)
395 printf("\nSUMMARY\n=======\n");
396 printf("Total bytes requested: %lu\n", total_requested
);
397 printf("Total bytes allocated: %lu\n", total_allocated
);
398 printf("Total bytes wasted on internal fragmentation: %lu\n",
399 total_allocated
- total_requested
);
400 printf("Internal fragmentation: %f%%\n",
401 fragmentation(total_requested
, total_allocated
));
402 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs
, nr_allocs
);
405 static void print_result(struct perf_session
*session
)
408 __print_result(&root_caller_sorted
, session
, caller_lines
, 1);
410 __print_result(&root_alloc_sorted
, session
, alloc_lines
, 0);
414 struct sort_dimension
{
417 struct list_head list
;
420 static LIST_HEAD(caller_sort
);
421 static LIST_HEAD(alloc_sort
);
423 static void sort_insert(struct rb_root
*root
, struct alloc_stat
*data
,
424 struct list_head
*sort_list
)
426 struct rb_node
**new = &(root
->rb_node
);
427 struct rb_node
*parent
= NULL
;
428 struct sort_dimension
*sort
;
431 struct alloc_stat
*this;
434 this = rb_entry(*new, struct alloc_stat
, node
);
437 list_for_each_entry(sort
, sort_list
, list
) {
438 cmp
= sort
->cmp(data
, this);
444 new = &((*new)->rb_left
);
446 new = &((*new)->rb_right
);
449 rb_link_node(&data
->node
, parent
, new);
450 rb_insert_color(&data
->node
, root
);
453 static void __sort_result(struct rb_root
*root
, struct rb_root
*root_sorted
,
454 struct list_head
*sort_list
)
456 struct rb_node
*node
;
457 struct alloc_stat
*data
;
460 node
= rb_first(root
);
464 rb_erase(node
, root
);
465 data
= rb_entry(node
, struct alloc_stat
, node
);
466 sort_insert(root_sorted
, data
, sort_list
);
470 static void sort_result(void)
472 __sort_result(&root_alloc_stat
, &root_alloc_sorted
, &alloc_sort
);
473 __sort_result(&root_caller_stat
, &root_caller_sorted
, &caller_sort
);
476 static int __cmd_kmem(void)
479 struct perf_session
*session
;
480 const struct perf_evsel_str_handler kmem_tracepoints
[] = {
481 { "kmem:kmalloc", perf_evsel__process_alloc_event
, },
482 { "kmem:kmem_cache_alloc", perf_evsel__process_alloc_event
, },
483 { "kmem:kmalloc_node", perf_evsel__process_alloc_node_event
, },
484 { "kmem:kmem_cache_alloc_node", perf_evsel__process_alloc_node_event
, },
485 { "kmem:kfree", perf_evsel__process_free_event
, },
486 { "kmem:kmem_cache_free", perf_evsel__process_free_event
, },
489 session
= perf_session__new(input_name
, O_RDONLY
, 0, false, &perf_kmem
);
493 if (perf_session__create_kernel_maps(session
) < 0)
496 if (!perf_session__has_traces(session
, "kmem record"))
499 if (perf_session__set_tracepoints_handlers(session
, kmem_tracepoints
)) {
500 pr_err("Initializing perf session tracepoint handlers failed\n");
505 err
= perf_session__process_events(session
, &perf_kmem
);
509 print_result(session
);
511 perf_session__delete(session
);
515 static int ptr_cmp(struct alloc_stat
*l
, struct alloc_stat
*r
)
519 else if (l
->ptr
> r
->ptr
)
524 static struct sort_dimension ptr_sort_dimension
= {
529 static int callsite_cmp(struct alloc_stat
*l
, struct alloc_stat
*r
)
531 if (l
->call_site
< r
->call_site
)
533 else if (l
->call_site
> r
->call_site
)
538 static struct sort_dimension callsite_sort_dimension
= {
543 static int hit_cmp(struct alloc_stat
*l
, struct alloc_stat
*r
)
547 else if (l
->hit
> r
->hit
)
552 static struct sort_dimension hit_sort_dimension
= {
557 static int bytes_cmp(struct alloc_stat
*l
, struct alloc_stat
*r
)
559 if (l
->bytes_alloc
< r
->bytes_alloc
)
561 else if (l
->bytes_alloc
> r
->bytes_alloc
)
566 static struct sort_dimension bytes_sort_dimension
= {
571 static int frag_cmp(struct alloc_stat
*l
, struct alloc_stat
*r
)
575 x
= fragmentation(l
->bytes_req
, l
->bytes_alloc
);
576 y
= fragmentation(r
->bytes_req
, r
->bytes_alloc
);
585 static struct sort_dimension frag_sort_dimension
= {
590 static int pingpong_cmp(struct alloc_stat
*l
, struct alloc_stat
*r
)
592 if (l
->pingpong
< r
->pingpong
)
594 else if (l
->pingpong
> r
->pingpong
)
599 static struct sort_dimension pingpong_sort_dimension
= {
604 static struct sort_dimension
*avail_sorts
[] = {
606 &callsite_sort_dimension
,
608 &bytes_sort_dimension
,
609 &frag_sort_dimension
,
610 &pingpong_sort_dimension
,
613 #define NUM_AVAIL_SORTS ((int)ARRAY_SIZE(avail_sorts))
615 static int sort_dimension__add(const char *tok
, struct list_head
*list
)
617 struct sort_dimension
*sort
;
620 for (i
= 0; i
< NUM_AVAIL_SORTS
; i
++) {
621 if (!strcmp(avail_sorts
[i
]->name
, tok
)) {
622 sort
= memdup(avail_sorts
[i
], sizeof(*avail_sorts
[i
]));
624 pr_err("%s: memdup failed\n", __func__
);
627 list_add_tail(&sort
->list
, list
);
635 static int setup_sorting(struct list_head
*sort_list
, const char *arg
)
638 char *str
= strdup(arg
);
641 pr_err("%s: strdup failed\n", __func__
);
646 tok
= strsep(&str
, ",");
649 if (sort_dimension__add(tok
, sort_list
) < 0) {
650 error("Unknown --sort key: '%s'", tok
);
660 static int parse_sort_opt(const struct option
*opt __maybe_unused
,
661 const char *arg
, int unset __maybe_unused
)
666 if (caller_flag
> alloc_flag
)
667 return setup_sorting(&caller_sort
, arg
);
669 return setup_sorting(&alloc_sort
, arg
);
674 static int parse_caller_opt(const struct option
*opt __maybe_unused
,
675 const char *arg __maybe_unused
,
676 int unset __maybe_unused
)
678 caller_flag
= (alloc_flag
+ 1);
682 static int parse_alloc_opt(const struct option
*opt __maybe_unused
,
683 const char *arg __maybe_unused
,
684 int unset __maybe_unused
)
686 alloc_flag
= (caller_flag
+ 1);
690 static int parse_line_opt(const struct option
*opt __maybe_unused
,
691 const char *arg
, int unset __maybe_unused
)
698 lines
= strtoul(arg
, NULL
, 10);
700 if (caller_flag
> alloc_flag
)
701 caller_lines
= lines
;
708 static int __cmd_record(int argc
, const char **argv
)
710 const char * const record_args
[] = {
711 "record", "-a", "-R", "-f", "-c", "1",
712 "-e", "kmem:kmalloc",
713 "-e", "kmem:kmalloc_node",
715 "-e", "kmem:kmem_cache_alloc",
716 "-e", "kmem:kmem_cache_alloc_node",
717 "-e", "kmem:kmem_cache_free",
719 unsigned int rec_argc
, i
, j
;
720 const char **rec_argv
;
722 rec_argc
= ARRAY_SIZE(record_args
) + argc
- 1;
723 rec_argv
= calloc(rec_argc
+ 1, sizeof(char *));
725 if (rec_argv
== NULL
)
728 for (i
= 0; i
< ARRAY_SIZE(record_args
); i
++)
729 rec_argv
[i
] = strdup(record_args
[i
]);
731 for (j
= 1; j
< (unsigned int)argc
; j
++, i
++)
732 rec_argv
[i
] = argv
[j
];
734 return cmd_record(i
, rec_argv
, NULL
);
737 int cmd_kmem(int argc
, const char **argv
, const char *prefix __maybe_unused
)
739 const char * const default_sort_order
= "frag,hit,bytes";
740 const struct option kmem_options
[] = {
741 OPT_STRING('i', "input", &input_name
, "file", "input file name"),
742 OPT_CALLBACK_NOOPT(0, "caller", NULL
, NULL
,
743 "show per-callsite statistics", parse_caller_opt
),
744 OPT_CALLBACK_NOOPT(0, "alloc", NULL
, NULL
,
745 "show per-allocation statistics", parse_alloc_opt
),
746 OPT_CALLBACK('s', "sort", NULL
, "key[,key2...]",
747 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
749 OPT_CALLBACK('l', "line", NULL
, "num", "show n lines", parse_line_opt
),
750 OPT_BOOLEAN(0, "raw-ip", &raw_ip
, "show raw ip instead of symbol"),
753 const char * const kmem_usage
[] = {
754 "perf kmem [<options>] {record|stat}",
757 argc
= parse_options(argc
, argv
, kmem_options
, kmem_usage
, 0);
760 usage_with_options(kmem_usage
, kmem_options
);
764 if (!strncmp(argv
[0], "rec", 3)) {
765 return __cmd_record(argc
, argv
);
766 } else if (!strcmp(argv
[0], "stat")) {
767 if (setup_cpunode_map())
770 if (list_empty(&caller_sort
))
771 setup_sorting(&caller_sort
, default_sort_order
);
772 if (list_empty(&alloc_sort
))
773 setup_sorting(&alloc_sort
, default_sort_order
);
777 usage_with_options(kmem_usage
, kmem_options
);