perf tools: Remove EOL whitespaces
[deliverable/linux.git] / tools / perf / util / parse-events.c
CommitLineData
d2709c7c 1#include <linux/hw_breakpoint.h>
8ad8db37 2#include "util.h"
6b58e7f1 3#include "../perf.h"
361c99a6 4#include "evlist.h"
69aad6f1 5#include "evsel.h"
8ad8db37
IM
6#include "parse-options.h"
7#include "parse-events.h"
8#include "exec_cmd.h"
42f60c2d 9#include "string.h"
5aab621b 10#include "symbol.h"
5beeded1 11#include "cache.h"
8755a8f2 12#include "header.h"
6e81c74c 13#include "debug.h"
553873e1 14#include <api/fs/debugfs.h>
ac20de6f 15#include "parse-events-bison.h"
90e2b22d 16#define YY_EXTRA_TYPE int
89812fc8 17#include "parse-events-flex.h"
5f537a26 18#include "pmu.h"
b41f1cec 19#include "thread_map.h"
89812fc8
JO
20
21#define MAX_NAME_LEN 100
8ad8db37 22
8ad8db37 23struct event_symbol {
83a0944f
IM
24 const char *symbol;
25 const char *alias;
8ad8db37
IM
26};
27
82ba1f2f
JO
28#ifdef PARSER_DEBUG
29extern int parse_events_debug;
30#endif
ac20de6f 31int parse_events_parse(void *data, void *scanner);
bcd3279f 32
dcb4e102
KL
33static struct perf_pmu_event_symbol *perf_pmu_events_list;
34/*
35 * The variable indicates the number of supported pmu event symbols.
36 * 0 means not initialized and ready to init
37 * -1 means failed to init, don't try anymore
38 * >0 is the number of supported pmu event symbols
39 */
40static int perf_pmu_events_list_num;
41
1dc12760
JO
42static struct event_symbol event_symbols_hw[PERF_COUNT_HW_MAX] = {
43 [PERF_COUNT_HW_CPU_CYCLES] = {
44 .symbol = "cpu-cycles",
45 .alias = "cycles",
46 },
47 [PERF_COUNT_HW_INSTRUCTIONS] = {
48 .symbol = "instructions",
49 .alias = "",
50 },
51 [PERF_COUNT_HW_CACHE_REFERENCES] = {
52 .symbol = "cache-references",
53 .alias = "",
54 },
55 [PERF_COUNT_HW_CACHE_MISSES] = {
56 .symbol = "cache-misses",
57 .alias = "",
58 },
59 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = {
60 .symbol = "branch-instructions",
61 .alias = "branches",
62 },
63 [PERF_COUNT_HW_BRANCH_MISSES] = {
64 .symbol = "branch-misses",
65 .alias = "",
66 },
67 [PERF_COUNT_HW_BUS_CYCLES] = {
68 .symbol = "bus-cycles",
69 .alias = "",
70 },
71 [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = {
72 .symbol = "stalled-cycles-frontend",
73 .alias = "idle-cycles-frontend",
74 },
75 [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = {
76 .symbol = "stalled-cycles-backend",
77 .alias = "idle-cycles-backend",
78 },
79 [PERF_COUNT_HW_REF_CPU_CYCLES] = {
80 .symbol = "ref-cycles",
81 .alias = "",
82 },
83};
84
85static struct event_symbol event_symbols_sw[PERF_COUNT_SW_MAX] = {
86 [PERF_COUNT_SW_CPU_CLOCK] = {
87 .symbol = "cpu-clock",
88 .alias = "",
89 },
90 [PERF_COUNT_SW_TASK_CLOCK] = {
91 .symbol = "task-clock",
92 .alias = "",
93 },
94 [PERF_COUNT_SW_PAGE_FAULTS] = {
95 .symbol = "page-faults",
96 .alias = "faults",
97 },
98 [PERF_COUNT_SW_CONTEXT_SWITCHES] = {
99 .symbol = "context-switches",
100 .alias = "cs",
101 },
102 [PERF_COUNT_SW_CPU_MIGRATIONS] = {
103 .symbol = "cpu-migrations",
104 .alias = "migrations",
105 },
106 [PERF_COUNT_SW_PAGE_FAULTS_MIN] = {
107 .symbol = "minor-faults",
108 .alias = "",
109 },
110 [PERF_COUNT_SW_PAGE_FAULTS_MAJ] = {
111 .symbol = "major-faults",
112 .alias = "",
113 },
114 [PERF_COUNT_SW_ALIGNMENT_FAULTS] = {
115 .symbol = "alignment-faults",
116 .alias = "",
117 },
118 [PERF_COUNT_SW_EMULATION_FAULTS] = {
119 .symbol = "emulation-faults",
120 .alias = "",
121 },
d22d1a2a
AH
122 [PERF_COUNT_SW_DUMMY] = {
123 .symbol = "dummy",
124 .alias = "",
125 },
8ad8db37
IM
126};
127
cdd6c482
IM
128#define __PERF_EVENT_FIELD(config, name) \
129 ((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
5242519b 130
1fc570ad 131#define PERF_EVENT_RAW(config) __PERF_EVENT_FIELD(config, RAW)
cdd6c482 132#define PERF_EVENT_CONFIG(config) __PERF_EVENT_FIELD(config, CONFIG)
1fc570ad 133#define PERF_EVENT_TYPE(config) __PERF_EVENT_FIELD(config, TYPE)
cdd6c482 134#define PERF_EVENT_ID(config) __PERF_EVENT_FIELD(config, EVENT)
5242519b 135
6b58e7f1 136#define for_each_subsystem(sys_dir, sys_dirent, sys_next) \
f6bdafef 137 while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next) \
6b58e7f1 138 if (sys_dirent.d_type == DT_DIR && \
f6bdafef
JB
139 (strcmp(sys_dirent.d_name, ".")) && \
140 (strcmp(sys_dirent.d_name, "..")))
141
ae07b63f
PZ
142static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
143{
144 char evt_path[MAXPATHLEN];
145 int fd;
146
ebf294bf 147 snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", tracing_events_path,
ae07b63f
PZ
148 sys_dir->d_name, evt_dir->d_name);
149 fd = open(evt_path, O_RDONLY);
150 if (fd < 0)
151 return -EINVAL;
152 close(fd);
153
154 return 0;
155}
156
6b58e7f1 157#define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) \
f6bdafef 158 while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next) \
6b58e7f1 159 if (evt_dirent.d_type == DT_DIR && \
f6bdafef 160 (strcmp(evt_dirent.d_name, ".")) && \
ae07b63f
PZ
161 (strcmp(evt_dirent.d_name, "..")) && \
162 (!tp_event_has_id(&sys_dirent, &evt_dirent)))
f6bdafef 163
270bbbe8 164#define MAX_EVENT_LENGTH 512
f6bdafef 165
f6bdafef 166
1ef2ed10 167struct tracepoint_path *tracepoint_id_to_path(u64 config)
f6bdafef 168{
1ef2ed10 169 struct tracepoint_path *path = NULL;
f6bdafef
JB
170 DIR *sys_dir, *evt_dir;
171 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
8aa8a7c8 172 char id_buf[24];
725b1368 173 int fd;
f6bdafef
JB
174 u64 id;
175 char evt_path[MAXPATHLEN];
725b1368 176 char dir_path[MAXPATHLEN];
f6bdafef 177
ebf294bf 178 if (debugfs_valid_mountpoint(tracing_events_path))
1ef2ed10 179 return NULL;
f6bdafef 180
ebf294bf 181 sys_dir = opendir(tracing_events_path);
f6bdafef 182 if (!sys_dir)
725b1368 183 return NULL;
6b58e7f1
UD
184
185 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
725b1368 186
ebf294bf 187 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
725b1368
ED
188 sys_dirent.d_name);
189 evt_dir = opendir(dir_path);
190 if (!evt_dir)
6b58e7f1 191 continue;
725b1368 192
6b58e7f1 193 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
725b1368
ED
194
195 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
f6bdafef 196 evt_dirent.d_name);
725b1368 197 fd = open(evt_path, O_RDONLY);
f6bdafef
JB
198 if (fd < 0)
199 continue;
200 if (read(fd, id_buf, sizeof(id_buf)) < 0) {
201 close(fd);
202 continue;
203 }
204 close(fd);
205 id = atoll(id_buf);
206 if (id == config) {
207 closedir(evt_dir);
208 closedir(sys_dir);
59b4caeb 209 path = zalloc(sizeof(*path));
1ef2ed10
FW
210 path->system = malloc(MAX_EVENT_LENGTH);
211 if (!path->system) {
212 free(path);
213 return NULL;
214 }
215 path->name = malloc(MAX_EVENT_LENGTH);
216 if (!path->name) {
74cf249d 217 zfree(&path->system);
1ef2ed10
FW
218 free(path);
219 return NULL;
220 }
221 strncpy(path->system, sys_dirent.d_name,
222 MAX_EVENT_LENGTH);
223 strncpy(path->name, evt_dirent.d_name,
224 MAX_EVENT_LENGTH);
225 return path;
f6bdafef
JB
226 }
227 }
228 closedir(evt_dir);
229 }
230
f6bdafef 231 closedir(sys_dir);
1ef2ed10
FW
232 return NULL;
233}
234
e7c93f09
NK
235struct tracepoint_path *tracepoint_name_to_path(const char *name)
236{
237 struct tracepoint_path *path = zalloc(sizeof(*path));
238 char *str = strchr(name, ':');
239
240 if (path == NULL || str == NULL) {
241 free(path);
242 return NULL;
243 }
244
245 path->system = strndup(name, str - name);
246 path->name = strdup(str+1);
247
248 if (path->system == NULL || path->name == NULL) {
74cf249d
ACM
249 zfree(&path->system);
250 zfree(&path->name);
e7c93f09
NK
251 free(path);
252 path = NULL;
253 }
254
255 return path;
256}
257
1424dc96
DA
258const char *event_type(int type)
259{
260 switch (type) {
261 case PERF_TYPE_HARDWARE:
262 return "hardware";
263
264 case PERF_TYPE_SOFTWARE:
265 return "software";
266
267 case PERF_TYPE_TRACEPOINT:
268 return "tracepoint";
269
270 case PERF_TYPE_HW_CACHE:
271 return "hardware-cache";
272
273 default:
274 break;
275 }
276
277 return "unknown";
278}
279
7ae92e74
YZ
280
281
410136f5
SE
282static struct perf_evsel *
283__add_event(struct list_head *list, int *idx,
284 struct perf_event_attr *attr,
285 char *name, struct cpu_map *cpus)
89812fc8
JO
286{
287 struct perf_evsel *evsel;
288
289 event_attr_init(attr);
290
ef503831 291 evsel = perf_evsel__new_idx(attr, (*idx)++);
c5cd8ac0 292 if (!evsel)
410136f5 293 return NULL;
89812fc8 294
7ae92e74 295 evsel->cpus = cpus;
9db1763c
ACM
296 if (name)
297 evsel->name = strdup(name);
b847cbdc 298 list_add_tail(&evsel->node, list);
410136f5 299 return evsel;
89812fc8
JO
300}
301
c5cd8ac0 302static int add_event(struct list_head *list, int *idx,
7ae92e74
YZ
303 struct perf_event_attr *attr, char *name)
304{
410136f5 305 return __add_event(list, idx, attr, name, NULL) ? 0 : -ENOMEM;
7ae92e74
YZ
306}
307
0b668bc9 308static int parse_aliases(char *str, const char *names[][PERF_EVSEL__MAX_ALIASES], int size)
8326f44d
IM
309{
310 int i, j;
61c45981 311 int n, longest = -1;
8326f44d
IM
312
313 for (i = 0; i < size; i++) {
0b668bc9 314 for (j = 0; j < PERF_EVSEL__MAX_ALIASES && names[i][j]; j++) {
61c45981 315 n = strlen(names[i][j]);
89812fc8 316 if (n > longest && !strncasecmp(str, names[i][j], n))
61c45981
PM
317 longest = n;
318 }
89812fc8 319 if (longest > 0)
61c45981 320 return i;
8326f44d
IM
321 }
322
8953645f 323 return -1;
8326f44d
IM
324}
325
c5cd8ac0 326int parse_events_add_cache(struct list_head *list, int *idx,
89812fc8 327 char *type, char *op_result1, char *op_result2)
8326f44d 328{
89812fc8
JO
329 struct perf_event_attr attr;
330 char name[MAX_NAME_LEN];
61c45981 331 int cache_type = -1, cache_op = -1, cache_result = -1;
89812fc8
JO
332 char *op_result[2] = { op_result1, op_result2 };
333 int i, n;
8326f44d 334
8326f44d
IM
335 /*
336 * No fallback - if we cannot get a clear cache type
337 * then bail out:
338 */
0b668bc9 339 cache_type = parse_aliases(type, perf_evsel__hw_cache,
89812fc8 340 PERF_COUNT_HW_CACHE_MAX);
8326f44d 341 if (cache_type == -1)
89812fc8
JO
342 return -EINVAL;
343
344 n = snprintf(name, MAX_NAME_LEN, "%s", type);
61c45981 345
89812fc8
JO
346 for (i = 0; (i < 2) && (op_result[i]); i++) {
347 char *str = op_result[i];
348
275ef387 349 n += snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
61c45981
PM
350
351 if (cache_op == -1) {
0b668bc9 352 cache_op = parse_aliases(str, perf_evsel__hw_cache_op,
89812fc8 353 PERF_COUNT_HW_CACHE_OP_MAX);
61c45981 354 if (cache_op >= 0) {
0b668bc9 355 if (!perf_evsel__is_cache_op_valid(cache_type, cache_op))
89812fc8 356 return -EINVAL;
61c45981
PM
357 continue;
358 }
359 }
360
361 if (cache_result == -1) {
0b668bc9
ACM
362 cache_result = parse_aliases(str, perf_evsel__hw_cache_result,
363 PERF_COUNT_HW_CACHE_RESULT_MAX);
61c45981
PM
364 if (cache_result >= 0)
365 continue;
366 }
61c45981 367 }
8326f44d 368
8326f44d
IM
369 /*
370 * Fall back to reads:
371 */
8953645f
IM
372 if (cache_op == -1)
373 cache_op = PERF_COUNT_HW_CACHE_OP_READ;
8326f44d 374
8326f44d
IM
375 /*
376 * Fall back to accesses:
377 */
378 if (cache_result == -1)
379 cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;
380
89812fc8
JO
381 memset(&attr, 0, sizeof(attr));
382 attr.config = cache_type | (cache_op << 8) | (cache_result << 16);
383 attr.type = PERF_TYPE_HW_CACHE;
384 return add_event(list, idx, &attr, name);
bcd3279f
FW
385}
386
c5cd8ac0 387static int add_tracepoint(struct list_head *list, int *idx,
89812fc8 388 char *sys_name, char *evt_name)
bcd3279f 389{
82fe1c29 390 struct perf_evsel *evsel;
bcd3279f 391
ef503831 392 evsel = perf_evsel__newtp_idx(sys_name, evt_name, (*idx)++);
c5cd8ac0 393 if (!evsel)
82fe1c29 394 return -ENOMEM;
bcd3279f 395
82fe1c29 396 list_add_tail(&evsel->node, list);
c5cd8ac0 397
82fe1c29 398 return 0;
8326f44d
IM
399}
400
c5cd8ac0 401static int add_tracepoint_multi_event(struct list_head *list, int *idx,
f35488f9 402 char *sys_name, char *evt_name)
bcd3279f
FW
403{
404 char evt_path[MAXPATHLEN];
405 struct dirent *evt_ent;
406 DIR *evt_dir;
89812fc8 407 int ret = 0;
bcd3279f 408
ebf294bf 409 snprintf(evt_path, MAXPATHLEN, "%s/%s", tracing_events_path, sys_name);
bcd3279f 410 evt_dir = opendir(evt_path);
bcd3279f
FW
411 if (!evt_dir) {
412 perror("Can't open event dir");
89812fc8 413 return -1;
bcd3279f
FW
414 }
415
89812fc8 416 while (!ret && (evt_ent = readdir(evt_dir))) {
bcd3279f
FW
417 if (!strcmp(evt_ent->d_name, ".")
418 || !strcmp(evt_ent->d_name, "..")
419 || !strcmp(evt_ent->d_name, "enable")
420 || !strcmp(evt_ent->d_name, "filter"))
421 continue;
422
89812fc8 423 if (!strglobmatch(evt_ent->d_name, evt_name))
fb1d2edf
MH
424 continue;
425
89812fc8 426 ret = add_tracepoint(list, idx, sys_name, evt_ent->d_name);
bcd3279f
FW
427 }
428
0bd3f084 429 closedir(evt_dir);
89812fc8 430 return ret;
bcd3279f
FW
431}
432
c5cd8ac0 433static int add_tracepoint_event(struct list_head *list, int *idx,
f35488f9
JO
434 char *sys_name, char *evt_name)
435{
436 return strpbrk(evt_name, "*?") ?
437 add_tracepoint_multi_event(list, idx, sys_name, evt_name) :
438 add_tracepoint(list, idx, sys_name, evt_name);
439}
440
c5cd8ac0 441static int add_tracepoint_multi_sys(struct list_head *list, int *idx,
f35488f9
JO
442 char *sys_name, char *evt_name)
443{
444 struct dirent *events_ent;
445 DIR *events_dir;
446 int ret = 0;
447
448 events_dir = opendir(tracing_events_path);
449 if (!events_dir) {
450 perror("Can't open event dir");
451 return -1;
452 }
453
454 while (!ret && (events_ent = readdir(events_dir))) {
455 if (!strcmp(events_ent->d_name, ".")
456 || !strcmp(events_ent->d_name, "..")
457 || !strcmp(events_ent->d_name, "enable")
458 || !strcmp(events_ent->d_name, "header_event")
459 || !strcmp(events_ent->d_name, "header_page"))
460 continue;
461
462 if (!strglobmatch(events_ent->d_name, sys_name))
463 continue;
464
465 ret = add_tracepoint_event(list, idx, events_ent->d_name,
466 evt_name);
467 }
468
469 closedir(events_dir);
470 return ret;
471}
472
c5cd8ac0 473int parse_events_add_tracepoint(struct list_head *list, int *idx,
89812fc8 474 char *sys, char *event)
f6bdafef 475{
89812fc8 476 int ret;
f6bdafef 477
89812fc8
JO
478 ret = debugfs_valid_mountpoint(tracing_events_path);
479 if (ret)
480 return ret;
f6bdafef 481
f35488f9
JO
482 if (strpbrk(sys, "*?"))
483 return add_tracepoint_multi_sys(list, idx, sys, event);
484 else
485 return add_tracepoint_event(list, idx, sys, event);
f6bdafef
JB
486}
487
89812fc8
JO
488static int
489parse_breakpoint_type(const char *type, struct perf_event_attr *attr)
1b290d67
FW
490{
491 int i;
492
493 for (i = 0; i < 3; i++) {
89812fc8 494 if (!type || !type[i])
1b290d67
FW
495 break;
496
7582732f
JO
497#define CHECK_SET_TYPE(bit) \
498do { \
499 if (attr->bp_type & bit) \
500 return -EINVAL; \
501 else \
502 attr->bp_type |= bit; \
503} while (0)
504
1b290d67
FW
505 switch (type[i]) {
506 case 'r':
7582732f 507 CHECK_SET_TYPE(HW_BREAKPOINT_R);
1b290d67
FW
508 break;
509 case 'w':
7582732f 510 CHECK_SET_TYPE(HW_BREAKPOINT_W);
1b290d67
FW
511 break;
512 case 'x':
7582732f 513 CHECK_SET_TYPE(HW_BREAKPOINT_X);
1b290d67
FW
514 break;
515 default:
89812fc8 516 return -EINVAL;
1b290d67
FW
517 }
518 }
89812fc8 519
7582732f
JO
520#undef CHECK_SET_TYPE
521
1b290d67
FW
522 if (!attr->bp_type) /* Default */
523 attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;
524
89812fc8 525 return 0;
1b290d67
FW
526}
527
c5cd8ac0 528int parse_events_add_breakpoint(struct list_head *list, int *idx,
89812fc8 529 void *ptr, char *type)
1b290d67 530{
89812fc8 531 struct perf_event_attr attr;
1b290d67 532
89812fc8 533 memset(&attr, 0, sizeof(attr));
9fafd98f 534 attr.bp_addr = (unsigned long) ptr;
1b290d67 535
89812fc8
JO
536 if (parse_breakpoint_type(type, &attr))
537 return -EINVAL;
1b290d67 538
aa59a485
FW
539 /*
540 * We should find a nice way to override the access length
541 * Provide some defaults for now
542 */
89812fc8
JO
543 if (attr.bp_type == HW_BREAKPOINT_X)
544 attr.bp_len = sizeof(long);
aa59a485 545 else
89812fc8 546 attr.bp_len = HW_BREAKPOINT_LEN_4;
61c45981 547
89812fc8 548 attr.type = PERF_TYPE_BREAKPOINT;
4a841d65 549 attr.sample_period = 1;
b908debd 550
287e74aa 551 return add_event(list, idx, &attr, NULL);
74d5b588
JSR
552}
553
8f707d84 554static int config_term(struct perf_event_attr *attr,
6cee6cd3 555 struct parse_events_term *term)
8f707d84 556{
16fa7e82
JO
557#define CHECK_TYPE_VAL(type) \
558do { \
559 if (PARSE_EVENTS__TERM_TYPE_ ## type != term->type_val) \
560 return -EINVAL; \
561} while (0)
562
563 switch (term->type_term) {
8f707d84 564 case PARSE_EVENTS__TERM_TYPE_CONFIG:
16fa7e82 565 CHECK_TYPE_VAL(NUM);
8f707d84
JO
566 attr->config = term->val.num;
567 break;
568 case PARSE_EVENTS__TERM_TYPE_CONFIG1:
16fa7e82 569 CHECK_TYPE_VAL(NUM);
8f707d84
JO
570 attr->config1 = term->val.num;
571 break;
572 case PARSE_EVENTS__TERM_TYPE_CONFIG2:
16fa7e82 573 CHECK_TYPE_VAL(NUM);
8f707d84
JO
574 attr->config2 = term->val.num;
575 break;
576 case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
16fa7e82 577 CHECK_TYPE_VAL(NUM);
8f707d84
JO
578 attr->sample_period = term->val.num;
579 break;
580 case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
581 /*
582 * TODO uncomment when the field is available
583 * attr->branch_sample_type = term->val.num;
584 */
585 break;
6b5fc39b
JO
586 case PARSE_EVENTS__TERM_TYPE_NAME:
587 CHECK_TYPE_VAL(STR);
588 break;
8f707d84
JO
589 default:
590 return -EINVAL;
591 }
16fa7e82 592
8f707d84 593 return 0;
16fa7e82 594#undef CHECK_TYPE_VAL
8f707d84
JO
595}
596
597static int config_attr(struct perf_event_attr *attr,
598 struct list_head *head, int fail)
599{
6cee6cd3 600 struct parse_events_term *term;
8f707d84
JO
601
602 list_for_each_entry(term, head, list)
603 if (config_term(attr, term) && fail)
604 return -EINVAL;
605
606 return 0;
607}
608
c5cd8ac0 609int parse_events_add_numeric(struct list_head *list, int *idx,
b527bab5 610 u32 type, u64 config,
8f707d84 611 struct list_head *head_config)
8ad8db37 612{
89812fc8 613 struct perf_event_attr attr;
61c45981 614
89812fc8
JO
615 memset(&attr, 0, sizeof(attr));
616 attr.type = type;
617 attr.config = config;
8f707d84
JO
618
619 if (head_config &&
620 config_attr(&attr, head_config, 1))
621 return -EINVAL;
622
9db1763c 623 return add_event(list, idx, &attr, NULL);
61c45981 624}
8ad8db37 625
6cee6cd3 626static int parse_events__is_name_term(struct parse_events_term *term)
6b5fc39b
JO
627{
628 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
629}
630
9db1763c 631static char *pmu_event_name(struct list_head *head_terms)
6b5fc39b 632{
6cee6cd3 633 struct parse_events_term *term;
6b5fc39b
JO
634
635 list_for_each_entry(term, head_terms, list)
636 if (parse_events__is_name_term(term))
637 return term->val.str;
638
9db1763c 639 return NULL;
6b5fc39b
JO
640}
641
c5cd8ac0 642int parse_events_add_pmu(struct list_head *list, int *idx,
5f537a26
JO
643 char *name, struct list_head *head_config)
644{
645 struct perf_event_attr attr;
46441bdc 646 struct perf_pmu_info info;
5f537a26 647 struct perf_pmu *pmu;
410136f5 648 struct perf_evsel *evsel;
5f537a26
JO
649
650 pmu = perf_pmu__find(name);
651 if (!pmu)
652 return -EINVAL;
653
dc0a6202
AH
654 if (pmu->default_config) {
655 memcpy(&attr, pmu->default_config,
656 sizeof(struct perf_event_attr));
657 } else {
658 memset(&attr, 0, sizeof(attr));
659 }
5f537a26 660
ad962273
AH
661 if (!head_config) {
662 attr.type = pmu->type;
663 evsel = __add_event(list, idx, &attr, NULL, pmu->cpus);
664 return evsel ? 0 : -ENOMEM;
665 }
666
46441bdc 667 if (perf_pmu__check_alias(pmu, head_config, &info))
a6146d50
ZY
668 return -EINVAL;
669
5f537a26
JO
670 /*
671 * Configure hardcoded terms first, no need to check
672 * return value when called with fail == 0 ;)
673 */
674 config_attr(&attr, head_config, 0);
675
676 if (perf_pmu__config(pmu, &attr, head_config))
677 return -EINVAL;
678
410136f5
SE
679 evsel = __add_event(list, idx, &attr, pmu_event_name(head_config),
680 pmu->cpus);
681 if (evsel) {
46441bdc
MF
682 evsel->unit = info.unit;
683 evsel->scale = info.scale;
044330c1 684 evsel->per_pkg = info.per_pkg;
1d9e446b 685 evsel->snapshot = info.snapshot;
410136f5
SE
686 }
687
688 return evsel ? 0 : -ENOMEM;
5f537a26
JO
689}
690
6a4bb04c
JO
691int parse_events__modifier_group(struct list_head *list,
692 char *event_mod)
89efb029 693{
6a4bb04c
JO
694 return parse_events__modifier_event(list, event_mod, true);
695}
696
63dab225 697void parse_events__set_leader(char *name, struct list_head *list)
6a4bb04c
JO
698{
699 struct perf_evsel *leader;
700
63dab225
ACM
701 __perf_evlist__set_leader(list);
702 leader = list_entry(list->next, struct perf_evsel, node);
6a4bb04c 703 leader->group_name = name ? strdup(name) : NULL;
89efb029
JO
704}
705
c5cd8ac0 706/* list_event is assumed to point to malloc'ed memory */
5d7be90e
JO
707void parse_events_update_lists(struct list_head *list_event,
708 struct list_head *list_all)
709{
710 /*
711 * Called for single event definition. Update the
89efb029 712 * 'all event' list, and reinit the 'single event'
5d7be90e
JO
713 * list, for next event definition.
714 */
715 list_splice_tail(list_event, list_all);
b847cbdc 716 free(list_event);
5d7be90e
JO
717}
718
f5b1135b
JO
719struct event_modifier {
720 int eu;
721 int ek;
722 int eh;
723 int eH;
724 int eG;
725 int precise;
726 int exclude_GH;
3c176311 727 int sample_read;
e9a7c414 728 int pinned;
f5b1135b
JO
729};
730
731static int get_event_modifier(struct event_modifier *mod, char *str,
732 struct perf_evsel *evsel)
61c45981 733{
f5b1135b
JO
734 int eu = evsel ? evsel->attr.exclude_user : 0;
735 int ek = evsel ? evsel->attr.exclude_kernel : 0;
736 int eh = evsel ? evsel->attr.exclude_hv : 0;
737 int eH = evsel ? evsel->attr.exclude_host : 0;
738 int eG = evsel ? evsel->attr.exclude_guest : 0;
739 int precise = evsel ? evsel->attr.precise_ip : 0;
3c176311 740 int sample_read = 0;
e9a7c414 741 int pinned = evsel ? evsel->attr.pinned : 0;
a21ca2ca 742
f5b1135b
JO
743 int exclude = eu | ek | eh;
744 int exclude_GH = evsel ? evsel->exclude_GH : 0;
745
f5b1135b 746 memset(mod, 0, sizeof(*mod));
ceb53fbf 747
61c45981 748 while (*str) {
ab608344
PZ
749 if (*str == 'u') {
750 if (!exclude)
751 exclude = eu = ek = eh = 1;
61c45981 752 eu = 0;
ab608344
PZ
753 } else if (*str == 'k') {
754 if (!exclude)
755 exclude = eu = ek = eh = 1;
61c45981 756 ek = 0;
ab608344
PZ
757 } else if (*str == 'h') {
758 if (!exclude)
759 exclude = eu = ek = eh = 1;
61c45981 760 eh = 0;
99320cc8
JR
761 } else if (*str == 'G') {
762 if (!exclude_GH)
763 exclude_GH = eG = eH = 1;
764 eG = 0;
765 } else if (*str == 'H') {
766 if (!exclude_GH)
767 exclude_GH = eG = eH = 1;
768 eH = 0;
ab608344
PZ
769 } else if (*str == 'p') {
770 precise++;
1342798c
DA
771 /* use of precise requires exclude_guest */
772 if (!exclude_GH)
773 eG = 1;
3c176311
JO
774 } else if (*str == 'S') {
775 sample_read = 1;
e9a7c414
ME
776 } else if (*str == 'D') {
777 pinned = 1;
ab608344 778 } else
61c45981 779 break;
ab608344 780
61c45981 781 ++str;
5242519b 782 }
ceb53fbf 783
89812fc8
JO
784 /*
785 * precise ip:
786 *
787 * 0 - SAMPLE_IP can have arbitrary skid
788 * 1 - SAMPLE_IP must have constant skid
789 * 2 - SAMPLE_IP requested to have 0 skid
790 * 3 - SAMPLE_IP must have 0 skid
791 *
792 * See also PERF_RECORD_MISC_EXACT_IP
793 */
794 if (precise > 3)
795 return -EINVAL;
ceb53fbf 796
f5b1135b
JO
797 mod->eu = eu;
798 mod->ek = ek;
799 mod->eh = eh;
800 mod->eH = eH;
801 mod->eG = eG;
802 mod->precise = precise;
803 mod->exclude_GH = exclude_GH;
3c176311 804 mod->sample_read = sample_read;
e9a7c414
ME
805 mod->pinned = pinned;
806
f5b1135b
JO
807 return 0;
808}
809
534123f4
JO
810/*
811 * Basic modifier sanity check to validate it contains only one
812 * instance of any modifier (apart from 'p') present.
813 */
814static int check_modifier(char *str)
815{
816 char *p = str;
817
818 /* The sizeof includes 0 byte as well. */
e9a7c414 819 if (strlen(str) > (sizeof("ukhGHpppSD") - 1))
534123f4
JO
820 return -1;
821
822 while (*p) {
823 if (*p != 'p' && strchr(p + 1, *p))
824 return -1;
825 p++;
826 }
827
828 return 0;
829}
830
f5b1135b
JO
831int parse_events__modifier_event(struct list_head *list, char *str, bool add)
832{
833 struct perf_evsel *evsel;
834 struct event_modifier mod;
835
836 if (str == NULL)
837 return 0;
838
534123f4
JO
839 if (check_modifier(str))
840 return -EINVAL;
841
f5b1135b
JO
842 if (!add && get_event_modifier(&mod, str, NULL))
843 return -EINVAL;
844
0050f7aa 845 __evlist__for_each(list, evsel) {
f5b1135b
JO
846 if (add && get_event_modifier(&mod, str, evsel))
847 return -EINVAL;
848
849 evsel->attr.exclude_user = mod.eu;
850 evsel->attr.exclude_kernel = mod.ek;
851 evsel->attr.exclude_hv = mod.eh;
852 evsel->attr.precise_ip = mod.precise;
853 evsel->attr.exclude_host = mod.eH;
854 evsel->attr.exclude_guest = mod.eG;
855 evsel->exclude_GH = mod.exclude_GH;
3c176311 856 evsel->sample_read = mod.sample_read;
e9a7c414
ME
857
858 if (perf_evsel__is_group_leader(evsel))
859 evsel->attr.pinned = mod.pinned;
89812fc8 860 }
ceb53fbf 861
61c45981
PM
862 return 0;
863}
8ad8db37 864
ac2ba9f3
RR
865int parse_events_name(struct list_head *list, char *name)
866{
867 struct perf_evsel *evsel;
868
0050f7aa 869 __evlist__for_each(list, evsel) {
ac2ba9f3
RR
870 if (!evsel->name)
871 evsel->name = strdup(name);
872 }
873
874 return 0;
875}
876
dcb4e102
KL
877static int
878comp_pmu(const void *p1, const void *p2)
879{
880 struct perf_pmu_event_symbol *pmu1 = (struct perf_pmu_event_symbol *) p1;
881 struct perf_pmu_event_symbol *pmu2 = (struct perf_pmu_event_symbol *) p2;
882
883 return strcmp(pmu1->symbol, pmu2->symbol);
884}
885
886static void perf_pmu__parse_cleanup(void)
887{
888 if (perf_pmu_events_list_num > 0) {
889 struct perf_pmu_event_symbol *p;
890 int i;
891
892 for (i = 0; i < perf_pmu_events_list_num; i++) {
893 p = perf_pmu_events_list + i;
894 free(p->symbol);
895 }
896 free(perf_pmu_events_list);
897 perf_pmu_events_list = NULL;
898 perf_pmu_events_list_num = 0;
899 }
900}
901
902#define SET_SYMBOL(str, stype) \
903do { \
904 p->symbol = str; \
905 if (!p->symbol) \
906 goto err; \
907 p->type = stype; \
908} while (0)
909
910/*
911 * Read the pmu events list from sysfs
912 * Save it into perf_pmu_events_list
913 */
914static void perf_pmu__parse_init(void)
915{
916
917 struct perf_pmu *pmu = NULL;
918 struct perf_pmu_alias *alias;
919 int len = 0;
920
921 pmu = perf_pmu__find("cpu");
922 if ((pmu == NULL) || list_empty(&pmu->aliases)) {
923 perf_pmu_events_list_num = -1;
924 return;
925 }
926 list_for_each_entry(alias, &pmu->aliases, list) {
927 if (strchr(alias->name, '-'))
928 len++;
929 len++;
930 }
931 perf_pmu_events_list = malloc(sizeof(struct perf_pmu_event_symbol) * len);
932 if (!perf_pmu_events_list)
933 return;
934 perf_pmu_events_list_num = len;
935
936 len = 0;
937 list_for_each_entry(alias, &pmu->aliases, list) {
938 struct perf_pmu_event_symbol *p = perf_pmu_events_list + len;
939 char *tmp = strchr(alias->name, '-');
940
941 if (tmp != NULL) {
942 SET_SYMBOL(strndup(alias->name, tmp - alias->name),
943 PMU_EVENT_SYMBOL_PREFIX);
944 p++;
945 SET_SYMBOL(strdup(++tmp), PMU_EVENT_SYMBOL_SUFFIX);
946 len += 2;
947 } else {
948 SET_SYMBOL(strdup(alias->name), PMU_EVENT_SYMBOL);
949 len++;
950 }
951 }
952 qsort(perf_pmu_events_list, len,
953 sizeof(struct perf_pmu_event_symbol), comp_pmu);
954
955 return;
956err:
957 perf_pmu__parse_cleanup();
958}
959
960enum perf_pmu_event_symbol_type
961perf_pmu__parse_check(const char *name)
962{
963 struct perf_pmu_event_symbol p, *r;
964
965 /* scan kernel pmu events from sysfs if needed */
966 if (perf_pmu_events_list_num == 0)
967 perf_pmu__parse_init();
968 /*
969 * name "cpu" could be prefix of cpu-cycles or cpu// events.
970 * cpu-cycles has been handled by hardcode.
971 * So it must be cpu// events, not kernel pmu event.
972 */
973 if ((perf_pmu_events_list_num <= 0) || !strcmp(name, "cpu"))
974 return PMU_EVENT_SYMBOL_ERR;
975
976 p.symbol = strdup(name);
977 r = bsearch(&p, perf_pmu_events_list,
978 (size_t) perf_pmu_events_list_num,
979 sizeof(struct perf_pmu_event_symbol), comp_pmu);
980 free(p.symbol);
981 return r ? r->type : PMU_EVENT_SYMBOL_ERR;
982}
983
90e2b22d 984static int parse_events__scanner(const char *str, void *data, int start_token)
61c45981 985{
89812fc8 986 YY_BUFFER_STATE buffer;
ac20de6f 987 void *scanner;
46010ab2 988 int ret;
bcd3279f 989
90e2b22d 990 ret = parse_events_lex_init_extra(start_token, &scanner);
ac20de6f
ZY
991 if (ret)
992 return ret;
993
994 buffer = parse_events__scan_string(str, scanner);
a21ca2ca 995
82ba1f2f
JO
996#ifdef PARSER_DEBUG
997 parse_events_debug = 1;
998#endif
ac20de6f
ZY
999 ret = parse_events_parse(data, scanner);
1000
1001 parse_events__flush_buffer(buffer, scanner);
1002 parse_events__delete_buffer(buffer, scanner);
1003 parse_events_lex_destroy(scanner);
1004 return ret;
1005}
bcd3279f 1006
90e2b22d
JO
1007/*
1008 * parse event config string, return a list of event terms.
1009 */
1010int parse_events_terms(struct list_head *terms, const char *str)
1011{
23b6339b 1012 struct parse_events_terms data = {
90e2b22d
JO
1013 .terms = NULL,
1014 };
1015 int ret;
1016
1017 ret = parse_events__scanner(str, &data, PE_START_TERMS);
1018 if (!ret) {
1019 list_splice(data.terms, terms);
74cf249d 1020 zfree(&data.terms);
90e2b22d
JO
1021 return 0;
1022 }
1023
b2c34fde
AH
1024 if (data.terms)
1025 parse_events__free_terms(data.terms);
90e2b22d
JO
1026 return ret;
1027}
1028
d8f7bbc9 1029int parse_events(struct perf_evlist *evlist, const char *str)
ac20de6f 1030{
23b6339b 1031 struct parse_events_evlist data = {
ac20de6f
ZY
1032 .list = LIST_HEAD_INIT(data.list),
1033 .idx = evlist->nr_entries,
1034 };
1035 int ret;
bcd3279f 1036
90e2b22d 1037 ret = parse_events__scanner(str, &data, PE_START_EVENTS);
dcb4e102 1038 perf_pmu__parse_cleanup();
89812fc8 1039 if (!ret) {
46010ab2
JO
1040 int entries = data.idx - evlist->nr_entries;
1041 perf_evlist__splice_list_tail(evlist, &data.list, entries);
97f63e4a 1042 evlist->nr_groups += data.nr_groups;
89812fc8
JO
1043 return 0;
1044 }
bcd3279f 1045
5d7be90e
JO
1046 /*
1047 * There are 2 users - builtin-record and builtin-test objects.
1048 * Both call perf_evlist__delete in case of error, so we dont
1049 * need to bother.
1050 */
bcd3279f 1051 return ret;
8ad8db37
IM
1052}
1053
f120f9d5 1054int parse_events_option(const struct option *opt, const char *str,
1d037ca1 1055 int unset __maybe_unused)
f120f9d5
JO
1056{
1057 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
d8f7bbc9 1058 int ret = parse_events(evlist, str);
9175ce1f
AK
1059
1060 if (ret) {
1061 fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
1062 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
1063 }
1064 return ret;
f120f9d5
JO
1065}
1066
361c99a6 1067int parse_filter(const struct option *opt, const char *str,
1d037ca1 1068 int unset __maybe_unused)
c171b552 1069{
361c99a6 1070 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
69aad6f1 1071 struct perf_evsel *last = NULL;
c171b552 1072
361c99a6 1073 if (evlist->nr_entries > 0)
0c21f736 1074 last = perf_evlist__last(evlist);
69aad6f1
ACM
1075
1076 if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
c171b552 1077 fprintf(stderr,
281f92f2 1078 "--filter option should follow a -e tracepoint option\n");
c171b552
LZ
1079 return -1;
1080 }
1081
69aad6f1
ACM
1082 last->filter = strdup(str);
1083 if (last->filter == NULL) {
c171b552
LZ
1084 fprintf(stderr, "not enough memory to hold filter string\n");
1085 return -1;
1086 }
c171b552
LZ
1087
1088 return 0;
1089}
1090
86847b62 1091static const char * const event_type_descriptors[] = {
86847b62
TG
1092 "Hardware event",
1093 "Software event",
1094 "Tracepoint event",
1095 "Hardware cache event",
41bdcb23
LW
1096 "Raw hardware event descriptor",
1097 "Hardware breakpoint",
86847b62
TG
1098};
1099
f6bdafef
JB
1100/*
1101 * Print the events from <debugfs_mount_point>/tracing/events
1102 */
1103
a3277d2d
FW
1104void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
1105 bool name_only)
f6bdafef
JB
1106{
1107 DIR *sys_dir, *evt_dir;
1108 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
f6bdafef 1109 char evt_path[MAXPATHLEN];
725b1368 1110 char dir_path[MAXPATHLEN];
6e81c74c 1111 char sbuf[STRERR_BUFSIZE];
f6bdafef 1112
f11cfc6f 1113 if (debugfs_valid_mountpoint(tracing_events_path)) {
6e81c74c
MH
1114 printf(" [ Tracepoints not available: %s ]\n",
1115 strerror_r(errno, sbuf, sizeof(sbuf)));
f6bdafef 1116 return;
f11cfc6f 1117 }
f6bdafef 1118
ebf294bf 1119 sys_dir = opendir(tracing_events_path);
f6bdafef 1120 if (!sys_dir)
725b1368 1121 return;
6b58e7f1
UD
1122
1123 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
48000a1a 1124 if (subsys_glob != NULL &&
668b8788
ACM
1125 !strglobmatch(sys_dirent.d_name, subsys_glob))
1126 continue;
725b1368 1127
ebf294bf 1128 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
725b1368
ED
1129 sys_dirent.d_name);
1130 evt_dir = opendir(dir_path);
1131 if (!evt_dir)
6b58e7f1 1132 continue;
725b1368 1133
6b58e7f1 1134 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
48000a1a 1135 if (event_glob != NULL &&
668b8788
ACM
1136 !strglobmatch(evt_dirent.d_name, event_glob))
1137 continue;
1138
a3277d2d
FW
1139 if (name_only) {
1140 printf("%s:%s ", sys_dirent.d_name, evt_dirent.d_name);
1141 continue;
1142 }
1143
f6bdafef
JB
1144 snprintf(evt_path, MAXPATHLEN, "%s:%s",
1145 sys_dirent.d_name, evt_dirent.d_name);
947b4ad1 1146 printf(" %-50s [%s]\n", evt_path,
41bdcb23 1147 event_type_descriptors[PERF_TYPE_TRACEPOINT]);
f6bdafef
JB
1148 }
1149 closedir(evt_dir);
1150 }
f6bdafef
JB
1151 closedir(sys_dir);
1152}
1153
20c457b8
TR
1154/*
1155 * Check whether event is in <debugfs_mount_point>/tracing/events
1156 */
1157
1158int is_valid_tracepoint(const char *event_string)
1159{
1160 DIR *sys_dir, *evt_dir;
1161 struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
1162 char evt_path[MAXPATHLEN];
1163 char dir_path[MAXPATHLEN];
1164
ebf294bf 1165 if (debugfs_valid_mountpoint(tracing_events_path))
20c457b8
TR
1166 return 0;
1167
ebf294bf 1168 sys_dir = opendir(tracing_events_path);
20c457b8
TR
1169 if (!sys_dir)
1170 return 0;
1171
1172 for_each_subsystem(sys_dir, sys_dirent, sys_next) {
1173
ebf294bf 1174 snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
20c457b8
TR
1175 sys_dirent.d_name);
1176 evt_dir = opendir(dir_path);
1177 if (!evt_dir)
1178 continue;
1179
1180 for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
1181 snprintf(evt_path, MAXPATHLEN, "%s:%s",
1182 sys_dirent.d_name, evt_dirent.d_name);
1183 if (!strcmp(evt_path, event_string)) {
1184 closedir(evt_dir);
1185 closedir(sys_dir);
1186 return 1;
1187 }
1188 }
1189 closedir(evt_dir);
1190 }
1191 closedir(sys_dir);
1192 return 0;
1193}
1194
b41f1cec
NK
1195static bool is_event_supported(u8 type, unsigned config)
1196{
1197 bool ret = true;
88fee52e 1198 int open_return;
b41f1cec
NK
1199 struct perf_evsel *evsel;
1200 struct perf_event_attr attr = {
1201 .type = type,
1202 .config = config,
1203 .disabled = 1,
b41f1cec
NK
1204 };
1205 struct {
1206 struct thread_map map;
1207 int threads[1];
1208 } tmap = {
1209 .map.nr = 1,
1210 .threads = { 0 },
1211 };
1212
ef503831 1213 evsel = perf_evsel__new(&attr);
b41f1cec 1214 if (evsel) {
88fee52e
VW
1215 open_return = perf_evsel__open(evsel, NULL, &tmap.map);
1216 ret = open_return >= 0;
1217
1218 if (open_return == -EACCES) {
1219 /*
1220 * This happens if the paranoid value
1221 * /proc/sys/kernel/perf_event_paranoid is set to 2
1222 * Re-run with exclude_kernel set; we don't do that
1223 * by default as some ARM machines do not support it.
1224 *
1225 */
1226 evsel->attr.exclude_kernel = 1;
1227 ret = perf_evsel__open(evsel, NULL, &tmap.map) >= 0;
1228 }
b41f1cec
NK
1229 perf_evsel__delete(evsel);
1230 }
1231
1232 return ret;
1233}
1234
1dc12760
JO
1235static void __print_events_type(u8 type, struct event_symbol *syms,
1236 unsigned max)
668b8788 1237{
668b8788 1238 char name[64];
1dc12760 1239 unsigned i;
668b8788 1240
1dc12760 1241 for (i = 0; i < max ; i++, syms++) {
b41f1cec
NK
1242 if (!is_event_supported(type, i))
1243 continue;
1244
668b8788
ACM
1245 if (strlen(syms->alias))
1246 snprintf(name, sizeof(name), "%s OR %s",
1247 syms->symbol, syms->alias);
1248 else
1249 snprintf(name, sizeof(name), "%s", syms->symbol);
1250
b41f1cec 1251 printf(" %-50s [%s]\n", name, event_type_descriptors[type]);
668b8788
ACM
1252 }
1253}
1254
1dc12760
JO
1255void print_events_type(u8 type)
1256{
1257 if (type == PERF_TYPE_SOFTWARE)
1258 __print_events_type(type, event_symbols_sw, PERF_COUNT_SW_MAX);
1259 else
1260 __print_events_type(type, event_symbols_hw, PERF_COUNT_HW_MAX);
1261}
1262
a3277d2d 1263int print_hwcache_events(const char *event_glob, bool name_only)
668b8788
ACM
1264{
1265 unsigned int type, op, i, printed = 0;
0b668bc9 1266 char name[64];
668b8788
ACM
1267
1268 for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
1269 for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
1270 /* skip invalid cache type */
0b668bc9 1271 if (!perf_evsel__is_cache_op_valid(type, op))
668b8788
ACM
1272 continue;
1273
1274 for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
0b668bc9
ACM
1275 __perf_evsel__hw_cache_type_op_res_name(type, op, i,
1276 name, sizeof(name));
947b4ad1 1277 if (event_glob != NULL && !strglobmatch(name, event_glob))
668b8788
ACM
1278 continue;
1279
b41f1cec
NK
1280 if (!is_event_supported(PERF_TYPE_HW_CACHE,
1281 type | (op << 8) | (i << 16)))
1282 continue;
1283
a3277d2d
FW
1284 if (name_only)
1285 printf("%s ", name);
1286 else
1287 printf(" %-50s [%s]\n", name,
1288 event_type_descriptors[PERF_TYPE_HW_CACHE]);
668b8788
ACM
1289 ++printed;
1290 }
1291 }
1292 }
1293
dc098b35
AK
1294 if (printed)
1295 printf("\n");
668b8788
ACM
1296 return printed;
1297}
1298
1dc12760 1299static void print_symbol_events(const char *event_glob, unsigned type,
a3277d2d
FW
1300 struct event_symbol *syms, unsigned max,
1301 bool name_only)
8ad8db37 1302{
1dc12760 1303 unsigned i, printed = 0;
947b4ad1 1304 char name[MAX_NAME_LEN];
8ad8db37 1305
1dc12760 1306 for (i = 0; i < max; i++, syms++) {
668b8788 1307
48000a1a 1308 if (event_glob != NULL &&
668b8788
ACM
1309 !(strglobmatch(syms->symbol, event_glob) ||
1310 (syms->alias && strglobmatch(syms->alias, event_glob))))
1311 continue;
8ad8db37 1312
b41f1cec
NK
1313 if (!is_event_supported(type, i))
1314 continue;
1315
a3277d2d
FW
1316 if (name_only) {
1317 printf("%s ", syms->symbol);
1318 continue;
1319 }
1320
74d5b588 1321 if (strlen(syms->alias))
947b4ad1 1322 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
74d5b588 1323 else
947b4ad1 1324 strncpy(name, syms->symbol, MAX_NAME_LEN);
8ad8db37 1325
1dc12760
JO
1326 printf(" %-50s [%s]\n", name, event_type_descriptors[type]);
1327
1328 printed++;
8ad8db37
IM
1329 }
1330
1dc12760 1331 if (printed)
668b8788 1332 printf("\n");
1dc12760
JO
1333}
1334
1335/*
1336 * Print the help text for the event symbols:
1337 */
a3277d2d 1338void print_events(const char *event_glob, bool name_only)
1dc12760 1339{
a3277d2d
FW
1340 if (!name_only) {
1341 printf("\n");
1342 printf("List of pre-defined events (to be used in -e):\n");
1343 }
1dc12760
JO
1344
1345 print_symbol_events(event_glob, PERF_TYPE_HARDWARE,
a3277d2d 1346 event_symbols_hw, PERF_COUNT_HW_MAX, name_only);
1dc12760
JO
1347
1348 print_symbol_events(event_glob, PERF_TYPE_SOFTWARE,
a3277d2d 1349 event_symbols_sw, PERF_COUNT_SW_MAX, name_only);
1dc12760 1350
a3277d2d 1351 print_hwcache_events(event_glob, name_only);
668b8788 1352
dc098b35
AK
1353 print_pmu_events(event_glob, name_only);
1354
668b8788
ACM
1355 if (event_glob != NULL)
1356 return;
73c24cb8 1357
a3277d2d 1358 if (!name_only) {
a3277d2d
FW
1359 printf(" %-50s [%s]\n",
1360 "rNNN",
1361 event_type_descriptors[PERF_TYPE_RAW]);
1362 printf(" %-50s [%s]\n",
1363 "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
1364 event_type_descriptors[PERF_TYPE_RAW]);
af3df2cf 1365 printf(" (see 'man perf-list' on how to encode it)\n");
a3277d2d
FW
1366 printf("\n");
1367
1368 printf(" %-50s [%s]\n",
1369 "mem:<addr>[:access]",
41bdcb23 1370 event_type_descriptors[PERF_TYPE_BREAKPOINT]);
a3277d2d
FW
1371 printf("\n");
1372 }
1b290d67 1373
a3277d2d 1374 print_tracepoint_events(NULL, NULL, name_only);
8ad8db37 1375}
8f707d84 1376
6cee6cd3 1377int parse_events__is_hardcoded_term(struct parse_events_term *term)
8f707d84 1378{
16fa7e82 1379 return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
8f707d84
JO
1380}
1381
6cee6cd3 1382static int new_term(struct parse_events_term **_term, int type_val,
16fa7e82 1383 int type_term, char *config,
b527bab5 1384 char *str, u64 num)
8f707d84 1385{
6cee6cd3 1386 struct parse_events_term *term;
8f707d84
JO
1387
1388 term = zalloc(sizeof(*term));
1389 if (!term)
1390 return -ENOMEM;
1391
1392 INIT_LIST_HEAD(&term->list);
16fa7e82
JO
1393 term->type_val = type_val;
1394 term->type_term = type_term;
8f707d84
JO
1395 term->config = config;
1396
16fa7e82 1397 switch (type_val) {
8f707d84
JO
1398 case PARSE_EVENTS__TERM_TYPE_NUM:
1399 term->val.num = num;
1400 break;
1401 case PARSE_EVENTS__TERM_TYPE_STR:
1402 term->val.str = str;
1403 break;
1404 default:
4be8be6b 1405 free(term);
8f707d84
JO
1406 return -EINVAL;
1407 }
1408
1409 *_term = term;
1410 return 0;
1411}
1412
6cee6cd3 1413int parse_events_term__num(struct parse_events_term **term,
b527bab5 1414 int type_term, char *config, u64 num)
16fa7e82
JO
1415{
1416 return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term,
1417 config, NULL, num);
1418}
1419
6cee6cd3 1420int parse_events_term__str(struct parse_events_term **term,
16fa7e82
JO
1421 int type_term, char *config, char *str)
1422{
1423 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term,
1424 config, str, 0);
1425}
1426
6cee6cd3 1427int parse_events_term__sym_hw(struct parse_events_term **term,
1d33d6dc
JO
1428 char *config, unsigned idx)
1429{
1430 struct event_symbol *sym;
1431
1432 BUG_ON(idx >= PERF_COUNT_HW_MAX);
1433 sym = &event_symbols_hw[idx];
1434
1435 if (config)
1436 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1437 PARSE_EVENTS__TERM_TYPE_USER, config,
1438 (char *) sym->symbol, 0);
1439 else
1440 return new_term(term, PARSE_EVENTS__TERM_TYPE_STR,
1441 PARSE_EVENTS__TERM_TYPE_USER,
1442 (char *) "event", (char *) sym->symbol, 0);
1443}
1444
6cee6cd3
ACM
1445int parse_events_term__clone(struct parse_events_term **new,
1446 struct parse_events_term *term)
a6146d50
ZY
1447{
1448 return new_term(new, term->type_val, term->type_term, term->config,
1449 term->val.str, term->val.num);
1450}
1451
8f707d84
JO
1452void parse_events__free_terms(struct list_head *terms)
1453{
6cee6cd3 1454 struct parse_events_term *term, *h;
8f707d84
JO
1455
1456 list_for_each_entry_safe(term, h, terms, list)
1457 free(term);
8f707d84 1458}
This page took 0.273004 seconds and 5 git commands to generate.