
As discussed in [1], introduce BPF instructions with load-acquire and store-release semantics under -mcpu=v4. Define 2 new flags: BPF_LOAD_ACQ 0x100 BPF_STORE_REL 0x110 A "load-acquire" is a BPF_STX | BPF_ATOMIC instruction with the 'imm' field set to BPF_LOAD_ACQ (0x100). Similarly, a "store-release" is a BPF_STX | BPF_ATOMIC instruction with the 'imm' field set to BPF_STORE_REL (0x110). Unlike existing atomic read-modify-write operations that only support BPF_W (32-bit) and BPF_DW (64-bit) size modifiers, load-acquires and store-releases also support BPF_B (8-bit) and BPF_H (16-bit). An 8- or 16-bit load-acquire zero-extends the value before writing it to a 32-bit register, just like ARM64 instruction LDAPRH and friends. As an example (assuming little-endian): long foo(long *ptr) { return __atomic_load_n(ptr, __ATOMIC_ACQUIRE); } foo() can be compiled to: db 10 00 00 00 01 00 00 r0 = load_acquire((u64 *)(r1 + 0x0)) 95 00 00 00 00 00 00 00 exit opcode (0xdb): BPF_ATOMIC | BPF_DW | BPF_STX imm (0x00000100): BPF_LOAD_ACQ Similarly: void bar(short *ptr, short val) { __atomic_store_n(ptr, val, __ATOMIC_RELEASE); } bar() can be compiled to: cb 21 00 00 10 01 00 00 store_release((u16 *)(r1 + 0x0), w2) 95 00 00 00 00 00 00 00 exit opcode (0xcb): BPF_ATOMIC | BPF_H | BPF_STX imm (0x00000110): BPF_STORE_REL Inline assembly is also supported. Add a pre-defined macro, __BPF_FEATURE_LOAD_ACQ_STORE_REL, to let developers detect this new feature. It can also be disabled using a new llc option, -disable-load-acq-store-rel. Using __ATOMIC_RELAXED for __atomic_store{,_n}() will generate a "plain" store (BPF_MEM | BPF_STX) instruction: void foo(short *ptr, short val) { __atomic_store_n(ptr, val, __ATOMIC_RELAXED); } 6b 21 00 00 00 00 00 00 *(u16 *)(r1 + 0x0) = w2 95 00 00 00 00 00 00 00 exit Similarly, using __ATOMIC_RELAXED for __atomic_load{,_n}() will generate a zero-extending, "plain" load (BPF_MEM | BPF_LDX) instruction: int foo(char *ptr) { return __atomic_load_n(ptr, __ATOMIC_RELAXED); } 71 11 00 00 00 00 00 00 w1 = *(u8 *)(r1 + 0x0) bc 10 08 00 00 00 00 00 w0 = (s8)w1 95 00 00 00 00 00 00 00 exit Currently __ATOMIC_CONSUME is an alias for __ATOMIC_ACQUIRE. Using __ATOMIC_SEQ_CST ("sequentially consistent") is not supported yet and will cause an error: $ clang --target=bpf -mcpu=v4 -c bar.c > /dev/null bar.c:1:5: error: sequentially consistent (seq_cst) atomic load/store is not supported 1 | int foo(int *ptr) { return __atomic_load_n(ptr, __ATOMIC_SEQ_CST); } | ^ ... Finally, rename those isST*() and isLD*() helper functions in BPFMISimplifyPatchable.cpp based on what the instructions actually do, rather than their instruction class. [1] https://lore.kernel.org/all/20240729183246.4110549-1-yepeilin@google.com/
117 lines
2.3 KiB
C
117 lines
2.3 KiB
C
// RUN: %clang -E -target bpfel -mcpu=v1 -x c -o - %s | FileCheck -check-prefix=CHECK -check-prefix=CPU_NO %s
|
|
// RUN: %clang -E -target bpfeb -mcpu=v1 -x c -o - %s | FileCheck -check-prefix=CHECK -check-prefix=CPU_NO %s
|
|
// RUN: %clang -E -target bpfel -mcpu=v1 -x c -o - %s | FileCheck -check-prefix=CHECK -check-prefix=CPU_V1 %s
|
|
// RUN: %clang -E -target bpfel -mcpu=v2 -x c -o - %s | FileCheck -check-prefix=CHECK -check-prefix=CPU_V2 %s
|
|
// RUN: %clang -E -target bpfel -mcpu=v3 -x c -o - %s | FileCheck -check-prefix=CHECK -check-prefix=CPU_V3 %s
|
|
// RUN: %clang -E -target bpfel -mcpu=v4 -x c -o - %s | FileCheck -check-prefix=CHECK -check-prefix=CPU_V4 %s
|
|
// RUN: %clang -E -target bpfel -mcpu=generic -x c -o - %s | FileCheck -check-prefix=CHECK -check-prefix=CPU_GENERIC %s
|
|
// RUN: %clang -E -target bpfel -mcpu=probe -x c -o - %s | FileCheck -check-prefix=CHECK -check-prefix=CPU_PROBE %s
|
|
|
|
#ifdef __bpf__
|
|
int b;
|
|
#endif
|
|
#ifdef __BPF__
|
|
int c;
|
|
#endif
|
|
#ifdef bpf
|
|
int d;
|
|
#endif
|
|
#ifdef __BPF_CPU_VERSION__
|
|
int e;
|
|
#endif
|
|
#if __BPF_CPU_VERSION__ == 0
|
|
int f;
|
|
#endif
|
|
#if __BPF_CPU_VERSION__ == 1
|
|
int g;
|
|
#endif
|
|
#if __BPF_CPU_VERSION__ == 2
|
|
int h;
|
|
#endif
|
|
#if __BPF_CPU_VERSION__ == 3
|
|
int i;
|
|
#endif
|
|
#if __BPF_CPU_VERSION__ == 4
|
|
int j;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_JMP_EXT
|
|
int k;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_JMP32
|
|
int l;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_ALU32
|
|
int m;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_LDSX
|
|
int n;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_MOVSX
|
|
int o;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_BSWAP
|
|
int p;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_SDIV_SMOD
|
|
int q;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_GOTOL
|
|
int r;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_ST
|
|
int s;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_ADDR_SPACE_CAST
|
|
int t;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_MAY_GOTO
|
|
int u;
|
|
#endif
|
|
#ifdef __BPF_FEATURE_LOAD_ACQ_STORE_REL
|
|
int v;
|
|
#endif
|
|
|
|
// CHECK: int b;
|
|
// CHECK: int c;
|
|
// CHECK-NOT: int d;
|
|
// CHECK: int e;
|
|
|
|
// CPU_NO: int g;
|
|
|
|
// CPU_V1: int g;
|
|
|
|
// CPU_V2: int h;
|
|
// CPU_V2: int k;
|
|
|
|
// CPU_V3: int i;
|
|
// CPU_V3: int k;
|
|
// CPU_V3: int l;
|
|
// CPU_V3: int m;
|
|
|
|
// CPU_V4: int j;
|
|
// CPU_V4: int k;
|
|
// CPU_V4: int l;
|
|
// CPU_V4: int m;
|
|
// CPU_V4: int n;
|
|
// CPU_V4: int o;
|
|
// CPU_V4: int p;
|
|
// CPU_V4: int q;
|
|
// CPU_V4: int r;
|
|
// CPU_V4: int s;
|
|
|
|
// CPU_V1: int t;
|
|
// CPU_V2: int t;
|
|
// CPU_V3: int t;
|
|
// CPU_V4: int t;
|
|
|
|
// CPU_V1: int u;
|
|
// CPU_V2: int u;
|
|
// CPU_V3: int u;
|
|
// CPU_V4: int u;
|
|
|
|
// CPU_V4: int v;
|
|
|
|
// CPU_GENERIC: int g;
|
|
|
|
// CPU_PROBE: int f;
|