blob: f3aac85aa9d42ea5e7f5f03da0e74e8efa47fc2a [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>
Leo Yan13e5df1e2020-11-06 17:48:51 +080010#include "util/auxtrace.h"
Stephane Eranian028f12e2013-01-24 16:10:38 +010011#include "util/trace-event.h"
12#include "util/tool.h"
13#include "util/session.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020014#include "util/data.h"
Arnaldo Carvalho de Melod3300a32019-08-30 15:09:54 -030015#include "util/map_symbol.h"
Jiri Olsaacbe6132016-02-15 09:34:34 +010016#include "util/mem-events.h"
Jiri Olsace1e22b2016-02-15 09:34:35 +010017#include "util/debug.h"
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -030018#include "util/dso.h"
Arnaldo Carvalho de Melo1101f692019-01-27 13:42:37 +010019#include "util/map.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030020#include "util/symbol.h"
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053021#include <linux/err.h>
Stephane Eranian028f12e2013-01-24 16:10:38 +010022
Stephane Eranian67121f82014-12-17 16:23:55 +010023#define MEM_OPERATION_LOAD 0x1
24#define MEM_OPERATION_STORE 0x2
Stephane Eranian028f12e2013-01-24 16:10:38 +010025
Stephane Eranian028f12e2013-01-24 16:10:38 +010026struct perf_mem {
27 struct perf_tool tool;
28 char const *input_name;
Stephane Eranian028f12e2013-01-24 16:10:38 +010029 bool hide_unresolved;
30 bool dump_raw;
Yunlong Song62a1a632015-04-02 21:47:15 +080031 bool force;
Kan Liangc35aeb92017-08-29 13:11:10 -040032 bool phys_addr;
Kan Liang06280e32021-01-05 11:57:48 -080033 bool data_page_size;
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -030034 int operation;
Stephane Eranian028f12e2013-01-24 16:10:38 +010035 const char *cpu_list;
36 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
37};
38
Jiri Olsace1e22b2016-02-15 09:34:35 +010039static int parse_record_events(const struct option *opt,
40 const char *str, int unset __maybe_unused)
41{
42 struct perf_mem *mem = *(struct perf_mem **)opt->value;
Jiri Olsace1e22b2016-02-15 09:34:35 +010043
Ian Rogersb027cc62020-05-07 15:06:04 -070044 if (!strcmp(str, "list")) {
45 perf_mem_events__list();
46 exit(0);
47 }
48 if (perf_mem_events__parse(str))
Jiri Olsace1e22b2016-02-15 09:34:35 +010049 exit(-1);
Jiri Olsace1e22b2016-02-15 09:34:35 +010050
Ian Rogersb027cc62020-05-07 15:06:04 -070051 mem->operation = 0;
52 return 0;
Jiri Olsace1e22b2016-02-15 09:34:35 +010053}
54
55static const char * const __usage[] = {
56 "perf mem record [<options>] [<command>]",
57 "perf mem record [<options>] -- <command> [<options>]",
58 NULL
59};
60
61static const char * const *record_mem_usage = __usage;
62
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -030063static int __cmd_record(int argc, const char **argv, struct perf_mem *mem)
Stephane Eranian028f12e2013-01-24 16:10:38 +010064{
65 int rec_argc, i = 0, j;
66 const char **rec_argv;
Stephane Eranian028f12e2013-01-24 16:10:38 +010067 int ret;
Jiri Olsaad165112016-03-24 13:52:16 +010068 bool all_user = false, all_kernel = false;
Leo Yaneaf6aae2020-11-06 17:48:46 +080069 struct perf_mem_event *e;
Jiri Olsace1e22b2016-02-15 09:34:35 +010070 struct option options[] = {
71 OPT_CALLBACK('e', "event", &mem, "event",
72 "event selector. use 'perf mem record -e list' to list available events",
73 parse_record_events),
Jiri Olsab0d745b2016-06-14 20:19:11 +020074 OPT_UINTEGER(0, "ldlat", &perf_mem_events__loads_ldlat, "mem-loads latency"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010075 OPT_INCR('v', "verbose", &verbose,
76 "be more verbose (show counter open errors, etc)"),
Jiri Olsa631ac412016-12-12 11:35:39 +010077 OPT_BOOLEAN('U', "all-user", &all_user, "collect only user level data"),
78 OPT_BOOLEAN('K', "all-kernel", &all_kernel, "collect only kernel level data"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010079 OPT_END()
80 };
81
Leo Yan436cce02020-11-06 17:48:49 +080082 if (perf_mem_events__init()) {
83 pr_err("failed: memory events not supported\n");
84 return -1;
85 }
86
Jiri Olsace1e22b2016-02-15 09:34:35 +010087 argc = parse_options(argc, argv, options, record_mem_usage,
Andi Kleena7e9eab2018-04-06 13:38:09 -070088 PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +010089
Jiri Olsaad165112016-03-24 13:52:16 +010090 rec_argc = argc + 9; /* max number of arguments */
Stephane Eranian028f12e2013-01-24 16:10:38 +010091 rec_argv = calloc(rec_argc + 1, sizeof(char *));
92 if (!rec_argv)
93 return -1;
94
Stephane Eranian67121f82014-12-17 16:23:55 +010095 rec_argv[i++] = "record";
Stephane Eranian028f12e2013-01-24 16:10:38 +010096
Leo Yan4ba24522020-11-06 17:48:47 +080097 e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD_STORE);
Jiri Olsace1e22b2016-02-15 09:34:35 +010098
Leo Yan4ba24522020-11-06 17:48:47 +080099 /*
100 * The load and store operations are required, use the event
101 * PERF_MEM_EVENTS__LOAD_STORE if it is supported.
102 */
103 if (e->tag &&
104 (mem->operation & MEM_OPERATION_LOAD) &&
105 (mem->operation & MEM_OPERATION_STORE)) {
Leo Yaneaf6aae2020-11-06 17:48:46 +0800106 e->record = true;
Leo Yan4ba24522020-11-06 17:48:47 +0800107 } else {
108 if (mem->operation & MEM_OPERATION_LOAD) {
109 e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD);
110 e->record = true;
111 }
112
113 if (mem->operation & MEM_OPERATION_STORE) {
114 e = perf_mem_events__ptr(PERF_MEM_EVENTS__STORE);
115 e->record = true;
116 }
Leo Yaneaf6aae2020-11-06 17:48:46 +0800117 }
Jiri Olsa33da54f2016-08-11 10:50:57 +0200118
Leo Yaneaf6aae2020-11-06 17:48:46 +0800119 e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD);
120 if (e->record)
Stephane Eranian67121f82014-12-17 16:23:55 +0100121 rec_argv[i++] = "-W";
Stephane Eranian028f12e2013-01-24 16:10:38 +0100122
Stephane Eranian67121f82014-12-17 16:23:55 +0100123 rec_argv[i++] = "-d";
124
Kan Liangc35aeb92017-08-29 13:11:10 -0400125 if (mem->phys_addr)
126 rec_argv[i++] = "--phys-data";
127
Kan Liang06280e32021-01-05 11:57:48 -0800128 if (mem->data_page_size)
129 rec_argv[i++] = "--data-page-size";
130
Jiri Olsaacbe6132016-02-15 09:34:34 +0100131 for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
Leo Yaneaf6aae2020-11-06 17:48:46 +0800132 e = perf_mem_events__ptr(j);
133 if (!e->record)
Jiri Olsaacbe6132016-02-15 09:34:34 +0100134 continue;
Stephane Eranian67121f82014-12-17 16:23:55 +0100135
Leo Yaneaf6aae2020-11-06 17:48:46 +0800136 if (!e->supported) {
Jiri Olsa54fbad52016-02-24 09:46:42 +0100137 pr_err("failed: event '%s' not supported\n",
Jiri Olsa2ba7ac52016-02-24 09:46:43 +0100138 perf_mem_events__name(j));
Martin Kepplingerc896f852017-09-13 21:14:19 +0200139 free(rec_argv);
Jiri Olsa54fbad52016-02-24 09:46:42 +0100140 return -1;
141 }
142
Stephane Eranian67121f82014-12-17 16:23:55 +0100143 rec_argv[i++] = "-e";
Jiri Olsa2ba7ac52016-02-24 09:46:43 +0100144 rec_argv[i++] = perf_mem_events__name(j);
Zou Wei8284bbe2020-04-28 17:18:43 +0800145 }
Stephane Eranian67121f82014-12-17 16:23:55 +0100146
Jiri Olsaad165112016-03-24 13:52:16 +0100147 if (all_user)
148 rec_argv[i++] = "--all-user";
149
150 if (all_kernel)
151 rec_argv[i++] = "--all-kernel";
152
Jiri Olsace1e22b2016-02-15 09:34:35 +0100153 for (j = 0; j < argc; j++, i++)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100154 rec_argv[i] = argv[j];
155
Jiri Olsace1e22b2016-02-15 09:34:35 +0100156 if (verbose > 0) {
157 pr_debug("calling: record ");
158
159 while (rec_argv[j]) {
160 pr_debug("%s ", rec_argv[j]);
161 j++;
162 }
163 pr_debug("\n");
164 }
165
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300166 ret = cmd_record(i, rec_argv);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100167 free(rec_argv);
168 return ret;
169}
170
171static int
172dump_raw_samples(struct perf_tool *tool,
173 union perf_event *event,
174 struct perf_sample *sample,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100175 struct machine *machine)
176{
177 struct perf_mem *mem = container_of(tool, struct perf_mem, tool);
178 struct addr_location al;
Kan Liang407ee5c92021-01-05 11:57:47 -0800179 const char *fmt, *field_sep;
Kan Liang06280e32021-01-05 11:57:48 -0800180 char str[PAGE_SIZE_NAME_LEN];
Stephane Eranian028f12e2013-01-24 16:10:38 +0100181
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -0300182 if (machine__resolve(machine, &al, sample) < 0) {
Stephane Eranian028f12e2013-01-24 16:10:38 +0100183 fprintf(stderr, "problem processing %d event, skipping it.\n",
184 event->header.type);
185 return -1;
186 }
187
188 if (al.filtered || (mem->hide_unresolved && al.sym == NULL))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300189 goto out_put;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100190
191 if (al.map != NULL)
192 al.map->dso->hit = 1;
193
Kan Liang407ee5c92021-01-05 11:57:47 -0800194 field_sep = symbol_conf.field_sep;
195 if (field_sep) {
196 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s";
Kan Liangc35aeb92017-08-29 13:11:10 -0400197 } else {
Kan Liang407ee5c92021-01-05 11:57:47 -0800198 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64"%s";
199 symbol_conf.field_sep = " ";
Kan Liangc35aeb92017-08-29 13:11:10 -0400200 }
Kan Liang407ee5c92021-01-05 11:57:47 -0800201 printf(fmt,
202 sample->pid,
203 symbol_conf.field_sep,
204 sample->tid,
205 symbol_conf.field_sep,
206 sample->ip,
207 symbol_conf.field_sep,
208 sample->addr,
209 symbol_conf.field_sep);
210
211 if (mem->phys_addr) {
212 printf("0x%016"PRIx64"%s",
213 sample->phys_addr,
214 symbol_conf.field_sep);
215 }
216
Kan Liang06280e32021-01-05 11:57:48 -0800217 if (mem->data_page_size) {
218 printf("%s%s",
219 get_page_size_name(sample->data_page_size, str),
220 symbol_conf.field_sep);
221 }
222
Kan Liang407ee5c92021-01-05 11:57:47 -0800223 if (field_sep)
224 fmt = "%"PRIu64"%s0x%"PRIx64"%s%s:%s\n";
225 else
226 fmt = "%5"PRIu64"%s0x%06"PRIx64"%s%s:%s\n";
227
228 printf(fmt,
229 sample->weight,
230 symbol_conf.field_sep,
231 sample->data_src,
232 symbol_conf.field_sep,
233 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
234 al.sym ? al.sym->name : "???");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300235out_put:
236 addr_location__put(&al);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100237 return 0;
238}
239
240static int process_sample_event(struct perf_tool *tool,
241 union perf_event *event,
242 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200243 struct evsel *evsel __maybe_unused,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100244 struct machine *machine)
245{
Arnaldo Carvalho de Melo8b640cc2013-12-19 17:00:45 -0300246 return dump_raw_samples(tool, event, sample, machine);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100247}
248
249static int report_raw_events(struct perf_mem *mem)
250{
Leo Yan13e5df1e2020-11-06 17:48:51 +0800251 struct itrace_synth_opts itrace_synth_opts = {
252 .set = true,
253 .mem = true, /* Only enable memory event */
254 .default_no_sample = true,
255 };
256
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100257 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100258 .path = input_name,
259 .mode = PERF_DATA_MODE_READ,
260 .force = mem->force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200261 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100262 int ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100263 struct perf_session *session = perf_session__new(&data, false,
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200264 &mem->tool);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100265
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530266 if (IS_ERR(session))
267 return PTR_ERR(session);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100268
Leo Yan13e5df1e2020-11-06 17:48:51 +0800269 session->itrace_synth_opts = &itrace_synth_opts;
270
Stephane Eranian028f12e2013-01-24 16:10:38 +0100271 if (mem->cpu_list) {
272 ret = perf_session__cpu_bitmap(session, mem->cpu_list,
273 mem->cpu_bitmap);
Taeung Song1df9fade2015-07-01 21:08:19 +0900274 if (ret < 0)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100275 goto out_delete;
276 }
277
Taeung Song1df9fade2015-07-01 21:08:19 +0900278 ret = symbol__init(&session->header.env);
279 if (ret < 0)
280 goto out_delete;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100281
Kan Liang407ee5c92021-01-05 11:57:47 -0800282 printf("# PID, TID, IP, ADDR, ");
283
Kan Liangc35aeb92017-08-29 13:11:10 -0400284 if (mem->phys_addr)
Kan Liang407ee5c92021-01-05 11:57:47 -0800285 printf("PHYS ADDR, ");
286
Kan Liang06280e32021-01-05 11:57:48 -0800287 if (mem->data_page_size)
288 printf("DATA PAGE SIZE, ");
289
Kan Liang407ee5c92021-01-05 11:57:47 -0800290 printf("LOCAL WEIGHT, DSRC, SYMBOL\n");
Stephane Eranian028f12e2013-01-24 16:10:38 +0100291
Taeung Song1df9fade2015-07-01 21:08:19 +0900292 ret = perf_session__process_events(session);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100293
294out_delete:
295 perf_session__delete(session);
Taeung Song1df9fade2015-07-01 21:08:19 +0900296 return ret;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100297}
Kan Liang2e7f5452020-12-16 10:57:59 -0800298static char *get_sort_order(struct perf_mem *mem)
299{
Kan Liang06280e32021-01-05 11:57:48 -0800300 bool has_extra_options = (mem->phys_addr | mem->data_page_size) ? true : false;
Kan Liang2e7f5452020-12-16 10:57:59 -0800301 char sort[128];
302
303 /*
304 * there is no weight (cost) associated with stores, so don't print
305 * the column
306 */
307 if (!(mem->operation & MEM_OPERATION_LOAD)) {
308 strcpy(sort, "--sort=mem,sym,dso,symbol_daddr,"
309 "dso_daddr,tlb,locked");
310 } else if (has_extra_options) {
311 strcpy(sort, "--sort=local_weight,mem,sym,dso,symbol_daddr,"
312 "dso_daddr,snoop,tlb,locked");
313 } else
314 return NULL;
315
316 if (mem->phys_addr)
317 strcat(sort, ",phys_daddr");
318
Kan Liang06280e32021-01-05 11:57:48 -0800319 if (mem->data_page_size)
320 strcat(sort, ",data_page_size");
321
Kan Liang2e7f5452020-12-16 10:57:59 -0800322 return strdup(sort);
323}
Stephane Eranian028f12e2013-01-24 16:10:38 +0100324
325static int report_events(int argc, const char **argv, struct perf_mem *mem)
326{
327 const char **rep_argv;
328 int ret, i = 0, j, rep_argc;
Kan Liang2e7f5452020-12-16 10:57:59 -0800329 char *new_sort_order;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100330
331 if (mem->dump_raw)
332 return report_raw_events(mem);
333
334 rep_argc = argc + 3;
335 rep_argv = calloc(rep_argc + 1, sizeof(char *));
336 if (!rep_argv)
337 return -1;
338
Stephane Eranian67121f82014-12-17 16:23:55 +0100339 rep_argv[i++] = "report";
340 rep_argv[i++] = "--mem-mode";
341 rep_argv[i++] = "-n"; /* display number of samples */
Stephane Eranian028f12e2013-01-24 16:10:38 +0100342
Kan Liang2e7f5452020-12-16 10:57:59 -0800343 new_sort_order = get_sort_order(mem);
344 if (new_sort_order)
345 rep_argv[i++] = new_sort_order;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100346
347 for (j = 1; j < argc; j++, i++)
348 rep_argv[i] = argv[j];
349
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300350 ret = cmd_report(i, rep_argv);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100351 free(rep_argv);
352 return ret;
353}
354
Stephane Eranian67121f82014-12-17 16:23:55 +0100355struct mem_mode {
356 const char *name;
357 int mode;
358};
359
360#define MEM_OPT(n, m) \
361 { .name = n, .mode = (m) }
362
363#define MEM_END { .name = NULL }
364
365static const struct mem_mode mem_modes[]={
366 MEM_OPT("load", MEM_OPERATION_LOAD),
367 MEM_OPT("store", MEM_OPERATION_STORE),
368 MEM_END
369};
370
371static int
372parse_mem_ops(const struct option *opt, const char *str, int unset)
373{
374 int *mode = (int *)opt->value;
375 const struct mem_mode *m;
376 char *s, *os = NULL, *p;
377 int ret = -1;
378
379 if (unset)
380 return 0;
381
382 /* str may be NULL in case no arg is passed to -t */
383 if (str) {
384 /* because str is read-only */
385 s = os = strdup(str);
386 if (!s)
387 return -1;
388
389 /* reset mode */
390 *mode = 0;
391
392 for (;;) {
393 p = strchr(s, ',');
394 if (p)
395 *p = '\0';
396
397 for (m = mem_modes; m->name; m++) {
398 if (!strcasecmp(s, m->name))
399 break;
400 }
401 if (!m->name) {
402 fprintf(stderr, "unknown sampling op %s,"
403 " check man page\n", s);
404 goto error;
405 }
406
407 *mode |= m->mode;
408
409 if (!p)
410 break;
411
412 s = p + 1;
413 }
414 }
415 ret = 0;
416
417 if (*mode == 0)
418 *mode = MEM_OPERATION_LOAD;
419error:
420 free(os);
421 return ret;
422}
423
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300424int cmd_mem(int argc, const char **argv)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100425{
426 struct stat st;
427 struct perf_mem mem = {
428 .tool = {
429 .sample = process_sample_event,
430 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200431 .mmap2 = perf_event__process_mmap2,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100432 .comm = perf_event__process_comm,
433 .lost = perf_event__process_lost,
434 .fork = perf_event__process_fork,
Leo Yan13e5df1e2020-11-06 17:48:51 +0800435 .attr = perf_event__process_attr,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100436 .build_id = perf_event__process_build_id,
Hari Bathinif3b36142017-03-08 02:11:43 +0530437 .namespaces = perf_event__process_namespaces,
Leo Yan13e5df1e2020-11-06 17:48:51 +0800438 .auxtrace_info = perf_event__process_auxtrace_info,
439 .auxtrace = perf_event__process_auxtrace,
440 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200441 .ordered_events = true,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100442 },
443 .input_name = "perf.data",
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300444 /*
445 * default to both load an store sampling
446 */
447 .operation = MEM_OPERATION_LOAD | MEM_OPERATION_STORE,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100448 };
449 const struct option mem_options[] = {
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300450 OPT_CALLBACK('t', "type", &mem.operation,
Stephane Eranian67121f82014-12-17 16:23:55 +0100451 "type", "memory operations(load,store) Default load,store",
452 parse_mem_ops),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100453 OPT_BOOLEAN('D', "dump-raw-samples", &mem.dump_raw,
454 "dump raw samples in ASCII"),
455 OPT_BOOLEAN('U', "hide-unresolved", &mem.hide_unresolved,
456 "Only display entries resolved to a symbol"),
457 OPT_STRING('i', "input", &input_name, "file",
458 "input file name"),
459 OPT_STRING('C', "cpu", &mem.cpu_list, "cpu",
460 "list of cpus to profile"),
Wang Nan8b8ca6e2015-03-20 02:57:52 +0000461 OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf.field_sep,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100462 "separator",
463 "separator for columns, no spaces will be added"
464 " between columns '.' is reserved."),
Yunlong Song62a1a632015-04-02 21:47:15 +0800465 OPT_BOOLEAN('f', "force", &mem.force, "don't complain, do it"),
Kan Liangc35aeb92017-08-29 13:11:10 -0400466 OPT_BOOLEAN('p', "phys-data", &mem.phys_addr, "Record/Report sample physical addresses"),
Kan Liang06280e32021-01-05 11:57:48 -0800467 OPT_BOOLEAN(0, "data-page-size", &mem.data_page_size, "Record/Report sample data address page size"),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100468 OPT_END()
469 };
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400470 const char *const mem_subcommands[] = { "record", "report", NULL };
471 const char *mem_usage[] = {
472 NULL,
473 NULL
474 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100475
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400476 argc = parse_options_subcommand(argc, argv, mem_options, mem_subcommands,
Andi Kleena7e9eab2018-04-06 13:38:09 -0700477 mem_usage, PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100478
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300479 if (!argc || !(strncmp(argv[0], "rec", 3) || mem.operation))
Stephane Eranian028f12e2013-01-24 16:10:38 +0100480 usage_with_options(mem_usage, mem_options);
481
482 if (!mem.input_name || !strlen(mem.input_name)) {
483 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
484 mem.input_name = "-";
485 else
486 mem.input_name = "perf.data";
487 }
488
489 if (!strncmp(argv[0], "rec", 3))
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300490 return __cmd_record(argc, argv, &mem);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100491 else if (!strncmp(argv[0], "rep", 3))
492 return report_events(argc, argv, &mem);
493 else
494 usage_with_options(mem_usage, mem_options);
495
496 return 0;
497}