blob: a13f5817d6fca4abac7cdfa80f5b90b1a8c3a097 [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;
41 int j;
42
43 if (strcmp(str, "list")) {
44 if (!perf_mem_events__parse(str)) {
45 mem->operation = 0;
46 return 0;
47 }
48 exit(-1);
49 }
50
51 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
52 struct perf_mem_event *e = &perf_mem_events[j];
53
Jiri Olsa54fbad52016-02-24 09:46:42 +010054 fprintf(stderr, "%-13s%-*s%s\n",
55 e->tag,
Namhyung Kimbb963e12017-02-17 17:17:38 +090056 verbose > 0 ? 25 : 0,
57 verbose > 0 ? perf_mem_events__name(j) : "",
Jiri Olsa54fbad52016-02-24 09:46:42 +010058 e->supported ? ": available" : "");
Jiri Olsace1e22b2016-02-15 09:34:35 +010059 }
60 exit(0);
61}
62
63static const char * const __usage[] = {
64 "perf mem record [<options>] [<command>]",
65 "perf mem record [<options>] -- <command> [<options>]",
66 NULL
67};
68
69static const char * const *record_mem_usage = __usage;
70
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -030071static int __cmd_record(int argc, const char **argv, struct perf_mem *mem)
Stephane Eranian028f12e2013-01-24 16:10:38 +010072{
73 int rec_argc, i = 0, j;
74 const char **rec_argv;
Stephane Eranian028f12e2013-01-24 16:10:38 +010075 int ret;
Jiri Olsaad165112016-03-24 13:52:16 +010076 bool all_user = false, all_kernel = false;
Jiri Olsace1e22b2016-02-15 09:34:35 +010077 struct option options[] = {
78 OPT_CALLBACK('e', "event", &mem, "event",
79 "event selector. use 'perf mem record -e list' to list available events",
80 parse_record_events),
Jiri Olsab0d745b2016-06-14 20:19:11 +020081 OPT_UINTEGER(0, "ldlat", &perf_mem_events__loads_ldlat, "mem-loads latency"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010082 OPT_INCR('v', "verbose", &verbose,
83 "be more verbose (show counter open errors, etc)"),
Jiri Olsa631ac412016-12-12 11:35:39 +010084 OPT_BOOLEAN('U', "all-user", &all_user, "collect only user level data"),
85 OPT_BOOLEAN('K', "all-kernel", &all_kernel, "collect only kernel level data"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010086 OPT_END()
87 };
88
89 argc = parse_options(argc, argv, options, record_mem_usage,
Andi Kleena7e9eab2018-04-06 13:38:09 -070090 PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +010091
Jiri Olsaad165112016-03-24 13:52:16 +010092 rec_argc = argc + 9; /* max number of arguments */
Stephane Eranian028f12e2013-01-24 16:10:38 +010093 rec_argv = calloc(rec_argc + 1, sizeof(char *));
94 if (!rec_argv)
95 return -1;
96
Stephane Eranian67121f82014-12-17 16:23:55 +010097 rec_argv[i++] = "record";
Stephane Eranian028f12e2013-01-24 16:10:38 +010098
Jiri Olsace1e22b2016-02-15 09:34:35 +010099 if (mem->operation & MEM_OPERATION_LOAD)
Jiri Olsaacbe6132016-02-15 09:34:34 +0100100 perf_mem_events[PERF_MEM_EVENTS__LOAD].record = true;
Jiri Olsace1e22b2016-02-15 09:34:35 +0100101
Jiri Olsa33da54f2016-08-11 10:50:57 +0200102 if (mem->operation & MEM_OPERATION_STORE)
103 perf_mem_events[PERF_MEM_EVENTS__STORE].record = true;
104
Jiri Olsace1e22b2016-02-15 09:34:35 +0100105 if (perf_mem_events[PERF_MEM_EVENTS__LOAD].record)
Stephane Eranian67121f82014-12-17 16:23:55 +0100106 rec_argv[i++] = "-W";
Stephane Eranian028f12e2013-01-24 16:10:38 +0100107
Stephane Eranian67121f82014-12-17 16:23:55 +0100108 rec_argv[i++] = "-d";
109
Kan Liangc35aeb92017-08-29 13:11:10 -0400110 if (mem->phys_addr)
111 rec_argv[i++] = "--phys-data";
112
Jiri Olsaacbe6132016-02-15 09:34:34 +0100113 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
114 if (!perf_mem_events[j].record)
115 continue;
Stephane Eranian67121f82014-12-17 16:23:55 +0100116
Jiri Olsa54fbad52016-02-24 09:46:42 +0100117 if (!perf_mem_events[j].supported) {
118 pr_err("failed: event '%s' not supported\n",
Jiri Olsa2ba7ac52016-02-24 09:46:43 +0100119 perf_mem_events__name(j));
Martin Kepplingerc896f852017-09-13 21:14:19 +0200120 free(rec_argv);
Jiri Olsa54fbad52016-02-24 09:46:42 +0100121 return -1;
122 }
123
Stephane Eranian67121f82014-12-17 16:23:55 +0100124 rec_argv[i++] = "-e";
Jiri Olsa2ba7ac52016-02-24 09:46:43 +0100125 rec_argv[i++] = perf_mem_events__name(j);
Jiri Olsaacbe6132016-02-15 09:34:34 +0100126 };
Stephane Eranian67121f82014-12-17 16:23:55 +0100127
Jiri Olsaad165112016-03-24 13:52:16 +0100128 if (all_user)
129 rec_argv[i++] = "--all-user";
130
131 if (all_kernel)
132 rec_argv[i++] = "--all-kernel";
133
Jiri Olsace1e22b2016-02-15 09:34:35 +0100134 for (j = 0; j < argc; j++, i++)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100135 rec_argv[i] = argv[j];
136
Jiri Olsace1e22b2016-02-15 09:34:35 +0100137 if (verbose > 0) {
138 pr_debug("calling: record ");
139
140 while (rec_argv[j]) {
141 pr_debug("%s ", rec_argv[j]);
142 j++;
143 }
144 pr_debug("\n");
145 }
146
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300147 ret = cmd_record(i, rec_argv);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100148 free(rec_argv);
149 return ret;
150}
151
152static int
153dump_raw_samples(struct perf_tool *tool,
154 union perf_event *event,
155 struct perf_sample *sample,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100156 struct machine *machine)
157{
158 struct perf_mem *mem = container_of(tool, struct perf_mem, tool);
159 struct addr_location al;
160 const char *fmt;
161
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -0300162 if (machine__resolve(machine, &al, sample) < 0) {
Stephane Eranian028f12e2013-01-24 16:10:38 +0100163 fprintf(stderr, "problem processing %d event, skipping it.\n",
164 event->header.type);
165 return -1;
166 }
167
168 if (al.filtered || (mem->hide_unresolved && al.sym == NULL))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300169 goto out_put;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100170
171 if (al.map != NULL)
172 al.map->dso->hit = 1;
173
Kan Liangc35aeb92017-08-29 13:11:10 -0400174 if (mem->phys_addr) {
175 if (symbol_conf.field_sep) {
176 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s0x%016"PRIx64
177 "%s%"PRIu64"%s0x%"PRIx64"%s%s:%s\n";
178 } else {
179 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
180 "%s0x%016"PRIx64"%s%5"PRIu64"%s0x%06"PRIx64
181 "%s%s:%s\n";
182 symbol_conf.field_sep = " ";
183 }
Stephane Eranian028f12e2013-01-24 16:10:38 +0100184
Kan Liangc35aeb92017-08-29 13:11:10 -0400185 printf(fmt,
186 sample->pid,
187 symbol_conf.field_sep,
188 sample->tid,
189 symbol_conf.field_sep,
190 sample->ip,
191 symbol_conf.field_sep,
192 sample->addr,
193 symbol_conf.field_sep,
194 sample->phys_addr,
195 symbol_conf.field_sep,
196 sample->weight,
197 symbol_conf.field_sep,
198 sample->data_src,
199 symbol_conf.field_sep,
200 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
201 al.sym ? al.sym->name : "???");
202 } else {
203 if (symbol_conf.field_sep) {
204 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s%"PRIu64
205 "%s0x%"PRIx64"%s%s:%s\n";
206 } else {
207 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
208 "%s%5"PRIu64"%s0x%06"PRIx64"%s%s:%s\n";
209 symbol_conf.field_sep = " ";
210 }
211
212 printf(fmt,
213 sample->pid,
214 symbol_conf.field_sep,
215 sample->tid,
216 symbol_conf.field_sep,
217 sample->ip,
218 symbol_conf.field_sep,
219 sample->addr,
220 symbol_conf.field_sep,
221 sample->weight,
222 symbol_conf.field_sep,
223 sample->data_src,
224 symbol_conf.field_sep,
225 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
226 al.sym ? al.sym->name : "???");
227 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300228out_put:
229 addr_location__put(&al);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100230 return 0;
231}
232
233static int process_sample_event(struct perf_tool *tool,
234 union perf_event *event,
235 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200236 struct evsel *evsel __maybe_unused,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100237 struct machine *machine)
238{
Arnaldo Carvalho de Melo8b640cc2013-12-19 17:00:45 -0300239 return dump_raw_samples(tool, event, sample, machine);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100240}
241
242static int report_raw_events(struct perf_mem *mem)
243{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100244 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100245 .path = input_name,
246 .mode = PERF_DATA_MODE_READ,
247 .force = mem->force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200248 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100249 int ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100250 struct perf_session *session = perf_session__new(&data, false,
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200251 &mem->tool);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100252
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530253 if (IS_ERR(session))
254 return PTR_ERR(session);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100255
256 if (mem->cpu_list) {
257 ret = perf_session__cpu_bitmap(session, mem->cpu_list,
258 mem->cpu_bitmap);
Taeung Song1df9fade2015-07-01 21:08:19 +0900259 if (ret < 0)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100260 goto out_delete;
261 }
262
Taeung Song1df9fade2015-07-01 21:08:19 +0900263 ret = symbol__init(&session->header.env);
264 if (ret < 0)
265 goto out_delete;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100266
Kan Liangc35aeb92017-08-29 13:11:10 -0400267 if (mem->phys_addr)
268 printf("# PID, TID, IP, ADDR, PHYS ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
269 else
270 printf("# PID, TID, IP, ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
Stephane Eranian028f12e2013-01-24 16:10:38 +0100271
Taeung Song1df9fade2015-07-01 21:08:19 +0900272 ret = perf_session__process_events(session);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100273
274out_delete:
275 perf_session__delete(session);
Taeung Song1df9fade2015-07-01 21:08:19 +0900276 return ret;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100277}
278
279static int report_events(int argc, const char **argv, struct perf_mem *mem)
280{
281 const char **rep_argv;
282 int ret, i = 0, j, rep_argc;
283
284 if (mem->dump_raw)
285 return report_raw_events(mem);
286
287 rep_argc = argc + 3;
288 rep_argv = calloc(rep_argc + 1, sizeof(char *));
289 if (!rep_argv)
290 return -1;
291
Stephane Eranian67121f82014-12-17 16:23:55 +0100292 rep_argv[i++] = "report";
293 rep_argv[i++] = "--mem-mode";
294 rep_argv[i++] = "-n"; /* display number of samples */
Stephane Eranian028f12e2013-01-24 16:10:38 +0100295
296 /*
297 * there is no weight (cost) associated with stores, so don't print
298 * the column
299 */
Kan Liangc35aeb92017-08-29 13:11:10 -0400300 if (!(mem->operation & MEM_OPERATION_LOAD)) {
301 if (mem->phys_addr)
302 rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
303 "dso_daddr,tlb,locked,phys_daddr";
304 else
305 rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
306 "dso_daddr,tlb,locked";
307 } else if (mem->phys_addr)
308 rep_argv[i++] = "--sort=local_weight,mem,sym,dso,symbol_daddr,"
309 "dso_daddr,snoop,tlb,locked,phys_daddr";
Stephane Eranian028f12e2013-01-24 16:10:38 +0100310
311 for (j = 1; j < argc; j++, i++)
312 rep_argv[i] = argv[j];
313
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300314 ret = cmd_report(i, rep_argv);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100315 free(rep_argv);
316 return ret;
317}
318
Stephane Eranian67121f82014-12-17 16:23:55 +0100319struct mem_mode {
320 const char *name;
321 int mode;
322};
323
324#define MEM_OPT(n, m) \
325 { .name = n, .mode = (m) }
326
327#define MEM_END { .name = NULL }
328
329static const struct mem_mode mem_modes[]={
330 MEM_OPT("load", MEM_OPERATION_LOAD),
331 MEM_OPT("store", MEM_OPERATION_STORE),
332 MEM_END
333};
334
335static int
336parse_mem_ops(const struct option *opt, const char *str, int unset)
337{
338 int *mode = (int *)opt->value;
339 const struct mem_mode *m;
340 char *s, *os = NULL, *p;
341 int ret = -1;
342
343 if (unset)
344 return 0;
345
346 /* str may be NULL in case no arg is passed to -t */
347 if (str) {
348 /* because str is read-only */
349 s = os = strdup(str);
350 if (!s)
351 return -1;
352
353 /* reset mode */
354 *mode = 0;
355
356 for (;;) {
357 p = strchr(s, ',');
358 if (p)
359 *p = '\0';
360
361 for (m = mem_modes; m->name; m++) {
362 if (!strcasecmp(s, m->name))
363 break;
364 }
365 if (!m->name) {
366 fprintf(stderr, "unknown sampling op %s,"
367 " check man page\n", s);
368 goto error;
369 }
370
371 *mode |= m->mode;
372
373 if (!p)
374 break;
375
376 s = p + 1;
377 }
378 }
379 ret = 0;
380
381 if (*mode == 0)
382 *mode = MEM_OPERATION_LOAD;
383error:
384 free(os);
385 return ret;
386}
387
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300388int cmd_mem(int argc, const char **argv)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100389{
390 struct stat st;
391 struct perf_mem mem = {
392 .tool = {
393 .sample = process_sample_event,
394 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200395 .mmap2 = perf_event__process_mmap2,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100396 .comm = perf_event__process_comm,
397 .lost = perf_event__process_lost,
398 .fork = perf_event__process_fork,
399 .build_id = perf_event__process_build_id,
Hari Bathinif3b36142017-03-08 02:11:43 +0530400 .namespaces = perf_event__process_namespaces,
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200401 .ordered_events = true,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100402 },
403 .input_name = "perf.data",
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300404 /*
405 * default to both load an store sampling
406 */
407 .operation = MEM_OPERATION_LOAD | MEM_OPERATION_STORE,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100408 };
409 const struct option mem_options[] = {
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300410 OPT_CALLBACK('t', "type", &mem.operation,
Stephane Eranian67121f82014-12-17 16:23:55 +0100411 "type", "memory operations(load,store) Default load,store",
412 parse_mem_ops),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100413 OPT_BOOLEAN('D', "dump-raw-samples", &mem.dump_raw,
414 "dump raw samples in ASCII"),
415 OPT_BOOLEAN('U', "hide-unresolved", &mem.hide_unresolved,
416 "Only display entries resolved to a symbol"),
417 OPT_STRING('i', "input", &input_name, "file",
418 "input file name"),
419 OPT_STRING('C', "cpu", &mem.cpu_list, "cpu",
420 "list of cpus to profile"),
Wang Nan8b8ca6e2015-03-20 02:57:52 +0000421 OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf.field_sep,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100422 "separator",
423 "separator for columns, no spaces will be added"
424 " between columns '.' is reserved."),
Yunlong Song62a1a632015-04-02 21:47:15 +0800425 OPT_BOOLEAN('f', "force", &mem.force, "don't complain, do it"),
Kan Liangc35aeb92017-08-29 13:11:10 -0400426 OPT_BOOLEAN('p', "phys-data", &mem.phys_addr, "Record/Report sample physical addresses"),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100427 OPT_END()
428 };
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400429 const char *const mem_subcommands[] = { "record", "report", NULL };
430 const char *mem_usage[] = {
431 NULL,
432 NULL
433 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100434
Jiri Olsa54fbad52016-02-24 09:46:42 +0100435 if (perf_mem_events__init()) {
436 pr_err("failed: memory events not supported\n");
437 return -1;
438 }
439
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400440 argc = parse_options_subcommand(argc, argv, mem_options, mem_subcommands,
Andi Kleena7e9eab2018-04-06 13:38:09 -0700441 mem_usage, PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100442
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300443 if (!argc || !(strncmp(argv[0], "rec", 3) || mem.operation))
Stephane Eranian028f12e2013-01-24 16:10:38 +0100444 usage_with_options(mem_usage, mem_options);
445
446 if (!mem.input_name || !strlen(mem.input_name)) {
447 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
448 mem.input_name = "-";
449 else
450 mem.input_name = "perf.data";
451 }
452
453 if (!strncmp(argv[0], "rec", 3))
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300454 return __cmd_record(argc, argv, &mem);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100455 else if (!strncmp(argv[0], "rep", 3))
456 return report_events(argc, argv, &mem);
457 else
458 usage_with_options(mem_usage, mem_options);
459
460 return 0;
461}