parse-events.y 7.4 KB
Newer Older
1
%pure-parser
2
%name-prefix "parse_events_"
3
%parse-param {void *_data}
4 5
%parse-param {void *scanner}
%lex-param {void* scanner}
6 7 8 9 10 11 12 13 14 15

%{

#define YYDEBUG 1

#include <linux/compiler.h>
#include <linux/list.h>
#include "types.h"
#include "util.h"
#include "parse-events.h"
16
#include "parse-events-bison.h"
17

18
extern int parse_events_lex (YYSTYPE* lvalp, void* scanner);
19 20 21 22 23 24 25 26 27

#define ABORT_ON(val) \
do { \
	if (val) \
		YYABORT; \
} while (0)

%}

28
%token PE_START_EVENTS PE_START_TERMS
29
%token PE_VALUE PE_VALUE_SYM_HW PE_VALUE_SYM_SW PE_RAW PE_TERM
30
%token PE_EVENT_NAME
31 32 33
%token PE_NAME
%token PE_MODIFIER_EVENT PE_MODIFIER_BP
%token PE_NAME_CACHE_TYPE PE_NAME_CACHE_OP_RESULT
34
%token PE_PREFIX_MEM PE_PREFIX_RAW PE_PREFIX_GROUP
35 36
%token PE_ERROR
%type <num> PE_VALUE
37 38
%type <num> PE_VALUE_SYM_HW
%type <num> PE_VALUE_SYM_SW
39
%type <num> PE_RAW
40
%type <num> PE_TERM
41 42 43 44 45
%type <str> PE_NAME
%type <str> PE_NAME_CACHE_TYPE
%type <str> PE_NAME_CACHE_OP_RESULT
%type <str> PE_MODIFIER_EVENT
%type <str> PE_MODIFIER_BP
46
%type <str> PE_EVENT_NAME
47
%type <num> value_sym
48 49
%type <head> event_config
%type <term> event_term
50 51 52 53 54 55 56 57
%type <head> event_pmu
%type <head> event_legacy_symbol
%type <head> event_legacy_cache
%type <head> event_legacy_mem
%type <head> event_legacy_tracepoint
%type <head> event_legacy_numeric
%type <head> event_legacy_raw
%type <head> event_def
58 59
%type <head> event_mod
%type <head> event_name
60 61 62 63 64
%type <head> event
%type <head> events
%type <head> group_def
%type <head> group
%type <head> groups
65 66 67 68

%union
{
	char *str;
69
	u64 num;
70
	struct list_head *head;
71
	struct parse_events_term *term;
72 73 74
}
%%

75
start:
76
PE_START_EVENTS start_events
77
|
78 79 80 81
PE_START_TERMS  start_terms

start_events: groups
{
82
	struct parse_events_evlist *data = _data;
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

	parse_events_update_lists($1, &data->list);
}

groups:
groups ',' group
{
	struct list_head *list  = $1;
	struct list_head *group = $3;

	parse_events_update_lists(group, list);
	$$ = list;
}
|
groups ',' event
{
	struct list_head *list  = $1;
	struct list_head *event = $3;

	parse_events_update_lists(event, list);
	$$ = list;
}
|
group
|
event

group:
group_def ':' PE_MODIFIER_EVENT
{
	struct list_head *list = $1;

	ABORT_ON(parse_events__modifier_group(list, $3));
	$$ = list;
}
|
group_def

group_def:
PE_NAME '{' events '}'
{
	struct list_head *list = $3;

126
	parse_events__set_leader($1, list);
127 128 129 130 131 132 133
	$$ = list;
}
|
'{' events '}'
{
	struct list_head *list = $2;

134
	parse_events__set_leader(NULL, list);
135 136
	$$ = list;
}
137

138
events:
139 140 141 142 143 144 145 146 147 148
events ',' event
{
	struct list_head *event = $3;
	struct list_head *list  = $1;

	parse_events_update_lists(event, list);
	$$ = list;
}
|
event
149

150 151 152 153
event: event_mod

event_mod:
event_name PE_MODIFIER_EVENT
154
{
155
	struct list_head *list = $1;
156

157 158 159 160 161
	/*
	 * Apply modifier on all events added by single event definition
	 * (there could be more events added for multiple tracepoint
	 * definitions via '*?'.
	 */
162
	ABORT_ON(parse_events__modifier_event(list, $2, false));
163
	$$ = list;
164 165
}
|
166 167 168 169 170 171 172 173 174 175
event_name

event_name:
PE_EVENT_NAME event_def
{
	ABORT_ON(parse_events_name($2, $1));
	free($1);
	$$ = $2;
}
|
176 177
event_def

178 179
event_def: event_pmu |
	   event_legacy_symbol |
180 181 182 183 184 185
	   event_legacy_cache sep_dc |
	   event_legacy_mem |
	   event_legacy_tracepoint sep_dc |
	   event_legacy_numeric sep_dc |
	   event_legacy_raw sep_dc

186 187 188
event_pmu:
PE_NAME '/' event_config '/'
{
189
	struct parse_events_evlist *data = _data;
190 191
	struct list_head *list = NULL;

192
	ABORT_ON(parse_events_add_pmu(&list, &data->idx, $1, $3));
193
	parse_events__free_terms($3);
194
	$$ = list;
195 196
}

197 198 199 200 201
value_sym:
PE_VALUE_SYM_HW
|
PE_VALUE_SYM_SW

202
event_legacy_symbol:
203
value_sym '/' event_config '/'
204
{
205
	struct parse_events_evlist *data = _data;
206
	struct list_head *list = NULL;
207 208 209
	int type = $1 >> 16;
	int config = $1 & 255;

210 211
	ABORT_ON(parse_events_add_numeric(&list, &data->idx,
					  type, config, $3));
212
	parse_events__free_terms($3);
213
	$$ = list;
214 215
}
|
216
value_sym sep_slash_dc
217
{
218
	struct parse_events_evlist *data = _data;
219
	struct list_head *list = NULL;
220 221 222
	int type = $1 >> 16;
	int config = $1 & 255;

223 224
	ABORT_ON(parse_events_add_numeric(&list, &data->idx,
					  type, config, NULL));
225
	$$ = list;
226 227 228 229 230
}

event_legacy_cache:
PE_NAME_CACHE_TYPE '-' PE_NAME_CACHE_OP_RESULT '-' PE_NAME_CACHE_OP_RESULT
{
231
	struct parse_events_evlist *data = _data;
232 233
	struct list_head *list = NULL;

234
	ABORT_ON(parse_events_add_cache(&list, &data->idx, $1, $3, $5));
235
	$$ = list;
236 237 238 239
}
|
PE_NAME_CACHE_TYPE '-' PE_NAME_CACHE_OP_RESULT
{
240
	struct parse_events_evlist *data = _data;
241 242
	struct list_head *list = NULL;

243
	ABORT_ON(parse_events_add_cache(&list, &data->idx, $1, $3, NULL));
244
	$$ = list;
245 246 247 248
}
|
PE_NAME_CACHE_TYPE
{
249
	struct parse_events_evlist *data = _data;
250 251
	struct list_head *list = NULL;

252
	ABORT_ON(parse_events_add_cache(&list, &data->idx, $1, NULL, NULL));
253
	$$ = list;
254 255 256 257 258
}

event_legacy_mem:
PE_PREFIX_MEM PE_VALUE ':' PE_MODIFIER_BP sep_dc
{
259
	struct parse_events_evlist *data = _data;
260 261
	struct list_head *list = NULL;

262 263
	ABORT_ON(parse_events_add_breakpoint(&list, &data->idx,
					     (void *) $2, $4));
264
	$$ = list;
265 266 267 268
}
|
PE_PREFIX_MEM PE_VALUE sep_dc
{
269
	struct parse_events_evlist *data = _data;
270 271
	struct list_head *list = NULL;

272 273
	ABORT_ON(parse_events_add_breakpoint(&list, &data->idx,
					     (void *) $2, NULL));
274
	$$ = list;
275 276 277 278 279
}

event_legacy_tracepoint:
PE_NAME ':' PE_NAME
{
280
	struct parse_events_evlist *data = _data;
281 282
	struct list_head *list = NULL;

283
	ABORT_ON(parse_events_add_tracepoint(&list, &data->idx, $1, $3));
284
	$$ = list;
285 286 287 288 289
}

event_legacy_numeric:
PE_VALUE ':' PE_VALUE
{
290
	struct parse_events_evlist *data = _data;
291 292
	struct list_head *list = NULL;

293
	ABORT_ON(parse_events_add_numeric(&list, &data->idx, (u32)$1, $3, NULL));
294
	$$ = list;
295 296 297 298 299
}

event_legacy_raw:
PE_RAW
{
300
	struct parse_events_evlist *data = _data;
301 302
	struct list_head *list = NULL;

303 304
	ABORT_ON(parse_events_add_numeric(&list, &data->idx,
					  PERF_TYPE_RAW, $1, NULL));
305
	$$ = list;
306 307
}

308
start_terms: event_config
309
{
310
	struct parse_events_terms *data = _data;
311 312 313
	data->terms = $1;
}

314 315 316 317
event_config:
event_config ',' event_term
{
	struct list_head *head = $1;
318
	struct parse_events_term *term = $3;
319 320 321 322 323 324 325 326 327

	ABORT_ON(!head);
	list_add_tail(&term->list, head);
	$$ = $1;
}
|
event_term
{
	struct list_head *head = malloc(sizeof(*head));
328
	struct parse_events_term *term = $1;
329 330 331 332 333 334 335 336 337 338

	ABORT_ON(!head);
	INIT_LIST_HEAD(head);
	list_add_tail(&term->list, head);
	$$ = head;
}

event_term:
PE_NAME '=' PE_NAME
{
339
	struct parse_events_term *term;
340

341
	ABORT_ON(parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_USER,
342
					$1, $3));
343 344 345 346 347
	$$ = term;
}
|
PE_NAME '=' PE_VALUE
{
348
	struct parse_events_term *term;
349

350
	ABORT_ON(parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER,
351
					$1, $3));
352 353 354
	$$ = term;
}
|
355 356
PE_NAME '=' PE_VALUE_SYM_HW
{
357
	struct parse_events_term *term;
358 359
	int config = $3 & 255;

360
	ABORT_ON(parse_events_term__sym_hw(&term, $1, config));
361 362 363
	$$ = term;
}
|
364 365
PE_NAME
{
366
	struct parse_events_term *term;
367

368
	ABORT_ON(parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER,
369
					$1, 1));
370 371 372
	$$ = term;
}
|
373 374
PE_VALUE_SYM_HW
{
375
	struct parse_events_term *term;
376 377
	int config = $1 & 255;

378
	ABORT_ON(parse_events_term__sym_hw(&term, NULL, config));
379 380 381
	$$ = term;
}
|
382 383
PE_TERM '=' PE_NAME
{
384
	struct parse_events_term *term;
385

386
	ABORT_ON(parse_events_term__str(&term, (int)$1, NULL, $3));
387 388 389
	$$ = term;
}
|
390 391
PE_TERM '=' PE_VALUE
{
392
	struct parse_events_term *term;
393

394
	ABORT_ON(parse_events_term__num(&term, (int)$1, NULL, $3));
395 396 397 398 399
	$$ = term;
}
|
PE_TERM
{
400
	struct parse_events_term *term;
401

402
	ABORT_ON(parse_events_term__num(&term, (int)$1, NULL, 1));
403
	$$ = term;
404 405 406 407
}

sep_dc: ':' |

408 409
sep_slash_dc: '/' | ':' |

410 411
%%

412 413
void parse_events_error(void *data __maybe_unused, void *scanner __maybe_unused,
			char const *msg __maybe_unused)
414 415
{
}