[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
================
@@ -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 {
----------------
arsenm wrote:
Use Register type
https://github.com/llvm/llvm-project/pull/129204
More information about the llvm-commits
mailing list