blob: b5721116713b0d2ffbd8cc93f890cf70e5ccc6b6 [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"
Jiri Olsaf5fc1412013-10-15 16:27:32 +020016#include "util/data.h"
Don Zickus4b627952014-04-07 14:55:23 -040017#include "util/cpumap.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080018
19#include "util/debug.h"
Li Zefanba77c9e2009-11-20 15:53:25 +080020
21#include <linux/rbtree.h>
Arnaldo Carvalho de Melo8d9233f2013-01-24 22:24:57 -030022#include <linux/string.h>
Li Zefanba77c9e2009-11-20 15:53:25 +080023
24struct alloc_stat;
25typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *);
26
Li Zefanba77c9e2009-11-20 15:53:25 +080027static int alloc_flag;
28static int caller_flag;
29
Li Zefanba77c9e2009-11-20 15:53:25 +080030static int alloc_lines = -1;
31static int caller_lines = -1;
32
Li Zefan7707b6b2009-11-24 13:25:48 +080033static bool raw_ip;
34
Li Zefanba77c9e2009-11-20 15:53:25 +080035struct alloc_stat {
Li Zefan079d3f62009-11-24 13:26:55 +080036 u64 call_site;
37 u64 ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +080038 u64 bytes_req;
39 u64 bytes_alloc;
40 u32 hit;
Li Zefan079d3f62009-11-24 13:26:55 +080041 u32 pingpong;
42
43 short alloc_cpu;
Li Zefanba77c9e2009-11-20 15:53:25 +080044
45 struct rb_node node;
46};
47
48static struct rb_root root_alloc_stat;
49static struct rb_root root_alloc_sorted;
50static struct rb_root root_caller_stat;
51static struct rb_root root_caller_sorted;
52
53static unsigned long total_requested, total_allocated;
Li Zefan7d0d3942009-11-24 13:26:31 +080054static unsigned long nr_allocs, nr_cross_allocs;
Li Zefanba77c9e2009-11-20 15:53:25 +080055
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030056static int insert_alloc_stat(unsigned long call_site, unsigned long ptr,
57 int bytes_req, int bytes_alloc, int cpu)
Li Zefanba77c9e2009-11-20 15:53:25 +080058{
59 struct rb_node **node = &root_alloc_stat.rb_node;
60 struct rb_node *parent = NULL;
61 struct alloc_stat *data = NULL;
62
Li Zefanba77c9e2009-11-20 15:53:25 +080063 while (*node) {
64 parent = *node;
65 data = rb_entry(*node, struct alloc_stat, node);
66
67 if (ptr > data->ptr)
68 node = &(*node)->rb_right;
69 else if (ptr < data->ptr)
70 node = &(*node)->rb_left;
71 else
72 break;
73 }
74
75 if (data && data->ptr == ptr) {
76 data->hit++;
77 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +080078 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +080079 } else {
80 data = malloc(sizeof(*data));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030081 if (!data) {
82 pr_err("%s: malloc failed\n", __func__);
83 return -1;
84 }
Li Zefanba77c9e2009-11-20 15:53:25 +080085 data->ptr = ptr;
Li Zefan079d3f62009-11-24 13:26:55 +080086 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +080087 data->hit = 1;
88 data->bytes_req = bytes_req;
89 data->bytes_alloc = bytes_alloc;
90
91 rb_link_node(&data->node, parent, node);
92 rb_insert_color(&data->node, &root_alloc_stat);
93 }
Li Zefan079d3f62009-11-24 13:26:55 +080094 data->call_site = call_site;
95 data->alloc_cpu = cpu;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030096 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +080097}
98
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -030099static int insert_caller_stat(unsigned long call_site,
Li Zefanba77c9e2009-11-20 15:53:25 +0800100 int bytes_req, int bytes_alloc)
101{
102 struct rb_node **node = &root_caller_stat.rb_node;
103 struct rb_node *parent = NULL;
104 struct alloc_stat *data = NULL;
105
Li Zefanba77c9e2009-11-20 15:53:25 +0800106 while (*node) {
107 parent = *node;
108 data = rb_entry(*node, struct alloc_stat, node);
109
110 if (call_site > data->call_site)
111 node = &(*node)->rb_right;
112 else if (call_site < data->call_site)
113 node = &(*node)->rb_left;
114 else
115 break;
116 }
117
118 if (data && data->call_site == call_site) {
119 data->hit++;
120 data->bytes_req += bytes_req;
Wenji Huang4efb5292009-12-21 17:52:55 +0800121 data->bytes_alloc += bytes_alloc;
Li Zefanba77c9e2009-11-20 15:53:25 +0800122 } else {
123 data = malloc(sizeof(*data));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300124 if (!data) {
125 pr_err("%s: malloc failed\n", __func__);
126 return -1;
127 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800128 data->call_site = call_site;
Li Zefan079d3f62009-11-24 13:26:55 +0800129 data->pingpong = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800130 data->hit = 1;
131 data->bytes_req = bytes_req;
132 data->bytes_alloc = bytes_alloc;
133
134 rb_link_node(&data->node, parent, node);
135 rb_insert_color(&data->node, &root_caller_stat);
136 }
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300137
138 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800139}
140
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300141static int perf_evsel__process_alloc_event(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300142 struct perf_sample *sample)
Li Zefanba77c9e2009-11-20 15:53:25 +0800143{
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300144 unsigned long ptr = perf_evsel__intval(evsel, sample, "ptr"),
145 call_site = perf_evsel__intval(evsel, sample, "call_site");
146 int bytes_req = perf_evsel__intval(evsel, sample, "bytes_req"),
147 bytes_alloc = perf_evsel__intval(evsel, sample, "bytes_alloc");
Li Zefanba77c9e2009-11-20 15:53:25 +0800148
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300149 if (insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, sample->cpu) ||
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300150 insert_caller_stat(call_site, bytes_req, bytes_alloc))
151 return -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800152
153 total_requested += bytes_req;
154 total_allocated += bytes_alloc;
Li Zefan7d0d3942009-11-24 13:26:31 +0800155
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300156 nr_allocs++;
157 return 0;
158}
159
160static int perf_evsel__process_alloc_node_event(struct perf_evsel *evsel,
161 struct perf_sample *sample)
162{
163 int ret = perf_evsel__process_alloc_event(evsel, sample);
164
165 if (!ret) {
Don Zickus4b627952014-04-07 14:55:23 -0400166 int node1 = cpu__get_node(sample->cpu),
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300167 node2 = perf_evsel__intval(evsel, sample, "node");
168
Li Zefan7d0d3942009-11-24 13:26:31 +0800169 if (node1 != node2)
170 nr_cross_allocs++;
171 }
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300172
173 return ret;
Li Zefanba77c9e2009-11-20 15:53:25 +0800174}
175
Li Zefan079d3f62009-11-24 13:26:55 +0800176static int ptr_cmp(struct alloc_stat *, struct alloc_stat *);
177static int callsite_cmp(struct alloc_stat *, struct alloc_stat *);
178
179static struct alloc_stat *search_alloc_stat(unsigned long ptr,
180 unsigned long call_site,
181 struct rb_root *root,
182 sort_fn_t sort_fn)
183{
184 struct rb_node *node = root->rb_node;
185 struct alloc_stat key = { .ptr = ptr, .call_site = call_site };
186
187 while (node) {
188 struct alloc_stat *data;
189 int cmp;
190
191 data = rb_entry(node, struct alloc_stat, node);
192
193 cmp = sort_fn(&key, data);
194 if (cmp < 0)
195 node = node->rb_left;
196 else if (cmp > 0)
197 node = node->rb_right;
198 else
199 return data;
200 }
201 return NULL;
202}
203
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300204static int perf_evsel__process_free_event(struct perf_evsel *evsel,
205 struct perf_sample *sample)
Li Zefanba77c9e2009-11-20 15:53:25 +0800206{
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300207 unsigned long ptr = perf_evsel__intval(evsel, sample, "ptr");
Li Zefan079d3f62009-11-24 13:26:55 +0800208 struct alloc_stat *s_alloc, *s_caller;
209
Li Zefan079d3f62009-11-24 13:26:55 +0800210 s_alloc = search_alloc_stat(ptr, 0, &root_alloc_stat, ptr_cmp);
211 if (!s_alloc)
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300212 return 0;
Li Zefan079d3f62009-11-24 13:26:55 +0800213
Arnaldo Carvalho de Melo22ad7982012-08-07 10:56:43 -0300214 if ((short)sample->cpu != s_alloc->alloc_cpu) {
Li Zefan079d3f62009-11-24 13:26:55 +0800215 s_alloc->pingpong++;
216
217 s_caller = search_alloc_stat(0, s_alloc->call_site,
218 &root_caller_stat, callsite_cmp);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300219 if (!s_caller)
220 return -1;
Li Zefan079d3f62009-11-24 13:26:55 +0800221 s_caller->pingpong++;
222 }
223 s_alloc->alloc_cpu = -1;
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300224
225 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800226}
227
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300228typedef int (*tracepoint_handler)(struct perf_evsel *evsel,
229 struct perf_sample *sample);
Li Zefanba77c9e2009-11-20 15:53:25 +0800230
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300231static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200232 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200233 struct perf_sample *sample,
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300234 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200235 struct machine *machine)
Li Zefanba77c9e2009-11-20 15:53:25 +0800236{
Adrian Hunteref893252013-08-27 11:23:06 +0300237 struct thread *thread = machine__findnew_thread(machine, sample->pid,
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900238 sample->tid);
Li Zefanba77c9e2009-11-20 15:53:25 +0800239
Li Zefanba77c9e2009-11-20 15:53:25 +0800240 if (thread == NULL) {
241 pr_debug("problem processing %d event, skipping it.\n",
242 event->header.type);
243 return -1;
244 }
245
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200246 dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread), thread->tid);
Li Zefanba77c9e2009-11-20 15:53:25 +0800247
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300248 if (evsel->handler != NULL) {
249 tracepoint_handler f = evsel->handler;
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300250 return f(evsel, sample);
251 }
252
253 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800254}
255
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300256static struct perf_tool perf_kmem = {
257 .sample = process_sample_event,
258 .comm = perf_event__process_comm,
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200259 .ordered_events = true,
Li Zefanba77c9e2009-11-20 15:53:25 +0800260};
261
Li Zefanba77c9e2009-11-20 15:53:25 +0800262static double fragmentation(unsigned long n_req, unsigned long n_alloc)
263{
264 if (n_alloc == 0)
265 return 0.0;
266 else
267 return 100.0 - (100.0 * n_req / n_alloc);
268}
269
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200270static void __print_result(struct rb_root *root, struct perf_session *session,
271 int n_lines, int is_caller)
Li Zefanba77c9e2009-11-20 15:53:25 +0800272{
273 struct rb_node *next;
Arnaldo Carvalho de Melo34ba5122012-12-19 09:04:24 -0300274 struct machine *machine = &session->machines.host;
Li Zefanba77c9e2009-11-20 15:53:25 +0800275
Li Zefan079d3f62009-11-24 13:26:55 +0800276 printf("%.102s\n", graph_dotted_line);
277 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr");
Pekka Enberg47103272010-01-19 19:23:23 +0200278 printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n");
Li Zefan079d3f62009-11-24 13:26:55 +0800279 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800280
281 next = rb_first(root);
282
283 while (next && n_lines--) {
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200284 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
285 node);
286 struct symbol *sym = NULL;
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300287 struct map *map;
Li Zefan079d3f62009-11-24 13:26:55 +0800288 char buf[BUFSIZ];
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200289 u64 addr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800290
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200291 if (is_caller) {
292 addr = data->call_site;
Li Zefan7707b6b2009-11-24 13:25:48 +0800293 if (!raw_ip)
Arnaldo Carvalho de Melo5c0541d2010-04-29 15:25:23 -0300294 sym = machine__find_kernel_function(machine, addr, &map, NULL);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200295 } else
296 addr = data->ptr;
Li Zefanba77c9e2009-11-20 15:53:25 +0800297
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200298 if (sym != NULL)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200299 snprintf(buf, sizeof(buf), "%s+%" PRIx64 "", sym->name,
Arnaldo Carvalho de Melo71cf8b82010-04-01 21:24:38 -0300300 addr - map->unmap_ip(map, sym->start));
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200301 else
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200302 snprintf(buf, sizeof(buf), "%#" PRIx64 "", addr);
Li Zefan079d3f62009-11-24 13:26:55 +0800303 printf(" %-34s |", buf);
Arnaldo Carvalho de Melo1b145ae2009-11-23 17:51:09 -0200304
Pekka Enberg47103272010-01-19 19:23:23 +0200305 printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n",
Li Zefan079d3f62009-11-24 13:26:55 +0800306 (unsigned long long)data->bytes_alloc,
Li Zefanba77c9e2009-11-20 15:53:25 +0800307 (unsigned long)data->bytes_alloc / data->hit,
308 (unsigned long long)data->bytes_req,
309 (unsigned long)data->bytes_req / data->hit,
310 (unsigned long)data->hit,
Li Zefan079d3f62009-11-24 13:26:55 +0800311 (unsigned long)data->pingpong,
Li Zefanba77c9e2009-11-20 15:53:25 +0800312 fragmentation(data->bytes_req, data->bytes_alloc));
313
314 next = rb_next(next);
315 }
316
317 if (n_lines == -1)
Li Zefan079d3f62009-11-24 13:26:55 +0800318 printf(" ... | ... | ... | ... | ... | ... \n");
Li Zefanba77c9e2009-11-20 15:53:25 +0800319
Li Zefan079d3f62009-11-24 13:26:55 +0800320 printf("%.102s\n", graph_dotted_line);
Li Zefanba77c9e2009-11-20 15:53:25 +0800321}
322
323static void print_summary(void)
324{
325 printf("\nSUMMARY\n=======\n");
326 printf("Total bytes requested: %lu\n", total_requested);
327 printf("Total bytes allocated: %lu\n", total_allocated);
328 printf("Total bytes wasted on internal fragmentation: %lu\n",
329 total_allocated - total_requested);
330 printf("Internal fragmentation: %f%%\n",
331 fragmentation(total_requested, total_allocated));
Li Zefan7d0d3942009-11-24 13:26:31 +0800332 printf("Cross CPU allocations: %lu/%lu\n", nr_cross_allocs, nr_allocs);
Li Zefanba77c9e2009-11-20 15:53:25 +0800333}
334
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200335static void print_result(struct perf_session *session)
Li Zefanba77c9e2009-11-20 15:53:25 +0800336{
337 if (caller_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200338 __print_result(&root_caller_sorted, session, caller_lines, 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800339 if (alloc_flag)
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200340 __print_result(&root_alloc_sorted, session, alloc_lines, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800341 print_summary();
342}
343
Li Zefan29b3e152009-11-24 13:26:10 +0800344struct sort_dimension {
345 const char name[20];
346 sort_fn_t cmp;
347 struct list_head list;
348};
349
350static LIST_HEAD(caller_sort);
351static LIST_HEAD(alloc_sort);
352
Li Zefanba77c9e2009-11-20 15:53:25 +0800353static void sort_insert(struct rb_root *root, struct alloc_stat *data,
Li Zefan29b3e152009-11-24 13:26:10 +0800354 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800355{
356 struct rb_node **new = &(root->rb_node);
357 struct rb_node *parent = NULL;
Li Zefan29b3e152009-11-24 13:26:10 +0800358 struct sort_dimension *sort;
Li Zefanba77c9e2009-11-20 15:53:25 +0800359
360 while (*new) {
361 struct alloc_stat *this;
Li Zefan29b3e152009-11-24 13:26:10 +0800362 int cmp = 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800363
364 this = rb_entry(*new, struct alloc_stat, node);
365 parent = *new;
366
Li Zefan29b3e152009-11-24 13:26:10 +0800367 list_for_each_entry(sort, sort_list, list) {
368 cmp = sort->cmp(data, this);
369 if (cmp)
370 break;
371 }
Li Zefanba77c9e2009-11-20 15:53:25 +0800372
373 if (cmp > 0)
374 new = &((*new)->rb_left);
375 else
376 new = &((*new)->rb_right);
377 }
378
379 rb_link_node(&data->node, parent, new);
380 rb_insert_color(&data->node, root);
381}
382
383static void __sort_result(struct rb_root *root, struct rb_root *root_sorted,
Li Zefan29b3e152009-11-24 13:26:10 +0800384 struct list_head *sort_list)
Li Zefanba77c9e2009-11-20 15:53:25 +0800385{
386 struct rb_node *node;
387 struct alloc_stat *data;
388
389 for (;;) {
390 node = rb_first(root);
391 if (!node)
392 break;
393
394 rb_erase(node, root);
395 data = rb_entry(node, struct alloc_stat, node);
Li Zefan29b3e152009-11-24 13:26:10 +0800396 sort_insert(root_sorted, data, sort_list);
Li Zefanba77c9e2009-11-20 15:53:25 +0800397 }
398}
399
400static void sort_result(void)
401{
Li Zefan29b3e152009-11-24 13:26:10 +0800402 __sort_result(&root_alloc_stat, &root_alloc_sorted, &alloc_sort);
403 __sort_result(&root_caller_stat, &root_caller_sorted, &caller_sort);
Li Zefanba77c9e2009-11-20 15:53:25 +0800404}
405
Feng Tang70cb4e92012-10-30 11:56:02 +0800406static int __cmd_kmem(void)
Li Zefanba77c9e2009-11-20 15:53:25 +0800407{
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200408 int err = -EINVAL;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300409 struct perf_session *session;
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300410 const struct perf_evsel_str_handler kmem_tracepoints[] = {
411 { "kmem:kmalloc", perf_evsel__process_alloc_event, },
412 { "kmem:kmem_cache_alloc", perf_evsel__process_alloc_event, },
413 { "kmem:kmalloc_node", perf_evsel__process_alloc_node_event, },
414 { "kmem:kmem_cache_alloc_node", perf_evsel__process_alloc_node_event, },
415 { "kmem:kfree", perf_evsel__process_free_event, },
416 { "kmem:kmem_cache_free", perf_evsel__process_free_event, },
417 };
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200418 struct perf_data_file file = {
419 .path = input_name,
420 .mode = PERF_DATA_MODE_READ,
421 };
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300422
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200423 session = perf_session__new(&file, false, &perf_kmem);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200424 if (session == NULL)
425 return -ENOMEM;
Li Zefanba77c9e2009-11-20 15:53:25 +0800426
Arnaldo Carvalho de Meloe727ca72010-04-01 19:12:13 -0300427 if (perf_session__create_kernel_maps(session) < 0)
428 goto out_delete;
429
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200430 if (!perf_session__has_traces(session, "kmem record"))
431 goto out_delete;
432
Arnaldo Carvalho de Melo0f7d2f12012-09-24 10:46:54 -0300433 if (perf_session__set_tracepoints_handlers(session, kmem_tracepoints)) {
434 pr_err("Initializing perf session tracepoint handlers failed\n");
435 return -1;
436 }
437
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200438 setup_pager();
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300439 err = perf_session__process_events(session, &perf_kmem);
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200440 if (err != 0)
441 goto out_delete;
442 sort_result();
443 print_result(session);
444out_delete:
445 perf_session__delete(session);
446 return err;
Li Zefanba77c9e2009-11-20 15:53:25 +0800447}
448
Li Zefanba77c9e2009-11-20 15:53:25 +0800449static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
450{
451 if (l->ptr < r->ptr)
452 return -1;
453 else if (l->ptr > r->ptr)
454 return 1;
455 return 0;
456}
457
Li Zefan29b3e152009-11-24 13:26:10 +0800458static struct sort_dimension ptr_sort_dimension = {
459 .name = "ptr",
460 .cmp = ptr_cmp,
461};
462
Li Zefanba77c9e2009-11-20 15:53:25 +0800463static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
464{
465 if (l->call_site < r->call_site)
466 return -1;
467 else if (l->call_site > r->call_site)
468 return 1;
469 return 0;
470}
471
Li Zefan29b3e152009-11-24 13:26:10 +0800472static struct sort_dimension callsite_sort_dimension = {
473 .name = "callsite",
474 .cmp = callsite_cmp,
475};
476
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200477static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
478{
479 if (l->hit < r->hit)
480 return -1;
481 else if (l->hit > r->hit)
482 return 1;
483 return 0;
484}
485
Li Zefan29b3e152009-11-24 13:26:10 +0800486static struct sort_dimension hit_sort_dimension = {
487 .name = "hit",
488 .cmp = hit_cmp,
489};
490
Li Zefanba77c9e2009-11-20 15:53:25 +0800491static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
492{
493 if (l->bytes_alloc < r->bytes_alloc)
494 return -1;
495 else if (l->bytes_alloc > r->bytes_alloc)
496 return 1;
497 return 0;
498}
499
Li Zefan29b3e152009-11-24 13:26:10 +0800500static struct sort_dimension bytes_sort_dimension = {
501 .name = "bytes",
502 .cmp = bytes_cmp,
503};
504
Pekka Enbergf3ced7c2009-11-22 11:58:00 +0200505static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
506{
507 double x, y;
508
509 x = fragmentation(l->bytes_req, l->bytes_alloc);
510 y = fragmentation(r->bytes_req, r->bytes_alloc);
511
512 if (x < y)
513 return -1;
514 else if (x > y)
515 return 1;
516 return 0;
517}
518
Li Zefan29b3e152009-11-24 13:26:10 +0800519static struct sort_dimension frag_sort_dimension = {
520 .name = "frag",
521 .cmp = frag_cmp,
522};
523
Li Zefan079d3f62009-11-24 13:26:55 +0800524static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)
525{
526 if (l->pingpong < r->pingpong)
527 return -1;
528 else if (l->pingpong > r->pingpong)
529 return 1;
530 return 0;
531}
532
533static struct sort_dimension pingpong_sort_dimension = {
534 .name = "pingpong",
535 .cmp = pingpong_cmp,
536};
537
Li Zefan29b3e152009-11-24 13:26:10 +0800538static struct sort_dimension *avail_sorts[] = {
539 &ptr_sort_dimension,
540 &callsite_sort_dimension,
541 &hit_sort_dimension,
542 &bytes_sort_dimension,
543 &frag_sort_dimension,
Li Zefan079d3f62009-11-24 13:26:55 +0800544 &pingpong_sort_dimension,
Li Zefan29b3e152009-11-24 13:26:10 +0800545};
546
Sasha Levin49e4ba52012-12-20 14:11:16 -0500547#define NUM_AVAIL_SORTS ((int)ARRAY_SIZE(avail_sorts))
Li Zefan29b3e152009-11-24 13:26:10 +0800548
549static int sort_dimension__add(const char *tok, struct list_head *list)
550{
551 struct sort_dimension *sort;
552 int i;
553
554 for (i = 0; i < NUM_AVAIL_SORTS; i++) {
555 if (!strcmp(avail_sorts[i]->name, tok)) {
Arnaldo Carvalho de Melo8d9233f2013-01-24 22:24:57 -0300556 sort = memdup(avail_sorts[i], sizeof(*avail_sorts[i]));
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300557 if (!sort) {
Arnaldo Carvalho de Melo8d9233f2013-01-24 22:24:57 -0300558 pr_err("%s: memdup failed\n", __func__);
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300559 return -1;
560 }
Li Zefan29b3e152009-11-24 13:26:10 +0800561 list_add_tail(&sort->list, list);
562 return 0;
563 }
564 }
565
566 return -1;
567}
568
569static int setup_sorting(struct list_head *sort_list, const char *arg)
570{
571 char *tok;
572 char *str = strdup(arg);
573
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300574 if (!str) {
575 pr_err("%s: strdup failed\n", __func__);
576 return -1;
577 }
Li Zefan29b3e152009-11-24 13:26:10 +0800578
579 while (true) {
580 tok = strsep(&str, ",");
581 if (!tok)
582 break;
583 if (sort_dimension__add(tok, sort_list) < 0) {
584 error("Unknown --sort key: '%s'", tok);
Namhyung Kim1b228592012-01-08 02:25:29 +0900585 free(str);
Li Zefan29b3e152009-11-24 13:26:10 +0800586 return -1;
587 }
588 }
589
590 free(str);
591 return 0;
592}
593
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300594static int parse_sort_opt(const struct option *opt __maybe_unused,
595 const char *arg, int unset __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800596{
Li Zefanba77c9e2009-11-20 15:53:25 +0800597 if (!arg)
598 return -1;
599
Li Zefanba77c9e2009-11-20 15:53:25 +0800600 if (caller_flag > alloc_flag)
Li Zefan29b3e152009-11-24 13:26:10 +0800601 return setup_sorting(&caller_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800602 else
Li Zefan29b3e152009-11-24 13:26:10 +0800603 return setup_sorting(&alloc_sort, arg);
Li Zefanba77c9e2009-11-20 15:53:25 +0800604
605 return 0;
606}
607
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300608static int parse_caller_opt(const struct option *opt __maybe_unused,
609 const char *arg __maybe_unused,
610 int unset __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800611{
Li Zefan90b86a92009-12-10 15:21:57 +0800612 caller_flag = (alloc_flag + 1);
613 return 0;
614}
Li Zefanba77c9e2009-11-20 15:53:25 +0800615
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300616static int parse_alloc_opt(const struct option *opt __maybe_unused,
617 const char *arg __maybe_unused,
618 int unset __maybe_unused)
Li Zefan90b86a92009-12-10 15:21:57 +0800619{
620 alloc_flag = (caller_flag + 1);
Li Zefanba77c9e2009-11-20 15:53:25 +0800621 return 0;
622}
623
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300624static int parse_line_opt(const struct option *opt __maybe_unused,
625 const char *arg, int unset __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800626{
627 int lines;
628
629 if (!arg)
630 return -1;
631
632 lines = strtoul(arg, NULL, 10);
633
634 if (caller_flag > alloc_flag)
635 caller_lines = lines;
636 else
637 alloc_lines = lines;
638
639 return 0;
640}
641
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300642static int __cmd_record(int argc, const char **argv)
643{
644 const char * const record_args[] = {
Jiri Olsa4a4d3712013-06-05 13:37:21 +0200645 "record", "-a", "-R", "-c", "1",
Li Zefanba77c9e2009-11-20 15:53:25 +0800646 "-e", "kmem:kmalloc",
647 "-e", "kmem:kmalloc_node",
648 "-e", "kmem:kfree",
649 "-e", "kmem:kmem_cache_alloc",
650 "-e", "kmem:kmem_cache_alloc_node",
651 "-e", "kmem:kmem_cache_free",
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300652 };
Li Zefanba77c9e2009-11-20 15:53:25 +0800653 unsigned int rec_argc, i, j;
654 const char **rec_argv;
655
656 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
657 rec_argv = calloc(rec_argc + 1, sizeof(char *));
658
Chris Samuelce47dc52010-11-13 13:35:06 +1100659 if (rec_argv == NULL)
660 return -ENOMEM;
661
Li Zefanba77c9e2009-11-20 15:53:25 +0800662 for (i = 0; i < ARRAY_SIZE(record_args); i++)
663 rec_argv[i] = strdup(record_args[i]);
664
665 for (j = 1; j < (unsigned int)argc; j++, i++)
666 rec_argv[i] = argv[j];
667
668 return cmd_record(i, rec_argv, NULL);
669}
670
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300671int cmd_kmem(int argc, const char **argv, const char *prefix __maybe_unused)
Li Zefanba77c9e2009-11-20 15:53:25 +0800672{
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300673 const char * const default_sort_order = "frag,hit,bytes";
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300674 const struct option kmem_options[] = {
675 OPT_STRING('i', "input", &input_name, "file", "input file name"),
676 OPT_CALLBACK_NOOPT(0, "caller", NULL, NULL,
677 "show per-callsite statistics", parse_caller_opt),
678 OPT_CALLBACK_NOOPT(0, "alloc", NULL, NULL,
679 "show per-allocation statistics", parse_alloc_opt),
680 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
681 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",
682 parse_sort_opt),
683 OPT_CALLBACK('l', "line", NULL, "num", "show n lines", parse_line_opt),
684 OPT_BOOLEAN(0, "raw-ip", &raw_ip, "show raw ip instead of symbol"),
685 OPT_END()
686 };
Ramkumar Ramachandra3bca2352014-03-14 23:17:51 -0400687 const char *const kmem_subcommands[] = { "record", "stat", NULL };
688 const char *kmem_usage[] = {
689 NULL,
Arnaldo Carvalho de Melo0433ffb2012-10-01 15:20:58 -0300690 NULL
691 };
Ramkumar Ramachandra3bca2352014-03-14 23:17:51 -0400692 argc = parse_options_subcommand(argc, argv, kmem_options,
693 kmem_subcommands, kmem_usage, 0);
Li Zefanba77c9e2009-11-20 15:53:25 +0800694
Li Zefan90b86a92009-12-10 15:21:57 +0800695 if (!argc)
Li Zefanba77c9e2009-11-20 15:53:25 +0800696 usage_with_options(kmem_usage, kmem_options);
697
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200698 symbol__init();
699
Li Zefan90b86a92009-12-10 15:21:57 +0800700 if (!strncmp(argv[0], "rec", 3)) {
701 return __cmd_record(argc, argv);
702 } else if (!strcmp(argv[0], "stat")) {
Don Zickus4b627952014-04-07 14:55:23 -0400703 if (cpu__setup_cpunode_map())
Arnaldo Carvalho de Melo2814eb02012-09-08 22:53:06 -0300704 return -1;
Li Zefanba77c9e2009-11-20 15:53:25 +0800705
Li Zefan90b86a92009-12-10 15:21:57 +0800706 if (list_empty(&caller_sort))
707 setup_sorting(&caller_sort, default_sort_order);
708 if (list_empty(&alloc_sort))
709 setup_sorting(&alloc_sort, default_sort_order);
Li Zefan7d0d3942009-11-24 13:26:31 +0800710
Feng Tang70cb4e92012-10-30 11:56:02 +0800711 return __cmd_kmem();
Pekka Enbergb00eca82010-01-19 19:26:11 +0200712 } else
713 usage_with_options(kmem_usage, kmem_options);
Li Zefan90b86a92009-12-10 15:21:57 +0800714
715 return 0;
Li Zefanba77c9e2009-11-20 15:53:25 +0800716}
717