perf kvm: Move kvm-stat header file from conditional inclusion to common include...
[linux-2.6-block.git] / tools / perf / builtin-mem.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
fd20e811 2#include <inttypes.h>
7a8ef4c4
ACM
3#include <sys/types.h>
4#include <sys/stat.h>
5#include <unistd.h>
028f12ee
SE
6#include "builtin.h"
7#include "perf.h"
8
4b6ab94e 9#include <subcmd/parse-options.h>
028f12ee
SE
10#include "util/trace-event.h"
11#include "util/tool.h"
12#include "util/session.h"
f5fc1412 13#include "util/data.h"
d3300a3c 14#include "util/map_symbol.h"
acbe613e 15#include "util/mem-events.h"
ce1e22b0 16#include "util/debug.h"
4a3cec84 17#include "util/dso.h"
1101f69a 18#include "util/map.h"
e7ff8920 19#include "util/symbol.h"
028f12ee 20
67121f85
SE
21#define MEM_OPERATION_LOAD 0x1
22#define MEM_OPERATION_STORE 0x2
028f12ee 23
028f12ee
SE
24struct perf_mem {
25 struct perf_tool tool;
26 char const *input_name;
028f12ee
SE
27 bool hide_unresolved;
28 bool dump_raw;
62a1a63a 29 bool force;
c35aeb9d 30 bool phys_addr;
66024122 31 int operation;
028f12ee
SE
32 const char *cpu_list;
33 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
34};
35
ce1e22b0
JO
36static int parse_record_events(const struct option *opt,
37 const char *str, int unset __maybe_unused)
38{
39 struct perf_mem *mem = *(struct perf_mem **)opt->value;
40 int j;
41
42 if (strcmp(str, "list")) {
43 if (!perf_mem_events__parse(str)) {
44 mem->operation = 0;
45 return 0;
46 }
47 exit(-1);
48 }
49
50 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
51 struct perf_mem_event *e = &perf_mem_events[j];
52
54fbad54
JO
53 fprintf(stderr, "%-13s%-*s%s\n",
54 e->tag,
bb963e16
NK
55 verbose > 0 ? 25 : 0,
56 verbose > 0 ? perf_mem_events__name(j) : "",
54fbad54 57 e->supported ? ": available" : "");
ce1e22b0
JO
58 }
59 exit(0);
60}
61
62static const char * const __usage[] = {
63 "perf mem record [<options>] [<command>]",
64 "perf mem record [<options>] -- <command> [<options>]",
65 NULL
66};
67
68static const char * const *record_mem_usage = __usage;
69
66024122 70static int __cmd_record(int argc, const char **argv, struct perf_mem *mem)
028f12ee
SE
71{
72 int rec_argc, i = 0, j;
73 const char **rec_argv;
028f12ee 74 int ret;
ad16511b 75 bool all_user = false, all_kernel = false;
ce1e22b0
JO
76 struct option options[] = {
77 OPT_CALLBACK('e', "event", &mem, "event",
78 "event selector. use 'perf mem record -e list' to list available events",
79 parse_record_events),
b0d745b3 80 OPT_UINTEGER(0, "ldlat", &perf_mem_events__loads_ldlat, "mem-loads latency"),
ce1e22b0
JO
81 OPT_INCR('v', "verbose", &verbose,
82 "be more verbose (show counter open errors, etc)"),
631ac41b
JO
83 OPT_BOOLEAN('U', "all-user", &all_user, "collect only user level data"),
84 OPT_BOOLEAN('K', "all-kernel", &all_kernel, "collect only kernel level data"),
ce1e22b0
JO
85 OPT_END()
86 };
87
88 argc = parse_options(argc, argv, options, record_mem_usage,
a7e9eab3 89 PARSE_OPT_KEEP_UNKNOWN);
028f12ee 90
ad16511b 91 rec_argc = argc + 9; /* max number of arguments */
028f12ee
SE
92 rec_argv = calloc(rec_argc + 1, sizeof(char *));
93 if (!rec_argv)
94 return -1;
95
67121f85 96 rec_argv[i++] = "record";
028f12ee 97
ce1e22b0 98 if (mem->operation & MEM_OPERATION_LOAD)
acbe613e 99 perf_mem_events[PERF_MEM_EVENTS__LOAD].record = true;
ce1e22b0 100
33da54fa
JO
101 if (mem->operation & MEM_OPERATION_STORE)
102 perf_mem_events[PERF_MEM_EVENTS__STORE].record = true;
103
ce1e22b0 104 if (perf_mem_events[PERF_MEM_EVENTS__LOAD].record)
67121f85
SE
105 rec_argv[i++] = "-W";
106
107 rec_argv[i++] = "-d";
108
c35aeb9d
KL
109 if (mem->phys_addr)
110 rec_argv[i++] = "--phys-data";
111
acbe613e
JO
112 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
113 if (!perf_mem_events[j].record)
114 continue;
67121f85 115
54fbad54
JO
116 if (!perf_mem_events[j].supported) {
117 pr_err("failed: event '%s' not supported\n",
2ba7ac58 118 perf_mem_events__name(j));
c896f85a 119 free(rec_argv);
54fbad54
JO
120 return -1;
121 }
122
67121f85 123 rec_argv[i++] = "-e";
2ba7ac58 124 rec_argv[i++] = perf_mem_events__name(j);
acbe613e 125 };
028f12ee 126
ad16511b
JO
127 if (all_user)
128 rec_argv[i++] = "--all-user";
129
130 if (all_kernel)
131 rec_argv[i++] = "--all-kernel";
132
ce1e22b0 133 for (j = 0; j < argc; j++, i++)
028f12ee
SE
134 rec_argv[i] = argv[j];
135
ce1e22b0
JO
136 if (verbose > 0) {
137 pr_debug("calling: record ");
138
139 while (rec_argv[j]) {
140 pr_debug("%s ", rec_argv[j]);
141 j++;
142 }
143 pr_debug("\n");
144 }
145
b0ad8ea6 146 ret = cmd_record(i, rec_argv);
028f12ee
SE
147 free(rec_argv);
148 return ret;
149}
150
151static int
152dump_raw_samples(struct perf_tool *tool,
153 union perf_event *event,
154 struct perf_sample *sample,
028f12ee
SE
155 struct machine *machine)
156{
157 struct perf_mem *mem = container_of(tool, struct perf_mem, tool);
158 struct addr_location al;
159 const char *fmt;
160
bb3eb566 161 if (machine__resolve(machine, &al, sample) < 0) {
028f12ee
SE
162 fprintf(stderr, "problem processing %d event, skipping it.\n",
163 event->header.type);
164 return -1;
165 }
166
167 if (al.filtered || (mem->hide_unresolved && al.sym == NULL))
b91fc39f 168 goto out_put;
028f12ee
SE
169
170 if (al.map != NULL)
171 al.map->dso->hit = 1;
172
c35aeb9d
KL
173 if (mem->phys_addr) {
174 if (symbol_conf.field_sep) {
175 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s0x%016"PRIx64
176 "%s%"PRIu64"%s0x%"PRIx64"%s%s:%s\n";
177 } else {
178 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
179 "%s0x%016"PRIx64"%s%5"PRIu64"%s0x%06"PRIx64
180 "%s%s:%s\n";
181 symbol_conf.field_sep = " ";
182 }
183
184 printf(fmt,
185 sample->pid,
186 symbol_conf.field_sep,
187 sample->tid,
188 symbol_conf.field_sep,
189 sample->ip,
190 symbol_conf.field_sep,
191 sample->addr,
192 symbol_conf.field_sep,
193 sample->phys_addr,
194 symbol_conf.field_sep,
195 sample->weight,
196 symbol_conf.field_sep,
197 sample->data_src,
198 symbol_conf.field_sep,
199 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
200 al.sym ? al.sym->name : "???");
028f12ee 201 } else {
c35aeb9d
KL
202 if (symbol_conf.field_sep) {
203 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s%"PRIu64
204 "%s0x%"PRIx64"%s%s:%s\n";
205 } else {
206 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
207 "%s%5"PRIu64"%s0x%06"PRIx64"%s%s:%s\n";
208 symbol_conf.field_sep = " ";
209 }
028f12ee 210
c35aeb9d
KL
211 printf(fmt,
212 sample->pid,
213 symbol_conf.field_sep,
214 sample->tid,
215 symbol_conf.field_sep,
216 sample->ip,
217 symbol_conf.field_sep,
218 sample->addr,
219 symbol_conf.field_sep,
220 sample->weight,
221 symbol_conf.field_sep,
222 sample->data_src,
223 symbol_conf.field_sep,
224 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
225 al.sym ? al.sym->name : "???");
226 }
b91fc39f
ACM
227out_put:
228 addr_location__put(&al);
028f12ee
SE
229 return 0;
230}
231
232static int process_sample_event(struct perf_tool *tool,
233 union perf_event *event,
234 struct perf_sample *sample,
32dcd021 235 struct evsel *evsel __maybe_unused,
028f12ee
SE
236 struct machine *machine)
237{
8b640cc4 238 return dump_raw_samples(tool, event, sample, machine);
028f12ee
SE
239}
240
241static int report_raw_events(struct perf_mem *mem)
242{
8ceb41d7 243 struct perf_data data = {
2d4f2799
JO
244 .path = input_name,
245 .mode = PERF_DATA_MODE_READ,
246 .force = mem->force,
f5fc1412 247 };
028f12ee 248 int ret;
8ceb41d7 249 struct perf_session *session = perf_session__new(&data, false,
f5fc1412 250 &mem->tool);
028f12ee
SE
251
252 if (session == NULL)
52e02834 253 return -1;
028f12ee
SE
254
255 if (mem->cpu_list) {
256 ret = perf_session__cpu_bitmap(session, mem->cpu_list,
257 mem->cpu_bitmap);
1df9fade 258 if (ret < 0)
028f12ee
SE
259 goto out_delete;
260 }
261
1df9fade
TS
262 ret = symbol__init(&session->header.env);
263 if (ret < 0)
264 goto out_delete;
028f12ee 265
c35aeb9d
KL
266 if (mem->phys_addr)
267 printf("# PID, TID, IP, ADDR, PHYS ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
268 else
269 printf("# PID, TID, IP, ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
028f12ee 270
1df9fade 271 ret = perf_session__process_events(session);
028f12ee
SE
272
273out_delete:
274 perf_session__delete(session);
1df9fade 275 return ret;
028f12ee
SE
276}
277
278static int report_events(int argc, const char **argv, struct perf_mem *mem)
279{
280 const char **rep_argv;
281 int ret, i = 0, j, rep_argc;
282
283 if (mem->dump_raw)
284 return report_raw_events(mem);
285
286 rep_argc = argc + 3;
287 rep_argv = calloc(rep_argc + 1, sizeof(char *));
288 if (!rep_argv)
289 return -1;
290
67121f85
SE
291 rep_argv[i++] = "report";
292 rep_argv[i++] = "--mem-mode";
293 rep_argv[i++] = "-n"; /* display number of samples */
028f12ee
SE
294
295 /*
296 * there is no weight (cost) associated with stores, so don't print
297 * the column
298 */
c35aeb9d
KL
299 if (!(mem->operation & MEM_OPERATION_LOAD)) {
300 if (mem->phys_addr)
301 rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
302 "dso_daddr,tlb,locked,phys_daddr";
303 else
304 rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
305 "dso_daddr,tlb,locked";
306 } else if (mem->phys_addr)
307 rep_argv[i++] = "--sort=local_weight,mem,sym,dso,symbol_daddr,"
308 "dso_daddr,snoop,tlb,locked,phys_daddr";
028f12ee
SE
309
310 for (j = 1; j < argc; j++, i++)
311 rep_argv[i] = argv[j];
312
b0ad8ea6 313 ret = cmd_report(i, rep_argv);
028f12ee
SE
314 free(rep_argv);
315 return ret;
316}
317
67121f85
SE
318struct mem_mode {
319 const char *name;
320 int mode;
321};
322
323#define MEM_OPT(n, m) \
324 { .name = n, .mode = (m) }
325
326#define MEM_END { .name = NULL }
327
328static const struct mem_mode mem_modes[]={
329 MEM_OPT("load", MEM_OPERATION_LOAD),
330 MEM_OPT("store", MEM_OPERATION_STORE),
331 MEM_END
332};
333
334static int
335parse_mem_ops(const struct option *opt, const char *str, int unset)
336{
337 int *mode = (int *)opt->value;
338 const struct mem_mode *m;
339 char *s, *os = NULL, *p;
340 int ret = -1;
341
342 if (unset)
343 return 0;
344
345 /* str may be NULL in case no arg is passed to -t */
346 if (str) {
347 /* because str is read-only */
348 s = os = strdup(str);
349 if (!s)
350 return -1;
351
352 /* reset mode */
353 *mode = 0;
354
355 for (;;) {
356 p = strchr(s, ',');
357 if (p)
358 *p = '\0';
359
360 for (m = mem_modes; m->name; m++) {
361 if (!strcasecmp(s, m->name))
362 break;
363 }
364 if (!m->name) {
365 fprintf(stderr, "unknown sampling op %s,"
366 " check man page\n", s);
367 goto error;
368 }
369
370 *mode |= m->mode;
371
372 if (!p)
373 break;
374
375 s = p + 1;
376 }
377 }
378 ret = 0;
379
380 if (*mode == 0)
381 *mode = MEM_OPERATION_LOAD;
382error:
383 free(os);
384 return ret;
385}
386
b0ad8ea6 387int cmd_mem(int argc, const char **argv)
028f12ee
SE
388{
389 struct stat st;
390 struct perf_mem mem = {
391 .tool = {
392 .sample = process_sample_event,
393 .mmap = perf_event__process_mmap,
5c5e854b 394 .mmap2 = perf_event__process_mmap2,
028f12ee
SE
395 .comm = perf_event__process_comm,
396 .lost = perf_event__process_lost,
397 .fork = perf_event__process_fork,
398 .build_id = perf_event__process_build_id,
f3b3614a 399 .namespaces = perf_event__process_namespaces,
0a8cb85c 400 .ordered_events = true,
028f12ee
SE
401 },
402 .input_name = "perf.data",
66024122
ACM
403 /*
404 * default to both load an store sampling
405 */
406 .operation = MEM_OPERATION_LOAD | MEM_OPERATION_STORE,
028f12ee
SE
407 };
408 const struct option mem_options[] = {
66024122 409 OPT_CALLBACK('t', "type", &mem.operation,
67121f85
SE
410 "type", "memory operations(load,store) Default load,store",
411 parse_mem_ops),
028f12ee
SE
412 OPT_BOOLEAN('D', "dump-raw-samples", &mem.dump_raw,
413 "dump raw samples in ASCII"),
414 OPT_BOOLEAN('U', "hide-unresolved", &mem.hide_unresolved,
415 "Only display entries resolved to a symbol"),
416 OPT_STRING('i', "input", &input_name, "file",
417 "input file name"),
418 OPT_STRING('C', "cpu", &mem.cpu_list, "cpu",
419 "list of cpus to profile"),
8b8ca6e1 420 OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf.field_sep,
028f12ee
SE
421 "separator",
422 "separator for columns, no spaces will be added"
423 " between columns '.' is reserved."),
62a1a63a 424 OPT_BOOLEAN('f', "force", &mem.force, "don't complain, do it"),
c35aeb9d 425 OPT_BOOLEAN('p', "phys-data", &mem.phys_addr, "Record/Report sample physical addresses"),
028f12ee
SE
426 OPT_END()
427 };
8d2a2a1d
RR
428 const char *const mem_subcommands[] = { "record", "report", NULL };
429 const char *mem_usage[] = {
430 NULL,
431 NULL
432 };
433
54fbad54
JO
434 if (perf_mem_events__init()) {
435 pr_err("failed: memory events not supported\n");
436 return -1;
437 }
438
8d2a2a1d 439 argc = parse_options_subcommand(argc, argv, mem_options, mem_subcommands,
a7e9eab3 440 mem_usage, PARSE_OPT_KEEP_UNKNOWN);
028f12ee 441
66024122 442 if (!argc || !(strncmp(argv[0], "rec", 3) || mem.operation))
028f12ee
SE
443 usage_with_options(mem_usage, mem_options);
444
445 if (!mem.input_name || !strlen(mem.input_name)) {
446 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
447 mem.input_name = "-";
448 else
449 mem.input_name = "perf.data";
450 }
451
452 if (!strncmp(argv[0], "rec", 3))
66024122 453 return __cmd_record(argc, argv, &mem);
028f12ee
SE
454 else if (!strncmp(argv[0], "rep", 3))
455 return report_events(argc, argv, &mem);
456 else
457 usage_with_options(mem_usage, mem_options);
458
459 return 0;
460}