aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/llvm-utils.h
diff options
context:
space:
mode:
authorWang Nan <wangnan0@huawei.com>2015-07-08 06:04:02 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-08-07 09:57:24 -0400
commit9bc898c7019383b6aa2ae6cb2928c4ca926449f0 (patch)
tree0ba71f573541cf42609230d8d96bc5e4c295536c /tools/perf/util/llvm-utils.h
parent0c6d18bfd551622b438e216e4863155f47907b0d (diff)
perf tests: Add LLVM test for eBPF on-the-fly compiling
Previous patches introduce llvm__compile_bpf() to compile source file to eBPF object. This patch adds testcase to test it. It also tests libbpf by opening generated object after applying next patch which introduces HAVE_LIBBPF_SUPPORT option. Since llvm__compile_bpf() prints long messages which users who don't explicitly test llvm doesn't care, this patch set verbose to -1 to suppress all debug, warning and error message, and hint user use 'perf test -v' to see the full output. For the same reason, if clang is not found in PATH and there's no [llvm] section in .perfconfig, skip this test. Signed-off-by: Wang Nan <wangnan0@huawei.com> Acked-by: Alexei Starovoitov <ast@plumgrid.com> Cc: Brendan Gregg <brendan.d.gregg@gmail.com> Cc: Daniel Borkmann <daniel@iogearbox.net> Cc: David Ahern <dsahern@gmail.com> Cc: He Kuang <hekuang@huawei.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Kaixu Xia <xiakaixu@huawei.com> Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Zefan Li <lizefan@huawei.com> Cc: pi3orama@163.com Link: http://lkml.kernel.org/n/1436445342-1402-17-git-send-email-wangnan0@huawei.com [ Add tools/lib/bpf/ to tools/perf/MANIFEST, so that the tarball targets build ] Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/llvm-utils.h')
-rw-r--r--tools/perf/util/llvm-utils.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/perf/util/llvm-utils.h b/tools/perf/util/llvm-utils.h
index d23adbca120b..5b3cf1c229e2 100644
--- a/tools/perf/util/llvm-utils.h
+++ b/tools/perf/util/llvm-utils.h
@@ -29,6 +29,13 @@ struct llvm_param {
29 * compiling. Should not be used for dynamic compiling. 29 * compiling. Should not be used for dynamic compiling.
30 */ 30 */
31 const char *kbuild_opts; 31 const char *kbuild_opts;
32 /*
33 * Default is false. If one of the above fields is set by user
34 * explicitly then user_set_llvm is set to true. This is used
35 * for perf test. If user doesn't set anything in .perfconfig
36 * and clang is not found, don't trigger llvm test.
37 */
38 bool user_set_param;
32}; 39};
33 40
34extern struct llvm_param llvm_param; 41extern struct llvm_param llvm_param;
@@ -36,4 +43,7 @@ extern int perf_llvm_config(const char *var, const char *value);
36 43
37extern int llvm__compile_bpf(const char *path, void **p_obj_buf, 44extern int llvm__compile_bpf(const char *path, void **p_obj_buf,
38 size_t *p_obj_buf_sz); 45 size_t *p_obj_buf_sz);
46
47/* This function is for test__llvm() use only */
48extern int llvm__search_clang(void);
39#endif 49#endif