4 * Builtin list command: list all event types
6 * Copyright (C) 2009, Thomas Gleixner <tglx@linutronix.de>
7 * Copyright (C) 2008-2009, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
8 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
14 #include "util/parse-events.h"
15 #include "util/cache.h"
17 #include "util/parse-options.h"
19 int cmd_list(int argc
, const char **argv
, const char *prefix __maybe_unused
)
22 const struct option list_options
[] = {
25 const char * const list_usage
[] = {
26 "perf list [hw|sw|cache|tracepoint|pmu|event_glob]",
30 argc
= parse_options(argc
, argv
, list_options
, list_usage
,
31 PARSE_OPT_STOP_AT_NON_OPTION
);
36 print_events(NULL
, false);
40 for (i
= 0; i
< argc
; ++i
) {
43 if (strncmp(argv
[i
], "tracepoint", 10) == 0)
44 print_tracepoint_events(NULL
, NULL
, false);
45 else if (strcmp(argv
[i
], "hw") == 0 ||
46 strcmp(argv
[i
], "hardware") == 0)
47 print_events_type(PERF_TYPE_HARDWARE
);
48 else if (strcmp(argv
[i
], "sw") == 0 ||
49 strcmp(argv
[i
], "software") == 0)
50 print_events_type(PERF_TYPE_SOFTWARE
);
51 else if (strcmp(argv
[i
], "cache") == 0 ||
52 strcmp(argv
[i
], "hwcache") == 0)
53 print_hwcache_events(NULL
, false);
54 else if (strcmp(argv
[i
], "pmu") == 0)
55 print_pmu_events(NULL
, false);
56 else if (strcmp(argv
[i
], "--raw-dump") == 0)
57 print_events(NULL
, true);
59 char *sep
= strchr(argv
[i
], ':'), *s
;
63 print_events(argv
[i
], false);
66 sep_idx
= sep
- argv
[i
];
72 print_tracepoint_events(s
, s
+ sep_idx
+ 1, false);