blob: ad9f5209738898b483035e5028175fbe078fbe10 [file] [log] [blame]
Li Zefanba77c9e2009-11-20 15:53:25 +08001#include "builtin.h"
2#include "perf.h"
3
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03004#include "util/evsel.h"
Li Zefanba77c9e2009-11-20 15:53:25 +08005#include "util/util.h"
6#include "util/cache.h"
7#include "util/symbol.h"
8#include "util/thread.h"
9#include "util/header.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020010#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020011#include "util/tool.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080012
13#include "util/parse-options.h"
14#include "util/trace-event.h"
15
16#include "util/debug.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080017
18#include <linux/rbtree.h>
19
20struct alloc_stat;
21typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *);
22
Robert Richterefad1412011-12-07 10:02:54 +010023static const char *input_name;
Li Zefanba77c9e2009-11-20 15:53:25 +080024
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 Zefan29b3e152009-11-24 13:26:10 +080033static char default_sort_order[] = "frag,hit,bytes";
34
Li Zefan7d0d3942009-11-24 13:26:31 +080035static int *cpunode_map;
36static int max_cpu_num;
37
Li Zefanba77c9e2009-11-20 15:53:25 +080038struct alloc_stat {
Li Zefan079d3f62009-11-24 13:26:55 +080039 u64 call_site;
40 u64 ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +080041 u64 bytes_req;
42 u64 bytes_alloc;
43 u32 hit;
Li Zefan079d3f62009-11-24 13:26:55 +080044 u32 pingpong;
45
46 short alloc_cpu;
Li Zefanba77c9e2009-11-20 15:53:25 +080047
48 struct rb_node node;
49};
50
51static struct rb_root root_alloc_stat;
52static struct rb_root root_alloc_sorted;
53static struct rb_root root_caller_stat;
54static struct rb_root root_caller_sorted;
55
56static unsigned long total_requested, total_allocated;
Li Zefan7d0d3942009-11-24 13:26:31 +080057static unsigned long nr_allocs, nr_cross_allocs;
Li Zefanba77c9e2009-11-20 15:53:25 +080058
Li Zefan7d0d3942009-11-24 13:26:31 +080059#define PATH_SYS_NODE "/sys/devices/system/node"
60
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030061static int init_cpunode_map(void)
Li Zefan7d0d3942009-11-24 13:26:31 +080062{
63 FILE *fp;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030064 int i, err = -1;
Li Zefan7d0d3942009-11-24 13:26:31 +080065
66 fp = fopen("/sys/devices/system/cpu/kernel_max", "r");
67 if (!fp) {
68 max_cpu_num = 4096;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030069 return 0;
Li Zefan7d0d3942009-11-24 13:26:31 +080070 }
71
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030072 if (fscanf(fp, "%d", &max_cpu_num) < 1) {
73 pr_err("Failed to read 'kernel_max' from sysfs");
74 goto out_close;
75 }
76
Li Zefan7d0d3942009-11-24 13:26:31 +080077 max_cpu_num++;
78
79 cpunode_map = calloc(max_cpu_num, sizeof(int));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030080 if (!cpunode_map) {
81 pr_err("%s: calloc failed\n", __func__);
82 goto out_close;
83 }
84
Li Zefan7d0d3942009-11-24 13:26:31 +080085 for (i = 0; i < max_cpu_num; i++)
86 cpunode_map[i] = -1;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030087
88 err = 0;
89out_close:
Li Zefan7d0d3942009-11-24 13:26:31 +080090 fclose(fp);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030091 return err;
Li Zefan7d0d3942009-11-24 13:26:31 +080092}
93
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030094static int setup_cpunode_map(void)
Li Zefan7d0d3942009-11-24 13:26:31 +080095{
96 struct dirent *dent1, *dent2;
97 DIR *dir1, *dir2;
98 unsigned int cpu, mem;
99 char buf[PATH_MAX];
100
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300101 if (init_cpunode_map())
102 return -1;
Li Zefan7d0d3942009-11-24 13:26:31 +0800103
104 dir1 = opendir(PATH_SYS_NODE);
105 if (!dir1)
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300106 return -1;
Li Zefan7d0d3942009-11-24 13:26:31 +0800107
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500108 while ((dent1 = readdir(dir1)) != NULL) {
109 if (dent1->d_type != DT_DIR ||
110 sscanf(dent1->d_name, "node%u", &mem) < 1)
Li Zefan7d0d3942009-11-24 13:26:31 +0800111 continue;
112
113 snprintf(buf, PATH_MAX, "%s/%s", PATH_SYS_NODE, dent1->d_name);
114 dir2 = opendir(buf);
115 if (!dir2)
116 continue;
Ulrich Drepper659d8cf2009-12-19 16:40:28 -0500117 while ((dent2 = readdir(dir2)) != NULL) {
118 if (dent2->d_type != DT_LNK ||
119 sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
Li Zefan7d0d3942009-11-24 13:26:31 +0800120 continue;
121 cpunode_map[cpu] = mem;
122 }
Namhyung Kim8442da12012-01-08 02:25:28 +0900123 closedir(dir2);
Li Zefan7d0d3942009-11-24 13:26:31 +0800124 }
Namhyung Kim8442da12012-01-08 02:25:28 +0900125 closedir(dir1);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300126 return 0;
Li Zefan7d0d3942009-11-24 13:26:31 +0800127}
128
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300129static int insert_alloc_stat(unsigned long call_site, unsigned long ptr,
130 int bytes_req, int bytes_alloc, int cpu)
Li Zefanba77c9e2009-11-20 15:53:25 +0800131{
132 struct rb_node **node = &root_alloc_stat.rb_node;
133 struct rb_node *parent = NULL;
134 struct alloc_stat *data = NULL;
135
Li Zefanba77c9e2009-11-20 15:53:25 +0800136 while (*node) {
137 parent = *node;
138 data = rb_entry(*node, struct alloc_stat, node);
139
140 if (ptr > data->ptr)
141 node = &(*node)->rb_right;
142 else if (ptr < data->ptr)
143 node = &(*node)->rb_left;
144 else
145 break;
146 }
147
148 if (data && data->ptr == ptr) {
149 data->hit++;
150 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +0800151 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +0800152 } else {
153 data = malloc(sizeof(*data));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300154 if (!data) {
155 pr_err("%s: malloc failed\n", __func__);
156 return -1;
157 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800158 data->ptr = ptr;
Li Zefan079d3f62009-11-24 13:26:55 +0800159 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800160 data->hit = 1;
161 data->bytes_req = bytes_req;
162 data->bytes_alloc = bytes_alloc;
163
164 rb_link_node(&data->node, parent, node);
165 rb_insert_color(&data->node, &root_alloc_stat);
166 }
Li Zefan079d3f62009-11-24 13:26:55 +0800167 data->call_site = call_site;
168 data->alloc_cpu = cpu;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300169 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800170}
171
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300172static int insert_caller_stat(unsigned long call_site,
Li Zefanba77c9e2009-11-20 15:53:25 +0800173 int bytes_req, int bytes_alloc)
174{
175 struct rb_node **node = &root_caller_stat.rb_node;
176 struct rb_node *parent = NULL;
177 struct alloc_stat *data = NULL;
178
Li Zefanba77c9e2009-11-20 15:53:25 +0800179 while (*node) {
180 parent = *node;
181 data = rb_entry(*node, struct alloc_stat, node);
182
183 if (call_site > data->call_site)
184 node = &(*node)->rb_right;
185 else if (call_site < data->call_site)
186 node = &(*node)->rb_left;
187 else
188 break;
189 }
190
191 if (data && data->call_site == call_site) {
192 data->hit++;
193 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +0800194 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +0800195 } else {
196 data = malloc(sizeof(*data));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300197 if (!data) {
198 pr_err("%s: malloc failed\n", __func__);
199 return -1;
200 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800201 data->call_site = call_site;
Li Zefan079d3f62009-11-24 13:26:55 +0800202 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800203 data->hit = 1;
204 data->bytes_req = bytes_req;
205 data->bytes_alloc = bytes_alloc;
206
207 rb_link_node(&data->node, parent, node);
208 rb_insert_color(&data->node, &root_caller_stat);
209 }
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300210
211 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800212}
213
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300214static int perf_evsel__process_alloc_event(struct perf_evsel *evsel,
215 struct perf_sample *sample, int node)
Li Zefanba77c9e2009-11-20 15:53:25 +0800216{
Arnaldo Carvalho de Melo22ad7982012-08-07 10:56:43 -0300217 struct event_format *event = evsel->tp_format;
218 void *data = sample->raw_data;
Li Zefanba77c9e2009-11-20 15:53:25 +0800219 unsigned long call_site;
220 unsigned long ptr;
Arnaldo Carvalho de Melo22ad7982012-08-07 10:56:43 -0300221 int bytes_req, cpu = sample->cpu;
Li Zefanba77c9e2009-11-20 15:53:25 +0800222 int bytes_alloc;
Li Zefan7d0d3942009-11-24 13:26:31 +0800223 int node1, node2;
Li Zefanba77c9e2009-11-20 15:53:25 +0800224
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800225 ptr = raw_field_value(event, "ptr", data);
226 call_site = raw_field_value(event, "call_site", data);
227 bytes_req = raw_field_value(event, "bytes_req", data);
228 bytes_alloc = raw_field_value(event, "bytes_alloc", data);
Li Zefanba77c9e2009-11-20 15:53:25 +0800229
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300230 if (insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, cpu) ||
231 insert_caller_stat(call_site, bytes_req, bytes_alloc))
232 return -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800233
234 total_requested += bytes_req;
235 total_allocated += bytes_alloc;
Li Zefan7d0d3942009-11-24 13:26:31 +0800236
237 if (node) {
238 node1 = cpunode_map[cpu];
Xiao Guangrongf48f6692009-12-07 13:04:04 +0800239 node2 = raw_field_value(event, "node", data);
Li Zefan7d0d3942009-11-24 13:26:31 +0800240 if (node1 != node2)
241 nr_cross_allocs++;
242 }
243 nr_allocs++;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300244 return 0;
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 Melo22ad7982012-08-07 10:56:43 -0300278 unsigned long ptr = raw_field_value(evsel->tp_format, "ptr",
279 sample->raw_data);
Li Zefan079d3f62009-11-24 13:26:55 +0800280 struct alloc_stat *s_alloc, *s_caller;
281
Li Zefan079d3f62009-11-24 13:26:55 +0800282 s_alloc = search_alloc_stat(ptr, 0, &root_alloc_stat, ptr_cmp);
283 if (!s_alloc)
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300284 return 0;
Li Zefan079d3f62009-11-24 13:26:55 +0800285
Arnaldo Carvalho de Melo22ad7982012-08-07 10:56:43 -0300286 if ((short)sample->cpu != s_alloc->alloc_cpu) {
Li Zefan079d3f62009-11-24 13:26:55 +0800287 s_alloc->pingpong++;
288
289 s_caller = search_alloc_stat(0, s_alloc->call_site,
290 &root_caller_stat, callsite_cmp);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300291 if (!s_caller)
292 return -1;
Li Zefan079d3f62009-11-24 13:26:55 +0800293 s_caller->pingpong++;
294 }
295 s_alloc->alloc_cpu = -1;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300296
297 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800298}
299
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300300static int perf_evsel__process_kmem_event(struct perf_evsel *evsel,
301 struct perf_sample *sample)
Li Zefanba77c9e2009-11-20 15:53:25 +0800302{
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300303 struct event_format *event = evsel->tp_format;
Li Zefanba77c9e2009-11-20 15:53:25 +0800304
305 if (!strcmp(event->name, "kmalloc") ||
306 !strcmp(event->name, "kmem_cache_alloc")) {
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300307 return perf_evsel__process_alloc_event(evsel, sample, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800308 }
309
310 if (!strcmp(event->name, "kmalloc_node") ||
311 !strcmp(event->name, "kmem_cache_alloc_node")) {
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300312 return perf_evsel__process_alloc_event(evsel, sample, 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800313 }
314
315 if (!strcmp(event->name, "kfree") ||
316 !strcmp(event->name, "kmem_cache_free")) {
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300317 return perf_evsel__process_free_event(evsel, sample);
Li Zefanba77c9e2009-11-20 15:53:25 +0800318 }
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300319
320 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800321}
322
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300323static int process_sample_event(struct perf_tool *tool __used,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200324 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200325 struct perf_sample *sample,
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300326 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200327 struct machine *machine)
Li Zefanba77c9e2009-11-20 15:53:25 +0800328{
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200329 struct thread *thread = machine__findnew_thread(machine, event->ip.pid);
Li Zefanba77c9e2009-11-20 15:53:25 +0800330
Li Zefanba77c9e2009-11-20 15:53:25 +0800331 if (thread == NULL) {
332 pr_debug("problem processing %d event, skipping it.\n",
333 event->header.type);
334 return -1;
335 }
336
337 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
338
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300339 return perf_evsel__process_kmem_event(evsel, sample);
Li Zefanba77c9e2009-11-20 15:53:25 +0800340}
341
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300342static struct perf_tool perf_kmem = {
343 .sample = process_sample_event,
344 .comm = perf_event__process_comm,
345 .ordered_samples = true,
Li Zefanba77c9e2009-11-20 15:53:25 +0800346};
347
Li Zefanba77c9e2009-11-20 15:53:25 +0800348static double fragmentation(unsigned long n_req, unsigned long n_alloc)
349{
350 if (n_alloc == 0)
351 return 0.0;
352 else
353 return 100.0 - (100.0 * n_req / n_alloc);
354}
355
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200356static void __print_result(struct rb_root *root, struct perf_session *session,
357 int n_lines, int is_caller)
Li Zefanba77c9e2009-11-20 15:53:25 +0800358{
359 struct rb_node *next;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300360 struct machine *machine;
Li Zefanba77c9e2009-11-20 15:53:25 +0800361
Li Zefan079d3f62009-11-24 13:26:55 +0800362 printf("%.102s\n", graph_dotted_line);
363 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr");
Pekka Enberg47103272010-01-19 19:23:23 +0200364 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
Li Zefan079d3f62009-11-24 13:26:55 +0800365 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800366
367 next = rb_first(root);
368
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300369 machine = perf_session__find_host_machine(session);
370 if (!machine) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800371 pr_err("__print_result: couldn't find kernel information\n");
372 return;
373 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800374 while (next && n_lines--) {
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200375 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
376 node);
377 struct symbol *sym = NULL;
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300378 struct map *map;
Li Zefan079d3f62009-11-24 13:26:55 +0800379 char buf[BUFSIZ];
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200380 u64 addr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800381
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200382 if (is_caller) {
383 addr = data->call_site;
Li Zefan7707b6b2009-11-24 13:25:48 +0800384 if (!raw_ip)
Arnaldo Carvalho de Melo5c0541d2010-04-29 15:25:23 -0300385 sym = machine__find_kernel_function(machine, addr, &map, NULL);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200386 } else
387 addr = data->ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800388
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200389 if (sym != NULL)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200390 snprintf(buf, sizeof(buf), "%s+%" PRIx64 "", sym->name,
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300391 addr - map->unmap_ip(map, sym->start));
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200392 else
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200393 snprintf(buf, sizeof(buf), "%#" PRIx64 "", addr);
Li Zefan079d3f62009-11-24 13:26:55 +0800394 printf(" %-34s |", buf);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200395
Pekka Enberg47103272010-01-19 19:23:23 +0200396 printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n",
Li Zefan079d3f62009-11-24 13:26:55 +0800397 (unsigned long long)data->bytes_alloc,
Li Zefanba77c9e2009-11-20 15:53:25 +0800398 (unsigned long)data->bytes_alloc / data->hit,
399 (unsigned long long)data->bytes_req,
400 (unsigned long)data->bytes_req / data->hit,
401 (unsigned long)data->hit,
Li Zefan079d3f62009-11-24 13:26:55 +0800402 (unsigned long)data->pingpong,
Li Zefanba77c9e2009-11-20 15:53:25 +0800403 fragmentation(data->bytes_req, data->bytes_alloc));
404
405 next = rb_next(next);
406 }
407
408 if (n_lines == -1)
Li Zefan079d3f62009-11-24 13:26:55 +0800409 printf(" ... | ... | ... | ... | ... | ... \n");
Li Zefanba77c9e2009-11-20 15:53:25 +0800410
Li Zefan079d3f62009-11-24 13:26:55 +0800411 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800412}
413
414static void print_summary(void)
415{
416 printf("\nSUMMARY\n=======\n");
417 printf("Total bytes requested: %lu\n", total_requested);
418 printf("Total bytes allocated: %lu\n", total_allocated);
419 printf("Total bytes wasted on internal fragmentation: %lu\n",
420 total_allocated - total_requested);
421 printf("Internal fragmentation: %f%%\n",
422 fragmentation(total_requested, total_allocated));
Li Zefan7d0d3942009-11-24 13:26:31 +0800423 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs, nr_allocs);
Li Zefanba77c9e2009-11-20 15:53:25 +0800424}
425
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200426static void print_result(struct perf_session *session)
Li Zefanba77c9e2009-11-20 15:53:25 +0800427{
428 if (caller_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200429 __print_result(&root_caller_sorted, session, caller_lines, 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800430 if (alloc_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200431 __print_result(&root_alloc_sorted, session, alloc_lines, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800432 print_summary();
433}
434
Li Zefan29b3e152009-11-24 13:26:10 +0800435struct sort_dimension {
436 const char name[20];
437 sort_fn_t cmp;
438 struct list_head list;
439};
440
441static LIST_HEAD(caller_sort);
442static LIST_HEAD(alloc_sort);
443
Li Zefanba77c9e2009-11-20 15:53:25 +0800444static void sort_insert(struct rb_root *root, struct alloc_stat *data,
Li Zefan29b3e152009-11-24 13:26:10 +0800445 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800446{
447 struct rb_node **new = &(root->rb_node);
448 struct rb_node *parent = NULL;
Li Zefan29b3e152009-11-24 13:26:10 +0800449 struct sort_dimension *sort;
Li Zefanba77c9e2009-11-20 15:53:25 +0800450
451 while (*new) {
452 struct alloc_stat *this;
Li Zefan29b3e152009-11-24 13:26:10 +0800453 int cmp = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800454
455 this = rb_entry(*new, struct alloc_stat, node);
456 parent = *new;
457
Li Zefan29b3e152009-11-24 13:26:10 +0800458 list_for_each_entry(sort, sort_list, list) {
459 cmp = sort->cmp(data, this);
460 if (cmp)
461 break;
462 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800463
464 if (cmp > 0)
465 new = &((*new)->rb_left);
466 else
467 new = &((*new)->rb_right);
468 }
469
470 rb_link_node(&data->node, parent, new);
471 rb_insert_color(&data->node, root);
472}
473
474static void __sort_result(struct rb_root *root, struct rb_root *root_sorted,
Li Zefan29b3e152009-11-24 13:26:10 +0800475 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800476{
477 struct rb_node *node;
478 struct alloc_stat *data;
479
480 for (;;) {
481 node = rb_first(root);
482 if (!node)
483 break;
484
485 rb_erase(node, root);
486 data = rb_entry(node, struct alloc_stat, node);
Li Zefan29b3e152009-11-24 13:26:10 +0800487 sort_insert(root_sorted, data, sort_list);
Li Zefanba77c9e2009-11-20 15:53:25 +0800488 }
489}
490
491static void sort_result(void)
492{
Li Zefan29b3e152009-11-24 13:26:10 +0800493 __sort_result(&root_alloc_stat, &root_alloc_sorted, &alloc_sort);
494 __sort_result(&root_caller_stat, &root_caller_sorted, &caller_sort);
Li Zefanba77c9e2009-11-20 15:53:25 +0800495}
496
497static int __cmd_kmem(void)
498{
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200499 int err = -EINVAL;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300500 struct perf_session *session;
501
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300502 session = perf_session__new(input_name, O_RDONLY, 0, false, &perf_kmem);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200503 if (session == NULL)
504 return -ENOMEM;
Li Zefanba77c9e2009-11-20 15:53:25 +0800505
Arnaldo Carvalho de Meloe727ca72010-04-01 19:12:13 -0300506 if (perf_session__create_kernel_maps(session) < 0)
507 goto out_delete;
508
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200509 if (!perf_session__has_traces(session, "kmem record"))
510 goto out_delete;
511
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200512 setup_pager();
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300513 err = perf_session__process_events(session, &perf_kmem);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200514 if (err != 0)
515 goto out_delete;
516 sort_result();
517 print_result(session);
518out_delete:
519 perf_session__delete(session);
520 return err;
Li Zefanba77c9e2009-11-20 15:53:25 +0800521}
522
523static const char * const kmem_usage[] = {
Li Zefan90b86a92009-12-10 15:21:57 +0800524 "perf kmem [<options>] {record|stat}",
Li Zefanba77c9e2009-11-20 15:53:25 +0800525 NULL
526};
527
Li Zefanba77c9e2009-11-20 15:53:25 +0800528static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
529{
530 if (l->ptr < r->ptr)
531 return -1;
532 else if (l->ptr > r->ptr)
533 return 1;
534 return 0;
535}
536
Li Zefan29b3e152009-11-24 13:26:10 +0800537static struct sort_dimension ptr_sort_dimension = {
538 .name = "ptr",
539 .cmp = ptr_cmp,
540};
541
Li Zefanba77c9e2009-11-20 15:53:25 +0800542static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
543{
544 if (l->call_site < r->call_site)
545 return -1;
546 else if (l->call_site > r->call_site)
547 return 1;
548 return 0;
549}
550
Li Zefan29b3e152009-11-24 13:26:10 +0800551static struct sort_dimension callsite_sort_dimension = {
552 .name = "callsite",
553 .cmp = callsite_cmp,
554};
555
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200556static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
557{
558 if (l->hit < r->hit)
559 return -1;
560 else if (l->hit > r->hit)
561 return 1;
562 return 0;
563}
564
Li Zefan29b3e152009-11-24 13:26:10 +0800565static struct sort_dimension hit_sort_dimension = {
566 .name = "hit",
567 .cmp = hit_cmp,
568};
569
Li Zefanba77c9e2009-11-20 15:53:25 +0800570static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
571{
572 if (l->bytes_alloc < r->bytes_alloc)
573 return -1;
574 else if (l->bytes_alloc > r->bytes_alloc)
575 return 1;
576 return 0;
577}
578
Li Zefan29b3e152009-11-24 13:26:10 +0800579static struct sort_dimension bytes_sort_dimension = {
580 .name = "bytes",
581 .cmp = bytes_cmp,
582};
583
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200584static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
585{
586 double x, y;
587
588 x = fragmentation(l->bytes_req, l->bytes_alloc);
589 y = fragmentation(r->bytes_req, r->bytes_alloc);
590
591 if (x < y)
592 return -1;
593 else if (x > y)
594 return 1;
595 return 0;
596}
597
Li Zefan29b3e152009-11-24 13:26:10 +0800598static struct sort_dimension frag_sort_dimension = {
599 .name = "frag",
600 .cmp = frag_cmp,
601};
602
Li Zefan079d3f62009-11-24 13:26:55 +0800603static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)
604{
605 if (l->pingpong < r->pingpong)
606 return -1;
607 else if (l->pingpong > r->pingpong)
608 return 1;
609 return 0;
610}
611
612static struct sort_dimension pingpong_sort_dimension = {
613 .name = "pingpong",
614 .cmp = pingpong_cmp,
615};
616
Li Zefan29b3e152009-11-24 13:26:10 +0800617static struct sort_dimension *avail_sorts[] = {
618 &ptr_sort_dimension,
619 &callsite_sort_dimension,
620 &hit_sort_dimension,
621 &bytes_sort_dimension,
622 &frag_sort_dimension,
Li Zefan079d3f62009-11-24 13:26:55 +0800623 &pingpong_sort_dimension,
Li Zefan29b3e152009-11-24 13:26:10 +0800624};
625
626#define NUM_AVAIL_SORTS \
627 (int)(sizeof(avail_sorts) / sizeof(struct sort_dimension *))
628
629static int sort_dimension__add(const char *tok, struct list_head *list)
630{
631 struct sort_dimension *sort;
632 int i;
633
634 for (i = 0; i < NUM_AVAIL_SORTS; i++) {
635 if (!strcmp(avail_sorts[i]->name, tok)) {
636 sort = malloc(sizeof(*sort));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300637 if (!sort) {
638 pr_err("%s: malloc failed\n", __func__);
639 return -1;
640 }
Li Zefan29b3e152009-11-24 13:26:10 +0800641 memcpy(sort, avail_sorts[i], sizeof(*sort));
642 list_add_tail(&sort->list, list);
643 return 0;
644 }
645 }
646
647 return -1;
648}
649
650static int setup_sorting(struct list_head *sort_list, const char *arg)
651{
652 char *tok;
653 char *str = strdup(arg);
654
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300655 if (!str) {
656 pr_err("%s: strdup failed\n", __func__);
657 return -1;
658 }
Li Zefan29b3e152009-11-24 13:26:10 +0800659
660 while (true) {
661 tok = strsep(&str, ",");
662 if (!tok)
663 break;
664 if (sort_dimension__add(tok, sort_list) < 0) {
665 error("Unknown --sort key: '%s'", tok);
Namhyung Kim1b228592012-01-08 02:25:29 +0900666 free(str);
Li Zefan29b3e152009-11-24 13:26:10 +0800667 return -1;
668 }
669 }
670
671 free(str);
672 return 0;
673}
674
Li Zefanba77c9e2009-11-20 15:53:25 +0800675static int parse_sort_opt(const struct option *opt __used,
676 const char *arg, int unset __used)
677{
Li Zefanba77c9e2009-11-20 15:53:25 +0800678 if (!arg)
679 return -1;
680
Li Zefanba77c9e2009-11-20 15:53:25 +0800681 if (caller_flag > alloc_flag)
Li Zefan29b3e152009-11-24 13:26:10 +0800682 return setup_sorting(&caller_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800683 else
Li Zefan29b3e152009-11-24 13:26:10 +0800684 return setup_sorting(&alloc_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800685
686 return 0;
687}
688
Li Zefan90b86a92009-12-10 15:21:57 +0800689static int parse_caller_opt(const struct option *opt __used,
Ingo Molnar79312412009-12-10 08:43:34 +0100690 const char *arg __used, int unset __used)
Li Zefanba77c9e2009-11-20 15:53:25 +0800691{
Li Zefan90b86a92009-12-10 15:21:57 +0800692 caller_flag = (alloc_flag + 1);
693 return 0;
694}
Li Zefanba77c9e2009-11-20 15:53:25 +0800695
Li Zefan90b86a92009-12-10 15:21:57 +0800696static int parse_alloc_opt(const struct option *opt __used,
Ingo Molnar79312412009-12-10 08:43:34 +0100697 const char *arg __used, int unset __used)
Li Zefan90b86a92009-12-10 15:21:57 +0800698{
699 alloc_flag = (caller_flag + 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800700 return 0;
701}
702
703static int parse_line_opt(const struct option *opt __used,
704 const char *arg, int unset __used)
705{
706 int lines;
707
708 if (!arg)
709 return -1;
710
711 lines = strtoul(arg, NULL, 10);
712
713 if (caller_flag > alloc_flag)
714 caller_lines = lines;
715 else
716 alloc_lines = lines;
717
718 return 0;
719}
720
721static const struct option kmem_options[] = {
722 OPT_STRING('i', "input", &input_name, "file",
723 "input file name"),
Li Zefan90b86a92009-12-10 15:21:57 +0800724 OPT_CALLBACK_NOOPT(0, "caller", NULL, NULL,
725 "show per-callsite statistics",
726 parse_caller_opt),
727 OPT_CALLBACK_NOOPT(0, "alloc", NULL, NULL,
728 "show per-allocation statistics",
729 parse_alloc_opt),
Li Zefan29b3e152009-11-24 13:26:10 +0800730 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
Li Zefan079d3f62009-11-24 13:26:55 +0800731 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
Li Zefanba77c9e2009-11-20 15:53:25 +0800732 parse_sort_opt),
733 OPT_CALLBACK('l', "line", NULL, "num",
Li Zefan90b86a92009-12-10 15:21:57 +0800734 "show n lines",
Li Zefanba77c9e2009-11-20 15:53:25 +0800735 parse_line_opt),
Li Zefan7707b6b2009-11-24 13:25:48 +0800736 OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
Li Zefanba77c9e2009-11-20 15:53:25 +0800737 OPT_END()
738};
739
740static const char *record_args[] = {
741 "record",
742 "-a",
743 "-R",
Li Zefanba77c9e2009-11-20 15:53:25 +0800744 "-f",
745 "-c", "1",
746 "-e", "kmem:kmalloc",
747 "-e", "kmem:kmalloc_node",
748 "-e", "kmem:kfree",
749 "-e", "kmem:kmem_cache_alloc",
750 "-e", "kmem:kmem_cache_alloc_node",
751 "-e", "kmem:kmem_cache_free",
752};
753
754static int __cmd_record(int argc, const char **argv)
755{
756 unsigned int rec_argc, i, j;
757 const char **rec_argv;
758
759 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
760 rec_argv = calloc(rec_argc + 1, sizeof(char *));
761
Chris Samuelce47dc52010-11-13 13:35:06 +1100762 if (rec_argv == NULL)
763 return -ENOMEM;
764
Li Zefanba77c9e2009-11-20 15:53:25 +0800765 for (i = 0; i < ARRAY_SIZE(record_args); i++)
766 rec_argv[i] = strdup(record_args[i]);
767
768 for (j = 1; j < (unsigned int)argc; j++, i++)
769 rec_argv[i] = argv[j];
770
771 return cmd_record(i, rec_argv, NULL);
772}
773
774int cmd_kmem(int argc, const char **argv, const char *prefix __used)
775{
Li Zefanba77c9e2009-11-20 15:53:25 +0800776 argc = parse_options(argc, argv, kmem_options, kmem_usage, 0);
777
Li Zefan90b86a92009-12-10 15:21:57 +0800778 if (!argc)
Li Zefanba77c9e2009-11-20 15:53:25 +0800779 usage_with_options(kmem_usage, kmem_options);
780
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200781 symbol__init();
782
Li Zefan90b86a92009-12-10 15:21:57 +0800783 if (!strncmp(argv[0], "rec", 3)) {
784 return __cmd_record(argc, argv);
785 } else if (!strcmp(argv[0], "stat")) {
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300786 if (setup_cpunode_map())
787 return -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800788
Li Zefan90b86a92009-12-10 15:21:57 +0800789 if (list_empty(&caller_sort))
790 setup_sorting(&caller_sort, default_sort_order);
791 if (list_empty(&alloc_sort))
792 setup_sorting(&alloc_sort, default_sort_order);
Li Zefan7d0d3942009-11-24 13:26:31 +0800793
Li Zefan90b86a92009-12-10 15:21:57 +0800794 return __cmd_kmem();
Pekka Enbergb00eca82010-01-19 19:26:11 +0200795 } else
796 usage_with_options(kmem_usage, kmem_options);
Li Zefan90b86a92009-12-10 15:21:57 +0800797
798 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800799}
800