[flang] [llvm] [mlir][llvm][OpenMP] Hoist __atomic_load alloca (PR #132888)

via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 27 05:30:59 PDT 2025


================
@@ -118,8 +118,14 @@ AtomicInfo::EmitAtomicLoadLibcall(AtomicOrdering AO) {
   Value *PtrVal = getAtomicPointer();
   PtrVal = Builder->CreateAddrSpaceCast(PtrVal, PointerType::getUnqual(Ctx));
   Args.push_back(PtrVal);
+
+  auto CurrentIP = Builder->saveIP();
+  BasicBlock &InsertBB =
+      Builder->GetInsertBlock()->getParent()->getEntryBlock();
----------------
NimishMishra wrote:

Hi @tblah, 

I have enclosed the offending compare-exchange loop with a stack save/restore, and the SEGFAULT is resolved now in my testing.

Do you think we need the stack save/restore for atomic reads too (where we would not have any updates)? I could not reproduce a problem as such, so have not added the save/restore as of now. Do let me know if they are needed for atomic reads too.

https://github.com/llvm/llvm-project/pull/132888


More information about the llvm-commits mailing list