llvm.h 718 B

123456789101112131415161718192021222324252627282930
  1. #ifndef PERF_TEST_LLVM_H
  2. #define PERF_TEST_LLVM_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <stddef.h> /* for size_t */
  7. #include <stdbool.h> /* for bool */
  8. extern const char test_llvm__bpf_base_prog[];
  9. extern const char test_llvm__bpf_test_kbuild_prog[];
  10. extern const char test_llvm__bpf_test_prologue_prog[];
  11. extern const char test_llvm__bpf_test_relocation[];
  12. enum test_llvm__testcase {
  13. LLVM_TESTCASE_BASE,
  14. LLVM_TESTCASE_KBUILD,
  15. LLVM_TESTCASE_BPF_PROLOGUE,
  16. LLVM_TESTCASE_BPF_RELOCATION,
  17. __LLVM_TESTCASE_MAX,
  18. };
  19. int test_llvm__fetch_bpf_obj(void **p_obj_buf, size_t *p_obj_buf_sz,
  20. enum test_llvm__testcase index, bool force,
  21. bool *should_load_fail);
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif