]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/perf/util/c++/clang-c.h
Merge tag 'perf-core-for-mingo-4.12-20170503' of git://git.kernel.org/pub/scm/linux...
[karo-tx-linux.git] / tools / perf / util / c++ / clang-c.h
1 #ifndef PERF_UTIL_CLANG_C_H
2 #define PERF_UTIL_CLANG_C_H
3
4 #include <stddef.h>     /* for size_t */
5 #include <util-cxx.h>   /* for __maybe_unused */
6
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10
11 #ifdef HAVE_LIBCLANGLLVM_SUPPORT
12 extern void perf_clang__init(void);
13 extern void perf_clang__cleanup(void);
14
15 extern int test__clang_to_IR(void);
16 extern int test__clang_to_obj(void);
17
18 extern int perf_clang__compile_bpf(const char *filename,
19                                    void **p_obj_buf,
20                                    size_t *p_obj_buf_sz);
21 #else
22
23 #include <errno.h>
24
25 static inline void perf_clang__init(void) { }
26 static inline void perf_clang__cleanup(void) { }
27
28 static inline int test__clang_to_IR(void) { return -1; }
29 static inline int test__clang_to_obj(void) { return -1;}
30
31 static inline int
32 perf_clang__compile_bpf(const char *filename __maybe_unused,
33                         void **p_obj_buf __maybe_unused,
34                         size_t *p_obj_buf_sz __maybe_unused)
35 {
36         return -ENOTSUP;
37 }
38
39 #endif
40
41 #ifdef __cplusplus
42 }
43 #endif
44 #endif