[llvm] [RISCV][VLOPT] Look through PHI instructions (PR #132236)

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 04:21:30 PDT 2025


================
@@ -1340,6 +1341,17 @@ RISCVVLOptimizer::checkUsers(const MachineInstr &MI) const {
       continue;
     }
 
+    if (UserMI.isPHI() && PHISeen.insert(&UserMI).second) {
+      LLVM_DEBUG(dbgs() << "    Peeking through uses of PHI\n");
+      for (auto &PhiUse : MRI->use_operands(UserMI.getOperand(0).getReg())) {
+        // If UserMI has a PHI cycle, don't analyze it.
+        if (PhiUse.getParent() == &UserMI)
----------------
lukel97 wrote:

Do we need this `PhiUse.getParent() == &UserMI` check here? Does the PHISeen.insert check above already take care of the direct cycle case

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


More information about the llvm-commits mailing list