Merge commit 'v2.6.32-rc6' into perf/core
[safe/jmp/linux-2.6] / 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 #ifdef __sh__
29 #include "../../arch/sh/include/asm/unistd.h"
30 #if defined(__SH4A__) || defined(__SH5__)
31 # define rmb()          asm volatile("synco" ::: "memory")
32 #else
33 # define rmb()          asm volatile("" ::: "memory")
34 #endif
35 #define cpu_relax()     asm volatile("" ::: "memory")
36 #endif
37
38 #ifdef __hppa__
39 #include "../../arch/parisc/include/asm/unistd.h"
40 #define rmb()           asm volatile("" ::: "memory")
41 #define cpu_relax()     asm volatile("" ::: "memory");
42 #endif
43
44 #ifdef __sparc__
45 #include "../../arch/sparc/include/asm/unistd.h"
46 #define rmb()           asm volatile("":::"memory")
47 #define cpu_relax()     asm volatile("":::"memory")
48 #endif
49
50 #ifdef __alpha__
51 #include "../../arch/alpha/include/asm/unistd.h"
52 #define rmb()           asm volatile("mb" ::: "memory")
53 #define cpu_relax()     asm volatile("" ::: "memory")
54 #endif
55
56 #include <time.h>
57 #include <unistd.h>
58 #include <sys/types.h>
59 #include <sys/syscall.h>
60
61 #include "../../include/linux/perf_event.h"
62 #include "util/types.h"
63
64 /*
65  * prctl(PR_TASK_PERF_EVENTS_DISABLE) will (cheaply) disable all
66  * counters in the current task.
67  */
68 #define PR_TASK_PERF_EVENTS_DISABLE   31
69 #define PR_TASK_PERF_EVENTS_ENABLE    32
70
71 #ifndef NSEC_PER_SEC
72 # define NSEC_PER_SEC                   1000000000ULL
73 #endif
74
75 static inline unsigned long long rdclock(void)
76 {
77         struct timespec ts;
78
79         clock_gettime(CLOCK_MONOTONIC, &ts);
80         return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
81 }
82
83 /*
84  * Pick up some kernel type conventions:
85  */
86 #define __user
87 #define asmlinkage
88
89 #define __used          __attribute__((__unused__))
90
91 #define unlikely(x)     __builtin_expect(!!(x), 0)
92 #define min(x, y) ({                            \
93         typeof(x) _min1 = (x);                  \
94         typeof(y) _min2 = (y);                  \
95         (void) (&_min1 == &_min2);              \
96         _min1 < _min2 ? _min1 : _min2; })
97
98 static inline int
99 sys_perf_event_open(struct perf_event_attr *attr,
100                       pid_t pid, int cpu, int group_fd,
101                       unsigned long flags)
102 {
103         attr->size = sizeof(*attr);
104         return syscall(__NR_perf_event_open, attr, pid, cpu,
105                        group_fd, flags);
106 }
107
108 #define MAX_COUNTERS                    256
109 #define MAX_NR_CPUS                     256
110
111 struct ip_callchain {
112         u64 nr;
113         u64 ips[0];
114 };
115
116 #endif