blob: fcf65a59bea214ced6f60f18e6a68bfa37752b45 [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"
Jin Yao4a9086a2021-05-27 08:16:07 +080021#include "util/pmu.h"
22#include "util/pmu-hybrid.h"
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053023#include <linux/err.h>
Stephane Eranian028f12e2013-01-24 16:10:38 +010024
Stephane Eranian67121f82014-12-17 16:23:55 +010025#define MEM_OPERATION_LOAD 0x1
26#define MEM_OPERATION_STORE 0x2
Stephane Eranian028f12e2013-01-24 16:10:38 +010027
Stephane Eranian028f12e2013-01-24 16:10:38 +010028struct perf_mem {
29 struct perf_tool tool;
30 char const *input_name;
Stephane Eranian028f12e2013-01-24 16:10:38 +010031 bool hide_unresolved;
32 bool dump_raw;
Yunlong Song62a1a632015-04-02 21:47:15 +080033 bool force;
Kan Liangc35aeb92017-08-29 13:11:10 -040034 bool phys_addr;
Kan Liang06280e32021-01-05 11:57:48 -080035 bool data_page_size;
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -030036 int operation;
Stephane Eranian028f12e2013-01-24 16:10:38 +010037 const char *cpu_list;
38 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
39};
40
Jiri Olsace1e22b2016-02-15 09:34:35 +010041static int parse_record_events(const struct option *opt,
42 const char *str, int unset __maybe_unused)
43{
44 struct perf_mem *mem = *(struct perf_mem **)opt->value;
Jiri Olsace1e22b2016-02-15 09:34:35 +010045
Ian Rogersb027cc62020-05-07 15:06:04 -070046 if (!strcmp(str, "list")) {
47 perf_mem_events__list();
48 exit(0);
49 }
50 if (perf_mem_events__parse(str))
Jiri Olsace1e22b2016-02-15 09:34:35 +010051 exit(-1);
Jiri Olsace1e22b2016-02-15 09:34:35 +010052
Ian Rogersb027cc62020-05-07 15:06:04 -070053 mem->operation = 0;
54 return 0;
Jiri Olsace1e22b2016-02-15 09:34:35 +010055}
56
57static const char * const __usage[] = {
58 "perf mem record [<options>] [<command>]",
59 "perf mem record [<options>] -- <command> [<options>]",
60 NULL
61};
62
63static const char * const *record_mem_usage = __usage;
64
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -030065static int __cmd_record(int argc, const char **argv, struct perf_mem *mem)
Stephane Eranian028f12e2013-01-24 16:10:38 +010066{
Jin Yao4a9086a2021-05-27 08:16:07 +080067 int rec_argc, i = 0, j, tmp_nr = 0;
Jin Yaoa6d9de82021-05-27 08:16:08 +080068 int start, end;
Stephane Eranian028f12e2013-01-24 16:10:38 +010069 const char **rec_argv;
Jin Yao4a9086a2021-05-27 08:16:07 +080070 char **rec_tmp;
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;
Leo Yaneaf6aae2020-11-06 17:48:46 +080073 struct perf_mem_event *e;
Jiri Olsace1e22b2016-02-15 09:34:35 +010074 struct option options[] = {
75 OPT_CALLBACK('e', "event", &mem, "event",
76 "event selector. use 'perf mem record -e list' to list available events",
77 parse_record_events),
Jiri Olsab0d745b2016-06-14 20:19:11 +020078 OPT_UINTEGER(0, "ldlat", &perf_mem_events__loads_ldlat, "mem-loads latency"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010079 OPT_INCR('v', "verbose", &verbose,
80 "be more verbose (show counter open errors, etc)"),
Jiri Olsa631ac412016-12-12 11:35:39 +010081 OPT_BOOLEAN('U', "all-user", &all_user, "collect only user level data"),
82 OPT_BOOLEAN('K', "all-kernel", &all_kernel, "collect only kernel level data"),
Jiri Olsace1e22b2016-02-15 09:34:35 +010083 OPT_END()
84 };
85
Leo Yan436cce02020-11-06 17:48:49 +080086 if (perf_mem_events__init()) {
87 pr_err("failed: memory events not supported\n");
88 return -1;
89 }
90
Jiri Olsace1e22b2016-02-15 09:34:35 +010091 argc = parse_options(argc, argv, options, record_mem_usage,
Andi Kleena7e9eab2018-04-06 13:38:09 -070092 PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +010093
Jin Yao4a9086a2021-05-27 08:16:07 +080094 if (!perf_pmu__has_hybrid())
95 rec_argc = argc + 9; /* max number of arguments */
96 else
97 rec_argc = argc + 9 * perf_pmu__hybrid_pmu_num();
98
Stephane Eranian028f12e2013-01-24 16:10:38 +010099 rec_argv = calloc(rec_argc + 1, sizeof(char *));
100 if (!rec_argv)
101 return -1;
102
Jin Yao4a9086a2021-05-27 08:16:07 +0800103 /*
104 * Save the allocated event name strings.
105 */
106 rec_tmp = calloc(rec_argc + 1, sizeof(char *));
107 if (!rec_tmp) {
108 free(rec_argv);
109 return -1;
110 }
111
Stephane Eranian67121f82014-12-17 16:23:55 +0100112 rec_argv[i++] = "record";
Stephane Eranian028f12e2013-01-24 16:10:38 +0100113
Leo Yan4ba24522020-11-06 17:48:47 +0800114 e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD_STORE);
Jiri Olsace1e22b2016-02-15 09:34:35 +0100115
Leo Yan4ba24522020-11-06 17:48:47 +0800116 /*
117 * The load and store operations are required, use the event
118 * PERF_MEM_EVENTS__LOAD_STORE if it is supported.
119 */
120 if (e->tag &&
121 (mem->operation & MEM_OPERATION_LOAD) &&
122 (mem->operation & MEM_OPERATION_STORE)) {
Leo Yaneaf6aae2020-11-06 17:48:46 +0800123 e->record = true;
Leo Yan4ba24522020-11-06 17:48:47 +0800124 } else {
125 if (mem->operation & MEM_OPERATION_LOAD) {
126 e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD);
127 e->record = true;
128 }
129
130 if (mem->operation & MEM_OPERATION_STORE) {
131 e = perf_mem_events__ptr(PERF_MEM_EVENTS__STORE);
132 e->record = true;
133 }
Leo Yaneaf6aae2020-11-06 17:48:46 +0800134 }
Jiri Olsa33da54f2016-08-11 10:50:57 +0200135
Leo Yaneaf6aae2020-11-06 17:48:46 +0800136 e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD);
137 if (e->record)
Stephane Eranian67121f82014-12-17 16:23:55 +0100138 rec_argv[i++] = "-W";
Stephane Eranian028f12e2013-01-24 16:10:38 +0100139
Stephane Eranian67121f82014-12-17 16:23:55 +0100140 rec_argv[i++] = "-d";
141
Kan Liangc35aeb92017-08-29 13:11:10 -0400142 if (mem->phys_addr)
143 rec_argv[i++] = "--phys-data";
144
Kan Liang06280e32021-01-05 11:57:48 -0800145 if (mem->data_page_size)
146 rec_argv[i++] = "--data-page-size";
147
Jin Yaoa6d9de82021-05-27 08:16:08 +0800148 start = i;
Jin Yao4a9086a2021-05-27 08:16:07 +0800149 ret = perf_mem_events__record_args(rec_argv, &i, rec_tmp, &tmp_nr);
150 if (ret)
151 goto out;
Jin Yaoa6d9de82021-05-27 08:16:08 +0800152 end = i;
Stephane Eranian67121f82014-12-17 16:23:55 +0100153
Jiri Olsaad165112016-03-24 13:52:16 +0100154 if (all_user)
155 rec_argv[i++] = "--all-user";
156
157 if (all_kernel)
158 rec_argv[i++] = "--all-kernel";
159
Jiri Olsace1e22b2016-02-15 09:34:35 +0100160 for (j = 0; j < argc; j++, i++)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100161 rec_argv[i] = argv[j];
162
Jiri Olsace1e22b2016-02-15 09:34:35 +0100163 if (verbose > 0) {
164 pr_debug("calling: record ");
165
Jin Yaoa6d9de82021-05-27 08:16:08 +0800166 for (j = start; j < end; j++)
Jiri Olsace1e22b2016-02-15 09:34:35 +0100167 pr_debug("%s ", rec_argv[j]);
Jin Yaoa6d9de82021-05-27 08:16:08 +0800168
Jiri Olsace1e22b2016-02-15 09:34:35 +0100169 pr_debug("\n");
170 }
171
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300172 ret = cmd_record(i, rec_argv);
Jin Yao4a9086a2021-05-27 08:16:07 +0800173out:
174 for (i = 0; i < tmp_nr; i++)
175 free(rec_tmp[i]);
176
177 free(rec_tmp);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100178 free(rec_argv);
179 return ret;
180}
181
182static int
183dump_raw_samples(struct perf_tool *tool,
184 union perf_event *event,
185 struct perf_sample *sample,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100186 struct machine *machine)
187{
188 struct perf_mem *mem = container_of(tool, struct perf_mem, tool);
189 struct addr_location al;
Kan Liang407ee5c92021-01-05 11:57:47 -0800190 const char *fmt, *field_sep;
Kan Liang06280e32021-01-05 11:57:48 -0800191 char str[PAGE_SIZE_NAME_LEN];
Stephane Eranian028f12e2013-01-24 16:10:38 +0100192
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -0300193 if (machine__resolve(machine, &al, sample) < 0) {
Stephane Eranian028f12e2013-01-24 16:10:38 +0100194 fprintf(stderr, "problem processing %d event, skipping it.\n",
195 event->header.type);
196 return -1;
197 }
198
199 if (al.filtered || (mem->hide_unresolved && al.sym == NULL))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300200 goto out_put;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100201
202 if (al.map != NULL)
203 al.map->dso->hit = 1;
204
Kan Liang407ee5c92021-01-05 11:57:47 -0800205 field_sep = symbol_conf.field_sep;
206 if (field_sep) {
207 fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s";
Kan Liangc35aeb92017-08-29 13:11:10 -0400208 } else {
Kan Liang407ee5c92021-01-05 11:57:47 -0800209 fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64"%s";
210 symbol_conf.field_sep = " ";
Kan Liangc35aeb92017-08-29 13:11:10 -0400211 }
Kan Liang407ee5c92021-01-05 11:57:47 -0800212 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
222 if (mem->phys_addr) {
223 printf("0x%016"PRIx64"%s",
224 sample->phys_addr,
225 symbol_conf.field_sep);
226 }
227
Kan Liang06280e32021-01-05 11:57:48 -0800228 if (mem->data_page_size) {
229 printf("%s%s",
230 get_page_size_name(sample->data_page_size, str),
231 symbol_conf.field_sep);
232 }
233
Kan Liang407ee5c92021-01-05 11:57:47 -0800234 if (field_sep)
235 fmt = "%"PRIu64"%s0x%"PRIx64"%s%s:%s\n";
236 else
237 fmt = "%5"PRIu64"%s0x%06"PRIx64"%s%s:%s\n";
238
239 printf(fmt,
240 sample->weight,
241 symbol_conf.field_sep,
242 sample->data_src,
243 symbol_conf.field_sep,
244 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
245 al.sym ? al.sym->name : "???");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300246out_put:
247 addr_location__put(&al);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100248 return 0;
249}
250
251static int process_sample_event(struct perf_tool *tool,
252 union perf_event *event,
253 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200254 struct evsel *evsel __maybe_unused,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100255 struct machine *machine)
256{
Arnaldo Carvalho de Melo8b640cc2013-12-19 17:00:45 -0300257 return dump_raw_samples(tool, event, sample, machine);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100258}
259
260static int report_raw_events(struct perf_mem *mem)
261{
Leo Yan13e5df1e2020-11-06 17:48:51 +0800262 struct itrace_synth_opts itrace_synth_opts = {
263 .set = true,
264 .mem = true, /* Only enable memory event */
265 .default_no_sample = true,
266 };
267
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100268 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100269 .path = input_name,
270 .mode = PERF_DATA_MODE_READ,
271 .force = mem->force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200272 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100273 int ret;
Namhyung Kim2681bd82021-07-19 15:31:49 -0700274 struct perf_session *session = perf_session__new(&data, &mem->tool);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100275
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530276 if (IS_ERR(session))
277 return PTR_ERR(session);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100278
Leo Yan13e5df1e2020-11-06 17:48:51 +0800279 session->itrace_synth_opts = &itrace_synth_opts;
280
Stephane Eranian028f12e2013-01-24 16:10:38 +0100281 if (mem->cpu_list) {
282 ret = perf_session__cpu_bitmap(session, mem->cpu_list,
283 mem->cpu_bitmap);
Taeung Song1df9fade2015-07-01 21:08:19 +0900284 if (ret < 0)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100285 goto out_delete;
286 }
287
Taeung Song1df9fade2015-07-01 21:08:19 +0900288 ret = symbol__init(&session->header.env);
289 if (ret < 0)
290 goto out_delete;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100291
Kan Liang407ee5c92021-01-05 11:57:47 -0800292 printf("# PID, TID, IP, ADDR, ");
293
Kan Liangc35aeb92017-08-29 13:11:10 -0400294 if (mem->phys_addr)
Kan Liang407ee5c92021-01-05 11:57:47 -0800295 printf("PHYS ADDR, ");
296
Kan Liang06280e32021-01-05 11:57:48 -0800297 if (mem->data_page_size)
298 printf("DATA PAGE SIZE, ");
299
Kan Liang407ee5c92021-01-05 11:57:47 -0800300 printf("LOCAL WEIGHT, DSRC, SYMBOL\n");
Stephane Eranian028f12e2013-01-24 16:10:38 +0100301
Taeung Song1df9fade2015-07-01 21:08:19 +0900302 ret = perf_session__process_events(session);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100303
304out_delete:
305 perf_session__delete(session);
Taeung Song1df9fade2015-07-01 21:08:19 +0900306 return ret;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100307}
Kan Liang2e7f5452020-12-16 10:57:59 -0800308static char *get_sort_order(struct perf_mem *mem)
309{
Kan Liang06280e32021-01-05 11:57:48 -0800310 bool has_extra_options = (mem->phys_addr | mem->data_page_size) ? true : false;
Kan Liang2e7f5452020-12-16 10:57:59 -0800311 char sort[128];
312
313 /*
314 * there is no weight (cost) associated with stores, so don't print
315 * the column
316 */
317 if (!(mem->operation & MEM_OPERATION_LOAD)) {
318 strcpy(sort, "--sort=mem,sym,dso,symbol_daddr,"
319 "dso_daddr,tlb,locked");
320 } else if (has_extra_options) {
321 strcpy(sort, "--sort=local_weight,mem,sym,dso,symbol_daddr,"
Kan Lianga054c292021-02-02 12:09:07 -0800322 "dso_daddr,snoop,tlb,locked,blocked");
Kan Liang2e7f5452020-12-16 10:57:59 -0800323 } else
324 return NULL;
325
326 if (mem->phys_addr)
327 strcat(sort, ",phys_daddr");
328
Kan Liang06280e32021-01-05 11:57:48 -0800329 if (mem->data_page_size)
330 strcat(sort, ",data_page_size");
331
Kan Liang2e7f5452020-12-16 10:57:59 -0800332 return strdup(sort);
333}
Stephane Eranian028f12e2013-01-24 16:10:38 +0100334
335static int report_events(int argc, const char **argv, struct perf_mem *mem)
336{
337 const char **rep_argv;
338 int ret, i = 0, j, rep_argc;
Kan Liang2e7f5452020-12-16 10:57:59 -0800339 char *new_sort_order;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100340
341 if (mem->dump_raw)
342 return report_raw_events(mem);
343
344 rep_argc = argc + 3;
345 rep_argv = calloc(rep_argc + 1, sizeof(char *));
346 if (!rep_argv)
347 return -1;
348
Stephane Eranian67121f82014-12-17 16:23:55 +0100349 rep_argv[i++] = "report";
350 rep_argv[i++] = "--mem-mode";
351 rep_argv[i++] = "-n"; /* display number of samples */
Stephane Eranian028f12e2013-01-24 16:10:38 +0100352
Kan Liang2e7f5452020-12-16 10:57:59 -0800353 new_sort_order = get_sort_order(mem);
354 if (new_sort_order)
355 rep_argv[i++] = new_sort_order;
Stephane Eranian028f12e2013-01-24 16:10:38 +0100356
357 for (j = 1; j < argc; j++, i++)
358 rep_argv[i] = argv[j];
359
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300360 ret = cmd_report(i, rep_argv);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100361 free(rep_argv);
362 return ret;
363}
364
Stephane Eranian67121f82014-12-17 16:23:55 +0100365struct mem_mode {
366 const char *name;
367 int mode;
368};
369
370#define MEM_OPT(n, m) \
371 { .name = n, .mode = (m) }
372
373#define MEM_END { .name = NULL }
374
375static const struct mem_mode mem_modes[]={
376 MEM_OPT("load", MEM_OPERATION_LOAD),
377 MEM_OPT("store", MEM_OPERATION_STORE),
378 MEM_END
379};
380
381static int
382parse_mem_ops(const struct option *opt, const char *str, int unset)
383{
384 int *mode = (int *)opt->value;
385 const struct mem_mode *m;
386 char *s, *os = NULL, *p;
387 int ret = -1;
388
389 if (unset)
390 return 0;
391
392 /* str may be NULL in case no arg is passed to -t */
393 if (str) {
394 /* because str is read-only */
395 s = os = strdup(str);
396 if (!s)
397 return -1;
398
399 /* reset mode */
400 *mode = 0;
401
402 for (;;) {
403 p = strchr(s, ',');
404 if (p)
405 *p = '\0';
406
407 for (m = mem_modes; m->name; m++) {
408 if (!strcasecmp(s, m->name))
409 break;
410 }
411 if (!m->name) {
412 fprintf(stderr, "unknown sampling op %s,"
413 " check man page\n", s);
414 goto error;
415 }
416
417 *mode |= m->mode;
418
419 if (!p)
420 break;
421
422 s = p + 1;
423 }
424 }
425 ret = 0;
426
427 if (*mode == 0)
428 *mode = MEM_OPERATION_LOAD;
429error:
430 free(os);
431 return ret;
432}
433
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300434int cmd_mem(int argc, const char **argv)
Stephane Eranian028f12e2013-01-24 16:10:38 +0100435{
436 struct stat st;
437 struct perf_mem mem = {
438 .tool = {
439 .sample = process_sample_event,
440 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200441 .mmap2 = perf_event__process_mmap2,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100442 .comm = perf_event__process_comm,
443 .lost = perf_event__process_lost,
444 .fork = perf_event__process_fork,
Leo Yan13e5df1e2020-11-06 17:48:51 +0800445 .attr = perf_event__process_attr,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100446 .build_id = perf_event__process_build_id,
Hari Bathinif3b36142017-03-08 02:11:43 +0530447 .namespaces = perf_event__process_namespaces,
Leo Yan13e5df1e2020-11-06 17:48:51 +0800448 .auxtrace_info = perf_event__process_auxtrace_info,
449 .auxtrace = perf_event__process_auxtrace,
450 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200451 .ordered_events = true,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100452 },
453 .input_name = "perf.data",
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300454 /*
455 * default to both load an store sampling
456 */
457 .operation = MEM_OPERATION_LOAD | MEM_OPERATION_STORE,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100458 };
459 const struct option mem_options[] = {
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300460 OPT_CALLBACK('t', "type", &mem.operation,
Stephane Eranian67121f82014-12-17 16:23:55 +0100461 "type", "memory operations(load,store) Default load,store",
462 parse_mem_ops),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100463 OPT_BOOLEAN('D', "dump-raw-samples", &mem.dump_raw,
464 "dump raw samples in ASCII"),
465 OPT_BOOLEAN('U', "hide-unresolved", &mem.hide_unresolved,
466 "Only display entries resolved to a symbol"),
467 OPT_STRING('i', "input", &input_name, "file",
468 "input file name"),
469 OPT_STRING('C', "cpu", &mem.cpu_list, "cpu",
470 "list of cpus to profile"),
Wang Nan8b8ca6e2015-03-20 02:57:52 +0000471 OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf.field_sep,
Stephane Eranian028f12e2013-01-24 16:10:38 +0100472 "separator",
473 "separator for columns, no spaces will be added"
474 " between columns '.' is reserved."),
Yunlong Song62a1a632015-04-02 21:47:15 +0800475 OPT_BOOLEAN('f', "force", &mem.force, "don't complain, do it"),
Kan Liangc35aeb92017-08-29 13:11:10 -0400476 OPT_BOOLEAN('p', "phys-data", &mem.phys_addr, "Record/Report sample physical addresses"),
Kan Liang06280e32021-01-05 11:57:48 -0800477 OPT_BOOLEAN(0, "data-page-size", &mem.data_page_size, "Record/Report sample data address page size"),
Stephane Eranian028f12e2013-01-24 16:10:38 +0100478 OPT_END()
479 };
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400480 const char *const mem_subcommands[] = { "record", "report", NULL };
481 const char *mem_usage[] = {
482 NULL,
483 NULL
484 };
Stephane Eranian028f12e2013-01-24 16:10:38 +0100485
Ramkumar Ramachandra8d2a2a12014-03-14 23:17:52 -0400486 argc = parse_options_subcommand(argc, argv, mem_options, mem_subcommands,
Andi Kleena7e9eab2018-04-06 13:38:09 -0700487 mem_usage, PARSE_OPT_KEEP_UNKNOWN);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100488
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300489 if (!argc || !(strncmp(argv[0], "rec", 3) || mem.operation))
Stephane Eranian028f12e2013-01-24 16:10:38 +0100490 usage_with_options(mem_usage, mem_options);
491
492 if (!mem.input_name || !strlen(mem.input_name)) {
493 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
494 mem.input_name = "-";
495 else
496 mem.input_name = "perf.data";
497 }
498
499 if (!strncmp(argv[0], "rec", 3))
Arnaldo Carvalho de Melo66024122014-12-17 13:53:27 -0300500 return __cmd_record(argc, argv, &mem);
Stephane Eranian028f12e2013-01-24 16:10:38 +0100501 else if (!strncmp(argv[0], "rep", 3))
502 return report_events(argc, argv, &mem);
503 else
504 usage_with_options(mem_usage, mem_options);
505
506 return 0;
507}