]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/perf/util/util.h
perf callchain: Move callchain specific routines from util.[ch]
[karo-tx-linux.git] / tools / perf / util / util.h
1 #ifndef GIT_COMPAT_UTIL_H
2 #define GIT_COMPAT_UTIL_H
3
4 #define _ALL_SOURCE 1
5 #define _BSD_SOURCE 1
6 /* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */
7 #define _DEFAULT_SOURCE 1
8 #define HAS_BOOL
9
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <sys/stat.h>
13 #include <sys/statfs.h>
14 #include <fcntl.h>
15 #include <stdbool.h>
16 #include <stddef.h>
17 #include <stdlib.h>
18 #include <stdarg.h>
19 #include <string.h>
20 #include <sys/param.h>
21 #include <sys/types.h>
22 #include <assert.h>
23 #include <sys/wait.h>
24 #include <poll.h>
25 #include <sys/socket.h>
26 #include <sys/ioctl.h>
27 #include <linux/types.h>
28
29 extern char buildid_dir[];
30
31 #ifdef __GNUC__
32 #define NORETURN __attribute__((__noreturn__))
33 #else
34 #define NORETURN
35 #ifndef __attribute__
36 #define __attribute__(x)
37 #endif
38 #endif
39
40 #define PERF_GTK_DSO  "libperf-gtk.so"
41
42 /* General helper functions */
43 void usage(const char *err) NORETURN;
44 void die(const char *err, ...) NORETURN __attribute__((format (printf, 1, 2)));
45 int error(const char *err, ...) __attribute__((format (printf, 1, 2)));
46 void warning(const char *err, ...) __attribute__((format (printf, 1, 2)));
47
48 void set_warning_routine(void (*routine)(const char *err, va_list params));
49
50 int prefixcmp(const char *str, const char *prefix);
51 void set_buildid_dir(const char *dir);
52
53 static inline void *zalloc(size_t size)
54 {
55         return calloc(1, size);
56 }
57
58 #define zfree(ptr) ({ free(*ptr); *ptr = NULL; })
59
60 struct dirent;
61 struct strlist;
62
63 int mkdir_p(char *path, mode_t mode);
64 int rm_rf(const char *path);
65 struct strlist *lsdir(const char *name, bool (*filter)(const char *, struct dirent *));
66 bool lsdir_no_dot_filter(const char *name, struct dirent *d);
67 int copyfile(const char *from, const char *to);
68 int copyfile_mode(const char *from, const char *to, mode_t mode);
69 int copyfile_offset(int fromfd, loff_t from_ofs, int tofd, loff_t to_ofs, u64 size);
70
71 ssize_t readn(int fd, void *buf, size_t n);
72 ssize_t writen(int fd, void *buf, size_t n);
73
74 struct perf_event_attr;
75
76 void event_attr_init(struct perf_event_attr *attr);
77
78 size_t hex_width(u64 v);
79 int hex2u64(const char *ptr, u64 *val);
80
81 extern unsigned int page_size;
82 extern int cacheline_size;
83 extern int sysctl_perf_event_max_stack;
84 extern int sysctl_perf_event_max_contexts_per_stack;
85
86 struct parse_tag {
87         char tag;
88         int mult;
89 };
90
91 unsigned long parse_tag_value(const char *str, struct parse_tag *tags);
92
93 int perf_event_paranoid(void);
94
95 void mem_bswap_64(void *src, int byte_size);
96 void mem_bswap_32(void *src, int byte_size);
97
98 bool find_process(const char *name);
99
100 int fetch_kernel_version(unsigned int *puint,
101                          char *str, size_t str_sz);
102 #define KVER_VERSION(x)         (((x) >> 16) & 0xff)
103 #define KVER_PATCHLEVEL(x)      (((x) >> 8) & 0xff)
104 #define KVER_SUBLEVEL(x)        ((x) & 0xff)
105 #define KVER_FMT        "%d.%d.%d"
106 #define KVER_PARAM(x)   KVER_VERSION(x), KVER_PATCHLEVEL(x), KVER_SUBLEVEL(x)
107
108 const char *perf_tip(const char *dirpath);
109
110 #ifndef HAVE_SCHED_GETCPU_SUPPORT
111 int sched_getcpu(void);
112 #endif
113
114 #endif /* GIT_COMPAT_UTIL_H */