[llvm] [llvm][CodeGen] Fix the empty interval issue in Window Scheduler(#128714) (PR #129204)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 00:21:51 PST 2025


================
@@ -344,13 +350,16 @@ void ModuloScheduleExpander::generateEpilog(
 static void replaceRegUsesAfterLoop(unsigned FromReg, unsigned ToReg,
                                     MachineBasicBlock *MBB,
                                     MachineRegisterInfo &MRI,
-                                    LiveIntervals &LIS) {
+                                    LiveIntervals &LIS,
+                                    SmallVector<Register> &EmptyIntervalRegs) {
   for (MachineOperand &O :
        llvm::make_early_inc_range(MRI.use_operands(FromReg)))
     if (O.getParent()->getParent() != MBB)
       O.setReg(ToReg);
-  if (!LIS.hasInterval(ToReg))
+  if (!LIS.hasInterval(ToReg)) {
     LIS.createEmptyInterval(ToReg);
+    EmptyIntervalRegs.push_back(ToReg);
----------------
arsenm wrote:

This seems like a hazardous update strategy. You're creating temporarily wrong liveness and recomputing it from scratch later. If you're going to manage the interval here, do it completely or not at all 

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


More information about the llvm-commits mailing list