parse-events.c 22.9 KB
Newer Older
1
#include "../../../include/linux/hw_breakpoint.h"
2
#include "util.h"
3
#include "../perf.h"
4
#include "evlist.h"
5
#include "evsel.h"
6 7 8
#include "parse-options.h"
#include "parse-events.h"
#include "exec_cmd.h"
9
#include "string.h"
10
#include "symbol.h"
11
#include "cache.h"
12
#include "header.h"
13
#include "debugfs.h"
14
#include "parse-events-bison.h"
15
#define YY_EXTRA_TYPE int
16
#include "parse-events-flex.h"
17
#include "pmu.h"
18 19

#define MAX_NAME_LEN 100
20 21

struct event_symbol {
22 23 24 25
	u8		type;
	u64		config;
	const char	*symbol;
	const char	*alias;
26 27
};

28 29 30
#ifdef PARSER_DEBUG
extern int parse_events_debug;
#endif
31
int parse_events_parse(void *data, void *scanner);
32

33 34
#define CHW(x) .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_##x
#define CSW(x) .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_##x
35

36
static struct event_symbol event_symbols[] = {
37 38 39 40 41 42 43 44 45
  { CHW(CPU_CYCLES),			"cpu-cycles",			"cycles"		},
  { CHW(STALLED_CYCLES_FRONTEND),	"stalled-cycles-frontend",	"idle-cycles-frontend"	},
  { CHW(STALLED_CYCLES_BACKEND),	"stalled-cycles-backend",	"idle-cycles-backend"	},
  { CHW(INSTRUCTIONS),			"instructions",			""			},
  { CHW(CACHE_REFERENCES),		"cache-references",		""			},
  { CHW(CACHE_MISSES),			"cache-misses",			""			},
  { CHW(BRANCH_INSTRUCTIONS),		"branch-instructions",		"branches"		},
  { CHW(BRANCH_MISSES),			"branch-misses",		""			},
  { CHW(BUS_CYCLES),			"bus-cycles",			""			},
46
  { CHW(REF_CPU_CYCLES),		"ref-cycles",			""			},
47 48 49 50 51 52 53 54 55 56

  { CSW(CPU_CLOCK),			"cpu-clock",			""			},
  { CSW(TASK_CLOCK),			"task-clock",			""			},
  { CSW(PAGE_FAULTS),			"page-faults",			"faults"		},
  { CSW(PAGE_FAULTS_MIN),		"minor-faults",			""			},
  { CSW(PAGE_FAULTS_MAJ),		"major-faults",			""			},
  { CSW(CONTEXT_SWITCHES),		"context-switches",		"cs"			},
  { CSW(CPU_MIGRATIONS),		"cpu-migrations",		"migrations"		},
  { CSW(ALIGNMENT_FAULTS),		"alignment-faults",		""			},
  { CSW(EMULATION_FAULTS),		"emulation-faults",		""			},
57 58
};

59 60
#define __PERF_EVENT_FIELD(config, name) \
	((config & PERF_EVENT_##name##_MASK) >> PERF_EVENT_##name##_SHIFT)
61

62
#define PERF_EVENT_RAW(config)		__PERF_EVENT_FIELD(config, RAW)
63
#define PERF_EVENT_CONFIG(config)	__PERF_EVENT_FIELD(config, CONFIG)
64
#define PERF_EVENT_TYPE(config)		__PERF_EVENT_FIELD(config, TYPE)
65
#define PERF_EVENT_ID(config)		__PERF_EVENT_FIELD(config, EVENT)
66

67
#define for_each_subsystem(sys_dir, sys_dirent, sys_next)	       \
68
	while (!readdir_r(sys_dir, &sys_dirent, &sys_next) && sys_next)	       \
69
	if (sys_dirent.d_type == DT_DIR &&				       \
70 71 72
	   (strcmp(sys_dirent.d_name, ".")) &&				       \
	   (strcmp(sys_dirent.d_name, "..")))

73 74 75 76 77
static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
{
	char evt_path[MAXPATHLEN];
	int fd;

78
	snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", tracing_events_path,
79 80 81 82 83 84 85 86 87
			sys_dir->d_name, evt_dir->d_name);
	fd = open(evt_path, O_RDONLY);
	if (fd < 0)
		return -EINVAL;
	close(fd);

	return 0;
}

88
#define for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next)	       \
89
	while (!readdir_r(evt_dir, &evt_dirent, &evt_next) && evt_next)        \
90
	if (evt_dirent.d_type == DT_DIR &&				       \
91
	   (strcmp(evt_dirent.d_name, ".")) &&				       \
92 93
	   (strcmp(evt_dirent.d_name, "..")) &&				       \
	   (!tp_event_has_id(&sys_dirent, &evt_dirent)))
94

L
Li Zefan 已提交
95
#define MAX_EVENT_LENGTH 512
96 97


98
struct tracepoint_path *tracepoint_id_to_path(u64 config)
99
{
100
	struct tracepoint_path *path = NULL;
101 102
	DIR *sys_dir, *evt_dir;
	struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
103
	char id_buf[24];
E
Eric Dumazet 已提交
104
	int fd;
105 106
	u64 id;
	char evt_path[MAXPATHLEN];
E
Eric Dumazet 已提交
107
	char dir_path[MAXPATHLEN];
108

109
	if (debugfs_valid_mountpoint(tracing_events_path))
110
		return NULL;
111

112
	sys_dir = opendir(tracing_events_path);
113
	if (!sys_dir)
E
Eric Dumazet 已提交
114
		return NULL;
115 116

	for_each_subsystem(sys_dir, sys_dirent, sys_next) {
E
Eric Dumazet 已提交
117

118
		snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
E
Eric Dumazet 已提交
119 120 121
			 sys_dirent.d_name);
		evt_dir = opendir(dir_path);
		if (!evt_dir)
122
			continue;
E
Eric Dumazet 已提交
123

124
		for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
E
Eric Dumazet 已提交
125 126

			snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
127
				 evt_dirent.d_name);
E
Eric Dumazet 已提交
128
			fd = open(evt_path, O_RDONLY);
129 130 131 132 133 134 135 136 137 138 139
			if (fd < 0)
				continue;
			if (read(fd, id_buf, sizeof(id_buf)) < 0) {
				close(fd);
				continue;
			}
			close(fd);
			id = atoll(id_buf);
			if (id == config) {
				closedir(evt_dir);
				closedir(sys_dir);
140
				path = zalloc(sizeof(*path));
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
				path->system = malloc(MAX_EVENT_LENGTH);
				if (!path->system) {
					free(path);
					return NULL;
				}
				path->name = malloc(MAX_EVENT_LENGTH);
				if (!path->name) {
					free(path->system);
					free(path);
					return NULL;
				}
				strncpy(path->system, sys_dirent.d_name,
					MAX_EVENT_LENGTH);
				strncpy(path->name, evt_dirent.d_name,
					MAX_EVENT_LENGTH);
				return path;
157 158 159 160 161 162
			}
		}
		closedir(evt_dir);
	}

	closedir(sys_dir);
163 164 165
	return NULL;
}

166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
const char *event_type(int type)
{
	switch (type) {
	case PERF_TYPE_HARDWARE:
		return "hardware";

	case PERF_TYPE_SOFTWARE:
		return "software";

	case PERF_TYPE_TRACEPOINT:
		return "tracepoint";

	case PERF_TYPE_HW_CACHE:
		return "hardware-cache";

	default:
		break;
	}

	return "unknown";
}

188
static int add_event(struct list_head **_list, int *idx,
189 190 191
		     struct perf_event_attr *attr, char *name)
{
	struct perf_evsel *evsel;
192 193 194 195 196 197 198 199
	struct list_head *list = *_list;

	if (!list) {
		list = malloc(sizeof(*list));
		if (!list)
			return -ENOMEM;
		INIT_LIST_HEAD(list);
	}
200 201 202 203

	event_attr_init(attr);

	evsel = perf_evsel__new(attr, (*idx)++);
204 205
	if (!evsel) {
		free(list);
206
		return -ENOMEM;
207
	}
208

209 210
	if (name)
		evsel->name = strdup(name);
211 212
	list_add_tail(&evsel->node, list);
	*_list = list;
213 214 215
	return 0;
}

216
static int parse_aliases(char *str, const char *names[][PERF_EVSEL__MAX_ALIASES], int size)
217 218
{
	int i, j;
219
	int n, longest = -1;
220 221

	for (i = 0; i < size; i++) {
222
		for (j = 0; j < PERF_EVSEL__MAX_ALIASES && names[i][j]; j++) {
223
			n = strlen(names[i][j]);
224
			if (n > longest && !strncasecmp(str, names[i][j], n))
225 226
				longest = n;
		}
227
		if (longest > 0)
228
			return i;
229 230
	}

231
	return -1;
232 233
}

234
int parse_events_add_cache(struct list_head **list, int *idx,
235
			   char *type, char *op_result1, char *op_result2)
236
{
237 238
	struct perf_event_attr attr;
	char name[MAX_NAME_LEN];
239
	int cache_type = -1, cache_op = -1, cache_result = -1;
240 241
	char *op_result[2] = { op_result1, op_result2 };
	int i, n;
242 243 244 245 246

	/*
	 * No fallback - if we cannot get a clear cache type
	 * then bail out:
	 */
247
	cache_type = parse_aliases(type, perf_evsel__hw_cache,
248
				   PERF_COUNT_HW_CACHE_MAX);
249
	if (cache_type == -1)
250 251 252
		return -EINVAL;

	n = snprintf(name, MAX_NAME_LEN, "%s", type);
253

254 255 256 257
	for (i = 0; (i < 2) && (op_result[i]); i++) {
		char *str = op_result[i];

		snprintf(name + n, MAX_NAME_LEN - n, "-%s\n", str);
258 259

		if (cache_op == -1) {
260
			cache_op = parse_aliases(str, perf_evsel__hw_cache_op,
261
						 PERF_COUNT_HW_CACHE_OP_MAX);
262
			if (cache_op >= 0) {
263
				if (!perf_evsel__is_cache_op_valid(cache_type, cache_op))
264
					return -EINVAL;
265 266 267 268 269
				continue;
			}
		}

		if (cache_result == -1) {
270 271
			cache_result = parse_aliases(str, perf_evsel__hw_cache_result,
						     PERF_COUNT_HW_CACHE_RESULT_MAX);
272 273 274 275
			if (cache_result >= 0)
				continue;
		}
	}
276 277 278 279

	/*
	 * Fall back to reads:
	 */
280 281
	if (cache_op == -1)
		cache_op = PERF_COUNT_HW_CACHE_OP_READ;
282 283 284 285 286 287 288

	/*
	 * Fall back to accesses:
	 */
	if (cache_result == -1)
		cache_result = PERF_COUNT_HW_CACHE_RESULT_ACCESS;

289 290 291 292
	memset(&attr, 0, sizeof(attr));
	attr.config = cache_type | (cache_op << 8) | (cache_result << 16);
	attr.type = PERF_TYPE_HW_CACHE;
	return add_event(list, idx, &attr, name);
293 294
}

295
static int add_tracepoint(struct list_head **list, int *idx,
296
			  char *sys_name, char *evt_name)
297
{
298 299
	struct perf_event_attr attr;
	char name[MAX_NAME_LEN];
300 301 302 303 304
	char evt_path[MAXPATHLEN];
	char id_buf[4];
	u64 id;
	int fd;

305
	snprintf(evt_path, MAXPATHLEN, "%s/%s/%s/id", tracing_events_path,
306 307 308 309
		 sys_name, evt_name);

	fd = open(evt_path, O_RDONLY);
	if (fd < 0)
310
		return -1;
311 312 313

	if (read(fd, id_buf, sizeof(id_buf)) < 0) {
		close(fd);
314
		return -1;
315 316 317 318 319
	}

	close(fd);
	id = atoll(id_buf);

320 321 322 323 324 325 326
	memset(&attr, 0, sizeof(attr));
	attr.config = id;
	attr.type = PERF_TYPE_TRACEPOINT;
	attr.sample_type |= PERF_SAMPLE_RAW;
	attr.sample_type |= PERF_SAMPLE_TIME;
	attr.sample_type |= PERF_SAMPLE_CPU;
	attr.sample_period = 1;
327

328 329
	snprintf(name, MAX_NAME_LEN, "%s:%s", sys_name, evt_name);
	return add_event(list, idx, &attr, name);
330 331
}

332
static int add_tracepoint_multi(struct list_head **list, int *idx,
333
				char *sys_name, char *evt_name)
334 335 336 337
{
	char evt_path[MAXPATHLEN];
	struct dirent *evt_ent;
	DIR *evt_dir;
338
	int ret = 0;
339

340
	snprintf(evt_path, MAXPATHLEN, "%s/%s", tracing_events_path, sys_name);
341 342 343
	evt_dir = opendir(evt_path);
	if (!evt_dir) {
		perror("Can't open event dir");
344
		return -1;
345 346
	}

347
	while (!ret && (evt_ent = readdir(evt_dir))) {
348 349 350 351 352 353
		if (!strcmp(evt_ent->d_name, ".")
		    || !strcmp(evt_ent->d_name, "..")
		    || !strcmp(evt_ent->d_name, "enable")
		    || !strcmp(evt_ent->d_name, "filter"))
			continue;

354
		if (!strglobmatch(evt_ent->d_name, evt_name))
355 356
			continue;

357
		ret = add_tracepoint(list, idx, sys_name, evt_ent->d_name);
358 359
	}

360
	return ret;
361 362
}

363
int parse_events_add_tracepoint(struct list_head **list, int *idx,
364
				char *sys, char *event)
365
{
366
	int ret;
367

368 369 370
	ret = debugfs_valid_mountpoint(tracing_events_path);
	if (ret)
		return ret;
371

372 373 374
	return strpbrk(event, "*?") ?
	       add_tracepoint_multi(list, idx, sys, event) :
	       add_tracepoint(list, idx, sys, event);
375 376
}

377 378
static int
parse_breakpoint_type(const char *type, struct perf_event_attr *attr)
379 380 381 382
{
	int i;

	for (i = 0; i < 3; i++) {
383
		if (!type || !type[i])
384 385 386 387 388 389 390 391 392 393 394 395 396
			break;

		switch (type[i]) {
		case 'r':
			attr->bp_type |= HW_BREAKPOINT_R;
			break;
		case 'w':
			attr->bp_type |= HW_BREAKPOINT_W;
			break;
		case 'x':
			attr->bp_type |= HW_BREAKPOINT_X;
			break;
		default:
397
			return -EINVAL;
398 399
		}
	}
400

401 402 403
	if (!attr->bp_type) /* Default */
		attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;

404
	return 0;
405 406
}

407
int parse_events_add_breakpoint(struct list_head **list, int *idx,
408
				void *ptr, char *type)
409
{
410 411
	struct perf_event_attr attr;
	char name[MAX_NAME_LEN];
412

413
	memset(&attr, 0, sizeof(attr));
414
	attr.bp_addr = (unsigned long) ptr;
415

416 417
	if (parse_breakpoint_type(type, &attr))
		return -EINVAL;
418

419 420 421 422
	/*
	 * We should find a nice way to override the access length
	 * Provide some defaults for now
	 */
423 424
	if (attr.bp_type == HW_BREAKPOINT_X)
		attr.bp_len = sizeof(long);
425
	else
426
		attr.bp_len = HW_BREAKPOINT_LEN_4;
427

428
	attr.type = PERF_TYPE_BREAKPOINT;
429

430 431
	snprintf(name, MAX_NAME_LEN, "mem:%p:%s", ptr, type ? type : "rw");
	return add_event(list, idx, &attr, name);
432 433
}

434 435 436
static int config_term(struct perf_event_attr *attr,
		       struct parse_events__term *term)
{
437 438 439 440 441 442 443
#define CHECK_TYPE_VAL(type)					\
do {								\
	if (PARSE_EVENTS__TERM_TYPE_ ## type != term->type_val)	\
		return -EINVAL;					\
} while (0)

	switch (term->type_term) {
444
	case PARSE_EVENTS__TERM_TYPE_CONFIG:
445
		CHECK_TYPE_VAL(NUM);
446 447 448
		attr->config = term->val.num;
		break;
	case PARSE_EVENTS__TERM_TYPE_CONFIG1:
449
		CHECK_TYPE_VAL(NUM);
450 451 452
		attr->config1 = term->val.num;
		break;
	case PARSE_EVENTS__TERM_TYPE_CONFIG2:
453
		CHECK_TYPE_VAL(NUM);
454 455 456
		attr->config2 = term->val.num;
		break;
	case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
457
		CHECK_TYPE_VAL(NUM);
458 459 460 461 462 463 464 465
		attr->sample_period = term->val.num;
		break;
	case PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE:
		/*
		 * TODO uncomment when the field is available
		 * attr->branch_sample_type = term->val.num;
		 */
		break;
466 467 468
	case PARSE_EVENTS__TERM_TYPE_NAME:
		CHECK_TYPE_VAL(STR);
		break;
469 470 471
	default:
		return -EINVAL;
	}
472

473
	return 0;
474
#undef CHECK_TYPE_VAL
475 476 477 478 479 480 481 482 483 484 485 486 487 488
}

static int config_attr(struct perf_event_attr *attr,
		       struct list_head *head, int fail)
{
	struct parse_events__term *term;

	list_for_each_entry(term, head, list)
		if (config_term(attr, term) && fail)
			return -EINVAL;

	return 0;
}

489
int parse_events_add_numeric(struct list_head **list, int *idx,
490 491
			     unsigned long type, unsigned long config,
			     struct list_head *head_config)
492
{
493
	struct perf_event_attr attr;
494

495 496 497
	memset(&attr, 0, sizeof(attr));
	attr.type = type;
	attr.config = config;
498 499 500 501 502

	if (head_config &&
	    config_attr(&attr, head_config, 1))
		return -EINVAL;

503
	return add_event(list, idx, &attr, NULL);
504
}
505

506 507 508 509 510
static int parse_events__is_name_term(struct parse_events__term *term)
{
	return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
}

511
static char *pmu_event_name(struct list_head *head_terms)
512 513 514 515 516 517 518
{
	struct parse_events__term *term;

	list_for_each_entry(term, head_terms, list)
		if (parse_events__is_name_term(term))
			return term->val.str;

519
	return NULL;
520 521
}

522
int parse_events_add_pmu(struct list_head **list, int *idx,
523 524 525 526 527 528 529 530 531 532 533
			 char *name, struct list_head *head_config)
{
	struct perf_event_attr attr;
	struct perf_pmu *pmu;

	pmu = perf_pmu__find(name);
	if (!pmu)
		return -EINVAL;

	memset(&attr, 0, sizeof(attr));

534 535 536
	if (perf_pmu__check_alias(pmu, head_config))
		return -EINVAL;

537 538 539 540 541 542 543 544 545
	/*
	 * Configure hardcoded terms first, no need to check
	 * return value when called with fail == 0 ;)
	 */
	config_attr(&attr, head_config, 0);

	if (perf_pmu__config(pmu, &attr, head_config))
		return -EINVAL;

546
	return add_event(list, idx, &attr,
547
			 pmu_event_name(head_config));
548 549
}

550 551 552 553 554 555 556 557 558
void parse_events_update_lists(struct list_head *list_event,
			       struct list_head *list_all)
{
	/*
	 * Called for single event definition. Update the
	 * 'all event' list, and reinit the 'signle event'
	 * list, for next event definition.
	 */
	list_splice_tail(list_event, list_all);
559
	free(list_event);
560 561
}

562
int parse_events_modifier(struct list_head *list, char *str)
563
{
564
	struct perf_evsel *evsel;
565 566
	int exclude = 0, exclude_GH = 0;
	int eu = 0, ek = 0, eh = 0, eH = 0, eG = 0, precise = 0;
567

568
	if (str == NULL)
569
		return 0;
570

571
	while (*str) {
P
Peter Zijlstra 已提交
572 573 574
		if (*str == 'u') {
			if (!exclude)
				exclude = eu = ek = eh = 1;
575
			eu = 0;
P
Peter Zijlstra 已提交
576 577 578
		} else if (*str == 'k') {
			if (!exclude)
				exclude = eu = ek = eh = 1;
579
			ek = 0;
P
Peter Zijlstra 已提交
580 581 582
		} else if (*str == 'h') {
			if (!exclude)
				exclude = eu = ek = eh = 1;
583
			eh = 0;
584 585 586 587 588 589 590 591
		} else if (*str == 'G') {
			if (!exclude_GH)
				exclude_GH = eG = eH = 1;
			eG = 0;
		} else if (*str == 'H') {
			if (!exclude_GH)
				exclude_GH = eG = eH = 1;
			eH = 0;
P
Peter Zijlstra 已提交
592 593 594
		} else if (*str == 'p') {
			precise++;
		} else
595
			break;
P
Peter Zijlstra 已提交
596

597
		++str;
598
	}
599

600 601 602 603 604 605 606 607 608 609 610 611
	/*
	 * precise ip:
	 *
	 *  0 - SAMPLE_IP can have arbitrary skid
	 *  1 - SAMPLE_IP must have constant skid
	 *  2 - SAMPLE_IP requested to have 0 skid
	 *  3 - SAMPLE_IP must have 0 skid
	 *
	 *  See also PERF_RECORD_MISC_EXACT_IP
	 */
	if (precise > 3)
		return -EINVAL;
612

613 614 615 616 617 618 619 620
	list_for_each_entry(evsel, list, node) {
		evsel->attr.exclude_user   = eu;
		evsel->attr.exclude_kernel = ek;
		evsel->attr.exclude_hv     = eh;
		evsel->attr.precise_ip     = precise;
		evsel->attr.exclude_host   = eH;
		evsel->attr.exclude_guest  = eG;
	}
621

622 623
	return 0;
}
624

625
static int parse_events__scanner(const char *str, void *data, int start_token)
626
{
627
	YY_BUFFER_STATE buffer;
628
	void *scanner;
629
	int ret;
630

631
	ret = parse_events_lex_init_extra(start_token, &scanner);
632 633 634 635
	if (ret)
		return ret;

	buffer = parse_events__scan_string(str, scanner);
636

637 638 639
#ifdef PARSER_DEBUG
	parse_events_debug = 1;
#endif
640 641 642 643 644 645 646
	ret = parse_events_parse(data, scanner);

	parse_events__flush_buffer(buffer, scanner);
	parse_events__delete_buffer(buffer, scanner);
	parse_events_lex_destroy(scanner);
	return ret;
}
647

648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
/*
 * parse event config string, return a list of event terms.
 */
int parse_events_terms(struct list_head *terms, const char *str)
{
	struct parse_events_data__terms data = {
		.terms = NULL,
	};
	int ret;

	ret = parse_events__scanner(str, &data, PE_START_TERMS);
	if (!ret) {
		list_splice(data.terms, terms);
		free(data.terms);
		return 0;
	}

	parse_events__free_terms(data.terms);
	return ret;
}

669 670 671 672 673 674 675
int parse_events(struct perf_evlist *evlist, const char *str, int unset __used)
{
	struct parse_events_data__events data = {
		.list = LIST_HEAD_INIT(data.list),
		.idx  = evlist->nr_entries,
	};
	int ret;
676

677
	ret = parse_events__scanner(str, &data, PE_START_EVENTS);
678
	if (!ret) {
679 680
		int entries = data.idx - evlist->nr_entries;
		perf_evlist__splice_list_tail(evlist, &data.list, entries);
681 682
		return 0;
	}
683

684 685 686 687 688
	/*
	 * There are 2 users - builtin-record and builtin-test objects.
	 * Both call perf_evlist__delete in case of error, so we dont
	 * need to bother.
	 */
689
	fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
690
	fprintf(stderr, "Run 'perf list' for a list of valid events\n");
691
	return ret;
692 693
}

694 695 696 697 698 699 700
int parse_events_option(const struct option *opt, const char *str,
			int unset __used)
{
	struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
	return parse_events(evlist, str, unset);
}

701
int parse_filter(const struct option *opt, const char *str,
L
Li Zefan 已提交
702 703
		 int unset __used)
{
704
	struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
705
	struct perf_evsel *last = NULL;
L
Li Zefan 已提交
706

707 708
	if (evlist->nr_entries > 0)
		last = list_entry(evlist->entries.prev, struct perf_evsel, node);
709 710

	if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
L
Li Zefan 已提交
711 712 713 714 715
		fprintf(stderr,
			"-F option should follow a -e tracepoint option\n");
		return -1;
	}

716 717
	last->filter = strdup(str);
	if (last->filter == NULL) {
L
Li Zefan 已提交
718 719 720 721 722 723 724
		fprintf(stderr, "not enough memory to hold filter string\n");
		return -1;
	}

	return 0;
}

725 726 727 728 729
static const char * const event_type_descriptors[] = {
	"Hardware event",
	"Software event",
	"Tracepoint event",
	"Hardware cache event",
730 731
	"Raw hardware event descriptor",
	"Hardware breakpoint",
732 733
};

734 735 736 737
/*
 * Print the events from <debugfs_mount_point>/tracing/events
 */

738
void print_tracepoint_events(const char *subsys_glob, const char *event_glob)
739 740 741 742
{
	DIR *sys_dir, *evt_dir;
	struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
	char evt_path[MAXPATHLEN];
E
Eric Dumazet 已提交
743
	char dir_path[MAXPATHLEN];
744

745
	if (debugfs_valid_mountpoint(tracing_events_path))
746 747
		return;

748
	sys_dir = opendir(tracing_events_path);
749
	if (!sys_dir)
E
Eric Dumazet 已提交
750
		return;
751 752

	for_each_subsystem(sys_dir, sys_dirent, sys_next) {
753 754 755
		if (subsys_glob != NULL && 
		    !strglobmatch(sys_dirent.d_name, subsys_glob))
			continue;
E
Eric Dumazet 已提交
756

757
		snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
E
Eric Dumazet 已提交
758 759 760
			 sys_dirent.d_name);
		evt_dir = opendir(dir_path);
		if (!evt_dir)
761
			continue;
E
Eric Dumazet 已提交
762

763
		for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
764 765 766 767
			if (event_glob != NULL && 
			    !strglobmatch(evt_dirent.d_name, event_glob))
				continue;

768 769
			snprintf(evt_path, MAXPATHLEN, "%s:%s",
				 sys_dirent.d_name, evt_dirent.d_name);
770
			printf("  %-50s [%s]\n", evt_path,
771
				event_type_descriptors[PERF_TYPE_TRACEPOINT]);
772 773 774 775 776 777
		}
		closedir(evt_dir);
	}
	closedir(sys_dir);
}

778 779 780 781 782 783 784 785 786 787 788
/*
 * Check whether event is in <debugfs_mount_point>/tracing/events
 */

int is_valid_tracepoint(const char *event_string)
{
	DIR *sys_dir, *evt_dir;
	struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
	char evt_path[MAXPATHLEN];
	char dir_path[MAXPATHLEN];

789
	if (debugfs_valid_mountpoint(tracing_events_path))
790 791
		return 0;

792
	sys_dir = opendir(tracing_events_path);
793 794 795 796 797
	if (!sys_dir)
		return 0;

	for_each_subsystem(sys_dir, sys_dirent, sys_next) {

798
		snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
			 sys_dirent.d_name);
		evt_dir = opendir(dir_path);
		if (!evt_dir)
			continue;

		for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
			snprintf(evt_path, MAXPATHLEN, "%s:%s",
				 sys_dirent.d_name, evt_dirent.d_name);
			if (!strcmp(evt_path, event_string)) {
				closedir(evt_dir);
				closedir(sys_dir);
				return 1;
			}
		}
		closedir(evt_dir);
	}
	closedir(sys_dir);
	return 0;
}

819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
void print_events_type(u8 type)
{
	struct event_symbol *syms = event_symbols;
	unsigned int i;
	char name[64];

	for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) {
		if (type != syms->type)
			continue;

		if (strlen(syms->alias))
			snprintf(name, sizeof(name),  "%s OR %s",
				 syms->symbol, syms->alias);
		else
			snprintf(name, sizeof(name), "%s", syms->symbol);

835
		printf("  %-50s [%s]\n", name,
836 837 838 839 840 841 842
			event_type_descriptors[type]);
	}
}

int print_hwcache_events(const char *event_glob)
{
	unsigned int type, op, i, printed = 0;
843
	char name[64];
844 845 846 847

	for (type = 0; type < PERF_COUNT_HW_CACHE_MAX; type++) {
		for (op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
			/* skip invalid cache type */
848
			if (!perf_evsel__is_cache_op_valid(type, op))
849 850 851
				continue;

			for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
852 853
				__perf_evsel__hw_cache_type_op_res_name(type, op, i,
									name, sizeof(name));
854
				if (event_glob != NULL && !strglobmatch(name, event_glob))
855 856
					continue;

857
				printf("  %-50s [%s]\n", name,
858 859 860 861 862 863 864 865 866
					event_type_descriptors[PERF_TYPE_HW_CACHE]);
				++printed;
			}
		}
	}

	return printed;
}

867
/*
868
 * Print the help text for the event symbols:
869
 */
870
void print_events(const char *event_glob)
871
{
872
	unsigned int i, type, prev_type = -1, printed = 0, ntypes_printed = 0;
873 874
	struct event_symbol *syms = event_symbols;
	char name[MAX_NAME_LEN];
875

876 877
	printf("\n");
	printf("List of pre-defined events (to be used in -e):\n");
878

879
	for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) {
880
		type = syms->type;
881

882
		if (type != prev_type && printed) {
883
			printf("\n");
884 885 886 887 888 889 890 891
			printed = 0;
			ntypes_printed++;
		}

		if (event_glob != NULL && 
		    !(strglobmatch(syms->symbol, event_glob) ||
		      (syms->alias && strglobmatch(syms->alias, event_glob))))
			continue;
892

893
		if (strlen(syms->alias))
894
			snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
895
		else
896 897
			strncpy(name, syms->symbol, MAX_NAME_LEN);
		printf("  %-50s [%s]\n", name,
898
			event_type_descriptors[type]);
899

900
		prev_type = type;
901
		++printed;
902 903
	}

904 905 906
	if (ntypes_printed) {
		printed = 0;
		printf("\n");
907
	}
908 909 910 911
	print_hwcache_events(event_glob);

	if (event_glob != NULL)
		return;
912

913
	printf("\n");
914
	printf("  %-50s [%s]\n",
915 916 917 918
	       "rNNN",
	       event_type_descriptors[PERF_TYPE_RAW]);
	printf("  %-50s [%s]\n",
	       "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
919
	       event_type_descriptors[PERF_TYPE_RAW]);
920
	printf("   (see 'perf list --help' on how to encode it)\n");
921
	printf("\n");
922

923
	printf("  %-50s [%s]\n",
924 925
			"mem:<addr>[:access]",
			event_type_descriptors[PERF_TYPE_BREAKPOINT]);
926 927
	printf("\n");

928
	print_tracepoint_events(NULL, NULL);
929
}
930 931 932

int parse_events__is_hardcoded_term(struct parse_events__term *term)
{
933
	return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
934 935
}

936 937 938
static int new_term(struct parse_events__term **_term, int type_val,
		    int type_term, char *config,
		    char *str, long num)
939 940 941 942 943 944 945 946
{
	struct parse_events__term *term;

	term = zalloc(sizeof(*term));
	if (!term)
		return -ENOMEM;

	INIT_LIST_HEAD(&term->list);
947 948
	term->type_val  = type_val;
	term->type_term = type_term;
949 950
	term->config = config;

951
	switch (type_val) {
952 953 954 955 956 957 958 959 960 961 962 963 964 965
	case PARSE_EVENTS__TERM_TYPE_NUM:
		term->val.num = num;
		break;
	case PARSE_EVENTS__TERM_TYPE_STR:
		term->val.str = str;
		break;
	default:
		return -EINVAL;
	}

	*_term = term;
	return 0;
}

966 967 968 969 970 971 972 973 974 975 976 977 978 979
int parse_events__term_num(struct parse_events__term **term,
			   int type_term, char *config, long num)
{
	return new_term(term, PARSE_EVENTS__TERM_TYPE_NUM, type_term,
			config, NULL, num);
}

int parse_events__term_str(struct parse_events__term **term,
			   int type_term, char *config, char *str)
{
	return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, type_term,
			config, str, 0);
}

980 981 982 983 984 985 986
int parse_events__term_clone(struct parse_events__term **new,
			     struct parse_events__term *term)
{
	return new_term(new, term->type_val, term->type_term, term->config,
			term->val.str, term->val.num);
}

987 988 989 990 991 992 993 994 995
void parse_events__free_terms(struct list_head *terms)
{
	struct parse_events__term *term, *h;

	list_for_each_entry_safe(term, h, terms, list)
		free(term);

	free(terms);
}