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
: "???");
107 addr_location__put(&al
);
111 static int process_sample_event(struct perf_tool
*tool
,
112 union perf_event
*event
,
113 struct perf_sample
*sample
,
114 struct perf_evsel
*evsel __maybe_unused
,
115 struct machine
*machine
)
117 return dump_raw_samples(tool
, event
, sample
, machine
);
120 static int report_raw_events(struct perf_mem
*mem
)
122 struct perf_data_file file
= {
124 .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 ret
= symbol__init(&session
->header
.env
);
145 printf("# PID, TID, IP, ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
147 ret
= perf_session__process_events(session
);
150 perf_session__delete(session
);
154 static int report_events(int argc
, const char **argv
, struct perf_mem
*mem
)
156 const char **rep_argv
;
157 int ret
, i
= 0, j
, rep_argc
;
160 return report_raw_events(mem
);
163 rep_argv
= calloc(rep_argc
+ 1, sizeof(char *));
167 rep_argv
[i
++] = "report";
168 rep_argv
[i
++] = "--mem-mode";
169 rep_argv
[i
++] = "-n"; /* display number of samples */
172 * there is no weight (cost) associated with stores, so don't print
175 if (!(mem
->operation
& MEM_OPERATION_LOAD
))
176 rep_argv
[i
++] = "--sort=mem,sym,dso,symbol_daddr,"
177 "dso_daddr,tlb,locked";
179 for (j
= 1; j
< argc
; j
++, i
++)
180 rep_argv
[i
] = argv
[j
];
182 ret
= cmd_report(i
, rep_argv
, NULL
);
192 #define MEM_OPT(n, m) \
193 { .name = n, .mode = (m) }
195 #define MEM_END { .name = NULL }
197 static const struct mem_mode mem_modes
[]={
198 MEM_OPT("load", MEM_OPERATION_LOAD
),
199 MEM_OPT("store", MEM_OPERATION_STORE
),
204 parse_mem_ops(const struct option
*opt
, const char *str
, int unset
)
206 int *mode
= (int *)opt
->value
;
207 const struct mem_mode
*m
;
208 char *s
, *os
= NULL
, *p
;
214 /* str may be NULL in case no arg is passed to -t */
216 /* because str is read-only */
217 s
= os
= strdup(str
);
229 for (m
= mem_modes
; m
->name
; m
++) {
230 if (!strcasecmp(s
, m
->name
))
234 fprintf(stderr
, "unknown sampling op %s,"
235 " check man page\n", s
);
250 *mode
= MEM_OPERATION_LOAD
;
256 int cmd_mem(int argc
, const char **argv
, const char *prefix __maybe_unused
)
259 struct perf_mem mem
= {
261 .sample
= process_sample_event
,
262 .mmap
= perf_event__process_mmap
,
263 .mmap2
= perf_event__process_mmap2
,
264 .comm
= perf_event__process_comm
,
265 .lost
= perf_event__process_lost
,
266 .fork
= perf_event__process_fork
,
267 .build_id
= perf_event__process_build_id
,
268 .ordered_events
= true,
270 .input_name
= "perf.data",
272 * default to both load an store sampling
274 .operation
= MEM_OPERATION_LOAD
| MEM_OPERATION_STORE
,
276 const struct option mem_options
[] = {
277 OPT_CALLBACK('t', "type", &mem
.operation
,
278 "type", "memory operations(load,store) Default load,store",
280 OPT_BOOLEAN('D', "dump-raw-samples", &mem
.dump_raw
,
281 "dump raw samples in ASCII"),
282 OPT_BOOLEAN('U', "hide-unresolved", &mem
.hide_unresolved
,
283 "Only display entries resolved to a symbol"),
284 OPT_STRING('i', "input", &input_name
, "file",
286 OPT_STRING('C', "cpu", &mem
.cpu_list
, "cpu",
287 "list of cpus to profile"),
288 OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf
.field_sep
,
290 "separator for columns, no spaces will be added"
291 " between columns '.' is reserved."),
292 OPT_BOOLEAN('f', "force", &mem
.force
, "don't complain, do it"),
295 const char *const mem_subcommands
[] = { "record", "report", NULL
};
296 const char *mem_usage
[] = {
302 argc
= parse_options_subcommand(argc
, argv
, mem_options
, mem_subcommands
,
303 mem_usage
, PARSE_OPT_STOP_AT_NON_OPTION
);
305 if (!argc
|| !(strncmp(argv
[0], "rec", 3) || mem
.operation
))
306 usage_with_options(mem_usage
, mem_options
);
308 if (!mem
.input_name
|| !strlen(mem
.input_name
)) {
309 if (!fstat(STDIN_FILENO
, &st
) && S_ISFIFO(st
.st_mode
))
310 mem
.input_name
= "-";
312 mem
.input_name
= "perf.data";
315 if (!strncmp(argv
[0], "rec", 3))
316 return __cmd_record(argc
, argv
, &mem
);
317 else if (!strncmp(argv
[0], "rep", 3))
318 return report_events(argc
, argv
, &mem
);
320 usage_with_options(mem_usage
, mem_options
);