blob: 54a7e2634d582812546d1ed1c85a0e80313019cd [file] [log] [blame]
Frederic Weisbecker1b290d62009-11-23 15:42:35 +01001#include "../../../include/linux/hw_breakpoint.h"
Ingo Molnar8ad8db32009-05-26 11:10:09 +02002#include "util.h"
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -03003#include "../perf.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02004#include "evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02005#include "evsel.h"
Ingo Molnar8ad8db32009-05-26 11:10:09 +02006#include "parse-options.h"
7#include "parse-events.h"
8#include "exec_cmd.h"
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -03009#include "string.h"
Arnaldo Carvalho de Melo5aab6212010-03-25 19:59:00 -030010#include "symbol.h"
Jason Baron5beeded2009-07-21 14:16:29 -040011#include "cache.h"
Arjan van de Ven8755a8f2009-09-12 07:52:51 +020012#include "header.h"
Clark Williams549104f2009-11-08 09:03:07 -060013#include "debugfs.h"
Ingo Molnar8ad8db32009-05-26 11:10:09 +020014
Ingo Molnar8ad8db32009-05-26 11:10:09 +020015struct event_symbol {
Ingo Molnar83a09442009-08-15 12:26:57 +020016 u8 type;
17 u64 config;
18 const char *symbol;
19 const char *alias;
Ingo Molnar8ad8db32009-05-26 11:10:09 +020020};
21
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +020022enum event_result {
23 EVT_FAILED,
24 EVT_HANDLED,
25 EVT_HANDLED_ALL
26};
27
Jason Baron5beeded2009-07-21 14:16:29 -040028char debugfs_path[MAXPATHLEN];
29
Jaswinder Singh Rajput51e26842009-06-22 16:43:14 +053030#define CHW(x) .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_##x
31#define CSW(x) .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_##x
Ingo Molnar8ad8db32009-05-26 11:10:09 +020032
Ingo Molnara21ca2c2009-06-06 09:58:57 +020033static struct event_symbol event_symbols[] = {
Jaswinder Singh Rajput74d5b582009-06-22 16:44:28 +053034 { CHW(CPU_CYCLES), "cpu-cycles", "cycles" },
35 { CHW(INSTRUCTIONS), "instructions", "" },
36 { CHW(CACHE_REFERENCES), "cache-references", "" },
37 { CHW(CACHE_MISSES), "cache-misses", "" },
38 { CHW(BRANCH_INSTRUCTIONS), "branch-instructions", "branches" },
39 { CHW(BRANCH_MISSES), "branch-misses", "" },
40 { CHW(BUS_CYCLES), "bus-cycles", "" },
Ingo Molnara21ca2c2009-06-06 09:58:57 +020041
Jaswinder Singh Rajput74d5b582009-06-22 16:44:28 +053042 { CSW(CPU_CLOCK), "cpu-clock", "" },
43 { CSW(TASK_CLOCK), "task-clock", "" },
Jaswinder Singh Rajputc0c22db2009-06-22 20:47:26 +053044 { CSW(PAGE_FAULTS), "page-faults", "faults" },
Jaswinder Singh Rajput74d5b582009-06-22 16:44:28 +053045 { CSW(PAGE_FAULTS_MIN), "minor-faults", "" },
46 { CSW(PAGE_FAULTS_MAJ), "major-faults", "" },
47 { CSW(CONTEXT_SWITCHES), "context-switches", "cs" },
48 { CSW(CPU_MIGRATIONS), "cpu-migrations", "migrations" },
Anton Blanchardf7d79862009-10-18 01:09:29 +000049 { CSW(ALIGNMENT_FAULTS), "alignment-faults", "" },
50 { CSW(EMULATION_FAULTS), "emulation-faults", "" },
Ingo Molnar8ad8db32009-05-26 11:10:09 +020051};
52
Ingo Molnarcdd6c482009-09-21 12:02:48 +020053#define __PERF_EVENT_FIELD(config, name) \
54 ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
Ingo Molnar52425192009-05-26 09:17:18 +020055
Ingo Molnarcdd6c482009-09-21 12:02:48 +020056#define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW)
57#define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG)
58#define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE)
59#define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT)
Ingo Molnar52425192009-05-26 09:17:18 +020060
Ingo Molnar83a09442009-08-15 12:26:57 +020061static const char *hw_event_names[] = {
Ingo Molnar8faf3b52009-06-06 13:58:12 +020062 "cycles",
Ingo Molnar52425192009-05-26 09:17:18 +020063 "instructions",
Ingo Molnar8faf3b52009-06-06 13:58:12 +020064 "cache-references",
65 "cache-misses",
Ingo Molnar52425192009-05-26 09:17:18 +020066 "branches",
Ingo Molnar8faf3b52009-06-06 13:58:12 +020067 "branch-misses",
68 "bus-cycles",
Ingo Molnar52425192009-05-26 09:17:18 +020069};
70
Ingo Molnar83a09442009-08-15 12:26:57 +020071static const char *sw_event_names[] = {
Ingo Molnar44175b62009-06-13 13:35:00 +020072 "cpu-clock-msecs",
73 "task-clock-msecs",
Ingo Molnar8faf3b52009-06-06 13:58:12 +020074 "page-faults",
75 "context-switches",
76 "CPU-migrations",
77 "minor-faults",
78 "major-faults",
Anton Blanchardf7d79862009-10-18 01:09:29 +000079 "alignment-faults",
80 "emulation-faults",
Ingo Molnar52425192009-05-26 09:17:18 +020081};
82
Ingo Molnar8326f442009-06-05 20:22:46 +020083#define MAX_ALIASES 8
84
Ingo Molnar83a09442009-08-15 12:26:57 +020085static const char *hw_cache[][MAX_ALIASES] = {
Anton Blanchard9590b7b2009-07-06 22:01:31 +100086 { "L1-dcache", "l1-d", "l1d", "L1-data", },
87 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
Jaswinder Singh Rajpute5c59542009-06-25 18:25:22 +053088 { "LLC", "L2" },
89 { "dTLB", "d-tlb", "Data-TLB", },
90 { "iTLB", "i-tlb", "Instruction-TLB", },
91 { "branch", "branches", "bpu", "btb", "bpc", },
Ingo Molnar8326f442009-06-05 20:22:46 +020092};
93
Ingo Molnar83a09442009-08-15 12:26:57 +020094static const char *hw_cache_op[][MAX_ALIASES] = {
Jaswinder Singh Rajpute5c59542009-06-25 18:25:22 +053095 { "load", "loads", "read", },
96 { "store", "stores", "write", },
97 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
Ingo Molnar8326f442009-06-05 20:22:46 +020098};
99
Ingo Molnar83a09442009-08-15 12:26:57 +0200100static const char *hw_cache_result[][MAX_ALIASES] = {
Jaswinder Singh Rajpute5c59542009-06-25 18:25:22 +0530101 { "refs", "Reference", "ops", "access", },
102 { "misses", "miss", },
Ingo Molnar8326f442009-06-05 20:22:46 +0200103};
104
Jaswinder Singh Rajput06813f62009-06-25 17:16:07 +0530105#define C(x) PERF_COUNT_HW_CACHE_##x
106#define CACHE_READ (1 << C(OP_READ))
107#define CACHE_WRITE (1 << C(OP_WRITE))
108#define CACHE_PREFETCH (1 << C(OP_PREFETCH))
109#define COP(x) (1 << x)
110
111/*
112 * cache operartion stat
113 * L1I : Read and prefetch only
114 * ITLB and BPU : Read-only
115 */
116static unsigned long hw_cache_stat[C(MAX)] = {
117 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
118 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
119 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
120 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
121 [C(ITLB)] = (CACHE_READ),
122 [C(BPU)] = (CACHE_READ),
123};
124
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300125#define for_each_subsystem(sys_dir, sys_dirent, sys_next) \
Jason Baronf6bdafe2009-07-21 12:20:22 -0400126 while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next) \
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300127 if (sys_dirent.d_type == DT_DIR && \
Jason Baronf6bdafe2009-07-21 12:20:22 -0400128 (strcmp(sys_dirent.d_name, ".")) && \
129 (strcmp(sys_dirent.d_name, "..")))
130
Peter Zijlstraae07b632009-08-06 16:48:54 +0200131static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
132{
133 char evt_path[MAXPATHLEN];
134 int fd;
135
136 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", debugfs_path,
137 sys_dir->d_name, evt_dir->d_name);
138 fd = open(evt_path, O_RDONLY);
139 if (fd < 0)
140 return -EINVAL;
141 close(fd);
142
143 return 0;
144}
145
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300146#define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) \
Jason Baronf6bdafe2009-07-21 12:20:22 -0400147 while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next) \
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300148 if (evt_dirent.d_type == DT_DIR && \
Jason Baronf6bdafe2009-07-21 12:20:22 -0400149 (strcmp(evt_dirent.d_name, ".")) && \
Peter Zijlstraae07b632009-08-06 16:48:54 +0200150 (strcmp(evt_dirent.d_name, "..")) && \
151 (!tp_event_has_id(&sys_dirent, &evt_dirent)))
Jason Baronf6bdafe2009-07-21 12:20:22 -0400152
Li Zefan270bbbe2009-09-17 16:34:51 +0800153#define MAX_EVENT_LENGTH 512
Jason Baronf6bdafe2009-07-21 12:20:22 -0400154
Jason Baronf6bdafe2009-07-21 12:20:22 -0400155
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200156struct tracepoint_path *tracepoint_id_to_path(u64 config)
Jason Baronf6bdafe2009-07-21 12:20:22 -0400157{
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200158 struct tracepoint_path *path = NULL;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400159 DIR *sys_dir, *evt_dir;
160 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400161 char id_buf[4];
Eric Dumazet725b1362009-09-24 15:39:09 +0200162 int fd;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400163 u64 id;
164 char evt_path[MAXPATHLEN];
Eric Dumazet725b1362009-09-24 15:39:09 +0200165 char dir_path[MAXPATHLEN];
Jason Baronf6bdafe2009-07-21 12:20:22 -0400166
Clark Williams549104f2009-11-08 09:03:07 -0600167 if (debugfs_valid_mountpoint(debugfs_path))
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200168 return NULL;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400169
Jason Baron5beeded2009-07-21 14:16:29 -0400170 sys_dir = opendir(debugfs_path);
Jason Baronf6bdafe2009-07-21 12:20:22 -0400171 if (!sys_dir)
Eric Dumazet725b1362009-09-24 15:39:09 +0200172 return NULL;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400173
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300174 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
Eric Dumazet725b1362009-09-24 15:39:09 +0200175
176 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
177 sys_dirent.d_name);
178 evt_dir = opendir(dir_path);
179 if (!evt_dir)
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300180 continue;
Eric Dumazet725b1362009-09-24 15:39:09 +0200181
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300182 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
Eric Dumazet725b1362009-09-24 15:39:09 +0200183
184 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
Jason Baronf6bdafe2009-07-21 12:20:22 -0400185 evt_dirent.d_name);
Eric Dumazet725b1362009-09-24 15:39:09 +0200186 fd = open(evt_path, O_RDONLY);
Jason Baronf6bdafe2009-07-21 12:20:22 -0400187 if (fd < 0)
188 continue;
189 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
190 close(fd);
191 continue;
192 }
193 close(fd);
194 id = atoll(id_buf);
195 if (id == config) {
196 closedir(evt_dir);
197 closedir(sys_dir);
Julia Lawall59b4cae2009-12-06 10:16:30 +0100198 path = zalloc(sizeof(*path));
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200199 path->system = malloc(MAX_EVENT_LENGTH);
200 if (!path->system) {
201 free(path);
202 return NULL;
203 }
204 path->name = malloc(MAX_EVENT_LENGTH);
205 if (!path->name) {
206 free(path->system);
207 free(path);
208 return NULL;
209 }
210 strncpy(path->system, sys_dirent.d_name,
211 MAX_EVENT_LENGTH);
212 strncpy(path->name, evt_dirent.d_name,
213 MAX_EVENT_LENGTH);
214 return path;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400215 }
216 }
217 closedir(evt_dir);
218 }
219
Jason Baronf6bdafe2009-07-21 12:20:22 -0400220 closedir(sys_dir);
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +0200221 return NULL;
222}
223
224#define TP_PATH_LEN (MAX_EVENT_LENGTH * 2 + 1)
225static const char *tracepoint_id_to_name(u64 config)
226{
227 static char buf[TP_PATH_LEN];
228 struct tracepoint_path *path;
229
230 path = tracepoint_id_to_path(config);
231 if (path) {
232 snprintf(buf, TP_PATH_LEN, "%s:%s", path->system, path->name);
233 free(path->name);
234 free(path->system);
235 free(path);
236 } else
237 snprintf(buf, TP_PATH_LEN, "%s:%s", "unknown", "unknown");
238
239 return buf;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400240}
241
Jaswinder Singh Rajput06813f62009-06-25 17:16:07 +0530242static int is_cache_op_valid(u8 cache_type, u8 cache_op)
243{
244 if (hw_cache_stat[cache_type] & COP(cache_op))
245 return 1; /* valid */
246 else
247 return 0; /* invalid */
248}
249
Jaswinder Singh Rajpute5c59542009-06-25 18:25:22 +0530250static char *event_cache_name(u8 cache_type, u8 cache_op, u8 cache_result)
251{
252 static char name[50];
253
254 if (cache_result) {
255 sprintf(name, "%s-%s-%s", hw_cache[cache_type][0],
256 hw_cache_op[cache_op][0],
257 hw_cache_result[cache_result][0]);
258 } else {
259 sprintf(name, "%s-%s", hw_cache[cache_type][0],
260 hw_cache_op[cache_op][1]);
261 }
262
263 return name;
264}
265
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200266const char *event_name(struct perf_evsel *evsel)
Ingo Molnar52425192009-05-26 09:17:18 +0200267{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200268 u64 config = evsel->attr.config;
269 int type = evsel->attr.type;
Peter Zijlstra8f18aec2009-08-06 19:40:28 +0200270
Stephane Eranianf0c55bc2011-02-16 15:10:01 +0200271 if (evsel->name)
272 return evsel->name;
273
Peter Zijlstra8f18aec2009-08-06 19:40:28 +0200274 return __event_name(type, config);
275}
276
Ingo Molnar83a09442009-08-15 12:26:57 +0200277const char *__event_name(int type, u64 config)
Peter Zijlstra8f18aec2009-08-06 19:40:28 +0200278{
Ingo Molnar52425192009-05-26 09:17:18 +0200279 static char buf[32];
280
Peter Zijlstra8f18aec2009-08-06 19:40:28 +0200281 if (type == PERF_TYPE_RAW) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200282 sprintf(buf, "raw 0x%" PRIx64, config);
Ingo Molnar52425192009-05-26 09:17:18 +0200283 return buf;
284 }
285
286 switch (type) {
287 case PERF_TYPE_HARDWARE:
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200288 if (config < PERF_COUNT_HW_MAX)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200289 return hw_event_names[config];
Ingo Molnar52425192009-05-26 09:17:18 +0200290 return "unknown-hardware";
291
Ingo Molnar8326f442009-06-05 20:22:46 +0200292 case PERF_TYPE_HW_CACHE: {
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000293 u8 cache_type, cache_op, cache_result;
Ingo Molnar8326f442009-06-05 20:22:46 +0200294
295 cache_type = (config >> 0) & 0xff;
296 if (cache_type > PERF_COUNT_HW_CACHE_MAX)
297 return "unknown-ext-hardware-cache-type";
298
299 cache_op = (config >> 8) & 0xff;
Ingo Molnar8faf3b52009-06-06 13:58:12 +0200300 if (cache_op > PERF_COUNT_HW_CACHE_OP_MAX)
301 return "unknown-ext-hardware-cache-op";
Ingo Molnar8326f442009-06-05 20:22:46 +0200302
303 cache_result = (config >> 16) & 0xff;
Ingo Molnar8faf3b52009-06-06 13:58:12 +0200304 if (cache_result > PERF_COUNT_HW_CACHE_RESULT_MAX)
305 return "unknown-ext-hardware-cache-result";
Ingo Molnar8326f442009-06-05 20:22:46 +0200306
Jaswinder Singh Rajput06813f62009-06-25 17:16:07 +0530307 if (!is_cache_op_valid(cache_type, cache_op))
308 return "invalid-cache";
Ingo Molnar8326f442009-06-05 20:22:46 +0200309
Jaswinder Singh Rajpute5c59542009-06-25 18:25:22 +0530310 return event_cache_name(cache_type, cache_op, cache_result);
Ingo Molnar8326f442009-06-05 20:22:46 +0200311 }
312
Ingo Molnar52425192009-05-26 09:17:18 +0200313 case PERF_TYPE_SOFTWARE:
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200314 if (config < PERF_COUNT_SW_MAX)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200315 return sw_event_names[config];
Ingo Molnar52425192009-05-26 09:17:18 +0200316 return "unknown-software";
317
Jason Baronf6bdafe2009-07-21 12:20:22 -0400318 case PERF_TYPE_TRACEPOINT:
319 return tracepoint_id_to_name(config);
320
Ingo Molnar52425192009-05-26 09:17:18 +0200321 default:
322 break;
323 }
324
325 return "unknown";
326}
327
Ingo Molnar83a09442009-08-15 12:26:57 +0200328static int parse_aliases(const char **str, const char *names[][MAX_ALIASES], int size)
Ingo Molnar8326f442009-06-05 20:22:46 +0200329{
330 int i, j;
Paul Mackerras61c45982009-07-01 13:04:34 +1000331 int n, longest = -1;
Ingo Molnar8326f442009-06-05 20:22:46 +0200332
333 for (i = 0; i < size; i++) {
Paul Mackerras61c45982009-07-01 13:04:34 +1000334 for (j = 0; j < MAX_ALIASES && names[i][j]; j++) {
335 n = strlen(names[i][j]);
336 if (n > longest && !strncasecmp(*str, names[i][j], n))
337 longest = n;
338 }
339 if (longest > 0) {
340 *str += longest;
341 return i;
Ingo Molnar8326f442009-06-05 20:22:46 +0200342 }
343 }
344
Ingo Molnar89536452009-06-06 21:04:17 +0200345 return -1;
Ingo Molnar8326f442009-06-05 20:22:46 +0200346}
347
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200348static enum event_result
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200349parse_generic_hw_event(const char **str, struct perf_event_attr *attr)
Ingo Molnar8326f442009-06-05 20:22:46 +0200350{
Paul Mackerras61c45982009-07-01 13:04:34 +1000351 const char *s = *str;
352 int cache_type = -1, cache_op = -1, cache_result = -1;
Ingo Molnar8326f442009-06-05 20:22:46 +0200353
Paul Mackerras61c45982009-07-01 13:04:34 +1000354 cache_type = parse_aliases(&s, hw_cache, PERF_COUNT_HW_CACHE_MAX);
Ingo Molnar8326f442009-06-05 20:22:46 +0200355 /*
356 * No fallback - if we cannot get a clear cache type
357 * then bail out:
358 */
359 if (cache_type == -1)
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200360 return EVT_FAILED;
Ingo Molnar8326f442009-06-05 20:22:46 +0200361
Paul Mackerras61c45982009-07-01 13:04:34 +1000362 while ((cache_op == -1 || cache_result == -1) && *s == '-') {
363 ++s;
364
365 if (cache_op == -1) {
366 cache_op = parse_aliases(&s, hw_cache_op,
367 PERF_COUNT_HW_CACHE_OP_MAX);
368 if (cache_op >= 0) {
369 if (!is_cache_op_valid(cache_type, cache_op))
370 return 0;
371 continue;
372 }
373 }
374
375 if (cache_result == -1) {
376 cache_result = parse_aliases(&s, hw_cache_result,
377 PERF_COUNT_HW_CACHE_RESULT_MAX);
378 if (cache_result >= 0)
379 continue;
380 }
381
382 /*
383 * Can't parse this as a cache op or result, so back up
384 * to the '-'.
385 */
386 --s;
387 break;
388 }
389
Ingo Molnar8326f442009-06-05 20:22:46 +0200390 /*
391 * Fall back to reads:
392 */
Ingo Molnar89536452009-06-06 21:04:17 +0200393 if (cache_op == -1)
394 cache_op = PERF_COUNT_HW_CACHE_OP_READ;
Ingo Molnar8326f442009-06-05 20:22:46 +0200395
Ingo Molnar8326f442009-06-05 20:22:46 +0200396 /*
397 * Fall back to accesses:
398 */
399 if (cache_result == -1)
400 cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;
401
402 attr->config = cache_type | (cache_op << 8) | (cache_result << 16);
403 attr->type = PERF_TYPE_HW_CACHE;
404
Paul Mackerras61c45982009-07-01 13:04:34 +1000405 *str = s;
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200406 return EVT_HANDLED;
Ingo Molnar8326f442009-06-05 20:22:46 +0200407}
408
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200409static enum event_result
410parse_single_tracepoint_event(char *sys_name,
411 const char *evt_name,
412 unsigned int evt_length,
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200413 struct perf_event_attr *attr,
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200414 const char **strp)
415{
416 char evt_path[MAXPATHLEN];
417 char id_buf[4];
418 u64 id;
419 int fd;
420
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200421 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", debugfs_path,
422 sys_name, evt_name);
423
424 fd = open(evt_path, O_RDONLY);
425 if (fd < 0)
426 return EVT_FAILED;
427
428 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
429 close(fd);
430 return EVT_FAILED;
431 }
432
433 close(fd);
434 id = atoll(id_buf);
435 attr->config = id;
436 attr->type = PERF_TYPE_TRACEPOINT;
Corey Ashford4c635a42010-11-30 14:27:01 -0800437 *strp += strlen(sys_name) + evt_length + 1; /* + 1 for the ':' */
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200438
Stephane Eranian5710fca2010-04-21 18:06:01 +0200439 attr->sample_type |= PERF_SAMPLE_RAW;
440 attr->sample_type |= PERF_SAMPLE_TIME;
441 attr->sample_type |= PERF_SAMPLE_CPU;
442
443 attr->sample_period = 1;
444
445
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200446 return EVT_HANDLED;
447}
448
449/* sys + ':' + event + ':' + flags*/
450#define MAX_EVOPT_LEN (MAX_EVENT_LENGTH * 2 + 2 + 128)
451static enum event_result
Arnaldo Carvalho de Melo17ea1b72011-01-17 14:40:46 -0200452parse_multiple_tracepoint_event(const struct option *opt, char *sys_name,
453 const char *evt_exp, char *flags)
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200454{
455 char evt_path[MAXPATHLEN];
456 struct dirent *evt_ent;
457 DIR *evt_dir;
458
459 snprintf(evt_path, MAXPATHLEN, "%s/%s", debugfs_path, sys_name);
460 evt_dir = opendir(evt_path);
461
462 if (!evt_dir) {
463 perror("Can't open event dir");
464 return EVT_FAILED;
465 }
466
467 while ((evt_ent = readdir(evt_dir))) {
468 char event_opt[MAX_EVOPT_LEN + 1];
469 int len;
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200470
471 if (!strcmp(evt_ent->d_name, ".")
472 || !strcmp(evt_ent->d_name, "..")
473 || !strcmp(evt_ent->d_name, "enable")
474 || !strcmp(evt_ent->d_name, "filter"))
475 continue;
476
Masami Hiramatsufb1d2ed2010-01-05 17:47:17 -0500477 if (!strglobmatch(evt_ent->d_name, evt_exp))
478 continue;
479
Ulrich Drepper180570f2009-12-06 13:25:30 -0500480 len = snprintf(event_opt, MAX_EVOPT_LEN, "%s:%s%s%s", sys_name,
481 evt_ent->d_name, flags ? ":" : "",
482 flags ?: "");
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200483 if (len < 0)
484 return EVT_FAILED;
485
Arnaldo Carvalho de Melo17ea1b72011-01-17 14:40:46 -0200486 if (parse_events(opt, event_opt, 0))
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200487 return EVT_FAILED;
488 }
489
490 return EVT_HANDLED_ALL;
491}
492
Arnaldo Carvalho de Melo17ea1b72011-01-17 14:40:46 -0200493static enum event_result
494parse_tracepoint_event(const struct option *opt, const char **strp,
495 struct perf_event_attr *attr)
Jason Baronf6bdafe2009-07-21 12:20:22 -0400496{
497 const char *evt_name;
Corey Ashford4c635a42010-11-30 14:27:01 -0800498 char *flags = NULL, *comma_loc;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400499 char sys_name[MAX_EVENT_LENGTH];
Jason Baronf6bdafe2009-07-21 12:20:22 -0400500 unsigned int sys_length, evt_length;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400501
Clark Williams549104f2009-11-08 09:03:07 -0600502 if (debugfs_valid_mountpoint(debugfs_path))
Jason Baronf6bdafe2009-07-21 12:20:22 -0400503 return 0;
504
505 evt_name = strchr(*strp, ':');
506 if (!evt_name)
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200507 return EVT_FAILED;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400508
509 sys_length = evt_name - *strp;
510 if (sys_length >= MAX_EVENT_LENGTH)
511 return 0;
512
513 strncpy(sys_name, *strp, sys_length);
514 sys_name[sys_length] = '\0';
515 evt_name = evt_name + 1;
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200516
Corey Ashford4c635a42010-11-30 14:27:01 -0800517 comma_loc = strchr(evt_name, ',');
518 if (comma_loc) {
519 /* take the event name up to the comma */
520 evt_name = strndup(evt_name, comma_loc - evt_name);
521 }
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200522 flags = strchr(evt_name, ':');
523 if (flags) {
Ingo Molnar1fc35b22009-09-13 09:44:29 +0200524 /* split it out: */
525 evt_name = strndup(evt_name, flags - evt_name);
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200526 flags++;
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200527 }
528
Jason Baronf6bdafe2009-07-21 12:20:22 -0400529 evt_length = strlen(evt_name);
530 if (evt_length >= MAX_EVENT_LENGTH)
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200531 return EVT_FAILED;
Masami Hiramatsufb1d2ed2010-01-05 17:47:17 -0500532 if (strpbrk(evt_name, "*?")) {
Arnaldo Carvalho de Melodd9a9ad2011-01-17 14:25:06 -0200533 *strp += strlen(sys_name) + evt_length + 1; /* 1 == the ':' */
Arnaldo Carvalho de Melo17ea1b72011-01-17 14:40:46 -0200534 return parse_multiple_tracepoint_event(opt, sys_name, evt_name,
Masami Hiramatsufb1d2ed2010-01-05 17:47:17 -0500535 flags);
Han Pingtianf006d252011-01-06 17:39:22 +0800536 } else {
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200537 return parse_single_tracepoint_event(sys_name, evt_name,
Frederic Weisbeckerbdef3b02010-04-14 20:05:17 +0200538 evt_length, attr, strp);
Han Pingtianf006d252011-01-06 17:39:22 +0800539 }
Jason Baronf6bdafe2009-07-21 12:20:22 -0400540}
541
Frederic Weisbecker1b290d62009-11-23 15:42:35 +0100542static enum event_result
543parse_breakpoint_type(const char *type, const char **strp,
544 struct perf_event_attr *attr)
545{
546 int i;
547
548 for (i = 0; i < 3; i++) {
549 if (!type[i])
550 break;
551
552 switch (type[i]) {
553 case 'r':
554 attr->bp_type |= HW_BREAKPOINT_R;
555 break;
556 case 'w':
557 attr->bp_type |= HW_BREAKPOINT_W;
558 break;
559 case 'x':
560 attr->bp_type |= HW_BREAKPOINT_X;
561 break;
562 default:
563 return EVT_FAILED;
564 }
565 }
566 if (!attr->bp_type) /* Default */
567 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
568
569 *strp = type + i;
570
571 return EVT_HANDLED;
572}
573
574static enum event_result
575parse_breakpoint_event(const char **strp, struct perf_event_attr *attr)
576{
577 const char *target;
578 const char *type;
579 char *endaddr;
580 u64 addr;
581 enum event_result err;
582
583 target = strchr(*strp, ':');
584 if (!target)
585 return EVT_FAILED;
586
587 if (strncmp(*strp, "mem", target - *strp) != 0)
588 return EVT_FAILED;
589
590 target++;
591
592 addr = strtoull(target, &endaddr, 0);
593 if (target == endaddr)
594 return EVT_FAILED;
595
596 attr->bp_addr = addr;
597 *strp = endaddr;
598
599 type = strchr(target, ':');
600
601 /* If no type is defined, just rw as default */
602 if (!type) {
603 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
604 } else {
605 err = parse_breakpoint_type(++type, strp, attr);
606 if (err == EVT_FAILED)
607 return EVT_FAILED;
608 }
609
Frederic Weisbeckeraa59a482010-06-24 21:36:19 +0200610 /*
611 * We should find a nice way to override the access length
612 * Provide some defaults for now
613 */
614 if (attr->bp_type == HW_BREAKPOINT_X)
615 attr->bp_len = sizeof(long);
616 else
617 attr->bp_len = HW_BREAKPOINT_LEN_4;
618
Frederic Weisbecker1b290d62009-11-23 15:42:35 +0100619 attr->type = PERF_TYPE_BREAKPOINT;
620
621 return EVT_HANDLED;
622}
623
Jaswinder Singh Rajput74d5b582009-06-22 16:44:28 +0530624static int check_events(const char *str, unsigned int i)
625{
Paul Mackerras61c45982009-07-01 13:04:34 +1000626 int n;
Jaswinder Singh Rajput74d5b582009-06-22 16:44:28 +0530627
Paul Mackerras61c45982009-07-01 13:04:34 +1000628 n = strlen(event_symbols[i].symbol);
629 if (!strncmp(str, event_symbols[i].symbol, n))
630 return n;
631
632 n = strlen(event_symbols[i].alias);
633 if (n)
634 if (!strncmp(str, event_symbols[i].alias, n))
635 return n;
636 return 0;
637}
638
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200639static enum event_result
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200640parse_symbolic_event(const char **strp, struct perf_event_attr *attr)
Paul Mackerras61c45982009-07-01 13:04:34 +1000641{
642 const char *str = *strp;
643 unsigned int i;
644 int n;
645
646 for (i = 0; i < ARRAY_SIZE(event_symbols); i++) {
647 n = check_events(str, i);
648 if (n > 0) {
649 attr->type = event_symbols[i].type;
650 attr->config = event_symbols[i].config;
651 *strp = str + n;
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200652 return EVT_HANDLED;
Paul Mackerras61c45982009-07-01 13:04:34 +1000653 }
654 }
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200655 return EVT_FAILED;
Paul Mackerras61c45982009-07-01 13:04:34 +1000656}
657
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200658static enum event_result
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200659parse_raw_event(const char **strp, struct perf_event_attr *attr)
Paul Mackerras61c45982009-07-01 13:04:34 +1000660{
661 const char *str = *strp;
662 u64 config;
663 int n;
664
665 if (*str != 'r')
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200666 return EVT_FAILED;
Paul Mackerras61c45982009-07-01 13:04:34 +1000667 n = hex2u64(str + 1, &config);
668 if (n > 0) {
669 *strp = str + n + 1;
670 attr->type = PERF_TYPE_RAW;
671 attr->config = config;
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200672 return EVT_HANDLED;
Paul Mackerras61c45982009-07-01 13:04:34 +1000673 }
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200674 return EVT_FAILED;
Paul Mackerras61c45982009-07-01 13:04:34 +1000675}
676
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200677static enum event_result
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200678parse_numeric_event(const char **strp, struct perf_event_attr *attr)
Paul Mackerras61c45982009-07-01 13:04:34 +1000679{
680 const char *str = *strp;
681 char *endp;
682 unsigned long type;
683 u64 config;
684
685 type = strtoul(str, &endp, 0);
686 if (endp > str && type < PERF_TYPE_MAX && *endp == ':') {
687 str = endp + 1;
688 config = strtoul(str, &endp, 0);
689 if (endp > str) {
690 attr->type = type;
691 attr->config = config;
692 *strp = endp;
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200693 return EVT_HANDLED;
Paul Mackerras61c45982009-07-01 13:04:34 +1000694 }
695 }
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200696 return EVT_FAILED;
Paul Mackerras61c45982009-07-01 13:04:34 +1000697}
698
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200699static enum event_result
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200700parse_event_modifier(const char **strp, struct perf_event_attr *attr)
Paul Mackerras61c45982009-07-01 13:04:34 +1000701{
702 const char *str = *strp;
Peter Zijlstraab608342010-04-08 23:03:20 +0200703 int exclude = 0;
704 int eu = 0, ek = 0, eh = 0, precise = 0;
Paul Mackerras61c45982009-07-01 13:04:34 +1000705
706 if (*str++ != ':')
707 return 0;
708 while (*str) {
Peter Zijlstraab608342010-04-08 23:03:20 +0200709 if (*str == 'u') {
710 if (!exclude)
711 exclude = eu = ek = eh = 1;
Paul Mackerras61c45982009-07-01 13:04:34 +1000712 eu = 0;
Peter Zijlstraab608342010-04-08 23:03:20 +0200713 } else if (*str == 'k') {
714 if (!exclude)
715 exclude = eu = ek = eh = 1;
Paul Mackerras61c45982009-07-01 13:04:34 +1000716 ek = 0;
Peter Zijlstraab608342010-04-08 23:03:20 +0200717 } else if (*str == 'h') {
718 if (!exclude)
719 exclude = eu = ek = eh = 1;
Paul Mackerras61c45982009-07-01 13:04:34 +1000720 eh = 0;
Peter Zijlstraab608342010-04-08 23:03:20 +0200721 } else if (*str == 'p') {
722 precise++;
723 } else
Paul Mackerras61c45982009-07-01 13:04:34 +1000724 break;
Peter Zijlstraab608342010-04-08 23:03:20 +0200725
Paul Mackerras61c45982009-07-01 13:04:34 +1000726 ++str;
727 }
728 if (str >= *strp + 2) {
729 *strp = str;
730 attr->exclude_user = eu;
731 attr->exclude_kernel = ek;
732 attr->exclude_hv = eh;
Peter Zijlstraab608342010-04-08 23:03:20 +0200733 attr->precise_ip = precise;
Paul Mackerras61c45982009-07-01 13:04:34 +1000734 return 1;
735 }
Jaswinder Singh Rajput74d5b582009-06-22 16:44:28 +0530736 return 0;
737}
738
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200739/*
740 * Each event can have multiple symbolic names.
741 * Symbolic names are (almost) exactly matched.
742 */
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200743static enum event_result
Arnaldo Carvalho de Melo17ea1b72011-01-17 14:40:46 -0200744parse_event_symbols(const struct option *opt, const char **str,
745 struct perf_event_attr *attr)
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200746{
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200747 enum event_result ret;
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200748
Arnaldo Carvalho de Melo17ea1b72011-01-17 14:40:46 -0200749 ret = parse_tracepoint_event(opt, str, attr);
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200750 if (ret != EVT_FAILED)
751 goto modifier;
752
753 ret = parse_raw_event(str, attr);
754 if (ret != EVT_FAILED)
755 goto modifier;
756
757 ret = parse_numeric_event(str, attr);
758 if (ret != EVT_FAILED)
759 goto modifier;
760
761 ret = parse_symbolic_event(str, attr);
762 if (ret != EVT_FAILED)
763 goto modifier;
764
765 ret = parse_generic_hw_event(str, attr);
766 if (ret != EVT_FAILED)
767 goto modifier;
768
Frederic Weisbecker1b290d62009-11-23 15:42:35 +0100769 ret = parse_breakpoint_event(str, attr);
770 if (ret != EVT_FAILED)
771 goto modifier;
772
Marti Raudsepp85df6f62009-10-27 00:33:04 +0000773 fprintf(stderr, "invalid or unsupported event: '%s'\n", *str);
774 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200775 return EVT_FAILED;
776
777modifier:
Paul Mackerras61c45982009-07-01 13:04:34 +1000778 parse_event_modifier(str, attr);
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200779
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200780 return ret;
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200781}
782
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200783int parse_events(const struct option *opt, const char *str, int unset __used)
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200784{
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200785 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200786 struct perf_event_attr attr;
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200787 enum event_result ret;
Stephane Eranianf0c55bc2011-02-16 15:10:01 +0200788 const char *ostr;
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200789
Paul Mackerras61c45982009-07-01 13:04:34 +1000790 for (;;) {
Stephane Eranianf0c55bc2011-02-16 15:10:01 +0200791 ostr = str;
Paul Mackerras61c45982009-07-01 13:04:34 +1000792 memset(&attr, 0, sizeof(attr));
Arnaldo Carvalho de Melo17ea1b72011-01-17 14:40:46 -0200793 ret = parse_event_symbols(opt, &str, &attr);
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200794 if (ret == EVT_FAILED)
Paul Mackerras61c45982009-07-01 13:04:34 +1000795 return -1;
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200796
Paul Mackerras61c45982009-07-01 13:04:34 +1000797 if (!(*str == 0 || *str == ',' || isspace(*str)))
798 return -1;
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200799
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200800 if (ret != EVT_HANDLED_ALL) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200801 struct perf_evsel *evsel;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200802 evsel = perf_evsel__new(&attr, evlist->nr_entries);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200803 if (evsel == NULL)
804 return -1;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200805 perf_evlist__add(evlist, evsel);
Stephane Eranianf0c55bc2011-02-16 15:10:01 +0200806
807 evsel->name = calloc(str - ostr + 1, 1);
808 if (!evsel->name)
809 return -1;
810 strncpy(evsel->name, ostr, str - ostr);
Frederic Weisbeckerbcd32792009-09-11 23:19:45 +0200811 }
Paul Mackerras61c45982009-07-01 13:04:34 +1000812
813 if (*str == 0)
814 break;
815 if (*str == ',')
816 ++str;
817 while (isspace(*str))
818 ++str;
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200819 }
820
821 return 0;
822}
823
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200824int parse_filter(const struct option *opt, const char *str,
Li Zefanc171b552009-10-15 11:22:07 +0800825 int unset __used)
826{
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200827 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200828 struct perf_evsel *last = NULL;
Li Zefanc171b552009-10-15 11:22:07 +0800829
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200830 if (evlist->nr_entries > 0)
831 last = list_entry(evlist->entries.prev, struct perf_evsel, node);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200832
833 if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
Li Zefanc171b552009-10-15 11:22:07 +0800834 fprintf(stderr,
835 "-F option should follow a -e tracepoint option\n");
836 return -1;
837 }
838
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200839 last->filter = strdup(str);
840 if (last->filter == NULL) {
Li Zefanc171b552009-10-15 11:22:07 +0800841 fprintf(stderr, "not enough memory to hold filter string\n");
842 return -1;
843 }
Li Zefanc171b552009-10-15 11:22:07 +0800844
845 return 0;
846}
847
Thomas Gleixner86847b62009-06-06 12:24:17 +0200848static const char * const event_type_descriptors[] = {
Thomas Gleixner86847b62009-06-06 12:24:17 +0200849 "Hardware event",
850 "Software event",
851 "Tracepoint event",
852 "Hardware cache event",
Liming Wang41bdcb22009-12-29 16:37:07 +0800853 "Raw hardware event descriptor",
854 "Hardware breakpoint",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200855};
856
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200857/*
Jason Baronf6bdafe2009-07-21 12:20:22 -0400858 * Print the events from <debugfs_mount_point>/tracing/events
859 */
860
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -0200861void print_tracepoint_events(const char *subsys_glob, const char *event_glob)
Jason Baronf6bdafe2009-07-21 12:20:22 -0400862{
863 DIR *sys_dir, *evt_dir;
864 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400865 char evt_path[MAXPATHLEN];
Eric Dumazet725b1362009-09-24 15:39:09 +0200866 char dir_path[MAXPATHLEN];
Jason Baronf6bdafe2009-07-21 12:20:22 -0400867
Clark Williams549104f2009-11-08 09:03:07 -0600868 if (debugfs_valid_mountpoint(debugfs_path))
Jason Baronf6bdafe2009-07-21 12:20:22 -0400869 return;
870
Jason Baron5beeded2009-07-21 14:16:29 -0400871 sys_dir = opendir(debugfs_path);
Jason Baronf6bdafe2009-07-21 12:20:22 -0400872 if (!sys_dir)
Eric Dumazet725b1362009-09-24 15:39:09 +0200873 return;
Jason Baronf6bdafe2009-07-21 12:20:22 -0400874
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300875 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -0200876 if (subsys_glob != NULL &&
877 !strglobmatch(sys_dirent.d_name, subsys_glob))
878 continue;
Eric Dumazet725b1362009-09-24 15:39:09 +0200879
880 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
881 sys_dirent.d_name);
882 evt_dir = opendir(dir_path);
883 if (!evt_dir)
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300884 continue;
Eric Dumazet725b1362009-09-24 15:39:09 +0200885
Ulrich Drepper6b58e7f2009-09-04 16:39:51 -0300886 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -0200887 if (event_glob != NULL &&
888 !strglobmatch(evt_dirent.d_name, event_glob))
889 continue;
890
Jason Baronf6bdafe2009-07-21 12:20:22 -0400891 snprintf(evt_path, MAXPATHLEN, "%s:%s",
892 sys_dirent.d_name, evt_dirent.d_name);
Marti Raudsepp689d3012009-10-27 00:33:05 +0000893 printf(" %-42s [%s]\n", evt_path,
Liming Wang41bdcb22009-12-29 16:37:07 +0800894 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
Jason Baronf6bdafe2009-07-21 12:20:22 -0400895 }
896 closedir(evt_dir);
897 }
Jason Baronf6bdafe2009-07-21 12:20:22 -0400898 closedir(sys_dir);
899}
900
901/*
Thomas Renninger20c457b2011-01-03 17:50:45 +0100902 * Check whether event is in <debugfs_mount_point>/tracing/events
903 */
904
905int is_valid_tracepoint(const char *event_string)
906{
907 DIR *sys_dir, *evt_dir;
908 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
909 char evt_path[MAXPATHLEN];
910 char dir_path[MAXPATHLEN];
911
912 if (debugfs_valid_mountpoint(debugfs_path))
913 return 0;
914
915 sys_dir = opendir(debugfs_path);
916 if (!sys_dir)
917 return 0;
918
919 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
920
921 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
922 sys_dirent.d_name);
923 evt_dir = opendir(dir_path);
924 if (!evt_dir)
925 continue;
926
927 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
928 snprintf(evt_path, MAXPATHLEN, "%s:%s",
929 sys_dirent.d_name, evt_dirent.d_name);
930 if (!strcmp(evt_path, event_string)) {
931 closedir(evt_dir);
932 closedir(sys_dir);
933 return 1;
934 }
935 }
936 closedir(evt_dir);
937 }
938 closedir(sys_dir);
939 return 0;
940}
941
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -0200942void print_events_type(u8 type)
943{
944 struct event_symbol *syms = event_symbols;
945 unsigned int i;
946 char name[64];
947
948 for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) {
949 if (type != syms->type)
950 continue;
951
952 if (strlen(syms->alias))
953 snprintf(name, sizeof(name), "%s OR %s",
954 syms->symbol, syms->alias);
955 else
956 snprintf(name, sizeof(name), "%s", syms->symbol);
957
958 printf(" %-42s [%s]\n", name,
959 event_type_descriptors[type]);
960 }
961}
962
963int print_hwcache_events(const char *event_glob)
964{
965 unsigned int type, op, i, printed = 0;
966
967 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
968 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
969 /* skip invalid cache type */
970 if (!is_cache_op_valid(type, op))
971 continue;
972
973 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
974 char *name = event_cache_name(type, op, i);
975
976 if (event_glob != NULL &&
977 !strglobmatch(name, event_glob))
978 continue;
979
980 printf(" %-42s [%s]\n", name,
981 event_type_descriptors[PERF_TYPE_HW_CACHE]);
982 ++printed;
983 }
984 }
985 }
986
987 return printed;
988}
989
Thomas Renninger20c457b2011-01-03 17:50:45 +0100990/*
Thomas Gleixner86847b62009-06-06 12:24:17 +0200991 * Print the help text for the event symbols:
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200992 */
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -0200993void print_events(const char *event_glob)
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200994{
Thomas Gleixner86847b62009-06-06 12:24:17 +0200995 struct event_symbol *syms = event_symbols;
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -0200996 unsigned int i, type, prev_type = -1, printed = 0, ntypes_printed = 0;
Jaswinder Singh Rajput74d5b582009-06-22 16:44:28 +0530997 char name[40];
Ingo Molnar8ad8db32009-05-26 11:10:09 +0200998
Marti Raudsepp689d3012009-10-27 00:33:05 +0000999 printf("\n");
1000 printf("List of pre-defined events (to be used in -e):\n");
Ingo Molnar8ad8db32009-05-26 11:10:09 +02001001
Thomas Gleixner86847b62009-06-06 12:24:17 +02001002 for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) {
Liming Wang41bdcb22009-12-29 16:37:07 +08001003 type = syms->type;
Ingo Molnar8ad8db32009-05-26 11:10:09 +02001004
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -02001005 if (type != prev_type && printed) {
Marti Raudsepp689d3012009-10-27 00:33:05 +00001006 printf("\n");
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -02001007 printed = 0;
1008 ntypes_printed++;
1009 }
1010
1011 if (event_glob != NULL &&
1012 !(strglobmatch(syms->symbol, event_glob) ||
1013 (syms->alias && strglobmatch(syms->alias, event_glob))))
1014 continue;
Ingo Molnar8ad8db32009-05-26 11:10:09 +02001015
Jaswinder Singh Rajput74d5b582009-06-22 16:44:28 +05301016 if (strlen(syms->alias))
1017 sprintf(name, "%s OR %s", syms->symbol, syms->alias);
1018 else
1019 strcpy(name, syms->symbol);
Marti Raudsepp689d3012009-10-27 00:33:05 +00001020 printf(" %-42s [%s]\n", name,
Thomas Gleixner86847b62009-06-06 12:24:17 +02001021 event_type_descriptors[type]);
Ingo Molnar8ad8db32009-05-26 11:10:09 +02001022
Thomas Gleixner86847b62009-06-06 12:24:17 +02001023 prev_type = type;
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -02001024 ++printed;
Ingo Molnar8ad8db32009-05-26 11:10:09 +02001025 }
1026
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -02001027 if (ntypes_printed) {
1028 printed = 0;
1029 printf("\n");
Jaswinder Singh Rajput73c24cb2009-07-01 18:36:18 +05301030 }
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -02001031 print_hwcache_events(event_glob);
1032
1033 if (event_glob != NULL)
1034 return;
Jaswinder Singh Rajput73c24cb2009-07-01 18:36:18 +05301035
Marti Raudsepp689d3012009-10-27 00:33:05 +00001036 printf("\n");
Liming Wang41bdcb22009-12-29 16:37:07 +08001037 printf(" %-42s [%s]\n",
Arnaldo Carvalho de Melo1cf4a062010-05-07 14:07:05 -03001038 "rNNN (see 'perf list --help' on how to encode it)",
1039 event_type_descriptors[PERF_TYPE_RAW]);
Marti Raudsepp689d3012009-10-27 00:33:05 +00001040 printf("\n");
Thomas Gleixner86847b62009-06-06 12:24:17 +02001041
Liming Wang41bdcb22009-12-29 16:37:07 +08001042 printf(" %-42s [%s]\n",
1043 "mem:<addr>[:access]",
1044 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
Frederic Weisbecker1b290d62009-11-23 15:42:35 +01001045 printf("\n");
1046
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -02001047 print_tracepoint_events(NULL, NULL);
Jason Baronf6bdafe2009-07-21 12:20:22 -04001048
Thomas Gleixner86847b62009-06-06 12:24:17 +02001049 exit(129);
Ingo Molnar8ad8db32009-05-26 11:10:09 +02001050}