[InstCombine] Reduce code duplication in GEP of PHI transform; NFC
authorNikita Popov <nikita.ppv@gmail.com>
Sat, 28 Mar 2020 17:44:35 +0000 (18:44 +0100)
committerNikita Popov <nikita.ppv@gmail.com>
Sat, 28 Mar 2020 18:07:25 +0000 (19:07 +0100)
The `NewGEP->setOperand(DI, NewPN)` call was duplicated, and the
insertion of NewGEP is the same in both if/else, so we can extract it.

llvm/lib/Transforms/InstCombine/InstructionCombining.cpp

index f2bc696..49e39c3 100644 (file)
@@ -1975,8 +1975,6 @@ Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst &GEP) {
     if (DI == -1) {
       // All the GEPs feeding the PHI are identical. Clone one down into our
       // BB so that it can be merged with the current GEP.
-      GEP.getParent()->getInstList().insert(
-          GEP.getParent()->getFirstInsertionPt(), NewGEP);
     } else {
       // All the GEPs feeding the PHI differ at a single offset. Clone a GEP
       // into the current block so it can be merged, and create a new PHI to
@@ -1994,11 +1992,10 @@ Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst &GEP) {
                            PN->getIncomingBlock(I));
 
       NewGEP->setOperand(DI, NewPN);
-      GEP.getParent()->getInstList().insert(
-          GEP.getParent()->getFirstInsertionPt(), NewGEP);
-      NewGEP->setOperand(DI, NewPN);
     }
 
+    GEP.getParent()->getInstList().insert(
+        GEP.getParent()->getFirstInsertionPt(), NewGEP);
     GEP.setOperand(0, NewGEP);
     PtrOp = NewGEP;
   }