Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jiri Olsa | 465f27a | 2016-08-26 10:36:12 +0200 | [diff] [blame] | 2 | /* |
| 3 | * This is rewrite of original c2c tool introduced in here: |
| 4 | * http://lwn.net/Articles/588866/ |
| 5 | * |
| 6 | * The original tool was changed to fit in current perf state. |
| 7 | * |
| 8 | * Original authors: |
| 9 | * Don Zickus <dzickus@redhat.com> |
| 10 | * Dick Fowles <fowles@inreach.com> |
| 11 | * Joe Mario <jmario@redhat.com> |
| 12 | */ |
Arnaldo Carvalho de Melo | a43783a | 2017-04-18 10:46:11 -0300 | [diff] [blame] | 13 | #include <errno.h> |
Arnaldo Carvalho de Melo | fd20e81 | 2017-04-17 15:23:08 -0300 | [diff] [blame] | 14 | #include <inttypes.h> |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 15 | #include <linux/compiler.h> |
Mamatha Inamdar | 6ef81c5 | 2019-08-22 12:50:49 +0530 | [diff] [blame] | 16 | #include <linux/err.h> |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 17 | #include <linux/kernel.h> |
Jiri Olsa | cbb8850 | 2016-09-22 17:36:48 +0200 | [diff] [blame] | 18 | #include <linux/stringify.h> |
Arnaldo Carvalho de Melo | 7f7c536 | 2019-07-04 11:32:27 -0300 | [diff] [blame] | 19 | #include <linux/zalloc.h> |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 20 | #include <asm/bug.h> |
Arnaldo Carvalho de Melo | 391e420 | 2017-04-19 18:51:14 -0300 | [diff] [blame] | 21 | #include <sys/param.h> |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 22 | #include "debug.h" |
| 23 | #include "builtin.h" |
Arnaldo Carvalho de Melo | 87ffb6c | 2019-09-10 16:29:02 +0100 | [diff] [blame] | 24 | #include <perf/cpumap.h> |
Arnaldo Carvalho de Melo | 8520a98 | 2019-08-29 16:18:59 -0300 | [diff] [blame] | 25 | #include <subcmd/pager.h> |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 26 | #include <subcmd/parse-options.h> |
Arnaldo Carvalho de Melo | d3300a3 | 2019-08-30 15:09:54 -0300 | [diff] [blame] | 27 | #include "map_symbol.h" |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 28 | #include "mem-events.h" |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 29 | #include "session.h" |
| 30 | #include "hist.h" |
Jiri Olsa | cbb8850 | 2016-09-22 17:36:48 +0200 | [diff] [blame] | 31 | #include "sort.h" |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 32 | #include "tool.h" |
Arnaldo Carvalho de Melo | 1250090 | 2019-08-22 16:58:29 -0300 | [diff] [blame] | 33 | #include "cacheline.h" |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 34 | #include "data.h" |
Arnaldo Carvalho de Melo | 5ab8c68 | 2017-04-25 15:30:47 -0300 | [diff] [blame] | 35 | #include "event.h" |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 36 | #include "evlist.h" |
| 37 | #include "evsel.h" |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 38 | #include "ui/browsers/hists.h" |
Arnaldo Carvalho de Melo | e7ff892 | 2017-04-19 21:34:35 -0300 | [diff] [blame] | 39 | #include "thread.h" |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 40 | #include "mem2node.h" |
Arnaldo Carvalho de Melo | daecf9e | 2019-01-28 00:03:34 +0100 | [diff] [blame] | 41 | #include "symbol.h" |
Arnaldo Carvalho de Melo | 8520a98 | 2019-08-29 16:18:59 -0300 | [diff] [blame] | 42 | #include "ui/ui.h" |
Arnaldo Carvalho de Melo | 171f747 | 2019-08-30 11:28:14 -0300 | [diff] [blame] | 43 | #include "ui/progress.h" |
Arnaldo Carvalho de Melo | c1a604d | 2019-08-29 15:20:59 -0300 | [diff] [blame] | 44 | #include "../perf.h" |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 45 | |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 46 | struct c2c_hists { |
| 47 | struct hists hists; |
| 48 | struct perf_hpp_list list; |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 49 | struct c2c_stats stats; |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 50 | }; |
| 51 | |
Jiri Olsa | 92062d5 | 2016-06-05 13:40:53 +0200 | [diff] [blame] | 52 | struct compute_stats { |
| 53 | struct stats lcl_hitm; |
| 54 | struct stats rmt_hitm; |
| 55 | struct stats load; |
| 56 | }; |
| 57 | |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 58 | struct c2c_hist_entry { |
| 59 | struct c2c_hists *hists; |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 60 | struct c2c_stats stats; |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 61 | unsigned long *cpuset; |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 62 | unsigned long *nodeset; |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 63 | struct c2c_stats *node_stats; |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 64 | unsigned int cacheline_idx; |
Jiri Olsa | 92062d5 | 2016-06-05 13:40:53 +0200 | [diff] [blame] | 65 | |
| 66 | struct compute_stats cstats; |
| 67 | |
Jiri Olsa | 4c82052 | 2018-06-08 02:22:11 +0200 | [diff] [blame] | 68 | unsigned long paddr; |
| 69 | unsigned long paddr_cnt; |
| 70 | bool paddr_zero; |
| 71 | char *nodestr; |
| 72 | |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 73 | /* |
| 74 | * must be at the end, |
| 75 | * because of its callchain dynamic entry |
| 76 | */ |
| 77 | struct hist_entry he; |
| 78 | }; |
| 79 | |
Jiri Olsa | 423701a | 2018-12-28 11:18:19 +0100 | [diff] [blame] | 80 | static char const *coalesce_default = "iaddr"; |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 81 | |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 82 | struct perf_c2c { |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 83 | struct perf_tool tool; |
| 84 | struct c2c_hists hists; |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 85 | struct mem2node mem2node; |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 86 | |
| 87 | unsigned long **nodes; |
| 88 | int nodes_cnt; |
| 89 | int cpus_cnt; |
| 90 | int *cpu2node; |
| 91 | int node_info; |
Jiri Olsa | 89d9ba8f | 2016-07-10 15:47:40 +0200 | [diff] [blame] | 92 | |
| 93 | bool show_src; |
Jiri Olsa | af09b2d | 2016-10-11 13:52:05 +0200 | [diff] [blame] | 94 | bool show_all; |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 95 | bool use_stdio; |
Jiri Olsa | 74c63a2 | 2016-05-02 20:01:59 +0200 | [diff] [blame] | 96 | bool stats_only; |
Jiri Olsa | 590b6a3 | 2016-07-10 16:25:15 +0200 | [diff] [blame] | 97 | bool symbol_full; |
Kan Liang | d80da76 | 2020-03-19 13:25:16 -0700 | [diff] [blame] | 98 | bool stitch_lbr; |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 99 | |
Leo Yan | 1834436 | 2021-01-14 23:46:41 +0800 | [diff] [blame] | 100 | /* Shared cache line stats */ |
| 101 | struct c2c_stats shared_clines_stats; |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 102 | int shared_clines; |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 103 | |
| 104 | int display; |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 105 | |
| 106 | const char *coalesce; |
| 107 | char *cl_sort; |
| 108 | char *cl_resort; |
| 109 | char *cl_output; |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | enum { |
| 113 | DISPLAY_LCL, |
| 114 | DISPLAY_RMT, |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 115 | DISPLAY_TOT, |
| 116 | DISPLAY_MAX, |
| 117 | }; |
| 118 | |
| 119 | static const char *display_str[DISPLAY_MAX] = { |
| 120 | [DISPLAY_LCL] = "Local", |
| 121 | [DISPLAY_RMT] = "Remote", |
| 122 | [DISPLAY_TOT] = "Total", |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 123 | }; |
| 124 | |
Jiri Olsa | 3a5bfab | 2016-11-21 22:33:31 +0100 | [diff] [blame] | 125 | static const struct option c2c_options[] = { |
| 126 | OPT_INCR('v', "verbose", &verbose, "be more verbose (show counter open errors, etc)"), |
| 127 | OPT_END() |
| 128 | }; |
| 129 | |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 130 | static struct perf_c2c c2c; |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 131 | |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 132 | static void *c2c_he_zalloc(size_t size) |
| 133 | { |
| 134 | struct c2c_hist_entry *c2c_he; |
| 135 | |
| 136 | c2c_he = zalloc(size + sizeof(*c2c_he)); |
| 137 | if (!c2c_he) |
| 138 | return NULL; |
| 139 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 140 | c2c_he->cpuset = bitmap_alloc(c2c.cpus_cnt); |
| 141 | if (!c2c_he->cpuset) |
| 142 | return NULL; |
| 143 | |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 144 | c2c_he->nodeset = bitmap_alloc(c2c.nodes_cnt); |
| 145 | if (!c2c_he->nodeset) |
| 146 | return NULL; |
| 147 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 148 | c2c_he->node_stats = zalloc(c2c.nodes_cnt * sizeof(*c2c_he->node_stats)); |
| 149 | if (!c2c_he->node_stats) |
| 150 | return NULL; |
| 151 | |
Jiri Olsa | 92062d5 | 2016-06-05 13:40:53 +0200 | [diff] [blame] | 152 | init_stats(&c2c_he->cstats.lcl_hitm); |
| 153 | init_stats(&c2c_he->cstats.rmt_hitm); |
| 154 | init_stats(&c2c_he->cstats.load); |
| 155 | |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 156 | return &c2c_he->he; |
| 157 | } |
| 158 | |
| 159 | static void c2c_he_free(void *he) |
| 160 | { |
| 161 | struct c2c_hist_entry *c2c_he; |
| 162 | |
| 163 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 164 | if (c2c_he->hists) { |
| 165 | hists__delete_entries(&c2c_he->hists->hists); |
| 166 | free(c2c_he->hists); |
| 167 | } |
| 168 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 169 | free(c2c_he->cpuset); |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 170 | free(c2c_he->nodeset); |
| 171 | free(c2c_he->nodestr); |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 172 | free(c2c_he->node_stats); |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 173 | free(c2c_he); |
| 174 | } |
| 175 | |
| 176 | static struct hist_entry_ops c2c_entry_ops = { |
| 177 | .new = c2c_he_zalloc, |
| 178 | .free = c2c_he_free, |
| 179 | }; |
| 180 | |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 181 | static int c2c_hists__init(struct c2c_hists *hists, |
Jiri Olsa | 1d62fcd | 2016-05-24 10:12:31 +0200 | [diff] [blame] | 182 | const char *sort, |
| 183 | int nr_header_lines); |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 184 | |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 185 | static struct c2c_hists* |
| 186 | he__get_c2c_hists(struct hist_entry *he, |
Jiri Olsa | 1d62fcd | 2016-05-24 10:12:31 +0200 | [diff] [blame] | 187 | const char *sort, |
| 188 | int nr_header_lines) |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 189 | { |
| 190 | struct c2c_hist_entry *c2c_he; |
| 191 | struct c2c_hists *hists; |
| 192 | int ret; |
| 193 | |
| 194 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 195 | if (c2c_he->hists) |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 196 | return c2c_he->hists; |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 197 | |
| 198 | hists = c2c_he->hists = zalloc(sizeof(*hists)); |
| 199 | if (!hists) |
| 200 | return NULL; |
| 201 | |
Jiri Olsa | 1d62fcd | 2016-05-24 10:12:31 +0200 | [diff] [blame] | 202 | ret = c2c_hists__init(hists, sort, nr_header_lines); |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 203 | if (ret) { |
| 204 | free(hists); |
| 205 | return NULL; |
| 206 | } |
| 207 | |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 208 | return hists; |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 209 | } |
| 210 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 211 | static void c2c_he__set_cpu(struct c2c_hist_entry *c2c_he, |
| 212 | struct perf_sample *sample) |
| 213 | { |
| 214 | if (WARN_ONCE(sample->cpu == (unsigned int) -1, |
| 215 | "WARNING: no sample cpu value")) |
| 216 | return; |
| 217 | |
| 218 | set_bit(sample->cpu, c2c_he->cpuset); |
| 219 | } |
| 220 | |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 221 | static void c2c_he__set_node(struct c2c_hist_entry *c2c_he, |
| 222 | struct perf_sample *sample) |
| 223 | { |
| 224 | int node; |
| 225 | |
| 226 | if (!sample->phys_addr) { |
| 227 | c2c_he->paddr_zero = true; |
| 228 | return; |
| 229 | } |
| 230 | |
| 231 | node = mem2node__node(&c2c.mem2node, sample->phys_addr); |
| 232 | if (WARN_ONCE(node < 0, "WARNING: failed to find node\n")) |
| 233 | return; |
| 234 | |
| 235 | set_bit(node, c2c_he->nodeset); |
| 236 | |
| 237 | if (c2c_he->paddr != sample->phys_addr) { |
| 238 | c2c_he->paddr_cnt++; |
| 239 | c2c_he->paddr = sample->phys_addr; |
| 240 | } |
| 241 | } |
| 242 | |
Jiri Olsa | 92062d5 | 2016-06-05 13:40:53 +0200 | [diff] [blame] | 243 | static void compute_stats(struct c2c_hist_entry *c2c_he, |
| 244 | struct c2c_stats *stats, |
| 245 | u64 weight) |
| 246 | { |
| 247 | struct compute_stats *cstats = &c2c_he->cstats; |
| 248 | |
| 249 | if (stats->rmt_hitm) |
| 250 | update_stats(&cstats->rmt_hitm, weight); |
| 251 | else if (stats->lcl_hitm) |
| 252 | update_stats(&cstats->lcl_hitm, weight); |
| 253 | else if (stats->load) |
| 254 | update_stats(&cstats->load, weight); |
| 255 | } |
| 256 | |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 257 | static int process_sample_event(struct perf_tool *tool __maybe_unused, |
| 258 | union perf_event *event, |
| 259 | struct perf_sample *sample, |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 260 | struct evsel *evsel, |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 261 | struct machine *machine) |
| 262 | { |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 263 | struct c2c_hists *c2c_hists = &c2c.hists; |
| 264 | struct c2c_hist_entry *c2c_he; |
| 265 | struct c2c_stats stats = { .nr_entries = 0, }; |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 266 | struct hist_entry *he; |
| 267 | struct addr_location al; |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 268 | struct mem_info *mi, *mi_dup; |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 269 | int ret; |
| 270 | |
| 271 | if (machine__resolve(machine, &al, sample) < 0) { |
| 272 | pr_debug("problem processing %d event, skipping it.\n", |
| 273 | event->header.type); |
| 274 | return -1; |
| 275 | } |
| 276 | |
Kan Liang | d80da76 | 2020-03-19 13:25:16 -0700 | [diff] [blame] | 277 | if (c2c.stitch_lbr) |
| 278 | al.thread->lbr_stitch_enable = true; |
| 279 | |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 280 | ret = sample__resolve_callchain(sample, &callchain_cursor, NULL, |
| 281 | evsel, &al, sysctl_perf_event_max_stack); |
| 282 | if (ret) |
| 283 | goto out; |
| 284 | |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 285 | mi = sample__resolve_mem(sample, &al); |
| 286 | if (mi == NULL) |
| 287 | return -ENOMEM; |
| 288 | |
Jiri Olsa | 5cedb41 | 2018-03-07 16:50:07 +0100 | [diff] [blame] | 289 | /* |
| 290 | * The mi object is released in hists__add_entry_ops, |
| 291 | * if it gets sorted out into existing data, so we need |
| 292 | * to take the copy now. |
| 293 | */ |
| 294 | mi_dup = mem_info__get(mi); |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 295 | |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 296 | c2c_decode_stats(&stats, mi); |
| 297 | |
| 298 | he = hists__add_entry_ops(&c2c_hists->hists, &c2c_entry_ops, |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 299 | &al, NULL, NULL, mi, |
| 300 | sample, true); |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 301 | if (he == NULL) |
Jiri Olsa | 5cedb41 | 2018-03-07 16:50:07 +0100 | [diff] [blame] | 302 | goto free_mi; |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 303 | |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 304 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 305 | c2c_add_stats(&c2c_he->stats, &stats); |
| 306 | c2c_add_stats(&c2c_hists->stats, &stats); |
| 307 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 308 | c2c_he__set_cpu(c2c_he, sample); |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 309 | c2c_he__set_node(c2c_he, sample); |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 310 | |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 311 | hists__inc_nr_samples(&c2c_hists->hists, he->filtered); |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 312 | ret = hist_entry__append_callchain(he, sample); |
| 313 | |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 314 | if (!ret) { |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 315 | /* |
| 316 | * There's already been warning about missing |
| 317 | * sample's cpu value. Let's account all to |
| 318 | * node 0 in this case, without any further |
| 319 | * warning. |
| 320 | * |
| 321 | * Doing node stats only for single callchain data. |
| 322 | */ |
| 323 | int cpu = sample->cpu == (unsigned int) -1 ? 0 : sample->cpu; |
| 324 | int node = c2c.cpu2node[cpu]; |
| 325 | |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 326 | mi = mi_dup; |
| 327 | |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 328 | c2c_hists = he__get_c2c_hists(he, c2c.cl_sort, 2); |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 329 | if (!c2c_hists) |
Jiri Olsa | 5cedb41 | 2018-03-07 16:50:07 +0100 | [diff] [blame] | 330 | goto free_mi; |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 331 | |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 332 | he = hists__add_entry_ops(&c2c_hists->hists, &c2c_entry_ops, |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 333 | &al, NULL, NULL, mi, |
| 334 | sample, true); |
| 335 | if (he == NULL) |
Jiri Olsa | 5cedb41 | 2018-03-07 16:50:07 +0100 | [diff] [blame] | 336 | goto free_mi; |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 337 | |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 338 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 339 | c2c_add_stats(&c2c_he->stats, &stats); |
| 340 | c2c_add_stats(&c2c_hists->stats, &stats); |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 341 | c2c_add_stats(&c2c_he->node_stats[node], &stats); |
| 342 | |
Jiri Olsa | 92062d5 | 2016-06-05 13:40:53 +0200 | [diff] [blame] | 343 | compute_stats(c2c_he, &stats, sample->weight); |
| 344 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 345 | c2c_he__set_cpu(c2c_he, sample); |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 346 | c2c_he__set_node(c2c_he, sample); |
Jiri Olsa | b2252ae | 2016-09-22 17:36:46 +0200 | [diff] [blame] | 347 | |
| 348 | hists__inc_nr_samples(&c2c_hists->hists, he->filtered); |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 349 | ret = hist_entry__append_callchain(he, sample); |
| 350 | } |
| 351 | |
| 352 | out: |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 353 | addr_location__put(&al); |
| 354 | return ret; |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 355 | |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 356 | free_mi: |
Jiri Olsa | 5cedb41 | 2018-03-07 16:50:07 +0100 | [diff] [blame] | 357 | mem_info__put(mi_dup); |
| 358 | mem_info__put(mi); |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 359 | ret = -ENOMEM; |
| 360 | goto out; |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | static struct perf_c2c c2c = { |
| 364 | .tool = { |
| 365 | .sample = process_sample_event, |
| 366 | .mmap = perf_event__process_mmap, |
| 367 | .mmap2 = perf_event__process_mmap2, |
| 368 | .comm = perf_event__process_comm, |
| 369 | .exit = perf_event__process_exit, |
| 370 | .fork = perf_event__process_fork, |
| 371 | .lost = perf_event__process_lost, |
Leo Yan | c825f78 | 2020-11-06 17:48:52 +0800 | [diff] [blame] | 372 | .attr = perf_event__process_attr, |
| 373 | .auxtrace_info = perf_event__process_auxtrace_info, |
| 374 | .auxtrace = perf_event__process_auxtrace, |
| 375 | .auxtrace_error = perf_event__process_auxtrace_error, |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 376 | .ordered_events = true, |
| 377 | .ordering_requires_timestamps = true, |
| 378 | }, |
| 379 | }; |
| 380 | |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 381 | static const char * const c2c_usage[] = { |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 382 | "perf c2c {record|report}", |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 383 | NULL |
| 384 | }; |
| 385 | |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 386 | static const char * const __usage_report[] = { |
| 387 | "perf c2c report", |
| 388 | NULL |
| 389 | }; |
| 390 | |
| 391 | static const char * const *report_c2c_usage = __usage_report; |
| 392 | |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 393 | #define C2C_HEADER_MAX 2 |
| 394 | |
| 395 | struct c2c_header { |
| 396 | struct { |
| 397 | const char *text; |
| 398 | int span; |
| 399 | } line[C2C_HEADER_MAX]; |
| 400 | }; |
| 401 | |
| 402 | struct c2c_dimension { |
| 403 | struct c2c_header header; |
| 404 | const char *name; |
| 405 | int width; |
Jiri Olsa | 8d3f938 | 2016-09-22 17:36:42 +0200 | [diff] [blame] | 406 | struct sort_entry *se; |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 407 | |
| 408 | int64_t (*cmp)(struct perf_hpp_fmt *fmt, |
| 409 | struct hist_entry *, struct hist_entry *); |
| 410 | int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 411 | struct hist_entry *he); |
| 412 | int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 413 | struct hist_entry *he); |
| 414 | }; |
| 415 | |
| 416 | struct c2c_fmt { |
| 417 | struct perf_hpp_fmt fmt; |
| 418 | struct c2c_dimension *dim; |
| 419 | }; |
| 420 | |
Jiri Olsa | 590b6a3 | 2016-07-10 16:25:15 +0200 | [diff] [blame] | 421 | #define SYMBOL_WIDTH 30 |
| 422 | |
| 423 | static struct c2c_dimension dim_symbol; |
| 424 | static struct c2c_dimension dim_srcline; |
| 425 | |
| 426 | static int symbol_width(struct hists *hists, struct sort_entry *se) |
| 427 | { |
| 428 | int width = hists__col_len(hists, se->se_width_idx); |
| 429 | |
| 430 | if (!c2c.symbol_full) |
| 431 | width = MIN(width, SYMBOL_WIDTH); |
| 432 | |
| 433 | return width; |
| 434 | } |
| 435 | |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 436 | static int c2c_width(struct perf_hpp_fmt *fmt, |
| 437 | struct perf_hpp *hpp __maybe_unused, |
Arnaldo Carvalho de Melo | 7e6a799 | 2016-12-12 10:52:10 -0300 | [diff] [blame] | 438 | struct hists *hists) |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 439 | { |
| 440 | struct c2c_fmt *c2c_fmt; |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 441 | struct c2c_dimension *dim; |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 442 | |
| 443 | c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); |
| 444 | dim = c2c_fmt->dim; |
| 445 | |
Jiri Olsa | 590b6a3 | 2016-07-10 16:25:15 +0200 | [diff] [blame] | 446 | if (dim == &dim_symbol || dim == &dim_srcline) |
| 447 | return symbol_width(hists, dim->se); |
| 448 | |
Jiri Olsa | 8d3f938 | 2016-09-22 17:36:42 +0200 | [diff] [blame] | 449 | return dim->se ? hists__col_len(hists, dim->se->se_width_idx) : |
| 450 | c2c_fmt->dim->width; |
| 451 | } |
| 452 | |
| 453 | static int c2c_header(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 454 | struct hists *hists, int line, int *span) |
| 455 | { |
| 456 | struct perf_hpp_list *hpp_list = hists->hpp_list; |
| 457 | struct c2c_fmt *c2c_fmt; |
| 458 | struct c2c_dimension *dim; |
| 459 | const char *text = NULL; |
| 460 | int width = c2c_width(fmt, hpp, hists); |
| 461 | |
| 462 | c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); |
| 463 | dim = c2c_fmt->dim; |
| 464 | |
| 465 | if (dim->se) { |
| 466 | text = dim->header.line[line].text; |
| 467 | /* Use the last line from sort_entry if not defined. */ |
| 468 | if (!text && (line == hpp_list->nr_header_lines - 1)) |
| 469 | text = dim->se->se_header; |
| 470 | } else { |
| 471 | text = dim->header.line[line].text; |
| 472 | |
| 473 | if (*span) { |
| 474 | (*span)--; |
| 475 | return 0; |
| 476 | } else { |
| 477 | *span = dim->header.line[line].span; |
| 478 | } |
| 479 | } |
| 480 | |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 481 | if (text == NULL) |
| 482 | text = ""; |
| 483 | |
Jiri Olsa | 8d3f938 | 2016-09-22 17:36:42 +0200 | [diff] [blame] | 484 | return scnprintf(hpp->buf, hpp->size, "%*s", width, text); |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 485 | } |
| 486 | |
Jiri Olsa | cbb8850 | 2016-09-22 17:36:48 +0200 | [diff] [blame] | 487 | #define HEX_STR(__s, __v) \ |
| 488 | ({ \ |
| 489 | scnprintf(__s, sizeof(__s), "0x%" PRIx64, __v); \ |
| 490 | __s; \ |
| 491 | }) |
| 492 | |
| 493 | static int64_t |
| 494 | dcacheline_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 495 | struct hist_entry *left, struct hist_entry *right) |
| 496 | { |
| 497 | return sort__dcacheline_cmp(left, right); |
| 498 | } |
| 499 | |
| 500 | static int dcacheline_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 501 | struct hist_entry *he) |
| 502 | { |
| 503 | uint64_t addr = 0; |
| 504 | int width = c2c_width(fmt, hpp, he->hists); |
| 505 | char buf[20]; |
| 506 | |
| 507 | if (he->mem_info) |
| 508 | addr = cl_address(he->mem_info->daddr.addr); |
| 509 | |
| 510 | return scnprintf(hpp->buf, hpp->size, "%*s", width, HEX_STR(buf, addr)); |
| 511 | } |
| 512 | |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 513 | static int |
| 514 | dcacheline_node_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 515 | struct hist_entry *he) |
| 516 | { |
| 517 | struct c2c_hist_entry *c2c_he; |
| 518 | int width = c2c_width(fmt, hpp, he->hists); |
| 519 | |
| 520 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 521 | if (WARN_ON_ONCE(!c2c_he->nodestr)) |
| 522 | return 0; |
| 523 | |
| 524 | return scnprintf(hpp->buf, hpp->size, "%*s", width, c2c_he->nodestr); |
| 525 | } |
| 526 | |
Jiri Olsa | 03d9fcb | 2018-03-09 11:14:42 +0100 | [diff] [blame] | 527 | static int |
| 528 | dcacheline_node_count(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 529 | struct hist_entry *he) |
| 530 | { |
| 531 | struct c2c_hist_entry *c2c_he; |
| 532 | int width = c2c_width(fmt, hpp, he->hists); |
| 533 | |
| 534 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 535 | return scnprintf(hpp->buf, hpp->size, "%*lu", width, c2c_he->paddr_cnt); |
| 536 | } |
| 537 | |
Jiri Olsa | 48acdeb | 2016-04-29 14:37:06 +0200 | [diff] [blame] | 538 | static int offset_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 539 | struct hist_entry *he) |
| 540 | { |
| 541 | uint64_t addr = 0; |
| 542 | int width = c2c_width(fmt, hpp, he->hists); |
| 543 | char buf[20]; |
| 544 | |
| 545 | if (he->mem_info) |
| 546 | addr = cl_offset(he->mem_info->daddr.al_addr); |
| 547 | |
| 548 | return scnprintf(hpp->buf, hpp->size, "%*s", width, HEX_STR(buf, addr)); |
| 549 | } |
| 550 | |
| 551 | static int64_t |
| 552 | offset_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 553 | struct hist_entry *left, struct hist_entry *right) |
| 554 | { |
| 555 | uint64_t l = 0, r = 0; |
| 556 | |
| 557 | if (left->mem_info) |
| 558 | l = cl_offset(left->mem_info->daddr.addr); |
| 559 | if (right->mem_info) |
| 560 | r = cl_offset(right->mem_info->daddr.addr); |
| 561 | |
| 562 | return (int64_t)(r - l); |
| 563 | } |
| 564 | |
Jiri Olsa | 43575a9 | 2016-05-03 21:48:56 +0200 | [diff] [blame] | 565 | static int |
| 566 | iaddr_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 567 | struct hist_entry *he) |
| 568 | { |
| 569 | uint64_t addr = 0; |
| 570 | int width = c2c_width(fmt, hpp, he->hists); |
| 571 | char buf[20]; |
| 572 | |
| 573 | if (he->mem_info) |
| 574 | addr = he->mem_info->iaddr.addr; |
| 575 | |
| 576 | return scnprintf(hpp->buf, hpp->size, "%*s", width, HEX_STR(buf, addr)); |
| 577 | } |
| 578 | |
| 579 | static int64_t |
| 580 | iaddr_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 581 | struct hist_entry *left, struct hist_entry *right) |
| 582 | { |
| 583 | return sort__iaddr_cmp(left, right); |
| 584 | } |
| 585 | |
Jiri Olsa | 97cb486 | 2016-05-23 16:20:14 +0200 | [diff] [blame] | 586 | static int |
| 587 | tot_hitm_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 588 | struct hist_entry *he) |
| 589 | { |
| 590 | struct c2c_hist_entry *c2c_he; |
| 591 | int width = c2c_width(fmt, hpp, he->hists); |
| 592 | unsigned int tot_hitm; |
| 593 | |
| 594 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 595 | tot_hitm = c2c_he->stats.lcl_hitm + c2c_he->stats.rmt_hitm; |
| 596 | |
| 597 | return scnprintf(hpp->buf, hpp->size, "%*u", width, tot_hitm); |
| 598 | } |
| 599 | |
| 600 | static int64_t |
| 601 | tot_hitm_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 602 | struct hist_entry *left, struct hist_entry *right) |
| 603 | { |
| 604 | struct c2c_hist_entry *c2c_left; |
| 605 | struct c2c_hist_entry *c2c_right; |
Andres Freund | c1c8013 | 2020-01-08 20:30:30 -0800 | [diff] [blame] | 606 | uint64_t tot_hitm_left; |
| 607 | uint64_t tot_hitm_right; |
Jiri Olsa | 97cb486 | 2016-05-23 16:20:14 +0200 | [diff] [blame] | 608 | |
| 609 | c2c_left = container_of(left, struct c2c_hist_entry, he); |
| 610 | c2c_right = container_of(right, struct c2c_hist_entry, he); |
| 611 | |
| 612 | tot_hitm_left = c2c_left->stats.lcl_hitm + c2c_left->stats.rmt_hitm; |
| 613 | tot_hitm_right = c2c_right->stats.lcl_hitm + c2c_right->stats.rmt_hitm; |
| 614 | |
| 615 | return tot_hitm_left - tot_hitm_right; |
| 616 | } |
| 617 | |
| 618 | #define STAT_FN_ENTRY(__f) \ |
| 619 | static int \ |
| 620 | __f ## _entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, \ |
| 621 | struct hist_entry *he) \ |
| 622 | { \ |
| 623 | struct c2c_hist_entry *c2c_he; \ |
| 624 | int width = c2c_width(fmt, hpp, he->hists); \ |
| 625 | \ |
| 626 | c2c_he = container_of(he, struct c2c_hist_entry, he); \ |
| 627 | return scnprintf(hpp->buf, hpp->size, "%*u", width, \ |
| 628 | c2c_he->stats.__f); \ |
| 629 | } |
| 630 | |
| 631 | #define STAT_FN_CMP(__f) \ |
| 632 | static int64_t \ |
| 633 | __f ## _cmp(struct perf_hpp_fmt *fmt __maybe_unused, \ |
| 634 | struct hist_entry *left, struct hist_entry *right) \ |
| 635 | { \ |
| 636 | struct c2c_hist_entry *c2c_left, *c2c_right; \ |
| 637 | \ |
| 638 | c2c_left = container_of(left, struct c2c_hist_entry, he); \ |
| 639 | c2c_right = container_of(right, struct c2c_hist_entry, he); \ |
Andres Freund | c1c8013 | 2020-01-08 20:30:30 -0800 | [diff] [blame] | 640 | return (uint64_t) c2c_left->stats.__f - \ |
| 641 | (uint64_t) c2c_right->stats.__f; \ |
Jiri Olsa | 97cb486 | 2016-05-23 16:20:14 +0200 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | #define STAT_FN(__f) \ |
| 645 | STAT_FN_ENTRY(__f) \ |
| 646 | STAT_FN_CMP(__f) |
| 647 | |
| 648 | STAT_FN(rmt_hitm) |
| 649 | STAT_FN(lcl_hitm) |
Jiri Olsa | 0f18896 | 2016-05-04 10:10:11 +0200 | [diff] [blame] | 650 | STAT_FN(store) |
| 651 | STAT_FN(st_l1hit) |
| 652 | STAT_FN(st_l1miss) |
Jiri Olsa | 1295f68 | 2016-05-04 10:18:24 +0200 | [diff] [blame] | 653 | STAT_FN(ld_fbhit) |
| 654 | STAT_FN(ld_l1hit) |
| 655 | STAT_FN(ld_l2hit) |
Jiri Olsa | 4d08910 | 2016-05-04 10:27:51 +0200 | [diff] [blame] | 656 | STAT_FN(ld_llchit) |
| 657 | STAT_FN(rmt_hit) |
Jiri Olsa | 97cb486 | 2016-05-23 16:20:14 +0200 | [diff] [blame] | 658 | |
Jiri Olsa | 01b84d7 | 2016-05-04 10:35:29 +0200 | [diff] [blame] | 659 | static uint64_t total_records(struct c2c_stats *stats) |
| 660 | { |
| 661 | uint64_t lclmiss, ldcnt, total; |
| 662 | |
| 663 | lclmiss = stats->lcl_dram + |
| 664 | stats->rmt_dram + |
| 665 | stats->rmt_hitm + |
| 666 | stats->rmt_hit; |
| 667 | |
| 668 | ldcnt = lclmiss + |
| 669 | stats->ld_fbhit + |
| 670 | stats->ld_l1hit + |
| 671 | stats->ld_l2hit + |
| 672 | stats->ld_llchit + |
| 673 | stats->lcl_hitm; |
| 674 | |
| 675 | total = ldcnt + |
| 676 | stats->st_l1hit + |
| 677 | stats->st_l1miss; |
| 678 | |
| 679 | return total; |
| 680 | } |
| 681 | |
| 682 | static int |
| 683 | tot_recs_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 684 | struct hist_entry *he) |
| 685 | { |
| 686 | struct c2c_hist_entry *c2c_he; |
| 687 | int width = c2c_width(fmt, hpp, he->hists); |
| 688 | uint64_t tot_recs; |
| 689 | |
| 690 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 691 | tot_recs = total_records(&c2c_he->stats); |
| 692 | |
| 693 | return scnprintf(hpp->buf, hpp->size, "%*" PRIu64, width, tot_recs); |
| 694 | } |
| 695 | |
| 696 | static int64_t |
| 697 | tot_recs_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 698 | struct hist_entry *left, struct hist_entry *right) |
| 699 | { |
| 700 | struct c2c_hist_entry *c2c_left; |
| 701 | struct c2c_hist_entry *c2c_right; |
| 702 | uint64_t tot_recs_left; |
| 703 | uint64_t tot_recs_right; |
| 704 | |
| 705 | c2c_left = container_of(left, struct c2c_hist_entry, he); |
| 706 | c2c_right = container_of(right, struct c2c_hist_entry, he); |
| 707 | |
| 708 | tot_recs_left = total_records(&c2c_left->stats); |
| 709 | tot_recs_right = total_records(&c2c_right->stats); |
| 710 | |
| 711 | return tot_recs_left - tot_recs_right; |
| 712 | } |
| 713 | |
Jiri Olsa | 55177c4 | 2016-05-19 09:52:37 +0200 | [diff] [blame] | 714 | static uint64_t total_loads(struct c2c_stats *stats) |
| 715 | { |
| 716 | uint64_t lclmiss, ldcnt; |
| 717 | |
| 718 | lclmiss = stats->lcl_dram + |
| 719 | stats->rmt_dram + |
| 720 | stats->rmt_hitm + |
| 721 | stats->rmt_hit; |
| 722 | |
| 723 | ldcnt = lclmiss + |
| 724 | stats->ld_fbhit + |
| 725 | stats->ld_l1hit + |
| 726 | stats->ld_l2hit + |
| 727 | stats->ld_llchit + |
| 728 | stats->lcl_hitm; |
| 729 | |
| 730 | return ldcnt; |
| 731 | } |
| 732 | |
| 733 | static int |
| 734 | tot_loads_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 735 | struct hist_entry *he) |
| 736 | { |
| 737 | struct c2c_hist_entry *c2c_he; |
| 738 | int width = c2c_width(fmt, hpp, he->hists); |
| 739 | uint64_t tot_recs; |
| 740 | |
| 741 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 742 | tot_recs = total_loads(&c2c_he->stats); |
| 743 | |
| 744 | return scnprintf(hpp->buf, hpp->size, "%*" PRIu64, width, tot_recs); |
| 745 | } |
| 746 | |
| 747 | static int64_t |
| 748 | tot_loads_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 749 | struct hist_entry *left, struct hist_entry *right) |
| 750 | { |
| 751 | struct c2c_hist_entry *c2c_left; |
| 752 | struct c2c_hist_entry *c2c_right; |
| 753 | uint64_t tot_recs_left; |
| 754 | uint64_t tot_recs_right; |
| 755 | |
| 756 | c2c_left = container_of(left, struct c2c_hist_entry, he); |
| 757 | c2c_right = container_of(right, struct c2c_hist_entry, he); |
| 758 | |
| 759 | tot_recs_left = total_loads(&c2c_left->stats); |
| 760 | tot_recs_right = total_loads(&c2c_right->stats); |
| 761 | |
| 762 | return tot_recs_left - tot_recs_right; |
| 763 | } |
| 764 | |
Jiri Olsa | f0c50c1 | 2016-05-04 10:50:09 +0200 | [diff] [blame] | 765 | typedef double (get_percent_cb)(struct c2c_hist_entry *); |
| 766 | |
| 767 | static int |
| 768 | percent_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 769 | struct hist_entry *he, get_percent_cb get_percent) |
| 770 | { |
| 771 | struct c2c_hist_entry *c2c_he; |
| 772 | int width = c2c_width(fmt, hpp, he->hists); |
| 773 | double per; |
| 774 | |
| 775 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 776 | per = get_percent(c2c_he); |
| 777 | |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 778 | #ifdef HAVE_SLANG_SUPPORT |
| 779 | if (use_browser) |
| 780 | return __hpp__slsmg_color_printf(hpp, "%*.2f%%", width - 1, per); |
| 781 | #endif |
Jiri Olsa | f0c50c1 | 2016-05-04 10:50:09 +0200 | [diff] [blame] | 782 | return hpp_color_scnprintf(hpp, "%*.2f%%", width - 1, per); |
| 783 | } |
| 784 | |
| 785 | static double percent_hitm(struct c2c_hist_entry *c2c_he) |
| 786 | { |
| 787 | struct c2c_hists *hists; |
| 788 | struct c2c_stats *stats; |
| 789 | struct c2c_stats *total; |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 790 | int tot = 0, st = 0; |
Jiri Olsa | f0c50c1 | 2016-05-04 10:50:09 +0200 | [diff] [blame] | 791 | double p; |
| 792 | |
| 793 | hists = container_of(c2c_he->he.hists, struct c2c_hists, hists); |
| 794 | stats = &c2c_he->stats; |
| 795 | total = &hists->stats; |
| 796 | |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 797 | switch (c2c.display) { |
| 798 | case DISPLAY_RMT: |
| 799 | st = stats->rmt_hitm; |
| 800 | tot = total->rmt_hitm; |
| 801 | break; |
| 802 | case DISPLAY_LCL: |
| 803 | st = stats->lcl_hitm; |
| 804 | tot = total->lcl_hitm; |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 805 | break; |
| 806 | case DISPLAY_TOT: |
| 807 | st = stats->tot_hitm; |
| 808 | tot = total->tot_hitm; |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 809 | default: |
| 810 | break; |
| 811 | } |
Jiri Olsa | f0c50c1 | 2016-05-04 10:50:09 +0200 | [diff] [blame] | 812 | |
| 813 | p = tot ? (double) st / tot : 0; |
| 814 | |
| 815 | return 100 * p; |
| 816 | } |
| 817 | |
| 818 | #define PERC_STR(__s, __v) \ |
| 819 | ({ \ |
| 820 | scnprintf(__s, sizeof(__s), "%.2F%%", __v); \ |
| 821 | __s; \ |
| 822 | }) |
| 823 | |
| 824 | static int |
| 825 | percent_hitm_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 826 | struct hist_entry *he) |
| 827 | { |
| 828 | struct c2c_hist_entry *c2c_he; |
| 829 | int width = c2c_width(fmt, hpp, he->hists); |
| 830 | char buf[10]; |
| 831 | double per; |
| 832 | |
| 833 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 834 | per = percent_hitm(c2c_he); |
| 835 | return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per)); |
| 836 | } |
| 837 | |
| 838 | static int |
| 839 | percent_hitm_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 840 | struct hist_entry *he) |
| 841 | { |
| 842 | return percent_color(fmt, hpp, he, percent_hitm); |
| 843 | } |
| 844 | |
| 845 | static int64_t |
| 846 | percent_hitm_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 847 | struct hist_entry *left, struct hist_entry *right) |
| 848 | { |
| 849 | struct c2c_hist_entry *c2c_left; |
| 850 | struct c2c_hist_entry *c2c_right; |
| 851 | double per_left; |
| 852 | double per_right; |
| 853 | |
| 854 | c2c_left = container_of(left, struct c2c_hist_entry, he); |
| 855 | c2c_right = container_of(right, struct c2c_hist_entry, he); |
| 856 | |
| 857 | per_left = percent_hitm(c2c_left); |
| 858 | per_right = percent_hitm(c2c_right); |
| 859 | |
| 860 | return per_left - per_right; |
| 861 | } |
| 862 | |
Jiri Olsa | 9cb3500 | 2016-05-04 12:16:50 +0200 | [diff] [blame] | 863 | static struct c2c_stats *he_stats(struct hist_entry *he) |
| 864 | { |
| 865 | struct c2c_hist_entry *c2c_he; |
| 866 | |
| 867 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 868 | return &c2c_he->stats; |
| 869 | } |
| 870 | |
| 871 | static struct c2c_stats *total_stats(struct hist_entry *he) |
| 872 | { |
| 873 | struct c2c_hists *hists; |
| 874 | |
| 875 | hists = container_of(he->hists, struct c2c_hists, hists); |
| 876 | return &hists->stats; |
| 877 | } |
| 878 | |
Leo Yan | 111c141 | 2021-01-14 23:46:44 +0800 | [diff] [blame^] | 879 | static double percent(u32 st, u32 tot) |
Jiri Olsa | 9cb3500 | 2016-05-04 12:16:50 +0200 | [diff] [blame] | 880 | { |
| 881 | return tot ? 100. * (double) st / (double) tot : 0; |
| 882 | } |
| 883 | |
| 884 | #define PERCENT(__h, __f) percent(he_stats(__h)->__f, total_stats(__h)->__f) |
| 885 | |
| 886 | #define PERCENT_FN(__f) \ |
| 887 | static double percent_ ## __f(struct c2c_hist_entry *c2c_he) \ |
| 888 | { \ |
| 889 | struct c2c_hists *hists; \ |
| 890 | \ |
| 891 | hists = container_of(c2c_he->he.hists, struct c2c_hists, hists); \ |
| 892 | return percent(c2c_he->stats.__f, hists->stats.__f); \ |
| 893 | } |
| 894 | |
| 895 | PERCENT_FN(rmt_hitm) |
| 896 | PERCENT_FN(lcl_hitm) |
| 897 | PERCENT_FN(st_l1hit) |
| 898 | PERCENT_FN(st_l1miss) |
| 899 | |
| 900 | static int |
| 901 | percent_rmt_hitm_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 902 | struct hist_entry *he) |
| 903 | { |
| 904 | int width = c2c_width(fmt, hpp, he->hists); |
| 905 | double per = PERCENT(he, rmt_hitm); |
| 906 | char buf[10]; |
| 907 | |
| 908 | return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per)); |
| 909 | } |
| 910 | |
| 911 | static int |
| 912 | percent_rmt_hitm_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 913 | struct hist_entry *he) |
| 914 | { |
| 915 | return percent_color(fmt, hpp, he, percent_rmt_hitm); |
| 916 | } |
| 917 | |
| 918 | static int64_t |
| 919 | percent_rmt_hitm_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 920 | struct hist_entry *left, struct hist_entry *right) |
| 921 | { |
| 922 | double per_left; |
| 923 | double per_right; |
| 924 | |
| 925 | per_left = PERCENT(left, lcl_hitm); |
| 926 | per_right = PERCENT(right, lcl_hitm); |
| 927 | |
| 928 | return per_left - per_right; |
| 929 | } |
| 930 | |
| 931 | static int |
| 932 | percent_lcl_hitm_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 933 | struct hist_entry *he) |
| 934 | { |
| 935 | int width = c2c_width(fmt, hpp, he->hists); |
| 936 | double per = PERCENT(he, lcl_hitm); |
| 937 | char buf[10]; |
| 938 | |
| 939 | return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per)); |
| 940 | } |
| 941 | |
| 942 | static int |
| 943 | percent_lcl_hitm_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 944 | struct hist_entry *he) |
| 945 | { |
| 946 | return percent_color(fmt, hpp, he, percent_lcl_hitm); |
| 947 | } |
| 948 | |
| 949 | static int64_t |
| 950 | percent_lcl_hitm_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 951 | struct hist_entry *left, struct hist_entry *right) |
| 952 | { |
| 953 | double per_left; |
| 954 | double per_right; |
| 955 | |
| 956 | per_left = PERCENT(left, lcl_hitm); |
| 957 | per_right = PERCENT(right, lcl_hitm); |
| 958 | |
| 959 | return per_left - per_right; |
| 960 | } |
| 961 | |
| 962 | static int |
| 963 | percent_stores_l1hit_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 964 | struct hist_entry *he) |
| 965 | { |
| 966 | int width = c2c_width(fmt, hpp, he->hists); |
| 967 | double per = PERCENT(he, st_l1hit); |
| 968 | char buf[10]; |
| 969 | |
| 970 | return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per)); |
| 971 | } |
| 972 | |
| 973 | static int |
| 974 | percent_stores_l1hit_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 975 | struct hist_entry *he) |
| 976 | { |
| 977 | return percent_color(fmt, hpp, he, percent_st_l1hit); |
| 978 | } |
| 979 | |
| 980 | static int64_t |
| 981 | percent_stores_l1hit_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 982 | struct hist_entry *left, struct hist_entry *right) |
| 983 | { |
| 984 | double per_left; |
| 985 | double per_right; |
| 986 | |
| 987 | per_left = PERCENT(left, st_l1hit); |
| 988 | per_right = PERCENT(right, st_l1hit); |
| 989 | |
| 990 | return per_left - per_right; |
| 991 | } |
| 992 | |
| 993 | static int |
| 994 | percent_stores_l1miss_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 995 | struct hist_entry *he) |
| 996 | { |
| 997 | int width = c2c_width(fmt, hpp, he->hists); |
| 998 | double per = PERCENT(he, st_l1miss); |
| 999 | char buf[10]; |
| 1000 | |
| 1001 | return scnprintf(hpp->buf, hpp->size, "%*s", width, PERC_STR(buf, per)); |
| 1002 | } |
| 1003 | |
| 1004 | static int |
| 1005 | percent_stores_l1miss_color(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 1006 | struct hist_entry *he) |
| 1007 | { |
| 1008 | return percent_color(fmt, hpp, he, percent_st_l1miss); |
| 1009 | } |
| 1010 | |
| 1011 | static int64_t |
| 1012 | percent_stores_l1miss_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 1013 | struct hist_entry *left, struct hist_entry *right) |
| 1014 | { |
| 1015 | double per_left; |
| 1016 | double per_right; |
| 1017 | |
| 1018 | per_left = PERCENT(left, st_l1miss); |
| 1019 | per_right = PERCENT(right, st_l1miss); |
| 1020 | |
| 1021 | return per_left - per_right; |
| 1022 | } |
| 1023 | |
Jiri Olsa | 6c70f54 | 2016-05-28 12:30:13 +0200 | [diff] [blame] | 1024 | STAT_FN(lcl_dram) |
| 1025 | STAT_FN(rmt_dram) |
| 1026 | |
Jiri Olsa | 36d3deb | 2016-05-24 13:09:47 +0200 | [diff] [blame] | 1027 | static int |
| 1028 | pid_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 1029 | struct hist_entry *he) |
| 1030 | { |
| 1031 | int width = c2c_width(fmt, hpp, he->hists); |
| 1032 | |
| 1033 | return scnprintf(hpp->buf, hpp->size, "%*d", width, he->thread->pid_); |
| 1034 | } |
| 1035 | |
| 1036 | static int64_t |
| 1037 | pid_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 1038 | struct hist_entry *left, struct hist_entry *right) |
| 1039 | { |
| 1040 | return left->thread->pid_ - right->thread->pid_; |
| 1041 | } |
| 1042 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 1043 | static int64_t |
| 1044 | empty_cmp(struct perf_hpp_fmt *fmt __maybe_unused, |
| 1045 | struct hist_entry *left __maybe_unused, |
| 1046 | struct hist_entry *right __maybe_unused) |
| 1047 | { |
| 1048 | return 0; |
| 1049 | } |
| 1050 | |
| 1051 | static int |
| 1052 | node_entry(struct perf_hpp_fmt *fmt __maybe_unused, struct perf_hpp *hpp, |
| 1053 | struct hist_entry *he) |
| 1054 | { |
| 1055 | struct c2c_hist_entry *c2c_he; |
| 1056 | bool first = true; |
| 1057 | int node; |
| 1058 | int ret = 0; |
| 1059 | |
| 1060 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 1061 | |
| 1062 | for (node = 0; node < c2c.nodes_cnt; node++) { |
| 1063 | DECLARE_BITMAP(set, c2c.cpus_cnt); |
| 1064 | |
| 1065 | bitmap_zero(set, c2c.cpus_cnt); |
| 1066 | bitmap_and(set, c2c_he->cpuset, c2c.nodes[node], c2c.cpus_cnt); |
| 1067 | |
| 1068 | if (!bitmap_weight(set, c2c.cpus_cnt)) { |
| 1069 | if (c2c.node_info == 1) { |
| 1070 | ret = scnprintf(hpp->buf, hpp->size, "%21s", " "); |
| 1071 | advance_hpp(hpp, ret); |
| 1072 | } |
| 1073 | continue; |
| 1074 | } |
| 1075 | |
| 1076 | if (!first) { |
| 1077 | ret = scnprintf(hpp->buf, hpp->size, " "); |
| 1078 | advance_hpp(hpp, ret); |
| 1079 | } |
| 1080 | |
| 1081 | switch (c2c.node_info) { |
| 1082 | case 0: |
| 1083 | ret = scnprintf(hpp->buf, hpp->size, "%2d", node); |
| 1084 | advance_hpp(hpp, ret); |
| 1085 | break; |
| 1086 | case 1: |
| 1087 | { |
Jiri Olsa | 67260e8 | 2019-08-20 16:02:19 +0200 | [diff] [blame] | 1088 | int num = bitmap_weight(set, c2c.cpus_cnt); |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 1089 | struct c2c_stats *stats = &c2c_he->node_stats[node]; |
| 1090 | |
| 1091 | ret = scnprintf(hpp->buf, hpp->size, "%2d{%2d ", node, num); |
| 1092 | advance_hpp(hpp, ret); |
| 1093 | |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 1094 | #define DISPLAY_HITM(__h) \ |
| 1095 | if (c2c_he->stats.__h> 0) { \ |
| 1096 | ret = scnprintf(hpp->buf, hpp->size, "%5.1f%% ", \ |
| 1097 | percent(stats->__h, c2c_he->stats.__h));\ |
| 1098 | } else { \ |
| 1099 | ret = scnprintf(hpp->buf, hpp->size, "%6s ", "n/a"); \ |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 1100 | } |
| 1101 | |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 1102 | switch (c2c.display) { |
| 1103 | case DISPLAY_RMT: |
| 1104 | DISPLAY_HITM(rmt_hitm); |
| 1105 | break; |
| 1106 | case DISPLAY_LCL: |
| 1107 | DISPLAY_HITM(lcl_hitm); |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 1108 | break; |
| 1109 | case DISPLAY_TOT: |
| 1110 | DISPLAY_HITM(tot_hitm); |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 1111 | default: |
| 1112 | break; |
| 1113 | } |
| 1114 | |
| 1115 | #undef DISPLAY_HITM |
| 1116 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 1117 | advance_hpp(hpp, ret); |
| 1118 | |
| 1119 | if (c2c_he->stats.store > 0) { |
| 1120 | ret = scnprintf(hpp->buf, hpp->size, "%5.1f%%}", |
| 1121 | percent(stats->store, c2c_he->stats.store)); |
| 1122 | } else { |
| 1123 | ret = scnprintf(hpp->buf, hpp->size, "%6s}", "n/a"); |
| 1124 | } |
| 1125 | |
| 1126 | advance_hpp(hpp, ret); |
| 1127 | break; |
| 1128 | } |
| 1129 | case 2: |
| 1130 | ret = scnprintf(hpp->buf, hpp->size, "%2d{", node); |
| 1131 | advance_hpp(hpp, ret); |
| 1132 | |
| 1133 | ret = bitmap_scnprintf(set, c2c.cpus_cnt, hpp->buf, hpp->size); |
| 1134 | advance_hpp(hpp, ret); |
| 1135 | |
| 1136 | ret = scnprintf(hpp->buf, hpp->size, "}"); |
| 1137 | advance_hpp(hpp, ret); |
| 1138 | break; |
| 1139 | default: |
| 1140 | break; |
| 1141 | } |
| 1142 | |
| 1143 | first = false; |
| 1144 | } |
| 1145 | |
| 1146 | return 0; |
| 1147 | } |
| 1148 | |
Jiri Olsa | 92062d5 | 2016-06-05 13:40:53 +0200 | [diff] [blame] | 1149 | static int |
| 1150 | mean_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 1151 | struct hist_entry *he, double mean) |
| 1152 | { |
| 1153 | int width = c2c_width(fmt, hpp, he->hists); |
| 1154 | char buf[10]; |
| 1155 | |
| 1156 | scnprintf(buf, 10, "%6.0f", mean); |
| 1157 | return scnprintf(hpp->buf, hpp->size, "%*s", width, buf); |
| 1158 | } |
| 1159 | |
| 1160 | #define MEAN_ENTRY(__func, __val) \ |
| 1161 | static int \ |
| 1162 | __func(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, struct hist_entry *he) \ |
| 1163 | { \ |
| 1164 | struct c2c_hist_entry *c2c_he; \ |
| 1165 | c2c_he = container_of(he, struct c2c_hist_entry, he); \ |
| 1166 | return mean_entry(fmt, hpp, he, avg_stats(&c2c_he->cstats.__val)); \ |
| 1167 | } |
| 1168 | |
| 1169 | MEAN_ENTRY(mean_rmt_entry, rmt_hitm); |
| 1170 | MEAN_ENTRY(mean_lcl_entry, lcl_hitm); |
| 1171 | MEAN_ENTRY(mean_load_entry, load); |
| 1172 | |
Jiri Olsa | b6fe2bb | 2016-06-23 23:05:52 +0200 | [diff] [blame] | 1173 | static int |
Arnaldo Carvalho de Melo | 7e6a799 | 2016-12-12 10:52:10 -0300 | [diff] [blame] | 1174 | cpucnt_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
Jiri Olsa | b6fe2bb | 2016-06-23 23:05:52 +0200 | [diff] [blame] | 1175 | struct hist_entry *he) |
| 1176 | { |
| 1177 | struct c2c_hist_entry *c2c_he; |
| 1178 | int width = c2c_width(fmt, hpp, he->hists); |
| 1179 | char buf[10]; |
| 1180 | |
| 1181 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 1182 | |
| 1183 | scnprintf(buf, 10, "%d", bitmap_weight(c2c_he->cpuset, c2c.cpus_cnt)); |
| 1184 | return scnprintf(hpp->buf, hpp->size, "%*s", width, buf); |
| 1185 | } |
| 1186 | |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 1187 | static int |
Arnaldo Carvalho de Melo | 7e6a799 | 2016-12-12 10:52:10 -0300 | [diff] [blame] | 1188 | cl_idx_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 1189 | struct hist_entry *he) |
| 1190 | { |
| 1191 | struct c2c_hist_entry *c2c_he; |
| 1192 | int width = c2c_width(fmt, hpp, he->hists); |
| 1193 | char buf[10]; |
| 1194 | |
| 1195 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 1196 | |
| 1197 | scnprintf(buf, 10, "%u", c2c_he->cacheline_idx); |
| 1198 | return scnprintf(hpp->buf, hpp->size, "%*s", width, buf); |
| 1199 | } |
| 1200 | |
| 1201 | static int |
Arnaldo Carvalho de Melo | 7e6a799 | 2016-12-12 10:52:10 -0300 | [diff] [blame] | 1202 | cl_idx_empty_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 1203 | struct hist_entry *he) |
| 1204 | { |
| 1205 | int width = c2c_width(fmt, hpp, he->hists); |
| 1206 | |
| 1207 | return scnprintf(hpp->buf, hpp->size, "%*s", width, ""); |
| 1208 | } |
| 1209 | |
Jiri Olsa | 600a8cf | 2016-09-22 17:36:47 +0200 | [diff] [blame] | 1210 | #define HEADER_LOW(__h) \ |
| 1211 | { \ |
| 1212 | .line[1] = { \ |
| 1213 | .text = __h, \ |
| 1214 | }, \ |
| 1215 | } |
| 1216 | |
| 1217 | #define HEADER_BOTH(__h0, __h1) \ |
| 1218 | { \ |
| 1219 | .line[0] = { \ |
| 1220 | .text = __h0, \ |
| 1221 | }, \ |
| 1222 | .line[1] = { \ |
| 1223 | .text = __h1, \ |
| 1224 | }, \ |
| 1225 | } |
| 1226 | |
| 1227 | #define HEADER_SPAN(__h0, __h1, __s) \ |
| 1228 | { \ |
| 1229 | .line[0] = { \ |
| 1230 | .text = __h0, \ |
| 1231 | .span = __s, \ |
| 1232 | }, \ |
| 1233 | .line[1] = { \ |
| 1234 | .text = __h1, \ |
| 1235 | }, \ |
| 1236 | } |
| 1237 | |
| 1238 | #define HEADER_SPAN_LOW(__h) \ |
| 1239 | { \ |
| 1240 | .line[1] = { \ |
| 1241 | .text = __h, \ |
| 1242 | }, \ |
| 1243 | } |
| 1244 | |
Jiri Olsa | cbb8850 | 2016-09-22 17:36:48 +0200 | [diff] [blame] | 1245 | static struct c2c_dimension dim_dcacheline = { |
Jiri Olsa | 03d9fcb | 2018-03-09 11:14:42 +0100 | [diff] [blame] | 1246 | .header = HEADER_SPAN("--- Cacheline ----", "Address", 2), |
Jiri Olsa | cbb8850 | 2016-09-22 17:36:48 +0200 | [diff] [blame] | 1247 | .name = "dcacheline", |
| 1248 | .cmp = dcacheline_cmp, |
| 1249 | .entry = dcacheline_entry, |
| 1250 | .width = 18, |
| 1251 | }; |
| 1252 | |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 1253 | static struct c2c_dimension dim_dcacheline_node = { |
| 1254 | .header = HEADER_LOW("Node"), |
| 1255 | .name = "dcacheline_node", |
| 1256 | .cmp = empty_cmp, |
| 1257 | .entry = dcacheline_node_entry, |
| 1258 | .width = 4, |
| 1259 | }; |
| 1260 | |
Jiri Olsa | 03d9fcb | 2018-03-09 11:14:42 +0100 | [diff] [blame] | 1261 | static struct c2c_dimension dim_dcacheline_count = { |
| 1262 | .header = HEADER_LOW("PA cnt"), |
| 1263 | .name = "dcacheline_count", |
| 1264 | .cmp = empty_cmp, |
| 1265 | .entry = dcacheline_node_count, |
| 1266 | .width = 6, |
| 1267 | }; |
| 1268 | |
| 1269 | static struct c2c_header header_offset_tui = HEADER_SPAN("-----", "Off", 2); |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 1270 | |
Jiri Olsa | 48acdeb | 2016-04-29 14:37:06 +0200 | [diff] [blame] | 1271 | static struct c2c_dimension dim_offset = { |
Jiri Olsa | 03d9fcb | 2018-03-09 11:14:42 +0100 | [diff] [blame] | 1272 | .header = HEADER_SPAN("--- Data address -", "Offset", 2), |
Jiri Olsa | 48acdeb | 2016-04-29 14:37:06 +0200 | [diff] [blame] | 1273 | .name = "offset", |
| 1274 | .cmp = offset_cmp, |
| 1275 | .entry = offset_entry, |
| 1276 | .width = 18, |
| 1277 | }; |
| 1278 | |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 1279 | static struct c2c_dimension dim_offset_node = { |
| 1280 | .header = HEADER_LOW("Node"), |
| 1281 | .name = "offset_node", |
| 1282 | .cmp = empty_cmp, |
| 1283 | .entry = dcacheline_node_entry, |
| 1284 | .width = 4, |
| 1285 | }; |
| 1286 | |
Jiri Olsa | 43575a9 | 2016-05-03 21:48:56 +0200 | [diff] [blame] | 1287 | static struct c2c_dimension dim_iaddr = { |
| 1288 | .header = HEADER_LOW("Code address"), |
| 1289 | .name = "iaddr", |
| 1290 | .cmp = iaddr_cmp, |
| 1291 | .entry = iaddr_entry, |
| 1292 | .width = 18, |
| 1293 | }; |
| 1294 | |
Jiri Olsa | 97cb486 | 2016-05-23 16:20:14 +0200 | [diff] [blame] | 1295 | static struct c2c_dimension dim_tot_hitm = { |
Leo Yan | fdd32d7 | 2020-10-14 06:09:17 +0100 | [diff] [blame] | 1296 | .header = HEADER_SPAN("------- Load Hitm -------", "Total", 2), |
Jiri Olsa | 97cb486 | 2016-05-23 16:20:14 +0200 | [diff] [blame] | 1297 | .name = "tot_hitm", |
| 1298 | .cmp = tot_hitm_cmp, |
| 1299 | .entry = tot_hitm_entry, |
| 1300 | .width = 7, |
| 1301 | }; |
| 1302 | |
| 1303 | static struct c2c_dimension dim_lcl_hitm = { |
Leo Yan | 0fbe2fe | 2020-10-14 06:09:18 +0100 | [diff] [blame] | 1304 | .header = HEADER_SPAN_LOW("LclHitm"), |
Jiri Olsa | 97cb486 | 2016-05-23 16:20:14 +0200 | [diff] [blame] | 1305 | .name = "lcl_hitm", |
| 1306 | .cmp = lcl_hitm_cmp, |
| 1307 | .entry = lcl_hitm_entry, |
| 1308 | .width = 7, |
| 1309 | }; |
| 1310 | |
| 1311 | static struct c2c_dimension dim_rmt_hitm = { |
Leo Yan | 0fbe2fe | 2020-10-14 06:09:18 +0100 | [diff] [blame] | 1312 | .header = HEADER_SPAN_LOW("RmtHitm"), |
Jiri Olsa | 97cb486 | 2016-05-23 16:20:14 +0200 | [diff] [blame] | 1313 | .name = "rmt_hitm", |
| 1314 | .cmp = rmt_hitm_cmp, |
| 1315 | .entry = rmt_hitm_entry, |
| 1316 | .width = 7, |
| 1317 | }; |
| 1318 | |
| 1319 | static struct c2c_dimension dim_cl_rmt_hitm = { |
| 1320 | .header = HEADER_SPAN("----- HITM -----", "Rmt", 1), |
| 1321 | .name = "cl_rmt_hitm", |
| 1322 | .cmp = rmt_hitm_cmp, |
| 1323 | .entry = rmt_hitm_entry, |
| 1324 | .width = 7, |
| 1325 | }; |
| 1326 | |
| 1327 | static struct c2c_dimension dim_cl_lcl_hitm = { |
| 1328 | .header = HEADER_SPAN_LOW("Lcl"), |
| 1329 | .name = "cl_lcl_hitm", |
| 1330 | .cmp = lcl_hitm_cmp, |
| 1331 | .entry = lcl_hitm_entry, |
| 1332 | .width = 7, |
| 1333 | }; |
| 1334 | |
Leo Yan | 4f28641b | 2020-10-14 06:09:15 +0100 | [diff] [blame] | 1335 | static struct c2c_dimension dim_tot_stores = { |
| 1336 | .header = HEADER_BOTH("Total", "Stores"), |
| 1337 | .name = "tot_stores", |
Jiri Olsa | 0f18896 | 2016-05-04 10:10:11 +0200 | [diff] [blame] | 1338 | .cmp = store_cmp, |
| 1339 | .entry = store_entry, |
| 1340 | .width = 7, |
| 1341 | }; |
| 1342 | |
| 1343 | static struct c2c_dimension dim_stores_l1hit = { |
Leo Yan | 4f28641b | 2020-10-14 06:09:15 +0100 | [diff] [blame] | 1344 | .header = HEADER_SPAN("---- Stores ----", "L1Hit", 1), |
Jiri Olsa | 0f18896 | 2016-05-04 10:10:11 +0200 | [diff] [blame] | 1345 | .name = "stores_l1hit", |
| 1346 | .cmp = st_l1hit_cmp, |
| 1347 | .entry = st_l1hit_entry, |
| 1348 | .width = 7, |
| 1349 | }; |
| 1350 | |
| 1351 | static struct c2c_dimension dim_stores_l1miss = { |
| 1352 | .header = HEADER_SPAN_LOW("L1Miss"), |
| 1353 | .name = "stores_l1miss", |
| 1354 | .cmp = st_l1miss_cmp, |
| 1355 | .entry = st_l1miss_entry, |
| 1356 | .width = 7, |
| 1357 | }; |
| 1358 | |
| 1359 | static struct c2c_dimension dim_cl_stores_l1hit = { |
| 1360 | .header = HEADER_SPAN("-- Store Refs --", "L1 Hit", 1), |
| 1361 | .name = "cl_stores_l1hit", |
| 1362 | .cmp = st_l1hit_cmp, |
| 1363 | .entry = st_l1hit_entry, |
| 1364 | .width = 7, |
| 1365 | }; |
| 1366 | |
| 1367 | static struct c2c_dimension dim_cl_stores_l1miss = { |
| 1368 | .header = HEADER_SPAN_LOW("L1 Miss"), |
| 1369 | .name = "cl_stores_l1miss", |
| 1370 | .cmp = st_l1miss_cmp, |
| 1371 | .entry = st_l1miss_entry, |
| 1372 | .width = 7, |
| 1373 | }; |
| 1374 | |
Jiri Olsa | 1295f68 | 2016-05-04 10:18:24 +0200 | [diff] [blame] | 1375 | static struct c2c_dimension dim_ld_fbhit = { |
| 1376 | .header = HEADER_SPAN("----- Core Load Hit -----", "FB", 2), |
| 1377 | .name = "ld_fbhit", |
| 1378 | .cmp = ld_fbhit_cmp, |
| 1379 | .entry = ld_fbhit_entry, |
| 1380 | .width = 7, |
| 1381 | }; |
| 1382 | |
| 1383 | static struct c2c_dimension dim_ld_l1hit = { |
| 1384 | .header = HEADER_SPAN_LOW("L1"), |
| 1385 | .name = "ld_l1hit", |
| 1386 | .cmp = ld_l1hit_cmp, |
| 1387 | .entry = ld_l1hit_entry, |
| 1388 | .width = 7, |
| 1389 | }; |
| 1390 | |
| 1391 | static struct c2c_dimension dim_ld_l2hit = { |
| 1392 | .header = HEADER_SPAN_LOW("L2"), |
| 1393 | .name = "ld_l2hit", |
| 1394 | .cmp = ld_l2hit_cmp, |
| 1395 | .entry = ld_l2hit_entry, |
| 1396 | .width = 7, |
| 1397 | }; |
| 1398 | |
Jiri Olsa | 4d08910 | 2016-05-04 10:27:51 +0200 | [diff] [blame] | 1399 | static struct c2c_dimension dim_ld_llchit = { |
Leo Yan | 77c1586 | 2020-10-14 06:09:20 +0100 | [diff] [blame] | 1400 | .header = HEADER_SPAN("- LLC Load Hit --", "LclHit", 1), |
Jiri Olsa | 4d08910 | 2016-05-04 10:27:51 +0200 | [diff] [blame] | 1401 | .name = "ld_lclhit", |
| 1402 | .cmp = ld_llchit_cmp, |
| 1403 | .entry = ld_llchit_entry, |
| 1404 | .width = 8, |
| 1405 | }; |
| 1406 | |
| 1407 | static struct c2c_dimension dim_ld_rmthit = { |
Leo Yan | 91d933c2 | 2020-10-14 06:09:21 +0100 | [diff] [blame] | 1408 | .header = HEADER_SPAN("- RMT Load Hit --", "RmtHit", 1), |
Jiri Olsa | 4d08910 | 2016-05-04 10:27:51 +0200 | [diff] [blame] | 1409 | .name = "ld_rmthit", |
| 1410 | .cmp = rmt_hit_cmp, |
| 1411 | .entry = rmt_hit_entry, |
| 1412 | .width = 8, |
| 1413 | }; |
| 1414 | |
Jiri Olsa | 01b84d7 | 2016-05-04 10:35:29 +0200 | [diff] [blame] | 1415 | static struct c2c_dimension dim_tot_recs = { |
| 1416 | .header = HEADER_BOTH("Total", "records"), |
| 1417 | .name = "tot_recs", |
| 1418 | .cmp = tot_recs_cmp, |
| 1419 | .entry = tot_recs_entry, |
| 1420 | .width = 7, |
| 1421 | }; |
| 1422 | |
Jiri Olsa | 55177c4 | 2016-05-19 09:52:37 +0200 | [diff] [blame] | 1423 | static struct c2c_dimension dim_tot_loads = { |
| 1424 | .header = HEADER_BOTH("Total", "Loads"), |
| 1425 | .name = "tot_loads", |
| 1426 | .cmp = tot_loads_cmp, |
| 1427 | .entry = tot_loads_entry, |
| 1428 | .width = 7, |
| 1429 | }; |
| 1430 | |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 1431 | static struct c2c_header percent_hitm_header[] = { |
| 1432 | [DISPLAY_LCL] = HEADER_BOTH("Lcl", "Hitm"), |
| 1433 | [DISPLAY_RMT] = HEADER_BOTH("Rmt", "Hitm"), |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 1434 | [DISPLAY_TOT] = HEADER_BOTH("Tot", "Hitm"), |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 1435 | }; |
| 1436 | |
Jiri Olsa | f0c50c1 | 2016-05-04 10:50:09 +0200 | [diff] [blame] | 1437 | static struct c2c_dimension dim_percent_hitm = { |
Jiri Olsa | f0c50c1 | 2016-05-04 10:50:09 +0200 | [diff] [blame] | 1438 | .name = "percent_hitm", |
| 1439 | .cmp = percent_hitm_cmp, |
| 1440 | .entry = percent_hitm_entry, |
| 1441 | .color = percent_hitm_color, |
| 1442 | .width = 7, |
| 1443 | }; |
| 1444 | |
Jiri Olsa | 9cb3500 | 2016-05-04 12:16:50 +0200 | [diff] [blame] | 1445 | static struct c2c_dimension dim_percent_rmt_hitm = { |
Leo Yan | 0fbe2fe | 2020-10-14 06:09:18 +0100 | [diff] [blame] | 1446 | .header = HEADER_SPAN("----- HITM -----", "RmtHitm", 1), |
Jiri Olsa | 9cb3500 | 2016-05-04 12:16:50 +0200 | [diff] [blame] | 1447 | .name = "percent_rmt_hitm", |
| 1448 | .cmp = percent_rmt_hitm_cmp, |
| 1449 | .entry = percent_rmt_hitm_entry, |
| 1450 | .color = percent_rmt_hitm_color, |
| 1451 | .width = 7, |
| 1452 | }; |
| 1453 | |
| 1454 | static struct c2c_dimension dim_percent_lcl_hitm = { |
Leo Yan | 0fbe2fe | 2020-10-14 06:09:18 +0100 | [diff] [blame] | 1455 | .header = HEADER_SPAN_LOW("LclHitm"), |
Jiri Olsa | 9cb3500 | 2016-05-04 12:16:50 +0200 | [diff] [blame] | 1456 | .name = "percent_lcl_hitm", |
| 1457 | .cmp = percent_lcl_hitm_cmp, |
| 1458 | .entry = percent_lcl_hitm_entry, |
| 1459 | .color = percent_lcl_hitm_color, |
| 1460 | .width = 7, |
| 1461 | }; |
| 1462 | |
| 1463 | static struct c2c_dimension dim_percent_stores_l1hit = { |
| 1464 | .header = HEADER_SPAN("-- Store Refs --", "L1 Hit", 1), |
| 1465 | .name = "percent_stores_l1hit", |
| 1466 | .cmp = percent_stores_l1hit_cmp, |
| 1467 | .entry = percent_stores_l1hit_entry, |
| 1468 | .color = percent_stores_l1hit_color, |
| 1469 | .width = 7, |
| 1470 | }; |
| 1471 | |
| 1472 | static struct c2c_dimension dim_percent_stores_l1miss = { |
| 1473 | .header = HEADER_SPAN_LOW("L1 Miss"), |
| 1474 | .name = "percent_stores_l1miss", |
| 1475 | .cmp = percent_stores_l1miss_cmp, |
| 1476 | .entry = percent_stores_l1miss_entry, |
| 1477 | .color = percent_stores_l1miss_color, |
| 1478 | .width = 7, |
| 1479 | }; |
| 1480 | |
Jiri Olsa | 6c70f54 | 2016-05-28 12:30:13 +0200 | [diff] [blame] | 1481 | static struct c2c_dimension dim_dram_lcl = { |
| 1482 | .header = HEADER_SPAN("--- Load Dram ----", "Lcl", 1), |
| 1483 | .name = "dram_lcl", |
| 1484 | .cmp = lcl_dram_cmp, |
| 1485 | .entry = lcl_dram_entry, |
| 1486 | .width = 8, |
| 1487 | }; |
| 1488 | |
| 1489 | static struct c2c_dimension dim_dram_rmt = { |
| 1490 | .header = HEADER_SPAN_LOW("Rmt"), |
| 1491 | .name = "dram_rmt", |
| 1492 | .cmp = rmt_dram_cmp, |
| 1493 | .entry = rmt_dram_entry, |
| 1494 | .width = 8, |
| 1495 | }; |
| 1496 | |
Jiri Olsa | 36d3deb | 2016-05-24 13:09:47 +0200 | [diff] [blame] | 1497 | static struct c2c_dimension dim_pid = { |
| 1498 | .header = HEADER_LOW("Pid"), |
| 1499 | .name = "pid", |
| 1500 | .cmp = pid_cmp, |
| 1501 | .entry = pid_entry, |
| 1502 | .width = 7, |
| 1503 | }; |
| 1504 | |
Jiri Olsa | e87019c | 2016-05-25 08:50:10 +0200 | [diff] [blame] | 1505 | static struct c2c_dimension dim_tid = { |
| 1506 | .header = HEADER_LOW("Tid"), |
| 1507 | .name = "tid", |
| 1508 | .se = &sort_thread, |
| 1509 | }; |
| 1510 | |
Jiri Olsa | 51dedaa | 2016-05-24 23:41:52 +0200 | [diff] [blame] | 1511 | static struct c2c_dimension dim_symbol = { |
| 1512 | .name = "symbol", |
| 1513 | .se = &sort_sym, |
| 1514 | }; |
| 1515 | |
| 1516 | static struct c2c_dimension dim_dso = { |
| 1517 | .header = HEADER_BOTH("Shared", "Object"), |
| 1518 | .name = "dso", |
| 1519 | .se = &sort_dso, |
| 1520 | }; |
| 1521 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 1522 | static struct c2c_header header_node[3] = { |
| 1523 | HEADER_LOW("Node"), |
| 1524 | HEADER_LOW("Node{cpus %hitms %stores}"), |
| 1525 | HEADER_LOW("Node{cpu list}"), |
| 1526 | }; |
| 1527 | |
| 1528 | static struct c2c_dimension dim_node = { |
| 1529 | .name = "node", |
| 1530 | .cmp = empty_cmp, |
| 1531 | .entry = node_entry, |
| 1532 | .width = 4, |
| 1533 | }; |
| 1534 | |
Jiri Olsa | 92062d5 | 2016-06-05 13:40:53 +0200 | [diff] [blame] | 1535 | static struct c2c_dimension dim_mean_rmt = { |
| 1536 | .header = HEADER_SPAN("---------- cycles ----------", "rmt hitm", 2), |
| 1537 | .name = "mean_rmt", |
| 1538 | .cmp = empty_cmp, |
| 1539 | .entry = mean_rmt_entry, |
| 1540 | .width = 8, |
| 1541 | }; |
| 1542 | |
| 1543 | static struct c2c_dimension dim_mean_lcl = { |
| 1544 | .header = HEADER_SPAN_LOW("lcl hitm"), |
| 1545 | .name = "mean_lcl", |
| 1546 | .cmp = empty_cmp, |
| 1547 | .entry = mean_lcl_entry, |
| 1548 | .width = 8, |
| 1549 | }; |
| 1550 | |
| 1551 | static struct c2c_dimension dim_mean_load = { |
| 1552 | .header = HEADER_SPAN_LOW("load"), |
| 1553 | .name = "mean_load", |
| 1554 | .cmp = empty_cmp, |
| 1555 | .entry = mean_load_entry, |
| 1556 | .width = 8, |
| 1557 | }; |
| 1558 | |
Jiri Olsa | b6fe2bb | 2016-06-23 23:05:52 +0200 | [diff] [blame] | 1559 | static struct c2c_dimension dim_cpucnt = { |
| 1560 | .header = HEADER_BOTH("cpu", "cnt"), |
| 1561 | .name = "cpucnt", |
| 1562 | .cmp = empty_cmp, |
| 1563 | .entry = cpucnt_entry, |
| 1564 | .width = 8, |
| 1565 | }; |
| 1566 | |
Jiri Olsa | 89d9ba8f | 2016-07-10 15:47:40 +0200 | [diff] [blame] | 1567 | static struct c2c_dimension dim_srcline = { |
| 1568 | .name = "cl_srcline", |
| 1569 | .se = &sort_srcline, |
| 1570 | }; |
| 1571 | |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 1572 | static struct c2c_dimension dim_dcacheline_idx = { |
| 1573 | .header = HEADER_LOW("Index"), |
| 1574 | .name = "cl_idx", |
| 1575 | .cmp = empty_cmp, |
| 1576 | .entry = cl_idx_entry, |
| 1577 | .width = 5, |
| 1578 | }; |
| 1579 | |
| 1580 | static struct c2c_dimension dim_dcacheline_num = { |
| 1581 | .header = HEADER_LOW("Num"), |
| 1582 | .name = "cl_num", |
| 1583 | .cmp = empty_cmp, |
| 1584 | .entry = cl_idx_entry, |
| 1585 | .width = 5, |
| 1586 | }; |
| 1587 | |
| 1588 | static struct c2c_dimension dim_dcacheline_num_empty = { |
| 1589 | .header = HEADER_LOW("Num"), |
| 1590 | .name = "cl_num_empty", |
| 1591 | .cmp = empty_cmp, |
| 1592 | .entry = cl_idx_empty_entry, |
| 1593 | .width = 5, |
| 1594 | }; |
| 1595 | |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1596 | static struct c2c_dimension *dimensions[] = { |
Jiri Olsa | cbb8850 | 2016-09-22 17:36:48 +0200 | [diff] [blame] | 1597 | &dim_dcacheline, |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 1598 | &dim_dcacheline_node, |
Jiri Olsa | 03d9fcb | 2018-03-09 11:14:42 +0100 | [diff] [blame] | 1599 | &dim_dcacheline_count, |
Jiri Olsa | 48acdeb | 2016-04-29 14:37:06 +0200 | [diff] [blame] | 1600 | &dim_offset, |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 1601 | &dim_offset_node, |
Jiri Olsa | 43575a9 | 2016-05-03 21:48:56 +0200 | [diff] [blame] | 1602 | &dim_iaddr, |
Jiri Olsa | 97cb486 | 2016-05-23 16:20:14 +0200 | [diff] [blame] | 1603 | &dim_tot_hitm, |
| 1604 | &dim_lcl_hitm, |
| 1605 | &dim_rmt_hitm, |
| 1606 | &dim_cl_lcl_hitm, |
| 1607 | &dim_cl_rmt_hitm, |
Leo Yan | 4f28641b | 2020-10-14 06:09:15 +0100 | [diff] [blame] | 1608 | &dim_tot_stores, |
Jiri Olsa | 0f18896 | 2016-05-04 10:10:11 +0200 | [diff] [blame] | 1609 | &dim_stores_l1hit, |
| 1610 | &dim_stores_l1miss, |
| 1611 | &dim_cl_stores_l1hit, |
| 1612 | &dim_cl_stores_l1miss, |
Jiri Olsa | 1295f68 | 2016-05-04 10:18:24 +0200 | [diff] [blame] | 1613 | &dim_ld_fbhit, |
| 1614 | &dim_ld_l1hit, |
| 1615 | &dim_ld_l2hit, |
Jiri Olsa | 4d08910 | 2016-05-04 10:27:51 +0200 | [diff] [blame] | 1616 | &dim_ld_llchit, |
| 1617 | &dim_ld_rmthit, |
Jiri Olsa | 01b84d7 | 2016-05-04 10:35:29 +0200 | [diff] [blame] | 1618 | &dim_tot_recs, |
Jiri Olsa | 55177c4 | 2016-05-19 09:52:37 +0200 | [diff] [blame] | 1619 | &dim_tot_loads, |
Jiri Olsa | f0c50c1 | 2016-05-04 10:50:09 +0200 | [diff] [blame] | 1620 | &dim_percent_hitm, |
Jiri Olsa | 9cb3500 | 2016-05-04 12:16:50 +0200 | [diff] [blame] | 1621 | &dim_percent_rmt_hitm, |
| 1622 | &dim_percent_lcl_hitm, |
| 1623 | &dim_percent_stores_l1hit, |
| 1624 | &dim_percent_stores_l1miss, |
Jiri Olsa | 6c70f54 | 2016-05-28 12:30:13 +0200 | [diff] [blame] | 1625 | &dim_dram_lcl, |
| 1626 | &dim_dram_rmt, |
Jiri Olsa | 36d3deb | 2016-05-24 13:09:47 +0200 | [diff] [blame] | 1627 | &dim_pid, |
Jiri Olsa | e87019c | 2016-05-25 08:50:10 +0200 | [diff] [blame] | 1628 | &dim_tid, |
Jiri Olsa | 51dedaa | 2016-05-24 23:41:52 +0200 | [diff] [blame] | 1629 | &dim_symbol, |
| 1630 | &dim_dso, |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 1631 | &dim_node, |
Jiri Olsa | 92062d5 | 2016-06-05 13:40:53 +0200 | [diff] [blame] | 1632 | &dim_mean_rmt, |
| 1633 | &dim_mean_lcl, |
| 1634 | &dim_mean_load, |
Jiri Olsa | b6fe2bb | 2016-06-23 23:05:52 +0200 | [diff] [blame] | 1635 | &dim_cpucnt, |
Jiri Olsa | 89d9ba8f | 2016-07-10 15:47:40 +0200 | [diff] [blame] | 1636 | &dim_srcline, |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 1637 | &dim_dcacheline_idx, |
| 1638 | &dim_dcacheline_num, |
| 1639 | &dim_dcacheline_num_empty, |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1640 | NULL, |
| 1641 | }; |
| 1642 | |
| 1643 | static void fmt_free(struct perf_hpp_fmt *fmt) |
| 1644 | { |
| 1645 | struct c2c_fmt *c2c_fmt; |
| 1646 | |
| 1647 | c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); |
| 1648 | free(c2c_fmt); |
| 1649 | } |
| 1650 | |
| 1651 | static bool fmt_equal(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b) |
| 1652 | { |
| 1653 | struct c2c_fmt *c2c_a = container_of(a, struct c2c_fmt, fmt); |
| 1654 | struct c2c_fmt *c2c_b = container_of(b, struct c2c_fmt, fmt); |
| 1655 | |
| 1656 | return c2c_a->dim == c2c_b->dim; |
| 1657 | } |
| 1658 | |
| 1659 | static struct c2c_dimension *get_dimension(const char *name) |
| 1660 | { |
| 1661 | unsigned int i; |
| 1662 | |
| 1663 | for (i = 0; dimensions[i]; i++) { |
| 1664 | struct c2c_dimension *dim = dimensions[i]; |
| 1665 | |
| 1666 | if (!strcmp(dim->name, name)) |
| 1667 | return dim; |
Zou Wei | 2cca512 | 2020-04-28 16:58:56 +0800 | [diff] [blame] | 1668 | } |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1669 | |
| 1670 | return NULL; |
| 1671 | } |
| 1672 | |
Jiri Olsa | 8d3f938 | 2016-09-22 17:36:42 +0200 | [diff] [blame] | 1673 | static int c2c_se_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, |
| 1674 | struct hist_entry *he) |
| 1675 | { |
| 1676 | struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); |
| 1677 | struct c2c_dimension *dim = c2c_fmt->dim; |
| 1678 | size_t len = fmt->user_len; |
| 1679 | |
Jiri Olsa | 590b6a3 | 2016-07-10 16:25:15 +0200 | [diff] [blame] | 1680 | if (!len) { |
Jiri Olsa | 8d3f938 | 2016-09-22 17:36:42 +0200 | [diff] [blame] | 1681 | len = hists__col_len(he->hists, dim->se->se_width_idx); |
| 1682 | |
Jiri Olsa | 590b6a3 | 2016-07-10 16:25:15 +0200 | [diff] [blame] | 1683 | if (dim == &dim_symbol || dim == &dim_srcline) |
| 1684 | len = symbol_width(he->hists, dim->se); |
| 1685 | } |
| 1686 | |
Jiri Olsa | 8d3f938 | 2016-09-22 17:36:42 +0200 | [diff] [blame] | 1687 | return dim->se->se_snprintf(he, hpp->buf, hpp->size, len); |
| 1688 | } |
| 1689 | |
| 1690 | static int64_t c2c_se_cmp(struct perf_hpp_fmt *fmt, |
| 1691 | struct hist_entry *a, struct hist_entry *b) |
| 1692 | { |
| 1693 | struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); |
| 1694 | struct c2c_dimension *dim = c2c_fmt->dim; |
| 1695 | |
| 1696 | return dim->se->se_cmp(a, b); |
| 1697 | } |
| 1698 | |
| 1699 | static int64_t c2c_se_collapse(struct perf_hpp_fmt *fmt, |
| 1700 | struct hist_entry *a, struct hist_entry *b) |
| 1701 | { |
| 1702 | struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); |
| 1703 | struct c2c_dimension *dim = c2c_fmt->dim; |
| 1704 | int64_t (*collapse_fn)(struct hist_entry *, struct hist_entry *); |
| 1705 | |
| 1706 | collapse_fn = dim->se->se_collapse ?: dim->se->se_cmp; |
| 1707 | return collapse_fn(a, b); |
| 1708 | } |
| 1709 | |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1710 | static struct c2c_fmt *get_format(const char *name) |
| 1711 | { |
| 1712 | struct c2c_dimension *dim = get_dimension(name); |
| 1713 | struct c2c_fmt *c2c_fmt; |
| 1714 | struct perf_hpp_fmt *fmt; |
| 1715 | |
| 1716 | if (!dim) |
| 1717 | return NULL; |
| 1718 | |
| 1719 | c2c_fmt = zalloc(sizeof(*c2c_fmt)); |
| 1720 | if (!c2c_fmt) |
| 1721 | return NULL; |
| 1722 | |
| 1723 | c2c_fmt->dim = dim; |
| 1724 | |
| 1725 | fmt = &c2c_fmt->fmt; |
| 1726 | INIT_LIST_HEAD(&fmt->list); |
| 1727 | INIT_LIST_HEAD(&fmt->sort_list); |
| 1728 | |
Jiri Olsa | 8d3f938 | 2016-09-22 17:36:42 +0200 | [diff] [blame] | 1729 | fmt->cmp = dim->se ? c2c_se_cmp : dim->cmp; |
| 1730 | fmt->sort = dim->se ? c2c_se_cmp : dim->cmp; |
Jiri Olsa | 9cb3500 | 2016-05-04 12:16:50 +0200 | [diff] [blame] | 1731 | fmt->color = dim->se ? NULL : dim->color; |
Jiri Olsa | 8d3f938 | 2016-09-22 17:36:42 +0200 | [diff] [blame] | 1732 | fmt->entry = dim->se ? c2c_se_entry : dim->entry; |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1733 | fmt->header = c2c_header; |
| 1734 | fmt->width = c2c_width; |
Jiri Olsa | 8d3f938 | 2016-09-22 17:36:42 +0200 | [diff] [blame] | 1735 | fmt->collapse = dim->se ? c2c_se_collapse : dim->cmp; |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1736 | fmt->equal = fmt_equal; |
| 1737 | fmt->free = fmt_free; |
| 1738 | |
| 1739 | return c2c_fmt; |
| 1740 | } |
| 1741 | |
| 1742 | static int c2c_hists__init_output(struct perf_hpp_list *hpp_list, char *name) |
| 1743 | { |
| 1744 | struct c2c_fmt *c2c_fmt = get_format(name); |
| 1745 | |
Jiri Olsa | 5f2eca8 | 2016-09-22 17:36:43 +0200 | [diff] [blame] | 1746 | if (!c2c_fmt) { |
| 1747 | reset_dimensions(); |
| 1748 | return output_field_add(hpp_list, name); |
| 1749 | } |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1750 | |
| 1751 | perf_hpp_list__column_register(hpp_list, &c2c_fmt->fmt); |
| 1752 | return 0; |
| 1753 | } |
| 1754 | |
| 1755 | static int c2c_hists__init_sort(struct perf_hpp_list *hpp_list, char *name) |
| 1756 | { |
| 1757 | struct c2c_fmt *c2c_fmt = get_format(name); |
Jiri Olsa | 51dedaa | 2016-05-24 23:41:52 +0200 | [diff] [blame] | 1758 | struct c2c_dimension *dim; |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1759 | |
Jiri Olsa | 5f2eca8 | 2016-09-22 17:36:43 +0200 | [diff] [blame] | 1760 | if (!c2c_fmt) { |
| 1761 | reset_dimensions(); |
| 1762 | return sort_dimension__add(hpp_list, name, NULL, 0); |
| 1763 | } |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1764 | |
Jiri Olsa | 51dedaa | 2016-05-24 23:41:52 +0200 | [diff] [blame] | 1765 | dim = c2c_fmt->dim; |
| 1766 | if (dim == &dim_dso) |
| 1767 | hpp_list->dso = 1; |
| 1768 | |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1769 | perf_hpp_list__register_sort_field(hpp_list, &c2c_fmt->fmt); |
| 1770 | return 0; |
| 1771 | } |
| 1772 | |
| 1773 | #define PARSE_LIST(_list, _fn) \ |
| 1774 | do { \ |
| 1775 | char *tmp, *tok; \ |
| 1776 | ret = 0; \ |
| 1777 | \ |
| 1778 | if (!_list) \ |
| 1779 | break; \ |
| 1780 | \ |
| 1781 | for (tok = strtok_r((char *)_list, ", ", &tmp); \ |
| 1782 | tok; tok = strtok_r(NULL, ", ", &tmp)) { \ |
| 1783 | ret = _fn(hpp_list, tok); \ |
| 1784 | if (ret == -EINVAL) { \ |
Arnaldo Carvalho de Melo | 62d94b0 | 2017-06-27 11:22:31 -0300 | [diff] [blame] | 1785 | pr_err("Invalid --fields key: `%s'", tok); \ |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1786 | break; \ |
| 1787 | } else if (ret == -ESRCH) { \ |
Arnaldo Carvalho de Melo | 62d94b0 | 2017-06-27 11:22:31 -0300 | [diff] [blame] | 1788 | pr_err("Unknown --fields key: `%s'", tok); \ |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1789 | break; \ |
| 1790 | } \ |
| 1791 | } \ |
| 1792 | } while (0) |
| 1793 | |
| 1794 | static int hpp_list__parse(struct perf_hpp_list *hpp_list, |
| 1795 | const char *output_, |
| 1796 | const char *sort_) |
| 1797 | { |
| 1798 | char *output = output_ ? strdup(output_) : NULL; |
| 1799 | char *sort = sort_ ? strdup(sort_) : NULL; |
| 1800 | int ret; |
| 1801 | |
| 1802 | PARSE_LIST(output, c2c_hists__init_output); |
| 1803 | PARSE_LIST(sort, c2c_hists__init_sort); |
| 1804 | |
| 1805 | /* copy sort keys to output fields */ |
| 1806 | perf_hpp__setup_output_field(hpp_list); |
| 1807 | |
| 1808 | /* |
| 1809 | * We dont need other sorting keys other than those |
| 1810 | * we already specified. It also really slows down |
| 1811 | * the processing a lot with big number of output |
| 1812 | * fields, so switching this off for c2c. |
| 1813 | */ |
| 1814 | |
| 1815 | #if 0 |
| 1816 | /* and then copy output fields to sort keys */ |
| 1817 | perf_hpp__append_sort_keys(&hists->list); |
| 1818 | #endif |
| 1819 | |
| 1820 | free(output); |
| 1821 | free(sort); |
| 1822 | return ret; |
| 1823 | } |
| 1824 | |
| 1825 | static int c2c_hists__init(struct c2c_hists *hists, |
Jiri Olsa | 1d62fcd | 2016-05-24 10:12:31 +0200 | [diff] [blame] | 1826 | const char *sort, |
| 1827 | int nr_header_lines) |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1828 | { |
| 1829 | __hists__init(&hists->hists, &hists->list); |
| 1830 | |
| 1831 | /* |
| 1832 | * Initialize only with sort fields, we need to resort |
| 1833 | * later anyway, and that's where we add output fields |
| 1834 | * as well. |
| 1835 | */ |
| 1836 | perf_hpp_list__init(&hists->list); |
| 1837 | |
Jiri Olsa | 1d62fcd | 2016-05-24 10:12:31 +0200 | [diff] [blame] | 1838 | /* Overload number of header lines.*/ |
| 1839 | hists->list.nr_header_lines = nr_header_lines; |
| 1840 | |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1841 | return hpp_list__parse(&hists->list, NULL, sort); |
| 1842 | } |
| 1843 | |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 1844 | static int c2c_hists__reinit(struct c2c_hists *c2c_hists, |
| 1845 | const char *output, |
| 1846 | const char *sort) |
| 1847 | { |
| 1848 | perf_hpp__reset_output_field(&c2c_hists->list); |
| 1849 | return hpp_list__parse(&c2c_hists->list, output, sort); |
| 1850 | } |
| 1851 | |
Jiri Olsa | c4a75bb | 2018-12-28 11:18:20 +0100 | [diff] [blame] | 1852 | #define DISPLAY_LINE_LIMIT 0.001 |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1853 | |
Leo Yan | 69a95bf | 2021-01-14 23:46:43 +0800 | [diff] [blame] | 1854 | static u8 filter_display(u32 val, u32 sum) |
| 1855 | { |
| 1856 | if (sum == 0 || ((double)val / sum) < DISPLAY_LINE_LIMIT) |
| 1857 | return HIST_FILTER__C2C; |
| 1858 | |
| 1859 | return 0; |
| 1860 | } |
| 1861 | |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1862 | static bool he__display(struct hist_entry *he, struct c2c_stats *stats) |
| 1863 | { |
| 1864 | struct c2c_hist_entry *c2c_he; |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1865 | |
Jiri Olsa | af09b2d | 2016-10-11 13:52:05 +0200 | [diff] [blame] | 1866 | if (c2c.show_all) |
| 1867 | return true; |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1868 | |
| 1869 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 1870 | |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 1871 | switch (c2c.display) { |
| 1872 | case DISPLAY_LCL: |
Leo Yan | 69a95bf | 2021-01-14 23:46:43 +0800 | [diff] [blame] | 1873 | he->filtered = filter_display(c2c_he->stats.lcl_hitm, |
| 1874 | stats->lcl_hitm); |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 1875 | break; |
| 1876 | case DISPLAY_RMT: |
Leo Yan | 69a95bf | 2021-01-14 23:46:43 +0800 | [diff] [blame] | 1877 | he->filtered = filter_display(c2c_he->stats.rmt_hitm, |
| 1878 | stats->rmt_hitm); |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 1879 | break; |
| 1880 | case DISPLAY_TOT: |
Leo Yan | 69a95bf | 2021-01-14 23:46:43 +0800 | [diff] [blame] | 1881 | he->filtered = filter_display(c2c_he->stats.tot_hitm, |
| 1882 | stats->tot_hitm); |
| 1883 | break; |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 1884 | default: |
| 1885 | break; |
Zou Wei | 2cca512 | 2020-04-28 16:58:56 +0800 | [diff] [blame] | 1886 | } |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 1887 | |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1888 | return he->filtered == 0; |
| 1889 | } |
| 1890 | |
Leo Yan | 2290e1d | 2021-01-14 23:46:42 +0800 | [diff] [blame] | 1891 | static inline bool is_valid_hist_entry(struct hist_entry *he) |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1892 | { |
| 1893 | struct c2c_hist_entry *c2c_he; |
Leo Yan | 2290e1d | 2021-01-14 23:46:42 +0800 | [diff] [blame] | 1894 | bool has_record = false; |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1895 | |
| 1896 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
Leo Yan | 2290e1d | 2021-01-14 23:46:42 +0800 | [diff] [blame] | 1897 | |
| 1898 | /* It's a valid entry if contains stores */ |
| 1899 | if (c2c_he->stats.store) |
| 1900 | return true; |
| 1901 | |
| 1902 | switch (c2c.display) { |
| 1903 | case DISPLAY_LCL: |
| 1904 | has_record = !!c2c_he->stats.lcl_hitm; |
| 1905 | break; |
| 1906 | case DISPLAY_RMT: |
| 1907 | has_record = !!c2c_he->stats.rmt_hitm; |
| 1908 | break; |
| 1909 | case DISPLAY_TOT: |
| 1910 | has_record = !!c2c_he->stats.tot_hitm; |
| 1911 | break; |
| 1912 | default: |
| 1913 | break; |
| 1914 | } |
| 1915 | |
| 1916 | return has_record; |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1917 | } |
| 1918 | |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 1919 | static void set_node_width(struct c2c_hist_entry *c2c_he, int len) |
| 1920 | { |
| 1921 | struct c2c_dimension *dim; |
| 1922 | |
| 1923 | dim = &c2c.hists == c2c_he->hists ? |
| 1924 | &dim_dcacheline_node : &dim_offset_node; |
| 1925 | |
| 1926 | if (len > dim->width) |
| 1927 | dim->width = len; |
| 1928 | } |
| 1929 | |
| 1930 | static int set_nodestr(struct c2c_hist_entry *c2c_he) |
| 1931 | { |
| 1932 | char buf[30]; |
| 1933 | int len; |
| 1934 | |
| 1935 | if (c2c_he->nodestr) |
| 1936 | return 0; |
| 1937 | |
| 1938 | if (bitmap_weight(c2c_he->nodeset, c2c.nodes_cnt)) { |
| 1939 | len = bitmap_scnprintf(c2c_he->nodeset, c2c.nodes_cnt, |
| 1940 | buf, sizeof(buf)); |
| 1941 | } else { |
| 1942 | len = scnprintf(buf, sizeof(buf), "N/A"); |
| 1943 | } |
| 1944 | |
| 1945 | set_node_width(c2c_he, len); |
| 1946 | c2c_he->nodestr = strdup(buf); |
| 1947 | return c2c_he->nodestr ? 0 : -ENOMEM; |
| 1948 | } |
| 1949 | |
Jiri Olsa | 3773138 | 2018-03-09 11:14:38 +0100 | [diff] [blame] | 1950 | static void calc_width(struct c2c_hist_entry *c2c_he) |
Jiri Olsa | 25aa84e | 2016-06-07 19:02:43 +0200 | [diff] [blame] | 1951 | { |
| 1952 | struct c2c_hists *c2c_hists; |
| 1953 | |
Jiri Olsa | 3773138 | 2018-03-09 11:14:38 +0100 | [diff] [blame] | 1954 | c2c_hists = container_of(c2c_he->he.hists, struct c2c_hists, hists); |
| 1955 | hists__calc_col_len(&c2c_hists->hists, &c2c_he->he); |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 1956 | set_nodestr(c2c_he); |
Jiri Olsa | 25aa84e | 2016-06-07 19:02:43 +0200 | [diff] [blame] | 1957 | } |
| 1958 | |
Jiri Olsa | e4c38fd | 2019-02-04 15:18:06 +0100 | [diff] [blame] | 1959 | static int filter_cb(struct hist_entry *he, void *arg __maybe_unused) |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 1960 | { |
Jiri Olsa | 3773138 | 2018-03-09 11:14:38 +0100 | [diff] [blame] | 1961 | struct c2c_hist_entry *c2c_he; |
| 1962 | |
| 1963 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 1964 | |
Jiri Olsa | 89d9ba8f | 2016-07-10 15:47:40 +0200 | [diff] [blame] | 1965 | if (c2c.show_src && !he->srcline) |
Arnaldo Carvalho de Melo | 6a53da0 | 2018-05-28 11:06:58 -0300 | [diff] [blame] | 1966 | he->srcline = hist_entry__srcline(he); |
Jiri Olsa | 89d9ba8f | 2016-07-10 15:47:40 +0200 | [diff] [blame] | 1967 | |
Jiri Olsa | 3773138 | 2018-03-09 11:14:38 +0100 | [diff] [blame] | 1968 | calc_width(c2c_he); |
Jiri Olsa | 25aa84e | 2016-06-07 19:02:43 +0200 | [diff] [blame] | 1969 | |
Leo Yan | 2290e1d | 2021-01-14 23:46:42 +0800 | [diff] [blame] | 1970 | if (!is_valid_hist_entry(he)) |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1971 | he->filtered = HIST_FILTER__C2C; |
| 1972 | |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 1973 | return 0; |
| 1974 | } |
| 1975 | |
Jiri Olsa | e4c38fd | 2019-02-04 15:18:06 +0100 | [diff] [blame] | 1976 | static int resort_cl_cb(struct hist_entry *he, void *arg __maybe_unused) |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 1977 | { |
| 1978 | struct c2c_hist_entry *c2c_he; |
| 1979 | struct c2c_hists *c2c_hists; |
Leo Yan | 1834436 | 2021-01-14 23:46:41 +0800 | [diff] [blame] | 1980 | bool display = he__display(he, &c2c.shared_clines_stats); |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 1981 | |
| 1982 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 1983 | c2c_hists = c2c_he->hists; |
| 1984 | |
Jiri Olsa | 9857b71 | 2016-08-17 14:55:23 +0200 | [diff] [blame] | 1985 | if (display && c2c_hists) { |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 1986 | static unsigned int idx; |
| 1987 | |
| 1988 | c2c_he->cacheline_idx = idx++; |
Jiri Olsa | bc229c2 | 2018-03-09 11:14:39 +0100 | [diff] [blame] | 1989 | calc_width(c2c_he); |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 1990 | |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 1991 | c2c_hists__reinit(c2c_hists, c2c.cl_output, c2c.cl_resort); |
Jiri Olsa | 22dd59d | 2016-05-10 14:08:29 +0200 | [diff] [blame] | 1992 | |
Jiri Olsa | ec06f9b | 2016-09-22 17:36:45 +0200 | [diff] [blame] | 1993 | hists__collapse_resort(&c2c_hists->hists, NULL); |
| 1994 | hists__output_resort_cb(&c2c_hists->hists, NULL, filter_cb); |
| 1995 | } |
| 1996 | |
| 1997 | return 0; |
| 1998 | } |
| 1999 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 2000 | static void setup_nodes_header(void) |
| 2001 | { |
| 2002 | dim_node.header = header_node[c2c.node_info]; |
| 2003 | } |
| 2004 | |
| 2005 | static int setup_nodes(struct perf_session *session) |
| 2006 | { |
| 2007 | struct numa_node *n; |
| 2008 | unsigned long **nodes; |
| 2009 | int node, cpu; |
| 2010 | int *cpu2node; |
| 2011 | |
| 2012 | if (c2c.node_info > 2) |
| 2013 | c2c.node_info = 2; |
| 2014 | |
| 2015 | c2c.nodes_cnt = session->header.env.nr_numa_nodes; |
Ravi Bangoria | 1ea770f | 2019-08-22 14:20:45 +0530 | [diff] [blame] | 2016 | c2c.cpus_cnt = session->header.env.nr_cpus_avail; |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 2017 | |
| 2018 | n = session->header.env.numa_nodes; |
| 2019 | if (!n) |
| 2020 | return -EINVAL; |
| 2021 | |
| 2022 | nodes = zalloc(sizeof(unsigned long *) * c2c.nodes_cnt); |
| 2023 | if (!nodes) |
| 2024 | return -ENOMEM; |
| 2025 | |
| 2026 | c2c.nodes = nodes; |
| 2027 | |
| 2028 | cpu2node = zalloc(sizeof(int) * c2c.cpus_cnt); |
| 2029 | if (!cpu2node) |
| 2030 | return -ENOMEM; |
| 2031 | |
| 2032 | for (cpu = 0; cpu < c2c.cpus_cnt; cpu++) |
| 2033 | cpu2node[cpu] = -1; |
| 2034 | |
| 2035 | c2c.cpu2node = cpu2node; |
| 2036 | |
| 2037 | for (node = 0; node < c2c.nodes_cnt; node++) { |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 2038 | struct perf_cpu_map *map = n[node].map; |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 2039 | unsigned long *set; |
| 2040 | |
| 2041 | set = bitmap_alloc(c2c.cpus_cnt); |
| 2042 | if (!set) |
| 2043 | return -ENOMEM; |
| 2044 | |
Jiri Olsa | e34c940 | 2019-03-05 16:25:29 +0100 | [diff] [blame] | 2045 | nodes[node] = set; |
| 2046 | |
| 2047 | /* empty node, skip */ |
Jiri Olsa | 315c0a1 | 2019-08-22 13:11:39 +0200 | [diff] [blame] | 2048 | if (perf_cpu_map__empty(map)) |
Jiri Olsa | e34c940 | 2019-03-05 16:25:29 +0100 | [diff] [blame] | 2049 | continue; |
| 2050 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 2051 | for (cpu = 0; cpu < map->nr; cpu++) { |
| 2052 | set_bit(map->map[cpu], set); |
| 2053 | |
| 2054 | if (WARN_ONCE(cpu2node[map->map[cpu]] != -1, "node/cpu topology bug")) |
| 2055 | return -EINVAL; |
| 2056 | |
| 2057 | cpu2node[map->map[cpu]] = node; |
| 2058 | } |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 2059 | } |
| 2060 | |
| 2061 | setup_nodes_header(); |
| 2062 | return 0; |
| 2063 | } |
| 2064 | |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 2065 | #define HAS_HITMS(__h) ((__h)->stats.lcl_hitm || (__h)->stats.rmt_hitm) |
| 2066 | |
Leo Yan | 1834436 | 2021-01-14 23:46:41 +0800 | [diff] [blame] | 2067 | static int resort_shared_cl_cb(struct hist_entry *he, void *arg __maybe_unused) |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 2068 | { |
| 2069 | struct c2c_hist_entry *c2c_he; |
| 2070 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 2071 | |
| 2072 | if (HAS_HITMS(c2c_he)) { |
| 2073 | c2c.shared_clines++; |
Leo Yan | 1834436 | 2021-01-14 23:46:41 +0800 | [diff] [blame] | 2074 | c2c_add_stats(&c2c.shared_clines_stats, &c2c_he->stats); |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 2075 | } |
| 2076 | |
| 2077 | return 0; |
| 2078 | } |
| 2079 | |
| 2080 | static int hists__iterate_cb(struct hists *hists, hists__resort_cb_t cb) |
| 2081 | { |
Davidlohr Bueso | 2eb3d68 | 2018-12-06 11:18:18 -0800 | [diff] [blame] | 2082 | struct rb_node *next = rb_first_cached(&hists->entries); |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 2083 | int ret = 0; |
| 2084 | |
| 2085 | while (next) { |
| 2086 | struct hist_entry *he; |
| 2087 | |
| 2088 | he = rb_entry(next, struct hist_entry, rb_node); |
Jiri Olsa | e4c38fd | 2019-02-04 15:18:06 +0100 | [diff] [blame] | 2089 | ret = cb(he, NULL); |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 2090 | if (ret) |
| 2091 | break; |
| 2092 | next = rb_next(&he->rb_node); |
| 2093 | } |
| 2094 | |
| 2095 | return ret; |
| 2096 | } |
| 2097 | |
Jiri Olsa | 74c63a2 | 2016-05-02 20:01:59 +0200 | [diff] [blame] | 2098 | static void print_c2c__display_stats(FILE *out) |
| 2099 | { |
| 2100 | int llc_misses; |
| 2101 | struct c2c_stats *stats = &c2c.hists.stats; |
| 2102 | |
| 2103 | llc_misses = stats->lcl_dram + |
| 2104 | stats->rmt_dram + |
| 2105 | stats->rmt_hit + |
| 2106 | stats->rmt_hitm; |
| 2107 | |
| 2108 | fprintf(out, "=================================================\n"); |
| 2109 | fprintf(out, " Trace Event Information \n"); |
| 2110 | fprintf(out, "=================================================\n"); |
| 2111 | fprintf(out, " Total records : %10d\n", stats->nr_entries); |
| 2112 | fprintf(out, " Locked Load/Store Operations : %10d\n", stats->locks); |
| 2113 | fprintf(out, " Load Operations : %10d\n", stats->load); |
| 2114 | fprintf(out, " Loads - uncacheable : %10d\n", stats->ld_uncache); |
| 2115 | fprintf(out, " Loads - IO : %10d\n", stats->ld_io); |
| 2116 | fprintf(out, " Loads - Miss : %10d\n", stats->ld_miss); |
| 2117 | fprintf(out, " Loads - no mapping : %10d\n", stats->ld_noadrs); |
| 2118 | fprintf(out, " Load Fill Buffer Hit : %10d\n", stats->ld_fbhit); |
| 2119 | fprintf(out, " Load L1D hit : %10d\n", stats->ld_l1hit); |
| 2120 | fprintf(out, " Load L2D hit : %10d\n", stats->ld_l2hit); |
| 2121 | fprintf(out, " Load LLC hit : %10d\n", stats->ld_llchit + stats->lcl_hitm); |
| 2122 | fprintf(out, " Load Local HITM : %10d\n", stats->lcl_hitm); |
| 2123 | fprintf(out, " Load Remote HITM : %10d\n", stats->rmt_hitm); |
| 2124 | fprintf(out, " Load Remote HIT : %10d\n", stats->rmt_hit); |
| 2125 | fprintf(out, " Load Local DRAM : %10d\n", stats->lcl_dram); |
| 2126 | fprintf(out, " Load Remote DRAM : %10d\n", stats->rmt_dram); |
| 2127 | fprintf(out, " Load MESI State Exclusive : %10d\n", stats->ld_excl); |
| 2128 | fprintf(out, " Load MESI State Shared : %10d\n", stats->ld_shared); |
| 2129 | fprintf(out, " Load LLC Misses : %10d\n", llc_misses); |
| 2130 | fprintf(out, " LLC Misses to Local DRAM : %10.1f%%\n", ((double)stats->lcl_dram/(double)llc_misses) * 100.); |
| 2131 | fprintf(out, " LLC Misses to Remote DRAM : %10.1f%%\n", ((double)stats->rmt_dram/(double)llc_misses) * 100.); |
| 2132 | fprintf(out, " LLC Misses to Remote cache (HIT) : %10.1f%%\n", ((double)stats->rmt_hit /(double)llc_misses) * 100.); |
| 2133 | fprintf(out, " LLC Misses to Remote cache (HITM) : %10.1f%%\n", ((double)stats->rmt_hitm/(double)llc_misses) * 100.); |
| 2134 | fprintf(out, " Store Operations : %10d\n", stats->store); |
| 2135 | fprintf(out, " Store - uncacheable : %10d\n", stats->st_uncache); |
| 2136 | fprintf(out, " Store - no mapping : %10d\n", stats->st_noadrs); |
| 2137 | fprintf(out, " Store L1D Hit : %10d\n", stats->st_l1hit); |
| 2138 | fprintf(out, " Store L1D Miss : %10d\n", stats->st_l1miss); |
| 2139 | fprintf(out, " No Page Map Rejects : %10d\n", stats->nomap); |
| 2140 | fprintf(out, " Unable to parse data source : %10d\n", stats->noparse); |
| 2141 | } |
| 2142 | |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 2143 | static void print_shared_cacheline_info(FILE *out) |
| 2144 | { |
Leo Yan | 1834436 | 2021-01-14 23:46:41 +0800 | [diff] [blame] | 2145 | struct c2c_stats *stats = &c2c.shared_clines_stats; |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 2146 | int hitm_cnt = stats->lcl_hitm + stats->rmt_hitm; |
| 2147 | |
| 2148 | fprintf(out, "=================================================\n"); |
| 2149 | fprintf(out, " Global Shared Cache Line Event Information \n"); |
| 2150 | fprintf(out, "=================================================\n"); |
| 2151 | fprintf(out, " Total Shared Cache Lines : %10d\n", c2c.shared_clines); |
| 2152 | fprintf(out, " Load HITs on shared lines : %10d\n", stats->load); |
| 2153 | fprintf(out, " Fill Buffer Hits on shared lines : %10d\n", stats->ld_fbhit); |
| 2154 | fprintf(out, " L1D hits on shared lines : %10d\n", stats->ld_l1hit); |
| 2155 | fprintf(out, " L2D hits on shared lines : %10d\n", stats->ld_l2hit); |
| 2156 | fprintf(out, " LLC hits on shared lines : %10d\n", stats->ld_llchit + stats->lcl_hitm); |
| 2157 | fprintf(out, " Locked Access on shared lines : %10d\n", stats->locks); |
| 2158 | fprintf(out, " Store HITs on shared lines : %10d\n", stats->store); |
| 2159 | fprintf(out, " Store L1D hits on shared lines : %10d\n", stats->st_l1hit); |
| 2160 | fprintf(out, " Total Merged records : %10d\n", hitm_cnt + stats->store); |
| 2161 | } |
| 2162 | |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2163 | static void print_cacheline(struct c2c_hists *c2c_hists, |
| 2164 | struct hist_entry *he_cl, |
| 2165 | struct perf_hpp_list *hpp_list, |
| 2166 | FILE *out) |
| 2167 | { |
| 2168 | char bf[1000]; |
| 2169 | struct perf_hpp hpp = { |
| 2170 | .buf = bf, |
| 2171 | .size = 1000, |
| 2172 | }; |
| 2173 | static bool once; |
| 2174 | |
| 2175 | if (!once) { |
| 2176 | hists__fprintf_headers(&c2c_hists->hists, out); |
| 2177 | once = true; |
| 2178 | } else { |
| 2179 | fprintf(out, "\n"); |
| 2180 | } |
| 2181 | |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 2182 | fprintf(out, " -------------------------------------------------------------\n"); |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2183 | __hist_entry__snprintf(he_cl, &hpp, hpp_list); |
| 2184 | fprintf(out, "%s\n", bf); |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 2185 | fprintf(out, " -------------------------------------------------------------\n"); |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2186 | |
Arnaldo Carvalho de Melo | e9de7e2 | 2018-06-20 15:58:20 -0300 | [diff] [blame] | 2187 | hists__fprintf(&c2c_hists->hists, false, 0, 0, 0, out, false); |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2188 | } |
| 2189 | |
| 2190 | static void print_pareto(FILE *out) |
| 2191 | { |
| 2192 | struct perf_hpp_list hpp_list; |
| 2193 | struct rb_node *nd; |
| 2194 | int ret; |
| 2195 | |
| 2196 | perf_hpp_list__init(&hpp_list); |
| 2197 | ret = hpp_list__parse(&hpp_list, |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 2198 | "cl_num," |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2199 | "cl_rmt_hitm," |
| 2200 | "cl_lcl_hitm," |
| 2201 | "cl_stores_l1hit," |
| 2202 | "cl_stores_l1miss," |
| 2203 | "dcacheline", |
| 2204 | NULL); |
| 2205 | |
| 2206 | if (WARN_ONCE(ret, "failed to setup sort entries\n")) |
| 2207 | return; |
| 2208 | |
Davidlohr Bueso | 2eb3d68 | 2018-12-06 11:18:18 -0800 | [diff] [blame] | 2209 | nd = rb_first_cached(&c2c.hists.hists.entries); |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2210 | |
| 2211 | for (; nd; nd = rb_next(nd)) { |
| 2212 | struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); |
| 2213 | struct c2c_hist_entry *c2c_he; |
| 2214 | |
| 2215 | if (he->filtered) |
| 2216 | continue; |
| 2217 | |
| 2218 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 2219 | print_cacheline(c2c_he->hists, he, &hpp_list, out); |
| 2220 | } |
| 2221 | } |
| 2222 | |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2223 | static void print_c2c_info(FILE *out, struct perf_session *session) |
| 2224 | { |
Jiri Olsa | 63503db | 2019-07-21 13:23:52 +0200 | [diff] [blame] | 2225 | struct evlist *evlist = session->evlist; |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 2226 | struct evsel *evsel; |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2227 | bool first = true; |
| 2228 | |
| 2229 | fprintf(out, "=================================================\n"); |
| 2230 | fprintf(out, " c2c details \n"); |
| 2231 | fprintf(out, "=================================================\n"); |
| 2232 | |
| 2233 | evlist__for_each_entry(evlist, evsel) { |
Arnaldo Carvalho de Melo | 8ab2e96 | 2020-04-29 16:07:09 -0300 | [diff] [blame] | 2234 | fprintf(out, "%-36s: %s\n", first ? " Events" : "", evsel__name(evsel)); |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2235 | first = false; |
| 2236 | } |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 2237 | fprintf(out, " Cachelines sort on : %s HITMs\n", |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 2238 | display_str[c2c.display]); |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2239 | fprintf(out, " Cacheline data grouping : %s\n", c2c.cl_sort); |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2240 | } |
| 2241 | |
| 2242 | static void perf_c2c__hists_fprintf(FILE *out, struct perf_session *session) |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2243 | { |
| 2244 | setup_pager(); |
| 2245 | |
Jiri Olsa | 74c63a2 | 2016-05-02 20:01:59 +0200 | [diff] [blame] | 2246 | print_c2c__display_stats(out); |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 2247 | fprintf(out, "\n"); |
| 2248 | print_shared_cacheline_info(out); |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2249 | fprintf(out, "\n"); |
| 2250 | print_c2c_info(out, session); |
Jiri Olsa | 74c63a2 | 2016-05-02 20:01:59 +0200 | [diff] [blame] | 2251 | |
| 2252 | if (c2c.stats_only) |
| 2253 | return; |
| 2254 | |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2255 | fprintf(out, "\n"); |
| 2256 | fprintf(out, "=================================================\n"); |
| 2257 | fprintf(out, " Shared Data Cache Line Table \n"); |
| 2258 | fprintf(out, "=================================================\n"); |
| 2259 | fprintf(out, "#\n"); |
| 2260 | |
Arnaldo Carvalho de Melo | e9de7e2 | 2018-06-20 15:58:20 -0300 | [diff] [blame] | 2261 | hists__fprintf(&c2c.hists.hists, true, 0, 0, 0, stdout, true); |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2262 | |
| 2263 | fprintf(out, "\n"); |
| 2264 | fprintf(out, "=================================================\n"); |
| 2265 | fprintf(out, " Shared Cache Line Distribution Pareto \n"); |
| 2266 | fprintf(out, "=================================================\n"); |
| 2267 | fprintf(out, "#\n"); |
| 2268 | |
| 2269 | print_pareto(out); |
| 2270 | } |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 2271 | |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2272 | #ifdef HAVE_SLANG_SUPPORT |
| 2273 | static void c2c_browser__update_nr_entries(struct hist_browser *hb) |
| 2274 | { |
| 2275 | u64 nr_entries = 0; |
Davidlohr Bueso | 2eb3d68 | 2018-12-06 11:18:18 -0800 | [diff] [blame] | 2276 | struct rb_node *nd = rb_first_cached(&hb->hists->entries); |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2277 | |
| 2278 | while (nd) { |
| 2279 | struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); |
| 2280 | |
| 2281 | if (!he->filtered) |
| 2282 | nr_entries++; |
| 2283 | |
| 2284 | nd = rb_next(nd); |
| 2285 | } |
| 2286 | |
| 2287 | hb->nr_non_filtered_entries = nr_entries; |
| 2288 | } |
| 2289 | |
Jiri Olsa | f1c5fd4 | 2016-05-02 18:30:44 +0200 | [diff] [blame] | 2290 | struct c2c_cacheline_browser { |
| 2291 | struct hist_browser hb; |
| 2292 | struct hist_entry *he; |
| 2293 | }; |
| 2294 | |
| 2295 | static int |
| 2296 | perf_c2c_cacheline_browser__title(struct hist_browser *browser, |
| 2297 | char *bf, size_t size) |
| 2298 | { |
| 2299 | struct c2c_cacheline_browser *cl_browser; |
| 2300 | struct hist_entry *he; |
| 2301 | uint64_t addr = 0; |
| 2302 | |
| 2303 | cl_browser = container_of(browser, struct c2c_cacheline_browser, hb); |
| 2304 | he = cl_browser->he; |
| 2305 | |
| 2306 | if (he->mem_info) |
| 2307 | addr = cl_address(he->mem_info->daddr.addr); |
| 2308 | |
| 2309 | scnprintf(bf, size, "Cacheline 0x%lx", addr); |
| 2310 | return 0; |
| 2311 | } |
| 2312 | |
| 2313 | static struct c2c_cacheline_browser* |
| 2314 | c2c_cacheline_browser__new(struct hists *hists, struct hist_entry *he) |
| 2315 | { |
| 2316 | struct c2c_cacheline_browser *browser; |
| 2317 | |
| 2318 | browser = zalloc(sizeof(*browser)); |
| 2319 | if (browser) { |
| 2320 | hist_browser__init(&browser->hb, hists); |
| 2321 | browser->hb.c2c_filter = true; |
| 2322 | browser->hb.title = perf_c2c_cacheline_browser__title; |
| 2323 | browser->he = he; |
| 2324 | } |
| 2325 | |
| 2326 | return browser; |
| 2327 | } |
| 2328 | |
| 2329 | static int perf_c2c__browse_cacheline(struct hist_entry *he) |
| 2330 | { |
| 2331 | struct c2c_hist_entry *c2c_he; |
| 2332 | struct c2c_hists *c2c_hists; |
| 2333 | struct c2c_cacheline_browser *cl_browser; |
| 2334 | struct hist_browser *browser; |
| 2335 | int key = -1; |
Rasmus Villemoes | 49b8e2b | 2018-11-03 00:06:23 +0100 | [diff] [blame] | 2336 | static const char help[] = |
Kim Phillips | 239fb4f | 2017-11-14 15:04:47 -0600 | [diff] [blame] | 2337 | " ENTER Toggle callchains (if present) \n" |
| 2338 | " n Toggle Node details info \n" |
| 2339 | " s Toggle full length of symbol and source line columns \n" |
Jiri Olsa | 9a406eb | 2016-08-17 15:54:58 +0200 | [diff] [blame] | 2340 | " q Return back to cacheline list \n"; |
Jiri Olsa | f1c5fd4 | 2016-05-02 18:30:44 +0200 | [diff] [blame] | 2341 | |
Jiri Olsa | 7397833 | 2018-07-24 08:20:08 +0200 | [diff] [blame] | 2342 | if (!he) |
| 2343 | return 0; |
| 2344 | |
Jiri Olsa | 590b6a3 | 2016-07-10 16:25:15 +0200 | [diff] [blame] | 2345 | /* Display compact version first. */ |
| 2346 | c2c.symbol_full = false; |
| 2347 | |
Jiri Olsa | f1c5fd4 | 2016-05-02 18:30:44 +0200 | [diff] [blame] | 2348 | c2c_he = container_of(he, struct c2c_hist_entry, he); |
| 2349 | c2c_hists = c2c_he->hists; |
| 2350 | |
| 2351 | cl_browser = c2c_cacheline_browser__new(&c2c_hists->hists, he); |
| 2352 | if (cl_browser == NULL) |
| 2353 | return -1; |
| 2354 | |
| 2355 | browser = &cl_browser->hb; |
| 2356 | |
| 2357 | /* reset abort key so that it can get Ctrl-C as a key */ |
| 2358 | SLang_reset_tty(); |
| 2359 | SLang_init_tty(0, 0, 0); |
| 2360 | |
| 2361 | c2c_browser__update_nr_entries(browser); |
| 2362 | |
| 2363 | while (1) { |
Arnaldo Carvalho de Melo | d10ec00 | 2019-12-12 15:31:40 -0300 | [diff] [blame] | 2364 | key = hist_browser__run(browser, "? - help", true, 0); |
Jiri Olsa | f1c5fd4 | 2016-05-02 18:30:44 +0200 | [diff] [blame] | 2365 | |
| 2366 | switch (key) { |
Jiri Olsa | 590b6a3 | 2016-07-10 16:25:15 +0200 | [diff] [blame] | 2367 | case 's': |
| 2368 | c2c.symbol_full = !c2c.symbol_full; |
| 2369 | break; |
Jiri Olsa | 1a56a42 | 2016-07-10 16:30:27 +0200 | [diff] [blame] | 2370 | case 'n': |
| 2371 | c2c.node_info = (c2c.node_info + 1) % 3; |
| 2372 | setup_nodes_header(); |
| 2373 | break; |
Jiri Olsa | f1c5fd4 | 2016-05-02 18:30:44 +0200 | [diff] [blame] | 2374 | case 'q': |
| 2375 | goto out; |
Jiri Olsa | 9a406eb | 2016-08-17 15:54:58 +0200 | [diff] [blame] | 2376 | case '?': |
| 2377 | ui_browser__help_window(&browser->b, help); |
| 2378 | break; |
Jiri Olsa | f1c5fd4 | 2016-05-02 18:30:44 +0200 | [diff] [blame] | 2379 | default: |
| 2380 | break; |
| 2381 | } |
| 2382 | } |
| 2383 | |
| 2384 | out: |
| 2385 | free(cl_browser); |
| 2386 | return 0; |
| 2387 | } |
| 2388 | |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2389 | static int perf_c2c_browser__title(struct hist_browser *browser, |
| 2390 | char *bf, size_t size) |
| 2391 | { |
| 2392 | scnprintf(bf, size, |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 2393 | "Shared Data Cache Line Table " |
| 2394 | "(%lu entries, sorted on %s HITMs)", |
| 2395 | browser->nr_non_filtered_entries, |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 2396 | display_str[c2c.display]); |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2397 | return 0; |
| 2398 | } |
| 2399 | |
| 2400 | static struct hist_browser* |
| 2401 | perf_c2c_browser__new(struct hists *hists) |
| 2402 | { |
| 2403 | struct hist_browser *browser = hist_browser__new(hists); |
| 2404 | |
| 2405 | if (browser) { |
| 2406 | browser->title = perf_c2c_browser__title; |
| 2407 | browser->c2c_filter = true; |
| 2408 | } |
| 2409 | |
| 2410 | return browser; |
| 2411 | } |
| 2412 | |
| 2413 | static int perf_c2c__hists_browse(struct hists *hists) |
| 2414 | { |
| 2415 | struct hist_browser *browser; |
| 2416 | int key = -1; |
Rasmus Villemoes | 49b8e2b | 2018-11-03 00:06:23 +0100 | [diff] [blame] | 2417 | static const char help[] = |
Jiri Olsa | 9a406eb | 2016-08-17 15:54:58 +0200 | [diff] [blame] | 2418 | " d Display cacheline details \n" |
Kim Phillips | 239fb4f | 2017-11-14 15:04:47 -0600 | [diff] [blame] | 2419 | " ENTER Toggle callchains (if present) \n" |
Jiri Olsa | 9a406eb | 2016-08-17 15:54:58 +0200 | [diff] [blame] | 2420 | " q Quit \n"; |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2421 | |
| 2422 | browser = perf_c2c_browser__new(hists); |
| 2423 | if (browser == NULL) |
| 2424 | return -1; |
| 2425 | |
| 2426 | /* reset abort key so that it can get Ctrl-C as a key */ |
| 2427 | SLang_reset_tty(); |
| 2428 | SLang_init_tty(0, 0, 0); |
| 2429 | |
| 2430 | c2c_browser__update_nr_entries(browser); |
| 2431 | |
| 2432 | while (1) { |
Arnaldo Carvalho de Melo | d10ec00 | 2019-12-12 15:31:40 -0300 | [diff] [blame] | 2433 | key = hist_browser__run(browser, "? - help", true, 0); |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2434 | |
| 2435 | switch (key) { |
| 2436 | case 'q': |
| 2437 | goto out; |
Jiri Olsa | f1c5fd4 | 2016-05-02 18:30:44 +0200 | [diff] [blame] | 2438 | case 'd': |
| 2439 | perf_c2c__browse_cacheline(browser->he_selection); |
| 2440 | break; |
Jiri Olsa | 9a406eb | 2016-08-17 15:54:58 +0200 | [diff] [blame] | 2441 | case '?': |
| 2442 | ui_browser__help_window(&browser->b, help); |
| 2443 | break; |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2444 | default: |
| 2445 | break; |
| 2446 | } |
| 2447 | } |
| 2448 | |
| 2449 | out: |
| 2450 | hist_browser__delete(browser); |
| 2451 | return 0; |
| 2452 | } |
| 2453 | |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2454 | static void perf_c2c_display(struct perf_session *session) |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2455 | { |
Namhyung Kim | 1936fea | 2017-03-08 00:08:33 +0900 | [diff] [blame] | 2456 | if (use_browser == 0) |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2457 | perf_c2c__hists_fprintf(stdout, session); |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2458 | else |
| 2459 | perf_c2c__hists_browse(&c2c.hists.hists); |
| 2460 | } |
| 2461 | #else |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2462 | static void perf_c2c_display(struct perf_session *session) |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2463 | { |
| 2464 | use_browser = 0; |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2465 | perf_c2c__hists_fprintf(stdout, session); |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2466 | } |
| 2467 | #endif /* HAVE_SLANG_SUPPORT */ |
| 2468 | |
Jiri Olsa | d0802b1 | 2018-03-09 11:14:41 +0100 | [diff] [blame] | 2469 | static char *fill_line(const char *orig, int len) |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2470 | { |
Jiri Olsa | d0802b1 | 2018-03-09 11:14:41 +0100 | [diff] [blame] | 2471 | int i, j, olen = strlen(orig); |
| 2472 | char *buf; |
| 2473 | |
| 2474 | buf = zalloc(len + 1); |
| 2475 | if (!buf) |
| 2476 | return NULL; |
| 2477 | |
| 2478 | j = len / 2 - olen / 2; |
| 2479 | |
| 2480 | for (i = 0; i < j - 1; i++) |
| 2481 | buf[i] = '-'; |
| 2482 | |
| 2483 | buf[i++] = ' '; |
| 2484 | |
| 2485 | strcpy(buf + i, orig); |
| 2486 | |
| 2487 | i += olen; |
| 2488 | |
| 2489 | buf[i++] = ' '; |
| 2490 | |
| 2491 | for (; i < len; i++) |
| 2492 | buf[i] = '-'; |
| 2493 | |
| 2494 | return buf; |
| 2495 | } |
| 2496 | |
| 2497 | static int ui_quirks(void) |
| 2498 | { |
| 2499 | const char *nodestr = "Data address"; |
| 2500 | char *buf; |
| 2501 | |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2502 | if (!c2c.use_stdio) { |
| 2503 | dim_offset.width = 5; |
| 2504 | dim_offset.header = header_offset_tui; |
Jiri Olsa | d0802b1 | 2018-03-09 11:14:41 +0100 | [diff] [blame] | 2505 | nodestr = "CL"; |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2506 | } |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 2507 | |
| 2508 | dim_percent_hitm.header = percent_hitm_header[c2c.display]; |
Jiri Olsa | d0802b1 | 2018-03-09 11:14:41 +0100 | [diff] [blame] | 2509 | |
| 2510 | /* Fix the zero line for dcacheline column. */ |
| 2511 | buf = fill_line("Cacheline", dim_dcacheline.width + |
Jiri Olsa | 03d9fcb | 2018-03-09 11:14:42 +0100 | [diff] [blame] | 2512 | dim_dcacheline_node.width + |
| 2513 | dim_dcacheline_count.width + 4); |
Jiri Olsa | d0802b1 | 2018-03-09 11:14:41 +0100 | [diff] [blame] | 2514 | if (!buf) |
| 2515 | return -ENOMEM; |
| 2516 | |
| 2517 | dim_dcacheline.header.line[0].text = buf; |
| 2518 | |
| 2519 | /* Fix the zero line for offset column. */ |
| 2520 | buf = fill_line(nodestr, dim_offset.width + |
Jiri Olsa | 03d9fcb | 2018-03-09 11:14:42 +0100 | [diff] [blame] | 2521 | dim_offset_node.width + |
| 2522 | dim_dcacheline_count.width + 4); |
Jiri Olsa | d0802b1 | 2018-03-09 11:14:41 +0100 | [diff] [blame] | 2523 | if (!buf) |
| 2524 | return -ENOMEM; |
| 2525 | |
| 2526 | dim_offset.header.line[0].text = buf; |
| 2527 | |
| 2528 | return 0; |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2529 | } |
| 2530 | |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 2531 | #define CALLCHAIN_DEFAULT_OPT "graph,0.5,caller,function,percent" |
| 2532 | |
| 2533 | const char callchain_help[] = "Display call graph (stack chain/backtrace):\n\n" |
| 2534 | CALLCHAIN_REPORT_HELP |
| 2535 | "\n\t\t\t\tDefault: " CALLCHAIN_DEFAULT_OPT; |
| 2536 | |
| 2537 | static int |
| 2538 | parse_callchain_opt(const struct option *opt, const char *arg, int unset) |
| 2539 | { |
| 2540 | struct callchain_param *callchain = opt->value; |
| 2541 | |
| 2542 | callchain->enabled = !unset; |
| 2543 | /* |
| 2544 | * --no-call-graph |
| 2545 | */ |
| 2546 | if (unset) { |
| 2547 | symbol_conf.use_callchain = false; |
| 2548 | callchain->mode = CHAIN_NONE; |
| 2549 | return 0; |
| 2550 | } |
| 2551 | |
| 2552 | return parse_callchain_report_opt(arg); |
| 2553 | } |
| 2554 | |
Jiri Olsa | 63503db | 2019-07-21 13:23:52 +0200 | [diff] [blame] | 2555 | static int setup_callchain(struct evlist *evlist) |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 2556 | { |
Arnaldo Carvalho de Melo | b3c2cc2 | 2020-06-17 09:24:21 -0300 | [diff] [blame] | 2557 | u64 sample_type = evlist__combined_sample_type(evlist); |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 2558 | enum perf_call_graph_mode mode = CALLCHAIN_NONE; |
| 2559 | |
| 2560 | if ((sample_type & PERF_SAMPLE_REGS_USER) && |
Arnaldo Carvalho de Melo | eabad8c | 2018-01-15 16:48:46 -0300 | [diff] [blame] | 2561 | (sample_type & PERF_SAMPLE_STACK_USER)) { |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 2562 | mode = CALLCHAIN_DWARF; |
Arnaldo Carvalho de Melo | eabad8c | 2018-01-15 16:48:46 -0300 | [diff] [blame] | 2563 | dwarf_callchain_users = true; |
| 2564 | } else if (sample_type & PERF_SAMPLE_BRANCH_STACK) |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 2565 | mode = CALLCHAIN_LBR; |
| 2566 | else if (sample_type & PERF_SAMPLE_CALLCHAIN) |
| 2567 | mode = CALLCHAIN_FP; |
| 2568 | |
| 2569 | if (!callchain_param.enabled && |
| 2570 | callchain_param.mode != CHAIN_NONE && |
| 2571 | mode != CALLCHAIN_NONE) { |
| 2572 | symbol_conf.use_callchain = true; |
| 2573 | if (callchain_register_param(&callchain_param) < 0) { |
| 2574 | ui__error("Can't register callchain params.\n"); |
| 2575 | return -EINVAL; |
| 2576 | } |
| 2577 | } |
| 2578 | |
Kan Liang | d80da76 | 2020-03-19 13:25:16 -0700 | [diff] [blame] | 2579 | if (c2c.stitch_lbr && (mode != CALLCHAIN_LBR)) { |
| 2580 | ui__warning("Can't find LBR callchain. Switch off --stitch-lbr.\n" |
| 2581 | "Please apply --call-graph lbr when recording.\n"); |
| 2582 | c2c.stitch_lbr = false; |
| 2583 | } |
| 2584 | |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 2585 | callchain_param.record_mode = mode; |
| 2586 | callchain_param.min_percent = 0; |
| 2587 | return 0; |
| 2588 | } |
| 2589 | |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 2590 | static int setup_display(const char *str) |
| 2591 | { |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 2592 | const char *display = str ?: "tot"; |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 2593 | |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 2594 | if (!strcmp(display, "tot")) |
| 2595 | c2c.display = DISPLAY_TOT; |
| 2596 | else if (!strcmp(display, "rmt")) |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 2597 | c2c.display = DISPLAY_RMT; |
| 2598 | else if (!strcmp(display, "lcl")) |
| 2599 | c2c.display = DISPLAY_LCL; |
| 2600 | else { |
| 2601 | pr_err("failed: unknown display type: %s\n", str); |
| 2602 | return -1; |
| 2603 | } |
| 2604 | |
| 2605 | return 0; |
| 2606 | } |
| 2607 | |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2608 | #define for_each_token(__tok, __buf, __sep, __tmp) \ |
| 2609 | for (__tok = strtok_r(__buf, __sep, &__tmp); __tok; \ |
| 2610 | __tok = strtok_r(NULL, __sep, &__tmp)) |
| 2611 | |
Jiri Olsa | 18f278d | 2016-10-11 13:39:47 +0200 | [diff] [blame] | 2612 | static int build_cl_output(char *cl_sort, bool no_source) |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2613 | { |
| 2614 | char *tok, *tmp, *buf = strdup(cl_sort); |
| 2615 | bool add_pid = false; |
| 2616 | bool add_tid = false; |
| 2617 | bool add_iaddr = false; |
| 2618 | bool add_sym = false; |
| 2619 | bool add_dso = false; |
| 2620 | bool add_src = false; |
Yunfeng Ye | ae199c5 | 2019-10-15 10:54:14 +0800 | [diff] [blame] | 2621 | int ret = 0; |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2622 | |
| 2623 | if (!buf) |
| 2624 | return -ENOMEM; |
| 2625 | |
| 2626 | for_each_token(tok, buf, ",", tmp) { |
| 2627 | if (!strcmp(tok, "tid")) { |
| 2628 | add_tid = true; |
| 2629 | } else if (!strcmp(tok, "pid")) { |
| 2630 | add_pid = true; |
| 2631 | } else if (!strcmp(tok, "iaddr")) { |
| 2632 | add_iaddr = true; |
| 2633 | add_sym = true; |
| 2634 | add_dso = true; |
Jiri Olsa | 18f278d | 2016-10-11 13:39:47 +0200 | [diff] [blame] | 2635 | add_src = no_source ? false : true; |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2636 | } else if (!strcmp(tok, "dso")) { |
| 2637 | add_dso = true; |
| 2638 | } else if (strcmp(tok, "offset")) { |
| 2639 | pr_err("unrecognized sort token: %s\n", tok); |
Yunfeng Ye | ae199c5 | 2019-10-15 10:54:14 +0800 | [diff] [blame] | 2640 | ret = -EINVAL; |
| 2641 | goto err; |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2642 | } |
| 2643 | } |
| 2644 | |
| 2645 | if (asprintf(&c2c.cl_output, |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 2646 | "%s%s%s%s%s%s%s%s%s%s", |
| 2647 | c2c.use_stdio ? "cl_num_empty," : "", |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2648 | "percent_rmt_hitm," |
| 2649 | "percent_lcl_hitm," |
| 2650 | "percent_stores_l1hit," |
| 2651 | "percent_stores_l1miss," |
Jiri Olsa | 03d9fcb | 2018-03-09 11:14:42 +0100 | [diff] [blame] | 2652 | "offset,offset_node,dcacheline_count,", |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2653 | add_pid ? "pid," : "", |
| 2654 | add_tid ? "tid," : "", |
| 2655 | add_iaddr ? "iaddr," : "", |
| 2656 | "mean_rmt," |
| 2657 | "mean_lcl," |
| 2658 | "mean_load," |
Jiri Olsa | 8763e6a | 2017-01-20 10:20:31 +0100 | [diff] [blame] | 2659 | "tot_recs," |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2660 | "cpucnt,", |
| 2661 | add_sym ? "symbol," : "", |
| 2662 | add_dso ? "dso," : "", |
| 2663 | add_src ? "cl_srcline," : "", |
Yunfeng Ye | ae199c5 | 2019-10-15 10:54:14 +0800 | [diff] [blame] | 2664 | "node") < 0) { |
| 2665 | ret = -ENOMEM; |
| 2666 | goto err; |
| 2667 | } |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2668 | |
| 2669 | c2c.show_src = add_src; |
Yunfeng Ye | ae199c5 | 2019-10-15 10:54:14 +0800 | [diff] [blame] | 2670 | err: |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2671 | free(buf); |
Yunfeng Ye | ae199c5 | 2019-10-15 10:54:14 +0800 | [diff] [blame] | 2672 | return ret; |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2673 | } |
| 2674 | |
Jiri Olsa | 18f278d | 2016-10-11 13:39:47 +0200 | [diff] [blame] | 2675 | static int setup_coalesce(const char *coalesce, bool no_source) |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2676 | { |
| 2677 | const char *c = coalesce ?: coalesce_default; |
| 2678 | |
| 2679 | if (asprintf(&c2c.cl_sort, "offset,%s", c) < 0) |
| 2680 | return -ENOMEM; |
| 2681 | |
Jiri Olsa | 18f278d | 2016-10-11 13:39:47 +0200 | [diff] [blame] | 2682 | if (build_cl_output(c2c.cl_sort, no_source)) |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2683 | return -1; |
| 2684 | |
| 2685 | if (asprintf(&c2c.cl_resort, "offset,%s", |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 2686 | c2c.display == DISPLAY_TOT ? |
| 2687 | "tot_hitm" : |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2688 | c2c.display == DISPLAY_RMT ? |
| 2689 | "rmt_hitm,lcl_hitm" : |
| 2690 | "lcl_hitm,rmt_hitm") < 0) |
| 2691 | return -ENOMEM; |
| 2692 | |
| 2693 | pr_debug("coalesce sort fields: %s\n", c2c.cl_sort); |
| 2694 | pr_debug("coalesce resort fields: %s\n", c2c.cl_resort); |
| 2695 | pr_debug("coalesce output fields: %s\n", c2c.cl_output); |
| 2696 | return 0; |
| 2697 | } |
| 2698 | |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2699 | static int perf_c2c__report(int argc, const char **argv) |
| 2700 | { |
Leo Yan | c825f78 | 2020-11-06 17:48:52 +0800 | [diff] [blame] | 2701 | struct itrace_synth_opts itrace_synth_opts = { |
| 2702 | .set = true, |
| 2703 | .mem = true, /* Only enable memory event */ |
| 2704 | .default_no_sample = true, |
| 2705 | }; |
| 2706 | |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2707 | struct perf_session *session; |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 2708 | struct ui_progress prog; |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 2709 | struct perf_data data = { |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2710 | .mode = PERF_DATA_MODE_READ, |
| 2711 | }; |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 2712 | char callchain_default_opt[] = CALLCHAIN_DEFAULT_OPT; |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 2713 | const char *display = NULL; |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2714 | const char *coalesce = NULL; |
Jiri Olsa | 18f278d | 2016-10-11 13:39:47 +0200 | [diff] [blame] | 2715 | bool no_source = false; |
Jiri Olsa | 3a5bfab | 2016-11-21 22:33:31 +0100 | [diff] [blame] | 2716 | const struct option options[] = { |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2717 | OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, |
| 2718 | "file", "vmlinux pathname"), |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2719 | OPT_STRING('i', "input", &input_name, "file", |
| 2720 | "the input file to process"), |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 2721 | OPT_INCR('N', "node-info", &c2c.node_info, |
| 2722 | "show extra node info in report (repeat for more info)"), |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2723 | #ifdef HAVE_SLANG_SUPPORT |
| 2724 | OPT_BOOLEAN(0, "stdio", &c2c.use_stdio, "Use the stdio interface"), |
| 2725 | #endif |
Jiri Olsa | 74c63a2 | 2016-05-02 20:01:59 +0200 | [diff] [blame] | 2726 | OPT_BOOLEAN(0, "stats", &c2c.stats_only, |
Namhyung Kim | f75d289 | 2017-03-08 00:08:32 +0900 | [diff] [blame] | 2727 | "Display only statistic tables (implies --stdio)"), |
Jiri Olsa | 590b6a3 | 2016-07-10 16:25:15 +0200 | [diff] [blame] | 2728 | OPT_BOOLEAN(0, "full-symbols", &c2c.symbol_full, |
| 2729 | "Display full length of symbols"), |
Jiri Olsa | 18f278d | 2016-10-11 13:39:47 +0200 | [diff] [blame] | 2730 | OPT_BOOLEAN(0, "no-source", &no_source, |
| 2731 | "Do not display Source Line column"), |
Jiri Olsa | af09b2d | 2016-10-11 13:52:05 +0200 | [diff] [blame] | 2732 | OPT_BOOLEAN(0, "show-all", &c2c.show_all, |
| 2733 | "Show all captured HITM lines."), |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 2734 | OPT_CALLBACK_DEFAULT('g', "call-graph", &callchain_param, |
| 2735 | "print_type,threshold[,print_limit],order,sort_key[,branch],value", |
| 2736 | callchain_help, &parse_callchain_opt, |
| 2737 | callchain_default_opt), |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 2738 | OPT_STRING('d', "display", &display, "Switch HITM output type", "lcl,rmt"), |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2739 | OPT_STRING('c', "coalesce", &coalesce, "coalesce fields", |
| 2740 | "coalesce fields: pid,tid,iaddr,dso"), |
Jiri Olsa | b7ac4f9 | 2016-11-21 22:33:28 +0100 | [diff] [blame] | 2741 | OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"), |
Kan Liang | d80da76 | 2020-03-19 13:25:16 -0700 | [diff] [blame] | 2742 | OPT_BOOLEAN(0, "stitch-lbr", &c2c.stitch_lbr, |
| 2743 | "Enable LBR callgraph stitching approach"), |
Jiri Olsa | 3a5bfab | 2016-11-21 22:33:31 +0100 | [diff] [blame] | 2744 | OPT_PARENT(c2c_options), |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2745 | OPT_END() |
| 2746 | }; |
| 2747 | int err = 0; |
| 2748 | |
Jiri Olsa | 3a5bfab | 2016-11-21 22:33:31 +0100 | [diff] [blame] | 2749 | argc = parse_options(argc, argv, options, report_c2c_usage, |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2750 | PARSE_OPT_STOP_AT_NON_OPTION); |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 2751 | if (argc) |
Jiri Olsa | 3a5bfab | 2016-11-21 22:33:31 +0100 | [diff] [blame] | 2752 | usage_with_options(report_c2c_usage, options); |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2753 | |
Jiri Olsa | 74c63a2 | 2016-05-02 20:01:59 +0200 | [diff] [blame] | 2754 | if (c2c.stats_only) |
| 2755 | c2c.use_stdio = true; |
| 2756 | |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 2757 | if (!input_name || !strlen(input_name)) |
| 2758 | input_name = "perf.data"; |
| 2759 | |
Jiri Olsa | 2d4f279 | 2019-02-21 10:41:30 +0100 | [diff] [blame] | 2760 | data.path = input_name; |
| 2761 | data.force = symbol_conf.force; |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2762 | |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 2763 | err = setup_display(display); |
| 2764 | if (err) |
| 2765 | goto out; |
| 2766 | |
Jiri Olsa | 18f278d | 2016-10-11 13:39:47 +0200 | [diff] [blame] | 2767 | err = setup_coalesce(coalesce, no_source); |
Jiri Olsa | fc9c630 | 2016-05-24 14:14:38 +0200 | [diff] [blame] | 2768 | if (err) { |
| 2769 | pr_debug("Failed to initialize hists\n"); |
| 2770 | goto out; |
| 2771 | } |
| 2772 | |
Jiri Olsa | 1d62fcd | 2016-05-24 10:12:31 +0200 | [diff] [blame] | 2773 | err = c2c_hists__init(&c2c.hists, "dcacheline", 2); |
Jiri Olsa | c75540e | 2016-09-22 17:36:41 +0200 | [diff] [blame] | 2774 | if (err) { |
| 2775 | pr_debug("Failed to initialize hists\n"); |
| 2776 | goto out; |
| 2777 | } |
| 2778 | |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 2779 | session = perf_session__new(&data, 0, &c2c.tool); |
Mamatha Inamdar | 6ef81c5 | 2019-08-22 12:50:49 +0530 | [diff] [blame] | 2780 | if (IS_ERR(session)) { |
| 2781 | err = PTR_ERR(session); |
| 2782 | pr_debug("Error creating perf session\n"); |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2783 | goto out; |
| 2784 | } |
Jiri Olsa | e8c5fe1 | 2016-11-21 22:33:27 +0100 | [diff] [blame] | 2785 | |
Leo Yan | c825f78 | 2020-11-06 17:48:52 +0800 | [diff] [blame] | 2786 | session->itrace_synth_opts = &itrace_synth_opts; |
| 2787 | |
Jiri Olsa | 1e181b9 | 2016-06-03 15:40:28 +0200 | [diff] [blame] | 2788 | err = setup_nodes(session); |
| 2789 | if (err) { |
| 2790 | pr_err("Failed setup nodes\n"); |
| 2791 | goto out; |
| 2792 | } |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2793 | |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 2794 | err = mem2node__init(&c2c.mem2node, &session->header.env); |
Jiri Olsa | dd80576 | 2016-05-11 18:23:48 +0200 | [diff] [blame] | 2795 | if (err) |
| 2796 | goto out_session; |
| 2797 | |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 2798 | err = setup_callchain(session->evlist); |
| 2799 | if (err) |
| 2800 | goto out_mem2node; |
| 2801 | |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2802 | if (symbol__init(&session->header.env) < 0) |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 2803 | goto out_mem2node; |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2804 | |
| 2805 | /* No pipe support at the moment. */ |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 2806 | if (perf_data__is_pipe(session->data)) { |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2807 | pr_debug("No pipe support at the moment.\n"); |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 2808 | goto out_mem2node; |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2809 | } |
| 2810 | |
Jiri Olsa | e8c5fe1 | 2016-11-21 22:33:27 +0100 | [diff] [blame] | 2811 | if (c2c.use_stdio) |
| 2812 | use_browser = 0; |
| 2813 | else |
| 2814 | use_browser = 1; |
| 2815 | |
| 2816 | setup_browser(false); |
| 2817 | |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 2818 | err = perf_session__process_events(session); |
| 2819 | if (err) { |
| 2820 | pr_err("failed to process sample\n"); |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 2821 | goto out_mem2node; |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 2822 | } |
| 2823 | |
Jiri Olsa | 22dd59d | 2016-05-10 14:08:29 +0200 | [diff] [blame] | 2824 | c2c_hists__reinit(&c2c.hists, |
Jiri Olsa | bb342dae | 2016-07-06 15:40:09 +0200 | [diff] [blame] | 2825 | "cl_idx," |
Jiri Olsa | 22dd59d | 2016-05-10 14:08:29 +0200 | [diff] [blame] | 2826 | "dcacheline," |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 2827 | "dcacheline_node," |
Jiri Olsa | 03d9fcb | 2018-03-09 11:14:42 +0100 | [diff] [blame] | 2828 | "dcacheline_count," |
Jiri Olsa | 22dd59d | 2016-05-10 14:08:29 +0200 | [diff] [blame] | 2829 | "percent_hitm," |
| 2830 | "tot_hitm,lcl_hitm,rmt_hitm," |
Leo Yan | b596e97 | 2020-10-14 06:09:14 +0100 | [diff] [blame] | 2831 | "tot_recs," |
| 2832 | "tot_loads," |
Leo Yan | 4f28641b | 2020-10-14 06:09:15 +0100 | [diff] [blame] | 2833 | "tot_stores," |
| 2834 | "stores_l1hit,stores_l1miss," |
Jiri Olsa | 22dd59d | 2016-05-10 14:08:29 +0200 | [diff] [blame] | 2835 | "ld_fbhit,ld_l1hit,ld_l2hit," |
Leo Yan | 77c1586 | 2020-10-14 06:09:20 +0100 | [diff] [blame] | 2836 | "ld_lclhit,lcl_hitm," |
Leo Yan | 91d933c2 | 2020-10-14 06:09:21 +0100 | [diff] [blame] | 2837 | "ld_rmthit,rmt_hitm," |
Leo Yan | 6d662d7 | 2020-10-14 06:09:16 +0100 | [diff] [blame] | 2838 | "dram_lcl,dram_rmt", |
Jiri Olsa | d940bac | 2016-11-21 22:33:30 +0100 | [diff] [blame] | 2839 | c2c.display == DISPLAY_TOT ? "tot_hitm" : |
Jiri Olsa | 55b9577 | 2016-05-29 10:21:45 +0200 | [diff] [blame] | 2840 | c2c.display == DISPLAY_LCL ? "lcl_hitm" : "rmt_hitm" |
Jiri Olsa | 22dd59d | 2016-05-10 14:08:29 +0200 | [diff] [blame] | 2841 | ); |
| 2842 | |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 2843 | ui_progress__init(&prog, c2c.hists.hists.nr_entries, "Sorting..."); |
| 2844 | |
| 2845 | hists__collapse_resort(&c2c.hists.hists, NULL); |
Leo Yan | 1834436 | 2021-01-14 23:46:41 +0800 | [diff] [blame] | 2846 | hists__output_resort_cb(&c2c.hists.hists, &prog, resort_shared_cl_cb); |
Jiri Olsa | 7ef2efa | 2016-07-01 11:12:11 +0200 | [diff] [blame] | 2847 | hists__iterate_cb(&c2c.hists.hists, resort_cl_cb); |
Jiri Olsa | 78b2754 | 2016-09-22 17:36:44 +0200 | [diff] [blame] | 2848 | |
| 2849 | ui_progress__finish(); |
| 2850 | |
Jiri Olsa | d0802b1 | 2018-03-09 11:14:41 +0100 | [diff] [blame] | 2851 | if (ui_quirks()) { |
| 2852 | pr_err("failed to setup UI\n"); |
| 2853 | goto out_mem2node; |
| 2854 | } |
Jiri Olsa | 5a1a99c | 2016-01-06 16:59:02 +0100 | [diff] [blame] | 2855 | |
Jiri Olsa | 2709b97 | 2016-08-27 11:40:23 +0200 | [diff] [blame] | 2856 | perf_c2c_display(session); |
Jiri Olsa | 2d388bd | 2016-05-03 14:32:56 +0200 | [diff] [blame] | 2857 | |
Jiri Olsa | 7f834c2 | 2018-03-09 11:14:40 +0100 | [diff] [blame] | 2858 | out_mem2node: |
| 2859 | mem2node__exit(&c2c.mem2node); |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 2860 | out_session: |
| 2861 | perf_session__delete(session); |
| 2862 | out: |
| 2863 | return err; |
| 2864 | } |
| 2865 | |
Arnaldo Carvalho de Melo | 7e6a799 | 2016-12-12 10:52:10 -0300 | [diff] [blame] | 2866 | static int parse_record_events(const struct option *opt, |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2867 | const char *str, int unset __maybe_unused) |
| 2868 | { |
| 2869 | bool *event_set = (bool *) opt->value; |
| 2870 | |
Ian Rogers | b027cc6 | 2020-05-07 15:06:04 -0700 | [diff] [blame] | 2871 | if (!strcmp(str, "list")) { |
| 2872 | perf_mem_events__list(); |
| 2873 | exit(0); |
| 2874 | } |
| 2875 | if (perf_mem_events__parse(str)) |
| 2876 | exit(-1); |
| 2877 | |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2878 | *event_set = true; |
Ian Rogers | b027cc6 | 2020-05-07 15:06:04 -0700 | [diff] [blame] | 2879 | return 0; |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2880 | } |
| 2881 | |
| 2882 | |
| 2883 | static const char * const __usage_record[] = { |
| 2884 | "perf c2c record [<options>] [<command>]", |
| 2885 | "perf c2c record [<options>] -- <command> [<options>]", |
| 2886 | NULL |
| 2887 | }; |
| 2888 | |
| 2889 | static const char * const *record_mem_usage = __usage_record; |
| 2890 | |
| 2891 | static int perf_c2c__record(int argc, const char **argv) |
| 2892 | { |
| 2893 | int rec_argc, i = 0, j; |
| 2894 | const char **rec_argv; |
| 2895 | int ret; |
| 2896 | bool all_user = false, all_kernel = false; |
| 2897 | bool event_set = false; |
Leo Yan | eaf6aae | 2020-11-06 17:48:46 +0800 | [diff] [blame] | 2898 | struct perf_mem_event *e; |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2899 | struct option options[] = { |
| 2900 | OPT_CALLBACK('e', "event", &event_set, "event", |
Leo Yan | edac75a | 2020-10-11 20:10:22 +0800 | [diff] [blame] | 2901 | "event selector. Use 'perf c2c record -e list' to list available events", |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2902 | parse_record_events), |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2903 | OPT_BOOLEAN('u', "all-user", &all_user, "collect only user level data"), |
| 2904 | OPT_BOOLEAN('k', "all-kernel", &all_kernel, "collect only kernel level data"), |
| 2905 | OPT_UINTEGER('l', "ldlat", &perf_mem_events__loads_ldlat, "setup mem-loads latency"), |
Jiri Olsa | 3a5bfab | 2016-11-21 22:33:31 +0100 | [diff] [blame] | 2906 | OPT_PARENT(c2c_options), |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2907 | OPT_END() |
| 2908 | }; |
| 2909 | |
| 2910 | if (perf_mem_events__init()) { |
| 2911 | pr_err("failed: memory events not supported\n"); |
| 2912 | return -1; |
| 2913 | } |
| 2914 | |
| 2915 | argc = parse_options(argc, argv, options, record_mem_usage, |
| 2916 | PARSE_OPT_KEEP_UNKNOWN); |
| 2917 | |
Jiri Olsa | 8fab784 | 2018-03-09 11:14:37 +0100 | [diff] [blame] | 2918 | rec_argc = argc + 11; /* max number of arguments */ |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2919 | rec_argv = calloc(rec_argc + 1, sizeof(char *)); |
| 2920 | if (!rec_argv) |
| 2921 | return -1; |
| 2922 | |
| 2923 | rec_argv[i++] = "record"; |
| 2924 | |
| 2925 | if (!event_set) { |
Leo Yan | 8b8173b | 2020-11-06 17:48:48 +0800 | [diff] [blame] | 2926 | e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD_STORE); |
| 2927 | /* |
| 2928 | * The load and store operations are required, use the event |
| 2929 | * PERF_MEM_EVENTS__LOAD_STORE if it is supported. |
| 2930 | */ |
| 2931 | if (e->tag) { |
| 2932 | e->record = true; |
| 2933 | } else { |
| 2934 | e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD); |
| 2935 | e->record = true; |
Leo Yan | eaf6aae | 2020-11-06 17:48:46 +0800 | [diff] [blame] | 2936 | |
Leo Yan | 8b8173b | 2020-11-06 17:48:48 +0800 | [diff] [blame] | 2937 | e = perf_mem_events__ptr(PERF_MEM_EVENTS__STORE); |
| 2938 | e->record = true; |
| 2939 | } |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2940 | } |
| 2941 | |
Leo Yan | eaf6aae | 2020-11-06 17:48:46 +0800 | [diff] [blame] | 2942 | e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD); |
| 2943 | if (e->record) |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2944 | rec_argv[i++] = "-W"; |
| 2945 | |
| 2946 | rec_argv[i++] = "-d"; |
Jiri Olsa | 8fab784 | 2018-03-09 11:14:37 +0100 | [diff] [blame] | 2947 | rec_argv[i++] = "--phys-data"; |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2948 | rec_argv[i++] = "--sample-cpu"; |
| 2949 | |
| 2950 | for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) { |
Leo Yan | eaf6aae | 2020-11-06 17:48:46 +0800 | [diff] [blame] | 2951 | e = perf_mem_events__ptr(j); |
| 2952 | if (!e->record) |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2953 | continue; |
| 2954 | |
Leo Yan | eaf6aae | 2020-11-06 17:48:46 +0800 | [diff] [blame] | 2955 | if (!e->supported) { |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2956 | pr_err("failed: event '%s' not supported\n", |
Leo Yan | eaf6aae | 2020-11-06 17:48:46 +0800 | [diff] [blame] | 2957 | perf_mem_events__name(j)); |
Martin Kepplinger | c896f85 | 2017-09-13 21:14:19 +0200 | [diff] [blame] | 2958 | free(rec_argv); |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2959 | return -1; |
| 2960 | } |
| 2961 | |
| 2962 | rec_argv[i++] = "-e"; |
| 2963 | rec_argv[i++] = perf_mem_events__name(j); |
Zou Wei | 2cca512 | 2020-04-28 16:58:56 +0800 | [diff] [blame] | 2964 | } |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2965 | |
| 2966 | if (all_user) |
| 2967 | rec_argv[i++] = "--all-user"; |
| 2968 | |
| 2969 | if (all_kernel) |
| 2970 | rec_argv[i++] = "--all-kernel"; |
| 2971 | |
| 2972 | for (j = 0; j < argc; j++, i++) |
| 2973 | rec_argv[i] = argv[j]; |
| 2974 | |
| 2975 | if (verbose > 0) { |
| 2976 | pr_debug("calling: "); |
| 2977 | |
| 2978 | j = 0; |
| 2979 | |
| 2980 | while (rec_argv[j]) { |
| 2981 | pr_debug("%s ", rec_argv[j]); |
| 2982 | j++; |
| 2983 | } |
| 2984 | pr_debug("\n"); |
| 2985 | } |
| 2986 | |
Arnaldo Carvalho de Melo | b0ad8ea | 2017-03-27 11:47:20 -0300 | [diff] [blame] | 2987 | ret = cmd_record(i, rec_argv); |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2988 | free(rec_argv); |
| 2989 | return ret; |
| 2990 | } |
| 2991 | |
Arnaldo Carvalho de Melo | b0ad8ea | 2017-03-27 11:47:20 -0300 | [diff] [blame] | 2992 | int cmd_c2c(int argc, const char **argv) |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 2993 | { |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 2994 | argc = parse_options(argc, argv, c2c_options, c2c_usage, |
| 2995 | PARSE_OPT_STOP_AT_NON_OPTION); |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 2996 | |
| 2997 | if (!argc) |
| 2998 | usage_with_options(c2c_usage, c2c_options); |
| 2999 | |
| 3000 | if (!strncmp(argv[0], "rec", 3)) { |
| 3001 | return perf_c2c__record(argc, argv); |
Jiri Olsa | 903a6f1 | 2016-09-22 17:36:40 +0200 | [diff] [blame] | 3002 | } else if (!strncmp(argv[0], "rep", 3)) { |
| 3003 | return perf_c2c__report(argc, argv); |
Jiri Olsa | 39bcd4a | 2016-09-22 17:36:39 +0200 | [diff] [blame] | 3004 | } else { |
| 3005 | usage_with_options(c2c_usage, c2c_options); |
| 3006 | } |
| 3007 | |
Jiri Olsa | 7aef3bf | 2016-09-22 17:36:38 +0200 | [diff] [blame] | 3008 | return 0; |
| 3009 | } |