[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 02:28:19 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 {
----------------
huaatian wrote:

Updated

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


More information about the llvm-commits mailing list