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

Hua Tian via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 7 04:40:49 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 : NewVRegs)
+    LIS.createAndComputeVirtRegInterval(Reg);
----------------
huaatian wrote:

Updated

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


More information about the llvm-commits mailing list