LivePhysRegs: addLiveOuts() can skip addPristines() in ret block
authorMatthias Braun <matze@braunis.de>
Sat, 9 Jul 2016 01:31:36 +0000 (01:31 +0000)
committerMatthias Braun <matze@braunis.de>
Sat, 9 Jul 2016 01:31:36 +0000 (01:31 +0000)
Drive-by improvement: We would 1) add CSRs, 2) remove callee saved CSRs
and 3) add all CSRs again for the return block.  Just adding CSRs once
obviously gives the same results.

llvm-svn: 274955

llvm/lib/CodeGen/LivePhysRegs.cpp

index 57faef3..4e2528f 100644 (file)
@@ -167,12 +167,13 @@ void LivePhysRegs::addLiveOuts(const MachineBasicBlock &MBB) {
   const MachineFunction &MF = *MBB.getParent();
   const MachineFrameInfo &MFI = *MF.getFrameInfo();
   if (MFI.isCalleeSavedInfoValid()) {
-    addPristines(*this, MF, MFI, *TRI);
     if (MBB.isReturnBlock()) {
       // The return block has no successors whose live-ins we could merge
       // below. So instead we add the callee saved registers manually.
       for (const MCPhysReg *I = TRI->getCalleeSavedRegs(&MF); *I; ++I)
         addReg(*I);
+    } else {
+      addPristines(*this, MF, MFI, *TRI);
     }
   }