perf tools: Factorize high level dso helpers
[linux-2.6-block.git] / tools / perf / perf.h
CommitLineData
6eda5838
TG
1#ifndef _PERF_PERF_H
2#define _PERF_PERF_H
3
11d1578f
VW
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__)
1a482f38
PZ
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
12310e9c
MS
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
febe8345
PM
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
2d4618dc
KM
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
1a482f38
PZ
44#include <time.h>
45#include <unistd.h>
46#include <sys/types.h>
47#include <sys/syscall.h>
48
49#include "../../include/linux/perf_counter.h"
7c6a1c65 50#include "util/types.h"
cd84c2ac 51#include "util/debug.h"
1a482f38 52
6eda5838
TG
53/*
54 * prctl(PR_TASK_PERF_COUNTERS_DISABLE) will (cheaply) disable all
55 * counters in the current task.
56 */
57#define PR_TASK_PERF_COUNTERS_DISABLE 31
58#define PR_TASK_PERF_COUNTERS_ENABLE 32
59
a92e7023
TG
60#ifndef NSEC_PER_SEC
61# define NSEC_PER_SEC 1000000000ULL
62#endif
63
64static inline unsigned long long rdclock(void)
65{
66 struct timespec ts;
67
68 clock_gettime(CLOCK_MONOTONIC, &ts);
69 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
70}
6eda5838
TG
71
72/*
73 * Pick up some kernel type conventions:
74 */
75#define __user
76#define asmlinkage
77
f37a291c
IM
78#define __used __attribute__((__unused__))
79
6eda5838
TG
80#define unlikely(x) __builtin_expect(!!(x), 0)
81#define min(x, y) ({ \
82 typeof(x) _min1 = (x); \
83 typeof(y) _min2 = (y); \
84 (void) (&_min1 == &_min2); \
85 _min1 < _min2 ? _min1 : _min2; })
86
87static inline int
974802ea 88sys_perf_counter_open(struct perf_counter_attr *attr,
6eda5838
TG
89 pid_t pid, int cpu, int group_fd,
90 unsigned long flags)
91{
974802ea
PZ
92 attr->size = sizeof(*attr);
93 return syscall(__NR_perf_counter_open, attr, pid, cpu,
6eda5838
TG
94 group_fd, flags);
95}
96
85a9f920
IM
97#define MAX_COUNTERS 256
98#define MAX_NR_CPUS 256
6eda5838 99
8cb76d99
FW
100struct ip_callchain {
101 u64 nr;
102 u64 ips[0];
f5970550
PZ
103};
104
6eda5838 105#endif