From 95ef3b3011e48bc1a5775c320d3bbc7b84853512 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Thu, 18 Mar 2010 08:04:21 -0400 Subject: PR909: switch to tapset-based attr/type resolution * tapset/perf.stp: New file. * tapset-perfmon.cxx (perf_derived_probe): Drop event_name field throughout. Listen to type(N).config(M) instead. --- tapset/perf.stp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tapset/perf.stp (limited to 'tapset') diff --git a/tapset/perf.stp b/tapset/perf.stp new file mode 100644 index 00000000..cdc4ef9d --- /dev/null +++ b/tapset/perf.stp @@ -0,0 +1,29 @@ +// pcl aka perf aka perf-events tapset +// Copyright (C) 2010 Red Hat Inc. +// +// This file is free software. You can redistribute it and/or modify it under +// the terms of the GNU General Public License (GPL), version 2. + +// The type and config values are part of the sys_perf_event_open() ABI, +// 'perf_event_attr' struct. See . + +// PERF_TYPE_HW +probe perf.hw.cpu_cycles = perf.type(0).config(0) { } +probe perf.hw.instructions = perf.type(0).config(1) { } +probe perf.hw.cache_references = perf.type(0).config(2) { } +probe perf.hw.cache_misses = perf.type(0).config(3) { } +probe perf.hw.branch_instructions = perf.type(0).config(4) { } +probe perf.hw.branch_misses = perf.type(0).config(5) { } +probe perf.hw.bus_cycles = perf.type(0).config(6) { } + +// PERF_TYPE_SOFTWARE +probe perf.sw.cpu_clock = perf.type(1).config(0) { } +probe perf.sw.task_clock = perf.type(1).config(1) { } +probe perf.sw.page_faults = perf.type(1).config(2) { } +probe perf.sw.context_switches = perf.type(1).config(3) { } +probe perf.sw.cpu_migrations = perf.type(1).config(4) { } +probe perf.sw.page_faults_min = perf.type(1).config(5) { } +probe perf.sw.page_faults_maj = perf.type(1).config(6) { } +probe perf.sw.alignment_faults = perf.type(1).config(7) { } +probe perf.sw.emulation_faults = perf.type(1).config(8) { } + -- cgit