blob: bccb529dac086ee160072cc6904f509f308de7d2 [file] [log] [blame]
Thomas Gleixner6eda5832009-05-01 18:29:57 +02001#ifndef _PERF_PERF_H
2#define _PERF_PERF_H
3
Peter Zijlstra1a482f32009-05-23 18:28:58 +02004#if defined(__x86_64__) || defined(__i386__)
5#include "../../arch/x86/include/asm/unistd.h"
6#define rmb() asm volatile("lfence" ::: "memory")
7#define cpu_relax() asm volatile("rep; nop" ::: "memory");
8#endif
9
10#ifdef __powerpc__
11#include "../../arch/powerpc/include/asm/unistd.h"
12#define rmb() asm volatile ("sync" ::: "memory")
13#define cpu_relax() asm volatile ("" ::: "memory");
14#endif
15
16#include <time.h>
17#include <unistd.h>
18#include <sys/types.h>
19#include <sys/syscall.h>
20
21#include "../../include/linux/perf_counter.h"
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100022#include "types.h"
Peter Zijlstra1a482f32009-05-23 18:28:58 +020023
Thomas Gleixner6eda5832009-05-01 18:29:57 +020024/*
25 * prctl(PR_TASK_PERF_COUNTERS_DISABLE) will (cheaply) disable all
26 * counters in the current task.
27 */
28#define PR_TASK_PERF_COUNTERS_DISABLE 31
29#define PR_TASK_PERF_COUNTERS_ENABLE 32
30
Thomas Gleixnera92e702372009-05-01 18:39:47 +020031#ifndef NSEC_PER_SEC
32# define NSEC_PER_SEC 1000000000ULL
33#endif
34
35static inline unsigned long long rdclock(void)
36{
37 struct timespec ts;
38
39 clock_gettime(CLOCK_MONOTONIC, &ts);
40 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
41}
Thomas Gleixner6eda5832009-05-01 18:29:57 +020042
43/*
44 * Pick up some kernel type conventions:
45 */
46#define __user
47#define asmlinkage
48
Thomas Gleixner6eda5832009-05-01 18:29:57 +020049#define unlikely(x) __builtin_expect(!!(x), 0)
50#define min(x, y) ({ \
51 typeof(x) _min1 = (x); \
52 typeof(y) _min2 = (y); \
53 (void) (&_min1 == &_min2); \
54 _min1 < _min2 ? _min1 : _min2; })
55
56static inline int
Peter Zijlstra974802e2009-06-12 12:46:55 +020057sys_perf_counter_open(struct perf_counter_attr *attr,
Thomas Gleixner6eda5832009-05-01 18:29:57 +020058 pid_t pid, int cpu, int group_fd,
59 unsigned long flags)
60{
Peter Zijlstra974802e2009-06-12 12:46:55 +020061 attr->size = sizeof(*attr);
62 return syscall(__NR_perf_counter_open, attr, pid, cpu,
Thomas Gleixner6eda5832009-05-01 18:29:57 +020063 group_fd, flags);
64}
65
Ingo Molnar85a9f922009-05-25 09:59:50 +020066#define MAX_COUNTERS 256
67#define MAX_NR_CPUS 256
Thomas Gleixner6eda5832009-05-01 18:29:57 +020068
Peter Zijlstraf5970552009-06-18 23:22:55 +020069struct perf_file_header {
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100070 u64 version;
71 u64 sample_type;
72 u64 data_size;
Peter Zijlstraf5970552009-06-18 23:22:55 +020073};
74
Thomas Gleixner6eda5832009-05-01 18:29:57 +020075#endif