blob: 620a467ee3043c5cadfedd02c87c0195bb681413 [file] [log] [blame]
Jiri Olsa465f27a2016-08-26 10:36:12 +02001/*
2 * This is rewrite of original c2c tool introduced in here:
3 * http://lwn.net/Articles/588866/
4 *
5 * The original tool was changed to fit in current perf state.
6 *
7 * Original authors:
8 * Don Zickus <dzickus@redhat.com>
9 * Dick Fowles <fowles@inreach.com>
10 * Joe Mario <jmario@redhat.com>
11 */
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030012#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030013#include <inttypes.h>
Jiri Olsa7aef3bf2016-09-22 17:36:38 +020014#include <linux/compiler.h>
15#include <linux/kernel.h>
Jiri Olsacbb88502016-09-22 17:36:48 +020016#include <linux/stringify.h>
Jiri Olsa1e181b92016-06-03 15:40:28 +020017#include <asm/bug.h>
Arnaldo Carvalho de Melo391e4202017-04-19 18:51:14 -030018#include <sys/param.h>
Jiri Olsa7aef3bf2016-09-22 17:36:38 +020019#include "util.h"
20#include "debug.h"
21#include "builtin.h"
22#include <subcmd/parse-options.h>
Jiri Olsa39bcd4a2016-09-22 17:36:39 +020023#include "mem-events.h"
Jiri Olsa903a6f12016-09-22 17:36:40 +020024#include "session.h"
25#include "hist.h"
Jiri Olsacbb88502016-09-22 17:36:48 +020026#include "sort.h"
Jiri Olsa903a6f12016-09-22 17:36:40 +020027#include "tool.h"
28#include "data.h"
Jiri Olsa8d3f9382016-09-22 17:36:42 +020029#include "sort.h"
Arnaldo Carvalho de Melo5ab8c682017-04-25 15:30:47 -030030#include "event.h"
Jiri Olsa2709b972016-08-27 11:40:23 +020031#include "evlist.h"
32#include "evsel.h"
Jiri Olsa2d388bd2016-05-03 14:32:56 +020033#include <asm/bug.h>
Jiri Olsa5a1a99c2016-01-06 16:59:02 +010034#include "ui/browsers/hists.h"
Jiri Olsadd805762016-05-11 18:23:48 +020035#include "evlist.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030036#include "thread.h"
Jiri Olsa903a6f12016-09-22 17:36:40 +020037
Jiri Olsac75540e2016-09-22 17:36:41 +020038struct c2c_hists {
39 struct hists hists;
40 struct perf_hpp_list list;
Jiri Olsab2252ae2016-09-22 17:36:46 +020041 struct c2c_stats stats;
Jiri Olsac75540e2016-09-22 17:36:41 +020042};
43
Jiri Olsa92062d52016-06-05 13:40:53 +020044struct compute_stats {
45 struct stats lcl_hitm;
46 struct stats rmt_hitm;
47 struct stats load;
48};
49
Jiri Olsa78b27542016-09-22 17:36:44 +020050struct c2c_hist_entry {
51 struct c2c_hists *hists;
Jiri Olsab2252ae2016-09-22 17:36:46 +020052 struct c2c_stats stats;
Jiri Olsa1e181b92016-06-03 15:40:28 +020053 unsigned long *cpuset;
54 struct c2c_stats *node_stats;
Jiri Olsabb342da2016-07-06 15:40:09 +020055 unsigned int cacheline_idx;
Jiri Olsa92062d52016-06-05 13:40:53 +020056
57 struct compute_stats cstats;
58
Jiri Olsa78b27542016-09-22 17:36:44 +020059 /*
60 * must be at the end,
61 * because of its callchain dynamic entry
62 */
63 struct hist_entry he;
64};
65
Jiri Olsa190bacc2017-01-20 10:20:32 +010066static char const *coalesce_default = "pid,iaddr";
Jiri Olsafc9c6302016-05-24 14:14:38 +020067
Jiri Olsa903a6f12016-09-22 17:36:40 +020068struct perf_c2c {
Jiri Olsac75540e2016-09-22 17:36:41 +020069 struct perf_tool tool;
70 struct c2c_hists hists;
Jiri Olsa1e181b92016-06-03 15:40:28 +020071
72 unsigned long **nodes;
73 int nodes_cnt;
74 int cpus_cnt;
75 int *cpu2node;
76 int node_info;
Jiri Olsa89d9ba8f2016-07-10 15:47:40 +020077
78 bool show_src;
Jiri Olsaaf09b2d2016-10-11 13:52:05 +020079 bool show_all;
Jiri Olsa5a1a99c2016-01-06 16:59:02 +010080 bool use_stdio;
Jiri Olsa74c63a22016-05-02 20:01:59 +020081 bool stats_only;
Jiri Olsa590b6a32016-07-10 16:25:15 +020082 bool symbol_full;
Jiri Olsa7ef2efa2016-07-01 11:12:11 +020083
84 /* HITM shared clines stats */
85 struct c2c_stats hitm_stats;
86 int shared_clines;
Jiri Olsa55b95772016-05-29 10:21:45 +020087
88 int display;
Jiri Olsafc9c6302016-05-24 14:14:38 +020089
90 const char *coalesce;
91 char *cl_sort;
92 char *cl_resort;
93 char *cl_output;
Jiri Olsa55b95772016-05-29 10:21:45 +020094};
95
96enum {
97 DISPLAY_LCL,
98 DISPLAY_RMT,
Jiri Olsad940bac2016-11-21 22:33:30 +010099 DISPLAY_TOT,
100 DISPLAY_MAX,
101};
102
103static const char *display_str[DISPLAY_MAX] = {
104 [DISPLAY_LCL] = "Local",
105 [DISPLAY_RMT] = "Remote",
106 [DISPLAY_TOT] = "Total",
Jiri Olsa903a6f12016-09-22 17:36:40 +0200107};
108
Jiri Olsa3a5bfab2016-11-21 22:33:31 +0100109static const struct option c2c_options[] = {
110 OPT_INCR('v', "verbose", &verbose, "be more verbose (show counter open errors, etc)"),
111 OPT_END()
112};
113
Jiri Olsa903a6f12016-09-22 17:36:40 +0200114static struct perf_c2c c2c;
Jiri Olsa7aef3bf2016-09-22 17:36:38 +0200115
Jiri Olsa78b27542016-09-22 17:36:44 +0200116static void *c2c_he_zalloc(size_t size)
117{
118 struct c2c_hist_entry *c2c_he;
119
120 c2c_he = zalloc(size + sizeof(*c2c_he));
121 if (!c2c_he)
122 return NULL;
123
Jiri Olsa1e181b92016-06-03 15:40:28 +0200124 c2c_he->cpuset = bitmap_alloc(c2c.cpus_cnt);
125 if (!c2c_he->cpuset)
126 return NULL;
127
128 c2c_he->node_stats = zalloc(c2c.nodes_cnt * sizeof(*c2c_he->node_stats));
129 if (!c2c_he->node_stats)
130 return NULL;
131
Jiri Olsa92062d52016-06-05 13:40:53 +0200132 init_stats(&c2c_he->cstats.lcl_hitm);
133 init_stats(&c2c_he->cstats.rmt_hitm);
134 init_stats(&c2c_he->cstats.load);
135
Jiri Olsa78b27542016-09-22 17:36:44 +0200136 return &c2c_he->he;
137}
138
139static void c2c_he_free(void *he)
140{
141 struct c2c_hist_entry *c2c_he;
142
143 c2c_he = container_of(he, struct c2c_hist_entry, he);
144 if (c2c_he->hists) {
145 hists__delete_entries(&c2c_he->hists->hists);
146 free(c2c_he->hists);
147 }
148
Jiri Olsa1e181b92016-06-03 15:40:28 +0200149 free(c2c_he->cpuset);
150 free(c2c_he->node_stats);
Jiri Olsa78b27542016-09-22 17:36:44 +0200151 free(c2c_he);
152}
153
154static struct hist_entry_ops c2c_entry_ops = {
155 .new = c2c_he_zalloc,
156 .free = c2c_he_free,
157};
158
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200159static int c2c_hists__init(struct c2c_hists *hists,
Jiri Olsa1d62fcd2016-05-24 10:12:31 +0200160 const char *sort,
161 int nr_header_lines);
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200162
Jiri Olsab2252ae2016-09-22 17:36:46 +0200163static struct c2c_hists*
164he__get_c2c_hists(struct hist_entry *he,
Jiri Olsa1d62fcd2016-05-24 10:12:31 +0200165 const char *sort,
166 int nr_header_lines)
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200167{
168 struct c2c_hist_entry *c2c_he;
169 struct c2c_hists *hists;
170 int ret;
171
172 c2c_he = container_of(he, struct c2c_hist_entry, he);
173 if (c2c_he->hists)
Jiri Olsab2252ae2016-09-22 17:36:46 +0200174 return c2c_he->hists;
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200175
176 hists = c2c_he->hists = zalloc(sizeof(*hists));
177 if (!hists)
178 return NULL;
179
Jiri Olsa1d62fcd2016-05-24 10:12:31 +0200180 ret = c2c_hists__init(hists, sort, nr_header_lines);
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200181 if (ret) {
182 free(hists);
183 return NULL;
184 }
185
Jiri Olsab2252ae2016-09-22 17:36:46 +0200186 return hists;
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200187}
188
Jiri Olsa1e181b92016-06-03 15:40:28 +0200189static void c2c_he__set_cpu(struct c2c_hist_entry *c2c_he,
190 struct perf_sample *sample)
191{
192 if (WARN_ONCE(sample->cpu == (unsigned int) -1,
193 "WARNING: no sample cpu value"))
194 return;
195
196 set_bit(sample->cpu, c2c_he->cpuset);
197}
198
Jiri Olsa92062d52016-06-05 13:40:53 +0200199static void compute_stats(struct c2c_hist_entry *c2c_he,
200 struct c2c_stats *stats,
201 u64 weight)
202{
203 struct compute_stats *cstats = &c2c_he->cstats;
204
205 if (stats->rmt_hitm)
206 update_stats(&cstats->rmt_hitm, weight);
207 else if (stats->lcl_hitm)
208 update_stats(&cstats->lcl_hitm, weight);
209 else if (stats->load)
210 update_stats(&cstats->load, weight);
211}
212
Jiri Olsa78b27542016-09-22 17:36:44 +0200213static int process_sample_event(struct perf_tool *tool __maybe_unused,
214 union perf_event *event,
215 struct perf_sample *sample,
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -0300216 struct perf_evsel *evsel,
Jiri Olsa78b27542016-09-22 17:36:44 +0200217 struct machine *machine)
218{
Jiri Olsab2252ae2016-09-22 17:36:46 +0200219 struct c2c_hists *c2c_hists = &c2c.hists;
220 struct c2c_hist_entry *c2c_he;
221 struct c2c_stats stats = { .nr_entries = 0, };
Jiri Olsa78b27542016-09-22 17:36:44 +0200222 struct hist_entry *he;
223 struct addr_location al;
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200224 struct mem_info *mi, *mi_dup;
Jiri Olsa78b27542016-09-22 17:36:44 +0200225 int ret;
226
227 if (machine__resolve(machine, &al, sample) < 0) {
228 pr_debug("problem processing %d event, skipping it.\n",
229 event->header.type);
230 return -1;
231 }
232
Jiri Olsadd805762016-05-11 18:23:48 +0200233 ret = sample__resolve_callchain(sample, &callchain_cursor, NULL,
234 evsel, &al, sysctl_perf_event_max_stack);
235 if (ret)
236 goto out;
237
Jiri Olsa78b27542016-09-22 17:36:44 +0200238 mi = sample__resolve_mem(sample, &al);
239 if (mi == NULL)
240 return -ENOMEM;
241
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200242 mi_dup = memdup(mi, sizeof(*mi));
243 if (!mi_dup)
244 goto free_mi;
245
Jiri Olsab2252ae2016-09-22 17:36:46 +0200246 c2c_decode_stats(&stats, mi);
247
248 he = hists__add_entry_ops(&c2c_hists->hists, &c2c_entry_ops,
Jiri Olsa78b27542016-09-22 17:36:44 +0200249 &al, NULL, NULL, mi,
250 sample, true);
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200251 if (he == NULL)
252 goto free_mi_dup;
Jiri Olsa78b27542016-09-22 17:36:44 +0200253
Jiri Olsab2252ae2016-09-22 17:36:46 +0200254 c2c_he = container_of(he, struct c2c_hist_entry, he);
255 c2c_add_stats(&c2c_he->stats, &stats);
256 c2c_add_stats(&c2c_hists->stats, &stats);
257
Jiri Olsa1e181b92016-06-03 15:40:28 +0200258 c2c_he__set_cpu(c2c_he, sample);
259
Jiri Olsab2252ae2016-09-22 17:36:46 +0200260 hists__inc_nr_samples(&c2c_hists->hists, he->filtered);
Jiri Olsa78b27542016-09-22 17:36:44 +0200261 ret = hist_entry__append_callchain(he, sample);
262
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200263 if (!ret) {
Jiri Olsa1e181b92016-06-03 15:40:28 +0200264 /*
265 * There's already been warning about missing
266 * sample's cpu value. Let's account all to
267 * node 0 in this case, without any further
268 * warning.
269 *
270 * Doing node stats only for single callchain data.
271 */
272 int cpu = sample->cpu == (unsigned int) -1 ? 0 : sample->cpu;
273 int node = c2c.cpu2node[cpu];
274
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200275 mi = mi_dup;
276
277 mi_dup = memdup(mi, sizeof(*mi));
278 if (!mi_dup)
279 goto free_mi;
280
Jiri Olsafc9c6302016-05-24 14:14:38 +0200281 c2c_hists = he__get_c2c_hists(he, c2c.cl_sort, 2);
Jiri Olsab2252ae2016-09-22 17:36:46 +0200282 if (!c2c_hists)
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200283 goto free_mi_dup;
284
Jiri Olsab2252ae2016-09-22 17:36:46 +0200285 he = hists__add_entry_ops(&c2c_hists->hists, &c2c_entry_ops,
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200286 &al, NULL, NULL, mi,
287 sample, true);
288 if (he == NULL)
289 goto free_mi_dup;
290
Jiri Olsab2252ae2016-09-22 17:36:46 +0200291 c2c_he = container_of(he, struct c2c_hist_entry, he);
292 c2c_add_stats(&c2c_he->stats, &stats);
293 c2c_add_stats(&c2c_hists->stats, &stats);
Jiri Olsa1e181b92016-06-03 15:40:28 +0200294 c2c_add_stats(&c2c_he->node_stats[node], &stats);
295
Jiri Olsa92062d52016-06-05 13:40:53 +0200296 compute_stats(c2c_he, &stats, sample->weight);
297
Jiri Olsa1e181b92016-06-03 15:40:28 +0200298 c2c_he__set_cpu(c2c_he, sample);
Jiri Olsab2252ae2016-09-22 17:36:46 +0200299
300 hists__inc_nr_samples(&c2c_hists->hists, he->filtered);
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200301 ret = hist_entry__append_callchain(he, sample);
302 }
303
304out:
Jiri Olsa78b27542016-09-22 17:36:44 +0200305 addr_location__put(&al);
306 return ret;
Jiri Olsaec06f9b2016-09-22 17:36:45 +0200307
308free_mi_dup:
309 free(mi_dup);
310free_mi:
311 free(mi);
312 ret = -ENOMEM;
313 goto out;
Jiri Olsa78b27542016-09-22 17:36:44 +0200314}
315
316static struct perf_c2c c2c = {
317 .tool = {
318 .sample = process_sample_event,
319 .mmap = perf_event__process_mmap,
320 .mmap2 = perf_event__process_mmap2,
321 .comm = perf_event__process_comm,
322 .exit = perf_event__process_exit,
323 .fork = perf_event__process_fork,
324 .lost = perf_event__process_lost,
325 .ordered_events = true,
326 .ordering_requires_timestamps = true,
327 },
328};
329
Jiri Olsa7aef3bf2016-09-22 17:36:38 +0200330static const char * const c2c_usage[] = {
Jiri Olsa903a6f12016-09-22 17:36:40 +0200331 "perf c2c {record|report}",
Jiri Olsa7aef3bf2016-09-22 17:36:38 +0200332 NULL
333};
334
Jiri Olsa903a6f12016-09-22 17:36:40 +0200335static const char * const __usage_report[] = {
336 "perf c2c report",
337 NULL
338};
339
340static const char * const *report_c2c_usage = __usage_report;
341
Jiri Olsac75540e2016-09-22 17:36:41 +0200342#define C2C_HEADER_MAX 2
343
344struct c2c_header {
345 struct {
346 const char *text;
347 int span;
348 } line[C2C_HEADER_MAX];
349};
350
351struct c2c_dimension {
352 struct c2c_header header;
353 const char *name;
354 int width;
Jiri Olsa8d3f9382016-09-22 17:36:42 +0200355 struct sort_entry *se;
Jiri Olsac75540e2016-09-22 17:36:41 +0200356
357 int64_t (*cmp)(struct perf_hpp_fmt *fmt,
358 struct hist_entry *, struct hist_entry *);
359 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
360 struct hist_entry *he);
361 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
362 struct hist_entry *he);
363};
364
365struct c2c_fmt {
366 struct perf_hpp_fmt fmt;
367 struct c2c_dimension *dim;
368};
369
Jiri Olsa590b6a32016-07-10 16:25:15 +0200370#define SYMBOL_WIDTH 30
371
372static struct c2c_dimension dim_symbol;
373static struct c2c_dimension dim_srcline;
374
375static int symbol_width(struct hists *hists, struct sort_entry *se)
376{
377 int width = hists__col_len(hists, se->se_width_idx);
378
379 if (!c2c.symbol_full)
380 width = MIN(width, SYMBOL_WIDTH);
381
382 return width;
383}
384
Jiri Olsac75540e2016-09-22 17:36:41 +0200385static int c2c_width(struct perf_hpp_fmt *fmt,
386 struct perf_hpp *hpp __maybe_unused,
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -0300387 struct hists *hists)
Jiri Olsac75540e2016-09-22 17:36:41 +0200388{
389 struct c2c_fmt *c2c_fmt;
Jiri Olsac75540e2016-09-22 17:36:41 +0200390 struct c2c_dimension *dim;
Jiri Olsac75540e2016-09-22 17:36:41 +0200391
392 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
393 dim = c2c_fmt->dim;
394
Jiri Olsa590b6a32016-07-10 16:25:15 +0200395 if (dim == &dim_symbol || dim == &dim_srcline)
396 return symbol_width(hists, dim->se);
397
Jiri Olsa8d3f9382016-09-22 17:36:42 +0200398 return dim->se ? hists__col_len(hists, dim->se->se_width_idx) :
399 c2c_fmt->dim->width;
400}
401
402static int c2c_header(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
403 struct hists *hists, int line, int *span)
404{
405 struct perf_hpp_list *hpp_list = hists->hpp_list;
406 struct c2c_fmt *c2c_fmt;
407 struct c2c_dimension *dim;
408 const char *text = NULL;
409 int width = c2c_width(fmt, hpp, hists);
410
411 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
412 dim = c2c_fmt->dim;
413
414 if (dim->se) {
415 text = dim->header.line[line].text;
416 /* Use the last line from sort_entry if not defined. */
417 if (!text && (line == hpp_list->nr_header_lines - 1))
418 text = dim->se->se_header;
419 } else {
420 text = dim->header.line[line].text;
421
422 if (*span) {
423 (*span)--;
424 return 0;
425 } else {
426 *span = dim->header.line[line].span;
427 }
428 }
429
Jiri Olsac75540e2016-09-22 17:36:41 +0200430 if (text == NULL)
431 text = "";
432
Jiri Olsa8d3f9382016-09-22 17:36:42 +0200433 return scnprintf(hpp->buf, hpp->size, "%*s", width, text);
Jiri Olsac75540e2016-09-22 17:36:41 +0200434}
435
Jiri Olsacbb88502016-09-22 17:36:48 +0200436#define HEX_STR(__s, __v) \
437({ \
438 scnprintf(__s, sizeof(__s), "0x%" PRIx64, __v); \
439 __s; \
440})
441
442static int64_t
443dcacheline_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
444 struct hist_entry *left, struct hist_entry *right)
445{
446 return sort__dcacheline_cmp(left, right);
447}
448
449static int dcacheline_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
450 struct hist_entry *he)
451{
452 uint64_t addr = 0;
453 int width = c2c_width(fmt, hpp, he->hists);
454 char buf[20];
455
456 if (he->mem_info)
457 addr = cl_address(he->mem_info->daddr.addr);
458
459 return scnprintf(hpp->buf, hpp->size, "%*s", width, HEX_STR(buf, addr));
460}
461
Jiri Olsa48acdeb2016-04-29 14:37:06 +0200462static int offset_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
463 struct hist_entry *he)
464{
465 uint64_t addr = 0;
466 int width = c2c_width(fmt, hpp, he->hists);
467 char buf[20];
468
469 if (he->mem_info)
470 addr = cl_offset(he->mem_info->daddr.al_addr);
471
472 return scnprintf(hpp->buf, hpp->size, "%*s", width, HEX_STR(buf, addr));
473}
474
475static int64_t
476offset_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
477 struct hist_entry *left, struct hist_entry *right)
478{
479 uint64_t l = 0, r = 0;
480
481 if (left->mem_info)
482 l = cl_offset(left->mem_info->daddr.addr);
483 if (right->mem_info)
484 r = cl_offset(right->mem_info->daddr.addr);
485
486 return (int64_t)(r - l);
487}
488
Jiri Olsa43575a92016-05-03 21:48:56 +0200489static int
490iaddr_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
491 struct hist_entry *he)
492{
493 uint64_t addr = 0;
494 int width = c2c_width(fmt, hpp, he->hists);
495 char buf[20];
496
497 if (he->mem_info)
498 addr = he->mem_info->iaddr.addr;
499
500 return scnprintf(hpp->buf, hpp->size, "%*s", width, HEX_STR(buf, addr));
501}
502
503static int64_t
504iaddr_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
505 struct hist_entry *left, struct hist_entry *right)
506{
507 return sort__iaddr_cmp(left, right);
508}
509
Jiri Olsa97cb4862016-05-23 16:20:14 +0200510static int
511tot_hitm_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
512 struct hist_entry *he)
513{
514 struct c2c_hist_entry *c2c_he;
515 int width = c2c_width(fmt, hpp, he->hists);
516 unsigned int tot_hitm;
517
518 c2c_he = container_of(he, struct c2c_hist_entry, he);
519 tot_hitm = c2c_he->stats.lcl_hitm + c2c_he->stats.rmt_hitm;
520
521 return scnprintf(hpp->buf, hpp->size, "%*u", width, tot_hitm);
522}
523
524static int64_t
525tot_hitm_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
526 struct hist_entry *left, struct hist_entry *right)
527{
528 struct c2c_hist_entry *c2c_left;
529 struct c2c_hist_entry *c2c_right;
530 unsigned int tot_hitm_left;
531 unsigned int tot_hitm_right;
532
533 c2c_left = container_of(left, struct c2c_hist_entry, he);
534 c2c_right = container_of(right, struct c2c_hist_entry, he);
535
536 tot_hitm_left = c2c_left->stats.lcl_hitm + c2c_left->stats.rmt_hitm;
537 tot_hitm_right = c2c_right->stats.lcl_hitm + c2c_right->stats.rmt_hitm;
538
539 return tot_hitm_left - tot_hitm_right;
540}
541
542#define STAT_FN_ENTRY(__f) \
543static int \
544__f ## _entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, \
545 struct hist_entry *he) \
546{ \
547 struct c2c_hist_entry *c2c_he; \
548 int width = c2c_width(fmt, hpp, he->hists); \
549 \
550 c2c_he = container_of(he, struct c2c_hist_entry, he); \
551 return scnprintf(hpp->buf, hpp->size, "%*u", width, \
552 c2c_he->stats.__f); \
553}
554
555#define STAT_FN_CMP(__f) \
556static int64_t \
557__f ## _cmp(struct perf_hpp_fmt *fmt __maybe_unused, \
558 struct hist_entry *left, struct hist_entry *right) \
559{ \
560 struct c2c_hist_entry *c2c_left, *c2c_right; \
561 \
562 c2c_left = container_of(left, struct c2c_hist_entry, he); \
563 c2c_right = container_of(right, struct c2c_hist_entry, he); \
564 return c2c_left->stats.__f - c2c_right->stats.__f; \
565}
566
567#define STAT_FN(__f) \
568 STAT_FN_ENTRY(__f) \
569 STAT_FN_CMP(__f)
570
571STAT_FN(rmt_hitm)
572STAT_FN(lcl_hitm)
Jiri Olsa0f188962016-05-04 10:10:11 +0200573STAT_FN(store)
574STAT_FN(st_l1hit)
575STAT_FN(st_l1miss)
Jiri Olsa1295f682016-05-04 10:18:24 +0200576STAT_FN(ld_fbhit)
577STAT_FN(ld_l1hit)
578STAT_FN(ld_l2hit)
Jiri Olsa4d089102016-05-04 10:27:51 +0200579STAT_FN(ld_llchit)
580STAT_FN(rmt_hit)
Jiri Olsa97cb4862016-05-23 16:20:14 +0200581
Jiri Olsa04402d22016-05-19 10:10:51 +0200582static uint64_t llc_miss(struct c2c_stats *stats)
583{
584 uint64_t llcmiss;
585
586 llcmiss = stats->lcl_dram +
587 stats->rmt_dram +
588 stats->rmt_hitm +
589 stats->rmt_hit;
590
591 return llcmiss;
592}
593
594static int
595ld_llcmiss_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
596 struct hist_entry *he)
597{
598 struct c2c_hist_entry *c2c_he;
599 int width = c2c_width(fmt, hpp, he->hists);
600
601 c2c_he = container_of(he, struct c2c_hist_entry, he);
602
603 return scnprintf(hpp->buf, hpp->size, "%*lu", width,
604 llc_miss(&c2c_he->stats));
605}
606
607static int64_t
608ld_llcmiss_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
609 struct hist_entry *left, struct hist_entry *right)
610{
611 struct c2c_hist_entry *c2c_left;
612 struct c2c_hist_entry *c2c_right;
613
614 c2c_left = container_of(left, struct c2c_hist_entry, he);
615 c2c_right = container_of(right, struct c2c_hist_entry, he);
616
617 return llc_miss(&c2c_left->stats) - llc_miss(&c2c_right->stats);
618}
619
Jiri Olsa01b84d72016-05-04 10:35:29 +0200620static uint64_t total_records(struct c2c_stats *stats)
621{
622 uint64_t lclmiss, ldcnt, total;
623
624 lclmiss = stats->lcl_dram +
625 stats->rmt_dram +
626 stats->rmt_hitm +
627 stats->rmt_hit;
628
629 ldcnt = lclmiss +
630 stats->ld_fbhit +
631 stats->ld_l1hit +
632 stats->ld_l2hit +
633 stats->ld_llchit +
634 stats->lcl_hitm;
635
636 total = ldcnt +
637 stats->st_l1hit +
638 stats->st_l1miss;
639
640 return total;
641}
642
643static int
644tot_recs_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
645 struct hist_entry *he)
646{
647 struct c2c_hist_entry *c2c_he;
648 int width = c2c_width(fmt, hpp, he->hists);
649 uint64_t tot_recs;
650
651 c2c_he = container_of(he, struct c2c_hist_entry, he);
652 tot_recs = total_records(&c2c_he->stats);
653
654 return scnprintf(hpp->buf, hpp->size, "%*" PRIu64, width, tot_recs);
655}
656
657static int64_t
658tot_recs_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
659 struct hist_entry *left, struct hist_entry *right)
660{
661 struct c2c_hist_entry *c2c_left;
662 struct c2c_hist_entry *c2c_right;
663 uint64_t tot_recs_left;
664 uint64_t tot_recs_right;
665
666 c2c_left = container_of(left, struct c2c_hist_entry, he);
667 c2c_right = container_of(right, struct c2c_hist_entry, he);
668
669 tot_recs_left = total_records(&c2c_left->stats);
670 tot_recs_right = total_records(&c2c_right->stats);
671
672 return tot_recs_left - tot_recs_right;
673}
674
Jiri Olsa55177c42016-05-19 09:52:37 +0200675static uint64_t total_loads(struct c2c_stats *stats)
676{
677 uint64_t lclmiss, ldcnt;
678
679 lclmiss = stats->lcl_dram +
680 stats->rmt_dram +
681 stats->rmt_hitm +
682 stats->rmt_hit;
683
684 ldcnt = lclmiss +
685 stats->ld_fbhit +
686 stats->ld_l1hit +
687 stats->ld_l2hit +
688 stats->ld_llchit +
689 stats->lcl_hitm;
690
691 return ldcnt;
692}
693
694static int
695tot_loads_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
696 struct hist_entry *he)
697{
698 struct c2c_hist_entry *c2c_he;
699 int width = c2c_width(fmt, hpp, he->hists);
700 uint64_t tot_recs;
701
702 c2c_he = container_of(he, struct c2c_hist_entry, he);
703 tot_recs = total_loads(&c2c_he->stats);
704
705 return scnprintf(hpp->buf, hpp->size, "%*" PRIu64, width, tot_recs);
706}
707
708static int64_t
709tot_loads_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
710 struct hist_entry *left, struct hist_entry *right)
711{
712 struct c2c_hist_entry *c2c_left;
713 struct c2c_hist_entry *c2c_right;
714 uint64_t tot_recs_left;
715 uint64_t tot_recs_right;
716
717 c2c_left = container_of(left, struct c2c_hist_entry, he);
718 c2c_right = container_of(right, struct c2c_hist_entry, he);
719
720 tot_recs_left = total_loads(&c2c_left->stats);
721 tot_recs_right = total_loads(&c2c_right->stats);
722
723 return tot_recs_left - tot_recs_right;
724}
725
Jiri Olsaf0c50c12016-05-04 10:50:09 +0200726typedef double (get_percent_cb)(struct c2c_hist_entry *);
727
728static int
729percent_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
730 struct hist_entry *he, get_percent_cb get_percent)
731{
732 struct c2c_hist_entry *c2c_he;
733 int width = c2c_width(fmt, hpp, he->hists);
734 double per;
735
736 c2c_he = container_of(he, struct c2c_hist_entry, he);
737 per = get_percent(c2c_he);
738
Jiri Olsa5a1a99c2016-01-06 16:59:02 +0100739#ifdef HAVE_SLANG_SUPPORT
740 if (use_browser)
741 return __hpp__slsmg_color_printf(hpp, "%*.2f%%", width - 1, per);
742#endif
Jiri Olsaf0c50c12016-05-04 10:50:09 +0200743 return hpp_color_scnprintf(hpp, "%*.2f%%", width - 1, per);
744}
745
746static double percent_hitm(struct c2c_hist_entry *c2c_he)
747{
748 struct c2c_hists *hists;
749 struct c2c_stats *stats;
750 struct c2c_stats *total;
Jiri Olsa55b95772016-05-29 10:21:45 +0200751 int tot = 0, st = 0;
Jiri Olsaf0c50c12016-05-04 10:50:09 +0200752 double p;
753
754 hists = container_of(c2c_he->he.hists, struct c2c_hists, hists);
755 stats = &c2c_he->stats;
756 total = &hists->stats;
757
Jiri Olsa55b95772016-05-29 10:21:45 +0200758 switch (c2c.display) {
759 case DISPLAY_RMT:
760 st = stats->rmt_hitm;
761 tot = total->rmt_hitm;
762 break;
763 case DISPLAY_LCL:
764 st = stats->lcl_hitm;
765 tot = total->lcl_hitm;
Jiri Olsad940bac2016-11-21 22:33:30 +0100766 break;
767 case DISPLAY_TOT:
768 st = stats->tot_hitm;
769 tot = total->tot_hitm;
Jiri Olsa55b95772016-05-29 10:21:45 +0200770 default:
771 break;
772 }
Jiri Olsaf0c50c12016-05-04 10:50:09 +0200773
774 p = tot ? (double) st / tot : 0;
775
776 return 100 * p;
777}
778
779#define PERC_STR(__s, __v) \
780({ \
781 scnprintf(__s, sizeof(__s), "%.2F%%", __v); \
782 __s; \
783})
784
785static int
786percent_hitm_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
787 struct hist_entry *he)
788{
789 struct c2c_hist_entry *c2c_he;
790 int width = c2c_width(fmt, hpp, he->hists);
791 char buf[10];
792 double per;
793
794 c2c_he = container_of(he, struct c2c_hist_entry, he);
795 per = percent_hitm(c2c_he);
796 return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per));
797}
798
799static int
800percent_hitm_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
801 struct hist_entry *he)
802{
803 return percent_color(fmt, hpp, he, percent_hitm);
804}
805
806static int64_t
807percent_hitm_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
808 struct hist_entry *left, struct hist_entry *right)
809{
810 struct c2c_hist_entry *c2c_left;
811 struct c2c_hist_entry *c2c_right;
812 double per_left;
813 double per_right;
814
815 c2c_left = container_of(left, struct c2c_hist_entry, he);
816 c2c_right = container_of(right, struct c2c_hist_entry, he);
817
818 per_left = percent_hitm(c2c_left);
819 per_right = percent_hitm(c2c_right);
820
821 return per_left - per_right;
822}
823
Jiri Olsa9cb35002016-05-04 12:16:50 +0200824static struct c2c_stats *he_stats(struct hist_entry *he)
825{
826 struct c2c_hist_entry *c2c_he;
827
828 c2c_he = container_of(he, struct c2c_hist_entry, he);
829 return &c2c_he->stats;
830}
831
832static struct c2c_stats *total_stats(struct hist_entry *he)
833{
834 struct c2c_hists *hists;
835
836 hists = container_of(he->hists, struct c2c_hists, hists);
837 return &hists->stats;
838}
839
840static double percent(int st, int tot)
841{
842 return tot ? 100. * (double) st / (double) tot : 0;
843}
844
845#define PERCENT(__h, __f) percent(he_stats(__h)->__f, total_stats(__h)->__f)
846
847#define PERCENT_FN(__f) \
848static double percent_ ## __f(struct c2c_hist_entry *c2c_he) \
849{ \
850 struct c2c_hists *hists; \
851 \
852 hists = container_of(c2c_he->he.hists, struct c2c_hists, hists); \
853 return percent(c2c_he->stats.__f, hists->stats.__f); \
854}
855
856PERCENT_FN(rmt_hitm)
857PERCENT_FN(lcl_hitm)
858PERCENT_FN(st_l1hit)
859PERCENT_FN(st_l1miss)
860
861static int
862percent_rmt_hitm_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
863 struct hist_entry *he)
864{
865 int width = c2c_width(fmt, hpp, he->hists);
866 double per = PERCENT(he, rmt_hitm);
867 char buf[10];
868
869 return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per));
870}
871
872static int
873percent_rmt_hitm_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
874 struct hist_entry *he)
875{
876 return percent_color(fmt, hpp, he, percent_rmt_hitm);
877}
878
879static int64_t
880percent_rmt_hitm_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
881 struct hist_entry *left, struct hist_entry *right)
882{
883 double per_left;
884 double per_right;
885
886 per_left = PERCENT(left, lcl_hitm);
887 per_right = PERCENT(right, lcl_hitm);
888
889 return per_left - per_right;
890}
891
892static int
893percent_lcl_hitm_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
894 struct hist_entry *he)
895{
896 int width = c2c_width(fmt, hpp, he->hists);
897 double per = PERCENT(he, lcl_hitm);
898 char buf[10];
899
900 return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per));
901}
902
903static int
904percent_lcl_hitm_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
905 struct hist_entry *he)
906{
907 return percent_color(fmt, hpp, he, percent_lcl_hitm);
908}
909
910static int64_t
911percent_lcl_hitm_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
912 struct hist_entry *left, struct hist_entry *right)
913{
914 double per_left;
915 double per_right;
916
917 per_left = PERCENT(left, lcl_hitm);
918 per_right = PERCENT(right, lcl_hitm);
919
920 return per_left - per_right;
921}
922
923static int
924percent_stores_l1hit_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
925 struct hist_entry *he)
926{
927 int width = c2c_width(fmt, hpp, he->hists);
928 double per = PERCENT(he, st_l1hit);
929 char buf[10];
930
931 return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per));
932}
933
934static int
935percent_stores_l1hit_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
936 struct hist_entry *he)
937{
938 return percent_color(fmt, hpp, he, percent_st_l1hit);
939}
940
941static int64_t
942percent_stores_l1hit_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
943 struct hist_entry *left, struct hist_entry *right)
944{
945 double per_left;
946 double per_right;
947
948 per_left = PERCENT(left, st_l1hit);
949 per_right = PERCENT(right, st_l1hit);
950
951 return per_left - per_right;
952}
953
954static int
955percent_stores_l1miss_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
956 struct hist_entry *he)
957{
958 int width = c2c_width(fmt, hpp, he->hists);
959 double per = PERCENT(he, st_l1miss);
960 char buf[10];
961
962 return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per));
963}
964
965static int
966percent_stores_l1miss_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
967 struct hist_entry *he)
968{
969 return percent_color(fmt, hpp, he, percent_st_l1miss);
970}
971
972static int64_t
973percent_stores_l1miss_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
974 struct hist_entry *left, struct hist_entry *right)
975{
976 double per_left;
977 double per_right;
978
979 per_left = PERCENT(left, st_l1miss);
980 per_right = PERCENT(right, st_l1miss);
981
982 return per_left - per_right;
983}
984
Jiri Olsa6c70f542016-05-28 12:30:13 +0200985STAT_FN(lcl_dram)
986STAT_FN(rmt_dram)
987
Jiri Olsa36d3deb2016-05-24 13:09:47 +0200988static int
989pid_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
990 struct hist_entry *he)
991{
992 int width = c2c_width(fmt, hpp, he->hists);
993
994 return scnprintf(hpp->buf, hpp->size, "%*d", width, he->thread->pid_);
995}
996
997static int64_t
998pid_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
999 struct hist_entry *left, struct hist_entry *right)
1000{
1001 return left->thread->pid_ - right->thread->pid_;
1002}
1003
Jiri Olsa1e181b92016-06-03 15:40:28 +02001004static int64_t
1005empty_cmp(struct perf_hpp_fmt *fmt __maybe_unused,
1006 struct hist_entry *left __maybe_unused,
1007 struct hist_entry *right __maybe_unused)
1008{
1009 return 0;
1010}
1011
1012static int
1013node_entry(struct perf_hpp_fmt *fmt __maybe_unused, struct perf_hpp *hpp,
1014 struct hist_entry *he)
1015{
1016 struct c2c_hist_entry *c2c_he;
1017 bool first = true;
1018 int node;
1019 int ret = 0;
1020
1021 c2c_he = container_of(he, struct c2c_hist_entry, he);
1022
1023 for (node = 0; node < c2c.nodes_cnt; node++) {
1024 DECLARE_BITMAP(set, c2c.cpus_cnt);
1025
1026 bitmap_zero(set, c2c.cpus_cnt);
1027 bitmap_and(set, c2c_he->cpuset, c2c.nodes[node], c2c.cpus_cnt);
1028
1029 if (!bitmap_weight(set, c2c.cpus_cnt)) {
1030 if (c2c.node_info == 1) {
1031 ret = scnprintf(hpp->buf, hpp->size, "%21s", " ");
1032 advance_hpp(hpp, ret);
1033 }
1034 continue;
1035 }
1036
1037 if (!first) {
1038 ret = scnprintf(hpp->buf, hpp->size, " ");
1039 advance_hpp(hpp, ret);
1040 }
1041
1042 switch (c2c.node_info) {
1043 case 0:
1044 ret = scnprintf(hpp->buf, hpp->size, "%2d", node);
1045 advance_hpp(hpp, ret);
1046 break;
1047 case 1:
1048 {
1049 int num = bitmap_weight(c2c_he->cpuset, c2c.cpus_cnt);
1050 struct c2c_stats *stats = &c2c_he->node_stats[node];
1051
1052 ret = scnprintf(hpp->buf, hpp->size, "%2d{%2d ", node, num);
1053 advance_hpp(hpp, ret);
1054
Jiri Olsa55b95772016-05-29 10:21:45 +02001055 #define DISPLAY_HITM(__h) \
1056 if (c2c_he->stats.__h> 0) { \
1057 ret = scnprintf(hpp->buf, hpp->size, "%5.1f%% ", \
1058 percent(stats->__h, c2c_he->stats.__h));\
1059 } else { \
1060 ret = scnprintf(hpp->buf, hpp->size, "%6s ", "n/a"); \
Jiri Olsa1e181b92016-06-03 15:40:28 +02001061 }
1062
Jiri Olsa55b95772016-05-29 10:21:45 +02001063 switch (c2c.display) {
1064 case DISPLAY_RMT:
1065 DISPLAY_HITM(rmt_hitm);
1066 break;
1067 case DISPLAY_LCL:
1068 DISPLAY_HITM(lcl_hitm);
Jiri Olsad940bac2016-11-21 22:33:30 +01001069 break;
1070 case DISPLAY_TOT:
1071 DISPLAY_HITM(tot_hitm);
Jiri Olsa55b95772016-05-29 10:21:45 +02001072 default:
1073 break;
1074 }
1075
1076 #undef DISPLAY_HITM
1077
Jiri Olsa1e181b92016-06-03 15:40:28 +02001078 advance_hpp(hpp, ret);
1079
1080 if (c2c_he->stats.store > 0) {
1081 ret = scnprintf(hpp->buf, hpp->size, "%5.1f%%}",
1082 percent(stats->store, c2c_he->stats.store));
1083 } else {
1084 ret = scnprintf(hpp->buf, hpp->size, "%6s}", "n/a");
1085 }
1086
1087 advance_hpp(hpp, ret);
1088 break;
1089 }
1090 case 2:
1091 ret = scnprintf(hpp->buf, hpp->size, "%2d{", node);
1092 advance_hpp(hpp, ret);
1093
1094 ret = bitmap_scnprintf(set, c2c.cpus_cnt, hpp->buf, hpp->size);
1095 advance_hpp(hpp, ret);
1096
1097 ret = scnprintf(hpp->buf, hpp->size, "}");
1098 advance_hpp(hpp, ret);
1099 break;
1100 default:
1101 break;
1102 }
1103
1104 first = false;
1105 }
1106
1107 return 0;
1108}
1109
Jiri Olsa92062d52016-06-05 13:40:53 +02001110static int
1111mean_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
1112 struct hist_entry *he, double mean)
1113{
1114 int width = c2c_width(fmt, hpp, he->hists);
1115 char buf[10];
1116
1117 scnprintf(buf, 10, "%6.0f", mean);
1118 return scnprintf(hpp->buf, hpp->size, "%*s", width, buf);
1119}
1120
1121#define MEAN_ENTRY(__func, __val) \
1122static int \
1123__func(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, struct hist_entry *he) \
1124{ \
1125 struct c2c_hist_entry *c2c_he; \
1126 c2c_he = container_of(he, struct c2c_hist_entry, he); \
1127 return mean_entry(fmt, hpp, he, avg_stats(&c2c_he->cstats.__val)); \
1128}
1129
1130MEAN_ENTRY(mean_rmt_entry, rmt_hitm);
1131MEAN_ENTRY(mean_lcl_entry, lcl_hitm);
1132MEAN_ENTRY(mean_load_entry, load);
1133
Jiri Olsab6fe2bb2016-06-23 23:05:52 +02001134static int
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03001135cpucnt_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
Jiri Olsab6fe2bb2016-06-23 23:05:52 +02001136 struct hist_entry *he)
1137{
1138 struct c2c_hist_entry *c2c_he;
1139 int width = c2c_width(fmt, hpp, he->hists);
1140 char buf[10];
1141
1142 c2c_he = container_of(he, struct c2c_hist_entry, he);
1143
1144 scnprintf(buf, 10, "%d", bitmap_weight(c2c_he->cpuset, c2c.cpus_cnt));
1145 return scnprintf(hpp->buf, hpp->size, "%*s", width, buf);
1146}
1147
Jiri Olsabb342da2016-07-06 15:40:09 +02001148static int
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03001149cl_idx_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
Jiri Olsabb342da2016-07-06 15:40:09 +02001150 struct hist_entry *he)
1151{
1152 struct c2c_hist_entry *c2c_he;
1153 int width = c2c_width(fmt, hpp, he->hists);
1154 char buf[10];
1155
1156 c2c_he = container_of(he, struct c2c_hist_entry, he);
1157
1158 scnprintf(buf, 10, "%u", c2c_he->cacheline_idx);
1159 return scnprintf(hpp->buf, hpp->size, "%*s", width, buf);
1160}
1161
1162static int
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03001163cl_idx_empty_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
Jiri Olsabb342da2016-07-06 15:40:09 +02001164 struct hist_entry *he)
1165{
1166 int width = c2c_width(fmt, hpp, he->hists);
1167
1168 return scnprintf(hpp->buf, hpp->size, "%*s", width, "");
1169}
1170
Jiri Olsa600a8cf2016-09-22 17:36:47 +02001171#define HEADER_LOW(__h) \
1172 { \
1173 .line[1] = { \
1174 .text = __h, \
1175 }, \
1176 }
1177
1178#define HEADER_BOTH(__h0, __h1) \
1179 { \
1180 .line[0] = { \
1181 .text = __h0, \
1182 }, \
1183 .line[1] = { \
1184 .text = __h1, \
1185 }, \
1186 }
1187
1188#define HEADER_SPAN(__h0, __h1, __s) \
1189 { \
1190 .line[0] = { \
1191 .text = __h0, \
1192 .span = __s, \
1193 }, \
1194 .line[1] = { \
1195 .text = __h1, \
1196 }, \
1197 }
1198
1199#define HEADER_SPAN_LOW(__h) \
1200 { \
1201 .line[1] = { \
1202 .text = __h, \
1203 }, \
1204 }
1205
Jiri Olsacbb88502016-09-22 17:36:48 +02001206static struct c2c_dimension dim_dcacheline = {
1207 .header = HEADER_LOW("Cacheline"),
1208 .name = "dcacheline",
1209 .cmp = dcacheline_cmp,
1210 .entry = dcacheline_entry,
1211 .width = 18,
1212};
1213
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01001214static struct c2c_header header_offset_tui = HEADER_LOW("Off");
1215
Jiri Olsa48acdeb2016-04-29 14:37:06 +02001216static struct c2c_dimension dim_offset = {
1217 .header = HEADER_BOTH("Data address", "Offset"),
1218 .name = "offset",
1219 .cmp = offset_cmp,
1220 .entry = offset_entry,
1221 .width = 18,
1222};
1223
Jiri Olsa43575a92016-05-03 21:48:56 +02001224static struct c2c_dimension dim_iaddr = {
1225 .header = HEADER_LOW("Code address"),
1226 .name = "iaddr",
1227 .cmp = iaddr_cmp,
1228 .entry = iaddr_entry,
1229 .width = 18,
1230};
1231
Jiri Olsa97cb4862016-05-23 16:20:14 +02001232static struct c2c_dimension dim_tot_hitm = {
1233 .header = HEADER_SPAN("----- LLC Load Hitm -----", "Total", 2),
1234 .name = "tot_hitm",
1235 .cmp = tot_hitm_cmp,
1236 .entry = tot_hitm_entry,
1237 .width = 7,
1238};
1239
1240static struct c2c_dimension dim_lcl_hitm = {
1241 .header = HEADER_SPAN_LOW("Lcl"),
1242 .name = "lcl_hitm",
1243 .cmp = lcl_hitm_cmp,
1244 .entry = lcl_hitm_entry,
1245 .width = 7,
1246};
1247
1248static struct c2c_dimension dim_rmt_hitm = {
1249 .header = HEADER_SPAN_LOW("Rmt"),
1250 .name = "rmt_hitm",
1251 .cmp = rmt_hitm_cmp,
1252 .entry = rmt_hitm_entry,
1253 .width = 7,
1254};
1255
1256static struct c2c_dimension dim_cl_rmt_hitm = {
1257 .header = HEADER_SPAN("----- HITM -----", "Rmt", 1),
1258 .name = "cl_rmt_hitm",
1259 .cmp = rmt_hitm_cmp,
1260 .entry = rmt_hitm_entry,
1261 .width = 7,
1262};
1263
1264static struct c2c_dimension dim_cl_lcl_hitm = {
1265 .header = HEADER_SPAN_LOW("Lcl"),
1266 .name = "cl_lcl_hitm",
1267 .cmp = lcl_hitm_cmp,
1268 .entry = lcl_hitm_entry,
1269 .width = 7,
1270};
1271
Jiri Olsa0f188962016-05-04 10:10:11 +02001272static struct c2c_dimension dim_stores = {
1273 .header = HEADER_SPAN("---- Store Reference ----", "Total", 2),
1274 .name = "stores",
1275 .cmp = store_cmp,
1276 .entry = store_entry,
1277 .width = 7,
1278};
1279
1280static struct c2c_dimension dim_stores_l1hit = {
1281 .header = HEADER_SPAN_LOW("L1Hit"),
1282 .name = "stores_l1hit",
1283 .cmp = st_l1hit_cmp,
1284 .entry = st_l1hit_entry,
1285 .width = 7,
1286};
1287
1288static struct c2c_dimension dim_stores_l1miss = {
1289 .header = HEADER_SPAN_LOW("L1Miss"),
1290 .name = "stores_l1miss",
1291 .cmp = st_l1miss_cmp,
1292 .entry = st_l1miss_entry,
1293 .width = 7,
1294};
1295
1296static struct c2c_dimension dim_cl_stores_l1hit = {
1297 .header = HEADER_SPAN("-- Store Refs --", "L1 Hit", 1),
1298 .name = "cl_stores_l1hit",
1299 .cmp = st_l1hit_cmp,
1300 .entry = st_l1hit_entry,
1301 .width = 7,
1302};
1303
1304static struct c2c_dimension dim_cl_stores_l1miss = {
1305 .header = HEADER_SPAN_LOW("L1 Miss"),
1306 .name = "cl_stores_l1miss",
1307 .cmp = st_l1miss_cmp,
1308 .entry = st_l1miss_entry,
1309 .width = 7,
1310};
1311
Jiri Olsa1295f682016-05-04 10:18:24 +02001312static struct c2c_dimension dim_ld_fbhit = {
1313 .header = HEADER_SPAN("----- Core Load Hit -----", "FB", 2),
1314 .name = "ld_fbhit",
1315 .cmp = ld_fbhit_cmp,
1316 .entry = ld_fbhit_entry,
1317 .width = 7,
1318};
1319
1320static struct c2c_dimension dim_ld_l1hit = {
1321 .header = HEADER_SPAN_LOW("L1"),
1322 .name = "ld_l1hit",
1323 .cmp = ld_l1hit_cmp,
1324 .entry = ld_l1hit_entry,
1325 .width = 7,
1326};
1327
1328static struct c2c_dimension dim_ld_l2hit = {
1329 .header = HEADER_SPAN_LOW("L2"),
1330 .name = "ld_l2hit",
1331 .cmp = ld_l2hit_cmp,
1332 .entry = ld_l2hit_entry,
1333 .width = 7,
1334};
1335
Jiri Olsa4d089102016-05-04 10:27:51 +02001336static struct c2c_dimension dim_ld_llchit = {
1337 .header = HEADER_SPAN("-- LLC Load Hit --", "Llc", 1),
1338 .name = "ld_lclhit",
1339 .cmp = ld_llchit_cmp,
1340 .entry = ld_llchit_entry,
1341 .width = 8,
1342};
1343
1344static struct c2c_dimension dim_ld_rmthit = {
1345 .header = HEADER_SPAN_LOW("Rmt"),
1346 .name = "ld_rmthit",
1347 .cmp = rmt_hit_cmp,
1348 .entry = rmt_hit_entry,
1349 .width = 8,
1350};
1351
Jiri Olsa04402d22016-05-19 10:10:51 +02001352static struct c2c_dimension dim_ld_llcmiss = {
1353 .header = HEADER_BOTH("LLC", "Ld Miss"),
1354 .name = "ld_llcmiss",
1355 .cmp = ld_llcmiss_cmp,
1356 .entry = ld_llcmiss_entry,
1357 .width = 7,
1358};
1359
Jiri Olsa01b84d72016-05-04 10:35:29 +02001360static struct c2c_dimension dim_tot_recs = {
1361 .header = HEADER_BOTH("Total", "records"),
1362 .name = "tot_recs",
1363 .cmp = tot_recs_cmp,
1364 .entry = tot_recs_entry,
1365 .width = 7,
1366};
1367
Jiri Olsa55177c42016-05-19 09:52:37 +02001368static struct c2c_dimension dim_tot_loads = {
1369 .header = HEADER_BOTH("Total", "Loads"),
1370 .name = "tot_loads",
1371 .cmp = tot_loads_cmp,
1372 .entry = tot_loads_entry,
1373 .width = 7,
1374};
1375
Jiri Olsa55b95772016-05-29 10:21:45 +02001376static struct c2c_header percent_hitm_header[] = {
1377 [DISPLAY_LCL] = HEADER_BOTH("Lcl", "Hitm"),
1378 [DISPLAY_RMT] = HEADER_BOTH("Rmt", "Hitm"),
Jiri Olsad940bac2016-11-21 22:33:30 +01001379 [DISPLAY_TOT] = HEADER_BOTH("Tot", "Hitm"),
Jiri Olsa55b95772016-05-29 10:21:45 +02001380};
1381
Jiri Olsaf0c50c12016-05-04 10:50:09 +02001382static struct c2c_dimension dim_percent_hitm = {
Jiri Olsaf0c50c12016-05-04 10:50:09 +02001383 .name = "percent_hitm",
1384 .cmp = percent_hitm_cmp,
1385 .entry = percent_hitm_entry,
1386 .color = percent_hitm_color,
1387 .width = 7,
1388};
1389
Jiri Olsa9cb35002016-05-04 12:16:50 +02001390static struct c2c_dimension dim_percent_rmt_hitm = {
1391 .header = HEADER_SPAN("----- HITM -----", "Rmt", 1),
1392 .name = "percent_rmt_hitm",
1393 .cmp = percent_rmt_hitm_cmp,
1394 .entry = percent_rmt_hitm_entry,
1395 .color = percent_rmt_hitm_color,
1396 .width = 7,
1397};
1398
1399static struct c2c_dimension dim_percent_lcl_hitm = {
1400 .header = HEADER_SPAN_LOW("Lcl"),
1401 .name = "percent_lcl_hitm",
1402 .cmp = percent_lcl_hitm_cmp,
1403 .entry = percent_lcl_hitm_entry,
1404 .color = percent_lcl_hitm_color,
1405 .width = 7,
1406};
1407
1408static struct c2c_dimension dim_percent_stores_l1hit = {
1409 .header = HEADER_SPAN("-- Store Refs --", "L1 Hit", 1),
1410 .name = "percent_stores_l1hit",
1411 .cmp = percent_stores_l1hit_cmp,
1412 .entry = percent_stores_l1hit_entry,
1413 .color = percent_stores_l1hit_color,
1414 .width = 7,
1415};
1416
1417static struct c2c_dimension dim_percent_stores_l1miss = {
1418 .header = HEADER_SPAN_LOW("L1 Miss"),
1419 .name = "percent_stores_l1miss",
1420 .cmp = percent_stores_l1miss_cmp,
1421 .entry = percent_stores_l1miss_entry,
1422 .color = percent_stores_l1miss_color,
1423 .width = 7,
1424};
1425
Jiri Olsa6c70f542016-05-28 12:30:13 +02001426static struct c2c_dimension dim_dram_lcl = {
1427 .header = HEADER_SPAN("--- Load Dram ----", "Lcl", 1),
1428 .name = "dram_lcl",
1429 .cmp = lcl_dram_cmp,
1430 .entry = lcl_dram_entry,
1431 .width = 8,
1432};
1433
1434static struct c2c_dimension dim_dram_rmt = {
1435 .header = HEADER_SPAN_LOW("Rmt"),
1436 .name = "dram_rmt",
1437 .cmp = rmt_dram_cmp,
1438 .entry = rmt_dram_entry,
1439 .width = 8,
1440};
1441
Jiri Olsa36d3deb2016-05-24 13:09:47 +02001442static struct c2c_dimension dim_pid = {
1443 .header = HEADER_LOW("Pid"),
1444 .name = "pid",
1445 .cmp = pid_cmp,
1446 .entry = pid_entry,
1447 .width = 7,
1448};
1449
Jiri Olsae87019c2016-05-25 08:50:10 +02001450static struct c2c_dimension dim_tid = {
1451 .header = HEADER_LOW("Tid"),
1452 .name = "tid",
1453 .se = &sort_thread,
1454};
1455
Jiri Olsa51dedaa2016-05-24 23:41:52 +02001456static struct c2c_dimension dim_symbol = {
1457 .name = "symbol",
1458 .se = &sort_sym,
1459};
1460
1461static struct c2c_dimension dim_dso = {
1462 .header = HEADER_BOTH("Shared", "Object"),
1463 .name = "dso",
1464 .se = &sort_dso,
1465};
1466
Jiri Olsa1e181b92016-06-03 15:40:28 +02001467static struct c2c_header header_node[3] = {
1468 HEADER_LOW("Node"),
1469 HEADER_LOW("Node{cpus %hitms %stores}"),
1470 HEADER_LOW("Node{cpu list}"),
1471};
1472
1473static struct c2c_dimension dim_node = {
1474 .name = "node",
1475 .cmp = empty_cmp,
1476 .entry = node_entry,
1477 .width = 4,
1478};
1479
Jiri Olsa92062d52016-06-05 13:40:53 +02001480static struct c2c_dimension dim_mean_rmt = {
1481 .header = HEADER_SPAN("---------- cycles ----------", "rmt hitm", 2),
1482 .name = "mean_rmt",
1483 .cmp = empty_cmp,
1484 .entry = mean_rmt_entry,
1485 .width = 8,
1486};
1487
1488static struct c2c_dimension dim_mean_lcl = {
1489 .header = HEADER_SPAN_LOW("lcl hitm"),
1490 .name = "mean_lcl",
1491 .cmp = empty_cmp,
1492 .entry = mean_lcl_entry,
1493 .width = 8,
1494};
1495
1496static struct c2c_dimension dim_mean_load = {
1497 .header = HEADER_SPAN_LOW("load"),
1498 .name = "mean_load",
1499 .cmp = empty_cmp,
1500 .entry = mean_load_entry,
1501 .width = 8,
1502};
1503
Jiri Olsab6fe2bb2016-06-23 23:05:52 +02001504static struct c2c_dimension dim_cpucnt = {
1505 .header = HEADER_BOTH("cpu", "cnt"),
1506 .name = "cpucnt",
1507 .cmp = empty_cmp,
1508 .entry = cpucnt_entry,
1509 .width = 8,
1510};
1511
Jiri Olsa89d9ba8f2016-07-10 15:47:40 +02001512static struct c2c_dimension dim_srcline = {
1513 .name = "cl_srcline",
1514 .se = &sort_srcline,
1515};
1516
Jiri Olsabb342da2016-07-06 15:40:09 +02001517static struct c2c_dimension dim_dcacheline_idx = {
1518 .header = HEADER_LOW("Index"),
1519 .name = "cl_idx",
1520 .cmp = empty_cmp,
1521 .entry = cl_idx_entry,
1522 .width = 5,
1523};
1524
1525static struct c2c_dimension dim_dcacheline_num = {
1526 .header = HEADER_LOW("Num"),
1527 .name = "cl_num",
1528 .cmp = empty_cmp,
1529 .entry = cl_idx_entry,
1530 .width = 5,
1531};
1532
1533static struct c2c_dimension dim_dcacheline_num_empty = {
1534 .header = HEADER_LOW("Num"),
1535 .name = "cl_num_empty",
1536 .cmp = empty_cmp,
1537 .entry = cl_idx_empty_entry,
1538 .width = 5,
1539};
1540
Jiri Olsac75540e2016-09-22 17:36:41 +02001541static struct c2c_dimension *dimensions[] = {
Jiri Olsacbb88502016-09-22 17:36:48 +02001542 &dim_dcacheline,
Jiri Olsa48acdeb2016-04-29 14:37:06 +02001543 &dim_offset,
Jiri Olsa43575a92016-05-03 21:48:56 +02001544 &dim_iaddr,
Jiri Olsa97cb4862016-05-23 16:20:14 +02001545 &dim_tot_hitm,
1546 &dim_lcl_hitm,
1547 &dim_rmt_hitm,
1548 &dim_cl_lcl_hitm,
1549 &dim_cl_rmt_hitm,
Jiri Olsa0f188962016-05-04 10:10:11 +02001550 &dim_stores,
1551 &dim_stores_l1hit,
1552 &dim_stores_l1miss,
1553 &dim_cl_stores_l1hit,
1554 &dim_cl_stores_l1miss,
Jiri Olsa1295f682016-05-04 10:18:24 +02001555 &dim_ld_fbhit,
1556 &dim_ld_l1hit,
1557 &dim_ld_l2hit,
Jiri Olsa4d089102016-05-04 10:27:51 +02001558 &dim_ld_llchit,
1559 &dim_ld_rmthit,
Jiri Olsa04402d22016-05-19 10:10:51 +02001560 &dim_ld_llcmiss,
Jiri Olsa01b84d72016-05-04 10:35:29 +02001561 &dim_tot_recs,
Jiri Olsa55177c42016-05-19 09:52:37 +02001562 &dim_tot_loads,
Jiri Olsaf0c50c12016-05-04 10:50:09 +02001563 &dim_percent_hitm,
Jiri Olsa9cb35002016-05-04 12:16:50 +02001564 &dim_percent_rmt_hitm,
1565 &dim_percent_lcl_hitm,
1566 &dim_percent_stores_l1hit,
1567 &dim_percent_stores_l1miss,
Jiri Olsa6c70f542016-05-28 12:30:13 +02001568 &dim_dram_lcl,
1569 &dim_dram_rmt,
Jiri Olsa36d3deb2016-05-24 13:09:47 +02001570 &dim_pid,
Jiri Olsae87019c2016-05-25 08:50:10 +02001571 &dim_tid,
Jiri Olsa51dedaa2016-05-24 23:41:52 +02001572 &dim_symbol,
1573 &dim_dso,
Jiri Olsa1e181b92016-06-03 15:40:28 +02001574 &dim_node,
Jiri Olsa92062d52016-06-05 13:40:53 +02001575 &dim_mean_rmt,
1576 &dim_mean_lcl,
1577 &dim_mean_load,
Jiri Olsab6fe2bb2016-06-23 23:05:52 +02001578 &dim_cpucnt,
Jiri Olsa89d9ba8f2016-07-10 15:47:40 +02001579 &dim_srcline,
Jiri Olsabb342da2016-07-06 15:40:09 +02001580 &dim_dcacheline_idx,
1581 &dim_dcacheline_num,
1582 &dim_dcacheline_num_empty,
Jiri Olsac75540e2016-09-22 17:36:41 +02001583 NULL,
1584};
1585
1586static void fmt_free(struct perf_hpp_fmt *fmt)
1587{
1588 struct c2c_fmt *c2c_fmt;
1589
1590 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
1591 free(c2c_fmt);
1592}
1593
1594static bool fmt_equal(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b)
1595{
1596 struct c2c_fmt *c2c_a = container_of(a, struct c2c_fmt, fmt);
1597 struct c2c_fmt *c2c_b = container_of(b, struct c2c_fmt, fmt);
1598
1599 return c2c_a->dim == c2c_b->dim;
1600}
1601
1602static struct c2c_dimension *get_dimension(const char *name)
1603{
1604 unsigned int i;
1605
1606 for (i = 0; dimensions[i]; i++) {
1607 struct c2c_dimension *dim = dimensions[i];
1608
1609 if (!strcmp(dim->name, name))
1610 return dim;
1611 };
1612
1613 return NULL;
1614}
1615
Jiri Olsa8d3f9382016-09-22 17:36:42 +02001616static int c2c_se_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
1617 struct hist_entry *he)
1618{
1619 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
1620 struct c2c_dimension *dim = c2c_fmt->dim;
1621 size_t len = fmt->user_len;
1622
Jiri Olsa590b6a32016-07-10 16:25:15 +02001623 if (!len) {
Jiri Olsa8d3f9382016-09-22 17:36:42 +02001624 len = hists__col_len(he->hists, dim->se->se_width_idx);
1625
Jiri Olsa590b6a32016-07-10 16:25:15 +02001626 if (dim == &dim_symbol || dim == &dim_srcline)
1627 len = symbol_width(he->hists, dim->se);
1628 }
1629
Jiri Olsa8d3f9382016-09-22 17:36:42 +02001630 return dim->se->se_snprintf(he, hpp->buf, hpp->size, len);
1631}
1632
1633static int64_t c2c_se_cmp(struct perf_hpp_fmt *fmt,
1634 struct hist_entry *a, struct hist_entry *b)
1635{
1636 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
1637 struct c2c_dimension *dim = c2c_fmt->dim;
1638
1639 return dim->se->se_cmp(a, b);
1640}
1641
1642static int64_t c2c_se_collapse(struct perf_hpp_fmt *fmt,
1643 struct hist_entry *a, struct hist_entry *b)
1644{
1645 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt);
1646 struct c2c_dimension *dim = c2c_fmt->dim;
1647 int64_t (*collapse_fn)(struct hist_entry *, struct hist_entry *);
1648
1649 collapse_fn = dim->se->se_collapse ?: dim->se->se_cmp;
1650 return collapse_fn(a, b);
1651}
1652
Jiri Olsac75540e2016-09-22 17:36:41 +02001653static struct c2c_fmt *get_format(const char *name)
1654{
1655 struct c2c_dimension *dim = get_dimension(name);
1656 struct c2c_fmt *c2c_fmt;
1657 struct perf_hpp_fmt *fmt;
1658
1659 if (!dim)
1660 return NULL;
1661
1662 c2c_fmt = zalloc(sizeof(*c2c_fmt));
1663 if (!c2c_fmt)
1664 return NULL;
1665
1666 c2c_fmt->dim = dim;
1667
1668 fmt = &c2c_fmt->fmt;
1669 INIT_LIST_HEAD(&fmt->list);
1670 INIT_LIST_HEAD(&fmt->sort_list);
1671
Jiri Olsa8d3f9382016-09-22 17:36:42 +02001672 fmt->cmp = dim->se ? c2c_se_cmp : dim->cmp;
1673 fmt->sort = dim->se ? c2c_se_cmp : dim->cmp;
Jiri Olsa9cb35002016-05-04 12:16:50 +02001674 fmt->color = dim->se ? NULL : dim->color;
Jiri Olsa8d3f9382016-09-22 17:36:42 +02001675 fmt->entry = dim->se ? c2c_se_entry : dim->entry;
Jiri Olsac75540e2016-09-22 17:36:41 +02001676 fmt->header = c2c_header;
1677 fmt->width = c2c_width;
Jiri Olsa8d3f9382016-09-22 17:36:42 +02001678 fmt->collapse = dim->se ? c2c_se_collapse : dim->cmp;
Jiri Olsac75540e2016-09-22 17:36:41 +02001679 fmt->equal = fmt_equal;
1680 fmt->free = fmt_free;
1681
1682 return c2c_fmt;
1683}
1684
1685static int c2c_hists__init_output(struct perf_hpp_list *hpp_list, char *name)
1686{
1687 struct c2c_fmt *c2c_fmt = get_format(name);
1688
Jiri Olsa5f2eca82016-09-22 17:36:43 +02001689 if (!c2c_fmt) {
1690 reset_dimensions();
1691 return output_field_add(hpp_list, name);
1692 }
Jiri Olsac75540e2016-09-22 17:36:41 +02001693
1694 perf_hpp_list__column_register(hpp_list, &c2c_fmt->fmt);
1695 return 0;
1696}
1697
1698static int c2c_hists__init_sort(struct perf_hpp_list *hpp_list, char *name)
1699{
1700 struct c2c_fmt *c2c_fmt = get_format(name);
Jiri Olsa51dedaa2016-05-24 23:41:52 +02001701 struct c2c_dimension *dim;
Jiri Olsac75540e2016-09-22 17:36:41 +02001702
Jiri Olsa5f2eca82016-09-22 17:36:43 +02001703 if (!c2c_fmt) {
1704 reset_dimensions();
1705 return sort_dimension__add(hpp_list, name, NULL, 0);
1706 }
Jiri Olsac75540e2016-09-22 17:36:41 +02001707
Jiri Olsa51dedaa2016-05-24 23:41:52 +02001708 dim = c2c_fmt->dim;
1709 if (dim == &dim_dso)
1710 hpp_list->dso = 1;
1711
Jiri Olsac75540e2016-09-22 17:36:41 +02001712 perf_hpp_list__register_sort_field(hpp_list, &c2c_fmt->fmt);
1713 return 0;
1714}
1715
1716#define PARSE_LIST(_list, _fn) \
1717 do { \
1718 char *tmp, *tok; \
1719 ret = 0; \
1720 \
1721 if (!_list) \
1722 break; \
1723 \
1724 for (tok = strtok_r((char *)_list, ", ", &tmp); \
1725 tok; tok = strtok_r(NULL, ", ", &tmp)) { \
1726 ret = _fn(hpp_list, tok); \
1727 if (ret == -EINVAL) { \
1728 error("Invalid --fields key: `%s'", tok); \
1729 break; \
1730 } else if (ret == -ESRCH) { \
1731 error("Unknown --fields key: `%s'", tok); \
1732 break; \
1733 } \
1734 } \
1735 } while (0)
1736
1737static int hpp_list__parse(struct perf_hpp_list *hpp_list,
1738 const char *output_,
1739 const char *sort_)
1740{
1741 char *output = output_ ? strdup(output_) : NULL;
1742 char *sort = sort_ ? strdup(sort_) : NULL;
1743 int ret;
1744
1745 PARSE_LIST(output, c2c_hists__init_output);
1746 PARSE_LIST(sort, c2c_hists__init_sort);
1747
1748 /* copy sort keys to output fields */
1749 perf_hpp__setup_output_field(hpp_list);
1750
1751 /*
1752 * We dont need other sorting keys other than those
1753 * we already specified. It also really slows down
1754 * the processing a lot with big number of output
1755 * fields, so switching this off for c2c.
1756 */
1757
1758#if 0
1759 /* and then copy output fields to sort keys */
1760 perf_hpp__append_sort_keys(&hists->list);
1761#endif
1762
1763 free(output);
1764 free(sort);
1765 return ret;
1766}
1767
1768static int c2c_hists__init(struct c2c_hists *hists,
Jiri Olsa1d62fcd2016-05-24 10:12:31 +02001769 const char *sort,
1770 int nr_header_lines)
Jiri Olsac75540e2016-09-22 17:36:41 +02001771{
1772 __hists__init(&hists->hists, &hists->list);
1773
1774 /*
1775 * Initialize only with sort fields, we need to resort
1776 * later anyway, and that's where we add output fields
1777 * as well.
1778 */
1779 perf_hpp_list__init(&hists->list);
1780
Jiri Olsa1d62fcd2016-05-24 10:12:31 +02001781 /* Overload number of header lines.*/
1782 hists->list.nr_header_lines = nr_header_lines;
1783
Jiri Olsac75540e2016-09-22 17:36:41 +02001784 return hpp_list__parse(&hists->list, NULL, sort);
1785}
1786
Jiri Olsac75540e2016-09-22 17:36:41 +02001787static int c2c_hists__reinit(struct c2c_hists *c2c_hists,
1788 const char *output,
1789 const char *sort)
1790{
1791 perf_hpp__reset_output_field(&c2c_hists->list);
1792 return hpp_list__parse(&c2c_hists->list, output, sort);
1793}
1794
Jiri Olsa9857b712016-08-17 14:55:23 +02001795#define DISPLAY_LINE_LIMIT 0.0005
1796
1797static bool he__display(struct hist_entry *he, struct c2c_stats *stats)
1798{
1799 struct c2c_hist_entry *c2c_he;
1800 double ld_dist;
1801
Jiri Olsaaf09b2d2016-10-11 13:52:05 +02001802 if (c2c.show_all)
1803 return true;
Jiri Olsa9857b712016-08-17 14:55:23 +02001804
1805 c2c_he = container_of(he, struct c2c_hist_entry, he);
1806
Jiri Olsa55b95772016-05-29 10:21:45 +02001807#define FILTER_HITM(__h) \
1808 if (stats->__h) { \
1809 ld_dist = ((double)c2c_he->stats.__h / stats->__h); \
1810 if (ld_dist < DISPLAY_LINE_LIMIT) \
1811 he->filtered = HIST_FILTER__C2C; \
1812 } else { \
1813 he->filtered = HIST_FILTER__C2C; \
Jiri Olsa9857b712016-08-17 14:55:23 +02001814 }
1815
Jiri Olsa55b95772016-05-29 10:21:45 +02001816 switch (c2c.display) {
1817 case DISPLAY_LCL:
1818 FILTER_HITM(lcl_hitm);
1819 break;
1820 case DISPLAY_RMT:
1821 FILTER_HITM(rmt_hitm);
Jiri Olsad940bac2016-11-21 22:33:30 +01001822 break;
1823 case DISPLAY_TOT:
1824 FILTER_HITM(tot_hitm);
Jiri Olsa55b95772016-05-29 10:21:45 +02001825 default:
1826 break;
1827 };
1828
1829#undef FILTER_HITM
1830
Jiri Olsa9857b712016-08-17 14:55:23 +02001831 return he->filtered == 0;
1832}
1833
1834static inline int valid_hitm_or_store(struct hist_entry *he)
1835{
1836 struct c2c_hist_entry *c2c_he;
Jiri Olsa55b95772016-05-29 10:21:45 +02001837 bool has_hitm;
Jiri Olsa9857b712016-08-17 14:55:23 +02001838
1839 c2c_he = container_of(he, struct c2c_hist_entry, he);
Jiri Olsad940bac2016-11-21 22:33:30 +01001840 has_hitm = c2c.display == DISPLAY_TOT ? c2c_he->stats.tot_hitm :
1841 c2c.display == DISPLAY_LCL ? c2c_he->stats.lcl_hitm :
1842 c2c_he->stats.rmt_hitm;
Jiri Olsa55b95772016-05-29 10:21:45 +02001843 return has_hitm || c2c_he->stats.store;
Jiri Olsa9857b712016-08-17 14:55:23 +02001844}
1845
Jiri Olsa25aa84e2016-06-07 19:02:43 +02001846static void calc_width(struct hist_entry *he)
1847{
1848 struct c2c_hists *c2c_hists;
1849
1850 c2c_hists = container_of(he->hists, struct c2c_hists, hists);
1851 hists__calc_col_len(&c2c_hists->hists, he);
1852}
1853
Jiri Olsa89d9ba8f2016-07-10 15:47:40 +02001854static int filter_cb(struct hist_entry *he)
Jiri Olsaec06f9b2016-09-22 17:36:45 +02001855{
Jiri Olsa89d9ba8f2016-07-10 15:47:40 +02001856 if (c2c.show_src && !he->srcline)
1857 he->srcline = hist_entry__get_srcline(he);
1858
Jiri Olsa25aa84e2016-06-07 19:02:43 +02001859 calc_width(he);
1860
Jiri Olsa9857b712016-08-17 14:55:23 +02001861 if (!valid_hitm_or_store(he))
1862 he->filtered = HIST_FILTER__C2C;
1863
Jiri Olsaec06f9b2016-09-22 17:36:45 +02001864 return 0;
1865}
1866
1867static int resort_cl_cb(struct hist_entry *he)
1868{
1869 struct c2c_hist_entry *c2c_he;
1870 struct c2c_hists *c2c_hists;
Jiri Olsa9857b712016-08-17 14:55:23 +02001871 bool display = he__display(he, &c2c.hitm_stats);
Jiri Olsaec06f9b2016-09-22 17:36:45 +02001872
1873 c2c_he = container_of(he, struct c2c_hist_entry, he);
1874 c2c_hists = c2c_he->hists;
1875
Jiri Olsa25aa84e2016-06-07 19:02:43 +02001876 calc_width(he);
1877
Jiri Olsa9857b712016-08-17 14:55:23 +02001878 if (display && c2c_hists) {
Jiri Olsabb342da2016-07-06 15:40:09 +02001879 static unsigned int idx;
1880
1881 c2c_he->cacheline_idx = idx++;
1882
Jiri Olsafc9c6302016-05-24 14:14:38 +02001883 c2c_hists__reinit(c2c_hists, c2c.cl_output, c2c.cl_resort);
Jiri Olsa22dd59d2016-05-10 14:08:29 +02001884
Jiri Olsaec06f9b2016-09-22 17:36:45 +02001885 hists__collapse_resort(&c2c_hists->hists, NULL);
1886 hists__output_resort_cb(&c2c_hists->hists, NULL, filter_cb);
1887 }
1888
1889 return 0;
1890}
1891
Jiri Olsa1e181b92016-06-03 15:40:28 +02001892static void setup_nodes_header(void)
1893{
1894 dim_node.header = header_node[c2c.node_info];
1895}
1896
1897static int setup_nodes(struct perf_session *session)
1898{
1899 struct numa_node *n;
1900 unsigned long **nodes;
1901 int node, cpu;
1902 int *cpu2node;
1903
1904 if (c2c.node_info > 2)
1905 c2c.node_info = 2;
1906
1907 c2c.nodes_cnt = session->header.env.nr_numa_nodes;
1908 c2c.cpus_cnt = session->header.env.nr_cpus_online;
1909
1910 n = session->header.env.numa_nodes;
1911 if (!n)
1912 return -EINVAL;
1913
1914 nodes = zalloc(sizeof(unsigned long *) * c2c.nodes_cnt);
1915 if (!nodes)
1916 return -ENOMEM;
1917
1918 c2c.nodes = nodes;
1919
1920 cpu2node = zalloc(sizeof(int) * c2c.cpus_cnt);
1921 if (!cpu2node)
1922 return -ENOMEM;
1923
1924 for (cpu = 0; cpu < c2c.cpus_cnt; cpu++)
1925 cpu2node[cpu] = -1;
1926
1927 c2c.cpu2node = cpu2node;
1928
1929 for (node = 0; node < c2c.nodes_cnt; node++) {
1930 struct cpu_map *map = n[node].map;
1931 unsigned long *set;
1932
1933 set = bitmap_alloc(c2c.cpus_cnt);
1934 if (!set)
1935 return -ENOMEM;
1936
1937 for (cpu = 0; cpu < map->nr; cpu++) {
1938 set_bit(map->map[cpu], set);
1939
1940 if (WARN_ONCE(cpu2node[map->map[cpu]] != -1, "node/cpu topology bug"))
1941 return -EINVAL;
1942
1943 cpu2node[map->map[cpu]] = node;
1944 }
1945
1946 nodes[node] = set;
1947 }
1948
1949 setup_nodes_header();
1950 return 0;
1951}
1952
Jiri Olsa7ef2efa2016-07-01 11:12:11 +02001953#define HAS_HITMS(__h) ((__h)->stats.lcl_hitm || (__h)->stats.rmt_hitm)
1954
1955static int resort_hitm_cb(struct hist_entry *he)
1956{
1957 struct c2c_hist_entry *c2c_he;
1958 c2c_he = container_of(he, struct c2c_hist_entry, he);
1959
1960 if (HAS_HITMS(c2c_he)) {
1961 c2c.shared_clines++;
1962 c2c_add_stats(&c2c.hitm_stats, &c2c_he->stats);
1963 }
1964
1965 return 0;
1966}
1967
1968static int hists__iterate_cb(struct hists *hists, hists__resort_cb_t cb)
1969{
1970 struct rb_node *next = rb_first(&hists->entries);
1971 int ret = 0;
1972
1973 while (next) {
1974 struct hist_entry *he;
1975
1976 he = rb_entry(next, struct hist_entry, rb_node);
1977 ret = cb(he);
1978 if (ret)
1979 break;
1980 next = rb_next(&he->rb_node);
1981 }
1982
1983 return ret;
1984}
1985
Jiri Olsa74c63a22016-05-02 20:01:59 +02001986static void print_c2c__display_stats(FILE *out)
1987{
1988 int llc_misses;
1989 struct c2c_stats *stats = &c2c.hists.stats;
1990
1991 llc_misses = stats->lcl_dram +
1992 stats->rmt_dram +
1993 stats->rmt_hit +
1994 stats->rmt_hitm;
1995
1996 fprintf(out, "=================================================\n");
1997 fprintf(out, " Trace Event Information \n");
1998 fprintf(out, "=================================================\n");
1999 fprintf(out, " Total records : %10d\n", stats->nr_entries);
2000 fprintf(out, " Locked Load/Store Operations : %10d\n", stats->locks);
2001 fprintf(out, " Load Operations : %10d\n", stats->load);
2002 fprintf(out, " Loads - uncacheable : %10d\n", stats->ld_uncache);
2003 fprintf(out, " Loads - IO : %10d\n", stats->ld_io);
2004 fprintf(out, " Loads - Miss : %10d\n", stats->ld_miss);
2005 fprintf(out, " Loads - no mapping : %10d\n", stats->ld_noadrs);
2006 fprintf(out, " Load Fill Buffer Hit : %10d\n", stats->ld_fbhit);
2007 fprintf(out, " Load L1D hit : %10d\n", stats->ld_l1hit);
2008 fprintf(out, " Load L2D hit : %10d\n", stats->ld_l2hit);
2009 fprintf(out, " Load LLC hit : %10d\n", stats->ld_llchit + stats->lcl_hitm);
2010 fprintf(out, " Load Local HITM : %10d\n", stats->lcl_hitm);
2011 fprintf(out, " Load Remote HITM : %10d\n", stats->rmt_hitm);
2012 fprintf(out, " Load Remote HIT : %10d\n", stats->rmt_hit);
2013 fprintf(out, " Load Local DRAM : %10d\n", stats->lcl_dram);
2014 fprintf(out, " Load Remote DRAM : %10d\n", stats->rmt_dram);
2015 fprintf(out, " Load MESI State Exclusive : %10d\n", stats->ld_excl);
2016 fprintf(out, " Load MESI State Shared : %10d\n", stats->ld_shared);
2017 fprintf(out, " Load LLC Misses : %10d\n", llc_misses);
2018 fprintf(out, " LLC Misses to Local DRAM : %10.1f%%\n", ((double)stats->lcl_dram/(double)llc_misses) * 100.);
2019 fprintf(out, " LLC Misses to Remote DRAM : %10.1f%%\n", ((double)stats->rmt_dram/(double)llc_misses) * 100.);
2020 fprintf(out, " LLC Misses to Remote cache (HIT) : %10.1f%%\n", ((double)stats->rmt_hit /(double)llc_misses) * 100.);
2021 fprintf(out, " LLC Misses to Remote cache (HITM) : %10.1f%%\n", ((double)stats->rmt_hitm/(double)llc_misses) * 100.);
2022 fprintf(out, " Store Operations : %10d\n", stats->store);
2023 fprintf(out, " Store - uncacheable : %10d\n", stats->st_uncache);
2024 fprintf(out, " Store - no mapping : %10d\n", stats->st_noadrs);
2025 fprintf(out, " Store L1D Hit : %10d\n", stats->st_l1hit);
2026 fprintf(out, " Store L1D Miss : %10d\n", stats->st_l1miss);
2027 fprintf(out, " No Page Map Rejects : %10d\n", stats->nomap);
2028 fprintf(out, " Unable to parse data source : %10d\n", stats->noparse);
2029}
2030
Jiri Olsa7ef2efa2016-07-01 11:12:11 +02002031static void print_shared_cacheline_info(FILE *out)
2032{
2033 struct c2c_stats *stats = &c2c.hitm_stats;
2034 int hitm_cnt = stats->lcl_hitm + stats->rmt_hitm;
2035
2036 fprintf(out, "=================================================\n");
2037 fprintf(out, " Global Shared Cache Line Event Information \n");
2038 fprintf(out, "=================================================\n");
2039 fprintf(out, " Total Shared Cache Lines : %10d\n", c2c.shared_clines);
2040 fprintf(out, " Load HITs on shared lines : %10d\n", stats->load);
2041 fprintf(out, " Fill Buffer Hits on shared lines : %10d\n", stats->ld_fbhit);
2042 fprintf(out, " L1D hits on shared lines : %10d\n", stats->ld_l1hit);
2043 fprintf(out, " L2D hits on shared lines : %10d\n", stats->ld_l2hit);
2044 fprintf(out, " LLC hits on shared lines : %10d\n", stats->ld_llchit + stats->lcl_hitm);
2045 fprintf(out, " Locked Access on shared lines : %10d\n", stats->locks);
2046 fprintf(out, " Store HITs on shared lines : %10d\n", stats->store);
2047 fprintf(out, " Store L1D hits on shared lines : %10d\n", stats->st_l1hit);
2048 fprintf(out, " Total Merged records : %10d\n", hitm_cnt + stats->store);
2049}
2050
Jiri Olsa2d388bd2016-05-03 14:32:56 +02002051static void print_cacheline(struct c2c_hists *c2c_hists,
2052 struct hist_entry *he_cl,
2053 struct perf_hpp_list *hpp_list,
2054 FILE *out)
2055{
2056 char bf[1000];
2057 struct perf_hpp hpp = {
2058 .buf = bf,
2059 .size = 1000,
2060 };
2061 static bool once;
2062
2063 if (!once) {
2064 hists__fprintf_headers(&c2c_hists->hists, out);
2065 once = true;
2066 } else {
2067 fprintf(out, "\n");
2068 }
2069
Jiri Olsabb342da2016-07-06 15:40:09 +02002070 fprintf(out, " -------------------------------------------------------------\n");
Jiri Olsa2d388bd2016-05-03 14:32:56 +02002071 __hist_entry__snprintf(he_cl, &hpp, hpp_list);
2072 fprintf(out, "%s\n", bf);
Jiri Olsabb342da2016-07-06 15:40:09 +02002073 fprintf(out, " -------------------------------------------------------------\n");
Jiri Olsa2d388bd2016-05-03 14:32:56 +02002074
2075 hists__fprintf(&c2c_hists->hists, false, 0, 0, 0, out, true);
2076}
2077
2078static void print_pareto(FILE *out)
2079{
2080 struct perf_hpp_list hpp_list;
2081 struct rb_node *nd;
2082 int ret;
2083
2084 perf_hpp_list__init(&hpp_list);
2085 ret = hpp_list__parse(&hpp_list,
Jiri Olsabb342da2016-07-06 15:40:09 +02002086 "cl_num,"
Jiri Olsa2d388bd2016-05-03 14:32:56 +02002087 "cl_rmt_hitm,"
2088 "cl_lcl_hitm,"
2089 "cl_stores_l1hit,"
2090 "cl_stores_l1miss,"
2091 "dcacheline",
2092 NULL);
2093
2094 if (WARN_ONCE(ret, "failed to setup sort entries\n"))
2095 return;
2096
2097 nd = rb_first(&c2c.hists.hists.entries);
2098
2099 for (; nd; nd = rb_next(nd)) {
2100 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
2101 struct c2c_hist_entry *c2c_he;
2102
2103 if (he->filtered)
2104 continue;
2105
2106 c2c_he = container_of(he, struct c2c_hist_entry, he);
2107 print_cacheline(c2c_he->hists, he, &hpp_list, out);
2108 }
2109}
2110
Jiri Olsa2709b972016-08-27 11:40:23 +02002111static void print_c2c_info(FILE *out, struct perf_session *session)
2112{
2113 struct perf_evlist *evlist = session->evlist;
2114 struct perf_evsel *evsel;
2115 bool first = true;
2116
2117 fprintf(out, "=================================================\n");
2118 fprintf(out, " c2c details \n");
2119 fprintf(out, "=================================================\n");
2120
2121 evlist__for_each_entry(evlist, evsel) {
2122 fprintf(out, "%-36s: %s\n", first ? " Events" : "",
2123 perf_evsel__name(evsel));
2124 first = false;
2125 }
Jiri Olsa55b95772016-05-29 10:21:45 +02002126 fprintf(out, " Cachelines sort on : %s HITMs\n",
Jiri Olsad940bac2016-11-21 22:33:30 +01002127 display_str[c2c.display]);
Jiri Olsafc9c6302016-05-24 14:14:38 +02002128 fprintf(out, " Cacheline data grouping : %s\n", c2c.cl_sort);
Jiri Olsa2709b972016-08-27 11:40:23 +02002129}
2130
2131static void perf_c2c__hists_fprintf(FILE *out, struct perf_session *session)
Jiri Olsa2d388bd2016-05-03 14:32:56 +02002132{
2133 setup_pager();
2134
Jiri Olsa74c63a22016-05-02 20:01:59 +02002135 print_c2c__display_stats(out);
Jiri Olsa7ef2efa2016-07-01 11:12:11 +02002136 fprintf(out, "\n");
2137 print_shared_cacheline_info(out);
Jiri Olsa2709b972016-08-27 11:40:23 +02002138 fprintf(out, "\n");
2139 print_c2c_info(out, session);
Jiri Olsa74c63a22016-05-02 20:01:59 +02002140
2141 if (c2c.stats_only)
2142 return;
2143
Jiri Olsa2d388bd2016-05-03 14:32:56 +02002144 fprintf(out, "\n");
2145 fprintf(out, "=================================================\n");
2146 fprintf(out, " Shared Data Cache Line Table \n");
2147 fprintf(out, "=================================================\n");
2148 fprintf(out, "#\n");
2149
2150 hists__fprintf(&c2c.hists.hists, true, 0, 0, 0, stdout, false);
2151
2152 fprintf(out, "\n");
2153 fprintf(out, "=================================================\n");
2154 fprintf(out, " Shared Cache Line Distribution Pareto \n");
2155 fprintf(out, "=================================================\n");
2156 fprintf(out, "#\n");
2157
2158 print_pareto(out);
2159}
Jiri Olsa1e181b92016-06-03 15:40:28 +02002160
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002161#ifdef HAVE_SLANG_SUPPORT
2162static void c2c_browser__update_nr_entries(struct hist_browser *hb)
2163{
2164 u64 nr_entries = 0;
2165 struct rb_node *nd = rb_first(&hb->hists->entries);
2166
2167 while (nd) {
2168 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
2169
2170 if (!he->filtered)
2171 nr_entries++;
2172
2173 nd = rb_next(nd);
2174 }
2175
2176 hb->nr_non_filtered_entries = nr_entries;
2177}
2178
Jiri Olsaf1c5fd42016-05-02 18:30:44 +02002179struct c2c_cacheline_browser {
2180 struct hist_browser hb;
2181 struct hist_entry *he;
2182};
2183
2184static int
2185perf_c2c_cacheline_browser__title(struct hist_browser *browser,
2186 char *bf, size_t size)
2187{
2188 struct c2c_cacheline_browser *cl_browser;
2189 struct hist_entry *he;
2190 uint64_t addr = 0;
2191
2192 cl_browser = container_of(browser, struct c2c_cacheline_browser, hb);
2193 he = cl_browser->he;
2194
2195 if (he->mem_info)
2196 addr = cl_address(he->mem_info->daddr.addr);
2197
2198 scnprintf(bf, size, "Cacheline 0x%lx", addr);
2199 return 0;
2200}
2201
2202static struct c2c_cacheline_browser*
2203c2c_cacheline_browser__new(struct hists *hists, struct hist_entry *he)
2204{
2205 struct c2c_cacheline_browser *browser;
2206
2207 browser = zalloc(sizeof(*browser));
2208 if (browser) {
2209 hist_browser__init(&browser->hb, hists);
2210 browser->hb.c2c_filter = true;
2211 browser->hb.title = perf_c2c_cacheline_browser__title;
2212 browser->he = he;
2213 }
2214
2215 return browser;
2216}
2217
2218static int perf_c2c__browse_cacheline(struct hist_entry *he)
2219{
2220 struct c2c_hist_entry *c2c_he;
2221 struct c2c_hists *c2c_hists;
2222 struct c2c_cacheline_browser *cl_browser;
2223 struct hist_browser *browser;
2224 int key = -1;
Jiri Olsa9a406eb2016-08-17 15:54:58 +02002225 const char help[] =
2226 " ENTER Togle callchains (if present) \n"
2227 " n Togle Node details info \n"
2228 " s Togle full lenght of symbol and source line columns \n"
2229 " q Return back to cacheline list \n";
Jiri Olsaf1c5fd42016-05-02 18:30:44 +02002230
Jiri Olsa590b6a32016-07-10 16:25:15 +02002231 /* Display compact version first. */
2232 c2c.symbol_full = false;
2233
Jiri Olsaf1c5fd42016-05-02 18:30:44 +02002234 c2c_he = container_of(he, struct c2c_hist_entry, he);
2235 c2c_hists = c2c_he->hists;
2236
2237 cl_browser = c2c_cacheline_browser__new(&c2c_hists->hists, he);
2238 if (cl_browser == NULL)
2239 return -1;
2240
2241 browser = &cl_browser->hb;
2242
2243 /* reset abort key so that it can get Ctrl-C as a key */
2244 SLang_reset_tty();
2245 SLang_init_tty(0, 0, 0);
2246
2247 c2c_browser__update_nr_entries(browser);
2248
2249 while (1) {
Jiri Olsa9a406eb2016-08-17 15:54:58 +02002250 key = hist_browser__run(browser, "? - help");
Jiri Olsaf1c5fd42016-05-02 18:30:44 +02002251
2252 switch (key) {
Jiri Olsa590b6a32016-07-10 16:25:15 +02002253 case 's':
2254 c2c.symbol_full = !c2c.symbol_full;
2255 break;
Jiri Olsa1a56a422016-07-10 16:30:27 +02002256 case 'n':
2257 c2c.node_info = (c2c.node_info + 1) % 3;
2258 setup_nodes_header();
2259 break;
Jiri Olsaf1c5fd42016-05-02 18:30:44 +02002260 case 'q':
2261 goto out;
Jiri Olsa9a406eb2016-08-17 15:54:58 +02002262 case '?':
2263 ui_browser__help_window(&browser->b, help);
2264 break;
Jiri Olsaf1c5fd42016-05-02 18:30:44 +02002265 default:
2266 break;
2267 }
2268 }
2269
2270out:
2271 free(cl_browser);
2272 return 0;
2273}
2274
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002275static int perf_c2c_browser__title(struct hist_browser *browser,
2276 char *bf, size_t size)
2277{
2278 scnprintf(bf, size,
Jiri Olsa55b95772016-05-29 10:21:45 +02002279 "Shared Data Cache Line Table "
2280 "(%lu entries, sorted on %s HITMs)",
2281 browser->nr_non_filtered_entries,
Jiri Olsad940bac2016-11-21 22:33:30 +01002282 display_str[c2c.display]);
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002283 return 0;
2284}
2285
2286static struct hist_browser*
2287perf_c2c_browser__new(struct hists *hists)
2288{
2289 struct hist_browser *browser = hist_browser__new(hists);
2290
2291 if (browser) {
2292 browser->title = perf_c2c_browser__title;
2293 browser->c2c_filter = true;
2294 }
2295
2296 return browser;
2297}
2298
2299static int perf_c2c__hists_browse(struct hists *hists)
2300{
2301 struct hist_browser *browser;
2302 int key = -1;
Jiri Olsa9a406eb2016-08-17 15:54:58 +02002303 const char help[] =
2304 " d Display cacheline details \n"
2305 " ENTER Togle callchains (if present) \n"
2306 " q Quit \n";
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002307
2308 browser = perf_c2c_browser__new(hists);
2309 if (browser == NULL)
2310 return -1;
2311
2312 /* reset abort key so that it can get Ctrl-C as a key */
2313 SLang_reset_tty();
2314 SLang_init_tty(0, 0, 0);
2315
2316 c2c_browser__update_nr_entries(browser);
2317
2318 while (1) {
Jiri Olsa9a406eb2016-08-17 15:54:58 +02002319 key = hist_browser__run(browser, "? - help");
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002320
2321 switch (key) {
2322 case 'q':
2323 goto out;
Jiri Olsaf1c5fd42016-05-02 18:30:44 +02002324 case 'd':
2325 perf_c2c__browse_cacheline(browser->he_selection);
2326 break;
Jiri Olsa9a406eb2016-08-17 15:54:58 +02002327 case '?':
2328 ui_browser__help_window(&browser->b, help);
2329 break;
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002330 default:
2331 break;
2332 }
2333 }
2334
2335out:
2336 hist_browser__delete(browser);
2337 return 0;
2338}
2339
Jiri Olsa2709b972016-08-27 11:40:23 +02002340static void perf_c2c_display(struct perf_session *session)
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002341{
Namhyung Kim1936fea2017-03-08 00:08:33 +09002342 if (use_browser == 0)
Jiri Olsa2709b972016-08-27 11:40:23 +02002343 perf_c2c__hists_fprintf(stdout, session);
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002344 else
2345 perf_c2c__hists_browse(&c2c.hists.hists);
2346}
2347#else
Jiri Olsa2709b972016-08-27 11:40:23 +02002348static void perf_c2c_display(struct perf_session *session)
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002349{
2350 use_browser = 0;
Jiri Olsa2709b972016-08-27 11:40:23 +02002351 perf_c2c__hists_fprintf(stdout, session);
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002352}
2353#endif /* HAVE_SLANG_SUPPORT */
2354
2355static void ui_quirks(void)
2356{
2357 if (!c2c.use_stdio) {
2358 dim_offset.width = 5;
2359 dim_offset.header = header_offset_tui;
2360 }
Jiri Olsa55b95772016-05-29 10:21:45 +02002361
2362 dim_percent_hitm.header = percent_hitm_header[c2c.display];
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002363}
2364
Jiri Olsadd805762016-05-11 18:23:48 +02002365#define CALLCHAIN_DEFAULT_OPT "graph,0.5,caller,function,percent"
2366
2367const char callchain_help[] = "Display call graph (stack chain/backtrace):\n\n"
2368 CALLCHAIN_REPORT_HELP
2369 "\n\t\t\t\tDefault: " CALLCHAIN_DEFAULT_OPT;
2370
2371static int
2372parse_callchain_opt(const struct option *opt, const char *arg, int unset)
2373{
2374 struct callchain_param *callchain = opt->value;
2375
2376 callchain->enabled = !unset;
2377 /*
2378 * --no-call-graph
2379 */
2380 if (unset) {
2381 symbol_conf.use_callchain = false;
2382 callchain->mode = CHAIN_NONE;
2383 return 0;
2384 }
2385
2386 return parse_callchain_report_opt(arg);
2387}
2388
2389static int setup_callchain(struct perf_evlist *evlist)
2390{
2391 u64 sample_type = perf_evlist__combined_sample_type(evlist);
2392 enum perf_call_graph_mode mode = CALLCHAIN_NONE;
2393
2394 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
2395 (sample_type & PERF_SAMPLE_STACK_USER))
2396 mode = CALLCHAIN_DWARF;
2397 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
2398 mode = CALLCHAIN_LBR;
2399 else if (sample_type & PERF_SAMPLE_CALLCHAIN)
2400 mode = CALLCHAIN_FP;
2401
2402 if (!callchain_param.enabled &&
2403 callchain_param.mode != CHAIN_NONE &&
2404 mode != CALLCHAIN_NONE) {
2405 symbol_conf.use_callchain = true;
2406 if (callchain_register_param(&callchain_param) < 0) {
2407 ui__error("Can't register callchain params.\n");
2408 return -EINVAL;
2409 }
2410 }
2411
2412 callchain_param.record_mode = mode;
2413 callchain_param.min_percent = 0;
2414 return 0;
2415}
2416
Jiri Olsa55b95772016-05-29 10:21:45 +02002417static int setup_display(const char *str)
2418{
Jiri Olsad940bac2016-11-21 22:33:30 +01002419 const char *display = str ?: "tot";
Jiri Olsa55b95772016-05-29 10:21:45 +02002420
Jiri Olsad940bac2016-11-21 22:33:30 +01002421 if (!strcmp(display, "tot"))
2422 c2c.display = DISPLAY_TOT;
2423 else if (!strcmp(display, "rmt"))
Jiri Olsa55b95772016-05-29 10:21:45 +02002424 c2c.display = DISPLAY_RMT;
2425 else if (!strcmp(display, "lcl"))
2426 c2c.display = DISPLAY_LCL;
2427 else {
2428 pr_err("failed: unknown display type: %s\n", str);
2429 return -1;
2430 }
2431
2432 return 0;
2433}
2434
Jiri Olsafc9c6302016-05-24 14:14:38 +02002435#define for_each_token(__tok, __buf, __sep, __tmp) \
2436 for (__tok = strtok_r(__buf, __sep, &__tmp); __tok; \
2437 __tok = strtok_r(NULL, __sep, &__tmp))
2438
Jiri Olsa18f278d2016-10-11 13:39:47 +02002439static int build_cl_output(char *cl_sort, bool no_source)
Jiri Olsafc9c6302016-05-24 14:14:38 +02002440{
2441 char *tok, *tmp, *buf = strdup(cl_sort);
2442 bool add_pid = false;
2443 bool add_tid = false;
2444 bool add_iaddr = false;
2445 bool add_sym = false;
2446 bool add_dso = false;
2447 bool add_src = false;
2448
2449 if (!buf)
2450 return -ENOMEM;
2451
2452 for_each_token(tok, buf, ",", tmp) {
2453 if (!strcmp(tok, "tid")) {
2454 add_tid = true;
2455 } else if (!strcmp(tok, "pid")) {
2456 add_pid = true;
2457 } else if (!strcmp(tok, "iaddr")) {
2458 add_iaddr = true;
2459 add_sym = true;
2460 add_dso = true;
Jiri Olsa18f278d2016-10-11 13:39:47 +02002461 add_src = no_source ? false : true;
Jiri Olsafc9c6302016-05-24 14:14:38 +02002462 } else if (!strcmp(tok, "dso")) {
2463 add_dso = true;
2464 } else if (strcmp(tok, "offset")) {
2465 pr_err("unrecognized sort token: %s\n", tok);
2466 return -EINVAL;
2467 }
2468 }
2469
2470 if (asprintf(&c2c.cl_output,
Jiri Olsabb342da2016-07-06 15:40:09 +02002471 "%s%s%s%s%s%s%s%s%s%s",
2472 c2c.use_stdio ? "cl_num_empty," : "",
Jiri Olsafc9c6302016-05-24 14:14:38 +02002473 "percent_rmt_hitm,"
2474 "percent_lcl_hitm,"
2475 "percent_stores_l1hit,"
2476 "percent_stores_l1miss,"
2477 "offset,",
2478 add_pid ? "pid," : "",
2479 add_tid ? "tid," : "",
2480 add_iaddr ? "iaddr," : "",
2481 "mean_rmt,"
2482 "mean_lcl,"
2483 "mean_load,"
Jiri Olsa8763e6a2017-01-20 10:20:31 +01002484 "tot_recs,"
Jiri Olsafc9c6302016-05-24 14:14:38 +02002485 "cpucnt,",
2486 add_sym ? "symbol," : "",
2487 add_dso ? "dso," : "",
2488 add_src ? "cl_srcline," : "",
2489 "node") < 0)
2490 return -ENOMEM;
2491
2492 c2c.show_src = add_src;
2493
2494 free(buf);
2495 return 0;
2496}
2497
Jiri Olsa18f278d2016-10-11 13:39:47 +02002498static int setup_coalesce(const char *coalesce, bool no_source)
Jiri Olsafc9c6302016-05-24 14:14:38 +02002499{
2500 const char *c = coalesce ?: coalesce_default;
2501
2502 if (asprintf(&c2c.cl_sort, "offset,%s", c) < 0)
2503 return -ENOMEM;
2504
Jiri Olsa18f278d2016-10-11 13:39:47 +02002505 if (build_cl_output(c2c.cl_sort, no_source))
Jiri Olsafc9c6302016-05-24 14:14:38 +02002506 return -1;
2507
2508 if (asprintf(&c2c.cl_resort, "offset,%s",
Jiri Olsad940bac2016-11-21 22:33:30 +01002509 c2c.display == DISPLAY_TOT ?
2510 "tot_hitm" :
Jiri Olsafc9c6302016-05-24 14:14:38 +02002511 c2c.display == DISPLAY_RMT ?
2512 "rmt_hitm,lcl_hitm" :
2513 "lcl_hitm,rmt_hitm") < 0)
2514 return -ENOMEM;
2515
2516 pr_debug("coalesce sort fields: %s\n", c2c.cl_sort);
2517 pr_debug("coalesce resort fields: %s\n", c2c.cl_resort);
2518 pr_debug("coalesce output fields: %s\n", c2c.cl_output);
2519 return 0;
2520}
2521
Jiri Olsa903a6f12016-09-22 17:36:40 +02002522static int perf_c2c__report(int argc, const char **argv)
2523{
2524 struct perf_session *session;
Jiri Olsa78b27542016-09-22 17:36:44 +02002525 struct ui_progress prog;
Jiri Olsa903a6f12016-09-22 17:36:40 +02002526 struct perf_data_file file = {
2527 .mode = PERF_DATA_MODE_READ,
2528 };
Jiri Olsadd805762016-05-11 18:23:48 +02002529 char callchain_default_opt[] = CALLCHAIN_DEFAULT_OPT;
Jiri Olsa55b95772016-05-29 10:21:45 +02002530 const char *display = NULL;
Jiri Olsafc9c6302016-05-24 14:14:38 +02002531 const char *coalesce = NULL;
Jiri Olsa18f278d2016-10-11 13:39:47 +02002532 bool no_source = false;
Jiri Olsa3a5bfab2016-11-21 22:33:31 +01002533 const struct option options[] = {
Jiri Olsa903a6f12016-09-22 17:36:40 +02002534 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
2535 "file", "vmlinux pathname"),
Jiri Olsa903a6f12016-09-22 17:36:40 +02002536 OPT_STRING('i', "input", &input_name, "file",
2537 "the input file to process"),
Jiri Olsa1e181b92016-06-03 15:40:28 +02002538 OPT_INCR('N', "node-info", &c2c.node_info,
2539 "show extra node info in report (repeat for more info)"),
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002540#ifdef HAVE_SLANG_SUPPORT
2541 OPT_BOOLEAN(0, "stdio", &c2c.use_stdio, "Use the stdio interface"),
2542#endif
Jiri Olsa74c63a22016-05-02 20:01:59 +02002543 OPT_BOOLEAN(0, "stats", &c2c.stats_only,
Namhyung Kimf75d2892017-03-08 00:08:32 +09002544 "Display only statistic tables (implies --stdio)"),
Jiri Olsa590b6a32016-07-10 16:25:15 +02002545 OPT_BOOLEAN(0, "full-symbols", &c2c.symbol_full,
2546 "Display full length of symbols"),
Jiri Olsa18f278d2016-10-11 13:39:47 +02002547 OPT_BOOLEAN(0, "no-source", &no_source,
2548 "Do not display Source Line column"),
Jiri Olsaaf09b2d2016-10-11 13:52:05 +02002549 OPT_BOOLEAN(0, "show-all", &c2c.show_all,
2550 "Show all captured HITM lines."),
Jiri Olsadd805762016-05-11 18:23:48 +02002551 OPT_CALLBACK_DEFAULT('g', "call-graph", &callchain_param,
2552 "print_type,threshold[,print_limit],order,sort_key[,branch],value",
2553 callchain_help, &parse_callchain_opt,
2554 callchain_default_opt),
Jiri Olsad940bac2016-11-21 22:33:30 +01002555 OPT_STRING('d', "display", &display, "Switch HITM output type", "lcl,rmt"),
Jiri Olsafc9c6302016-05-24 14:14:38 +02002556 OPT_STRING('c', "coalesce", &coalesce, "coalesce fields",
2557 "coalesce fields: pid,tid,iaddr,dso"),
Jiri Olsab7ac4f92016-11-21 22:33:28 +01002558 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Jiri Olsa3a5bfab2016-11-21 22:33:31 +01002559 OPT_PARENT(c2c_options),
Jiri Olsa903a6f12016-09-22 17:36:40 +02002560 OPT_END()
2561 };
2562 int err = 0;
2563
Jiri Olsa3a5bfab2016-11-21 22:33:31 +01002564 argc = parse_options(argc, argv, options, report_c2c_usage,
Jiri Olsa903a6f12016-09-22 17:36:40 +02002565 PARSE_OPT_STOP_AT_NON_OPTION);
Jiri Olsa78b27542016-09-22 17:36:44 +02002566 if (argc)
Jiri Olsa3a5bfab2016-11-21 22:33:31 +01002567 usage_with_options(report_c2c_usage, options);
Jiri Olsa903a6f12016-09-22 17:36:40 +02002568
Jiri Olsa74c63a22016-05-02 20:01:59 +02002569 if (c2c.stats_only)
2570 c2c.use_stdio = true;
2571
Jiri Olsa78b27542016-09-22 17:36:44 +02002572 if (!input_name || !strlen(input_name))
2573 input_name = "perf.data";
2574
Jiri Olsab7ac4f92016-11-21 22:33:28 +01002575 file.path = input_name;
2576 file.force = symbol_conf.force;
Jiri Olsa903a6f12016-09-22 17:36:40 +02002577
Jiri Olsa55b95772016-05-29 10:21:45 +02002578 err = setup_display(display);
2579 if (err)
2580 goto out;
2581
Jiri Olsa18f278d2016-10-11 13:39:47 +02002582 err = setup_coalesce(coalesce, no_source);
Jiri Olsafc9c6302016-05-24 14:14:38 +02002583 if (err) {
2584 pr_debug("Failed to initialize hists\n");
2585 goto out;
2586 }
2587
Jiri Olsa1d62fcd2016-05-24 10:12:31 +02002588 err = c2c_hists__init(&c2c.hists, "dcacheline", 2);
Jiri Olsac75540e2016-09-22 17:36:41 +02002589 if (err) {
2590 pr_debug("Failed to initialize hists\n");
2591 goto out;
2592 }
2593
Jiri Olsa903a6f12016-09-22 17:36:40 +02002594 session = perf_session__new(&file, 0, &c2c.tool);
2595 if (session == NULL) {
2596 pr_debug("No memory for session\n");
2597 goto out;
2598 }
Jiri Olsae8c5fe12016-11-21 22:33:27 +01002599
Jiri Olsa1e181b92016-06-03 15:40:28 +02002600 err = setup_nodes(session);
2601 if (err) {
2602 pr_err("Failed setup nodes\n");
2603 goto out;
2604 }
Jiri Olsa903a6f12016-09-22 17:36:40 +02002605
Jiri Olsadd805762016-05-11 18:23:48 +02002606 err = setup_callchain(session->evlist);
2607 if (err)
2608 goto out_session;
2609
Jiri Olsa903a6f12016-09-22 17:36:40 +02002610 if (symbol__init(&session->header.env) < 0)
2611 goto out_session;
2612
2613 /* No pipe support at the moment. */
2614 if (perf_data_file__is_pipe(session->file)) {
2615 pr_debug("No pipe support at the moment.\n");
2616 goto out_session;
2617 }
2618
Jiri Olsae8c5fe12016-11-21 22:33:27 +01002619 if (c2c.use_stdio)
2620 use_browser = 0;
2621 else
2622 use_browser = 1;
2623
2624 setup_browser(false);
2625
Jiri Olsa78b27542016-09-22 17:36:44 +02002626 err = perf_session__process_events(session);
2627 if (err) {
2628 pr_err("failed to process sample\n");
2629 goto out_session;
2630 }
2631
Jiri Olsa22dd59d2016-05-10 14:08:29 +02002632 c2c_hists__reinit(&c2c.hists,
Jiri Olsabb342da2016-07-06 15:40:09 +02002633 "cl_idx,"
Jiri Olsa22dd59d2016-05-10 14:08:29 +02002634 "dcacheline,"
2635 "tot_recs,"
2636 "percent_hitm,"
2637 "tot_hitm,lcl_hitm,rmt_hitm,"
2638 "stores,stores_l1hit,stores_l1miss,"
2639 "dram_lcl,dram_rmt,"
2640 "ld_llcmiss,"
2641 "tot_loads,"
2642 "ld_fbhit,ld_l1hit,ld_l2hit,"
2643 "ld_lclhit,ld_rmthit",
Jiri Olsad940bac2016-11-21 22:33:30 +01002644 c2c.display == DISPLAY_TOT ? "tot_hitm" :
Jiri Olsa55b95772016-05-29 10:21:45 +02002645 c2c.display == DISPLAY_LCL ? "lcl_hitm" : "rmt_hitm"
Jiri Olsa22dd59d2016-05-10 14:08:29 +02002646 );
2647
Jiri Olsa78b27542016-09-22 17:36:44 +02002648 ui_progress__init(&prog, c2c.hists.hists.nr_entries, "Sorting...");
2649
2650 hists__collapse_resort(&c2c.hists.hists, NULL);
Jiri Olsa7ef2efa2016-07-01 11:12:11 +02002651 hists__output_resort_cb(&c2c.hists.hists, &prog, resort_hitm_cb);
2652 hists__iterate_cb(&c2c.hists.hists, resort_cl_cb);
Jiri Olsa78b27542016-09-22 17:36:44 +02002653
2654 ui_progress__finish();
2655
Jiri Olsa5a1a99c2016-01-06 16:59:02 +01002656 ui_quirks();
2657
Jiri Olsa2709b972016-08-27 11:40:23 +02002658 perf_c2c_display(session);
Jiri Olsa2d388bd2016-05-03 14:32:56 +02002659
Jiri Olsa903a6f12016-09-22 17:36:40 +02002660out_session:
2661 perf_session__delete(session);
2662out:
2663 return err;
2664}
2665
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -03002666static int parse_record_events(const struct option *opt,
Jiri Olsa39bcd4a2016-09-22 17:36:39 +02002667 const char *str, int unset __maybe_unused)
2668{
2669 bool *event_set = (bool *) opt->value;
2670
2671 *event_set = true;
2672 return perf_mem_events__parse(str);
2673}
2674
2675
2676static const char * const __usage_record[] = {
2677 "perf c2c record [<options>] [<command>]",
2678 "perf c2c record [<options>] -- <command> [<options>]",
2679 NULL
2680};
2681
2682static const char * const *record_mem_usage = __usage_record;
2683
2684static int perf_c2c__record(int argc, const char **argv)
2685{
2686 int rec_argc, i = 0, j;
2687 const char **rec_argv;
2688 int ret;
2689 bool all_user = false, all_kernel = false;
2690 bool event_set = false;
2691 struct option options[] = {
2692 OPT_CALLBACK('e', "event", &event_set, "event",
2693 "event selector. Use 'perf mem record -e list' to list available events",
2694 parse_record_events),
Jiri Olsa39bcd4a2016-09-22 17:36:39 +02002695 OPT_BOOLEAN('u', "all-user", &all_user, "collect only user level data"),
2696 OPT_BOOLEAN('k', "all-kernel", &all_kernel, "collect only kernel level data"),
2697 OPT_UINTEGER('l', "ldlat", &perf_mem_events__loads_ldlat, "setup mem-loads latency"),
Jiri Olsa3a5bfab2016-11-21 22:33:31 +01002698 OPT_PARENT(c2c_options),
Jiri Olsa39bcd4a2016-09-22 17:36:39 +02002699 OPT_END()
2700 };
2701
2702 if (perf_mem_events__init()) {
2703 pr_err("failed: memory events not supported\n");
2704 return -1;
2705 }
2706
2707 argc = parse_options(argc, argv, options, record_mem_usage,
2708 PARSE_OPT_KEEP_UNKNOWN);
2709
2710 rec_argc = argc + 10; /* max number of arguments */
2711 rec_argv = calloc(rec_argc + 1, sizeof(char *));
2712 if (!rec_argv)
2713 return -1;
2714
2715 rec_argv[i++] = "record";
2716
2717 if (!event_set) {
2718 perf_mem_events[PERF_MEM_EVENTS__LOAD].record = true;
2719 perf_mem_events[PERF_MEM_EVENTS__STORE].record = true;
2720 }
2721
2722 if (perf_mem_events[PERF_MEM_EVENTS__LOAD].record)
2723 rec_argv[i++] = "-W";
2724
2725 rec_argv[i++] = "-d";
2726 rec_argv[i++] = "--sample-cpu";
2727
2728 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
2729 if (!perf_mem_events[j].record)
2730 continue;
2731
2732 if (!perf_mem_events[j].supported) {
2733 pr_err("failed: event '%s' not supported\n",
2734 perf_mem_events[j].name);
2735 return -1;
2736 }
2737
2738 rec_argv[i++] = "-e";
2739 rec_argv[i++] = perf_mem_events__name(j);
2740 };
2741
2742 if (all_user)
2743 rec_argv[i++] = "--all-user";
2744
2745 if (all_kernel)
2746 rec_argv[i++] = "--all-kernel";
2747
2748 for (j = 0; j < argc; j++, i++)
2749 rec_argv[i] = argv[j];
2750
2751 if (verbose > 0) {
2752 pr_debug("calling: ");
2753
2754 j = 0;
2755
2756 while (rec_argv[j]) {
2757 pr_debug("%s ", rec_argv[j]);
2758 j++;
2759 }
2760 pr_debug("\n");
2761 }
2762
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002763 ret = cmd_record(i, rec_argv);
Jiri Olsa39bcd4a2016-09-22 17:36:39 +02002764 free(rec_argv);
2765 return ret;
2766}
2767
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002768int cmd_c2c(int argc, const char **argv)
Jiri Olsa7aef3bf2016-09-22 17:36:38 +02002769{
Jiri Olsa7aef3bf2016-09-22 17:36:38 +02002770 argc = parse_options(argc, argv, c2c_options, c2c_usage,
2771 PARSE_OPT_STOP_AT_NON_OPTION);
Jiri Olsa39bcd4a2016-09-22 17:36:39 +02002772
2773 if (!argc)
2774 usage_with_options(c2c_usage, c2c_options);
2775
2776 if (!strncmp(argv[0], "rec", 3)) {
2777 return perf_c2c__record(argc, argv);
Jiri Olsa903a6f12016-09-22 17:36:40 +02002778 } else if (!strncmp(argv[0], "rep", 3)) {
2779 return perf_c2c__report(argc, argv);
Jiri Olsa39bcd4a2016-09-22 17:36:39 +02002780 } else {
2781 usage_with_options(c2c_usage, c2c_options);
2782 }
2783
Jiri Olsa7aef3bf2016-09-22 17:36:38 +02002784 return 0;
2785}