blob: 9b5f077fee5b1b65a4e51b48ef1af0727b8c134b [file] [log] [blame]
Li Zefanba77c9e2009-11-20 15:53:25 +08001#include "builtin.h"
2#include "perf.h"
3
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -03004#include "util/evlist.h"
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03005#include "util/evsel.h"
Li Zefanba77c9e2009-11-20 15:53:25 +08006#include "util/util.h"
7#include "util/cache.h"
8#include "util/symbol.h"
9#include "util/thread.h"
10#include "util/header.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020011#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020012#include "util/tool.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080013
14#include "util/parse-options.h"
15#include "util/trace-event.h"
16
17#include "util/debug.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080018
19#include <linux/rbtree.h>
Arnaldo Carvalho de Melo8d9233f2013-01-24 22:24:57 -030020#include <linux/string.h>
Li Zefanba77c9e2009-11-20 15:53:25 +080021
22struct alloc_stat;
23typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *);
24
Li Zefanba77c9e2009-11-20 15:53:25 +080025static int alloc_flag;
26static int caller_flag;
27
Li Zefanba77c9e2009-11-20 15:53:25 +080028static int alloc_lines = -1;
29static int caller_lines = -1;
30
Li Zefan7707b6b2009-11-24 13:25:48 +080031static bool raw_ip;
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
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030059static int init_cpunode_map(void)
Li Zefan7d0d3942009-11-24 13:26:31 +080060{
61 FILE *fp;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030062 int i, err = -1;
Li Zefan7d0d3942009-11-24 13:26:31 +080063
64 fp = fopen("/sys/devices/system/cpu/kernel_max", "r");
65 if (!fp) {
66 max_cpu_num = 4096;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030067 return 0;
Li Zefan7d0d3942009-11-24 13:26:31 +080068 }
69
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030070 if (fscanf(fp, "%d", &max_cpu_num) < 1) {
71 pr_err("Failed to read 'kernel_max' from sysfs");
72 goto out_close;
73 }
74
Li Zefan7d0d3942009-11-24 13:26:31 +080075 max_cpu_num++;
76
77 cpunode_map = calloc(max_cpu_num, sizeof(int));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030078 if (!cpunode_map) {
79 pr_err("%s: calloc failed\n", __func__);
80 goto out_close;
81 }
82
Li Zefan7d0d3942009-11-24 13:26:31 +080083 for (i = 0; i < max_cpu_num; i++)
84 cpunode_map[i] = -1;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030085
86 err = 0;
87out_close:
Li Zefan7d0d3942009-11-24 13:26:31 +080088 fclose(fp);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030089 return err;
Li Zefan7d0d3942009-11-24 13:26:31 +080090}
91
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030092static int setup_cpunode_map(void)
Li Zefan7d0d3942009-11-24 13:26:31 +080093{
94 struct dirent *dent1, *dent2;
95 DIR *dir1, *dir2;
96 unsigned int cpu, mem;
97 char buf[PATH_MAX];
98
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030099 if (init_cpunode_map())
100 return -1;
Li Zefan7d0d3942009-11-24 13:26:31 +0800101
102 dir1 = opendir(PATH_SYS_NODE);
103 if (!dir1)
Jiri Olsa4921e322013-09-12 18:39:36 +0200104 return 0;
Li Zefan7d0d3942009-11-24 13:26:31 +0800105
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500106 while ((dent1 = readdir(dir1)) != NULL) {
107 if (dent1->d_type != DT_DIR ||
108 sscanf(dent1->d_name, "node%u", &mem) < 1)
Li Zefan7d0d3942009-11-24 13:26:31 +0800109 continue;
110
111 snprintf(buf, PATH_MAX, "%s/%s", PATH_SYS_NODE, dent1->d_name);
112 dir2 = opendir(buf);
113 if (!dir2)
114 continue;
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500115 while ((dent2 = readdir(dir2)) != NULL) {
116 if (dent2->d_type != DT_LNK ||
117 sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
Li Zefan7d0d3942009-11-24 13:26:31 +0800118 continue;
119 cpunode_map[cpu] = mem;
120 }
Namhyung Kim8442da12012-01-08 02:25:28 +0900121 closedir(dir2);
Li Zefan7d0d3942009-11-24 13:26:31 +0800122 }
Namhyung Kim8442da12012-01-08 02:25:28 +0900123 closedir(dir1);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300124 return 0;
Li Zefan7d0d3942009-11-24 13:26:31 +0800125}
126
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300127static int insert_alloc_stat(unsigned long call_site, unsigned long ptr,
128 int bytes_req, int bytes_alloc, int cpu)
Li Zefanba77c9e2009-11-20 15:53:25 +0800129{
130 struct rb_node **node = &root_alloc_stat.rb_node;
131 struct rb_node *parent = NULL;
132 struct alloc_stat *data = NULL;
133
Li Zefanba77c9e2009-11-20 15:53:25 +0800134 while (*node) {
135 parent = *node;
136 data = rb_entry(*node, struct alloc_stat, node);
137
138 if (ptr > data->ptr)
139 node = &(*node)->rb_right;
140 else if (ptr < data->ptr)
141 node = &(*node)->rb_left;
142 else
143 break;
144 }
145
146 if (data && data->ptr == ptr) {
147 data->hit++;
148 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +0800149 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +0800150 } else {
151 data = malloc(sizeof(*data));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300152 if (!data) {
153 pr_err("%s: malloc failed\n", __func__);
154 return -1;
155 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800156 data->ptr = ptr;
Li Zefan079d3f62009-11-24 13:26:55 +0800157 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800158 data->hit = 1;
159 data->bytes_req = bytes_req;
160 data->bytes_alloc = bytes_alloc;
161
162 rb_link_node(&data->node, parent, node);
163 rb_insert_color(&data->node, &root_alloc_stat);
164 }
Li Zefan079d3f62009-11-24 13:26:55 +0800165 data->call_site = call_site;
166 data->alloc_cpu = cpu;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300167 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800168}
169
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300170static int insert_caller_stat(unsigned long call_site,
Li Zefanba77c9e2009-11-20 15:53:25 +0800171 int bytes_req, int bytes_alloc)
172{
173 struct rb_node **node = &root_caller_stat.rb_node;
174 struct rb_node *parent = NULL;
175 struct alloc_stat *data = NULL;
176
Li Zefanba77c9e2009-11-20 15:53:25 +0800177 while (*node) {
178 parent = *node;
179 data = rb_entry(*node, struct alloc_stat, node);
180
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;
185 else
186 break;
187 }
188
189 if (data && data->call_site == call_site) {
190 data->hit++;
191 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +0800192 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +0800193 } else {
194 data = malloc(sizeof(*data));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300195 if (!data) {
196 pr_err("%s: malloc failed\n", __func__);
197 return -1;
198 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800199 data->call_site = call_site;
Li Zefan079d3f62009-11-24 13:26:55 +0800200 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800201 data->hit = 1;
202 data->bytes_req = bytes_req;
203 data->bytes_alloc = bytes_alloc;
204
205 rb_link_node(&data->node, parent, node);
206 rb_insert_color(&data->node, &root_caller_stat);
207 }
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300208
209 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800210}
211
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300212static int perf_evsel__process_alloc_event(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300213 struct perf_sample *sample)
Li Zefanba77c9e2009-11-20 15:53:25 +0800214{
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300215 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");
Li Zefanba77c9e2009-11-20 15:53:25 +0800219
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300220 if (insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, sample->cpu) ||
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300221 insert_caller_stat(call_site, bytes_req, bytes_alloc))
222 return -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800223
224 total_requested += bytes_req;
225 total_allocated += bytes_alloc;
Li Zefan7d0d3942009-11-24 13:26:31 +0800226
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300227 nr_allocs++;
228 return 0;
229}
230
231static int perf_evsel__process_alloc_node_event(struct perf_evsel *evsel,
232 struct perf_sample *sample)
233{
234 int ret = perf_evsel__process_alloc_event(evsel, sample);
235
236 if (!ret) {
237 int node1 = cpunode_map[sample->cpu],
238 node2 = perf_evsel__intval(evsel, sample, "node");
239
Li Zefan7d0d3942009-11-24 13:26:31 +0800240 if (node1 != node2)
241 nr_cross_allocs++;
242 }
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300243
244 return ret;
Li Zefanba77c9e2009-11-20 15:53:25 +0800245}
246
Li Zefan079d3f62009-11-24 13:26:55 +0800247static int ptr_cmp(struct alloc_stat *, struct alloc_stat *);
248static int callsite_cmp(struct alloc_stat *, struct alloc_stat *);
249
250static struct alloc_stat *search_alloc_stat(unsigned long ptr,
251 unsigned long call_site,
252 struct rb_root *root,
253 sort_fn_t sort_fn)
254{
255 struct rb_node *node = root->rb_node;
256 struct alloc_stat key = { .ptr = ptr, .call_site = call_site };
257
258 while (node) {
259 struct alloc_stat *data;
260 int cmp;
261
262 data = rb_entry(node, struct alloc_stat, node);
263
264 cmp = sort_fn(&key, data);
265 if (cmp < 0)
266 node = node->rb_left;
267 else if (cmp > 0)
268 node = node->rb_right;
269 else
270 return data;
271 }
272 return NULL;
273}
274
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300275static int perf_evsel__process_free_event(struct perf_evsel *evsel,
276 struct perf_sample *sample)
Li Zefanba77c9e2009-11-20 15:53:25 +0800277{
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300278 unsigned long ptr = perf_evsel__intval(evsel, sample, "ptr");
Li Zefan079d3f62009-11-24 13:26:55 +0800279 struct alloc_stat *s_alloc, *s_caller;
280
Li Zefan079d3f62009-11-24 13:26:55 +0800281 s_alloc = search_alloc_stat(ptr, 0, &root_alloc_stat, ptr_cmp);
282 if (!s_alloc)
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300283 return 0;
Li Zefan079d3f62009-11-24 13:26:55 +0800284
Arnaldo Carvalho de Melo22ad7982012-08-07 10:56:43 -0300285 if ((short)sample->cpu != s_alloc->alloc_cpu) {
Li Zefan079d3f62009-11-24 13:26:55 +0800286 s_alloc->pingpong++;
287
288 s_caller = search_alloc_stat(0, s_alloc->call_site,
289 &root_caller_stat, callsite_cmp);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300290 if (!s_caller)
291 return -1;
Li Zefan079d3f62009-11-24 13:26:55 +0800292 s_caller->pingpong++;
293 }
294 s_alloc->alloc_cpu = -1;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300295
296 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800297}
298
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300299typedef int (*tracepoint_handler)(struct perf_evsel *evsel,
300 struct perf_sample *sample);
Li Zefanba77c9e2009-11-20 15:53:25 +0800301
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300302static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200303 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200304 struct perf_sample *sample,
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300305 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200306 struct machine *machine)
Li Zefanba77c9e2009-11-20 15:53:25 +0800307{
Adrian Hunteref893252013-08-27 11:23:06 +0300308 struct thread *thread = machine__findnew_thread(machine, sample->pid,
309 sample->pid);
Li Zefanba77c9e2009-11-20 15:53:25 +0800310
Li Zefanba77c9e2009-11-20 15:53:25 +0800311 if (thread == NULL) {
312 pr_debug("problem processing %d event, skipping it.\n",
313 event->header.type);
314 return -1;
315 }
316
Adrian Hunter38051232013-07-04 16:20:31 +0300317 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->tid);
Li Zefanba77c9e2009-11-20 15:53:25 +0800318
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300319 if (evsel->handler.func != NULL) {
320 tracepoint_handler f = evsel->handler.func;
321 return f(evsel, sample);
322 }
323
324 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800325}
326
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300327static struct perf_tool perf_kmem = {
328 .sample = process_sample_event,
329 .comm = perf_event__process_comm,
330 .ordered_samples = true,
Li Zefanba77c9e2009-11-20 15:53:25 +0800331};
332
Li Zefanba77c9e2009-11-20 15:53:25 +0800333static double fragmentation(unsigned long n_req, unsigned long n_alloc)
334{
335 if (n_alloc == 0)
336 return 0.0;
337 else
338 return 100.0 - (100.0 * n_req / n_alloc);
339}
340
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200341static void __print_result(struct rb_root *root, struct perf_session *session,
342 int n_lines, int is_caller)
Li Zefanba77c9e2009-11-20 15:53:25 +0800343{
344 struct rb_node *next;
Arnaldo Carvalho de Melo34ba5122012-12-19 09:04:24 -0300345 struct machine *machine = &session->machines.host;
Li Zefanba77c9e2009-11-20 15:53:25 +0800346
Li Zefan079d3f62009-11-24 13:26:55 +0800347 printf("%.102s\n", graph_dotted_line);
348 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr");
Pekka Enberg47103272010-01-19 19:23:23 +0200349 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
Li Zefan079d3f62009-11-24 13:26:55 +0800350 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800351
352 next = rb_first(root);
353
354 while (next && n_lines--) {
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200355 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
356 node);
357 struct symbol *sym = NULL;
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300358 struct map *map;
Li Zefan079d3f62009-11-24 13:26:55 +0800359 char buf[BUFSIZ];
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200360 u64 addr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800361
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200362 if (is_caller) {
363 addr = data->call_site;
Li Zefan7707b6b2009-11-24 13:25:48 +0800364 if (!raw_ip)
Arnaldo Carvalho de Melo5c0541d2010-04-29 15:25:23 -0300365 sym = machine__find_kernel_function(machine, addr, &map, NULL);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200366 } else
367 addr = data->ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800368
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200369 if (sym != NULL)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200370 snprintf(buf, sizeof(buf), "%s+%" PRIx64 "", sym->name,
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300371 addr - map->unmap_ip(map, sym->start));
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200372 else
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200373 snprintf(buf, sizeof(buf), "%#" PRIx64 "", addr);
Li Zefan079d3f62009-11-24 13:26:55 +0800374 printf(" %-34s |", buf);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200375
Pekka Enberg47103272010-01-19 19:23:23 +0200376 printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n",
Li Zefan079d3f62009-11-24 13:26:55 +0800377 (unsigned long long)data->bytes_alloc,
Li Zefanba77c9e2009-11-20 15:53:25 +0800378 (unsigned long)data->bytes_alloc / data->hit,
379 (unsigned long long)data->bytes_req,
380 (unsigned long)data->bytes_req / data->hit,
381 (unsigned long)data->hit,
Li Zefan079d3f62009-11-24 13:26:55 +0800382 (unsigned long)data->pingpong,
Li Zefanba77c9e2009-11-20 15:53:25 +0800383 fragmentation(data->bytes_req, data->bytes_alloc));
384
385 next = rb_next(next);
386 }
387
388 if (n_lines == -1)
Li Zefan079d3f62009-11-24 13:26:55 +0800389 printf(" ... | ... | ... | ... | ... | ... \n");
Li Zefanba77c9e2009-11-20 15:53:25 +0800390
Li Zefan079d3f62009-11-24 13:26:55 +0800391 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800392}
393
394static void print_summary(void)
395{
396 printf("\nSUMMARY\n=======\n");
397 printf("Total bytes requested: %lu\n", total_requested);
398 printf("Total bytes allocated: %lu\n", total_allocated);
399 printf("Total bytes wasted on internal fragmentation: %lu\n",
400 total_allocated - total_requested);
401 printf("Internal fragmentation: %f%%\n",
402 fragmentation(total_requested, total_allocated));
Li Zefan7d0d3942009-11-24 13:26:31 +0800403 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs, nr_allocs);
Li Zefanba77c9e2009-11-20 15:53:25 +0800404}
405
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200406static void print_result(struct perf_session *session)
Li Zefanba77c9e2009-11-20 15:53:25 +0800407{
408 if (caller_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200409 __print_result(&root_caller_sorted, session, caller_lines, 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800410 if (alloc_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200411 __print_result(&root_alloc_sorted, session, alloc_lines, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800412 print_summary();
413}
414
Li Zefan29b3e152009-11-24 13:26:10 +0800415struct sort_dimension {
416 const char name[20];
417 sort_fn_t cmp;
418 struct list_head list;
419};
420
421static LIST_HEAD(caller_sort);
422static LIST_HEAD(alloc_sort);
423
Li Zefanba77c9e2009-11-20 15:53:25 +0800424static void sort_insert(struct rb_root *root, struct alloc_stat *data,
Li Zefan29b3e152009-11-24 13:26:10 +0800425 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800426{
427 struct rb_node **new = &(root->rb_node);
428 struct rb_node *parent = NULL;
Li Zefan29b3e152009-11-24 13:26:10 +0800429 struct sort_dimension *sort;
Li Zefanba77c9e2009-11-20 15:53:25 +0800430
431 while (*new) {
432 struct alloc_stat *this;
Li Zefan29b3e152009-11-24 13:26:10 +0800433 int cmp = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800434
435 this = rb_entry(*new, struct alloc_stat, node);
436 parent = *new;
437
Li Zefan29b3e152009-11-24 13:26:10 +0800438 list_for_each_entry(sort, sort_list, list) {
439 cmp = sort->cmp(data, this);
440 if (cmp)
441 break;
442 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800443
444 if (cmp > 0)
445 new = &((*new)->rb_left);
446 else
447 new = &((*new)->rb_right);
448 }
449
450 rb_link_node(&data->node, parent, new);
451 rb_insert_color(&data->node, root);
452}
453
454static void __sort_result(struct rb_root *root, struct rb_root *root_sorted,
Li Zefan29b3e152009-11-24 13:26:10 +0800455 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800456{
457 struct rb_node *node;
458 struct alloc_stat *data;
459
460 for (;;) {
461 node = rb_first(root);
462 if (!node)
463 break;
464
465 rb_erase(node, root);
466 data = rb_entry(node, struct alloc_stat, node);
Li Zefan29b3e152009-11-24 13:26:10 +0800467 sort_insert(root_sorted, data, sort_list);
Li Zefanba77c9e2009-11-20 15:53:25 +0800468 }
469}
470
471static void sort_result(void)
472{
Li Zefan29b3e152009-11-24 13:26:10 +0800473 __sort_result(&root_alloc_stat, &root_alloc_sorted, &alloc_sort);
474 __sort_result(&root_caller_stat, &root_caller_sorted, &caller_sort);
Li Zefanba77c9e2009-11-20 15:53:25 +0800475}
476
Feng Tang70cb4e92012-10-30 11:56:02 +0800477static int __cmd_kmem(void)
Li Zefanba77c9e2009-11-20 15:53:25 +0800478{
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200479 int err = -EINVAL;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300480 struct perf_session *session;
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300481 const struct perf_evsel_str_handler kmem_tracepoints[] = {
482 { "kmem:kmalloc", perf_evsel__process_alloc_event, },
483 { "kmem:kmem_cache_alloc", perf_evsel__process_alloc_event, },
484 { "kmem:kmalloc_node", perf_evsel__process_alloc_node_event, },
485 { "kmem:kmem_cache_alloc_node", perf_evsel__process_alloc_node_event, },
486 { "kmem:kfree", perf_evsel__process_free_event, },
487 { "kmem:kmem_cache_free", perf_evsel__process_free_event, },
488 };
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300489
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300490 session = perf_session__new(input_name, O_RDONLY, 0, false, &perf_kmem);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200491 if (session == NULL)
492 return -ENOMEM;
Li Zefanba77c9e2009-11-20 15:53:25 +0800493
Arnaldo Carvalho de Meloe727ca72010-04-01 19:12:13 -0300494 if (perf_session__create_kernel_maps(session) < 0)
495 goto out_delete;
496
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200497 if (!perf_session__has_traces(session, "kmem record"))
498 goto out_delete;
499
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300500 if (perf_session__set_tracepoints_handlers(session, kmem_tracepoints)) {
501 pr_err("Initializing perf session tracepoint handlers failed\n");
502 return -1;
503 }
504
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200505 setup_pager();
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300506 err = perf_session__process_events(session, &perf_kmem);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200507 if (err != 0)
508 goto out_delete;
509 sort_result();
510 print_result(session);
511out_delete:
512 perf_session__delete(session);
513 return err;
Li Zefanba77c9e2009-11-20 15:53:25 +0800514}
515
Li Zefanba77c9e2009-11-20 15:53:25 +0800516static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
517{
518 if (l->ptr < r->ptr)
519 return -1;
520 else if (l->ptr > r->ptr)
521 return 1;
522 return 0;
523}
524
Li Zefan29b3e152009-11-24 13:26:10 +0800525static struct sort_dimension ptr_sort_dimension = {
526 .name = "ptr",
527 .cmp = ptr_cmp,
528};
529
Li Zefanba77c9e2009-11-20 15:53:25 +0800530static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
531{
532 if (l->call_site < r->call_site)
533 return -1;
534 else if (l->call_site > r->call_site)
535 return 1;
536 return 0;
537}
538
Li Zefan29b3e152009-11-24 13:26:10 +0800539static struct sort_dimension callsite_sort_dimension = {
540 .name = "callsite",
541 .cmp = callsite_cmp,
542};
543
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200544static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
545{
546 if (l->hit < r->hit)
547 return -1;
548 else if (l->hit > r->hit)
549 return 1;
550 return 0;
551}
552
Li Zefan29b3e152009-11-24 13:26:10 +0800553static struct sort_dimension hit_sort_dimension = {
554 .name = "hit",
555 .cmp = hit_cmp,
556};
557
Li Zefanba77c9e2009-11-20 15:53:25 +0800558static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
559{
560 if (l->bytes_alloc < r->bytes_alloc)
561 return -1;
562 else if (l->bytes_alloc > r->bytes_alloc)
563 return 1;
564 return 0;
565}
566
Li Zefan29b3e152009-11-24 13:26:10 +0800567static struct sort_dimension bytes_sort_dimension = {
568 .name = "bytes",
569 .cmp = bytes_cmp,
570};
571
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200572static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
573{
574 double x, y;
575
576 x = fragmentation(l->bytes_req, l->bytes_alloc);
577 y = fragmentation(r->bytes_req, r->bytes_alloc);
578
579 if (x < y)
580 return -1;
581 else if (x > y)
582 return 1;
583 return 0;
584}
585
Li Zefan29b3e152009-11-24 13:26:10 +0800586static struct sort_dimension frag_sort_dimension = {
587 .name = "frag",
588 .cmp = frag_cmp,
589};
590
Li Zefan079d3f62009-11-24 13:26:55 +0800591static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)
592{
593 if (l->pingpong < r->pingpong)
594 return -1;
595 else if (l->pingpong > r->pingpong)
596 return 1;
597 return 0;
598}
599
600static struct sort_dimension pingpong_sort_dimension = {
601 .name = "pingpong",
602 .cmp = pingpong_cmp,
603};
604
Li Zefan29b3e152009-11-24 13:26:10 +0800605static struct sort_dimension *avail_sorts[] = {
606 &ptr_sort_dimension,
607 &callsite_sort_dimension,
608 &hit_sort_dimension,
609 &bytes_sort_dimension,
610 &frag_sort_dimension,
Li Zefan079d3f62009-11-24 13:26:55 +0800611 &pingpong_sort_dimension,
Li Zefan29b3e152009-11-24 13:26:10 +0800612};
613
Sasha Levin49e4ba52012-12-20 14:11:16 -0500614#define NUM_AVAIL_SORTS ((int)ARRAY_SIZE(avail_sorts))
Li Zefan29b3e152009-11-24 13:26:10 +0800615
616static int sort_dimension__add(const char *tok, struct list_head *list)
617{
618 struct sort_dimension *sort;
619 int i;
620
621 for (i = 0; i < NUM_AVAIL_SORTS; i++) {
622 if (!strcmp(avail_sorts[i]->name, tok)) {
Arnaldo Carvalho de Melo8d9233f2013-01-24 22:24:57 -0300623 sort = memdup(avail_sorts[i], sizeof(*avail_sorts[i]));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300624 if (!sort) {
Arnaldo Carvalho de Melo8d9233f2013-01-24 22:24:57 -0300625 pr_err("%s: memdup failed\n", __func__);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300626 return -1;
627 }
Li Zefan29b3e152009-11-24 13:26:10 +0800628 list_add_tail(&sort->list, list);
629 return 0;
630 }
631 }
632
633 return -1;
634}
635
636static int setup_sorting(struct list_head *sort_list, const char *arg)
637{
638 char *tok;
639 char *str = strdup(arg);
640
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300641 if (!str) {
642 pr_err("%s: strdup failed\n", __func__);
643 return -1;
644 }
Li Zefan29b3e152009-11-24 13:26:10 +0800645
646 while (true) {
647 tok = strsep(&str, ",");
648 if (!tok)
649 break;
650 if (sort_dimension__add(tok, sort_list) < 0) {
651 error("Unknown --sort key: '%s'", tok);
Namhyung Kim1b228592012-01-08 02:25:29 +0900652 free(str);
Li Zefan29b3e152009-11-24 13:26:10 +0800653 return -1;
654 }
655 }
656
657 free(str);
658 return 0;
659}
660
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300661static int parse_sort_opt(const struct option *opt __maybe_unused,
662 const char *arg, int unset __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800663{
Li Zefanba77c9e2009-11-20 15:53:25 +0800664 if (!arg)
665 return -1;
666
Li Zefanba77c9e2009-11-20 15:53:25 +0800667 if (caller_flag > alloc_flag)
Li Zefan29b3e152009-11-24 13:26:10 +0800668 return setup_sorting(&caller_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800669 else
Li Zefan29b3e152009-11-24 13:26:10 +0800670 return setup_sorting(&alloc_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800671
672 return 0;
673}
674
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300675static int parse_caller_opt(const struct option *opt __maybe_unused,
676 const char *arg __maybe_unused,
677 int unset __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800678{
Li Zefan90b86a92009-12-10 15:21:57 +0800679 caller_flag = (alloc_flag + 1);
680 return 0;
681}
Li Zefanba77c9e2009-11-20 15:53:25 +0800682
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300683static int parse_alloc_opt(const struct option *opt __maybe_unused,
684 const char *arg __maybe_unused,
685 int unset __maybe_unused)
Li Zefan90b86a92009-12-10 15:21:57 +0800686{
687 alloc_flag = (caller_flag + 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800688 return 0;
689}
690
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300691static int parse_line_opt(const struct option *opt __maybe_unused,
692 const char *arg, int unset __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800693{
694 int lines;
695
696 if (!arg)
697 return -1;
698
699 lines = strtoul(arg, NULL, 10);
700
701 if (caller_flag > alloc_flag)
702 caller_lines = lines;
703 else
704 alloc_lines = lines;
705
706 return 0;
707}
708
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300709static int __cmd_record(int argc, const char **argv)
710{
711 const char * const record_args[] = {
Jiri Olsa4a4d3712013-06-05 13:37:21 +0200712 "record", "-a", "-R", "-c", "1",
Li Zefanba77c9e2009-11-20 15:53:25 +0800713 "-e", "kmem:kmalloc",
714 "-e", "kmem:kmalloc_node",
715 "-e", "kmem:kfree",
716 "-e", "kmem:kmem_cache_alloc",
717 "-e", "kmem:kmem_cache_alloc_node",
718 "-e", "kmem:kmem_cache_free",
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300719 };
Li Zefanba77c9e2009-11-20 15:53:25 +0800720 unsigned int rec_argc, i, j;
721 const char **rec_argv;
722
723 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
724 rec_argv = calloc(rec_argc + 1, sizeof(char *));
725
Chris Samuelce47dc52010-11-13 13:35:06 +1100726 if (rec_argv == NULL)
727 return -ENOMEM;
728
Li Zefanba77c9e2009-11-20 15:53:25 +0800729 for (i = 0; i < ARRAY_SIZE(record_args); i++)
730 rec_argv[i] = strdup(record_args[i]);
731
732 for (j = 1; j < (unsigned int)argc; j++, i++)
733 rec_argv[i] = argv[j];
734
735 return cmd_record(i, rec_argv, NULL);
736}
737
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300738int cmd_kmem(int argc, const char **argv, const char *prefix __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800739{
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300740 const char * const default_sort_order = "frag,hit,bytes";
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300741 const struct option kmem_options[] = {
742 OPT_STRING('i', "input", &input_name, "file", "input file name"),
743 OPT_CALLBACK_NOOPT(0, "caller", NULL, NULL,
744 "show per-callsite statistics", parse_caller_opt),
745 OPT_CALLBACK_NOOPT(0, "alloc", NULL, NULL,
746 "show per-allocation statistics", parse_alloc_opt),
747 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
748 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
749 parse_sort_opt),
750 OPT_CALLBACK('l', "line", NULL, "num", "show n lines", parse_line_opt),
751 OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
752 OPT_END()
753 };
754 const char * const kmem_usage[] = {
755 "perf kmem [<options>] {record|stat}",
756 NULL
757 };
Li Zefanba77c9e2009-11-20 15:53:25 +0800758 argc = parse_options(argc, argv, kmem_options, kmem_usage, 0);
759
Li Zefan90b86a92009-12-10 15:21:57 +0800760 if (!argc)
Li Zefanba77c9e2009-11-20 15:53:25 +0800761 usage_with_options(kmem_usage, kmem_options);
762
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200763 symbol__init();
764
Li Zefan90b86a92009-12-10 15:21:57 +0800765 if (!strncmp(argv[0], "rec", 3)) {
766 return __cmd_record(argc, argv);
767 } else if (!strcmp(argv[0], "stat")) {
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300768 if (setup_cpunode_map())
769 return -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800770
Li Zefan90b86a92009-12-10 15:21:57 +0800771 if (list_empty(&caller_sort))
772 setup_sorting(&caller_sort, default_sort_order);
773 if (list_empty(&alloc_sort))
774 setup_sorting(&alloc_sort, default_sort_order);
Li Zefan7d0d3942009-11-24 13:26:31 +0800775
Feng Tang70cb4e92012-10-30 11:56:02 +0800776 return __cmd_kmem();
Pekka Enbergb00eca82010-01-19 19:26:11 +0200777 } else
778 usage_with_options(kmem_usage, kmem_options);
Li Zefan90b86a92009-12-10 15:21:57 +0800779
780 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800781}
782