blob: 53bb9550def9b3a76f543d62d00910d05cbaa14d [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
Peter Zijlstra1a482f32009-05-23 18:28:58 +020028#include <time.h>
29#include <unistd.h>
30#include <sys/types.h>
31#include <sys/syscall.h>
32
33#include "../../include/linux/perf_counter.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020034#include "util/types.h"
Peter Zijlstra1a482f32009-05-23 18:28:58 +020035
Thomas Gleixner6eda5832009-05-01 18:29:57 +020036/*
37 * prctl(PR_TASK_PERF_COUNTERS_DISABLE) will (cheaply) disable all
38 * counters in the current task.
39 */
40#define PR_TASK_PERF_COUNTERS_DISABLE 31
41#define PR_TASK_PERF_COUNTERS_ENABLE 32
42
Thomas Gleixnera92e702372009-05-01 18:39:47 +020043#ifndef NSEC_PER_SEC
44# define NSEC_PER_SEC 1000000000ULL
45#endif
46
47static inline unsigned long long rdclock(void)
48{
49 struct timespec ts;
50
51 clock_gettime(CLOCK_MONOTONIC, &ts);
52 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
53}
Thomas Gleixner6eda5832009-05-01 18:29:57 +020054
55/*
56 * Pick up some kernel type conventions:
57 */
58#define __user
59#define asmlinkage
60
Ingo Molnarf37a2912009-07-01 12:37:06 +020061#define __used __attribute__((__unused__))
62
Thomas Gleixner6eda5832009-05-01 18:29:57 +020063#define unlikely(x) __builtin_expect(!!(x), 0)
64#define min(x, y) ({ \
65 typeof(x) _min1 = (x); \
66 typeof(y) _min2 = (y); \
67 (void) (&_min1 == &_min2); \
68 _min1 < _min2 ? _min1 : _min2; })
69
70static inline int
Peter Zijlstra974802e2009-06-12 12:46:55 +020071sys_perf_counter_open(struct perf_counter_attr *attr,
Thomas Gleixner6eda5832009-05-01 18:29:57 +020072 pid_t pid, int cpu, int group_fd,
73 unsigned long flags)
74{
Peter Zijlstra974802e2009-06-12 12:46:55 +020075 attr->size = sizeof(*attr);
76 return syscall(__NR_perf_counter_open, attr, pid, cpu,
Thomas Gleixner6eda5832009-05-01 18:29:57 +020077 group_fd, flags);
78}
79
Ingo Molnar85a9f922009-05-25 09:59:50 +020080#define MAX_COUNTERS 256
81#define MAX_NR_CPUS 256
Thomas Gleixner6eda5832009-05-01 18:29:57 +020082
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020083struct ip_callchain {
84 u64 nr;
85 u64 ips[0];
Peter Zijlstraf5970552009-06-18 23:22:55 +020086};
87
Thomas Gleixner6eda5832009-05-01 18:29:57 +020088#endif