4 #include "util/parse-options.h"
5 #include "util/trace-event.h"
7 #include "util/session.h"
10 #define MEM_OPERATION_LOAD 0x1
11 #define MEM_OPERATION_STORE 0x2
14 struct perf_tool tool
;
15 char const *input_name
;
21 DECLARE_BITMAP(cpu_bitmap
, MAX_NR_CPUS
);
24 static int __cmd_record(int argc
, const char **argv
, struct perf_mem
*mem
)
26 int rec_argc
, i
= 0, j
;
27 const char **rec_argv
;
30 rec_argc
= argc
+ 7; /* max number of arguments */
31 rec_argv
= calloc(rec_argc
+ 1, sizeof(char *));
35 rec_argv
[i
++] = "record";
37 if (mem
->operation
& MEM_OPERATION_LOAD
)
42 if (mem
->operation
& MEM_OPERATION_LOAD
) {
44 rec_argv
[i
++] = "cpu/mem-loads/pp";
47 if (mem
->operation
& MEM_OPERATION_STORE
) {
49 rec_argv
[i
++] = "cpu/mem-stores/pp";
52 for (j
= 1; j
< argc
; j
++, i
++)
53 rec_argv
[i
] = argv
[j
];
55 ret
= cmd_record(i
, rec_argv
, NULL
);
61 dump_raw_samples(struct perf_tool
*tool
,
62 union perf_event
*event
,
63 struct perf_sample
*sample
,
64 struct machine
*machine
)
66 struct perf_mem
*mem
= container_of(tool
, struct perf_mem
, tool
);
67 struct addr_location al
;
70 if (perf_event__preprocess_sample(event
, machine
, &al
, sample
) < 0) {
71 fprintf(stderr
, "problem processing %d event, skipping it.\n",
76 if (al
.filtered
|| (mem
->hide_unresolved
&& al
.sym
== NULL
))
82 if (symbol_conf
.field_sep
) {
83 fmt
= "%d%s%d%s0x%"PRIx64
"%s0x%"PRIx64
"%s%"PRIu64
84 "%s0x%"PRIx64
"%s%s:%s\n";
86 fmt
= "%5d%s%5d%s0x%016"PRIx64
"%s0x016%"PRIx64
87 "%s%5"PRIu64
"%s0x%06"PRIx64
"%s%s:%s\n";
88 symbol_conf
.field_sep
= " ";
93 symbol_conf
.field_sep
,
95 symbol_conf
.field_sep
,
97 symbol_conf
.field_sep
,
99 symbol_conf
.field_sep
,
101 symbol_conf
.field_sep
,
103 symbol_conf
.field_sep
,
104 al
.map
? (al
.map
->dso
? al
.map
->dso
->long_name
: "???") : "???",
105 al
.sym
? al
.sym
->name
: "???");
110 static int process_sample_event(struct perf_tool
*tool
,
111 union perf_event
*event
,
112 struct perf_sample
*sample
,
113 struct perf_evsel
*evsel __maybe_unused
,
114 struct machine
*machine
)
116 return dump_raw_samples(tool
, event
, sample
, machine
);
119 static int report_raw_events(struct perf_mem
*mem
)
121 struct perf_data_file file
= {
123 .mode
= PERF_DATA_MODE_READ
,
128 struct perf_session
*session
= perf_session__new(&file
, false,
135 ret
= perf_session__cpu_bitmap(session
, mem
->cpu_list
,
141 if (symbol__init(&session
->header
.env
) < 0)
144 printf("# PID, TID, IP, ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
146 err
= perf_session__process_events(session
);
153 perf_session__delete(session
);
157 static int report_events(int argc
, const char **argv
, struct perf_mem
*mem
)
159 const char **rep_argv
;
160 int ret
, i
= 0, j
, rep_argc
;
163 return report_raw_events(mem
);
166 rep_argv
= calloc(rep_argc
+ 1, sizeof(char *));
170 rep_argv
[i
++] = "report";
171 rep_argv
[i
++] = "--mem-mode";
172 rep_argv
[i
++] = "-n"; /* display number of samples */
175 * there is no weight (cost) associated with stores, so don't print
178 if (!(mem
->operation
& MEM_OPERATION_LOAD
))
179 rep_argv
[i
++] = "--sort=mem,sym,dso,symbol_daddr,"
180 "dso_daddr,tlb,locked";
182 for (j
= 1; j
< argc
; j
++, i
++)
183 rep_argv
[i
] = argv
[j
];
185 ret
= cmd_report(i
, rep_argv
, NULL
);
195 #define MEM_OPT(n, m) \
196 { .name = n, .mode = (m) }
198 #define MEM_END { .name = NULL }
200 static const struct mem_mode mem_modes
[]={
201 MEM_OPT("load", MEM_OPERATION_LOAD
),
202 MEM_OPT("store", MEM_OPERATION_STORE
),
207 parse_mem_ops(const struct option
*opt
, const char *str
, int unset
)
209 int *mode
= (int *)opt
->value
;
210 const struct mem_mode
*m
;
211 char *s
, *os
= NULL
, *p
;
217 /* str may be NULL in case no arg is passed to -t */
219 /* because str is read-only */
220 s
= os
= strdup(str
);
232 for (m
= mem_modes
; m
->name
; m
++) {
233 if (!strcasecmp(s
, m
->name
))
237 fprintf(stderr
, "unknown sampling op %s,"
238 " check man page\n", s
);
253 *mode
= MEM_OPERATION_LOAD
;
259 int cmd_mem(int argc
, const char **argv
, const char *prefix __maybe_unused
)
262 struct perf_mem mem
= {
264 .sample
= process_sample_event
,
265 .mmap
= perf_event__process_mmap
,
266 .mmap2
= perf_event__process_mmap2
,
267 .comm
= perf_event__process_comm
,
268 .lost
= perf_event__process_lost
,
269 .fork
= perf_event__process_fork
,
270 .build_id
= perf_event__process_build_id
,
271 .ordered_events
= true,
273 .input_name
= "perf.data",
275 * default to both load an store sampling
277 .operation
= MEM_OPERATION_LOAD
| MEM_OPERATION_STORE
,
279 const struct option mem_options
[] = {
280 OPT_CALLBACK('t', "type", &mem
.operation
,
281 "type", "memory operations(load,store) Default load,store",
283 OPT_BOOLEAN('D', "dump-raw-samples", &mem
.dump_raw
,
284 "dump raw samples in ASCII"),
285 OPT_BOOLEAN('U', "hide-unresolved", &mem
.hide_unresolved
,
286 "Only display entries resolved to a symbol"),
287 OPT_STRING('i', "input", &input_name
, "file",
289 OPT_STRING('C', "cpu", &mem
.cpu_list
, "cpu",
290 "list of cpus to profile"),
291 OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf
.field_sep
,
293 "separator for columns, no spaces will be added"
294 " between columns '.' is reserved."),
295 OPT_BOOLEAN('f', "force", &mem
.force
, "don't complain, do it"),
298 const char *const mem_subcommands
[] = { "record", "report", NULL
};
299 const char *mem_usage
[] = {
305 argc
= parse_options_subcommand(argc
, argv
, mem_options
, mem_subcommands
,
306 mem_usage
, PARSE_OPT_STOP_AT_NON_OPTION
);
308 if (!argc
|| !(strncmp(argv
[0], "rec", 3) || mem
.operation
))
309 usage_with_options(mem_usage
, mem_options
);
311 if (!mem
.input_name
|| !strlen(mem
.input_name
)) {
312 if (!fstat(STDIN_FILENO
, &st
) && S_ISFIFO(st
.st_mode
))
313 mem
.input_name
= "-";
315 mem
.input_name
= "perf.data";
318 if (!strncmp(argv
[0], "rec", 3))
319 return __cmd_record(argc
, argv
, &mem
);
320 else if (!strncmp(argv
[0], "rep", 3))
321 return report_events(argc
, argv
, &mem
);
323 usage_with_options(mem_usage
, mem_options
);