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");
46 #include <sys/types.h>
47 #include <sys/syscall.h>
49 #include "../../include/linux/perf_counter.h"
50 #include "util/types.h"
53 * prctl(PR_TASK_PERF_COUNTERS_DISABLE) will (cheaply) disable all
54 * counters in the current task.
56 #define PR_TASK_PERF_COUNTERS_DISABLE 31
57 #define PR_TASK_PERF_COUNTERS_ENABLE 32
60 # define NSEC_PER_SEC 1000000000ULL
63 static inline unsigned long long rdclock(void)
67 clock_gettime(CLOCK_MONOTONIC, &ts);
68 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
72 * Pick up some kernel type conventions:
77 #define __used __attribute__((__unused__))
79 #define unlikely(x) __builtin_expect(!!(x), 0)
80 #define min(x, y) ({ \
81 typeof(x) _min1 = (x); \
82 typeof(y) _min2 = (y); \
83 (void) (&_min1 == &_min2); \
84 _min1 < _min2 ? _min1 : _min2; })
87 sys_perf_counter_open(struct perf_counter_attr *attr,
88 pid_t pid, int cpu, int group_fd,
91 attr->size = sizeof(*attr);
92 return syscall(__NR_perf_counter_open, attr, pid, cpu,
96 #define MAX_COUNTERS 256
97 #define MAX_NR_CPUS 256