diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-11 17:01:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-11 17:01:07 -0400 |
commit | 8a1ca8cedd108c8e76a6ab34079d0bbb4f244799 (patch) | |
tree | 636c715524f1718599209cc289908ea44b6cb859 /tools/perf/perf.h | |
parent | b640f042faa2a2fad6464f259a8afec06e2f6386 (diff) | |
parent | 940010c5a314a7bd9b498593bc6ba1718ac5aec5 (diff) |
Merge branch 'perfcounters-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'perfcounters-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: (574 commits)
perf_counter: Turn off by default
perf_counter: Add counter->id to the throttle event
perf_counter: Better align code
perf_counter: Rename L2 to LL cache
perf_counter: Standardize event names
perf_counter: Rename enums
perf_counter tools: Clean up u64 usage
perf_counter: Rename perf_counter_limit sysctl
perf_counter: More paranoia settings
perf_counter: powerpc: Implement generalized cache events for POWER processors
perf_counters: powerpc: Add support for POWER7 processors
perf_counter: Accurate period data
perf_counter: Introduce struct for sample data
perf_counter tools: Normalize data using per sample period data
perf_counter: Annotate exit ctx recursion
perf_counter tools: Propagate signals properly
perf_counter tools: Small frequency related fixes
perf_counter: More aggressive frequency adjustment
perf_counter/x86: Fix the model number of Intel Core2 processors
perf_counter, x86: Correct some event and umask values for Intel processors
...
Diffstat (limited to 'tools/perf/perf.h')
-rw-r--r-- | tools/perf/perf.h | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/tools/perf/perf.h b/tools/perf/perf.h new file mode 100644 index 000000000000..af0a5046d743 --- /dev/null +++ b/tools/perf/perf.h | |||
@@ -0,0 +1,67 @@ | |||
1 | #ifndef _PERF_PERF_H | ||
2 | #define _PERF_PERF_H | ||
3 | |||
4 | #if defined(__x86_64__) || defined(__i386__) | ||
5 | #include "../../arch/x86/include/asm/unistd.h" | ||
6 | #define rmb() asm volatile("lfence" ::: "memory") | ||
7 | #define cpu_relax() asm volatile("rep; nop" ::: "memory"); | ||
8 | #endif | ||
9 | |||
10 | #ifdef __powerpc__ | ||
11 | #include "../../arch/powerpc/include/asm/unistd.h" | ||
12 | #define rmb() asm volatile ("sync" ::: "memory") | ||
13 | #define cpu_relax() asm volatile ("" ::: "memory"); | ||
14 | #endif | ||
15 | |||
16 | #include <time.h> | ||
17 | #include <unistd.h> | ||
18 | #include <sys/types.h> | ||
19 | #include <sys/syscall.h> | ||
20 | |||
21 | #include "../../include/linux/perf_counter.h" | ||
22 | |||
23 | /* | ||
24 | * prctl(PR_TASK_PERF_COUNTERS_DISABLE) will (cheaply) disable all | ||
25 | * counters in the current task. | ||
26 | */ | ||
27 | #define PR_TASK_PERF_COUNTERS_DISABLE 31 | ||
28 | #define PR_TASK_PERF_COUNTERS_ENABLE 32 | ||
29 | |||
30 | #ifndef NSEC_PER_SEC | ||
31 | # define NSEC_PER_SEC 1000000000ULL | ||
32 | #endif | ||
33 | |||
34 | static inline unsigned long long rdclock(void) | ||
35 | { | ||
36 | struct timespec ts; | ||
37 | |||
38 | clock_gettime(CLOCK_MONOTONIC, &ts); | ||
39 | return ts.tv_sec * 1000000000ULL + ts.tv_nsec; | ||
40 | } | ||
41 | |||
42 | /* | ||
43 | * Pick up some kernel type conventions: | ||
44 | */ | ||
45 | #define __user | ||
46 | #define asmlinkage | ||
47 | |||
48 | #define unlikely(x) __builtin_expect(!!(x), 0) | ||
49 | #define min(x, y) ({ \ | ||
50 | typeof(x) _min1 = (x); \ | ||
51 | typeof(y) _min2 = (y); \ | ||
52 | (void) (&_min1 == &_min2); \ | ||
53 | _min1 < _min2 ? _min1 : _min2; }) | ||
54 | |||
55 | static inline int | ||
56 | sys_perf_counter_open(struct perf_counter_attr *attr_uptr, | ||
57 | pid_t pid, int cpu, int group_fd, | ||
58 | unsigned long flags) | ||
59 | { | ||
60 | return syscall(__NR_perf_counter_open, attr_uptr, pid, cpu, | ||
61 | group_fd, flags); | ||
62 | } | ||
63 | |||
64 | #define MAX_COUNTERS 256 | ||
65 | #define MAX_NR_CPUS 256 | ||
66 | |||
67 | #endif | ||