[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
Fri Feb 28 01:50:39 PST 2025


================
@@ -923,6 +942,25 @@ void ModuloScheduleExpander::addBranches(MachineBasicBlock &PreheaderBB,
   }
 }
 
+/// Some new registers are generated during the kernel expansion. We recalculate
+/// the live intervals of these registers after the expansion.
+void ModuloScheduleExpander::recalcEmptyIntervals() {
+  // The interval can be computed if the register's non-debug users have
+  // slot indexes.
+  auto CanRecalculateInterval = [this](unsigned Reg) -> bool {
----------------
huaatian wrote:

Updated

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


More information about the llvm-commits mailing list