1 // SPDX-License-Identifier: GPL-2.0
8 #include <subcmd/parse-options.h>
9 #include "util/auxtrace.h"
10 #include "util/trace-event.h"
11 #include "util/tool.h"
12 #include "util/session.h"
13 #include "util/data.h"
14 #include "util/map_symbol.h"
15 #include "util/mem-events.h"
16 #include "util/debug.h"
19 #include "util/symbol.h"
20 #include "util/pmus.h"
21 #include "util/sample.h"
22 #include "util/sort.h"
23 #include "util/string2.h"
24 #include "util/util.h"
25 #include <linux/err.h>
27 #define MEM_OPERATION_LOAD 0x1
28 #define MEM_OPERATION_STORE 0x2
31 struct perf_tool tool
;
32 const char *input_name
;
44 DECLARE_BITMAP(cpu_bitmap
, MAX_NR_CPUS
);
47 static int parse_record_events(const struct option
*opt
,
48 const char *str
, int unset __maybe_unused
)
50 struct perf_mem
*mem
= (struct perf_mem
*)opt
->value
;
53 pmu
= perf_mem_events_find_pmu();
55 pr_err("failed: there is no PMU that supports perf mem\n");
59 if (!strcmp(str
, "list")) {
60 perf_pmu__mem_events_list(pmu
);
63 if (perf_pmu__mem_events_parse(pmu
, str
))
70 static int __cmd_record(int argc
, const char **argv
, struct perf_mem
*mem
,
71 const struct option
*options
)
73 int rec_argc
, i
= 0, j
;
75 const char **rec_argv
;
77 struct perf_mem_event
*e
;
79 const char * const record_usage
[] = {
80 "perf mem record [<options>] [<command>]",
81 "perf mem record [<options>] -- <command> [<options>]",
85 pmu
= perf_mem_events_find_pmu();
87 pr_err("failed: no PMU supports the memory events\n");
91 if (perf_pmu__mem_events_init()) {
92 pr_err("failed: memory events not supported\n");
96 argc
= parse_options(argc
, argv
, options
, record_usage
,
97 PARSE_OPT_KEEP_UNKNOWN
);
99 /* Max number of arguments multiplied by number of PMUs that can support them. */
100 rec_argc
= argc
+ 9 * (perf_pmu__mem_events_num_mem_pmus(pmu
) + 1);
105 rec_argv
= calloc(rec_argc
+ 1, sizeof(char *));
109 rec_argv
[i
++] = "record";
111 e
= perf_pmu__mem_events_ptr(pmu
, PERF_MEM_EVENTS__LOAD_STORE
);
114 * The load and store operations are required, use the event
115 * PERF_MEM_EVENTS__LOAD_STORE if it is supported.
118 (mem
->operation
& MEM_OPERATION_LOAD
) &&
119 (mem
->operation
& MEM_OPERATION_STORE
)) {
120 perf_mem_record
[PERF_MEM_EVENTS__LOAD_STORE
] = true;
121 rec_argv
[i
++] = "-W";
123 if (mem
->operation
& MEM_OPERATION_LOAD
)
124 perf_mem_record
[PERF_MEM_EVENTS__LOAD
] = true;
126 if (mem
->operation
& MEM_OPERATION_STORE
)
127 perf_mem_record
[PERF_MEM_EVENTS__STORE
] = true;
130 if (perf_mem_record
[PERF_MEM_EVENTS__LOAD
])
131 rec_argv
[i
++] = "-W";
133 rec_argv
[i
++] = "-d";
136 rec_argv
[i
++] = "--phys-data";
138 if (mem
->data_page_size
)
139 rec_argv
[i
++] = "--data-page-size";
142 ret
= perf_mem_events__record_args(rec_argv
, &i
);
148 rec_argv
[i
++] = "--all-user";
151 rec_argv
[i
++] = "--all-kernel";
154 rec_argv
[i
++] = "-C";
155 rec_argv
[i
++] = mem
->cpu_list
;
158 for (j
= 0; j
< argc
; j
++, i
++)
159 rec_argv
[i
] = argv
[j
];
162 pr_debug("calling: record ");
164 for (j
= start
; j
< end
; j
++)
165 pr_debug("%s ", rec_argv
[j
]);
170 ret
= cmd_record(i
, rec_argv
);
177 dump_raw_samples(const struct perf_tool
*tool
,
178 union perf_event
*event
,
179 struct perf_sample
*sample
,
180 struct machine
*machine
)
182 struct perf_mem
*mem
= container_of(tool
, struct perf_mem
, tool
);
183 struct addr_location al
;
184 const char *fmt
, *field_sep
;
185 char str
[PAGE_SIZE_NAME_LEN
];
186 struct dso
*dso
= NULL
;
188 addr_location__init(&al
);
189 if (machine__resolve(machine
, &al
, sample
) < 0) {
190 fprintf(stderr
, "problem processing %d event, skipping it.\n",
192 addr_location__exit(&al
);
196 if (al
.filtered
|| (mem
->hide_unresolved
&& al
.sym
== NULL
))
199 if (al
.map
!= NULL
) {
200 dso
= map__dso(al
.map
);
205 field_sep
= symbol_conf
.field_sep
;
207 fmt
= "%d%s%d%s0x%"PRIx64
"%s0x%"PRIx64
"%s";
209 fmt
= "%5d%s%5d%s0x%016"PRIx64
"%s0x016%"PRIx64
"%s";
210 symbol_conf
.field_sep
= " ";
214 symbol_conf
.field_sep
,
216 symbol_conf
.field_sep
,
218 symbol_conf
.field_sep
,
220 symbol_conf
.field_sep
);
222 if (mem
->phys_addr
) {
223 printf("0x%016"PRIx64
"%s",
225 symbol_conf
.field_sep
);
228 if (mem
->data_page_size
) {
230 get_page_size_name(sample
->data_page_size
, str
),
231 symbol_conf
.field_sep
);
235 fmt
= "%"PRIu64
"%s0x%"PRIx64
"%s%s:%s\n";
237 fmt
= "%5"PRIu64
"%s0x%06"PRIx64
"%s%s:%s\n";
241 symbol_conf
.field_sep
,
243 symbol_conf
.field_sep
,
244 dso
? dso__long_name(dso
) : "???",
245 al
.sym
? al
.sym
->name
: "???");
247 addr_location__exit(&al
);
251 static int process_sample_event(const struct perf_tool
*tool
,
252 union perf_event
*event
,
253 struct perf_sample
*sample
,
254 struct evsel
*evsel __maybe_unused
,
255 struct machine
*machine
)
257 return dump_raw_samples(tool
, event
, sample
, machine
);
260 static int report_raw_events(struct perf_mem
*mem
)
262 struct itrace_synth_opts itrace_synth_opts
= {
264 .mem
= true, /* Only enable memory event */
265 .default_no_sample
= true,
268 struct perf_data data
= {
270 .mode
= PERF_DATA_MODE_READ
,
274 struct perf_session
*session
;
276 perf_tool__init(&mem
->tool
, /*ordered_events=*/true);
277 mem
->tool
.sample
= process_sample_event
;
278 mem
->tool
.mmap
= perf_event__process_mmap
;
279 mem
->tool
.mmap2
= perf_event__process_mmap2
;
280 mem
->tool
.comm
= perf_event__process_comm
;
281 mem
->tool
.lost
= perf_event__process_lost
;
282 mem
->tool
.fork
= perf_event__process_fork
;
283 mem
->tool
.attr
= perf_event__process_attr
;
284 mem
->tool
.build_id
= perf_event__process_build_id
;
285 mem
->tool
.namespaces
= perf_event__process_namespaces
;
286 mem
->tool
.auxtrace_info
= perf_event__process_auxtrace_info
;
287 mem
->tool
.auxtrace
= perf_event__process_auxtrace
;
288 mem
->tool
.auxtrace_error
= perf_event__process_auxtrace_error
;
290 session
= perf_session__new(&data
, &mem
->tool
);
293 return PTR_ERR(session
);
295 session
->itrace_synth_opts
= &itrace_synth_opts
;
298 ret
= perf_session__cpu_bitmap(session
, mem
->cpu_list
,
304 ret
= symbol__init(&session
->header
.env
);
308 printf("# PID, TID, IP, ADDR, ");
311 printf("PHYS ADDR, ");
313 if (mem
->data_page_size
)
314 printf("DATA PAGE SIZE, ");
316 printf("LOCAL WEIGHT, DSRC, SYMBOL\n");
318 ret
= perf_session__process_events(session
);
321 perf_session__delete(session
);
325 static char *get_sort_order(struct perf_mem
*mem
)
327 bool has_extra_options
= (mem
->phys_addr
| mem
->data_page_size
) ? true : false;
331 scnprintf(sort
, sizeof(sort
), "--sort=%s", mem
->sort_key
);
332 else if (mem
->data_type
)
333 strcpy(sort
, "--sort=mem,snoop,tlb,type");
335 * there is no weight (cost) associated with stores, so don't print
338 else if (!(mem
->operation
& MEM_OPERATION_LOAD
)) {
339 strcpy(sort
, "--sort=mem,sym,dso,symbol_daddr,"
340 "dso_daddr,tlb,locked");
341 } else if (has_extra_options
) {
342 strcpy(sort
, "--sort=local_weight,mem,sym,dso,symbol_daddr,"
343 "dso_daddr,snoop,tlb,locked,blocked");
348 strcat(sort
, ",phys_daddr");
350 if (mem
->data_page_size
)
351 strcat(sort
, ",data_page_size");
353 /* make sure it has 'type' sort key even -s option is used */
354 if (mem
->data_type
&& !strstr(sort
, "type"))
355 strcat(sort
, ",type");
360 static int __cmd_report(int argc
, const char **argv
, struct perf_mem
*mem
,
361 const struct option
*options
)
363 const char **rep_argv
;
364 int ret
, i
= 0, j
, rep_argc
;
365 char *new_sort_order
;
366 const char * const report_usage
[] = {
367 "perf mem report [<options>]",
371 argc
= parse_options(argc
, argv
, options
, report_usage
,
372 PARSE_OPT_KEEP_UNKNOWN
);
375 return report_raw_events(mem
);
378 rep_argv
= calloc(rep_argc
+ 1, sizeof(char *));
382 rep_argv
[i
++] = "report";
383 rep_argv
[i
++] = "--mem-mode";
384 rep_argv
[i
++] = "-n"; /* display number of samples */
386 new_sort_order
= get_sort_order(mem
);
388 rep_argv
[i
++] = new_sort_order
;
390 for (j
= 0; j
< argc
; j
++, i
++)
391 rep_argv
[i
] = argv
[j
];
393 ret
= cmd_report(i
, rep_argv
);
394 free(new_sort_order
);
404 #define MEM_OPT(n, m) \
405 { .name = n, .mode = (m) }
407 #define MEM_END { .name = NULL }
409 static const struct mem_mode mem_modes
[]={
410 MEM_OPT("load", MEM_OPERATION_LOAD
),
411 MEM_OPT("store", MEM_OPERATION_STORE
),
416 parse_mem_ops(const struct option
*opt
, const char *str
, int unset
)
418 int *mode
= (int *)opt
->value
;
419 const struct mem_mode
*m
;
420 char *s
, *os
= NULL
, *p
;
426 /* str may be NULL in case no arg is passed to -t */
428 /* because str is read-only */
429 s
= os
= strdup(str
);
441 for (m
= mem_modes
; m
->name
; m
++) {
442 if (!strcasecmp(s
, m
->name
))
446 fprintf(stderr
, "unknown sampling op %s,"
447 " check man page\n", s
);
462 *mode
= MEM_OPERATION_LOAD
;
468 int cmd_mem(int argc
, const char **argv
)
471 struct perf_mem mem
= {
472 .input_name
= "perf.data",
474 * default to both load an store sampling
476 .operation
= MEM_OPERATION_LOAD
| MEM_OPERATION_STORE
,
478 char *sort_order_help
= sort_help("sort by key(s):", SORT_MODE__MEMORY
);
479 const struct option mem_options
[] = {
480 OPT_CALLBACK('t', "type", &mem
.operation
,
481 "type", "memory operations(load,store) Default load,store",
483 OPT_STRING('C', "cpu", &mem
.cpu_list
, "cpu",
484 "list of cpus to profile"),
485 OPT_BOOLEAN('f', "force", &mem
.force
, "don't complain, do it"),
486 OPT_INCR('v', "verbose", &verbose
,
487 "be more verbose (show counter open errors, etc)"),
488 OPT_BOOLEAN('p', "phys-data", &mem
.phys_addr
, "Record/Report sample physical addresses"),
489 OPT_BOOLEAN(0, "data-page-size", &mem
.data_page_size
, "Record/Report sample data address page size"),
492 const struct option record_options
[] = {
493 OPT_CALLBACK('e', "event", &mem
, "event",
494 "event selector. use 'perf mem record -e list' to list available events",
495 parse_record_events
),
496 OPT_UINTEGER(0, "ldlat", &perf_mem_events__loads_ldlat
, "mem-loads latency"),
497 OPT_BOOLEAN('U', "all-user", &mem
.all_user
, "collect only user level data"),
498 OPT_BOOLEAN('K', "all-kernel", &mem
.all_kernel
, "collect only kernel level data"),
499 OPT_PARENT(mem_options
)
501 const struct option report_options
[] = {
502 OPT_BOOLEAN('D', "dump-raw-samples", &mem
.dump_raw
,
503 "dump raw samples in ASCII"),
504 OPT_BOOLEAN('U', "hide-unresolved", &mem
.hide_unresolved
,
505 "Only display entries resolved to a symbol"),
506 OPT_STRING('i', "input", &input_name
, "file",
508 OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf
.field_sep
,
510 "separator for columns, no spaces will be added"
511 " between columns '.' is reserved."),
512 OPT_STRING('s', "sort", &mem
.sort_key
, "key[,key2...]",
514 OPT_BOOLEAN('T', "type-profile", &mem
.data_type
,
515 "Show data-type profile result"),
516 OPT_PARENT(mem_options
)
518 const char *const mem_subcommands
[] = { "record", "report", NULL
};
519 const char *mem_usage
[] = {
524 argc
= parse_options_subcommand(argc
, argv
, mem_options
, mem_subcommands
,
525 mem_usage
, PARSE_OPT_STOP_AT_NON_OPTION
);
527 if (!argc
|| !(strncmp(argv
[0], "rec", 3) || mem
.operation
))
528 usage_with_options(mem_usage
, mem_options
);
530 if (!mem
.input_name
|| !strlen(mem
.input_name
)) {
531 if (!fstat(STDIN_FILENO
, &st
) && S_ISFIFO(st
.st_mode
))
532 mem
.input_name
= "-";
534 mem
.input_name
= "perf.data";
537 if (strlen(argv
[0]) > 2 && strstarts("record", argv
[0]))
538 return __cmd_record(argc
, argv
, &mem
, record_options
);
539 else if (strlen(argv
[0]) > 2 && strstarts("report", argv
[0]))
540 return __cmd_report(argc
, argv
, &mem
, report_options
);
542 usage_with_options(mem_usage
, mem_options
);
544 /* free usage string allocated by parse_options_subcommand */
545 free((void *)mem_usage
[0]);