[llvm] [llvm][CodeGen] update live intervals for ModuloScheduleExpanderMVE (PR #132677)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 08:10:46 PDT 2025


================
@@ -2213,6 +2215,14 @@ void ModuloScheduleExpanderMVE::insertCondBranch(MachineBasicBlock &MBB,
   }
 }
 
+/// Some registers are generated during the kernel expansion. We calculate the
+/// live intervals of these registers after the expansion.
+void ModuloScheduleExpanderMVE::calculateIntervals() {
+  for (Register Reg : NoIntervalRegs)
----------------
arsenm wrote:

If you're just creating fresh registers and need to compute the live intervals at the end, NewVRegs would be a better name. Can you seed the intervals from some other register?

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


More information about the llvm-commits mailing list