blob: 454d5d55f32d9cb30d8206c6f03bfe1e0b5f61fb [file] [log] [blame]
Thomas Gleixner6eda5832009-05-01 18:29:57 +02001#ifndef _PERF_PERF_H
2#define _PERF_PERF_H
3
Vince Weaver11d15782009-07-08 17:46:14 -04004#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__)
Peter Zijlstra1a482f32009-05-23 18:28:58 +020011#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
Martin Schwidefsky12310e92009-06-22 12:08:22 +020022#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
Paul Mundtfebe8342009-06-25 14:41:57 +090028#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
Kyle McMartin2d4618d2009-06-23 21:38:49 -040038#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
Jens Axboe825c9fb2009-09-04 02:56:22 -070044#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
Michael Creefcd14b32009-10-26 21:32:06 +130050#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
Luck, Tony11ada262009-11-17 09:05:56 -080056#ifdef __ia64__
57#include "../../arch/ia64/include/asm/unistd.h"
58#define rmb() asm volatile ("mf" ::: "memory")
59#define cpu_relax() asm volatile ("hint @pause" ::: "memory")
60#endif
61
Peter Zijlstra1a482f32009-05-23 18:28:58 +020062#include <time.h>
63#include <unistd.h>
64#include <sys/types.h>
65#include <sys/syscall.h>
66
Ingo Molnarcdd6c482009-09-21 12:02:48 +020067#include "../../include/linux/perf_event.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020068#include "util/types.h"
Peter Zijlstra1a482f32009-05-23 18:28:58 +020069
Thomas Gleixner6eda5832009-05-01 18:29:57 +020070/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020071 * prctl(PR_TASK_PERF_EVENTS_DISABLE) will (cheaply) disable all
Thomas Gleixner6eda5832009-05-01 18:29:57 +020072 * counters in the current task.
73 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +020074#define PR_TASK_PERF_EVENTS_DISABLE 31
75#define PR_TASK_PERF_EVENTS_ENABLE 32
Thomas Gleixner6eda5832009-05-01 18:29:57 +020076
Thomas Gleixnera92e702372009-05-01 18:39:47 +020077#ifndef NSEC_PER_SEC
78# define NSEC_PER_SEC 1000000000ULL
79#endif
80
81static inline unsigned long long rdclock(void)
82{
83 struct timespec ts;
84
85 clock_gettime(CLOCK_MONOTONIC, &ts);
86 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
87}
Thomas Gleixner6eda5832009-05-01 18:29:57 +020088
89/*
90 * Pick up some kernel type conventions:
91 */
92#define __user
93#define asmlinkage
94
Ingo Molnarf37a2912009-07-01 12:37:06 +020095#define __used __attribute__((__unused__))
96
Thomas Gleixner6eda5832009-05-01 18:29:57 +020097#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; })
103
104static inline int
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200105sys_perf_event_open(struct perf_event_attr *attr,
Thomas Gleixner6eda5832009-05-01 18:29:57 +0200106 pid_t pid, int cpu, int group_fd,
107 unsigned long flags)
108{
Peter Zijlstra974802e2009-06-12 12:46:55 +0200109 attr->size = sizeof(*attr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200110 return syscall(__NR_perf_event_open, attr, pid, cpu,
Thomas Gleixner6eda5832009-05-01 18:29:57 +0200111 group_fd, flags);
112}
113
Ingo Molnar85a9f922009-05-25 09:59:50 +0200114#define MAX_COUNTERS 256
115#define MAX_NR_CPUS 256
Thomas Gleixner6eda5832009-05-01 18:29:57 +0200116
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200117struct ip_callchain {
118 u64 nr;
119 u64 ips[0];
Peter Zijlstraf5970552009-06-18 23:22:55 +0200120};
121
Thomas Gleixner6eda5832009-05-01 18:29:57 +0200122#endif