blob: 5d01218e50e002825e66988633f3f5943afeb0a8 [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
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200278static void process_raw_event(union perf_event *raw_event __used, void *data,
279 int cpu, u64 timestamp, struct thread *thread)
Li Zefanba77c9e2009-11-20 15:53:25 +0800280{
Li Zefanba77c9e2009-11-20 15:53:25 +0800281 struct event *event;
282 int type;
283
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800284 type = trace_parse_common_type(data);
Li Zefanba77c9e2009-11-20 15:53:25 +0800285 event = trace_find_event(type);
286
287 if (!strcmp(event->name, "kmalloc") ||
288 !strcmp(event->name, "kmem_cache_alloc")) {
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800289 process_alloc_event(data, event, cpu, timestamp, thread, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800290 return;
291 }
292
293 if (!strcmp(event->name, "kmalloc_node") ||
294 !strcmp(event->name, "kmem_cache_alloc_node")) {
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800295 process_alloc_event(data, event, cpu, timestamp, thread, 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800296 return;
297 }
298
299 if (!strcmp(event->name, "kfree") ||
300 !strcmp(event->name, "kmem_cache_free")) {
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800301 process_free_event(data, event, cpu, timestamp, thread);
Li Zefanba77c9e2009-11-20 15:53:25 +0800302 return;
303 }
304}
305
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200306static int process_sample_event(struct perf_event_ops *ops __used,
307 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200308 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300309 struct perf_evsel *evsel __used,
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200310 struct perf_session *session)
Li Zefanba77c9e2009-11-20 15:53:25 +0800311{
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200312 struct thread *thread = perf_session__findnew(session, event->ip.pid);
Li Zefanba77c9e2009-11-20 15:53:25 +0800313
Li Zefanba77c9e2009-11-20 15:53:25 +0800314 if (thread == NULL) {
315 pr_debug("problem processing %d event, skipping it.\n",
316 event->header.type);
317 return -1;
318 }
319
320 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
321
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200322 process_raw_event(event, sample->raw_data, sample->cpu,
323 sample->time, thread);
Li Zefanba77c9e2009-11-20 15:53:25 +0800324
325 return 0;
326}
327
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -0200328static struct perf_event_ops event_ops = {
Frederic Weisbecker587570d2010-04-24 00:34:53 +0200329 .sample = process_sample_event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200330 .comm = perf_event__process_comm,
Frederic Weisbecker587570d2010-04-24 00:34:53 +0200331 .ordered_samples = true,
Li Zefanba77c9e2009-11-20 15:53:25 +0800332};
333
Li Zefanba77c9e2009-11-20 15:53:25 +0800334static double fragmentation(unsigned long n_req, unsigned long n_alloc)
335{
336 if (n_alloc == 0)
337 return 0.0;
338 else
339 return 100.0 - (100.0 * n_req / n_alloc);
340}
341
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200342static void __print_result(struct rb_root *root, struct perf_session *session,
343 int n_lines, int is_caller)
Li Zefanba77c9e2009-11-20 15:53:25 +0800344{
345 struct rb_node *next;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300346 struct machine *machine;
Li Zefanba77c9e2009-11-20 15:53:25 +0800347
Li Zefan079d3f62009-11-24 13:26:55 +0800348 printf("%.102s\n", graph_dotted_line);
349 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr");
Pekka Enberg47103272010-01-19 19:23:23 +0200350 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
Li Zefan079d3f62009-11-24 13:26:55 +0800351 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800352
353 next = rb_first(root);
354
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300355 machine = perf_session__find_host_machine(session);
356 if (!machine) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800357 pr_err("__print_result: couldn't find kernel information\n");
358 return;
359 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800360 while (next && n_lines--) {
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200361 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
362 node);
363 struct symbol *sym = NULL;
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300364 struct map *map;
Li Zefan079d3f62009-11-24 13:26:55 +0800365 char buf[BUFSIZ];
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200366 u64 addr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800367
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200368 if (is_caller) {
369 addr = data->call_site;
Li Zefan7707b6b2009-11-24 13:25:48 +0800370 if (!raw_ip)
Arnaldo Carvalho de Melo5c0541d2010-04-29 15:25:23 -0300371 sym = machine__find_kernel_function(machine, addr, &map, NULL);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200372 } else
373 addr = data->ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800374
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200375 if (sym != NULL)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200376 snprintf(buf, sizeof(buf), "%s+%" PRIx64 "", sym->name,
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300377 addr - map->unmap_ip(map, sym->start));
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200378 else
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200379 snprintf(buf, sizeof(buf), "%#" PRIx64 "", addr);
Li Zefan079d3f62009-11-24 13:26:55 +0800380 printf(" %-34s |", buf);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200381
Pekka Enberg47103272010-01-19 19:23:23 +0200382 printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n",
Li Zefan079d3f62009-11-24 13:26:55 +0800383 (unsigned long long)data->bytes_alloc,
Li Zefanba77c9e2009-11-20 15:53:25 +0800384 (unsigned long)data->bytes_alloc / data->hit,
385 (unsigned long long)data->bytes_req,
386 (unsigned long)data->bytes_req / data->hit,
387 (unsigned long)data->hit,
Li Zefan079d3f62009-11-24 13:26:55 +0800388 (unsigned long)data->pingpong,
Li Zefanba77c9e2009-11-20 15:53:25 +0800389 fragmentation(data->bytes_req, data->bytes_alloc));
390
391 next = rb_next(next);
392 }
393
394 if (n_lines == -1)
Li Zefan079d3f62009-11-24 13:26:55 +0800395 printf(" ... | ... | ... | ... | ... | ... \n");
Li Zefanba77c9e2009-11-20 15:53:25 +0800396
Li Zefan079d3f62009-11-24 13:26:55 +0800397 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800398}
399
400static void print_summary(void)
401{
402 printf("\nSUMMARY\n=======\n");
403 printf("Total bytes requested: %lu\n", total_requested);
404 printf("Total bytes allocated: %lu\n", total_allocated);
405 printf("Total bytes wasted on internal fragmentation: %lu\n",
406 total_allocated - total_requested);
407 printf("Internal fragmentation: %f%%\n",
408 fragmentation(total_requested, total_allocated));
Li Zefan7d0d3942009-11-24 13:26:31 +0800409 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs, nr_allocs);
Li Zefanba77c9e2009-11-20 15:53:25 +0800410}
411
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200412static void print_result(struct perf_session *session)
Li Zefanba77c9e2009-11-20 15:53:25 +0800413{
414 if (caller_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200415 __print_result(&root_caller_sorted, session, caller_lines, 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800416 if (alloc_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200417 __print_result(&root_alloc_sorted, session, alloc_lines, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800418 print_summary();
419}
420
Li Zefan29b3e152009-11-24 13:26:10 +0800421struct sort_dimension {
422 const char name[20];
423 sort_fn_t cmp;
424 struct list_head list;
425};
426
427static LIST_HEAD(caller_sort);
428static LIST_HEAD(alloc_sort);
429
Li Zefanba77c9e2009-11-20 15:53:25 +0800430static void sort_insert(struct rb_root *root, struct alloc_stat *data,
Li Zefan29b3e152009-11-24 13:26:10 +0800431 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800432{
433 struct rb_node **new = &(root->rb_node);
434 struct rb_node *parent = NULL;
Li Zefan29b3e152009-11-24 13:26:10 +0800435 struct sort_dimension *sort;
Li Zefanba77c9e2009-11-20 15:53:25 +0800436
437 while (*new) {
438 struct alloc_stat *this;
Li Zefan29b3e152009-11-24 13:26:10 +0800439 int cmp = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800440
441 this = rb_entry(*new, struct alloc_stat, node);
442 parent = *new;
443
Li Zefan29b3e152009-11-24 13:26:10 +0800444 list_for_each_entry(sort, sort_list, list) {
445 cmp = sort->cmp(data, this);
446 if (cmp)
447 break;
448 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800449
450 if (cmp > 0)
451 new = &((*new)->rb_left);
452 else
453 new = &((*new)->rb_right);
454 }
455
456 rb_link_node(&data->node, parent, new);
457 rb_insert_color(&data->node, root);
458}
459
460static void __sort_result(struct rb_root *root, struct rb_root *root_sorted,
Li Zefan29b3e152009-11-24 13:26:10 +0800461 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800462{
463 struct rb_node *node;
464 struct alloc_stat *data;
465
466 for (;;) {
467 node = rb_first(root);
468 if (!node)
469 break;
470
471 rb_erase(node, root);
472 data = rb_entry(node, struct alloc_stat, node);
Li Zefan29b3e152009-11-24 13:26:10 +0800473 sort_insert(root_sorted, data, sort_list);
Li Zefanba77c9e2009-11-20 15:53:25 +0800474 }
475}
476
477static void sort_result(void)
478{
Li Zefan29b3e152009-11-24 13:26:10 +0800479 __sort_result(&root_alloc_stat, &root_alloc_sorted, &alloc_sort);
480 __sort_result(&root_caller_stat, &root_caller_sorted, &caller_sort);
Li Zefanba77c9e2009-11-20 15:53:25 +0800481}
482
483static int __cmd_kmem(void)
484{
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200485 int err = -EINVAL;
Ian Munsie21ef97f2010-12-10 14:09:16 +1100486 struct perf_session *session = perf_session__new(input_name, O_RDONLY,
487 0, false, &event_ops);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200488 if (session == NULL)
489 return -ENOMEM;
Li Zefanba77c9e2009-11-20 15:53:25 +0800490
Arnaldo Carvalho de Meloe727ca72010-04-01 19:12:13 -0300491 if (perf_session__create_kernel_maps(session) < 0)
492 goto out_delete;
493
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200494 if (!perf_session__has_traces(session, "kmem record"))
495 goto out_delete;
496
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200497 setup_pager();
498 err = perf_session__process_events(session, &event_ops);
499 if (err != 0)
500 goto out_delete;
501 sort_result();
502 print_result(session);
503out_delete:
504 perf_session__delete(session);
505 return err;
Li Zefanba77c9e2009-11-20 15:53:25 +0800506}
507
508static const char * const kmem_usage[] = {
Li Zefan90b86a92009-12-10 15:21:57 +0800509 "perf kmem [<options>] {record|stat}",
Li Zefanba77c9e2009-11-20 15:53:25 +0800510 NULL
511};
512
Li Zefanba77c9e2009-11-20 15:53:25 +0800513static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
514{
515 if (l->ptr < r->ptr)
516 return -1;
517 else if (l->ptr > r->ptr)
518 return 1;
519 return 0;
520}
521
Li Zefan29b3e152009-11-24 13:26:10 +0800522static struct sort_dimension ptr_sort_dimension = {
523 .name = "ptr",
524 .cmp = ptr_cmp,
525};
526
Li Zefanba77c9e2009-11-20 15:53:25 +0800527static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
528{
529 if (l->call_site < r->call_site)
530 return -1;
531 else if (l->call_site > r->call_site)
532 return 1;
533 return 0;
534}
535
Li Zefan29b3e152009-11-24 13:26:10 +0800536static struct sort_dimension callsite_sort_dimension = {
537 .name = "callsite",
538 .cmp = callsite_cmp,
539};
540
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200541static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
542{
543 if (l->hit < r->hit)
544 return -1;
545 else if (l->hit > r->hit)
546 return 1;
547 return 0;
548}
549
Li Zefan29b3e152009-11-24 13:26:10 +0800550static struct sort_dimension hit_sort_dimension = {
551 .name = "hit",
552 .cmp = hit_cmp,
553};
554
Li Zefanba77c9e2009-11-20 15:53:25 +0800555static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
556{
557 if (l->bytes_alloc < r->bytes_alloc)
558 return -1;
559 else if (l->bytes_alloc > r->bytes_alloc)
560 return 1;
561 return 0;
562}
563
Li Zefan29b3e152009-11-24 13:26:10 +0800564static struct sort_dimension bytes_sort_dimension = {
565 .name = "bytes",
566 .cmp = bytes_cmp,
567};
568
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200569static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
570{
571 double x, y;
572
573 x = fragmentation(l->bytes_req, l->bytes_alloc);
574 y = fragmentation(r->bytes_req, r->bytes_alloc);
575
576 if (x < y)
577 return -1;
578 else if (x > y)
579 return 1;
580 return 0;
581}
582
Li Zefan29b3e152009-11-24 13:26:10 +0800583static struct sort_dimension frag_sort_dimension = {
584 .name = "frag",
585 .cmp = frag_cmp,
586};
587
Li Zefan079d3f62009-11-24 13:26:55 +0800588static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)
589{
590 if (l->pingpong < r->pingpong)
591 return -1;
592 else if (l->pingpong > r->pingpong)
593 return 1;
594 return 0;
595}
596
597static struct sort_dimension pingpong_sort_dimension = {
598 .name = "pingpong",
599 .cmp = pingpong_cmp,
600};
601
Li Zefan29b3e152009-11-24 13:26:10 +0800602static struct sort_dimension *avail_sorts[] = {
603 &ptr_sort_dimension,
604 &callsite_sort_dimension,
605 &hit_sort_dimension,
606 &bytes_sort_dimension,
607 &frag_sort_dimension,
Li Zefan079d3f62009-11-24 13:26:55 +0800608 &pingpong_sort_dimension,
Li Zefan29b3e152009-11-24 13:26:10 +0800609};
610
611#define NUM_AVAIL_SORTS \
612 (int)(sizeof(avail_sorts) / sizeof(struct sort_dimension *))
613
614static int sort_dimension__add(const char *tok, struct list_head *list)
615{
616 struct sort_dimension *sort;
617 int i;
618
619 for (i = 0; i < NUM_AVAIL_SORTS; i++) {
620 if (!strcmp(avail_sorts[i]->name, tok)) {
621 sort = malloc(sizeof(*sort));
622 if (!sort)
623 die("malloc");
624 memcpy(sort, avail_sorts[i], sizeof(*sort));
625 list_add_tail(&sort->list, list);
626 return 0;
627 }
628 }
629
630 return -1;
631}
632
633static int setup_sorting(struct list_head *sort_list, const char *arg)
634{
635 char *tok;
636 char *str = strdup(arg);
637
638 if (!str)
639 die("strdup");
640
641 while (true) {
642 tok = strsep(&str, ",");
643 if (!tok)
644 break;
645 if (sort_dimension__add(tok, sort_list) < 0) {
646 error("Unknown --sort key: '%s'", tok);
647 return -1;
648 }
649 }
650
651 free(str);
652 return 0;
653}
654
Li Zefanba77c9e2009-11-20 15:53:25 +0800655static int parse_sort_opt(const struct option *opt __used,
656 const char *arg, int unset __used)
657{
Li Zefanba77c9e2009-11-20 15:53:25 +0800658 if (!arg)
659 return -1;
660
Li Zefanba77c9e2009-11-20 15:53:25 +0800661 if (caller_flag > alloc_flag)
Li Zefan29b3e152009-11-24 13:26:10 +0800662 return setup_sorting(&caller_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800663 else
Li Zefan29b3e152009-11-24 13:26:10 +0800664 return setup_sorting(&alloc_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800665
666 return 0;
667}
668
Li Zefan90b86a92009-12-10 15:21:57 +0800669static int parse_caller_opt(const struct option *opt __used,
Ingo Molnar79312412009-12-10 08:43:34 +0100670 const char *arg __used, int unset __used)
Li Zefanba77c9e2009-11-20 15:53:25 +0800671{
Li Zefan90b86a92009-12-10 15:21:57 +0800672 caller_flag = (alloc_flag + 1);
673 return 0;
674}
Li Zefanba77c9e2009-11-20 15:53:25 +0800675
Li Zefan90b86a92009-12-10 15:21:57 +0800676static int parse_alloc_opt(const struct option *opt __used,
Ingo Molnar79312412009-12-10 08:43:34 +0100677 const char *arg __used, int unset __used)
Li Zefan90b86a92009-12-10 15:21:57 +0800678{
679 alloc_flag = (caller_flag + 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800680 return 0;
681}
682
683static int parse_line_opt(const struct option *opt __used,
684 const char *arg, int unset __used)
685{
686 int lines;
687
688 if (!arg)
689 return -1;
690
691 lines = strtoul(arg, NULL, 10);
692
693 if (caller_flag > alloc_flag)
694 caller_lines = lines;
695 else
696 alloc_lines = lines;
697
698 return 0;
699}
700
701static const struct option kmem_options[] = {
702 OPT_STRING('i', "input", &input_name, "file",
703 "input file name"),
Li Zefan90b86a92009-12-10 15:21:57 +0800704 OPT_CALLBACK_NOOPT(0, "caller", NULL, NULL,
705 "show per-callsite statistics",
706 parse_caller_opt),
707 OPT_CALLBACK_NOOPT(0, "alloc", NULL, NULL,
708 "show per-allocation statistics",
709 parse_alloc_opt),
Li Zefan29b3e152009-11-24 13:26:10 +0800710 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
Li Zefan079d3f62009-11-24 13:26:55 +0800711 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
Li Zefanba77c9e2009-11-20 15:53:25 +0800712 parse_sort_opt),
713 OPT_CALLBACK('l', "line", NULL, "num",
Li Zefan90b86a92009-12-10 15:21:57 +0800714 "show n lines",
Li Zefanba77c9e2009-11-20 15:53:25 +0800715 parse_line_opt),
Li Zefan7707b6b2009-11-24 13:25:48 +0800716 OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
Li Zefanba77c9e2009-11-20 15:53:25 +0800717 OPT_END()
718};
719
720static const char *record_args[] = {
721 "record",
722 "-a",
723 "-R",
Li Zefanba77c9e2009-11-20 15:53:25 +0800724 "-f",
725 "-c", "1",
726 "-e", "kmem:kmalloc",
727 "-e", "kmem:kmalloc_node",
728 "-e", "kmem:kfree",
729 "-e", "kmem:kmem_cache_alloc",
730 "-e", "kmem:kmem_cache_alloc_node",
731 "-e", "kmem:kmem_cache_free",
732};
733
734static int __cmd_record(int argc, const char **argv)
735{
736 unsigned int rec_argc, i, j;
737 const char **rec_argv;
738
739 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
740 rec_argv = calloc(rec_argc + 1, sizeof(char *));
741
Chris Samuelce47dc52010-11-13 13:35:06 +1100742 if (rec_argv == NULL)
743 return -ENOMEM;
744
Li Zefanba77c9e2009-11-20 15:53:25 +0800745 for (i = 0; i < ARRAY_SIZE(record_args); i++)
746 rec_argv[i] = strdup(record_args[i]);
747
748 for (j = 1; j < (unsigned int)argc; j++, i++)
749 rec_argv[i] = argv[j];
750
751 return cmd_record(i, rec_argv, NULL);
752}
753
754int cmd_kmem(int argc, const char **argv, const char *prefix __used)
755{
Li Zefanba77c9e2009-11-20 15:53:25 +0800756 argc = parse_options(argc, argv, kmem_options, kmem_usage, 0);
757
Li Zefan90b86a92009-12-10 15:21:57 +0800758 if (!argc)
Li Zefanba77c9e2009-11-20 15:53:25 +0800759 usage_with_options(kmem_usage, kmem_options);
760
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200761 symbol__init();
762
Li Zefan90b86a92009-12-10 15:21:57 +0800763 if (!strncmp(argv[0], "rec", 3)) {
764 return __cmd_record(argc, argv);
765 } else if (!strcmp(argv[0], "stat")) {
766 setup_cpunode_map();
Li Zefanba77c9e2009-11-20 15:53:25 +0800767
Li Zefan90b86a92009-12-10 15:21:57 +0800768 if (list_empty(&caller_sort))
769 setup_sorting(&caller_sort, default_sort_order);
770 if (list_empty(&alloc_sort))
771 setup_sorting(&alloc_sort, default_sort_order);
Li Zefan7d0d3942009-11-24 13:26:31 +0800772
Li Zefan90b86a92009-12-10 15:21:57 +0800773 return __cmd_kmem();
Pekka Enbergb00eca82010-01-19 19:26:11 +0200774 } else
775 usage_with_options(kmem_usage, kmem_options);
Li Zefan90b86a92009-12-10 15:21:57 +0800776
777 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800778}
779