[llvm] [MachineCP] Correctly handle register masks and sub-registers (PR #122734)
Jinsong Ji via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 13:02:22 PST 2025
================
@@ -978,9 +1012,11 @@ void MachineCopyPropagation::ForwardCopyPropagateBlock(MachineBasicBlock &MBB) {
LLVM_DEBUG(dbgs() << "MCP: Removing copy due to regmask clobbering: ";
MaybeDead->dump());
- // Make sure we invalidate any entries in the copy maps before erasing
- // the instruction.
- Tracker.clobberRegister(Reg, *TRI, *TII, UseCopyInstr);
+ // Invalidate all entries in the copy map which are not preserved by
+ // this register mask.
+ for (unsigned RegUnit : TRI->regunits(Reg))
+ if (!PreservedRegUnits.test(RegUnit))
----------------
jsji wrote:
Looks like this might cause an invalid pointer problem. Some of the RegUnit in CopyInfo is still referencing the MaybeDead using pointer. Then after we call MaybeDead->eraseFromParent(); in following 2 lines, the MI pointer might become invalidated , we will then run into problem in next iteration
https://github.com/llvm/llvm-project/pull/122734
More information about the llvm-commits
mailing list