blob: 173d6db42ecbfee186f7400dc2761cbe56245e31 [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"
9
10#include "util/parse-options.h"
11#include "util/trace-event.h"
12
13#include "util/debug.h"
14#include "util/data_map.h"
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
23static struct perf_header *header;
24static u64 sample_type;
25
26static int alloc_flag;
27static int caller_flag;
28
Li Zefanba77c9e2009-11-20 15:53:25 +080029static int alloc_lines = -1;
30static int caller_lines = -1;
31
Li Zefan7707b6b2009-11-24 13:25:48 +080032static bool raw_ip;
33
Li Zefan29b3e152009-11-24 13:26:10 +080034static char default_sort_order[] = "frag,hit,bytes";
35
Li Zefanba77c9e2009-11-20 15:53:25 +080036static char *cwd;
37static int cwdlen;
38
Li Zefan7d0d3942009-11-24 13:26:31 +080039static int *cpunode_map;
40static int max_cpu_num;
41
Li Zefanba77c9e2009-11-20 15:53:25 +080042struct alloc_stat {
Li Zefan079d3f62009-11-24 13:26:55 +080043 u64 call_site;
44 u64 ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +080045 u64 bytes_req;
46 u64 bytes_alloc;
47 u32 hit;
Li Zefan079d3f62009-11-24 13:26:55 +080048 u32 pingpong;
49
50 short alloc_cpu;
Li Zefanba77c9e2009-11-20 15:53:25 +080051
52 struct rb_node node;
53};
54
55static struct rb_root root_alloc_stat;
56static struct rb_root root_alloc_sorted;
57static struct rb_root root_caller_stat;
58static struct rb_root root_caller_sorted;
59
60static unsigned long total_requested, total_allocated;
Li Zefan7d0d3942009-11-24 13:26:31 +080061static unsigned long nr_allocs, nr_cross_allocs;
Li Zefanba77c9e2009-11-20 15:53:25 +080062
63struct raw_event_sample {
64 u32 size;
65 char data[0];
66};
67
Li Zefan7d0d3942009-11-24 13:26:31 +080068#define PATH_SYS_NODE "/sys/devices/system/node"
69
70static void init_cpunode_map(void)
71{
72 FILE *fp;
73 int i;
74
75 fp = fopen("/sys/devices/system/cpu/kernel_max", "r");
76 if (!fp) {
77 max_cpu_num = 4096;
78 return;
79 }
80
81 if (fscanf(fp, "%d", &max_cpu_num) < 1)
82 die("Failed to read 'kernel_max' from sysfs");
83 max_cpu_num++;
84
85 cpunode_map = calloc(max_cpu_num, sizeof(int));
86 if (!cpunode_map)
87 die("calloc");
88 for (i = 0; i < max_cpu_num; i++)
89 cpunode_map[i] = -1;
90 fclose(fp);
91}
92
93static void setup_cpunode_map(void)
94{
95 struct dirent *dent1, *dent2;
96 DIR *dir1, *dir2;
97 unsigned int cpu, mem;
98 char buf[PATH_MAX];
99
100 init_cpunode_map();
101
102 dir1 = opendir(PATH_SYS_NODE);
103 if (!dir1)
104 return;
105
106 while (true) {
107 dent1 = readdir(dir1);
108 if (!dent1)
109 break;
110
111 if (sscanf(dent1->d_name, "node%u", &mem) < 1)
112 continue;
113
114 snprintf(buf, PATH_MAX, "%s/%s", PATH_SYS_NODE, dent1->d_name);
115 dir2 = opendir(buf);
116 if (!dir2)
117 continue;
118 while (true) {
119 dent2 = readdir(dir2);
120 if (!dent2)
121 break;
122 if (sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
123 continue;
124 cpunode_map[cpu] = mem;
125 }
126 }
127}
128
Li Zefanba77c9e2009-11-20 15:53:25 +0800129static int
130process_comm_event(event_t *event, unsigned long offset, unsigned long head)
131{
132 struct thread *thread = threads__findnew(event->comm.pid);
133
134 dump_printf("%p [%p]: PERF_RECORD_COMM: %s:%d\n",
135 (void *)(offset + head),
136 (void *)(long)(event->header.size),
137 event->comm.comm, event->comm.pid);
138
139 if (thread == NULL ||
140 thread__set_comm(thread, event->comm.comm)) {
141 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
142 return -1;
143 }
144
145 return 0;
146}
147
Li Zefan079d3f62009-11-24 13:26:55 +0800148static void insert_alloc_stat(unsigned long call_site, unsigned long ptr,
149 int bytes_req, int bytes_alloc, int cpu)
Li Zefanba77c9e2009-11-20 15:53:25 +0800150{
151 struct rb_node **node = &root_alloc_stat.rb_node;
152 struct rb_node *parent = NULL;
153 struct alloc_stat *data = NULL;
154
Li Zefanba77c9e2009-11-20 15:53:25 +0800155 while (*node) {
156 parent = *node;
157 data = rb_entry(*node, struct alloc_stat, node);
158
159 if (ptr > data->ptr)
160 node = &(*node)->rb_right;
161 else if (ptr < data->ptr)
162 node = &(*node)->rb_left;
163 else
164 break;
165 }
166
167 if (data && data->ptr == ptr) {
168 data->hit++;
169 data->bytes_req += bytes_req;
170 data->bytes_alloc += bytes_req;
171 } else {
172 data = malloc(sizeof(*data));
Li Zefan079d3f62009-11-24 13:26:55 +0800173 if (!data)
174 die("malloc");
Li Zefanba77c9e2009-11-20 15:53:25 +0800175 data->ptr = ptr;
Li Zefan079d3f62009-11-24 13:26:55 +0800176 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800177 data->hit = 1;
178 data->bytes_req = bytes_req;
179 data->bytes_alloc = bytes_alloc;
180
181 rb_link_node(&data->node, parent, node);
182 rb_insert_color(&data->node, &root_alloc_stat);
183 }
Li Zefan079d3f62009-11-24 13:26:55 +0800184 data->call_site = call_site;
185 data->alloc_cpu = cpu;
Li Zefanba77c9e2009-11-20 15:53:25 +0800186}
187
188static void insert_caller_stat(unsigned long call_site,
189 int bytes_req, int bytes_alloc)
190{
191 struct rb_node **node = &root_caller_stat.rb_node;
192 struct rb_node *parent = NULL;
193 struct alloc_stat *data = NULL;
194
Li Zefanba77c9e2009-11-20 15:53:25 +0800195 while (*node) {
196 parent = *node;
197 data = rb_entry(*node, struct alloc_stat, node);
198
199 if (call_site > data->call_site)
200 node = &(*node)->rb_right;
201 else if (call_site < data->call_site)
202 node = &(*node)->rb_left;
203 else
204 break;
205 }
206
207 if (data && data->call_site == call_site) {
208 data->hit++;
209 data->bytes_req += bytes_req;
210 data->bytes_alloc += bytes_req;
211 } else {
212 data = malloc(sizeof(*data));
Li Zefan079d3f62009-11-24 13:26:55 +0800213 if (!data)
214 die("malloc");
Li Zefanba77c9e2009-11-20 15:53:25 +0800215 data->call_site = call_site;
Li Zefan079d3f62009-11-24 13:26:55 +0800216 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800217 data->hit = 1;
218 data->bytes_req = bytes_req;
219 data->bytes_alloc = bytes_alloc;
220
221 rb_link_node(&data->node, parent, node);
222 rb_insert_color(&data->node, &root_caller_stat);
223 }
224}
225
226static void process_alloc_event(struct raw_event_sample *raw,
227 struct event *event,
Li Zefan7d0d3942009-11-24 13:26:31 +0800228 int cpu,
Li Zefanba77c9e2009-11-20 15:53:25 +0800229 u64 timestamp __used,
230 struct thread *thread __used,
Li Zefan7d0d3942009-11-24 13:26:31 +0800231 int node)
Li Zefanba77c9e2009-11-20 15:53:25 +0800232{
233 unsigned long call_site;
234 unsigned long ptr;
235 int bytes_req;
236 int bytes_alloc;
Li Zefan7d0d3942009-11-24 13:26:31 +0800237 int node1, node2;
Li Zefanba77c9e2009-11-20 15:53:25 +0800238
239 ptr = raw_field_value(event, "ptr", raw->data);
240 call_site = raw_field_value(event, "call_site", raw->data);
241 bytes_req = raw_field_value(event, "bytes_req", raw->data);
242 bytes_alloc = raw_field_value(event, "bytes_alloc", raw->data);
243
Li Zefan079d3f62009-11-24 13:26:55 +0800244 insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, cpu);
Li Zefanba77c9e2009-11-20 15:53:25 +0800245 insert_caller_stat(call_site, bytes_req, bytes_alloc);
246
247 total_requested += bytes_req;
248 total_allocated += bytes_alloc;
Li Zefan7d0d3942009-11-24 13:26:31 +0800249
250 if (node) {
251 node1 = cpunode_map[cpu];
252 node2 = raw_field_value(event, "node", raw->data);
253 if (node1 != node2)
254 nr_cross_allocs++;
255 }
256 nr_allocs++;
Li Zefanba77c9e2009-11-20 15:53:25 +0800257}
258
Li Zefan079d3f62009-11-24 13:26:55 +0800259static int ptr_cmp(struct alloc_stat *, struct alloc_stat *);
260static int callsite_cmp(struct alloc_stat *, struct alloc_stat *);
261
262static struct alloc_stat *search_alloc_stat(unsigned long ptr,
263 unsigned long call_site,
264 struct rb_root *root,
265 sort_fn_t sort_fn)
266{
267 struct rb_node *node = root->rb_node;
268 struct alloc_stat key = { .ptr = ptr, .call_site = call_site };
269
270 while (node) {
271 struct alloc_stat *data;
272 int cmp;
273
274 data = rb_entry(node, struct alloc_stat, node);
275
276 cmp = sort_fn(&key, data);
277 if (cmp < 0)
278 node = node->rb_left;
279 else if (cmp > 0)
280 node = node->rb_right;
281 else
282 return data;
283 }
284 return NULL;
285}
286
287static void process_free_event(struct raw_event_sample *raw,
288 struct event *event,
289 int cpu,
Li Zefanba77c9e2009-11-20 15:53:25 +0800290 u64 timestamp __used,
291 struct thread *thread __used)
292{
Li Zefan079d3f62009-11-24 13:26:55 +0800293 unsigned long ptr;
294 struct alloc_stat *s_alloc, *s_caller;
295
296 ptr = raw_field_value(event, "ptr", raw->data);
297
298 s_alloc = search_alloc_stat(ptr, 0, &root_alloc_stat, ptr_cmp);
299 if (!s_alloc)
300 return;
301
302 if (cpu != s_alloc->alloc_cpu) {
303 s_alloc->pingpong++;
304
305 s_caller = search_alloc_stat(0, s_alloc->call_site,
306 &root_caller_stat, callsite_cmp);
307 assert(s_caller);
308 s_caller->pingpong++;
309 }
310 s_alloc->alloc_cpu = -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800311}
312
313static void
314process_raw_event(event_t *raw_event __used, void *more_data,
315 int cpu, u64 timestamp, struct thread *thread)
316{
317 struct raw_event_sample *raw = more_data;
318 struct event *event;
319 int type;
320
321 type = trace_parse_common_type(raw->data);
322 event = trace_find_event(type);
323
324 if (!strcmp(event->name, "kmalloc") ||
325 !strcmp(event->name, "kmem_cache_alloc")) {
326 process_alloc_event(raw, event, cpu, timestamp, thread, 0);
327 return;
328 }
329
330 if (!strcmp(event->name, "kmalloc_node") ||
331 !strcmp(event->name, "kmem_cache_alloc_node")) {
332 process_alloc_event(raw, event, cpu, timestamp, thread, 1);
333 return;
334 }
335
336 if (!strcmp(event->name, "kfree") ||
337 !strcmp(event->name, "kmem_cache_free")) {
338 process_free_event(raw, event, cpu, timestamp, thread);
339 return;
340 }
341}
342
343static int
344process_sample_event(event_t *event, unsigned long offset, unsigned long head)
345{
346 u64 ip = event->ip.ip;
347 u64 timestamp = -1;
348 u32 cpu = -1;
349 u64 period = 1;
350 void *more_data = event->ip.__more_data;
351 struct thread *thread = threads__findnew(event->ip.pid);
352
353 if (sample_type & PERF_SAMPLE_TIME) {
354 timestamp = *(u64 *)more_data;
355 more_data += sizeof(u64);
356 }
357
358 if (sample_type & PERF_SAMPLE_CPU) {
359 cpu = *(u32 *)more_data;
360 more_data += sizeof(u32);
361 more_data += sizeof(u32); /* reserved */
362 }
363
364 if (sample_type & PERF_SAMPLE_PERIOD) {
365 period = *(u64 *)more_data;
366 more_data += sizeof(u64);
367 }
368
369 dump_printf("%p [%p]: PERF_RECORD_SAMPLE (IP, %d): %d/%d: %p period: %Ld\n",
370 (void *)(offset + head),
371 (void *)(long)(event->header.size),
372 event->header.misc,
373 event->ip.pid, event->ip.tid,
374 (void *)(long)ip,
375 (long long)period);
376
377 if (thread == NULL) {
378 pr_debug("problem processing %d event, skipping it.\n",
379 event->header.type);
380 return -1;
381 }
382
383 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
384
385 process_raw_event(event, more_data, cpu, timestamp, thread);
386
387 return 0;
388}
389
390static int sample_type_check(u64 type)
391{
392 sample_type = type;
393
394 if (!(sample_type & PERF_SAMPLE_RAW)) {
395 fprintf(stderr,
396 "No trace sample to read. Did you call perf record "
397 "without -R?");
398 return -1;
399 }
400
401 return 0;
402}
403
404static struct perf_file_handler file_handler = {
405 .process_sample_event = process_sample_event,
406 .process_comm_event = process_comm_event,
407 .sample_type_check = sample_type_check,
408};
409
410static int read_events(void)
411{
412 register_idle_thread();
413 register_perf_file_handler(&file_handler);
414
Arnaldo Carvalho de Melocc612d82009-11-23 16:39:10 -0200415 return mmap_dispatch_perf_file(&header, input_name, NULL, false, 0, 0,
Li Zefanba77c9e2009-11-20 15:53:25 +0800416 &cwdlen, &cwd);
417}
418
419static double fragmentation(unsigned long n_req, unsigned long n_alloc)
420{
421 if (n_alloc == 0)
422 return 0.0;
423 else
424 return 100.0 - (100.0 * n_req / n_alloc);
425}
426
427static void __print_result(struct rb_root *root, int n_lines, int is_caller)
428{
429 struct rb_node *next;
430
Li Zefan079d3f62009-11-24 13:26:55 +0800431 printf("%.102s\n", graph_dotted_line);
432 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr");
433 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
434 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800435
436 next = rb_first(root);
437
438 while (next && n_lines--) {
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200439 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
440 node);
441 struct symbol *sym = NULL;
Li Zefan079d3f62009-11-24 13:26:55 +0800442 char buf[BUFSIZ];
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200443 u64 addr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800444
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200445 if (is_caller) {
446 addr = data->call_site;
Li Zefan7707b6b2009-11-24 13:25:48 +0800447 if (!raw_ip)
448 sym = kernel_maps__find_symbol(addr,
449 NULL, NULL);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200450 } else
451 addr = data->ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800452
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200453 if (sym != NULL)
Li Zefan079d3f62009-11-24 13:26:55 +0800454 snprintf(buf, sizeof(buf), "%s+%Lx", sym->name,
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200455 addr - sym->start);
456 else
Li Zefan079d3f62009-11-24 13:26:55 +0800457 snprintf(buf, sizeof(buf), "%#Lx", addr);
458 printf(" %-34s |", buf);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200459
Li Zefan079d3f62009-11-24 13:26:55 +0800460 printf(" %9llu/%-5lu | %9llu/%-5lu | %6lu | %8lu | %6.3f%%\n",
461 (unsigned long long)data->bytes_alloc,
Li Zefanba77c9e2009-11-20 15:53:25 +0800462 (unsigned long)data->bytes_alloc / data->hit,
463 (unsigned long long)data->bytes_req,
464 (unsigned long)data->bytes_req / data->hit,
465 (unsigned long)data->hit,
Li Zefan079d3f62009-11-24 13:26:55 +0800466 (unsigned long)data->pingpong,
Li Zefanba77c9e2009-11-20 15:53:25 +0800467 fragmentation(data->bytes_req, data->bytes_alloc));
468
469 next = rb_next(next);
470 }
471
472 if (n_lines == -1)
Li Zefan079d3f62009-11-24 13:26:55 +0800473 printf(" ... | ... | ... | ... | ... | ... \n");
Li Zefanba77c9e2009-11-20 15:53:25 +0800474
Li Zefan079d3f62009-11-24 13:26:55 +0800475 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800476}
477
478static void print_summary(void)
479{
480 printf("\nSUMMARY\n=======\n");
481 printf("Total bytes requested: %lu\n", total_requested);
482 printf("Total bytes allocated: %lu\n", total_allocated);
483 printf("Total bytes wasted on internal fragmentation: %lu\n",
484 total_allocated - total_requested);
485 printf("Internal fragmentation: %f%%\n",
486 fragmentation(total_requested, total_allocated));
Li Zefan7d0d3942009-11-24 13:26:31 +0800487 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs, nr_allocs);
Li Zefanba77c9e2009-11-20 15:53:25 +0800488}
489
490static void print_result(void)
491{
492 if (caller_flag)
493 __print_result(&root_caller_sorted, caller_lines, 1);
494 if (alloc_flag)
495 __print_result(&root_alloc_sorted, alloc_lines, 0);
496 print_summary();
497}
498
Li Zefan29b3e152009-11-24 13:26:10 +0800499struct sort_dimension {
500 const char name[20];
501 sort_fn_t cmp;
502 struct list_head list;
503};
504
505static LIST_HEAD(caller_sort);
506static LIST_HEAD(alloc_sort);
507
Li Zefanba77c9e2009-11-20 15:53:25 +0800508static void sort_insert(struct rb_root *root, struct alloc_stat *data,
Li Zefan29b3e152009-11-24 13:26:10 +0800509 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800510{
511 struct rb_node **new = &(root->rb_node);
512 struct rb_node *parent = NULL;
Li Zefan29b3e152009-11-24 13:26:10 +0800513 struct sort_dimension *sort;
Li Zefanba77c9e2009-11-20 15:53:25 +0800514
515 while (*new) {
516 struct alloc_stat *this;
Li Zefan29b3e152009-11-24 13:26:10 +0800517 int cmp = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800518
519 this = rb_entry(*new, struct alloc_stat, node);
520 parent = *new;
521
Li Zefan29b3e152009-11-24 13:26:10 +0800522 list_for_each_entry(sort, sort_list, list) {
523 cmp = sort->cmp(data, this);
524 if (cmp)
525 break;
526 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800527
528 if (cmp > 0)
529 new = &((*new)->rb_left);
530 else
531 new = &((*new)->rb_right);
532 }
533
534 rb_link_node(&data->node, parent, new);
535 rb_insert_color(&data->node, root);
536}
537
538static void __sort_result(struct rb_root *root, struct rb_root *root_sorted,
Li Zefan29b3e152009-11-24 13:26:10 +0800539 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800540{
541 struct rb_node *node;
542 struct alloc_stat *data;
543
544 for (;;) {
545 node = rb_first(root);
546 if (!node)
547 break;
548
549 rb_erase(node, root);
550 data = rb_entry(node, struct alloc_stat, node);
Li Zefan29b3e152009-11-24 13:26:10 +0800551 sort_insert(root_sorted, data, sort_list);
Li Zefanba77c9e2009-11-20 15:53:25 +0800552 }
553}
554
555static void sort_result(void)
556{
Li Zefan29b3e152009-11-24 13:26:10 +0800557 __sort_result(&root_alloc_stat, &root_alloc_sorted, &alloc_sort);
558 __sort_result(&root_caller_stat, &root_caller_sorted, &caller_sort);
Li Zefanba77c9e2009-11-20 15:53:25 +0800559}
560
561static int __cmd_kmem(void)
562{
563 setup_pager();
564 read_events();
565 sort_result();
566 print_result();
567
568 return 0;
569}
570
571static const char * const kmem_usage[] = {
572 "perf kmem [<options>] {record}",
573 NULL
574};
575
Li Zefanba77c9e2009-11-20 15:53:25 +0800576static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
577{
578 if (l->ptr < r->ptr)
579 return -1;
580 else if (l->ptr > r->ptr)
581 return 1;
582 return 0;
583}
584
Li Zefan29b3e152009-11-24 13:26:10 +0800585static struct sort_dimension ptr_sort_dimension = {
586 .name = "ptr",
587 .cmp = ptr_cmp,
588};
589
Li Zefanba77c9e2009-11-20 15:53:25 +0800590static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
591{
592 if (l->call_site < r->call_site)
593 return -1;
594 else if (l->call_site > r->call_site)
595 return 1;
596 return 0;
597}
598
Li Zefan29b3e152009-11-24 13:26:10 +0800599static struct sort_dimension callsite_sort_dimension = {
600 .name = "callsite",
601 .cmp = callsite_cmp,
602};
603
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200604static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
605{
606 if (l->hit < r->hit)
607 return -1;
608 else if (l->hit > r->hit)
609 return 1;
610 return 0;
611}
612
Li Zefan29b3e152009-11-24 13:26:10 +0800613static struct sort_dimension hit_sort_dimension = {
614 .name = "hit",
615 .cmp = hit_cmp,
616};
617
Li Zefanba77c9e2009-11-20 15:53:25 +0800618static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
619{
620 if (l->bytes_alloc < r->bytes_alloc)
621 return -1;
622 else if (l->bytes_alloc > r->bytes_alloc)
623 return 1;
624 return 0;
625}
626
Li Zefan29b3e152009-11-24 13:26:10 +0800627static struct sort_dimension bytes_sort_dimension = {
628 .name = "bytes",
629 .cmp = bytes_cmp,
630};
631
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200632static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
633{
634 double x, y;
635
636 x = fragmentation(l->bytes_req, l->bytes_alloc);
637 y = fragmentation(r->bytes_req, r->bytes_alloc);
638
639 if (x < y)
640 return -1;
641 else if (x > y)
642 return 1;
643 return 0;
644}
645
Li Zefan29b3e152009-11-24 13:26:10 +0800646static struct sort_dimension frag_sort_dimension = {
647 .name = "frag",
648 .cmp = frag_cmp,
649};
650
Li Zefan079d3f62009-11-24 13:26:55 +0800651static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)
652{
653 if (l->pingpong < r->pingpong)
654 return -1;
655 else if (l->pingpong > r->pingpong)
656 return 1;
657 return 0;
658}
659
660static struct sort_dimension pingpong_sort_dimension = {
661 .name = "pingpong",
662 .cmp = pingpong_cmp,
663};
664
Li Zefan29b3e152009-11-24 13:26:10 +0800665static struct sort_dimension *avail_sorts[] = {
666 &ptr_sort_dimension,
667 &callsite_sort_dimension,
668 &hit_sort_dimension,
669 &bytes_sort_dimension,
670 &frag_sort_dimension,
Li Zefan079d3f62009-11-24 13:26:55 +0800671 &pingpong_sort_dimension,
Li Zefan29b3e152009-11-24 13:26:10 +0800672};
673
674#define NUM_AVAIL_SORTS \
675 (int)(sizeof(avail_sorts) / sizeof(struct sort_dimension *))
676
677static int sort_dimension__add(const char *tok, struct list_head *list)
678{
679 struct sort_dimension *sort;
680 int i;
681
682 for (i = 0; i < NUM_AVAIL_SORTS; i++) {
683 if (!strcmp(avail_sorts[i]->name, tok)) {
684 sort = malloc(sizeof(*sort));
685 if (!sort)
686 die("malloc");
687 memcpy(sort, avail_sorts[i], sizeof(*sort));
688 list_add_tail(&sort->list, list);
689 return 0;
690 }
691 }
692
693 return -1;
694}
695
696static int setup_sorting(struct list_head *sort_list, const char *arg)
697{
698 char *tok;
699 char *str = strdup(arg);
700
701 if (!str)
702 die("strdup");
703
704 while (true) {
705 tok = strsep(&str, ",");
706 if (!tok)
707 break;
708 if (sort_dimension__add(tok, sort_list) < 0) {
709 error("Unknown --sort key: '%s'", tok);
710 return -1;
711 }
712 }
713
714 free(str);
715 return 0;
716}
717
Li Zefanba77c9e2009-11-20 15:53:25 +0800718static int parse_sort_opt(const struct option *opt __used,
719 const char *arg, int unset __used)
720{
Li Zefanba77c9e2009-11-20 15:53:25 +0800721 if (!arg)
722 return -1;
723
Li Zefanba77c9e2009-11-20 15:53:25 +0800724 if (caller_flag > alloc_flag)
Li Zefan29b3e152009-11-24 13:26:10 +0800725 return setup_sorting(&caller_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800726 else
Li Zefan29b3e152009-11-24 13:26:10 +0800727 return setup_sorting(&alloc_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800728
729 return 0;
730}
731
732static int parse_stat_opt(const struct option *opt __used,
733 const char *arg, int unset __used)
734{
735 if (!arg)
736 return -1;
737
738 if (strcmp(arg, "alloc") == 0)
739 alloc_flag = (caller_flag + 1);
740 else if (strcmp(arg, "caller") == 0)
741 caller_flag = (alloc_flag + 1);
742 else
743 return -1;
744 return 0;
745}
746
747static int parse_line_opt(const struct option *opt __used,
748 const char *arg, int unset __used)
749{
750 int lines;
751
752 if (!arg)
753 return -1;
754
755 lines = strtoul(arg, NULL, 10);
756
757 if (caller_flag > alloc_flag)
758 caller_lines = lines;
759 else
760 alloc_lines = lines;
761
762 return 0;
763}
764
765static const struct option kmem_options[] = {
766 OPT_STRING('i', "input", &input_name, "file",
767 "input file name"),
768 OPT_CALLBACK(0, "stat", NULL, "<alloc>|<caller>",
769 "stat selector, Pass 'alloc' or 'caller'.",
770 parse_stat_opt),
Li Zefan29b3e152009-11-24 13:26:10 +0800771 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
Li Zefan079d3f62009-11-24 13:26:55 +0800772 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
Li Zefanba77c9e2009-11-20 15:53:25 +0800773 parse_sort_opt),
774 OPT_CALLBACK('l', "line", NULL, "num",
775 "show n lins",
776 parse_line_opt),
Li Zefan7707b6b2009-11-24 13:25:48 +0800777 OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
Li Zefanba77c9e2009-11-20 15:53:25 +0800778 OPT_END()
779};
780
781static const char *record_args[] = {
782 "record",
783 "-a",
784 "-R",
785 "-M",
786 "-f",
787 "-c", "1",
788 "-e", "kmem:kmalloc",
789 "-e", "kmem:kmalloc_node",
790 "-e", "kmem:kfree",
791 "-e", "kmem:kmem_cache_alloc",
792 "-e", "kmem:kmem_cache_alloc_node",
793 "-e", "kmem:kmem_cache_free",
794};
795
796static int __cmd_record(int argc, const char **argv)
797{
798 unsigned int rec_argc, i, j;
799 const char **rec_argv;
800
801 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
802 rec_argv = calloc(rec_argc + 1, sizeof(char *));
803
804 for (i = 0; i < ARRAY_SIZE(record_args); i++)
805 rec_argv[i] = strdup(record_args[i]);
806
807 for (j = 1; j < (unsigned int)argc; j++, i++)
808 rec_argv[i] = argv[j];
809
810 return cmd_record(i, rec_argv, NULL);
811}
812
813int cmd_kmem(int argc, const char **argv, const char *prefix __used)
814{
815 symbol__init(0);
816
817 argc = parse_options(argc, argv, kmem_options, kmem_usage, 0);
818
819 if (argc && !strncmp(argv[0], "rec", 3))
820 return __cmd_record(argc, argv);
821 else if (argc)
822 usage_with_options(kmem_usage, kmem_options);
823
Li Zefan29b3e152009-11-24 13:26:10 +0800824 if (list_empty(&caller_sort))
825 setup_sorting(&caller_sort, default_sort_order);
826 if (list_empty(&alloc_sort))
827 setup_sorting(&alloc_sort, default_sort_order);
Li Zefanba77c9e2009-11-20 15:53:25 +0800828
Li Zefan7d0d3942009-11-24 13:26:31 +0800829 setup_cpunode_map();
830
Li Zefanba77c9e2009-11-20 15:53:25 +0800831 return __cmd_kmem();
832}
833