6 void get_term_dimensions(struct winsize
*ws
);
9 #include "../../arch/x86/include/asm/unistd.h"
10 #define rmb() asm volatile("lock; addl $0,0(%%esp)" ::: "memory")
11 #define cpu_relax() asm volatile("rep; nop" ::: "memory");
12 #define CPUINFO_PROC "model name"
13 #ifndef __NR_perf_event_open
14 # define __NR_perf_event_open 336
18 #if defined(__x86_64__)
19 #include "../../arch/x86/include/asm/unistd.h"
20 #define rmb() asm volatile("lfence" ::: "memory")
21 #define cpu_relax() asm volatile("rep; nop" ::: "memory");
22 #define CPUINFO_PROC "model name"
23 #ifndef __NR_perf_event_open
24 # define __NR_perf_event_open 298
29 #include "../../arch/powerpc/include/asm/unistd.h"
30 #define rmb() asm volatile ("sync" ::: "memory")
31 #define cpu_relax() asm volatile ("" ::: "memory");
32 #define CPUINFO_PROC "cpu"
36 #include "../../arch/s390/include/asm/unistd.h"
37 #define rmb() asm volatile("bcr 15,0" ::: "memory")
38 #define cpu_relax() asm volatile("" ::: "memory");
42 #include "../../arch/sh/include/asm/unistd.h"
43 #if defined(__SH4A__) || defined(__SH5__)
44 # define rmb() asm volatile("synco" ::: "memory")
46 # define rmb() asm volatile("" ::: "memory")
48 #define cpu_relax() asm volatile("" ::: "memory")
49 #define CPUINFO_PROC "cpu type"
53 #include "../../arch/parisc/include/asm/unistd.h"
54 #define rmb() asm volatile("" ::: "memory")
55 #define cpu_relax() asm volatile("" ::: "memory");
56 #define CPUINFO_PROC "cpu"
60 #include "../../arch/sparc/include/asm/unistd.h"
61 #define rmb() asm volatile("":::"memory")
62 #define cpu_relax() asm volatile("":::"memory")
63 #define CPUINFO_PROC "cpu"
67 #include "../../arch/alpha/include/asm/unistd.h"
68 #define rmb() asm volatile("mb" ::: "memory")
69 #define cpu_relax() asm volatile("" ::: "memory")
70 #define CPUINFO_PROC "cpu model"
74 #include "../../arch/ia64/include/asm/unistd.h"
75 #define rmb() asm volatile ("mf" ::: "memory")
76 #define cpu_relax() asm volatile ("hint @pause" ::: "memory")
77 #define CPUINFO_PROC "model name"
81 #include "../../arch/arm/include/asm/unistd.h"
83 * Use the __kuser_memory_barrier helper in the CPU helper page. See
84 * arch/arm/kernel/entry-armv.S in the kernel source for details.
86 #define rmb() ((void(*)(void))0xffff0fa0)()
87 #define cpu_relax() asm volatile("":::"memory")
88 #define CPUINFO_PROC "Processor"
92 #include "../../arch/mips/include/asm/unistd.h"
93 #define rmb() asm volatile( \
100 #define cpu_relax() asm volatile("" ::: "memory")
101 #define CPUINFO_PROC "cpu model"
106 #include <sys/types.h>
107 #include <sys/syscall.h>
109 #include "../../include/linux/perf_event.h"
110 #include "util/types.h"
119 static inline unsigned int perf_mmap__read_head(struct perf_mmap
*mm
)
121 struct perf_event_mmap_page
*pc
= mm
->base
;
122 int head
= pc
->data_head
;
127 static inline void perf_mmap__write_tail(struct perf_mmap
*md
,
130 struct perf_event_mmap_page
*pc
= md
->base
;
133 * ensure all reads are done before we write the tail out.
136 pc
->data_tail
= tail
;
140 * prctl(PR_TASK_PERF_EVENTS_DISABLE) will (cheaply) disable all
141 * counters in the current task.
143 #define PR_TASK_PERF_EVENTS_DISABLE 31
144 #define PR_TASK_PERF_EVENTS_ENABLE 32
147 # define NSEC_PER_SEC 1000000000ULL
150 static inline unsigned long long rdclock(void)
154 clock_gettime(CLOCK_MONOTONIC
, &ts
);
155 return ts
.tv_sec
* 1000000000ULL + ts
.tv_nsec
;
159 * Pick up some kernel type conventions:
164 #define unlikely(x) __builtin_expect(!!(x), 0)
165 #define min(x, y) ({ \
166 typeof(x) _min1 = (x); \
167 typeof(y) _min2 = (y); \
168 (void) (&_min1 == &_min2); \
169 _min1 < _min2 ? _min1 : _min2; })
172 sys_perf_event_open(struct perf_event_attr
*attr
,
173 pid_t pid
, int cpu
, int group_fd
,
176 attr
->size
= sizeof(*attr
);
177 return syscall(__NR_perf_event_open
, attr
, pid
, cpu
,
181 #define MAX_COUNTERS 256
182 #define MAX_NR_CPUS 256
184 struct ip_callchain
{
189 extern bool perf_host
, perf_guest
;
190 extern const char perf_version_string
[];
192 void pthread__unblock_sigwinch(void);
194 struct perf_record_opts
{
207 bool sample_id_all_avail
;
208 bool exclude_guest_missing
;
212 unsigned int mmap_pages
;
213 unsigned int user_freq
;
214 u64 default_interval
;
216 const char *cpu_list
;