llvm.c 3.7 KB
Newer Older
1 2 3 4
#include <stdio.h>
#include <bpf/libbpf.h>
#include <util/llvm-utils.h>
#include <util/cache.h>
5
#include "llvm.h"
6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include "tests.h"
#include "debug.h"

static int perf_config_cb(const char *var, const char *val,
			  void *arg __maybe_unused)
{
	return perf_default_config(var, val, arg);
}

#ifdef HAVE_LIBBPF_SUPPORT
static int test__bpf_parsing(void *obj_buf, size_t obj_buf_sz)
{
	struct bpf_object *obj;

20
	obj = bpf_object__open_buffer(obj_buf, obj_buf_sz, NULL);
21
	if (IS_ERR(obj))
22
		return TEST_FAIL;
23
	bpf_object__close(obj);
24
	return TEST_OK;
25 26 27 28 29
}
#else
static int test__bpf_parsing(void *obj_buf __maybe_unused,
			     size_t obj_buf_sz __maybe_unused)
{
30
	pr_debug("Skip bpf parsing\n");
31
	return TEST_OK;
32 33 34
}
#endif

35 36 37 38 39 40 41 42
static struct {
	const char *source;
	const char *desc;
} bpf_source_table[__LLVM_TESTCASE_MAX] = {
	[LLVM_TESTCASE_BASE] = {
		.source = test_llvm__bpf_base_prog,
		.desc = "Basic BPF llvm compiling test",
	},
43 44 45 46
	[LLVM_TESTCASE_KBUILD] = {
		.source = test_llvm__bpf_test_kbuild_prog,
		.desc = "Test kbuild searching",
	},
47 48
	[LLVM_TESTCASE_BPF_PROLOGUE] = {
		.source = test_llvm__bpf_test_prologue_prog,
49
		.desc = "Compile source for BPF prologue generation test",
50
	},
51 52 53 54 55 56
};


int
test_llvm__fetch_bpf_obj(void **p_obj_buf,
			 size_t *p_obj_buf_sz,
57
			 enum test_llvm__testcase idx,
58
			 bool force)
59
{
60 61 62 63 64 65
	const char *source;
	const char *desc;
	const char *tmpl_old, *clang_opt_old;
	char *tmpl_new = NULL, *clang_opt_new = NULL;
	int err, old_verbose, ret = TEST_FAIL;

66
	if (idx >= __LLVM_TESTCASE_MAX)
67 68
		return TEST_FAIL;

69 70
	source = bpf_source_table[idx].source;
	desc = bpf_source_table[idx].desc;
71 72 73 74 75 76 77

	perf_config(perf_config_cb, NULL);

	/*
	 * Skip this test if user's .perfconfig doesn't set [llvm] section
	 * and clang is not found in $PATH, and this is not perf test -v
	 */
78 79 80
	if (!force && (verbose == 0 &&
		       !llvm_param.user_set_param &&
		       llvm__search_clang())) {
81
		pr_debug("No clang and no verbosive, skip this test\n");
82 83 84 85 86 87 88
		return TEST_SKIP;
	}

	/*
	 * llvm is verbosity when error. Suppress all error output if
	 * not 'perf test -v'.
	 */
89
	old_verbose = verbose;
90 91 92
	if (verbose == 0)
		verbose = -1;

93 94 95
	*p_obj_buf = NULL;
	*p_obj_buf_sz = 0;

96
	if (!llvm_param.clang_bpf_cmd_template)
97
		goto out;
98 99 100 101

	if (!llvm_param.clang_opt)
		llvm_param.clang_opt = strdup("");

102 103 104
	err = asprintf(&tmpl_new, "echo '%s' | %s%s", source,
		       llvm_param.clang_bpf_cmd_template,
		       old_verbose ? "" : " 2>/dev/null");
105
	if (err < 0)
106
		goto out;
107 108
	err = asprintf(&clang_opt_new, "-xc %s", llvm_param.clang_opt);
	if (err < 0)
109
		goto out;
110

111
	tmpl_old = llvm_param.clang_bpf_cmd_template;
112
	llvm_param.clang_bpf_cmd_template = tmpl_new;
113
	clang_opt_old = llvm_param.clang_opt;
114
	llvm_param.clang_opt = clang_opt_new;
115 116 117 118 119

	err = llvm__compile_bpf("-", p_obj_buf, p_obj_buf_sz);

	llvm_param.clang_bpf_cmd_template = tmpl_old;
	llvm_param.clang_opt = clang_opt_old;
120 121

	verbose = old_verbose;
122
	if (err)
123 124 125 126 127 128 129 130 131 132
		goto out;

	ret = TEST_OK;
out:
	free(tmpl_new);
	free(clang_opt_new);
	if (ret != TEST_OK)
		pr_debug("Failed to compile test case: '%s'\n", desc);
	return ret;
}
133

134
int test__llvm(int subtest)
135
{
136 137 138
	int ret;
	void *obj_buf = NULL;
	size_t obj_buf_sz = 0;
139

140 141
	if ((subtest < 0) || (subtest >= __LLVM_TESTCASE_MAX))
		return TEST_FAIL;
142

143 144
	ret = test_llvm__fetch_bpf_obj(&obj_buf, &obj_buf_sz,
				       subtest, false);
145

146 147 148 149 150
	if (ret == TEST_OK) {
		ret = test__bpf_parsing(obj_buf, obj_buf_sz);
		if (ret != TEST_OK) {
			pr_debug("Failed to parse test case '%s'\n",
				 bpf_source_table[subtest].desc);
151 152
		}
	}
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
	free(obj_buf);

	return ret;
}

int test__llvm_subtest_get_nr(void)
{
	return __LLVM_TESTCASE_MAX;
}

const char *test__llvm_subtest_get_desc(int subtest)
{
	if ((subtest < 0) || (subtest >= __LLVM_TESTCASE_MAX))
		return NULL;

	return bpf_source_table[subtest].desc;
169
}