parse-events.c 23.0 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
			break;

386 387 388 389 390 391 392 393
#define CHECK_SET_TYPE(bit)		\
do {					\
	if (attr->bp_type & bit)	\
		return -EINVAL;		\
	else				\
		attr->bp_type |= bit;	\
} while (0)

394 395
		switch (type[i]) {
		case 'r':
396
			CHECK_SET_TYPE(HW_BREAKPOINT_R);
397 398
			break;
		case 'w':
399
			CHECK_SET_TYPE(HW_BREAKPOINT_W);
400 401
			break;
		case 'x':
402
			CHECK_SET_TYPE(HW_BREAKPOINT_X);
403 404
			break;
		default:
405
			return -EINVAL;
406 407
		}
	}
408

409 410
#undef CHECK_SET_TYPE

411 412 413
	if (!attr->bp_type) /* Default */
		attr->bp_type = HW_BREAKPOINT_R | HW_BREAKPOINT_W;

414
	return 0;
415 416
}

417
int parse_events_add_breakpoint(struct list_head **list, int *idx,
418
				void *ptr, char *type)
419
{
420 421
	struct perf_event_attr attr;
	char name[MAX_NAME_LEN];
422

423
	memset(&attr, 0, sizeof(attr));
424
	attr.bp_addr = (unsigned long) ptr;
425

426 427
	if (parse_breakpoint_type(type, &attr))
		return -EINVAL;
428

429 430 431 432
	/*
	 * We should find a nice way to override the access length
	 * Provide some defaults for now
	 */
433 434
	if (attr.bp_type == HW_BREAKPOINT_X)
		attr.bp_len = sizeof(long);
435
	else
436
		attr.bp_len = HW_BREAKPOINT_LEN_4;
437

438
	attr.type = PERF_TYPE_BREAKPOINT;
439

440 441
	snprintf(name, MAX_NAME_LEN, "mem:%p:%s", ptr, type ? type : "rw");
	return add_event(list, idx, &attr, name);
442 443
}

444 445 446
static int config_term(struct perf_event_attr *attr,
		       struct parse_events__term *term)
{
447 448 449 450 451 452 453
#define CHECK_TYPE_VAL(type)					\
do {								\
	if (PARSE_EVENTS__TERM_TYPE_ ## type != term->type_val)	\
		return -EINVAL;					\
} while (0)

	switch (term->type_term) {
454
	case PARSE_EVENTS__TERM_TYPE_CONFIG:
455
		CHECK_TYPE_VAL(NUM);
456 457 458
		attr->config = term->val.num;
		break;
	case PARSE_EVENTS__TERM_TYPE_CONFIG1:
459
		CHECK_TYPE_VAL(NUM);
460 461 462
		attr->config1 = term->val.num;
		break;
	case PARSE_EVENTS__TERM_TYPE_CONFIG2:
463
		CHECK_TYPE_VAL(NUM);
464 465 466
		attr->config2 = term->val.num;
		break;
	case PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD:
467
		CHECK_TYPE_VAL(NUM);
468 469 470 471 472 473 474 475
		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;
476 477 478
	case PARSE_EVENTS__TERM_TYPE_NAME:
		CHECK_TYPE_VAL(STR);
		break;
479 480 481
	default:
		return -EINVAL;
	}
482

483
	return 0;
484
#undef CHECK_TYPE_VAL
485 486 487 488 489 490 491 492 493 494 495 496 497 498
}

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;
}

499
int parse_events_add_numeric(struct list_head **list, int *idx,
500 501
			     unsigned long type, unsigned long config,
			     struct list_head *head_config)
502
{
503
	struct perf_event_attr attr;
504

505 506 507
	memset(&attr, 0, sizeof(attr));
	attr.type = type;
	attr.config = config;
508 509 510 511 512

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

513
	return add_event(list, idx, &attr, NULL);
514
}
515

516 517 518 519 520
static int parse_events__is_name_term(struct parse_events__term *term)
{
	return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME;
}

521
static char *pmu_event_name(struct list_head *head_terms)
522 523 524 525 526 527 528
{
	struct parse_events__term *term;

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

529
	return NULL;
530 531
}

532
int parse_events_add_pmu(struct list_head **list, int *idx,
533 534 535 536 537 538 539 540 541 542 543
			 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));

544 545 546
	if (perf_pmu__check_alias(pmu, head_config))
		return -EINVAL;

547 548 549 550 551 552 553 554 555
	/*
	 * 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;

556
	return add_event(list, idx, &attr,
557
			 pmu_event_name(head_config));
558 559
}

560 561 562 563 564 565 566 567 568
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);
569
	free(list_event);
570 571
}

572
int parse_events_modifier(struct list_head *list, char *str)
573
{
574
	struct perf_evsel *evsel;
575 576
	int exclude = 0, exclude_GH = 0;
	int eu = 0, ek = 0, eh = 0, eH = 0, eG = 0, precise = 0;
577

578
	if (str == NULL)
579
		return 0;
580

581
	while (*str) {
P
Peter Zijlstra 已提交
582 583 584
		if (*str == 'u') {
			if (!exclude)
				exclude = eu = ek = eh = 1;
585
			eu = 0;
P
Peter Zijlstra 已提交
586 587 588
		} else if (*str == 'k') {
			if (!exclude)
				exclude = eu = ek = eh = 1;
589
			ek = 0;
P
Peter Zijlstra 已提交
590 591 592
		} else if (*str == 'h') {
			if (!exclude)
				exclude = eu = ek = eh = 1;
593
			eh = 0;
594 595 596 597 598 599 600 601
		} 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 已提交
602 603 604
		} else if (*str == 'p') {
			precise++;
		} else
605
			break;
P
Peter Zijlstra 已提交
606

607
		++str;
608
	}
609

610 611 612 613 614 615 616 617 618 619 620 621
	/*
	 * 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;
622

623 624 625 626 627 628 629 630
	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;
	}
631

632 633
	return 0;
}
634

635
static int parse_events__scanner(const char *str, void *data, int start_token)
636
{
637
	YY_BUFFER_STATE buffer;
638
	void *scanner;
639
	int ret;
640

641
	ret = parse_events_lex_init_extra(start_token, &scanner);
642 643 644 645
	if (ret)
		return ret;

	buffer = parse_events__scan_string(str, scanner);
646

647 648 649
#ifdef PARSER_DEBUG
	parse_events_debug = 1;
#endif
650 651 652 653 654 655 656
	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;
}
657

658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
/*
 * 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;
}

679 680 681 682 683 684 685
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;
686

687
	ret = parse_events__scanner(str, &data, PE_START_EVENTS);
688
	if (!ret) {
689 690
		int entries = data.idx - evlist->nr_entries;
		perf_evlist__splice_list_tail(evlist, &data.list, entries);
691 692
		return 0;
	}
693

694 695 696 697 698
	/*
	 * 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.
	 */
699
	fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
700
	fprintf(stderr, "Run 'perf list' for a list of valid events\n");
701
	return ret;
702 703
}

704 705 706 707 708 709 710
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);
}

711
int parse_filter(const struct option *opt, const char *str,
L
Li Zefan 已提交
712 713
		 int unset __used)
{
714
	struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
715
	struct perf_evsel *last = NULL;
L
Li Zefan 已提交
716

717 718
	if (evlist->nr_entries > 0)
		last = list_entry(evlist->entries.prev, struct perf_evsel, node);
719 720

	if (last == NULL || last->attr.type != PERF_TYPE_TRACEPOINT) {
L
Li Zefan 已提交
721 722 723 724 725
		fprintf(stderr,
			"-F option should follow a -e tracepoint option\n");
		return -1;
	}

726 727
	last->filter = strdup(str);
	if (last->filter == NULL) {
L
Li Zefan 已提交
728 729 730 731 732 733 734
		fprintf(stderr, "not enough memory to hold filter string\n");
		return -1;
	}

	return 0;
}

735 736 737 738 739
static const char * const event_type_descriptors[] = {
	"Hardware event",
	"Software event",
	"Tracepoint event",
	"Hardware cache event",
740 741
	"Raw hardware event descriptor",
	"Hardware breakpoint",
742 743
};

744 745 746 747
/*
 * Print the events from <debugfs_mount_point>/tracing/events
 */

748
void print_tracepoint_events(const char *subsys_glob, const char *event_glob)
749 750 751 752
{
	DIR *sys_dir, *evt_dir;
	struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
	char evt_path[MAXPATHLEN];
E
Eric Dumazet 已提交
753
	char dir_path[MAXPATHLEN];
754

755
	if (debugfs_valid_mountpoint(tracing_events_path))
756 757
		return;

758
	sys_dir = opendir(tracing_events_path);
759
	if (!sys_dir)
E
Eric Dumazet 已提交
760
		return;
761 762

	for_each_subsystem(sys_dir, sys_dirent, sys_next) {
763 764 765
		if (subsys_glob != NULL && 
		    !strglobmatch(sys_dirent.d_name, subsys_glob))
			continue;
E
Eric Dumazet 已提交
766

767
		snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
E
Eric Dumazet 已提交
768 769 770
			 sys_dirent.d_name);
		evt_dir = opendir(dir_path);
		if (!evt_dir)
771
			continue;
E
Eric Dumazet 已提交
772

773
		for_each_event(sys_dirent, evt_dir, evt_dirent, evt_next) {
774 775 776 777
			if (event_glob != NULL && 
			    !strglobmatch(evt_dirent.d_name, event_glob))
				continue;

778 779
			snprintf(evt_path, MAXPATHLEN, "%s:%s",
				 sys_dirent.d_name, evt_dirent.d_name);
780
			printf("  %-50s [%s]\n", evt_path,
781
				event_type_descriptors[PERF_TYPE_TRACEPOINT]);
782 783 784 785 786 787
		}
		closedir(evt_dir);
	}
	closedir(sys_dir);
}

788 789 790 791 792 793 794 795 796 797 798
/*
 * 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];

799
	if (debugfs_valid_mountpoint(tracing_events_path))
800 801
		return 0;

802
	sys_dir = opendir(tracing_events_path);
803 804 805 806 807
	if (!sys_dir)
		return 0;

	for_each_subsystem(sys_dir, sys_dirent, sys_next) {

808
		snprintf(dir_path, MAXPATHLEN, "%s/%s", tracing_events_path,
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
			 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;
}

829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
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);

845
		printf("  %-50s [%s]\n", name,
846 847 848 849 850 851 852
			event_type_descriptors[type]);
	}
}

int print_hwcache_events(const char *event_glob)
{
	unsigned int type, op, i, printed = 0;
853
	char name[64];
854 855 856 857

	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 */
858
			if (!perf_evsel__is_cache_op_valid(type, op))
859 860 861
				continue;

			for (i = 0; i < PERF_COUNT_HW_CACHE_RESULT_MAX; i++) {
862 863
				__perf_evsel__hw_cache_type_op_res_name(type, op, i,
									name, sizeof(name));
864
				if (event_glob != NULL && !strglobmatch(name, event_glob))
865 866
					continue;

867
				printf("  %-50s [%s]\n", name,
868 869 870 871 872 873 874 875 876
					event_type_descriptors[PERF_TYPE_HW_CACHE]);
				++printed;
			}
		}
	}

	return printed;
}

877
/*
878
 * Print the help text for the event symbols:
879
 */
880
void print_events(const char *event_glob)
881
{
882
	unsigned int i, type, prev_type = -1, printed = 0, ntypes_printed = 0;
883 884
	struct event_symbol *syms = event_symbols;
	char name[MAX_NAME_LEN];
885

886 887
	printf("\n");
	printf("List of pre-defined events (to be used in -e):\n");
888

889
	for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) {
890
		type = syms->type;
891

892
		if (type != prev_type && printed) {
893
			printf("\n");
894 895 896 897 898 899 900 901
			printed = 0;
			ntypes_printed++;
		}

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

903
		if (strlen(syms->alias))
904
			snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias);
905
		else
906 907
			strncpy(name, syms->symbol, MAX_NAME_LEN);
		printf("  %-50s [%s]\n", name,
908
			event_type_descriptors[type]);
909

910
		prev_type = type;
911
		++printed;
912 913
	}

914 915 916
	if (ntypes_printed) {
		printed = 0;
		printf("\n");
917
	}
918 919 920 921
	print_hwcache_events(event_glob);

	if (event_glob != NULL)
		return;
922

923
	printf("\n");
924
	printf("  %-50s [%s]\n",
925 926 927 928
	       "rNNN",
	       event_type_descriptors[PERF_TYPE_RAW]);
	printf("  %-50s [%s]\n",
	       "cpu/t1=v1[,t2=v2,t3 ...]/modifier",
929
	       event_type_descriptors[PERF_TYPE_RAW]);
930
	printf("   (see 'perf list --help' on how to encode it)\n");
931
	printf("\n");
932

933
	printf("  %-50s [%s]\n",
934 935
			"mem:<addr>[:access]",
			event_type_descriptors[PERF_TYPE_BREAKPOINT]);
936 937
	printf("\n");

938
	print_tracepoint_events(NULL, NULL);
939
}
940 941 942

int parse_events__is_hardcoded_term(struct parse_events__term *term)
{
943
	return term->type_term != PARSE_EVENTS__TERM_TYPE_USER;
944 945
}

946 947 948
static int new_term(struct parse_events__term **_term, int type_val,
		    int type_term, char *config,
		    char *str, long num)
949 950 951 952 953 954 955 956
{
	struct parse_events__term *term;

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

	INIT_LIST_HEAD(&term->list);
957 958
	term->type_val  = type_val;
	term->type_term = type_term;
959 960
	term->config = config;

961
	switch (type_val) {
962 963 964 965 966 967 968 969 970 971 972 973 974 975
	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;
}

976 977 978 979 980 981 982 983 984 985 986 987 988 989
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);
}

990 991 992 993 994 995 996
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);
}

997 998 999 1000 1001 1002 1003 1004 1005
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);
}