[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
Mon Mar 10 01:53:14 PDT 2025


================
@@ -928,6 +948,26 @@ 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 {
----------------
arsenm wrote:

You shouldn't need to pre-filter anything. Your function is broken if there are instructions without slot indexes 

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


More information about the llvm-commits mailing list