[llvm] [MachineCSE] Enhance MachineCSE simple PRE to find common subexpressi… (PR #129860)

via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 8 22:47:39 PST 2025


================
@@ -887,6 +887,23 @@ bool MachineCSEImpl::ProcessBlockPRE(MachineDominatorTree *DT,
         NewMI.setDebugLoc(EmptyDL);
 
         NewMI.getOperand(0).setReg(NewReg);
+        for (MachineOperand &MO :
+             llvm::make_early_inc_range(MRI->use_nodbg_operands(VReg))) {
+          if (MO.isUse()) {
+            MO.setReg(NewReg);
+          }
+        }
+        auto *SiblingBBMI = PREMap.try_emplace(&MI).first->getFirst();
+        for (MachineOperand &MO :
+             llvm::make_early_inc_range(MRI->use_nodbg_operands(
+                 SiblingBBMI->getOperand(0).getReg()))) {
+          if (MO.isUse()) {
+            MachineInstr *UseMI = MO.getParent();
+            PREMap.erase(UseMI);
+            MO.setReg(NewReg);
----------------
emelliu wrote:

The new test case with sub reg using, and find it can handle subreg situation.

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


More information about the llvm-commits mailing list