blob: 57393e94d1561f8e9a7611f787f30147f25ca6c8 [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"
Jiri Olsaacbe6132016-02-15 09:34:34 +010014#include "util/mem-events.h"
Jiri Olsace1e22b2016-02-15 09:34:35 +010015#include "util/debug.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030016#include "util/symbol.h"
Stephane Eranian028f12e2013-01-24 16:10:38 +010017
Stephane Eranian67121f82014-12-17 16:23:55 +010018#define MEM_OPERATION_LOAD 0x1
19#define MEM_OPERATION_STORE 0x2
Stephane Eranian028f12e2013-01-24 16:10:38 +010020
Stephane Eranian028f12e2013-01-24 16:10:38 +010021struct perf_mem {
22 struct perf_tool tool;
23 char const *input_name;
Stephane Eranian028f12e2013-01-24 16:10:38 +010024 bool hide_unresolved;
25 bool dump_raw;
Yunlong Song62a1a632015-04-02 21:47:15 +080026 bool force;
Kan Liangc35aeb92017-08-29 13:11:10 -040027 bool phys_addr;
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -030028 int operation;
Stephane Eranian028f12e2013-01-24 16:10:38 +010029 const char *cpu_list;
30 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
31};
32
Jiri Olsace1e22b2016-02-15 09:34:35 +010033static int parse_record_events(const struct option *opt,
34 const char *str, int unset __maybe_unused)
35{
36 struct perf_mem *mem = *(struct perf_mem **)opt->value;
37 int j;
38
39 if (strcmp(str, "list")) {
40 if (!perf_mem_events__parse(str)) {
41 mem->operation = 0;
42 return 0;
43 }
44 exit(-1);
45 }
46
47 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
48 struct perf_mem_event *e = &perf_mem_events[j];
49
Jiri Olsa54fbad52016-02-24 09:46:42 +010050 fprintf(stderr, "%-13s%-*s%s\n",
51 e->tag,
Namhyung Kimbb963e12017-02-17 17:17:38 +090052 verbose > 0 ? 25 : 0,
53 verbose > 0 ? perf_mem_events__name(j) : "",
Jiri Olsa54fbad52016-02-24 09:46:42 +010054 e->supported ? ": available" : "");
Jiri Olsace1e22b2016-02-15 09:34:35 +010055 }
56 exit(0);
57}
58
59static const char * const __usage[] = {
60 "perf mem record [<options>] [<command>]",
61 "perf mem record [<options>] -- <command> [<options>]",
62 NULL
63};
64
65static const char * const *record_mem_usage = __usage;
66
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -030067static int __cmd_record(int argc, const char **argv, struct perf_mem *mem)
Stephane Eranian028f12e2013-01-24 16:10:38 +010068{
69 int rec_argc, i = 0, j;
70 const char **rec_argv;
Stephane Eranian028f12e2013-01-24 16:10:38 +010071 int ret;
Jiri Olsaad165112016-03-24 13:52:16 +010072 bool all_user = false, all_kernel = false;
Jiri Olsace1e22b2016-02-15 09:34:35 +010073 struct option options[] = {
74 OPT_CALLBACK('e', "event", &mem, "event",
75 "event selector. use 'perf mem record -e list' to list available events",
76 parse_record_events),
Jiri Olsab0d745b2016-06-14 20:19:11 +020077 OPT_UINTEGER(0, "ldlat", &perf_mem_events__loads_ldlat, "mem-loads latency"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010078 OPT_INCR('v', "verbose", &verbose,
79 "be more verbose (show counter open errors, etc)"),
Jiri Olsa631ac412016-12-12 11:35:39 +010080 OPT_BOOLEAN('U', "all-user", &all_user, "collect only user level data"),
81 OPT_BOOLEAN('K', "all-kernel", &all_kernel, "collect only kernel level data"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010082 OPT_END()
83 };
84
85 argc = parse_options(argc, argv, options, record_mem_usage,
Andi Kleena7e9eab2018-04-06 13:38:09 -070086 PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +010087
Jiri Olsaad165112016-03-24 13:52:16 +010088 rec_argc = argc + 9; /* max number of arguments */
Stephane Eranian028f12e2013-01-24 16:10:38 +010089 rec_argv = calloc(rec_argc + 1, sizeof(char *));
90 if (!rec_argv)
91 return -1;
92
Stephane Eranian67121f82014-12-17 16:23:55 +010093 rec_argv[i++] = "record";
Stephane Eranian028f12e2013-01-24 16:10:38 +010094
Jiri Olsace1e22b2016-02-15 09:34:35 +010095 if (mem->operation & MEM_OPERATION_LOAD)
Jiri Olsaacbe6132016-02-15 09:34:34 +010096 perf_mem_events[PERF_MEM_EVENTS__LOAD].record = true;
Jiri Olsace1e22b2016-02-15 09:34:35 +010097
Jiri Olsa33da54f2016-08-11 10:50:57 +020098 if (mem->operation & MEM_OPERATION_STORE)
99 perf_mem_events[PERF_MEM_EVENTS__STORE].record = true;
100
Jiri Olsace1e22b2016-02-15 09:34:35 +0100101 if (perf_mem_events[PERF_MEM_EVENTS__LOAD].record)
Stephane Eranian67121f82014-12-17 16:23:55 +0100102 rec_argv[i++] = "-W";
Stephane Eranian028f12e2013-01-24 16:10:38 +0100103
Stephane Eranian67121f82014-12-17 16:23:55 +0100104 rec_argv[i++] = "-d";
105
Kan Liangc35aeb92017-08-29 13:11:10 -0400106 if (mem->phys_addr)
107 rec_argv[i++] = "--phys-data";
108
Jiri Olsaacbe6132016-02-15 09:34:34 +0100109 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
110 if (!perf_mem_events[j].record)
111 continue;
Stephane Eranian67121f82014-12-17 16:23:55 +0100112
Jiri Olsa54fbad52016-02-24 09:46:42 +0100113 if (!perf_mem_events[j].supported) {
114 pr_err("failed: event '%s' not supported\n",
Jiri Olsa2ba7ac52016-02-24 09:46:43 +0100115 perf_mem_events__name(j));
Martin Kepplingerc896f852017-09-13 21:14:19 +0200116 free(rec_argv);
Jiri Olsa54fbad52016-02-24 09:46:42 +0100117 return -1;
118 }
119
Stephane Eranian67121f82014-12-17 16:23:55 +0100120 rec_argv[i++] = "-e";
Jiri Olsa2ba7ac52016-02-24 09:46:43 +0100121 rec_argv[i++] = perf_mem_events__name(j);
Jiri Olsaacbe6132016-02-15 09:34:34 +0100122 };
Stephane Eranian67121f82014-12-17 16:23:55 +0100123
Jiri Olsaad165112016-03-24 13:52:16 +0100124 if (all_user)
125 rec_argv[i++] = "--all-user";
126
127 if (all_kernel)
128 rec_argv[i++] = "--all-kernel";
129
Jiri Olsace1e22b2016-02-15 09:34:35 +0100130 for (j = 0; j < argc; j++, i++)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100131 rec_argv[i] = argv[j];
132
Jiri Olsace1e22b2016-02-15 09:34:35 +0100133 if (verbose > 0) {
134 pr_debug("calling: record ");
135
136 while (rec_argv[j]) {
137 pr_debug("%s ", rec_argv[j]);
138 j++;
139 }
140 pr_debug("\n");
141 }
142
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300143 ret = cmd_record(i, rec_argv);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100144 free(rec_argv);
145 return ret;
146}
147
148static int
149dump_raw_samples(struct perf_tool *tool,
150 union perf_event *event,
151 struct perf_sample *sample,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100152 struct machine *machine)
153{
154 struct perf_mem *mem = container_of(tool, struct perf_mem, tool);
155 struct addr_location al;
156 const char *fmt;
157
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -0300158 if (machine__resolve(machine, &al, sample) < 0) {
Stephane Eranian028f12e2013-01-24 16:10:38 +0100159 fprintf(stderr, "problem processing %d event, skipping it.\n",
160 event->header.type);
161 return -1;
162 }
163
164 if (al.filtered || (mem->hide_unresolved && al.sym == NULL))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300165 goto out_put;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100166
167 if (al.map != NULL)
168 al.map->dso->hit = 1;
169
Kan Liangc35aeb92017-08-29 13:11:10 -0400170 if (mem->phys_addr) {
171 if (symbol_conf.field_sep) {
172 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s0x%016"PRIx64
173 "%s%"PRIu64"%s0x%"PRIx64"%s%s:%s\n";
174 } else {
175 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
176 "%s0x%016"PRIx64"%s%5"PRIu64"%s0x%06"PRIx64
177 "%s%s:%s\n";
178 symbol_conf.field_sep = " ";
179 }
Stephane Eranian028f12e2013-01-24 16:10:38 +0100180
Kan Liangc35aeb92017-08-29 13:11:10 -0400181 printf(fmt,
182 sample->pid,
183 symbol_conf.field_sep,
184 sample->tid,
185 symbol_conf.field_sep,
186 sample->ip,
187 symbol_conf.field_sep,
188 sample->addr,
189 symbol_conf.field_sep,
190 sample->phys_addr,
191 symbol_conf.field_sep,
192 sample->weight,
193 symbol_conf.field_sep,
194 sample->data_src,
195 symbol_conf.field_sep,
196 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
197 al.sym ? al.sym->name : "???");
198 } else {
199 if (symbol_conf.field_sep) {
200 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s%"PRIu64
201 "%s0x%"PRIx64"%s%s:%s\n";
202 } else {
203 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
204 "%s%5"PRIu64"%s0x%06"PRIx64"%s%s:%s\n";
205 symbol_conf.field_sep = " ";
206 }
207
208 printf(fmt,
209 sample->pid,
210 symbol_conf.field_sep,
211 sample->tid,
212 symbol_conf.field_sep,
213 sample->ip,
214 symbol_conf.field_sep,
215 sample->addr,
216 symbol_conf.field_sep,
217 sample->weight,
218 symbol_conf.field_sep,
219 sample->data_src,
220 symbol_conf.field_sep,
221 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
222 al.sym ? al.sym->name : "???");
223 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300224out_put:
225 addr_location__put(&al);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100226 return 0;
227}
228
229static int process_sample_event(struct perf_tool *tool,
230 union perf_event *event,
231 struct perf_sample *sample,
Arnaldo Carvalho de Melo8b640cc2013-12-19 17:00:45 -0300232 struct perf_evsel *evsel __maybe_unused,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100233 struct machine *machine)
234{
Arnaldo Carvalho de Melo8b640cc2013-12-19 17:00:45 -0300235 return dump_raw_samples(tool, event, sample, machine);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100236}
237
238static int report_raw_events(struct perf_mem *mem)
239{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100240 struct perf_data data = {
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100241 .file = {
242 .path = input_name,
243 },
244 .mode = PERF_DATA_MODE_READ,
245 .force = mem->force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200246 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100247 int ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100248 struct perf_session *session = perf_session__new(&data, false,
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200249 &mem->tool);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100250
251 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900252 return -1;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100253
254 if (mem->cpu_list) {
255 ret = perf_session__cpu_bitmap(session, mem->cpu_list,
256 mem->cpu_bitmap);
Taeung Song1df9fade2015-07-01 21:08:19 +0900257 if (ret < 0)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100258 goto out_delete;
259 }
260
Taeung Song1df9fade2015-07-01 21:08:19 +0900261 ret = symbol__init(&session->header.env);
262 if (ret < 0)
263 goto out_delete;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100264
Kan Liangc35aeb92017-08-29 13:11:10 -0400265 if (mem->phys_addr)
266 printf("# PID, TID, IP, ADDR, PHYS ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
267 else
268 printf("# PID, TID, IP, ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
Stephane Eranian028f12e2013-01-24 16:10:38 +0100269
Taeung Song1df9fade2015-07-01 21:08:19 +0900270 ret = perf_session__process_events(session);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100271
272out_delete:
273 perf_session__delete(session);
Taeung Song1df9fade2015-07-01 21:08:19 +0900274 return ret;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100275}
276
277static int report_events(int argc, const char **argv, struct perf_mem *mem)
278{
279 const char **rep_argv;
280 int ret, i = 0, j, rep_argc;
281
282 if (mem->dump_raw)
283 return report_raw_events(mem);
284
285 rep_argc = argc + 3;
286 rep_argv = calloc(rep_argc + 1, sizeof(char *));
287 if (!rep_argv)
288 return -1;
289
Stephane Eranian67121f82014-12-17 16:23:55 +0100290 rep_argv[i++] = "report";
291 rep_argv[i++] = "--mem-mode";
292 rep_argv[i++] = "-n"; /* display number of samples */
Stephane Eranian028f12e2013-01-24 16:10:38 +0100293
294 /*
295 * there is no weight (cost) associated with stores, so don't print
296 * the column
297 */
Kan Liangc35aeb92017-08-29 13:11:10 -0400298 if (!(mem->operation & MEM_OPERATION_LOAD)) {
299 if (mem->phys_addr)
300 rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
301 "dso_daddr,tlb,locked,phys_daddr";
302 else
303 rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
304 "dso_daddr,tlb,locked";
305 } else if (mem->phys_addr)
306 rep_argv[i++] = "--sort=local_weight,mem,sym,dso,symbol_daddr,"
307 "dso_daddr,snoop,tlb,locked,phys_daddr";
Stephane Eranian028f12e2013-01-24 16:10:38 +0100308
309 for (j = 1; j < argc; j++, i++)
310 rep_argv[i] = argv[j];
311
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300312 ret = cmd_report(i, rep_argv);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100313 free(rep_argv);
314 return ret;
315}
316
Stephane Eranian67121f82014-12-17 16:23:55 +0100317struct mem_mode {
318 const char *name;
319 int mode;
320};
321
322#define MEM_OPT(n, m) \
323 { .name = n, .mode = (m) }
324
325#define MEM_END { .name = NULL }
326
327static const struct mem_mode mem_modes[]={
328 MEM_OPT("load", MEM_OPERATION_LOAD),
329 MEM_OPT("store", MEM_OPERATION_STORE),
330 MEM_END
331};
332
333static int
334parse_mem_ops(const struct option *opt, const char *str, int unset)
335{
336 int *mode = (int *)opt->value;
337 const struct mem_mode *m;
338 char *s, *os = NULL, *p;
339 int ret = -1;
340
341 if (unset)
342 return 0;
343
344 /* str may be NULL in case no arg is passed to -t */
345 if (str) {
346 /* because str is read-only */
347 s = os = strdup(str);
348 if (!s)
349 return -1;
350
351 /* reset mode */
352 *mode = 0;
353
354 for (;;) {
355 p = strchr(s, ',');
356 if (p)
357 *p = '\0';
358
359 for (m = mem_modes; m->name; m++) {
360 if (!strcasecmp(s, m->name))
361 break;
362 }
363 if (!m->name) {
364 fprintf(stderr, "unknown sampling op %s,"
365 " check man page\n", s);
366 goto error;
367 }
368
369 *mode |= m->mode;
370
371 if (!p)
372 break;
373
374 s = p + 1;
375 }
376 }
377 ret = 0;
378
379 if (*mode == 0)
380 *mode = MEM_OPERATION_LOAD;
381error:
382 free(os);
383 return ret;
384}
385
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300386int cmd_mem(int argc, const char **argv)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100387{
388 struct stat st;
389 struct perf_mem mem = {
390 .tool = {
391 .sample = process_sample_event,
392 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200393 .mmap2 = perf_event__process_mmap2,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100394 .comm = perf_event__process_comm,
395 .lost = perf_event__process_lost,
396 .fork = perf_event__process_fork,
397 .build_id = perf_event__process_build_id,
Hari Bathinif3b36142017-03-08 02:11:43 +0530398 .namespaces = perf_event__process_namespaces,
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200399 .ordered_events = true,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100400 },
401 .input_name = "perf.data",
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300402 /*
403 * default to both load an store sampling
404 */
405 .operation = MEM_OPERATION_LOAD | MEM_OPERATION_STORE,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100406 };
407 const struct option mem_options[] = {
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300408 OPT_CALLBACK('t', "type", &mem.operation,
Stephane Eranian67121f82014-12-17 16:23:55 +0100409 "type", "memory operations(load,store) Default load,store",
410 parse_mem_ops),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100411 OPT_BOOLEAN('D', "dump-raw-samples", &mem.dump_raw,
412 "dump raw samples in ASCII"),
413 OPT_BOOLEAN('U', "hide-unresolved", &mem.hide_unresolved,
414 "Only display entries resolved to a symbol"),
415 OPT_STRING('i', "input", &input_name, "file",
416 "input file name"),
417 OPT_STRING('C', "cpu", &mem.cpu_list, "cpu",
418 "list of cpus to profile"),
Wang Nan8b8ca6e2015-03-20 02:57:52 +0000419 OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf.field_sep,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100420 "separator",
421 "separator for columns, no spaces will be added"
422 " between columns '.' is reserved."),
Yunlong Song62a1a632015-04-02 21:47:15 +0800423 OPT_BOOLEAN('f', "force", &mem.force, "don't complain, do it"),
Kan Liangc35aeb92017-08-29 13:11:10 -0400424 OPT_BOOLEAN('p', "phys-data", &mem.phys_addr, "Record/Report sample physical addresses"),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100425 OPT_END()
426 };
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400427 const char *const mem_subcommands[] = { "record", "report", NULL };
428 const char *mem_usage[] = {
429 NULL,
430 NULL
431 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100432
Jiri Olsa54fbad52016-02-24 09:46:42 +0100433 if (perf_mem_events__init()) {
434 pr_err("failed: memory events not supported\n");
435 return -1;
436 }
437
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400438 argc = parse_options_subcommand(argc, argv, mem_options, mem_subcommands,
Andi Kleena7e9eab2018-04-06 13:38:09 -0700439 mem_usage, PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100440
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300441 if (!argc || !(strncmp(argv[0], "rec", 3) || mem.operation))
Stephane Eranian028f12e2013-01-24 16:10:38 +0100442 usage_with_options(mem_usage, mem_options);
443
444 if (!mem.input_name || !strlen(mem.input_name)) {
445 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
446 mem.input_name = "-";
447 else
448 mem.input_name = "perf.data";
449 }
450
451 if (!strncmp(argv[0], "rec", 3))
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300452 return __cmd_record(argc, argv, &mem);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100453 else if (!strncmp(argv[0], "rep", 3))
454 return report_events(argc, argv, &mem);
455 else
456 usage_with_options(mem_usage, mem_options);
457
458 return 0;
459}