]> bbs.cooldavid.org Git - net-next-2.6.git/blob - tools/perf/perf.h
perf_counter: Add P6 PMU support
[net-next-2.6.git] / tools / perf / perf.h
1 #ifndef _PERF_PERF_H
2 #define _PERF_PERF_H
3
4 #if defined(__i386__)
5 #include "../../arch/x86/include/asm/unistd.h"
6 #define rmb()           asm volatile("lock; addl $0,0(%%esp)" ::: "memory")
7 #define cpu_relax()     asm volatile("rep; nop" ::: "memory");
8 #endif
9
10 #if defined(__x86_64__)
11 #include "../../arch/x86/include/asm/unistd.h"
12 #define rmb()           asm volatile("lfence" ::: "memory")
13 #define cpu_relax()     asm volatile("rep; nop" ::: "memory");
14 #endif
15
16 #ifdef __powerpc__
17 #include "../../arch/powerpc/include/asm/unistd.h"
18 #define rmb()           asm volatile ("sync" ::: "memory")
19 #define cpu_relax()     asm volatile ("" ::: "memory");
20 #endif
21
22 #ifdef __s390__
23 #include "../../arch/s390/include/asm/unistd.h"
24 #define rmb()           asm volatile("bcr 15,0" ::: "memory")
25 #define cpu_relax()     asm volatile("" ::: "memory");
26 #endif
27
28 #include <time.h>
29 #include <unistd.h>
30 #include <sys/types.h>
31 #include <sys/syscall.h>
32
33 #include "../../include/linux/perf_counter.h"
34 #include "util/types.h"
35
36 /*
37  * prctl(PR_TASK_PERF_COUNTERS_DISABLE) will (cheaply) disable all
38  * counters in the current task.
39  */
40 #define PR_TASK_PERF_COUNTERS_DISABLE   31
41 #define PR_TASK_PERF_COUNTERS_ENABLE    32
42
43 #ifndef NSEC_PER_SEC
44 # define NSEC_PER_SEC                   1000000000ULL
45 #endif
46
47 static inline unsigned long long rdclock(void)
48 {
49         struct timespec ts;
50
51         clock_gettime(CLOCK_MONOTONIC, &ts);
52         return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
53 }
54
55 /*
56  * Pick up some kernel type conventions:
57  */
58 #define __user
59 #define asmlinkage
60
61 #define __used          __attribute__((__unused__))
62
63 #define unlikely(x)     __builtin_expect(!!(x), 0)
64 #define min(x, y) ({                            \
65         typeof(x) _min1 = (x);                  \
66         typeof(y) _min2 = (y);                  \
67         (void) (&_min1 == &_min2);              \
68         _min1 < _min2 ? _min1 : _min2; })
69
70 static inline int
71 sys_perf_counter_open(struct perf_counter_attr *attr,
72                       pid_t pid, int cpu, int group_fd,
73                       unsigned long flags)
74 {
75         attr->size = sizeof(*attr);
76         return syscall(__NR_perf_counter_open, attr, pid, cpu,
77                        group_fd, flags);
78 }
79
80 #define MAX_COUNTERS                    256
81 #define MAX_NR_CPUS                     256
82
83 struct ip_callchain {
84         u64 nr;
85         u64 ips[0];
86 };
87
88 #endif