summaryrefslogtreecommitdiffstats
path: root/tools/perf/tests/llvm.h
blob: bd63cee687b57fe8ea05b1c5f8f9e7deaec6e9e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef PERF_TEST_LLVM_H
#define PERF_TEST_LLVM_H

#include <stddef.h> /* for size_t */
#include <stdbool.h> /* for bool */

extern const char test_llvm__bpf_base_prog[];

enum test_llvm__testcase {
	LLVM_TESTCASE_BASE,
	__LLVM_TESTCASE_MAX,
};

int test_llvm__fetch_bpf_obj(void **p_obj_buf, size_t *p_obj_buf_sz,
			     enum test_llvm__testcase index, bool force);
#endif