llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-backend-x86 Author: Simon Tatham (statham-arm) <details> <summary>Changes</summary> In commit d5985905ae8e5b2 I introduced a Sema check that prohibits `__builtin_arm_ldrex` and `__builtin_arm_strex` for data sizes not supported by the target architecture version. However, `arm_acle.h` unconditionally uses those builtins with a 32-bit data size. So now including that header will cause a build failure on Armv6-M, or historic architectures like Armv5. To fix it, `arm_acle.h` now queries the compiler-defined `__ARM_FEATURE_LDREX` macro (also fixed recently in commit 34f59d79209268e so that it matches the target architecture). If 32-bit LDREX isn't available it will fall back to the older SWP instruction, or failing that (on Armv6-M), a libcall. While I was modifying the header anyway, I also renamed the local variable `v` inside `__swp` so that it starts with `__`, avoiding any risk of user code having #defined `v`. --- Full diff: https://github.com/llvm/llvm-project/pull/151354.diff 2 Files Affected: - (modified) clang/lib/Headers/arm_acle.h (+19-3) - (added) clang/test/CodeGen/arm_acle_swp.c (+19) ``````````diff diff --git a/clang/lib/Headers/arm_acle.h b/clang/lib/Headers/arm_acle.h index 5cfa3d023a7d5..a74144baadaba 100644 --- a/clang/lib/Headers/arm_acle.h +++ b/clang/lib/Headers/arm_acle.h @@ -55,11 +55,27 @@ __chkfeat(uint64_t __features) { /* 7.5 Swap */ static __inline__ uint32_t __attribute__((__always_inline__, __nodebug__)) __swp(uint32_t __x, volatile uint32_t *__p) { - uint32_t v; + uint32_t __v; +#if __ARM_FEATURE_LDREX & 4 do - v = __builtin_arm_ldrex(__p); + __v = __builtin_arm_ldrex(__p); while (__builtin_arm_strex(__x, __p)); - return v; +#elif !__ARM_ARCH_6M__ + /* Fall back to the deprecated SWP instruction, on historic architecture + * versions without load/store exclusive instructions on 32-bit data. ACLE is + * clear that we mustn't use SWP in any _other_ situation, but permits us to + * use it if there's no other option. */ + __asm__("swp %0, %1, [%2]" : "=r"(__v) : "r"(__x), "r"(__p) : "memory"); +#else + /* Armv6-M doesn't have either of LDREX or SWP. ACLE suggests this + * implementation, which Clang lowers to the 'cmpxchg' operation in LLVM IR. + * On Armv6-M, LLVM turns that into a libcall to __atomic_compare_exchange_4, + * so the runtime will need to implement that. */ + do + __v = *__p; + while (__sync_bool_compare_and_swap(__p, __v, __x)); +#endif + return __v; } /* 7.6 Memory prefetch intrinsics */ diff --git a/clang/test/CodeGen/arm_acle_swp.c b/clang/test/CodeGen/arm_acle_swp.c new file mode 100644 index 0000000000000..3a99737163afe --- /dev/null +++ b/clang/test/CodeGen/arm_acle_swp.c @@ -0,0 +1,19 @@ +// RUN: %clang_cc1 -ffreestanding -triple thumbv7m-none-eabi -O0 -disable-O0-optnone -emit-llvm -o - %s | opt -S -passes=mem2reg | FileCheck %s -check-prefix=LDREX +// RUN: %clang_cc1 -ffreestanding -triple armv7a-none-eabi -O0 -disable-O0-optnone -emit-llvm -o - %s | opt -S -passes=mem2reg | FileCheck %s -check-prefix=LDREX +// RUN: %clang_cc1 -ffreestanding -triple armv6-none-eabi -O0 -disable-O0-optnone -emit-llvm -o - %s | opt -S -passes=mem2reg | FileCheck %s -check-prefix=LDREX +// RUN: %clang_cc1 -ffreestanding -triple thumbv6m-none-eabi -O0 -disable-O0-optnone -emit-llvm -o - %s | opt -S -passes=mem2reg | FileCheck %s -check-prefix=SYNC +// RUN: %clang_cc1 -ffreestanding -triple armv5-none-eabi -O0 -disable-O0-optnone -emit-llvm -o - %s | opt -S -passes=mem2reg | FileCheck %s -check-prefix=SWP + +// REQUIRES: arm-registered-target + +#include <arm_acle.h> + +// LDREX: call i32 @llvm.arm.ldrex.p0(ptr elementtype(i32) {{.*}}) +// LDREX: call i32 @llvm.arm.strex.p0(i32 {{.*}}, ptr elementtype(i32) {{.*}}) + +// SWP: call i32 asm "swp $0, $1, [$2]", "=r,r,r,~{memory}"(i32 {{.*}}, ptr {{.*}}) + +// SYNC: cmpxchg ptr {{.*}}, i32 {{.*}}, i32 {{.*}} seq_cst seq_cst, align 4 +uint32_t test_swp(uint32_t x, volatile void *p) { + return __swp(x, p); +} `````````` </details> https://github.com/llvm/llvm-project/pull/151354 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits