Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 1 | #ifndef _PERF_SYS_H |
| 2 | #define _PERF_SYS_H |
| 3 | |
Jiri Olsa | 82baa0e | 2014-05-05 12:58:31 +0200 | [diff] [blame] | 4 | #include <unistd.h> |
| 5 | #include <sys/types.h> |
| 6 | #include <sys/syscall.h> |
| 7 | #include <linux/types.h> |
| 8 | #include <linux/perf_event.h> |
Arnaldo Carvalho de Melo | 361c564 | 2015-04-30 12:33:22 -0300 | [diff] [blame] | 9 | #include <asm/barrier.h> |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 10 | |
| 11 | #if defined(__i386__) |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 12 | #define cpu_relax() asm volatile("rep; nop" ::: "memory"); |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 13 | #define CPUINFO_PROC {"model name"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 14 | #ifndef __NR_perf_event_open |
| 15 | # define __NR_perf_event_open 336 |
| 16 | #endif |
| 17 | #ifndef __NR_futex |
| 18 | # define __NR_futex 240 |
| 19 | #endif |
| 20 | #ifndef __NR_gettid |
| 21 | # define __NR_gettid 224 |
| 22 | #endif |
| 23 | #endif |
| 24 | |
| 25 | #if defined(__x86_64__) |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 26 | #define cpu_relax() asm volatile("rep; nop" ::: "memory"); |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 27 | #define CPUINFO_PROC {"model name"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 28 | #ifndef __NR_perf_event_open |
| 29 | # define __NR_perf_event_open 298 |
| 30 | #endif |
| 31 | #ifndef __NR_futex |
| 32 | # define __NR_futex 202 |
| 33 | #endif |
| 34 | #ifndef __NR_gettid |
| 35 | # define __NR_gettid 186 |
| 36 | #endif |
| 37 | #endif |
| 38 | |
| 39 | #ifdef __powerpc__ |
| 40 | #include "../../arch/powerpc/include/uapi/asm/unistd.h" |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 41 | #define CPUINFO_PROC {"cpu"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 42 | #endif |
| 43 | |
| 44 | #ifdef __s390__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 45 | #define CPUINFO_PROC {"vendor_id"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 46 | #endif |
| 47 | |
| 48 | #ifdef __sh__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 49 | #define CPUINFO_PROC {"cpu type"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 50 | #endif |
| 51 | |
| 52 | #ifdef __hppa__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 53 | #define CPUINFO_PROC {"cpu"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 54 | #endif |
| 55 | |
| 56 | #ifdef __sparc__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 57 | #define CPUINFO_PROC {"cpu"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 58 | #endif |
| 59 | |
| 60 | #ifdef __alpha__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 61 | #define CPUINFO_PROC {"cpu model"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 62 | #endif |
| 63 | |
| 64 | #ifdef __ia64__ |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 65 | #define cpu_relax() asm volatile ("hint @pause" ::: "memory") |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 66 | #define CPUINFO_PROC {"model name"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 67 | #endif |
| 68 | |
| 69 | #ifdef __arm__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 70 | #define CPUINFO_PROC {"model name", "Processor"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 71 | #endif |
| 72 | |
| 73 | #ifdef __aarch64__ |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 74 | #define cpu_relax() asm volatile("yield" ::: "memory") |
| 75 | #endif |
| 76 | |
| 77 | #ifdef __mips__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 78 | #define CPUINFO_PROC {"cpu model"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 79 | #endif |
| 80 | |
| 81 | #ifdef __arc__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 82 | #define CPUINFO_PROC {"Processor"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 83 | #endif |
| 84 | |
| 85 | #ifdef __metag__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 86 | #define CPUINFO_PROC {"CPU"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 87 | #endif |
| 88 | |
| 89 | #ifdef __xtensa__ |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 90 | #define CPUINFO_PROC {"core ID"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 91 | #endif |
| 92 | |
| 93 | #ifdef __tile__ |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 94 | #define cpu_relax() asm volatile ("mfspr zero, PASS" ::: "memory") |
Wang Nan | 493c303 | 2014-10-24 09:45:26 +0800 | [diff] [blame] | 95 | #define CPUINFO_PROC {"model name"} |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 96 | #endif |
| 97 | |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 98 | #ifndef cpu_relax |
| 99 | #define cpu_relax() barrier() |
| 100 | #endif |
| 101 | |
Jiri Olsa | 82baa0e | 2014-05-05 12:58:31 +0200 | [diff] [blame] | 102 | static inline int |
| 103 | sys_perf_event_open(struct perf_event_attr *attr, |
| 104 | pid_t pid, int cpu, int group_fd, |
| 105 | unsigned long flags) |
| 106 | { |
| 107 | int fd; |
| 108 | |
| 109 | fd = syscall(__NR_perf_event_open, attr, pid, cpu, |
| 110 | group_fd, flags); |
| 111 | |
| 112 | #ifdef HAVE_ATTR_TEST |
| 113 | if (unlikely(test_attr__enabled)) |
| 114 | test_attr__open(attr, pid, cpu, fd, group_fd, flags); |
| 115 | #endif |
| 116 | return fd; |
| 117 | } |
| 118 | |
Jiri Olsa | 43599d1 | 2014-05-05 12:53:20 +0200 | [diff] [blame] | 119 | #endif /* _PERF_SYS_H */ |