[PATCH] D141053: [SwiftError] Use IMPLICIT_DEF as a definition for unreachable VReg uses

Filipp Zhinkin via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 5 07:05:46 PST 2023


fzhinkin created this revision.
Herald added a subscriber: hiraditya.
Herald added a project: All.
fzhinkin added reviewers: t.p.northover, aschwaighofer, compnerd.
fzhinkin published this revision for review.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

SwiftErrorValueTracking creates vregs at swifterror use sites and then
connects it with appropriate definitions after instruction selection.
To propagate swifterror values SwiftErrorValueTracking::propagateVRegs
iterates over basic blocks in RPO, but some vregs previously created
at use sites may be located in blocks that became unreachable after
instruction selection. Because of that there will no definition for
such vregs and that may cause issues down the pipeline.

To ensure that all vregs created by the SwiftErrorValueTracking will
be defined propagateVRegs was updated to insert IMPLICIT_DEF at the
beginning of unreachable blocks containing swifterror uses.

Related issue: https://github.com/llvm/llvm-project/issues/59751


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D141053

Files:
  llvm/lib/CodeGen/SwiftErrorValueTracking.cpp
  llvm/test/CodeGen/AArch64/swift-error-unreachable-use.ll


Index: llvm/test/CodeGen/AArch64/swift-error-unreachable-use.ll
===================================================================
--- /dev/null
+++ llvm/test/CodeGen/AArch64/swift-error-unreachable-use.ll
@@ -0,0 +1,30 @@
+; RUN: llc < %s
+;
+; Regression test for https://github.com/llvm/llvm-project/issues/59751
+
+target triple = "aarch64-unknown"
+
+define void @"func"(i32** swifterror %0) #0 {
+  br label %thirtyeight
+
+five:
+  br label %UelOc2l.exit
+
+common.ret:
+  ret void
+
+UelOc2l.exit:
+  %a = getelementptr inbounds [754 x i8*], [754 x i8*]* undef, i32 undef, i32 undef
+  %b = load i8*, i8** %a, align 8
+  %c = bitcast i8* %b to void ()*
+  call void %c()
+  br label %common.ret
+
+thirtythree:
+  br i1 false, label %UelOc2l.exit, label %thirtythree
+
+thirtyeight:
+  br i1 undef, label %thirtyeight, label %thirtythree
+}
+
+attributes #0 = { noinline optnone }
\ No newline at end of file
Index: llvm/lib/CodeGen/SwiftErrorValueTracking.cpp
===================================================================
--- llvm/lib/CodeGen/SwiftErrorValueTracking.cpp
+++ llvm/lib/CodeGen/SwiftErrorValueTracking.cpp
@@ -253,6 +253,24 @@
         setCurrentVReg(MBB, SwiftErrorVal, PHIVReg);
     }
   }
+
+  // Create implicit defs for upward uses from unreachable blocks
+  MachineRegisterInfo &MRI = MF->getRegInfo();
+  for (auto UseIt = VRegUpwardsUse.begin(), End = VRegUpwardsUse.end();
+       UseIt != End; ++UseIt) {
+    const MachineBasicBlock *UseBB = UseIt->first.first;
+    Register VReg = UseIt->second;
+    if (!MRI.def_begin(VReg).atEnd())
+      continue;
+
+    assert(std::find(RPOT.begin(), RPOT.end(), UseBB) == RPOT.end() &&
+           "Reachable block has VReg upward use without definition.");
+
+    MachineBasicBlock *UseBBMut = MF->getBlockNumbered(UseBB->getNumber());
+
+    BuildMI(*UseBBMut, UseBBMut->getFirstNonPHI(), DebugLoc(),
+            TII->get(TargetOpcode::IMPLICIT_DEF), VReg);
+  }
 }
 
 void SwiftErrorValueTracking::preassignVRegs(


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141053.486557.patch
Type: text/x-patch
Size: 2002 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230105/3baa562b/attachment.bin>


More information about the llvm-commits mailing list