[libcxx-commits] [PATCH] D110088: [libcxxabi] Make InitByteGlobalMutex check GetThreadID instead of PlatformThreadID
Daniel McIntosh via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jan 12 14:30:17 PST 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3601ee6cfd7f: [libcxxabi] Make InitByteGlobalMutex check GetThreadID instead of… (authored by DanielMcIntosh-IBM).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110088/new/
https://reviews.llvm.org/D110088
Files:
libcxxabi/src/cxa_guard_impl.h
libcxxabi/test/guard_test_basic.pass.cpp
Index: libcxxabi/test/guard_test_basic.pass.cpp
===================================================================
--- libcxxabi/test/guard_test_basic.pass.cpp
+++ libcxxabi/test/guard_test_basic.pass.cpp
@@ -12,9 +12,10 @@
#include "../src/cxa_guard_impl.h"
#include <cassert>
-// Disable GCC warning about tautological comparison of a function's address
-#if defined(__GNUC__) && !defined(__clang__)
-# pragma GCC diagnostic ignored "-Waddress"
+#if defined(__clang__)
+# pragma clang diagnostic ignored "-Wtautological-pointer-compare"
+#elif defined(__GNUC__)
+# pragma GCC diagnostic ignored "-Waddress"
#endif
using namespace __cxxabiv1;
@@ -135,7 +136,7 @@
#if (defined(__APPLE__) || defined(__linux__)) && !defined(_LIBCXXABI_HAS_NO_THREADS)
assert(PlatformThreadID);
#endif
- if (PlatformSupportsThreadID()) {
+ if (PlatformThreadID != nullptr) {
assert(PlatformThreadID() != 0);
assert(PlatformThreadID() == PlatformThreadID());
}
Index: libcxxabi/src/cxa_guard_impl.h
===================================================================
--- libcxxabi/src/cxa_guard_impl.h
+++ libcxxabi/src/cxa_guard_impl.h
@@ -156,8 +156,6 @@
constexpr uint32_t (*PlatformThreadID)() = nullptr;
#endif
-constexpr bool PlatformSupportsThreadID() { return +PlatformThreadID != nullptr; }
-
//===----------------------------------------------------------------------===//
// GuardBase
//===----------------------------------------------------------------------===//
@@ -289,7 +287,7 @@
using BaseT::BaseT;
explicit InitByteGlobalMutex(uint32_t* g) : BaseT(g), has_thread_id_support(false) {}
- explicit InitByteGlobalMutex(uint64_t* g) : BaseT(g), has_thread_id_support(PlatformSupportsThreadID()) {}
+ explicit InitByteGlobalMutex(uint64_t* g) : BaseT(g), has_thread_id_support(GetThreadID != nullptr) {}
public:
AcquireResult acquire_init_byte() {
@@ -404,12 +402,14 @@
/// ARM Constructor
explicit InitByteFutex(uint32_t* g)
- : BaseT(g), init_byte(this->init_byte_address), has_thread_id_support(this->thread_id_address && GetThreadIDArg),
+ : BaseT(g), init_byte(this->init_byte_address),
+ has_thread_id_support(this->thread_id_address && GetThreadIDArg != nullptr),
thread_id(this->thread_id_address) {}
/// Itanium Constructor
explicit InitByteFutex(uint64_t* g)
- : BaseT(g), init_byte(this->init_byte_address), has_thread_id_support(this->thread_id_address && GetThreadIDArg),
+ : BaseT(g), init_byte(this->init_byte_address),
+ has_thread_id_support(this->thread_id_address && GetThreadIDArg != nullptr),
thread_id(this->thread_id_address) {}
public:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D110088.399470.patch
Type: text/x-patch
Size: 2716 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220112/a4ced138/attachment.bin>
More information about the libcxx-commits
mailing list