builtin-list.c 3.8 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8
/*
 * 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>
9
 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
10 11 12 13 14 15
 */
#include "builtin.h"

#include "perf.h"

#include "util/parse-events.h"
16
#include "util/cache.h"
17
#include "util/pmu.h"
18
#include "util/debug.h"
19
#include "util/metricgroup.h"
20
#include <subcmd/parse-options.h>
21

A
Andi Kleen 已提交
22
static bool desc_flag = true;
23
static bool details_flag;
A
Andi Kleen 已提交
24

25
int cmd_list(int argc, const char **argv)
26
{
27
	int i;
T
Taesoo Kim 已提交
28
	bool raw_dump = false;
29
	bool long_desc_flag = false;
T
Taesoo Kim 已提交
30 31
	struct option list_options[] = {
		OPT_BOOLEAN(0, "raw-dump", &raw_dump, "Dump raw events"),
A
Andi Kleen 已提交
32 33
		OPT_BOOLEAN('d', "desc", &desc_flag,
			    "Print extra event descriptions. --no-desc to not print."),
34 35
		OPT_BOOLEAN('v', "long-desc", &long_desc_flag,
			    "Print longer event descriptions."),
36 37
		OPT_BOOLEAN(0, "details", &details_flag,
			    "Print information on the perf event names and expressions used internally by events."),
38 39
		OPT_INCR(0, "debug", &verbose,
			     "Enable debugging output"),
D
David Ahern 已提交
40 41 42
		OPT_END()
	};
	const char * const list_usage[] = {
43
		"perf list [<options>] [hw|sw|cache|tracepoint|pmu|sdt|event_glob]",
D
David Ahern 已提交
44 45 46
		NULL
	};

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

D
David Ahern 已提交
49 50
	argc = parse_options(argc, argv, list_options, list_usage,
			     PARSE_OPT_STOP_AT_NON_OPTION);
51

52
	setup_pager();
53

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

D
David Ahern 已提交
57
	if (argc == 0) {
58 59
		print_events(NULL, raw_dump, !desc_flag, long_desc_flag,
				details_flag);
60 61
		return 0;
	}
62

D
David Ahern 已提交
63
	for (i = 0; i < argc; ++i) {
64 65
		char *sep, *s;

66
		if (strcmp(argv[i], "tracepoint") == 0)
67
			print_tracepoint_events(NULL, NULL, raw_dump);
68 69
		else if (strcmp(argv[i], "hw") == 0 ||
			 strcmp(argv[i], "hardware") == 0)
70
			print_symbol_events(NULL, PERF_TYPE_HARDWARE,
71
					event_symbols_hw, PERF_COUNT_HW_MAX, raw_dump);
72 73
		else if (strcmp(argv[i], "sw") == 0 ||
			 strcmp(argv[i], "software") == 0)
74
			print_symbol_events(NULL, PERF_TYPE_SOFTWARE,
75
					event_symbols_sw, PERF_COUNT_SW_MAX, raw_dump);
76 77
		else if (strcmp(argv[i], "cache") == 0 ||
			 strcmp(argv[i], "hwcache") == 0)
78
			print_hwcache_events(NULL, raw_dump);
79
		else if (strcmp(argv[i], "pmu") == 0)
80
			print_pmu_events(NULL, raw_dump, !desc_flag,
81
						long_desc_flag, details_flag);
82 83
		else if (strcmp(argv[i], "sdt") == 0)
			print_sdt_events(NULL, NULL, raw_dump);
84 85 86 87
		else if (strcmp(argv[i], "metric") == 0)
			metricgroup__print(true, false, NULL, raw_dump);
		else if (strcmp(argv[i], "metricgroup") == 0)
			metricgroup__print(false, true, NULL, raw_dump);
88
		else if ((sep = strchr(argv[i], ':')) != NULL) {
89
			int sep_idx;
90

91
			if (sep == NULL) {
92
				print_events(argv[i], raw_dump, !desc_flag,
93 94
							long_desc_flag,
							details_flag);
95
				continue;
96
			}
97 98 99 100 101 102
			sep_idx = sep - argv[i];
			s = strdup(argv[i]);
			if (s == NULL)
				return -1;

			s[sep_idx] = '\0';
103
			print_tracepoint_events(s, s + sep_idx + 1, raw_dump);
104
			print_sdt_events(s, s + sep_idx + 1, raw_dump);
105
			metricgroup__print(true, true, s, raw_dump);
106
			free(s);
107 108 109 110 111 112 113 114 115 116
		} 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);
117
			print_pmu_events(s, raw_dump, !desc_flag,
118 119
						long_desc_flag,
						details_flag);
120
			print_tracepoint_events(NULL, s, raw_dump);
121
			print_sdt_events(NULL, s, raw_dump);
122
			metricgroup__print(true, true, NULL, raw_dump);
123
			free(s);
124 125
		}
	}
126 127
	return 0;
}