Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 1 | //===-- MachineCSE.cpp - Machine Common Subexpression Elimination Pass ----===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass performs global common subexpression elimination on machine |
Evan Cheng | 10194a4 | 2010-03-02 19:02:27 +0000 | [diff] [blame] | 11 | // instructions using a scoped hash table based value numbering scheme. It |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 12 | // must be run while the machine function is still in SSA form. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/Passes.h" |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseMap.h" |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/ScopedHashTable.h" |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallSet.h" |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/AliasAnalysis.h" |
| 22 | #include "llvm/CodeGen/MachineDominators.h" |
| 23 | #include "llvm/CodeGen/MachineInstr.h" |
| 24 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Debug.h" |
Cameron Zwarich | 18f164f | 2011-01-03 04:07:46 +0000 | [diff] [blame] | 26 | #include "llvm/Support/RecyclingAllocator.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetInstrInfo.h" |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 28 | #include "llvm/Target/TargetSubtargetInfo.h" |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 29 | using namespace llvm; |
| 30 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 31 | #define DEBUG_TYPE "machine-cse" |
| 32 | |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 33 | STATISTIC(NumCoalesces, "Number of copies coalesced"); |
| 34 | STATISTIC(NumCSEs, "Number of common subexpression eliminated"); |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 35 | STATISTIC(NumPhysCSEs, |
| 36 | "Number of physreg referencing common subexpr eliminated"); |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 37 | STATISTIC(NumCrossBBCSEs, |
| 38 | "Number of cross-MBB physreg referencing CS eliminated"); |
Evan Cheng | b7ff5a0 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 39 | STATISTIC(NumCommutes, "Number of copies coalesced after commuting"); |
Bob Wilson | 30093b5 | 2010-06-03 18:28:31 +0000 | [diff] [blame] | 40 | |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 41 | namespace { |
| 42 | class MachineCSE : public MachineFunctionPass { |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 43 | const TargetInstrInfo *TII; |
Evan Cheng | 36f8aab | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 44 | const TargetRegisterInfo *TRI; |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 45 | AliasAnalysis *AA; |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 46 | MachineDominatorTree *DT; |
| 47 | MachineRegisterInfo *MRI; |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 48 | public: |
| 49 | static char ID; // Pass identification |
Owen Anderson | 6c18d1a | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 50 | MachineCSE() : MachineFunctionPass(ID), LookAheadLimit(5), CurrVN(0) { |
| 51 | initializeMachineCSEPass(*PassRegistry::getPassRegistry()); |
| 52 | } |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 53 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 54 | bool runOnMachineFunction(MachineFunction &MF) override; |
Andrew Trick | 9e76199 | 2012-02-08 21:22:43 +0000 | [diff] [blame] | 55 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 56 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 57 | AU.setPreservesCFG(); |
| 58 | MachineFunctionPass::getAnalysisUsage(AU); |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 59 | AU.addRequired<AliasAnalysis>(); |
Evan Cheng | e0db9d0 | 2010-08-17 20:57:42 +0000 | [diff] [blame] | 60 | AU.addPreservedID(MachineLoopInfoID); |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 61 | AU.addRequired<MachineDominatorTree>(); |
| 62 | AU.addPreserved<MachineDominatorTree>(); |
| 63 | } |
| 64 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 65 | void releaseMemory() override { |
Evan Cheng | b08377e | 2010-09-17 21:59:42 +0000 | [diff] [blame] | 66 | ScopeMap.clear(); |
| 67 | Exps.clear(); |
| 68 | } |
| 69 | |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 70 | private: |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 71 | const unsigned LookAheadLimit; |
Cameron Zwarich | 18f164f | 2011-01-03 04:07:46 +0000 | [diff] [blame] | 72 | typedef RecyclingAllocator<BumpPtrAllocator, |
| 73 | ScopedHashTableVal<MachineInstr*, unsigned> > AllocatorTy; |
| 74 | typedef ScopedHashTable<MachineInstr*, unsigned, |
| 75 | MachineInstrExpressionTrait, AllocatorTy> ScopedHTType; |
| 76 | typedef ScopedHTType::ScopeTy ScopeType; |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 77 | DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap; |
Cameron Zwarich | 18f164f | 2011-01-03 04:07:46 +0000 | [diff] [blame] | 78 | ScopedHTType VNT; |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 79 | SmallVector<MachineInstr*, 64> Exps; |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 80 | unsigned CurrVN; |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 81 | |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 82 | bool PerformTrivialCoalescing(MachineInstr *MI, MachineBasicBlock *MBB); |
Evan Cheng | 36f8aab | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 83 | bool isPhysDefTriviallyDead(unsigned Reg, |
| 84 | MachineBasicBlock::const_iterator I, |
Nick Lewycky | 765c699 | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 85 | MachineBasicBlock::const_iterator E) const; |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 86 | bool hasLivePhysRegDefUses(const MachineInstr *MI, |
| 87 | const MachineBasicBlock *MBB, |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 88 | SmallSet<unsigned,8> &PhysRefs, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 89 | SmallVectorImpl<unsigned> &PhysDefs, |
Ulrich Weigand | 3946877 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 90 | bool &PhysUseDef) const; |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 91 | bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI, |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 92 | SmallSet<unsigned,8> &PhysRefs, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 93 | SmallVectorImpl<unsigned> &PhysDefs, |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 94 | bool &NonLocal) const; |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 95 | bool isCSECandidate(MachineInstr *MI); |
Evan Cheng | 4c5f7a7 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 96 | bool isProfitableToCSE(unsigned CSReg, unsigned Reg, |
| 97 | MachineInstr *CSMI, MachineInstr *MI); |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 98 | void EnterScope(MachineBasicBlock *MBB); |
| 99 | void ExitScope(MachineBasicBlock *MBB); |
| 100 | bool ProcessBlock(MachineBasicBlock *MBB); |
| 101 | void ExitScopeIfDone(MachineDomTreeNode *Node, |
Bill Wendling | d163405 | 2012-07-19 00:04:14 +0000 | [diff] [blame] | 102 | DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren); |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 103 | bool PerformCSE(MachineDomTreeNode *Node); |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 104 | }; |
| 105 | } // end anonymous namespace |
| 106 | |
| 107 | char MachineCSE::ID = 0; |
Andrew Trick | 1fa5bcb | 2012-02-08 21:23:13 +0000 | [diff] [blame] | 108 | char &llvm::MachineCSEID = MachineCSE::ID; |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 109 | INITIALIZE_PASS_BEGIN(MachineCSE, "machine-cse", |
| 110 | "Machine Common Subexpression Elimination", false, false) |
| 111 | INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) |
| 112 | INITIALIZE_AG_DEPENDENCY(AliasAnalysis) |
| 113 | INITIALIZE_PASS_END(MachineCSE, "machine-cse", |
Owen Anderson | df7a4f2 | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 114 | "Machine Common Subexpression Elimination", false, false) |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 115 | |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 116 | bool MachineCSE::PerformTrivialCoalescing(MachineInstr *MI, |
| 117 | MachineBasicBlock *MBB) { |
| 118 | bool Changed = false; |
| 119 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 120 | MachineOperand &MO = MI->getOperand(i); |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 121 | if (!MO.isReg() || !MO.isUse()) |
| 122 | continue; |
| 123 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | 2fb5b31 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 124 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 125 | continue; |
Evan Cheng | 0dcd336 | 2010-09-17 21:56:26 +0000 | [diff] [blame] | 126 | if (!MRI->hasOneNonDBGUse(Reg)) |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 127 | // Only coalesce single use copies. This ensure the copy will be |
| 128 | // deleted. |
| 129 | continue; |
| 130 | MachineInstr *DefMI = MRI->getVRegDef(Reg); |
Jakob Stoklund Olesen | 0026462 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 131 | if (!DefMI->isCopy()) |
| 132 | continue; |
Jakob Stoklund Olesen | 37c42a3 | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 133 | unsigned SrcReg = DefMI->getOperand(1).getReg(); |
Jakob Stoklund Olesen | 0026462 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 134 | if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) |
| 135 | continue; |
Andrew Trick | e339828 | 2013-12-17 04:50:45 +0000 | [diff] [blame] | 136 | if (DefMI->getOperand(0).getSubReg()) |
Jakob Stoklund Olesen | 0026462 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 137 | continue; |
Andrew Trick | e4083f9 | 2013-12-17 19:29:36 +0000 | [diff] [blame] | 138 | // FIXME: We should trivially coalesce subregister copies to expose CSE |
| 139 | // opportunities on instructions with truncated operands (see |
| 140 | // cse-add-with-overflow.ll). This can be done here as follows: |
| 141 | // if (SrcSubReg) |
| 142 | // RC = TRI->getMatchingSuperRegClass(MRI->getRegClass(SrcReg), RC, |
| 143 | // SrcSubReg); |
| 144 | // MO.substVirtReg(SrcReg, SrcSubReg, *TRI); |
| 145 | // |
| 146 | // The 2-addr pass has been updated to handle coalesced subregs. However, |
| 147 | // some machine-specific code still can't handle it. |
| 148 | // To handle it properly we also need a way find a constrained subregister |
| 149 | // class given a super-reg class and subreg index. |
| 150 | if (DefMI->getOperand(1).getSubReg()) |
| 151 | continue; |
Andrew Trick | e339828 | 2013-12-17 04:50:45 +0000 | [diff] [blame] | 152 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
Andrew Trick | e339828 | 2013-12-17 04:50:45 +0000 | [diff] [blame] | 153 | if (!MRI->constrainRegClass(SrcReg, RC)) |
Jakob Stoklund Olesen | 0026462 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 154 | continue; |
| 155 | DEBUG(dbgs() << "Coalescing: " << *DefMI); |
Jakob Stoklund Olesen | 1884278 | 2010-10-06 23:54:39 +0000 | [diff] [blame] | 156 | DEBUG(dbgs() << "*** to: " << *MI); |
Andrew Trick | e4083f9 | 2013-12-17 19:29:36 +0000 | [diff] [blame] | 157 | MO.setReg(SrcReg); |
Jakob Stoklund Olesen | 0026462 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 158 | MRI->clearKillFlags(SrcReg); |
Jakob Stoklund Olesen | 0026462 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 159 | DefMI->eraseFromParent(); |
| 160 | ++NumCoalesces; |
| 161 | Changed = true; |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | return Changed; |
| 165 | } |
| 166 | |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 167 | bool |
| 168 | MachineCSE::isPhysDefTriviallyDead(unsigned Reg, |
| 169 | MachineBasicBlock::const_iterator I, |
| 170 | MachineBasicBlock::const_iterator E) const { |
Eric Christopher | 53ff992 | 2010-05-21 23:40:03 +0000 | [diff] [blame] | 171 | unsigned LookAheadLeft = LookAheadLimit; |
Evan Cheng | c7d721a | 2010-03-23 20:33:48 +0000 | [diff] [blame] | 172 | while (LookAheadLeft) { |
Evan Cheng | cf7be39 | 2010-03-24 01:50:28 +0000 | [diff] [blame] | 173 | // Skip over dbg_value's. |
| 174 | while (I != E && I->isDebugValue()) |
| 175 | ++I; |
| 176 | |
Evan Cheng | 36f8aab | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 177 | if (I == E) |
| 178 | // Reached end of block, register is obviously dead. |
| 179 | return true; |
| 180 | |
Evan Cheng | 36f8aab | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 181 | bool SeenDef = false; |
| 182 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { |
| 183 | const MachineOperand &MO = I->getOperand(i); |
Jakob Stoklund Olesen | 4c5ad2b | 2012-02-28 02:08:50 +0000 | [diff] [blame] | 184 | if (MO.isRegMask() && MO.clobbersPhysReg(Reg)) |
| 185 | SeenDef = true; |
Evan Cheng | 36f8aab | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 186 | if (!MO.isReg() || !MO.getReg()) |
| 187 | continue; |
| 188 | if (!TRI->regsOverlap(MO.getReg(), Reg)) |
| 189 | continue; |
| 190 | if (MO.isUse()) |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 191 | // Found a use! |
Evan Cheng | 36f8aab | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 192 | return false; |
| 193 | SeenDef = true; |
| 194 | } |
| 195 | if (SeenDef) |
Andrew Trick | 9e76199 | 2012-02-08 21:22:43 +0000 | [diff] [blame] | 196 | // See a def of Reg (or an alias) before encountering any use, it's |
Evan Cheng | 36f8aab | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 197 | // trivially dead. |
| 198 | return true; |
Evan Cheng | c7d721a | 2010-03-23 20:33:48 +0000 | [diff] [blame] | 199 | |
| 200 | --LookAheadLeft; |
Evan Cheng | 36f8aab | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 201 | ++I; |
| 202 | } |
| 203 | return false; |
| 204 | } |
| 205 | |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 206 | /// hasLivePhysRegDefUses - Return true if the specified instruction read/write |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 207 | /// physical registers (except for dead defs of physical registers). It also |
Evan Cheng | a03e6f8 | 2010-06-04 23:28:13 +0000 | [diff] [blame] | 208 | /// returns the physical register def by reference if it's the only one and the |
| 209 | /// instruction does not uses a physical register. |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 210 | bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI, |
| 211 | const MachineBasicBlock *MBB, |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 212 | SmallSet<unsigned,8> &PhysRefs, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 213 | SmallVectorImpl<unsigned> &PhysDefs, |
Ulrich Weigand | 3946877 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 214 | bool &PhysUseDef) const{ |
| 215 | // First, add all uses to PhysRefs. |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 216 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 217 | const MachineOperand &MO = MI->getOperand(i); |
Ulrich Weigand | 3946877 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 218 | if (!MO.isReg() || MO.isDef()) |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 219 | continue; |
| 220 | unsigned Reg = MO.getReg(); |
| 221 | if (!Reg) |
| 222 | continue; |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 223 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 224 | continue; |
Benjamin Kramer | 59c8b41 | 2012-08-11 20:42:59 +0000 | [diff] [blame] | 225 | // Reading constant physregs is ok. |
| 226 | if (!MRI->isConstantPhysReg(Reg, *MBB->getParent())) |
| 227 | for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) |
Benjamin Kramer | ef6494f | 2012-08-11 19:05:13 +0000 | [diff] [blame] | 228 | PhysRefs.insert(*AI); |
Ulrich Weigand | 3946877 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | // Next, collect all defs into PhysDefs. If any is already in PhysRefs |
| 232 | // (which currently contains only uses), set the PhysUseDef flag. |
| 233 | PhysUseDef = false; |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 234 | MachineBasicBlock::const_iterator I = MI; I = std::next(I); |
Ulrich Weigand | 3946877 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 235 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 236 | const MachineOperand &MO = MI->getOperand(i); |
| 237 | if (!MO.isReg() || !MO.isDef()) |
| 238 | continue; |
| 239 | unsigned Reg = MO.getReg(); |
| 240 | if (!Reg) |
| 241 | continue; |
| 242 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 243 | continue; |
| 244 | // Check against PhysRefs even if the def is "dead". |
| 245 | if (PhysRefs.count(Reg)) |
| 246 | PhysUseDef = true; |
| 247 | // If the def is dead, it's ok. But the def may not marked "dead". That's |
| 248 | // common since this pass is run before livevariables. We can scan |
| 249 | // forward a few instructions and check if it is obviously dead. |
| 250 | if (!MO.isDead() && !isPhysDefTriviallyDead(Reg, I, MBB->end())) |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 251 | PhysDefs.push_back(Reg); |
Evan Cheng | 36f8aab | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Ulrich Weigand | 3946877 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 254 | // Finally, add all defs to PhysRefs as well. |
| 255 | for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) |
| 256 | for (MCRegAliasIterator AI(PhysDefs[i], TRI, true); AI.isValid(); ++AI) |
| 257 | PhysRefs.insert(*AI); |
| 258 | |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 259 | return !PhysRefs.empty(); |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 262 | bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI, |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 263 | SmallSet<unsigned,8> &PhysRefs, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 264 | SmallVectorImpl<unsigned> &PhysDefs, |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 265 | bool &NonLocal) const { |
Eli Friedman | 5401962 | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 266 | // For now conservatively returns false if the common subexpression is |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 267 | // not in the same basic block as the given instruction. The only exception |
| 268 | // is if the common subexpression is in the sole predecessor block. |
| 269 | const MachineBasicBlock *MBB = MI->getParent(); |
| 270 | const MachineBasicBlock *CSMBB = CSMI->getParent(); |
| 271 | |
| 272 | bool CrossMBB = false; |
| 273 | if (CSMBB != MBB) { |
Evan Cheng | d9725a3 | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 274 | if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB) |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 275 | return false; |
Evan Cheng | d9725a3 | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 276 | |
| 277 | for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) { |
Jakob Stoklund Olesen | c30a9af | 2012-10-15 21:57:41 +0000 | [diff] [blame] | 278 | if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i])) |
Lang Hames | 5bade3d | 2012-02-17 00:27:16 +0000 | [diff] [blame] | 279 | // Avoid extending live range of physical registers if they are |
| 280 | //allocatable or reserved. |
Evan Cheng | d9725a3 | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 281 | return false; |
| 282 | } |
| 283 | CrossMBB = true; |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 284 | } |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 285 | MachineBasicBlock::const_iterator I = CSMI; I = std::next(I); |
Eli Friedman | 5401962 | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 286 | MachineBasicBlock::const_iterator E = MI; |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 287 | MachineBasicBlock::const_iterator EE = CSMBB->end(); |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 288 | unsigned LookAheadLeft = LookAheadLimit; |
| 289 | while (LookAheadLeft) { |
Eli Friedman | 5401962 | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 290 | // Skip over dbg_value's. |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 291 | while (I != E && I != EE && I->isDebugValue()) |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 292 | ++I; |
Eli Friedman | 5401962 | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 293 | |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 294 | if (I == EE) { |
| 295 | assert(CrossMBB && "Reaching end-of-MBB without finding MI?"); |
Duncan Sands | ae22c60 | 2012-02-05 14:20:11 +0000 | [diff] [blame] | 296 | (void)CrossMBB; |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 297 | CrossMBB = false; |
| 298 | NonLocal = true; |
| 299 | I = MBB->begin(); |
| 300 | EE = MBB->end(); |
| 301 | continue; |
| 302 | } |
| 303 | |
Eli Friedman | 5401962 | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 304 | if (I == E) |
| 305 | return true; |
| 306 | |
| 307 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { |
| 308 | const MachineOperand &MO = I->getOperand(i); |
Jakob Stoklund Olesen | 4c5ad2b | 2012-02-28 02:08:50 +0000 | [diff] [blame] | 309 | // RegMasks go on instructions like calls that clobber lots of physregs. |
| 310 | // Don't attempt to CSE across such an instruction. |
| 311 | if (MO.isRegMask()) |
| 312 | return false; |
Eli Friedman | 5401962 | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 313 | if (!MO.isReg() || !MO.isDef()) |
| 314 | continue; |
| 315 | unsigned MOReg = MO.getReg(); |
| 316 | if (TargetRegisterInfo::isVirtualRegister(MOReg)) |
| 317 | continue; |
| 318 | if (PhysRefs.count(MOReg)) |
| 319 | return false; |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 320 | } |
Eli Friedman | 5401962 | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 321 | |
| 322 | --LookAheadLeft; |
| 323 | ++I; |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | return false; |
| 327 | } |
| 328 | |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 329 | bool MachineCSE::isCSECandidate(MachineInstr *MI) { |
Rafael Espindola | b1f25f1 | 2014-03-07 06:08:31 +0000 | [diff] [blame] | 330 | if (MI->isPosition() || MI->isPHI() || MI->isImplicitDef() || MI->isKill() || |
| 331 | MI->isInlineAsm() || MI->isDebugValue()) |
Evan Cheng | c9e8621 | 2010-03-08 23:49:12 +0000 | [diff] [blame] | 332 | return false; |
| 333 | |
Evan Cheng | 4c5f7a7 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 334 | // Ignore copies. |
Jakob Stoklund Olesen | 37c42a3 | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 335 | if (MI->isCopyLike()) |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 336 | return false; |
| 337 | |
| 338 | // Ignore stuff that we obviously can't move. |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 339 | if (MI->mayStore() || MI->isCall() || MI->isTerminator() || |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 340 | MI->hasUnmodeledSideEffects()) |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 341 | return false; |
| 342 | |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 343 | if (MI->mayLoad()) { |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 344 | // Okay, this instruction does a load. As a refinement, we allow the target |
| 345 | // to decide whether the loaded value is actually a constant. If so, we can |
| 346 | // actually use it as a load. |
| 347 | if (!MI->isInvariantLoad(AA)) |
| 348 | // FIXME: we should be able to hoist loads with no other side effects if |
| 349 | // there are no other instructions which can change memory in this loop. |
| 350 | // This is a trivial form of alias analysis. |
| 351 | return false; |
| 352 | } |
| 353 | return true; |
| 354 | } |
| 355 | |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 356 | /// isProfitableToCSE - Return true if it's profitable to eliminate MI with a |
| 357 | /// common expression that defines Reg. |
Evan Cheng | 4c5f7a7 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 358 | bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg, |
| 359 | MachineInstr *CSMI, MachineInstr *MI) { |
| 360 | // FIXME: Heuristics that works around the lack the live range splitting. |
| 361 | |
Manman Ren | cb36b8c | 2012-08-07 06:16:46 +0000 | [diff] [blame] | 362 | // If CSReg is used at all uses of Reg, CSE should not increase register |
| 363 | // pressure of CSReg. |
| 364 | bool MayIncreasePressure = true; |
| 365 | if (TargetRegisterInfo::isVirtualRegister(CSReg) && |
| 366 | TargetRegisterInfo::isVirtualRegister(Reg)) { |
| 367 | MayIncreasePressure = false; |
| 368 | SmallPtrSet<MachineInstr*, 8> CSUses; |
Owen Anderson | b36376e | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 369 | for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) { |
| 370 | CSUses.insert(&MI); |
Manman Ren | cb36b8c | 2012-08-07 06:16:46 +0000 | [diff] [blame] | 371 | } |
Owen Anderson | b36376e | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 372 | for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) { |
| 373 | if (!CSUses.count(&MI)) { |
Manman Ren | cb36b8c | 2012-08-07 06:16:46 +0000 | [diff] [blame] | 374 | MayIncreasePressure = true; |
| 375 | break; |
| 376 | } |
| 377 | } |
| 378 | } |
| 379 | if (!MayIncreasePressure) return true; |
| 380 | |
Chris Lattner | 6c8b8dd | 2011-01-10 07:51:31 +0000 | [diff] [blame] | 381 | // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in |
| 382 | // an immediate predecessor. We don't want to increase register pressure and |
| 383 | // end up causing other computation to be spilled. |
Jiangning Liu | c305312 | 2014-07-29 01:55:19 +0000 | [diff] [blame] | 384 | if (TII->isAsCheapAsAMove(MI)) { |
Evan Cheng | 4c5f7a7 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 385 | MachineBasicBlock *CSBB = CSMI->getParent(); |
| 386 | MachineBasicBlock *BB = MI->getParent(); |
Chris Lattner | 6c8b8dd | 2011-01-10 07:51:31 +0000 | [diff] [blame] | 387 | if (CSBB != BB && !CSBB->isSuccessor(BB)) |
Evan Cheng | 4c5f7a7 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 388 | return false; |
| 389 | } |
| 390 | |
| 391 | // Heuristics #2: If the expression doesn't not use a vr and the only use |
| 392 | // of the redundant computation are copies, do not cse. |
| 393 | bool HasVRegUse = false; |
| 394 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 395 | const MachineOperand &MO = MI->getOperand(i); |
Jakob Stoklund Olesen | 2fb5b31 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 396 | if (MO.isReg() && MO.isUse() && |
Evan Cheng | 4c5f7a7 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 397 | TargetRegisterInfo::isVirtualRegister(MO.getReg())) { |
| 398 | HasVRegUse = true; |
| 399 | break; |
| 400 | } |
| 401 | } |
| 402 | if (!HasVRegUse) { |
| 403 | bool HasNonCopyUse = false; |
Owen Anderson | b36376e | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 404 | for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) { |
Evan Cheng | 4c5f7a7 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 405 | // Ignore copies. |
Owen Anderson | b36376e | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 406 | if (!MI.isCopyLike()) { |
Evan Cheng | 4c5f7a7 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 407 | HasNonCopyUse = true; |
| 408 | break; |
| 409 | } |
| 410 | } |
| 411 | if (!HasNonCopyUse) |
| 412 | return false; |
| 413 | } |
| 414 | |
| 415 | // Heuristics #3: If the common subexpression is used by PHIs, do not reuse |
| 416 | // it unless the defined value is already used in the BB of the new use. |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 417 | bool HasPHI = false; |
| 418 | SmallPtrSet<MachineBasicBlock*, 4> CSBBs; |
Owen Anderson | b36376e | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 419 | for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) { |
| 420 | HasPHI |= MI.isPHI(); |
| 421 | CSBBs.insert(MI.getParent()); |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | if (!HasPHI) |
| 425 | return true; |
| 426 | return CSBBs.count(MI->getParent()); |
| 427 | } |
| 428 | |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 429 | void MachineCSE::EnterScope(MachineBasicBlock *MBB) { |
| 430 | DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n'); |
| 431 | ScopeType *Scope = new ScopeType(VNT); |
| 432 | ScopeMap[MBB] = Scope; |
| 433 | } |
| 434 | |
| 435 | void MachineCSE::ExitScope(MachineBasicBlock *MBB) { |
| 436 | DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n'); |
| 437 | DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB); |
| 438 | assert(SI != ScopeMap.end()); |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 439 | delete SI->second; |
Jakub Staszak | f18753b | 2012-11-26 22:14:19 +0000 | [diff] [blame] | 440 | ScopeMap.erase(SI); |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) { |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 444 | bool Changed = false; |
| 445 | |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 446 | SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs; |
Manman Ren | 1be131b | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 447 | SmallVector<unsigned, 2> ImplicitDefsToUpdate; |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 448 | for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) { |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 449 | MachineInstr *MI = &*I; |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 450 | ++I; |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 451 | |
| 452 | if (!isCSECandidate(MI)) |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 453 | continue; |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 454 | |
| 455 | bool FoundCSE = VNT.count(MI); |
| 456 | if (!FoundCSE) { |
| 457 | // Look for trivial copy coalescing opportunities. |
Evan Cheng | 604bc16 | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 458 | if (PerformTrivialCoalescing(MI, MBB)) { |
Evan Cheng | fe917ef | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 459 | Changed = true; |
| 460 | |
Evan Cheng | 604bc16 | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 461 | // After coalescing MI itself may become a copy. |
Jakob Stoklund Olesen | 37c42a3 | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 462 | if (MI->isCopyLike()) |
Evan Cheng | 604bc16 | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 463 | continue; |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 464 | FoundCSE = VNT.count(MI); |
Evan Cheng | 604bc16 | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 465 | } |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 466 | } |
Evan Cheng | b7ff5a0 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 467 | |
| 468 | // Commute commutable instructions. |
| 469 | bool Commuted = false; |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 470 | if (!FoundCSE && MI->isCommutable()) { |
Evan Cheng | b7ff5a0 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 471 | MachineInstr *NewMI = TII->commuteInstruction(MI); |
| 472 | if (NewMI) { |
| 473 | Commuted = true; |
| 474 | FoundCSE = VNT.count(NewMI); |
Evan Cheng | fe917ef | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 475 | if (NewMI != MI) { |
Evan Cheng | b7ff5a0 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 476 | // New instruction. It doesn't need to be kept. |
| 477 | NewMI->eraseFromParent(); |
Evan Cheng | fe917ef | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 478 | Changed = true; |
| 479 | } else if (!FoundCSE) |
Evan Cheng | b7ff5a0 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 480 | // MI was changed but it didn't help, commute it back! |
| 481 | (void)TII->commuteInstruction(MI); |
| 482 | } |
| 483 | } |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 484 | |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 485 | // If the instruction defines physical registers and the values *may* be |
Evan Cheng | 2922641 | 2010-03-03 23:59:08 +0000 | [diff] [blame] | 486 | // used, then it's not safe to replace it with a common subexpression. |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 487 | // It's also not safe if the instruction uses physical registers. |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 488 | bool CrossMBBPhysDef = false; |
Nick Lewycky | 765c699 | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 489 | SmallSet<unsigned, 8> PhysRefs; |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 490 | SmallVector<unsigned, 2> PhysDefs; |
Ulrich Weigand | 3946877 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 491 | bool PhysUseDef = false; |
| 492 | if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs, |
| 493 | PhysDefs, PhysUseDef)) { |
Evan Cheng | 2922641 | 2010-03-03 23:59:08 +0000 | [diff] [blame] | 494 | FoundCSE = false; |
| 495 | |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 496 | // ... Unless the CS is local or is in the sole predecessor block |
| 497 | // and it also defines the physical register which is not clobbered |
| 498 | // in between and the physical register uses were not clobbered. |
Ulrich Weigand | 3946877 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 499 | // This can never be the case if the instruction both uses and |
| 500 | // defines the same physical register, which was detected above. |
| 501 | if (!PhysUseDef) { |
| 502 | unsigned CSVN = VNT.lookup(MI); |
| 503 | MachineInstr *CSMI = Exps[CSVN]; |
| 504 | if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef)) |
| 505 | FoundCSE = true; |
| 506 | } |
Evan Cheng | 2c8bdea | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 507 | } |
| 508 | |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 509 | if (!FoundCSE) { |
| 510 | VNT.insert(MI, CurrVN++); |
| 511 | Exps.push_back(MI); |
| 512 | continue; |
| 513 | } |
| 514 | |
| 515 | // Found a common subexpression, eliminate it. |
| 516 | unsigned CSVN = VNT.lookup(MI); |
| 517 | MachineInstr *CSMI = Exps[CSVN]; |
| 518 | DEBUG(dbgs() << "Examining: " << *MI); |
| 519 | DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI); |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 520 | |
| 521 | // Check if it's profitable to perform this CSE. |
| 522 | bool DoCSE = true; |
Manman Ren | 1be131b | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 523 | unsigned NumDefs = MI->getDesc().getNumDefs() + |
| 524 | MI->getDesc().getNumImplicitDefs(); |
Andrew Trick | cccd82f | 2013-12-16 19:36:18 +0000 | [diff] [blame] | 525 | |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 526 | for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) { |
| 527 | MachineOperand &MO = MI->getOperand(i); |
| 528 | if (!MO.isReg() || !MO.isDef()) |
| 529 | continue; |
| 530 | unsigned OldReg = MO.getReg(); |
| 531 | unsigned NewReg = CSMI->getOperand(i).getReg(); |
Manman Ren | 1be131b | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 532 | |
| 533 | // Go through implicit defs of CSMI and MI, if a def is not dead at MI, |
| 534 | // we should make sure it is not dead at CSMI. |
| 535 | if (MO.isImplicit() && !MO.isDead() && CSMI->getOperand(i).isDead()) |
| 536 | ImplicitDefsToUpdate.push_back(i); |
| 537 | if (OldReg == NewReg) { |
| 538 | --NumDefs; |
Evan Cheng | 0f5f547 | 2010-03-06 01:14:19 +0000 | [diff] [blame] | 539 | continue; |
Manman Ren | 1be131b | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 540 | } |
Bill Wendling | 3e5409d | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 541 | |
Evan Cheng | 0f5f547 | 2010-03-06 01:14:19 +0000 | [diff] [blame] | 542 | assert(TargetRegisterInfo::isVirtualRegister(OldReg) && |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 543 | TargetRegisterInfo::isVirtualRegister(NewReg) && |
| 544 | "Do not CSE physical register defs!"); |
Bill Wendling | 3e5409d | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 545 | |
Evan Cheng | 4c5f7a7 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 546 | if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) { |
Nick Lewycky | 765c699 | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 547 | DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n"); |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 548 | DoCSE = false; |
| 549 | break; |
| 550 | } |
Bill Wendling | 3e5409d | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 551 | |
| 552 | // Don't perform CSE if the result of the old instruction cannot exist |
| 553 | // within the register class of the new instruction. |
| 554 | const TargetRegisterClass *OldRC = MRI->getRegClass(OldReg); |
| 555 | if (!MRI->constrainRegClass(NewReg, OldRC)) { |
Nick Lewycky | 765c699 | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 556 | DEBUG(dbgs() << "*** Not the same register class, avoid CSE!\n"); |
Bill Wendling | 3e5409d | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 557 | DoCSE = false; |
| 558 | break; |
| 559 | } |
| 560 | |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 561 | CSEPairs.push_back(std::make_pair(OldReg, NewReg)); |
Evan Cheng | b386cd3 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 562 | --NumDefs; |
| 563 | } |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 564 | |
| 565 | // Actually perform the elimination. |
| 566 | if (DoCSE) { |
Dan Gohman | 7767d27 | 2010-05-13 19:24:00 +0000 | [diff] [blame] | 567 | for (unsigned i = 0, e = CSEPairs.size(); i != e; ++i) { |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 568 | MRI->replaceRegWith(CSEPairs[i].first, CSEPairs[i].second); |
Dan Gohman | 7767d27 | 2010-05-13 19:24:00 +0000 | [diff] [blame] | 569 | MRI->clearKillFlags(CSEPairs[i].second); |
| 570 | } |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 571 | |
Manman Ren | 1be131b | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 572 | // Go through implicit defs of CSMI and MI, if a def is not dead at MI, |
| 573 | // we should make sure it is not dead at CSMI. |
| 574 | for (unsigned i = 0, e = ImplicitDefsToUpdate.size(); i != e; ++i) |
| 575 | CSMI->getOperand(ImplicitDefsToUpdate[i]).setIsDead(false); |
| 576 | |
Evan Cheng | 0be4144 | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 577 | if (CrossMBBPhysDef) { |
| 578 | // Add physical register defs now coming in from a predecessor to MBB |
| 579 | // livein list. |
| 580 | while (!PhysDefs.empty()) { |
| 581 | unsigned LiveIn = PhysDefs.pop_back_val(); |
| 582 | if (!MBB->isLiveIn(LiveIn)) |
| 583 | MBB->addLiveIn(LiveIn); |
| 584 | } |
| 585 | ++NumCrossBBCSEs; |
| 586 | } |
| 587 | |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 588 | MI->eraseFromParent(); |
| 589 | ++NumCSEs; |
Evan Cheng | 2b3f25e | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 590 | if (!PhysRefs.empty()) |
Evan Cheng | a03e6f8 | 2010-06-04 23:28:13 +0000 | [diff] [blame] | 591 | ++NumPhysCSEs; |
Evan Cheng | b7ff5a0 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 592 | if (Commuted) |
| 593 | ++NumCommutes; |
Evan Cheng | fe917ef | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 594 | Changed = true; |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 595 | } else { |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 596 | VNT.insert(MI, CurrVN++); |
| 597 | Exps.push_back(MI); |
| 598 | } |
| 599 | CSEPairs.clear(); |
Manman Ren | 1be131b | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 600 | ImplicitDefsToUpdate.clear(); |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 601 | } |
| 602 | |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 603 | return Changed; |
| 604 | } |
| 605 | |
| 606 | /// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given |
| 607 | /// dominator tree node if its a leaf or all of its children are done. Walk |
| 608 | /// up the dominator tree to destroy ancestors which are now done. |
| 609 | void |
| 610 | MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node, |
Nick Lewycky | 765c699 | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 611 | DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren) { |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 612 | if (OpenChildren[Node]) |
| 613 | return; |
| 614 | |
| 615 | // Pop scope. |
| 616 | ExitScope(Node->getBlock()); |
| 617 | |
| 618 | // Now traverse upwards to pop ancestors whose offsprings are all done. |
Nick Lewycky | 765c699 | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 619 | while (MachineDomTreeNode *Parent = Node->getIDom()) { |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 620 | unsigned Left = --OpenChildren[Parent]; |
| 621 | if (Left != 0) |
| 622 | break; |
| 623 | ExitScope(Parent->getBlock()); |
| 624 | Node = Parent; |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) { |
| 629 | SmallVector<MachineDomTreeNode*, 32> Scopes; |
| 630 | SmallVector<MachineDomTreeNode*, 8> WorkList; |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 631 | DenseMap<MachineDomTreeNode*, unsigned> OpenChildren; |
| 632 | |
Evan Cheng | b08377e | 2010-09-17 21:59:42 +0000 | [diff] [blame] | 633 | CurrVN = 0; |
| 634 | |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 635 | // Perform a DFS walk to determine the order of visit. |
| 636 | WorkList.push_back(Node); |
| 637 | do { |
| 638 | Node = WorkList.pop_back_val(); |
| 639 | Scopes.push_back(Node); |
| 640 | const std::vector<MachineDomTreeNode*> &Children = Node->getChildren(); |
| 641 | unsigned NumChildren = Children.size(); |
| 642 | OpenChildren[Node] = NumChildren; |
| 643 | for (unsigned i = 0; i != NumChildren; ++i) { |
| 644 | MachineDomTreeNode *Child = Children[i]; |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 645 | WorkList.push_back(Child); |
| 646 | } |
| 647 | } while (!WorkList.empty()); |
| 648 | |
| 649 | // Now perform CSE. |
| 650 | bool Changed = false; |
| 651 | for (unsigned i = 0, e = Scopes.size(); i != e; ++i) { |
| 652 | MachineDomTreeNode *Node = Scopes[i]; |
| 653 | MachineBasicBlock *MBB = Node->getBlock(); |
| 654 | EnterScope(MBB); |
| 655 | Changed |= ProcessBlock(MBB); |
| 656 | // If it's a leaf node, it's done. Traverse upwards to pop ancestors. |
Nick Lewycky | 765c699 | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 657 | ExitScopeIfDone(Node, OpenChildren); |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 658 | } |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 659 | |
| 660 | return Changed; |
| 661 | } |
| 662 | |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 663 | bool MachineCSE::runOnMachineFunction(MachineFunction &MF) { |
Paul Robinson | 7c99ec5 | 2014-03-31 17:43:35 +0000 | [diff] [blame] | 664 | if (skipOptnoneFunction(*MF.getFunction())) |
| 665 | return false; |
| 666 | |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame^] | 667 | TII = MF.getSubtarget().getInstrInfo(); |
| 668 | TRI = MF.getSubtarget().getRegisterInfo(); |
Evan Cheng | 4eab008 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 669 | MRI = &MF.getRegInfo(); |
Evan Cheng | 1abd1a9 | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 670 | AA = &getAnalysis<AliasAnalysis>(); |
Evan Cheng | 19e44b4 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 671 | DT = &getAnalysis<MachineDominatorTree>(); |
Evan Cheng | 4b2ef56 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 672 | return PerformCSE(DT->getRootNode()); |
Evan Cheng | 036aa49 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 673 | } |