xref: /linux/tools/testing/selftests/bpf/progs/verifier_gotol.c (revision 6ccf119a4cc886678099a3526f37db98b67024d7)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/bpf.h>
4 #include <bpf/bpf_helpers.h>
5 #include "bpf_misc.h"
6 
7 #if (defined(__TARGET_ARCH_arm64) || defined(__TARGET_ARCH_x86) || \
8 	(defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64) || \
9 	defined(__TARGET_ARCH_arm) || defined(__TARGET_ARCH_s390) || \
10 	defined(__TARGET_ARCH_loongarch)) && \
11 	__clang_major__ >= 18
12 
13 SEC("socket")
14 __description("gotol, small_imm")
15 __success __success_unpriv __retval(1)
16 __naked void gotol_small_imm(void)
17 {
18 	asm volatile ("					\
19 	call %[bpf_ktime_get_ns];			\
20 	if r0 == 0 goto l0_%=;				\
21 	gotol l1_%=;					\
22 l2_%=:							\
23 	gotol l3_%=;					\
24 l1_%=:							\
25 	r0 = 1;						\
26 	gotol l2_%=;					\
27 l0_%=:							\
28 	r0 = 2;						\
29 l3_%=:							\
30 	exit;						\
31 "	:
32 	: __imm(bpf_ktime_get_ns)
33 	: __clobber_all);
34 }
35 
36 #else
37 
38 SEC("socket")
39 __description("cpuv4 is not supported by compiler or jit, use a dummy test")
40 __success
41 int dummy_test(void)
42 {
43 	return 0;
44 }
45 
46 #endif
47 
48 char _license[] SEC("license") = "GPL";
49