[Openmp-commits] [PATCH] D112156: [OpenMP] Ensure broken assumptions print once, not thousands of times.

Johannes Doerfert via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Wed Oct 20 10:04:47 PDT 2021


jdoerfert created this revision.
jdoerfert added reviewers: tianshilei1992, jhuber6.
Herald added subscribers: guansong, bollu, yaxunl.
jdoerfert requested review of this revision.
Herald added a subscriber: sstefan1.
Herald added a project: OpenMP.

If we have a broken assumption we want to print a message to the user.
If the assumption is broken by many threads in many teams this can
become a problem. To avoid it we use a hash that tracks if a broken
assumption has (likely) been printed and avoid printing it again. This
is not fool proof and has some caveats that might cause problems in
the future (see comment) but it should improve the situation
considerably for now.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D112156

Files:
  openmp/libomptarget/DeviceRTL/include/Synchronization.h
  openmp/libomptarget/DeviceRTL/src/Debug.cpp
  openmp/libomptarget/DeviceRTL/src/Synchronization.cpp


Index: openmp/libomptarget/DeviceRTL/src/Synchronization.cpp
===================================================================
--- openmp/libomptarget/DeviceRTL/src/Synchronization.cpp
+++ openmp/libomptarget/DeviceRTL/src/Synchronization.cpp
@@ -262,6 +262,10 @@
   return impl::atomicAdd(Addr, V, Ordering);
 }
 
+uint32_t atomic::exchange(uint32_t *Addr, uint32_t V, int Ordering) {
+  return impl::atomicExchange(Addr, V, Ordering);
+}
+
 extern "C" {
 void __kmpc_ordered(IdentTy *Loc, int32_t TId) {}
 
Index: openmp/libomptarget/DeviceRTL/src/Debug.cpp
===================================================================
--- openmp/libomptarget/DeviceRTL/src/Debug.cpp
+++ openmp/libomptarget/DeviceRTL/src/Debug.cpp
@@ -13,16 +13,35 @@
 #include "Debug.h"
 #include "Configuration.h"
 #include "Mapping.h"
+#include "Synchronization.h"
 #include "Types.h"
+#include "Utils.h"
 
 using namespace _OMP;
 
 #pragma omp declare target
 
+/// Uninitialized on purpose to avoid any cost in case assertions are disabled
+/// or we don't validate any. The likelihood AssertionFlag contains the value we
+/// use to identify a broken assumption is negligible. Using the undefined value
+/// in the comparison and then branch is technically UB, however the atomic
+/// (builtin) access we use to read it does not expose the undef value to the
+/// compiler yet. The hardware will not exploit the UB and we are A-OK as long
+/// as LLVM won't look through __atomic_exchange. By the time it does we
+/// hopefully have source level `freeze` intrinsics.
+static uint32_t AssertionFlag [[clang::loader_uninitialized]];
+
 extern "C" {
 void __assert_assume(bool cond, const char *exp, const char *file, int line) {
-  if (!cond && config::isDebugMode(config::DebugKind::Assertion)) {
-    PRINTF("ASSERTION failed: %s at %s, line %d\n", exp, file, line);
+  if (config::isDebugMode(config::DebugKind::Assertion) && !cond) {
+    uint32_t exp_low, exp_high;
+    utils::unpack(uint64_t(exp), exp_low, exp_high);
+    uint32_t file_low, file_high;
+    utils::unpack(uint64_t(file), file_low, file_high);
+    uint32_t hash = (exp_low << 1) ^ (exp_high << 3) ^ (file_low << 7) ^
+                    (file_high << 11) ^ (line);
+    if (hash != atomic::exchange(&AssertionFlag, hash, __ATOMIC_SEQ_CST))
+      PRINTF("ASSERTION failed: %s at %s, line %d\n", exp, file, line);
     __builtin_trap();
   }
 
Index: openmp/libomptarget/DeviceRTL/include/Synchronization.h
===================================================================
--- openmp/libomptarget/DeviceRTL/include/Synchronization.h
+++ openmp/libomptarget/DeviceRTL/include/Synchronization.h
@@ -74,6 +74,10 @@
 /// Atomically add \p V to \p *Addr with \p Ordering semantics.
 uint64_t add(uint64_t *Addr, uint64_t V, int Ordering);
 
+/// Atomically write \p V to \p *Addr with \p Ordering semantics and return the
+/// old value of \p *Addr.
+uint32_t exchange(uint32_t *Addr, uint32_t V, int Ordering);
+
 } // namespace atomic
 
 } // namespace _OMP


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112156.381008.patch
Type: text/x-patch
Size: 3013 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20211020/12208b1a/attachment-0001.bin>


More information about the Openmp-commits mailing list