1 #ifndef PERF_TEST_LLVM_H
2 #define PERF_TEST_LLVM_H
4 #include <stddef.h> /* for size_t */
5 #include <stdbool.h> /* for bool */
7 extern const char test_llvm__bpf_base_prog
[];
8 extern const char test_llvm__bpf_test_kbuild_prog
[];
9 extern const char test_llvm__bpf_test_prologue_prog
[];
10 extern const char test_llvm__bpf_test_relocation
[];
12 enum test_llvm__testcase
{
15 LLVM_TESTCASE_BPF_PROLOGUE
,
16 LLVM_TESTCASE_BPF_RELOCATION
,
20 int test_llvm__fetch_bpf_obj(void **p_obj_buf
, size_t *p_obj_buf_sz
,
21 enum test_llvm__testcase index
, bool force
,
22 bool *should_load_fail
);