blob: 039e7369dc6ca197229388cd2d80d64d0decb5fc [file] [log] [blame]
Jiri Olsa7aef3bf2016-09-22 17:36:38 +02001#include <linux/compiler.h>
2#include <linux/kernel.h>
Jiri Olsacbb88502016-09-22 17:36:48 +02003#include <linux/stringify.h>
Jiri Olsa7aef3bf2016-09-22 17:36:38 +02004#include "util.h"
5#include "debug.h"
6#include "builtin.h"
7#include <subcmd/parse-options.h>
Jiri Olsa39bcd4a2016-09-22 17:36:39 +02008#include "mem-events.h"
Jiri Olsa903a6f12016-09-22 17:36:40 +02009#include "session.h"
10#include "hist.h"
Jiri Olsacbb88502016-09-22 17:36:48 +020011#include "sort.h"
Jiri Olsa903a6f12016-09-22 17:36:40 +020012#include "tool.h"
13#include "data.h"
Jiri Olsa8d3f9382016-09-22 17:36:42 +020014#include "sort.h"
Jiri Olsa903a6f12016-09-22 17:36:40 +020015
Jiri Olsac75540e2016-09-22 17:36:41 +020016struct c2c_hists {
17 struct hists hists;
18 struct perf_hpp_list list;
Jiri Olsab2252ae2016-09-22 17:36:46 +020019 struct c2c_stats stats;
Jiri Olsac75540e2016-09-22 17:36:41 +020020};
21
Jiri Olsa78b27542016-09-22 17:36:44 +020022struct c2c_hist_entry {
23 struct c2c_hists *hists;
Jiri Olsab2252ae2016-09-22 17:36:46 +020024 struct c2c_stats stats;
Jiri Olsa78b27542016-09-22 17:36:44 +020025 /*
26 * must be at the end,
27 * because of its callchain dynamic entry
28 */
29 struct hist_entry he;
30};
31
Jiri Olsa903a6f12016-09-22 17:36:40 +020032struct perf_c2c {
Jiri Olsac75540e2016-09-22 17:36:41 +020033 struct perf_tool tool;
34 struct c2c_hists hists;
Jiri Olsa903a6f12016-09-22 17:36:40 +020035};
36
37static struct perf_c2c c2c;
Jiri Olsa7aef3bf2016-09-22 17:36:38 +020038
Jiri Olsa78b27542016-09-22 17:36:44 +020039static void *c2c_he_zalloc(size_t size)
40{
41 struct c2c_hist_entry *c2c_he;
42
43 c2c_he = zalloc(size + sizeof(*c2c_he));
44 if (!c2c_he)
45 return NULL;
46
47 return &c2c_he->he;
48}
49
50static void c2c_he_free(void *he)
51{
52 struct c2c_hist_entry *c2c_he;
53
54 c2c_he = container_of(he, struct c2c_hist_entry, he);
55 if (c2c_he->hists) {
56 hists__delete_entries(&c2c_he->hists->hists);
57 free(c2c_he->hists);
58 }
59
60 free(c2c_he);
61}
62
63static struct hist_entry_ops c2c_entry_ops = {
64 .new = c2c_he_zalloc,
65 .free = c2c_he_free,
66};
67
Jiri Olsaec06f9b2016-09-22 17:36:45 +020068static int c2c_hists__init(struct c2c_hists *hists,
69 const char *sort);
70
Jiri Olsab2252ae2016-09-22 17:36:46 +020071static struct c2c_hists*
72he__get_c2c_hists(struct hist_entry *he,
73 const char *sort)
Jiri Olsaec06f9b2016-09-22 17:36:45 +020074{
75 struct c2c_hist_entry *c2c_he;
76 struct c2c_hists *hists;
77 int ret;
78
79 c2c_he = container_of(he, struct c2c_hist_entry, he);
80 if (c2c_he->hists)
Jiri Olsab2252ae2016-09-22 17:36:46 +020081 return c2c_he->hists;
Jiri Olsaec06f9b2016-09-22 17:36:45 +020082
83 hists = c2c_he->hists = zalloc(sizeof(*hists));
84 if (!hists)
85 return NULL;
86
87 ret = c2c_hists__init(hists, sort);
88 if (ret) {
89 free(hists);
90 return NULL;
91 }
92
Jiri Olsab2252ae2016-09-22 17:36:46 +020093 return hists;
Jiri Olsaec06f9b2016-09-22 17:36:45 +020094}
95
Jiri Olsa78b27542016-09-22 17:36:44 +020096static int process_sample_event(struct perf_tool *tool __maybe_unused,
97 union perf_event *event,
98 struct perf_sample *sample,
99 struct perf_evsel *evsel __maybe_unused,
100 struct machine *machine)
101{
Jiri Olsab2252ae2016-09-22 17:36:46 +0200102 struct c2c_hists *c2c_hists = &c2c.hists;
103 struct c2c_hist_entry *c2c_he;
104 struct c2c_stats stats = { .nr_entries = 0, };
Jiri Olsa78b27542016-09-22 17:36:44 +0200105 struct hist_entry *he;
106 struct addr_location al;
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200107 struct mem_info *mi, *mi_dup;
Jiri Olsa78b27542016-09-22 17:36:44 +0200108 int ret;
109
110 if (machine__resolve(machine, &al, sample) < 0) {
111 pr_debug("problem processing %d event, skipping it.\n",
112 event->header.type);
113 return -1;
114 }
115
116 mi = sample__resolve_mem(sample, &al);
117 if (mi == NULL)
118 return -ENOMEM;
119
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200120 mi_dup = memdup(mi, sizeof(*mi));
121 if (!mi_dup)
122 goto free_mi;
123
Jiri Olsab2252ae2016-09-22 17:36:46 +0200124 c2c_decode_stats(&stats, mi);
125
126 he = hists__add_entry_ops(&c2c_hists->hists, &c2c_entry_ops,
Jiri Olsa78b27542016-09-22 17:36:44 +0200127 &al, NULL, NULL, mi,
128 sample, true);
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200129 if (he == NULL)
130 goto free_mi_dup;
Jiri Olsa78b27542016-09-22 17:36:44 +0200131
Jiri Olsab2252ae2016-09-22 17:36:46 +0200132 c2c_he = container_of(he, struct c2c_hist_entry, he);
133 c2c_add_stats(&c2c_he->stats, &stats);
134 c2c_add_stats(&c2c_hists->stats, &stats);
135
136 hists__inc_nr_samples(&c2c_hists->hists, he->filtered);
Jiri Olsa78b27542016-09-22 17:36:44 +0200137 ret = hist_entry__append_callchain(he, sample);
138
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200139 if (!ret) {
140 mi = mi_dup;
141
142 mi_dup = memdup(mi, sizeof(*mi));
143 if (!mi_dup)
144 goto free_mi;
145
Jiri Olsab2252ae2016-09-22 17:36:46 +0200146 c2c_hists = he__get_c2c_hists(he, "offset");
147 if (!c2c_hists)
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200148 goto free_mi_dup;
149
Jiri Olsab2252ae2016-09-22 17:36:46 +0200150 he = hists__add_entry_ops(&c2c_hists->hists, &c2c_entry_ops,
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200151 &al, NULL, NULL, mi,
152 sample, true);
153 if (he == NULL)
154 goto free_mi_dup;
155
Jiri Olsab2252ae2016-09-22 17:36:46 +0200156 c2c_he = container_of(he, struct c2c_hist_entry, he);
157 c2c_add_stats(&c2c_he->stats, &stats);
158 c2c_add_stats(&c2c_hists->stats, &stats);
159
160 hists__inc_nr_samples(&c2c_hists->hists, he->filtered);
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200161 ret = hist_entry__append_callchain(he, sample);
162 }
163
164out:
Jiri Olsa78b27542016-09-22 17:36:44 +0200165 addr_location__put(&al);
166 return ret;
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200167
168free_mi_dup:
169 free(mi_dup);
170free_mi:
171 free(mi);
172 ret = -ENOMEM;
173 goto out;
Jiri Olsa78b27542016-09-22 17:36:44 +0200174}
175
176static struct perf_c2c c2c = {
177 .tool = {
178 .sample = process_sample_event,
179 .mmap = perf_event__process_mmap,
180 .mmap2 = perf_event__process_mmap2,
181 .comm = perf_event__process_comm,
182 .exit = perf_event__process_exit,
183 .fork = perf_event__process_fork,
184 .lost = perf_event__process_lost,
185 .ordered_events = true,
186 .ordering_requires_timestamps = true,
187 },
188};
189
Jiri Olsa7aef3bf2016-09-22 17:36:38 +0200190static const char * const c2c_usage[] = {
Jiri Olsa903a6f12016-09-22 17:36:40 +0200191 "perf c2c {record|report}",
Jiri Olsa7aef3bf2016-09-22 17:36:38 +0200192 NULL
193};
194
Jiri Olsa903a6f12016-09-22 17:36:40 +0200195static const char * const __usage_report[] = {
196 "perf c2c report",
197 NULL
198};
199
200static const char * const *report_c2c_usage = __usage_report;
201
Jiri Olsac75540e2016-09-22 17:36:41 +0200202#define C2C_HEADER_MAX 2
203
204struct c2c_header {
205 struct {
206 const char *text;
207 int span;
208 } line[C2C_HEADER_MAX];
209};
210
211struct c2c_dimension {
212 struct c2c_header header;
213 const char *name;
214 int width;
Jiri Olsa8d3f9382016-09-22 17:36:42 +0200215 struct sort_entry *se;
Jiri Olsac75540e2016-09-22 17:36:41 +0200216
217 int64_t (*cmp)(struct perf_hpp_fmt *fmt,
218 struct hist_entry *, struct hist_entry *);
219 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
220 struct hist_entry *he);
221 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
222 struct hist_entry *he);
223};
224
225struct c2c_fmt {
226 struct perf_hpp_fmt fmt;
227 struct c2c_dimension *dim;
228};
229
230static int c2c_width(struct perf_hpp_fmt *fmt,
231 struct perf_hpp *hpp __maybe_unused,
232 struct hists *hists __maybe_unused)
233{
234 struct c2c_fmt *c2c_fmt;
Jiri Olsac75540e2016-09-22 17:36:41 +0200235 struct c2c_dimension *dim;
Jiri Olsac75540e2016-09-22 17:36:41 +0200236
237 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
238 dim = c2c_fmt->dim;
239
Jiri Olsa8d3f9382016-09-22 17:36:42 +0200240 return dim->se ? hists__col_len(hists, dim->se->se_width_idx) :
241 c2c_fmt->dim->width;
242}
243
244static int c2c_header(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
245 struct hists *hists, int line, int *span)
246{
247 struct perf_hpp_list *hpp_list = hists->hpp_list;
248 struct c2c_fmt *c2c_fmt;
249 struct c2c_dimension *dim;
250 const char *text = NULL;
251 int width = c2c_width(fmt, hpp, hists);
252
253 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
254 dim = c2c_fmt->dim;
255
256 if (dim->se) {
257 text = dim->header.line[line].text;
258 /* Use the last line from sort_entry if not defined. */
259 if (!text && (line == hpp_list->nr_header_lines - 1))
260 text = dim->se->se_header;
261 } else {
262 text = dim->header.line[line].text;
263
264 if (*span) {
265 (*span)--;
266 return 0;
267 } else {
268 *span = dim->header.line[line].span;
269 }
270 }
271
Jiri Olsac75540e2016-09-22 17:36:41 +0200272 if (text == NULL)
273 text = "";
274
Jiri Olsa8d3f9382016-09-22 17:36:42 +0200275 return scnprintf(hpp->buf, hpp->size, "%*s", width, text);
Jiri Olsac75540e2016-09-22 17:36:41 +0200276}
277
Jiri Olsacbb88502016-09-22 17:36:48 +0200278#define HEX_STR(__s, __v) \
279({ \
280 scnprintf(__s, sizeof(__s), "0x%" PRIx64, __v); \
281 __s; \
282})
283
284static int64_t
285dcacheline_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
286 struct hist_entry *left, struct hist_entry *right)
287{
288 return sort__dcacheline_cmp(left, right);
289}
290
291static int dcacheline_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
292 struct hist_entry *he)
293{
294 uint64_t addr = 0;
295 int width = c2c_width(fmt, hpp, he->hists);
296 char buf[20];
297
298 if (he->mem_info)
299 addr = cl_address(he->mem_info->daddr.addr);
300
301 return scnprintf(hpp->buf, hpp->size, "%*s", width, HEX_STR(buf, addr));
302}
303
Jiri Olsa48acdeb2016-04-29 14:37:06 +0200304static int offset_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
305 struct hist_entry *he)
306{
307 uint64_t addr = 0;
308 int width = c2c_width(fmt, hpp, he->hists);
309 char buf[20];
310
311 if (he->mem_info)
312 addr = cl_offset(he->mem_info->daddr.al_addr);
313
314 return scnprintf(hpp->buf, hpp->size, "%*s", width, HEX_STR(buf, addr));
315}
316
317static int64_t
318offset_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
319 struct hist_entry *left, struct hist_entry *right)
320{
321 uint64_t l = 0, r = 0;
322
323 if (left->mem_info)
324 l = cl_offset(left->mem_info->daddr.addr);
325 if (right->mem_info)
326 r = cl_offset(right->mem_info->daddr.addr);
327
328 return (int64_t)(r - l);
329}
330
Jiri Olsa43575a92016-05-03 21:48:56 +0200331static int
332iaddr_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
333 struct hist_entry *he)
334{
335 uint64_t addr = 0;
336 int width = c2c_width(fmt, hpp, he->hists);
337 char buf[20];
338
339 if (he->mem_info)
340 addr = he->mem_info->iaddr.addr;
341
342 return scnprintf(hpp->buf, hpp->size, "%*s", width, HEX_STR(buf, addr));
343}
344
345static int64_t
346iaddr_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
347 struct hist_entry *left, struct hist_entry *right)
348{
349 return sort__iaddr_cmp(left, right);
350}
351
Jiri Olsa97cb4862016-05-23 16:20:14 +0200352static int
353tot_hitm_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
354 struct hist_entry *he)
355{
356 struct c2c_hist_entry *c2c_he;
357 int width = c2c_width(fmt, hpp, he->hists);
358 unsigned int tot_hitm;
359
360 c2c_he = container_of(he, struct c2c_hist_entry, he);
361 tot_hitm = c2c_he->stats.lcl_hitm + c2c_he->stats.rmt_hitm;
362
363 return scnprintf(hpp->buf, hpp->size, "%*u", width, tot_hitm);
364}
365
366static int64_t
367tot_hitm_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
368 struct hist_entry *left, struct hist_entry *right)
369{
370 struct c2c_hist_entry *c2c_left;
371 struct c2c_hist_entry *c2c_right;
372 unsigned int tot_hitm_left;
373 unsigned int tot_hitm_right;
374
375 c2c_left = container_of(left, struct c2c_hist_entry, he);
376 c2c_right = container_of(right, struct c2c_hist_entry, he);
377
378 tot_hitm_left = c2c_left->stats.lcl_hitm + c2c_left->stats.rmt_hitm;
379 tot_hitm_right = c2c_right->stats.lcl_hitm + c2c_right->stats.rmt_hitm;
380
381 return tot_hitm_left - tot_hitm_right;
382}
383
384#define STAT_FN_ENTRY(__f) \
385static int \
386__f ## _entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, \
387 struct hist_entry *he) \
388{ \
389 struct c2c_hist_entry *c2c_he; \
390 int width = c2c_width(fmt, hpp, he->hists); \
391 \
392 c2c_he = container_of(he, struct c2c_hist_entry, he); \
393 return scnprintf(hpp->buf, hpp->size, "%*u", width, \
394 c2c_he->stats.__f); \
395}
396
397#define STAT_FN_CMP(__f) \
398static int64_t \
399__f ## _cmp(struct perf_hpp_fmt *fmt __maybe_unused, \
400 struct hist_entry *left, struct hist_entry *right) \
401{ \
402 struct c2c_hist_entry *c2c_left, *c2c_right; \
403 \
404 c2c_left = container_of(left, struct c2c_hist_entry, he); \
405 c2c_right = container_of(right, struct c2c_hist_entry, he); \
406 return c2c_left->stats.__f - c2c_right->stats.__f; \
407}
408
409#define STAT_FN(__f) \
410 STAT_FN_ENTRY(__f) \
411 STAT_FN_CMP(__f)
412
413STAT_FN(rmt_hitm)
414STAT_FN(lcl_hitm)
415
Jiri Olsa600a8cf2016-09-22 17:36:47 +0200416#define HEADER_LOW(__h) \
417 { \
418 .line[1] = { \
419 .text = __h, \
420 }, \
421 }
422
423#define HEADER_BOTH(__h0, __h1) \
424 { \
425 .line[0] = { \
426 .text = __h0, \
427 }, \
428 .line[1] = { \
429 .text = __h1, \
430 }, \
431 }
432
433#define HEADER_SPAN(__h0, __h1, __s) \
434 { \
435 .line[0] = { \
436 .text = __h0, \
437 .span = __s, \
438 }, \
439 .line[1] = { \
440 .text = __h1, \
441 }, \
442 }
443
444#define HEADER_SPAN_LOW(__h) \
445 { \
446 .line[1] = { \
447 .text = __h, \
448 }, \
449 }
450
Jiri Olsacbb88502016-09-22 17:36:48 +0200451static struct c2c_dimension dim_dcacheline = {
452 .header = HEADER_LOW("Cacheline"),
453 .name = "dcacheline",
454 .cmp = dcacheline_cmp,
455 .entry = dcacheline_entry,
456 .width = 18,
457};
458
Jiri Olsa48acdeb2016-04-29 14:37:06 +0200459static struct c2c_dimension dim_offset = {
460 .header = HEADER_BOTH("Data address", "Offset"),
461 .name = "offset",
462 .cmp = offset_cmp,
463 .entry = offset_entry,
464 .width = 18,
465};
466
Jiri Olsa43575a92016-05-03 21:48:56 +0200467static struct c2c_dimension dim_iaddr = {
468 .header = HEADER_LOW("Code address"),
469 .name = "iaddr",
470 .cmp = iaddr_cmp,
471 .entry = iaddr_entry,
472 .width = 18,
473};
474
Jiri Olsa97cb4862016-05-23 16:20:14 +0200475static struct c2c_dimension dim_tot_hitm = {
476 .header = HEADER_SPAN("----- LLC Load Hitm -----", "Total", 2),
477 .name = "tot_hitm",
478 .cmp = tot_hitm_cmp,
479 .entry = tot_hitm_entry,
480 .width = 7,
481};
482
483static struct c2c_dimension dim_lcl_hitm = {
484 .header = HEADER_SPAN_LOW("Lcl"),
485 .name = "lcl_hitm",
486 .cmp = lcl_hitm_cmp,
487 .entry = lcl_hitm_entry,
488 .width = 7,
489};
490
491static struct c2c_dimension dim_rmt_hitm = {
492 .header = HEADER_SPAN_LOW("Rmt"),
493 .name = "rmt_hitm",
494 .cmp = rmt_hitm_cmp,
495 .entry = rmt_hitm_entry,
496 .width = 7,
497};
498
499static struct c2c_dimension dim_cl_rmt_hitm = {
500 .header = HEADER_SPAN("----- HITM -----", "Rmt", 1),
501 .name = "cl_rmt_hitm",
502 .cmp = rmt_hitm_cmp,
503 .entry = rmt_hitm_entry,
504 .width = 7,
505};
506
507static struct c2c_dimension dim_cl_lcl_hitm = {
508 .header = HEADER_SPAN_LOW("Lcl"),
509 .name = "cl_lcl_hitm",
510 .cmp = lcl_hitm_cmp,
511 .entry = lcl_hitm_entry,
512 .width = 7,
513};
514
Jiri Olsac75540e2016-09-22 17:36:41 +0200515static struct c2c_dimension *dimensions[] = {
Jiri Olsacbb88502016-09-22 17:36:48 +0200516 &dim_dcacheline,
Jiri Olsa48acdeb2016-04-29 14:37:06 +0200517 &dim_offset,
Jiri Olsa43575a92016-05-03 21:48:56 +0200518 &dim_iaddr,
Jiri Olsa97cb4862016-05-23 16:20:14 +0200519 &dim_tot_hitm,
520 &dim_lcl_hitm,
521 &dim_rmt_hitm,
522 &dim_cl_lcl_hitm,
523 &dim_cl_rmt_hitm,
Jiri Olsac75540e2016-09-22 17:36:41 +0200524 NULL,
525};
526
527static void fmt_free(struct perf_hpp_fmt *fmt)
528{
529 struct c2c_fmt *c2c_fmt;
530
531 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
532 free(c2c_fmt);
533}
534
535static bool fmt_equal(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b)
536{
537 struct c2c_fmt *c2c_a = container_of(a, struct c2c_fmt, fmt);
538 struct c2c_fmt *c2c_b = container_of(b, struct c2c_fmt, fmt);
539
540 return c2c_a->dim == c2c_b->dim;
541}
542
543static struct c2c_dimension *get_dimension(const char *name)
544{
545 unsigned int i;
546
547 for (i = 0; dimensions[i]; i++) {
548 struct c2c_dimension *dim = dimensions[i];
549
550 if (!strcmp(dim->name, name))
551 return dim;
552 };
553
554 return NULL;
555}
556
Jiri Olsa8d3f9382016-09-22 17:36:42 +0200557static int c2c_se_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
558 struct hist_entry *he)
559{
560 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
561 struct c2c_dimension *dim = c2c_fmt->dim;
562 size_t len = fmt->user_len;
563
564 if (!len)
565 len = hists__col_len(he->hists, dim->se->se_width_idx);
566
567 return dim->se->se_snprintf(he, hpp->buf, hpp->size, len);
568}
569
570static int64_t c2c_se_cmp(struct perf_hpp_fmt *fmt,
571 struct hist_entry *a, struct hist_entry *b)
572{
573 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
574 struct c2c_dimension *dim = c2c_fmt->dim;
575
576 return dim->se->se_cmp(a, b);
577}
578
579static int64_t c2c_se_collapse(struct perf_hpp_fmt *fmt,
580 struct hist_entry *a, struct hist_entry *b)
581{
582 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
583 struct c2c_dimension *dim = c2c_fmt->dim;
584 int64_t (*collapse_fn)(struct hist_entry *, struct hist_entry *);
585
586 collapse_fn = dim->se->se_collapse ?: dim->se->se_cmp;
587 return collapse_fn(a, b);
588}
589
Jiri Olsac75540e2016-09-22 17:36:41 +0200590static struct c2c_fmt *get_format(const char *name)
591{
592 struct c2c_dimension *dim = get_dimension(name);
593 struct c2c_fmt *c2c_fmt;
594 struct perf_hpp_fmt *fmt;
595
596 if (!dim)
597 return NULL;
598
599 c2c_fmt = zalloc(sizeof(*c2c_fmt));
600 if (!c2c_fmt)
601 return NULL;
602
603 c2c_fmt->dim = dim;
604
605 fmt = &c2c_fmt->fmt;
606 INIT_LIST_HEAD(&fmt->list);
607 INIT_LIST_HEAD(&fmt->sort_list);
608
Jiri Olsa8d3f9382016-09-22 17:36:42 +0200609 fmt->cmp = dim->se ? c2c_se_cmp : dim->cmp;
610 fmt->sort = dim->se ? c2c_se_cmp : dim->cmp;
611 fmt->entry = dim->se ? c2c_se_entry : dim->entry;
Jiri Olsac75540e2016-09-22 17:36:41 +0200612 fmt->header = c2c_header;
613 fmt->width = c2c_width;
Jiri Olsa8d3f9382016-09-22 17:36:42 +0200614 fmt->collapse = dim->se ? c2c_se_collapse : dim->cmp;
Jiri Olsac75540e2016-09-22 17:36:41 +0200615 fmt->equal = fmt_equal;
616 fmt->free = fmt_free;
617
618 return c2c_fmt;
619}
620
621static int c2c_hists__init_output(struct perf_hpp_list *hpp_list, char *name)
622{
623 struct c2c_fmt *c2c_fmt = get_format(name);
624
Jiri Olsa5f2eca82016-09-22 17:36:43 +0200625 if (!c2c_fmt) {
626 reset_dimensions();
627 return output_field_add(hpp_list, name);
628 }
Jiri Olsac75540e2016-09-22 17:36:41 +0200629
630 perf_hpp_list__column_register(hpp_list, &c2c_fmt->fmt);
631 return 0;
632}
633
634static int c2c_hists__init_sort(struct perf_hpp_list *hpp_list, char *name)
635{
636 struct c2c_fmt *c2c_fmt = get_format(name);
637
Jiri Olsa5f2eca82016-09-22 17:36:43 +0200638 if (!c2c_fmt) {
639 reset_dimensions();
640 return sort_dimension__add(hpp_list, name, NULL, 0);
641 }
Jiri Olsac75540e2016-09-22 17:36:41 +0200642
643 perf_hpp_list__register_sort_field(hpp_list, &c2c_fmt->fmt);
644 return 0;
645}
646
647#define PARSE_LIST(_list, _fn) \
648 do { \
649 char *tmp, *tok; \
650 ret = 0; \
651 \
652 if (!_list) \
653 break; \
654 \
655 for (tok = strtok_r((char *)_list, ", ", &tmp); \
656 tok; tok = strtok_r(NULL, ", ", &tmp)) { \
657 ret = _fn(hpp_list, tok); \
658 if (ret == -EINVAL) { \
659 error("Invalid --fields key: `%s'", tok); \
660 break; \
661 } else if (ret == -ESRCH) { \
662 error("Unknown --fields key: `%s'", tok); \
663 break; \
664 } \
665 } \
666 } while (0)
667
668static int hpp_list__parse(struct perf_hpp_list *hpp_list,
669 const char *output_,
670 const char *sort_)
671{
672 char *output = output_ ? strdup(output_) : NULL;
673 char *sort = sort_ ? strdup(sort_) : NULL;
674 int ret;
675
676 PARSE_LIST(output, c2c_hists__init_output);
677 PARSE_LIST(sort, c2c_hists__init_sort);
678
679 /* copy sort keys to output fields */
680 perf_hpp__setup_output_field(hpp_list);
681
682 /*
683 * We dont need other sorting keys other than those
684 * we already specified. It also really slows down
685 * the processing a lot with big number of output
686 * fields, so switching this off for c2c.
687 */
688
689#if 0
690 /* and then copy output fields to sort keys */
691 perf_hpp__append_sort_keys(&hists->list);
692#endif
693
694 free(output);
695 free(sort);
696 return ret;
697}
698
699static int c2c_hists__init(struct c2c_hists *hists,
700 const char *sort)
701{
702 __hists__init(&hists->hists, &hists->list);
703
704 /*
705 * Initialize only with sort fields, we need to resort
706 * later anyway, and that's where we add output fields
707 * as well.
708 */
709 perf_hpp_list__init(&hists->list);
710
711 return hpp_list__parse(&hists->list, NULL, sort);
712}
713
714__maybe_unused
715static int c2c_hists__reinit(struct c2c_hists *c2c_hists,
716 const char *output,
717 const char *sort)
718{
719 perf_hpp__reset_output_field(&c2c_hists->list);
720 return hpp_list__parse(&c2c_hists->list, output, sort);
721}
722
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200723static int filter_cb(struct hist_entry *he __maybe_unused)
724{
725 return 0;
726}
727
728static int resort_cl_cb(struct hist_entry *he)
729{
730 struct c2c_hist_entry *c2c_he;
731 struct c2c_hists *c2c_hists;
732
733 c2c_he = container_of(he, struct c2c_hist_entry, he);
734 c2c_hists = c2c_he->hists;
735
736 if (c2c_hists) {
737 hists__collapse_resort(&c2c_hists->hists, NULL);
738 hists__output_resort_cb(&c2c_hists->hists, NULL, filter_cb);
739 }
740
741 return 0;
742}
743
Jiri Olsa903a6f12016-09-22 17:36:40 +0200744static int perf_c2c__report(int argc, const char **argv)
745{
746 struct perf_session *session;
Jiri Olsa78b27542016-09-22 17:36:44 +0200747 struct ui_progress prog;
Jiri Olsa903a6f12016-09-22 17:36:40 +0200748 struct perf_data_file file = {
749 .mode = PERF_DATA_MODE_READ,
750 };
751 const struct option c2c_options[] = {
752 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
753 "file", "vmlinux pathname"),
754 OPT_INCR('v', "verbose", &verbose,
755 "be more verbose (show counter open errors, etc)"),
756 OPT_STRING('i', "input", &input_name, "file",
757 "the input file to process"),
758 OPT_END()
759 };
760 int err = 0;
761
762 argc = parse_options(argc, argv, c2c_options, report_c2c_usage,
763 PARSE_OPT_STOP_AT_NON_OPTION);
Jiri Olsa78b27542016-09-22 17:36:44 +0200764 if (argc)
Jiri Olsa903a6f12016-09-22 17:36:40 +0200765 usage_with_options(report_c2c_usage, c2c_options);
766
Jiri Olsa78b27542016-09-22 17:36:44 +0200767 if (!input_name || !strlen(input_name))
768 input_name = "perf.data";
769
Jiri Olsa903a6f12016-09-22 17:36:40 +0200770 file.path = input_name;
771
Jiri Olsac75540e2016-09-22 17:36:41 +0200772 err = c2c_hists__init(&c2c.hists, "dcacheline");
773 if (err) {
774 pr_debug("Failed to initialize hists\n");
775 goto out;
776 }
777
Jiri Olsa903a6f12016-09-22 17:36:40 +0200778 session = perf_session__new(&file, 0, &c2c.tool);
779 if (session == NULL) {
780 pr_debug("No memory for session\n");
781 goto out;
782 }
783
784 if (symbol__init(&session->header.env) < 0)
785 goto out_session;
786
787 /* No pipe support at the moment. */
788 if (perf_data_file__is_pipe(session->file)) {
789 pr_debug("No pipe support at the moment.\n");
790 goto out_session;
791 }
792
Jiri Olsa78b27542016-09-22 17:36:44 +0200793 err = perf_session__process_events(session);
794 if (err) {
795 pr_err("failed to process sample\n");
796 goto out_session;
797 }
798
799 ui_progress__init(&prog, c2c.hists.hists.nr_entries, "Sorting...");
800
801 hists__collapse_resort(&c2c.hists.hists, NULL);
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200802 hists__output_resort_cb(&c2c.hists.hists, &prog, resort_cl_cb);
Jiri Olsa78b27542016-09-22 17:36:44 +0200803
804 ui_progress__finish();
805
Jiri Olsa903a6f12016-09-22 17:36:40 +0200806out_session:
807 perf_session__delete(session);
808out:
809 return err;
810}
811
Jiri Olsa39bcd4a2016-09-22 17:36:39 +0200812static int parse_record_events(const struct option *opt __maybe_unused,
813 const char *str, int unset __maybe_unused)
814{
815 bool *event_set = (bool *) opt->value;
816
817 *event_set = true;
818 return perf_mem_events__parse(str);
819}
820
821
822static const char * const __usage_record[] = {
823 "perf c2c record [<options>] [<command>]",
824 "perf c2c record [<options>] -- <command> [<options>]",
825 NULL
826};
827
828static const char * const *record_mem_usage = __usage_record;
829
830static int perf_c2c__record(int argc, const char **argv)
831{
832 int rec_argc, i = 0, j;
833 const char **rec_argv;
834 int ret;
835 bool all_user = false, all_kernel = false;
836 bool event_set = false;
837 struct option options[] = {
838 OPT_CALLBACK('e', "event", &event_set, "event",
839 "event selector. Use 'perf mem record -e list' to list available events",
840 parse_record_events),
841 OPT_INCR('v', "verbose", &verbose,
842 "be more verbose (show counter open errors, etc)"),
843 OPT_BOOLEAN('u', "all-user", &all_user, "collect only user level data"),
844 OPT_BOOLEAN('k', "all-kernel", &all_kernel, "collect only kernel level data"),
845 OPT_UINTEGER('l', "ldlat", &perf_mem_events__loads_ldlat, "setup mem-loads latency"),
846 OPT_END()
847 };
848
849 if (perf_mem_events__init()) {
850 pr_err("failed: memory events not supported\n");
851 return -1;
852 }
853
854 argc = parse_options(argc, argv, options, record_mem_usage,
855 PARSE_OPT_KEEP_UNKNOWN);
856
857 rec_argc = argc + 10; /* max number of arguments */
858 rec_argv = calloc(rec_argc + 1, sizeof(char *));
859 if (!rec_argv)
860 return -1;
861
862 rec_argv[i++] = "record";
863
864 if (!event_set) {
865 perf_mem_events[PERF_MEM_EVENTS__LOAD].record = true;
866 perf_mem_events[PERF_MEM_EVENTS__STORE].record = true;
867 }
868
869 if (perf_mem_events[PERF_MEM_EVENTS__LOAD].record)
870 rec_argv[i++] = "-W";
871
872 rec_argv[i++] = "-d";
873 rec_argv[i++] = "--sample-cpu";
874
875 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
876 if (!perf_mem_events[j].record)
877 continue;
878
879 if (!perf_mem_events[j].supported) {
880 pr_err("failed: event '%s' not supported\n",
881 perf_mem_events[j].name);
882 return -1;
883 }
884
885 rec_argv[i++] = "-e";
886 rec_argv[i++] = perf_mem_events__name(j);
887 };
888
889 if (all_user)
890 rec_argv[i++] = "--all-user";
891
892 if (all_kernel)
893 rec_argv[i++] = "--all-kernel";
894
895 for (j = 0; j < argc; j++, i++)
896 rec_argv[i] = argv[j];
897
898 if (verbose > 0) {
899 pr_debug("calling: ");
900
901 j = 0;
902
903 while (rec_argv[j]) {
904 pr_debug("%s ", rec_argv[j]);
905 j++;
906 }
907 pr_debug("\n");
908 }
909
910 ret = cmd_record(i, rec_argv, NULL);
911 free(rec_argv);
912 return ret;
913}
914
Jiri Olsa7aef3bf2016-09-22 17:36:38 +0200915int cmd_c2c(int argc, const char **argv, const char *prefix __maybe_unused)
916{
917 const struct option c2c_options[] = {
918 OPT_INCR('v', "verbose", &verbose, "be more verbose"),
919 OPT_END()
920 };
921
922 argc = parse_options(argc, argv, c2c_options, c2c_usage,
923 PARSE_OPT_STOP_AT_NON_OPTION);
Jiri Olsa39bcd4a2016-09-22 17:36:39 +0200924
925 if (!argc)
926 usage_with_options(c2c_usage, c2c_options);
927
928 if (!strncmp(argv[0], "rec", 3)) {
929 return perf_c2c__record(argc, argv);
Jiri Olsa903a6f12016-09-22 17:36:40 +0200930 } else if (!strncmp(argv[0], "rep", 3)) {
931 return perf_c2c__report(argc, argv);
Jiri Olsa39bcd4a2016-09-22 17:36:39 +0200932 } else {
933 usage_with_options(c2c_usage, c2c_options);
934 }
935
Jiri Olsa7aef3bf2016-09-22 17:36:38 +0200936 return 0;
937}