mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-12 11:06:17 +00:00

0044-soname.diff,23-strlcpy_strlcat_warning_removed.diff, 26-set-correct-float-abi.diff,atomic_library_[12].diff, fix-clang-path-and-build.diff,fix-lldb-server-build,lldb-libname.diff, lldb-soname.diff,mips-fpxx-enable.diff,removeduplicatedeclaration.diff}: Refreshed. * debian/patches/{silent-gold-utils,kfreebsd-support}.diff: Updated.
47 lines
2.0 KiB
Diff
47 lines
2.0 KiB
Diff
---
|
|
clang/lib/Basic/Targets.cpp | 14 ++++++++++++++
|
|
clang/test/CodeGen/linux-arm-atomic.c | 10 ++++++++++
|
|
2 files changed, 24 insertions(+)
|
|
|
|
--- a/clang/lib/Basic/Targets.cpp
|
|
+++ b/clang/lib/Basic/Targets.cpp
|
|
@@ -4414,6 +4414,20 @@ protected:
|
|
Builder.defineMacro("__ELF__");
|
|
}
|
|
|
|
+ static bool shouldUseInlineAtomic(const llvm::Triple &T) {
|
|
+ // On linux, binaries targeting old cpus call functions in libgcc to
|
|
+ // perform atomic operations. The implementation in libgcc then calls into
|
|
+ // the kernel which on armv6 and newer uses ldrex and strex. The net result
|
|
+ // is that if we assume the kernel is at least as recent as the hardware,
|
|
+ // it is safe to use atomic instructions on armv6 and newer.
|
|
+ if (T.getOS() != llvm::Triple::Linux)
|
|
+ return false;
|
|
+ StringRef ArchName = T.getArchName();
|
|
+ if (ArchName.startswith("armv6") || ArchName.startswith("armv7"))
|
|
+ return true;
|
|
+ return false;
|
|
+ }
|
|
+
|
|
public:
|
|
RTEMSTargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
|
|
: OSTargetInfo<Target>(Triple, Opts) {
|
|
--- a/clang/test/CodeGen/linux-arm-atomic.c
|
|
+++ b/clang/test/CodeGen/linux-arm-atomic.c
|
|
@@ -1,5 +1,15 @@
|
|
// RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv7-unknown-linux | FileCheck %s
|
|
// RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv6-unknown-linux | FileCheck %s
|
|
+
|
|
+typedef int _Atomic_word;
|
|
+_Atomic_word exchange_and_add(volatile _Atomic_word *__mem, int __val) {
|
|
+ return __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL);
|
|
+}
|
|
+
|
|
+// CHECK: define {{.*}} @exchange_and_add
|
|
+// CHECK: atomicrmw {{.*}} add
|
|
+// RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv7-unknown-linux | FileCheck %s
|
|
+// RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv6-unknown-linux | FileCheck %s
|
|
// RUN: %clang_cc1 %s -emit-llvm -o - -triple=thumbv7-unknown-linux | FileCheck %s
|
|
// RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv6-unknown-freebsd | FileCheck %s
|
|
// RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv6-unknown-bitrig | FileCheck %s
|