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

Hua Tian via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 03:22:21 PDT 2025


================
@@ -951,20 +951,8 @@ void ModuloScheduleExpander::addBranches(MachineBasicBlock &PreheaderBB,
 /// Some registers are generated during the kernel expansion. We calculate the
 /// live intervals of these registers after the expansion.
 void ModuloScheduleExpander::calculateIntervals() {
-  // The interval can be computed if all the register's non-debug users have
-  // slot indexes.
-  auto CanCalculateInterval = [this](Register Reg) -> bool {
-    for (auto &Opnd : this->MRI.reg_nodbg_operands(Reg))
-      if (this->LIS.isNotInMIMap(*Opnd.getParent()))
-        return false;
-    return true;
-  };
-  for (auto Reg : NoIntervalRegs) {
-    if (CanCalculateInterval(Reg))
-      LIS.createAndComputeVirtRegInterval(Reg);
-    else
-      LIS.createEmptyInterval(Reg);
-  }
+  for (auto Reg : NoIntervalRegs)
----------------
huaatian wrote:

Updated

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


More information about the llvm-commits mailing list