blob: 6024140403446fe6cc7ab1db9b2a69af3785767c [file] [log] [blame]
Thomas Gleixner86847b62009-06-06 12:24:17 +02001/*
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>
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -02008 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
Thomas Gleixner86847b62009-06-06 12:24:17 +02009 */
10#include "builtin.h"
11
12#include "perf.h"
13
Thomas Gleixner86847b62009-06-06 12:24:17 +020014#include "util/parse-events.h"
Arnaldo Carvalho de Melo8f7a0dc2009-08-12 14:44:59 -030015#include "util/cache.h"
Andi Kleendc098b32013-04-20 11:02:29 -070016#include "util/pmu.h"
David Ahern44d742e2013-10-30 10:28:29 -060017#include "util/parse-options.h"
Thomas Gleixner86847b62009-06-06 12:24:17 +020018
Irina Tirdea1d037ca2012-09-11 01:15:03 +030019int cmd_list(int argc, const char **argv, const char *prefix __maybe_unused)
Thomas Gleixner86847b62009-06-06 12:24:17 +020020{
David Ahern8e00ddc2013-10-30 10:15:06 -060021 int i;
Taesoo Kimb35052082014-12-30 22:36:55 -050022 bool raw_dump = false;
23 struct option list_options[] = {
24 OPT_BOOLEAN(0, "raw-dump", &raw_dump, "Dump raw events"),
David Ahern44d742e2013-10-30 10:28:29 -060025 OPT_END()
26 };
27 const char * const list_usage[] = {
28 "perf list [hw|sw|cache|tracepoint|pmu|event_glob]",
29 NULL
30 };
31
Taesoo Kimb35052082014-12-30 22:36:55 -050032 set_option_flag(list_options, 0, "raw-dump", PARSE_OPT_HIDDEN);
33
David Ahern44d742e2013-10-30 10:28:29 -060034 argc = parse_options(argc, argv, list_options, list_usage,
35 PARSE_OPT_STOP_AT_NON_OPTION);
David Ahern8e00ddc2013-10-30 10:15:06 -060036
Arnaldo Carvalho de Melo8f7a0dc2009-08-12 14:44:59 -030037 setup_pager();
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -020038
Arnaldo Carvalho de Melodfc431c2015-09-30 17:13:26 -030039 if (!raw_dump && pager_in_use())
Yunlong Song619a3032015-02-13 21:11:55 +080040 printf("\nList of pre-defined events (to be used in -e):\n\n");
41
David Ahern44d742e2013-10-30 10:28:29 -060042 if (argc == 0) {
Yunlong Song5ef803e2015-02-27 18:21:28 +080043 print_events(NULL, raw_dump);
David Ahern8e00ddc2013-10-30 10:15:06 -060044 return 0;
45 }
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -020046
David Ahern44d742e2013-10-30 10:28:29 -060047 for (i = 0; i < argc; ++i) {
Yunlong Song16114952015-02-27 18:21:26 +080048 if (strcmp(argv[i], "tracepoint") == 0)
Yunlong Song5ef803e2015-02-27 18:21:28 +080049 print_tracepoint_events(NULL, NULL, raw_dump);
David Ahern8e00ddc2013-10-30 10:15:06 -060050 else if (strcmp(argv[i], "hw") == 0 ||
51 strcmp(argv[i], "hardware") == 0)
Yunlong Song705750f2015-02-27 18:21:27 +080052 print_symbol_events(NULL, PERF_TYPE_HARDWARE,
Yunlong Song5ef803e2015-02-27 18:21:28 +080053 event_symbols_hw, PERF_COUNT_HW_MAX, raw_dump);
David Ahern8e00ddc2013-10-30 10:15:06 -060054 else if (strcmp(argv[i], "sw") == 0 ||
55 strcmp(argv[i], "software") == 0)
Yunlong Song705750f2015-02-27 18:21:27 +080056 print_symbol_events(NULL, PERF_TYPE_SOFTWARE,
Yunlong Song5ef803e2015-02-27 18:21:28 +080057 event_symbols_sw, PERF_COUNT_SW_MAX, raw_dump);
David Ahern8e00ddc2013-10-30 10:15:06 -060058 else if (strcmp(argv[i], "cache") == 0 ||
59 strcmp(argv[i], "hwcache") == 0)
Yunlong Song5ef803e2015-02-27 18:21:28 +080060 print_hwcache_events(NULL, raw_dump);
David Ahern8e00ddc2013-10-30 10:15:06 -060061 else if (strcmp(argv[i], "pmu") == 0)
Yunlong Song5ef803e2015-02-27 18:21:28 +080062 print_pmu_events(NULL, raw_dump);
David Ahern8e00ddc2013-10-30 10:15:06 -060063 else {
64 char *sep = strchr(argv[i], ':'), *s;
65 int sep_idx;
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -020066
David Ahern8e00ddc2013-10-30 10:15:06 -060067 if (sep == NULL) {
Yunlong Song5ef803e2015-02-27 18:21:28 +080068 print_events(argv[i], raw_dump);
David Ahern8e00ddc2013-10-30 10:15:06 -060069 continue;
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -020070 }
David Ahern8e00ddc2013-10-30 10:15:06 -060071 sep_idx = sep - argv[i];
72 s = strdup(argv[i]);
73 if (s == NULL)
74 return -1;
75
76 s[sep_idx] = '\0';
Yunlong Song5ef803e2015-02-27 18:21:28 +080077 print_tracepoint_events(s, s + sep_idx + 1, raw_dump);
David Ahern8e00ddc2013-10-30 10:15:06 -060078 free(s);
Arnaldo Carvalho de Melo668b8782011-02-17 15:38:58 -020079 }
80 }
Thomas Gleixner86847b62009-06-06 12:24:17 +020081 return 0;
82}