blob: 3523279af6afff7b9a804a8dcb68721a0218cbf2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03002#include <inttypes.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -03003#include <sys/types.h>
4#include <sys/stat.h>
5#include <unistd.h>
Stephane Eranian028f12e2013-01-24 16:10:38 +01006#include "builtin.h"
7#include "perf.h"
8
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06009#include <subcmd/parse-options.h>
Stephane Eranian028f12e2013-01-24 16:10:38 +010010#include "util/trace-event.h"
11#include "util/tool.h"
12#include "util/session.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020013#include "util/data.h"
Arnaldo Carvalho de Melod3300a32019-08-30 15:09:54 -030014#include "util/map_symbol.h"
Jiri Olsaacbe6132016-02-15 09:34:34 +010015#include "util/mem-events.h"
Jiri Olsace1e22b2016-02-15 09:34:35 +010016#include "util/debug.h"
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -030017#include "util/dso.h"
Arnaldo Carvalho de Melo1101f692019-01-27 13:42:37 +010018#include "util/map.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030019#include "util/symbol.h"
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053020#include <linux/err.h>
Stephane Eranian028f12e2013-01-24 16:10:38 +010021
Stephane Eranian67121f82014-12-17 16:23:55 +010022#define MEM_OPERATION_LOAD 0x1
23#define MEM_OPERATION_STORE 0x2
Stephane Eranian028f12e2013-01-24 16:10:38 +010024
Stephane Eranian028f12e2013-01-24 16:10:38 +010025struct perf_mem {
26 struct perf_tool tool;
27 char const *input_name;
Stephane Eranian028f12e2013-01-24 16:10:38 +010028 bool hide_unresolved;
29 bool dump_raw;
Yunlong Song62a1a632015-04-02 21:47:15 +080030 bool force;
Kan Liangc35aeb92017-08-29 13:11:10 -040031 bool phys_addr;
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -030032 int operation;
Stephane Eranian028f12e2013-01-24 16:10:38 +010033 const char *cpu_list;
34 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
35};
36
Jiri Olsace1e22b2016-02-15 09:34:35 +010037static int parse_record_events(const struct option *opt,
38 const char *str, int unset __maybe_unused)
39{
40 struct perf_mem *mem = *(struct perf_mem **)opt->value;
Jiri Olsace1e22b2016-02-15 09:34:35 +010041
Ian Rogersb027cc62020-05-07 15:06:04 -070042 if (!strcmp(str, "list")) {
43 perf_mem_events__list();
44 exit(0);
45 }
46 if (perf_mem_events__parse(str))
Jiri Olsace1e22b2016-02-15 09:34:35 +010047 exit(-1);
Jiri Olsace1e22b2016-02-15 09:34:35 +010048
Ian Rogersb027cc62020-05-07 15:06:04 -070049 mem->operation = 0;
50 return 0;
Jiri Olsace1e22b2016-02-15 09:34:35 +010051}
52
53static const char * const __usage[] = {
54 "perf mem record [<options>] [<command>]",
55 "perf mem record [<options>] -- <command> [<options>]",
56 NULL
57};
58
59static const char * const *record_mem_usage = __usage;
60
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -030061static int __cmd_record(int argc, const char **argv, struct perf_mem *mem)
Stephane Eranian028f12e2013-01-24 16:10:38 +010062{
63 int rec_argc, i = 0, j;
64 const char **rec_argv;
Stephane Eranian028f12e2013-01-24 16:10:38 +010065 int ret;
Jiri Olsaad165112016-03-24 13:52:16 +010066 bool all_user = false, all_kernel = false;
Jiri Olsace1e22b2016-02-15 09:34:35 +010067 struct option options[] = {
68 OPT_CALLBACK('e', "event", &mem, "event",
69 "event selector. use 'perf mem record -e list' to list available events",
70 parse_record_events),
Jiri Olsab0d745b2016-06-14 20:19:11 +020071 OPT_UINTEGER(0, "ldlat", &perf_mem_events__loads_ldlat, "mem-loads latency"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010072 OPT_INCR('v', "verbose", &verbose,
73 "be more verbose (show counter open errors, etc)"),
Jiri Olsa631ac412016-12-12 11:35:39 +010074 OPT_BOOLEAN('U', "all-user", &all_user, "collect only user level data"),
75 OPT_BOOLEAN('K', "all-kernel", &all_kernel, "collect only kernel level data"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010076 OPT_END()
77 };
78
79 argc = parse_options(argc, argv, options, record_mem_usage,
Andi Kleena7e9eab2018-04-06 13:38:09 -070080 PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +010081
Jiri Olsaad165112016-03-24 13:52:16 +010082 rec_argc = argc + 9; /* max number of arguments */
Stephane Eranian028f12e2013-01-24 16:10:38 +010083 rec_argv = calloc(rec_argc + 1, sizeof(char *));
84 if (!rec_argv)
85 return -1;
86
Stephane Eranian67121f82014-12-17 16:23:55 +010087 rec_argv[i++] = "record";
Stephane Eranian028f12e2013-01-24 16:10:38 +010088
Jiri Olsace1e22b2016-02-15 09:34:35 +010089 if (mem->operation & MEM_OPERATION_LOAD)
Jiri Olsaacbe6132016-02-15 09:34:34 +010090 perf_mem_events[PERF_MEM_EVENTS__LOAD].record = true;
Jiri Olsace1e22b2016-02-15 09:34:35 +010091
Jiri Olsa33da54f2016-08-11 10:50:57 +020092 if (mem->operation & MEM_OPERATION_STORE)
93 perf_mem_events[PERF_MEM_EVENTS__STORE].record = true;
94
Jiri Olsace1e22b2016-02-15 09:34:35 +010095 if (perf_mem_events[PERF_MEM_EVENTS__LOAD].record)
Stephane Eranian67121f82014-12-17 16:23:55 +010096 rec_argv[i++] = "-W";
Stephane Eranian028f12e2013-01-24 16:10:38 +010097
Stephane Eranian67121f82014-12-17 16:23:55 +010098 rec_argv[i++] = "-d";
99
Kan Liangc35aeb92017-08-29 13:11:10 -0400100 if (mem->phys_addr)
101 rec_argv[i++] = "--phys-data";
102
Jiri Olsaacbe6132016-02-15 09:34:34 +0100103 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
104 if (!perf_mem_events[j].record)
105 continue;
Stephane Eranian67121f82014-12-17 16:23:55 +0100106
Jiri Olsa54fbad52016-02-24 09:46:42 +0100107 if (!perf_mem_events[j].supported) {
108 pr_err("failed: event '%s' not supported\n",
Jiri Olsa2ba7ac52016-02-24 09:46:43 +0100109 perf_mem_events__name(j));
Martin Kepplingerc896f852017-09-13 21:14:19 +0200110 free(rec_argv);
Jiri Olsa54fbad52016-02-24 09:46:42 +0100111 return -1;
112 }
113
Stephane Eranian67121f82014-12-17 16:23:55 +0100114 rec_argv[i++] = "-e";
Jiri Olsa2ba7ac52016-02-24 09:46:43 +0100115 rec_argv[i++] = perf_mem_events__name(j);
Zou Wei8284bbe2020-04-28 17:18:43 +0800116 }
Stephane Eranian67121f82014-12-17 16:23:55 +0100117
Jiri Olsaad165112016-03-24 13:52:16 +0100118 if (all_user)
119 rec_argv[i++] = "--all-user";
120
121 if (all_kernel)
122 rec_argv[i++] = "--all-kernel";
123
Jiri Olsace1e22b2016-02-15 09:34:35 +0100124 for (j = 0; j < argc; j++, i++)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100125 rec_argv[i] = argv[j];
126
Jiri Olsace1e22b2016-02-15 09:34:35 +0100127 if (verbose > 0) {
128 pr_debug("calling: record ");
129
130 while (rec_argv[j]) {
131 pr_debug("%s ", rec_argv[j]);
132 j++;
133 }
134 pr_debug("\n");
135 }
136
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300137 ret = cmd_record(i, rec_argv);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100138 free(rec_argv);
139 return ret;
140}
141
142static int
143dump_raw_samples(struct perf_tool *tool,
144 union perf_event *event,
145 struct perf_sample *sample,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100146 struct machine *machine)
147{
148 struct perf_mem *mem = container_of(tool, struct perf_mem, tool);
149 struct addr_location al;
150 const char *fmt;
151
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -0300152 if (machine__resolve(machine, &al, sample) < 0) {
Stephane Eranian028f12e2013-01-24 16:10:38 +0100153 fprintf(stderr, "problem processing %d event, skipping it.\n",
154 event->header.type);
155 return -1;
156 }
157
158 if (al.filtered || (mem->hide_unresolved && al.sym == NULL))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300159 goto out_put;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100160
161 if (al.map != NULL)
162 al.map->dso->hit = 1;
163
Kan Liangc35aeb92017-08-29 13:11:10 -0400164 if (mem->phys_addr) {
165 if (symbol_conf.field_sep) {
166 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s0x%016"PRIx64
167 "%s%"PRIu64"%s0x%"PRIx64"%s%s:%s\n";
168 } else {
169 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
170 "%s0x%016"PRIx64"%s%5"PRIu64"%s0x%06"PRIx64
171 "%s%s:%s\n";
172 symbol_conf.field_sep = " ";
173 }
Stephane Eranian028f12e2013-01-24 16:10:38 +0100174
Kan Liangc35aeb92017-08-29 13:11:10 -0400175 printf(fmt,
176 sample->pid,
177 symbol_conf.field_sep,
178 sample->tid,
179 symbol_conf.field_sep,
180 sample->ip,
181 symbol_conf.field_sep,
182 sample->addr,
183 symbol_conf.field_sep,
184 sample->phys_addr,
185 symbol_conf.field_sep,
186 sample->weight,
187 symbol_conf.field_sep,
188 sample->data_src,
189 symbol_conf.field_sep,
190 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
191 al.sym ? al.sym->name : "???");
192 } else {
193 if (symbol_conf.field_sep) {
194 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s%"PRIu64
195 "%s0x%"PRIx64"%s%s:%s\n";
196 } else {
197 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
198 "%s%5"PRIu64"%s0x%06"PRIx64"%s%s:%s\n";
199 symbol_conf.field_sep = " ";
200 }
201
202 printf(fmt,
203 sample->pid,
204 symbol_conf.field_sep,
205 sample->tid,
206 symbol_conf.field_sep,
207 sample->ip,
208 symbol_conf.field_sep,
209 sample->addr,
210 symbol_conf.field_sep,
211 sample->weight,
212 symbol_conf.field_sep,
213 sample->data_src,
214 symbol_conf.field_sep,
215 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
216 al.sym ? al.sym->name : "???");
217 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300218out_put:
219 addr_location__put(&al);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100220 return 0;
221}
222
223static int process_sample_event(struct perf_tool *tool,
224 union perf_event *event,
225 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200226 struct evsel *evsel __maybe_unused,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100227 struct machine *machine)
228{
Arnaldo Carvalho de Melo8b640cc2013-12-19 17:00:45 -0300229 return dump_raw_samples(tool, event, sample, machine);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100230}
231
232static int report_raw_events(struct perf_mem *mem)
233{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100234 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100235 .path = input_name,
236 .mode = PERF_DATA_MODE_READ,
237 .force = mem->force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200238 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100239 int ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100240 struct perf_session *session = perf_session__new(&data, false,
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200241 &mem->tool);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100242
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530243 if (IS_ERR(session))
244 return PTR_ERR(session);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100245
246 if (mem->cpu_list) {
247 ret = perf_session__cpu_bitmap(session, mem->cpu_list,
248 mem->cpu_bitmap);
Taeung Song1df9fade2015-07-01 21:08:19 +0900249 if (ret < 0)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100250 goto out_delete;
251 }
252
Taeung Song1df9fade2015-07-01 21:08:19 +0900253 ret = symbol__init(&session->header.env);
254 if (ret < 0)
255 goto out_delete;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100256
Kan Liangc35aeb92017-08-29 13:11:10 -0400257 if (mem->phys_addr)
258 printf("# PID, TID, IP, ADDR, PHYS ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
259 else
260 printf("# PID, TID, IP, ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
Stephane Eranian028f12e2013-01-24 16:10:38 +0100261
Taeung Song1df9fade2015-07-01 21:08:19 +0900262 ret = perf_session__process_events(session);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100263
264out_delete:
265 perf_session__delete(session);
Taeung Song1df9fade2015-07-01 21:08:19 +0900266 return ret;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100267}
268
269static int report_events(int argc, const char **argv, struct perf_mem *mem)
270{
271 const char **rep_argv;
272 int ret, i = 0, j, rep_argc;
273
274 if (mem->dump_raw)
275 return report_raw_events(mem);
276
277 rep_argc = argc + 3;
278 rep_argv = calloc(rep_argc + 1, sizeof(char *));
279 if (!rep_argv)
280 return -1;
281
Stephane Eranian67121f82014-12-17 16:23:55 +0100282 rep_argv[i++] = "report";
283 rep_argv[i++] = "--mem-mode";
284 rep_argv[i++] = "-n"; /* display number of samples */
Stephane Eranian028f12e2013-01-24 16:10:38 +0100285
286 /*
287 * there is no weight (cost) associated with stores, so don't print
288 * the column
289 */
Kan Liangc35aeb92017-08-29 13:11:10 -0400290 if (!(mem->operation & MEM_OPERATION_LOAD)) {
291 if (mem->phys_addr)
292 rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
293 "dso_daddr,tlb,locked,phys_daddr";
294 else
295 rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
296 "dso_daddr,tlb,locked";
297 } else if (mem->phys_addr)
298 rep_argv[i++] = "--sort=local_weight,mem,sym,dso,symbol_daddr,"
299 "dso_daddr,snoop,tlb,locked,phys_daddr";
Stephane Eranian028f12e2013-01-24 16:10:38 +0100300
301 for (j = 1; j < argc; j++, i++)
302 rep_argv[i] = argv[j];
303
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300304 ret = cmd_report(i, rep_argv);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100305 free(rep_argv);
306 return ret;
307}
308
Stephane Eranian67121f82014-12-17 16:23:55 +0100309struct mem_mode {
310 const char *name;
311 int mode;
312};
313
314#define MEM_OPT(n, m) \
315 { .name = n, .mode = (m) }
316
317#define MEM_END { .name = NULL }
318
319static const struct mem_mode mem_modes[]={
320 MEM_OPT("load", MEM_OPERATION_LOAD),
321 MEM_OPT("store", MEM_OPERATION_STORE),
322 MEM_END
323};
324
325static int
326parse_mem_ops(const struct option *opt, const char *str, int unset)
327{
328 int *mode = (int *)opt->value;
329 const struct mem_mode *m;
330 char *s, *os = NULL, *p;
331 int ret = -1;
332
333 if (unset)
334 return 0;
335
336 /* str may be NULL in case no arg is passed to -t */
337 if (str) {
338 /* because str is read-only */
339 s = os = strdup(str);
340 if (!s)
341 return -1;
342
343 /* reset mode */
344 *mode = 0;
345
346 for (;;) {
347 p = strchr(s, ',');
348 if (p)
349 *p = '\0';
350
351 for (m = mem_modes; m->name; m++) {
352 if (!strcasecmp(s, m->name))
353 break;
354 }
355 if (!m->name) {
356 fprintf(stderr, "unknown sampling op %s,"
357 " check man page\n", s);
358 goto error;
359 }
360
361 *mode |= m->mode;
362
363 if (!p)
364 break;
365
366 s = p + 1;
367 }
368 }
369 ret = 0;
370
371 if (*mode == 0)
372 *mode = MEM_OPERATION_LOAD;
373error:
374 free(os);
375 return ret;
376}
377
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300378int cmd_mem(int argc, const char **argv)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100379{
380 struct stat st;
381 struct perf_mem mem = {
382 .tool = {
383 .sample = process_sample_event,
384 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200385 .mmap2 = perf_event__process_mmap2,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100386 .comm = perf_event__process_comm,
387 .lost = perf_event__process_lost,
388 .fork = perf_event__process_fork,
389 .build_id = perf_event__process_build_id,
Hari Bathinif3b36142017-03-08 02:11:43 +0530390 .namespaces = perf_event__process_namespaces,
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200391 .ordered_events = true,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100392 },
393 .input_name = "perf.data",
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300394 /*
395 * default to both load an store sampling
396 */
397 .operation = MEM_OPERATION_LOAD | MEM_OPERATION_STORE,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100398 };
399 const struct option mem_options[] = {
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300400 OPT_CALLBACK('t', "type", &mem.operation,
Stephane Eranian67121f82014-12-17 16:23:55 +0100401 "type", "memory operations(load,store) Default load,store",
402 parse_mem_ops),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100403 OPT_BOOLEAN('D', "dump-raw-samples", &mem.dump_raw,
404 "dump raw samples in ASCII"),
405 OPT_BOOLEAN('U', "hide-unresolved", &mem.hide_unresolved,
406 "Only display entries resolved to a symbol"),
407 OPT_STRING('i', "input", &input_name, "file",
408 "input file name"),
409 OPT_STRING('C', "cpu", &mem.cpu_list, "cpu",
410 "list of cpus to profile"),
Wang Nan8b8ca6e2015-03-20 02:57:52 +0000411 OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf.field_sep,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100412 "separator",
413 "separator for columns, no spaces will be added"
414 " between columns '.' is reserved."),
Yunlong Song62a1a632015-04-02 21:47:15 +0800415 OPT_BOOLEAN('f', "force", &mem.force, "don't complain, do it"),
Kan Liangc35aeb92017-08-29 13:11:10 -0400416 OPT_BOOLEAN('p', "phys-data", &mem.phys_addr, "Record/Report sample physical addresses"),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100417 OPT_END()
418 };
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400419 const char *const mem_subcommands[] = { "record", "report", NULL };
420 const char *mem_usage[] = {
421 NULL,
422 NULL
423 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100424
Jiri Olsa54fbad52016-02-24 09:46:42 +0100425 if (perf_mem_events__init()) {
426 pr_err("failed: memory events not supported\n");
427 return -1;
428 }
429
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400430 argc = parse_options_subcommand(argc, argv, mem_options, mem_subcommands,
Andi Kleena7e9eab2018-04-06 13:38:09 -0700431 mem_usage, PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100432
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300433 if (!argc || !(strncmp(argv[0], "rec", 3) || mem.operation))
Stephane Eranian028f12e2013-01-24 16:10:38 +0100434 usage_with_options(mem_usage, mem_options);
435
436 if (!mem.input_name || !strlen(mem.input_name)) {
437 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
438 mem.input_name = "-";
439 else
440 mem.input_name = "perf.data";
441 }
442
443 if (!strncmp(argv[0], "rec", 3))
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300444 return __cmd_record(argc, argv, &mem);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100445 else if (!strncmp(argv[0], "rep", 3))
446 return report_events(argc, argv, &mem);
447 else
448 usage_with_options(mem_usage, mem_options);
449
450 return 0;
451}