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");
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");
17 #include "../../arch/powerpc/include/asm/unistd.h"
18 #define rmb() asm volatile ("sync" ::: "memory")
19 #define cpu_relax() asm volatile ("" ::: "memory");
23 #include "../../arch/s390/include/asm/unistd.h"
24 #define rmb() asm volatile("bcr 15,0" ::: "memory")
25 #define cpu_relax() asm volatile("" ::: "memory");
29 #include "../../arch/sh/include/asm/unistd.h"
30 #if defined(__SH4A__) || defined(__SH5__)
31 # define rmb() asm volatile("synco" ::: "memory")
33 # define rmb() asm volatile("" ::: "memory")
35 #define cpu_relax() asm volatile("" ::: "memory")
39 #include "../../arch/parisc/include/asm/unistd.h"
40 #define rmb() asm volatile("" ::: "memory")
41 #define cpu_relax() asm volatile("" ::: "memory");
45 #include "../../arch/sparc/include/asm/unistd.h"
46 #define rmb() asm volatile("":::"memory")
47 #define cpu_relax() asm volatile("":::"memory")
51 #include "../../arch/alpha/include/asm/unistd.h"
52 #define rmb() asm volatile("mb" ::: "memory")
53 #define cpu_relax() asm volatile("" ::: "memory")
57 #include "../../arch/ia64/include/asm/unistd.h"
58 #define rmb() asm volatile ("mf" ::: "memory")
59 #define cpu_relax() asm volatile ("hint @pause" ::: "memory")
64 #include <sys/types.h>
65 #include <sys/syscall.h>
67 #include "../../include/linux/perf_event.h"
68 #include "util/types.h"
71 * prctl(PR_TASK_PERF_EVENTS_DISABLE) will (cheaply) disable all
72 * counters in the current task.
74 #define PR_TASK_PERF_EVENTS_DISABLE 31
75 #define PR_TASK_PERF_EVENTS_ENABLE 32
78 # define NSEC_PER_SEC 1000000000ULL
81 static inline unsigned long long rdclock(void)
85 clock_gettime(CLOCK_MONOTONIC
, &ts
);
86 return ts
.tv_sec
* 1000000000ULL + ts
.tv_nsec
;
90 * Pick up some kernel type conventions:
95 #define __used __attribute__((__unused__))
97 #define unlikely(x) __builtin_expect(!!(x), 0)
98 #define min(x, y) ({ \
99 typeof(x) _min1 = (x); \
100 typeof(y) _min2 = (y); \
101 (void) (&_min1 == &_min2); \
102 _min1 < _min2 ? _min1 : _min2; })
105 sys_perf_event_open(struct perf_event_attr
*attr
,
106 pid_t pid
, int cpu
, int group_fd
,
109 attr
->size
= sizeof(*attr
);
110 return syscall(__NR_perf_event_open
, attr
, pid
, cpu
,
114 #define MAX_COUNTERS 256
115 #define MAX_NR_CPUS 256
117 struct ip_callchain
{