blob: bd779d9f4d1eab5aae77814117fdd8ca7ea1220c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Andi Kleenf00898f2015-05-27 10:51:51 -07002#include "perf.h"
3#include "util/util.h"
4#include "util/debug.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06005#include <subcmd/parse-options.h>
Andi Kleenf00898f2015-05-27 10:51:51 -07006#include "util/parse-branch-options.h"
7
8#define BRANCH_OPT(n, m) \
9 { .name = n, .mode = (m) }
10
11#define BRANCH_END { .name = NULL }
12
13struct branch_mode {
14 const char *name;
15 int mode;
16};
17
18static const struct branch_mode branch_modes[] = {
19 BRANCH_OPT("u", PERF_SAMPLE_BRANCH_USER),
20 BRANCH_OPT("k", PERF_SAMPLE_BRANCH_KERNEL),
21 BRANCH_OPT("hv", PERF_SAMPLE_BRANCH_HV),
22 BRANCH_OPT("any", PERF_SAMPLE_BRANCH_ANY),
23 BRANCH_OPT("any_call", PERF_SAMPLE_BRANCH_ANY_CALL),
24 BRANCH_OPT("any_ret", PERF_SAMPLE_BRANCH_ANY_RETURN),
25 BRANCH_OPT("ind_call", PERF_SAMPLE_BRANCH_IND_CALL),
26 BRANCH_OPT("abort_tx", PERF_SAMPLE_BRANCH_ABORT_TX),
27 BRANCH_OPT("in_tx", PERF_SAMPLE_BRANCH_IN_TX),
28 BRANCH_OPT("no_tx", PERF_SAMPLE_BRANCH_NO_TX),
29 BRANCH_OPT("cond", PERF_SAMPLE_BRANCH_COND),
Stephane Eranian5b681642015-05-14 23:10:00 +020030 BRANCH_OPT("ind_jmp", PERF_SAMPLE_BRANCH_IND_JUMP),
Stephane Eranian43e41ad2015-10-13 09:09:11 +020031 BRANCH_OPT("call", PERF_SAMPLE_BRANCH_CALL),
Jin Yao60f83fa2017-07-18 20:13:11 +080032 BRANCH_OPT("save_type", PERF_SAMPLE_BRANCH_TYPE_SAVE),
Andi Kleenf00898f2015-05-27 10:51:51 -070033 BRANCH_END
34};
35
Andi Kleenac12f672016-10-12 14:02:06 -070036int parse_branch_str(const char *str, __u64 *mode)
Andi Kleenf00898f2015-05-27 10:51:51 -070037{
38#define ONLY_PLM \
39 (PERF_SAMPLE_BRANCH_USER |\
40 PERF_SAMPLE_BRANCH_KERNEL |\
41 PERF_SAMPLE_BRANCH_HV)
42
Andi Kleenac12f672016-10-12 14:02:06 -070043 int ret = 0;
44 char *p, *s;
45 char *os = NULL;
Andi Kleenf00898f2015-05-27 10:51:51 -070046 const struct branch_mode *br;
Andi Kleenac12f672016-10-12 14:02:06 -070047
48 if (str == NULL) {
49 *mode = PERF_SAMPLE_BRANCH_ANY;
50 return 0;
51 }
52
53 /* because str is read-only */
54 s = os = strdup(str);
55 if (!s)
56 return -1;
57
58 for (;;) {
59 p = strchr(s, ',');
60 if (p)
61 *p = '\0';
62
63 for (br = branch_modes; br->name; br++) {
64 if (!strcasecmp(s, br->name))
65 break;
66 }
67 if (!br->name) {
68 ret = -1;
Arnaldo Carvalho de Melo46cb25b2016-10-26 19:02:35 -020069 pr_warning("unknown branch filter %s,"
Andi Kleenac12f672016-10-12 14:02:06 -070070 " check man page\n", s);
71 goto error;
72 }
73
74 *mode |= br->mode;
75
76 if (!p)
77 break;
78
79 s = p + 1;
80 }
81
82 /* default to any branch */
83 if ((*mode & ~ONLY_PLM) == 0) {
84 *mode = PERF_SAMPLE_BRANCH_ANY;
85 }
86error:
87 free(os);
88 return ret;
89}
90
91int
92parse_branch_stack(const struct option *opt, const char *str, int unset)
93{
94 __u64 *mode = (__u64 *)opt->value;
Andi Kleenf00898f2015-05-27 10:51:51 -070095
96 if (unset)
97 return 0;
98
99 /*
100 * cannot set it twice, -b + --branch-filter for instance
101 */
102 if (*mode)
103 return -1;
104
Andi Kleenac12f672016-10-12 14:02:06 -0700105 return parse_branch_str(str, mode);
Andi Kleenf00898f2015-05-27 10:51:51 -0700106}