kvm: Delete prototype for non-existent function complete_pio
[linux-2.6/btrfs-unstable.git] / tools / perf / builtin-list.c
blobe79f423cc3022fff357e132d11d573a66f5ad7a6
1 /*
2 * builtin-list.c
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>
9 */
10 #include "builtin.h"
12 #include "perf.h"
14 #include "util/parse-events.h"
15 #include "util/cache.h"
16 #include "util/pmu.h"
18 int cmd_list(int argc, const char **argv, const char *prefix __maybe_unused)
20 setup_pager();
22 if (argc == 1)
23 print_events(NULL, false);
24 else {
25 int i;
27 for (i = 1; i < argc; ++i) {
28 if (i > 2)
29 putchar('\n');
30 if (strncmp(argv[i], "tracepoint", 10) == 0)
31 print_tracepoint_events(NULL, NULL, false);
32 else if (strcmp(argv[i], "hw") == 0 ||
33 strcmp(argv[i], "hardware") == 0)
34 print_events_type(PERF_TYPE_HARDWARE);
35 else if (strcmp(argv[i], "sw") == 0 ||
36 strcmp(argv[i], "software") == 0)
37 print_events_type(PERF_TYPE_SOFTWARE);
38 else if (strcmp(argv[i], "cache") == 0 ||
39 strcmp(argv[i], "hwcache") == 0)
40 print_hwcache_events(NULL, false);
41 else if (strcmp(argv[i], "pmu") == 0)
42 print_pmu_events(NULL, false);
43 else if (strcmp(argv[i], "--raw-dump") == 0)
44 print_events(NULL, true);
45 else {
46 char *sep = strchr(argv[i], ':'), *s;
47 int sep_idx;
49 if (sep == NULL) {
50 print_events(argv[i], false);
51 continue;
53 sep_idx = sep - argv[i];
54 s = strdup(argv[i]);
55 if (s == NULL)
56 return -1;
58 s[sep_idx] = '\0';
59 print_tracepoint_events(s, s + sep_idx + 1, false);
60 free(s);
64 return 0;