]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/perf/builtin-list.c
8b323e015458f4e866e1078a36ef2563540e6a9b
[karo-tx-linux.git] / tools / perf / builtin-list.c
1 /*
2  * builtin-list.c
3  *
4  * Builtin list command: list all event types
5  *
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>
9  */
10 #include "builtin.h"
11
12 #include "perf.h"
13
14 #include "util/parse-events.h"
15 #include "util/cache.h"
16 #include "util/pmu.h"
17 #include "util/parse-options.h"
18
19 int cmd_list(int argc, const char **argv, const char *prefix __maybe_unused)
20 {
21         int i;
22         bool raw_dump = false;
23         struct option list_options[] = {
24                 OPT_BOOLEAN(0, "raw-dump", &raw_dump, "Dump raw events"),
25                 OPT_END()
26         };
27         const char * const list_usage[] = {
28                 "perf list [hw|sw|cache|tracepoint|pmu|event_glob]",
29                 NULL
30         };
31
32         set_option_flag(list_options, 0, "raw-dump", PARSE_OPT_HIDDEN);
33
34         argc = parse_options(argc, argv, list_options, list_usage,
35                              PARSE_OPT_STOP_AT_NON_OPTION);
36
37         setup_pager();
38
39         if (raw_dump) {
40                 print_events(NULL, true);
41                 return 0;
42         }
43
44         if (!raw_dump)
45                 printf("\nList of pre-defined events (to be used in -e):\n\n");
46
47         if (argc == 0) {
48                 print_events(NULL, false);
49                 return 0;
50         }
51
52         for (i = 0; i < argc; ++i) {
53                 if (strcmp(argv[i], "tracepoint") == 0)
54                         print_tracepoint_events(NULL, NULL, false);
55                 else if (strcmp(argv[i], "hw") == 0 ||
56                          strcmp(argv[i], "hardware") == 0)
57                         print_symbol_events(NULL, PERF_TYPE_HARDWARE,
58                                         event_symbols_hw, PERF_COUNT_HW_MAX, false);
59                 else if (strcmp(argv[i], "sw") == 0 ||
60                          strcmp(argv[i], "software") == 0)
61                         print_symbol_events(NULL, PERF_TYPE_SOFTWARE,
62                                         event_symbols_sw, PERF_COUNT_SW_MAX, false);
63                 else if (strcmp(argv[i], "cache") == 0 ||
64                          strcmp(argv[i], "hwcache") == 0)
65                         print_hwcache_events(NULL, false);
66                 else if (strcmp(argv[i], "pmu") == 0)
67                         print_pmu_events(NULL, false);
68                 else {
69                         char *sep = strchr(argv[i], ':'), *s;
70                         int sep_idx;
71
72                         if (sep == NULL) {
73                                 print_events(argv[i], false);
74                                 continue;
75                         }
76                         sep_idx = sep - argv[i];
77                         s = strdup(argv[i]);
78                         if (s == NULL)
79                                 return -1;
80
81                         s[sep_idx] = '\0';
82                         print_tracepoint_events(s, s + sep_idx + 1, false);
83                         free(s);
84                 }
85         }
86         return 0;
87 }