builtin-list.c 2.9 KB
Newer Older
1 2 3 4 5 6 7
/*
 * builtin-list.c
 *
 * Builtin list command: list all event types
 *
 * Copyright (C) 2009, Thomas Gleixner <tglx@linutronix.de>
 * 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 11 12 13 14
 */
#include "builtin.h"

#include "perf.h"

#include "util/parse-events.h"
15
#include "util/cache.h"
16
#include "util/pmu.h"
17
#include <subcmd/parse-options.h>
18

A
Andi Kleen 已提交
19 20
static bool desc_flag = true;

21
int cmd_list(int argc, const char **argv, const char *prefix __maybe_unused)
22
{
23
	int i;
T
Taesoo Kim 已提交
24 25 26
	bool raw_dump = false;
	struct option list_options[] = {
		OPT_BOOLEAN(0, "raw-dump", &raw_dump, "Dump raw events"),
A
Andi Kleen 已提交
27 28
		OPT_BOOLEAN('d', "desc", &desc_flag,
			    "Print extra event descriptions. --no-desc to not print."),
D
David Ahern 已提交
29 30 31
		OPT_END()
	};
	const char * const list_usage[] = {
A
Andi Kleen 已提交
32
		"perf list [--no-desc] [hw|sw|cache|tracepoint|pmu|sdt|event_glob]",
D
David Ahern 已提交
33 34 35
		NULL
	};

T
Taesoo Kim 已提交
36 37
	set_option_flag(list_options, 0, "raw-dump", PARSE_OPT_HIDDEN);

D
David Ahern 已提交
38 39
	argc = parse_options(argc, argv, list_options, list_usage,
			     PARSE_OPT_STOP_AT_NON_OPTION);
40

41
	setup_pager();
42

43
	if (!raw_dump && pager_in_use())
44 45
		printf("\nList of pre-defined events (to be used in -e):\n\n");

D
David Ahern 已提交
46
	if (argc == 0) {
A
Andi Kleen 已提交
47
		print_events(NULL, raw_dump, !desc_flag);
48 49
		return 0;
	}
50

D
David Ahern 已提交
51
	for (i = 0; i < argc; ++i) {
52 53
		char *sep, *s;

54
		if (strcmp(argv[i], "tracepoint") == 0)
55
			print_tracepoint_events(NULL, NULL, raw_dump);
56 57
		else if (strcmp(argv[i], "hw") == 0 ||
			 strcmp(argv[i], "hardware") == 0)
58
			print_symbol_events(NULL, PERF_TYPE_HARDWARE,
59
					event_symbols_hw, PERF_COUNT_HW_MAX, raw_dump);
60 61
		else if (strcmp(argv[i], "sw") == 0 ||
			 strcmp(argv[i], "software") == 0)
62
			print_symbol_events(NULL, PERF_TYPE_SOFTWARE,
63
					event_symbols_sw, PERF_COUNT_SW_MAX, raw_dump);
64 65
		else if (strcmp(argv[i], "cache") == 0 ||
			 strcmp(argv[i], "hwcache") == 0)
66
			print_hwcache_events(NULL, raw_dump);
67
		else if (strcmp(argv[i], "pmu") == 0)
A
Andi Kleen 已提交
68
			print_pmu_events(NULL, raw_dump, !desc_flag);
69 70
		else if (strcmp(argv[i], "sdt") == 0)
			print_sdt_events(NULL, NULL, raw_dump);
71
		else if ((sep = strchr(argv[i], ':')) != NULL) {
72
			int sep_idx;
73

74
			if (sep == NULL) {
A
Andi Kleen 已提交
75
				print_events(argv[i], raw_dump, !desc_flag);
76
				continue;
77
			}
78 79 80 81 82 83
			sep_idx = sep - argv[i];
			s = strdup(argv[i]);
			if (s == NULL)
				return -1;

			s[sep_idx] = '\0';
84
			print_tracepoint_events(s, s + sep_idx + 1, raw_dump);
85
			print_sdt_events(s, s + sep_idx + 1, raw_dump);
86
			free(s);
87 88 89 90 91 92 93 94 95 96
		} else {
			if (asprintf(&s, "*%s*", argv[i]) < 0) {
				printf("Critical: Not enough memory! Trying to continue...\n");
				continue;
			}
			print_symbol_events(s, PERF_TYPE_HARDWARE,
					    event_symbols_hw, PERF_COUNT_HW_MAX, raw_dump);
			print_symbol_events(s, PERF_TYPE_SOFTWARE,
					    event_symbols_sw, PERF_COUNT_SW_MAX, raw_dump);
			print_hwcache_events(s, raw_dump);
A
Andi Kleen 已提交
97
			print_pmu_events(s, raw_dump, !desc_flag);
98
			print_tracepoint_events(NULL, s, raw_dump);
99
			print_sdt_events(NULL, s, raw_dump);
100
			free(s);
101 102
		}
	}
103 104
	return 0;
}