Evan Cheng | c6fe333 | 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 | c5bbba1 | 2010-03-02 19:02:27 +0000 | [diff] [blame] | 11 | // instructions using a scoped hash table based value numbering scheme. It |
Evan Cheng | c6fe333 | 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 | |
| 16 | #define DEBUG_TYPE "machine-cse" |
| 17 | #include "llvm/CodeGen/Passes.h" |
| 18 | #include "llvm/CodeGen/MachineDominators.h" |
| 19 | #include "llvm/CodeGen/MachineInstr.h" |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/AliasAnalysis.h" |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetInstrInfo.h" |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/DenseMap.h" |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/ScopedHashTable.h" |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallSet.h" |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/Statistic.h" |
| 27 | #include "llvm/Support/Debug.h" |
Cameron Zwarich | 53eeba5 | 2011-01-03 04:07:46 +0000 | [diff] [blame] | 28 | #include "llvm/Support/RecyclingAllocator.h" |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 29 | using namespace llvm; |
| 30 | |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 31 | STATISTIC(NumCoalesces, "Number of copies coalesced"); |
| 32 | STATISTIC(NumCSEs, "Number of common subexpression eliminated"); |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 33 | STATISTIC(NumPhysCSEs, |
| 34 | "Number of physreg referencing common subexpr eliminated"); |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 35 | STATISTIC(NumCrossBBCSEs, |
| 36 | "Number of cross-MBB physreg referencing CS eliminated"); |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 37 | STATISTIC(NumCommutes, "Number of copies coalesced after commuting"); |
Bob Wilson | 3844173 | 2010-06-03 18:28:31 +0000 | [diff] [blame] | 38 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 39 | namespace { |
| 40 | class MachineCSE : public MachineFunctionPass { |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 41 | const TargetInstrInfo *TII; |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 42 | const TargetRegisterInfo *TRI; |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 43 | AliasAnalysis *AA; |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 44 | MachineDominatorTree *DT; |
| 45 | MachineRegisterInfo *MRI; |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 46 | public: |
| 47 | static char ID; // Pass identification |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 48 | MachineCSE() : MachineFunctionPass(ID), LookAheadLimit(5), CurrVN(0) { |
| 49 | initializeMachineCSEPass(*PassRegistry::getPassRegistry()); |
| 50 | } |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 51 | |
| 52 | virtual bool runOnMachineFunction(MachineFunction &MF); |
| 53 | |
| 54 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 55 | AU.setPreservesCFG(); |
| 56 | MachineFunctionPass::getAnalysisUsage(AU); |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 57 | AU.addRequired<AliasAnalysis>(); |
Evan Cheng | 6542416 | 2010-08-17 20:57:42 +0000 | [diff] [blame] | 58 | AU.addPreservedID(MachineLoopInfoID); |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 59 | AU.addRequired<MachineDominatorTree>(); |
| 60 | AU.addPreserved<MachineDominatorTree>(); |
| 61 | } |
| 62 | |
Evan Cheng | c2b768f | 2010-09-17 21:59:42 +0000 | [diff] [blame] | 63 | virtual void releaseMemory() { |
| 64 | ScopeMap.clear(); |
| 65 | Exps.clear(); |
| 66 | } |
| 67 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 68 | private: |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 69 | const unsigned LookAheadLimit; |
Cameron Zwarich | 53eeba5 | 2011-01-03 04:07:46 +0000 | [diff] [blame] | 70 | typedef RecyclingAllocator<BumpPtrAllocator, |
| 71 | ScopedHashTableVal<MachineInstr*, unsigned> > AllocatorTy; |
| 72 | typedef ScopedHashTable<MachineInstr*, unsigned, |
| 73 | MachineInstrExpressionTrait, AllocatorTy> ScopedHTType; |
| 74 | typedef ScopedHTType::ScopeTy ScopeType; |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 75 | DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap; |
Cameron Zwarich | 53eeba5 | 2011-01-03 04:07:46 +0000 | [diff] [blame] | 76 | ScopedHTType VNT; |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 77 | SmallVector<MachineInstr*, 64> Exps; |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 78 | unsigned CurrVN; |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 79 | |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 80 | bool PerformTrivialCoalescing(MachineInstr *MI, MachineBasicBlock *MBB); |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 81 | bool isPhysDefTriviallyDead(unsigned Reg, |
| 82 | MachineBasicBlock::const_iterator I, |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 83 | MachineBasicBlock::const_iterator E) const ; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 84 | bool hasLivePhysRegDefUses(const MachineInstr *MI, |
| 85 | const MachineBasicBlock *MBB, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 86 | SmallSet<unsigned,8> &PhysRefs, |
| 87 | SmallVector<unsigned,2> &PhysDefs) const; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 88 | bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 89 | SmallSet<unsigned,8> &PhysRefs, |
Evan Cheng | f96703e | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 90 | SmallVector<unsigned,2> &PhysDefs, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 91 | bool &NonLocal) const; |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 92 | bool isCSECandidate(MachineInstr *MI); |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 93 | bool isProfitableToCSE(unsigned CSReg, unsigned Reg, |
| 94 | MachineInstr *CSMI, MachineInstr *MI); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 95 | void EnterScope(MachineBasicBlock *MBB); |
| 96 | void ExitScope(MachineBasicBlock *MBB); |
| 97 | bool ProcessBlock(MachineBasicBlock *MBB); |
| 98 | void ExitScopeIfDone(MachineDomTreeNode *Node, |
| 99 | DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren, |
| 100 | DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap); |
| 101 | bool PerformCSE(MachineDomTreeNode *Node); |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 102 | }; |
| 103 | } // end anonymous namespace |
| 104 | |
| 105 | char MachineCSE::ID = 0; |
Owen Anderson | 2ab36d3 | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 106 | INITIALIZE_PASS_BEGIN(MachineCSE, "machine-cse", |
| 107 | "Machine Common Subexpression Elimination", false, false) |
| 108 | INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) |
| 109 | INITIALIZE_AG_DEPENDENCY(AliasAnalysis) |
| 110 | INITIALIZE_PASS_END(MachineCSE, "machine-cse", |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 111 | "Machine Common Subexpression Elimination", false, false) |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 112 | |
| 113 | FunctionPass *llvm::createMachineCSEPass() { return new MachineCSE(); } |
| 114 | |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 115 | bool MachineCSE::PerformTrivialCoalescing(MachineInstr *MI, |
| 116 | MachineBasicBlock *MBB) { |
| 117 | bool Changed = false; |
| 118 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 119 | MachineOperand &MO = MI->getOperand(i); |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 120 | if (!MO.isReg() || !MO.isUse()) |
| 121 | continue; |
| 122 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | c9df025 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 123 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 124 | continue; |
Evan Cheng | f437f73 | 2010-09-17 21:56:26 +0000 | [diff] [blame] | 125 | if (!MRI->hasOneNonDBGUse(Reg)) |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 126 | // Only coalesce single use copies. This ensure the copy will be |
| 127 | // deleted. |
| 128 | continue; |
| 129 | MachineInstr *DefMI = MRI->getVRegDef(Reg); |
| 130 | if (DefMI->getParent() != MBB) |
| 131 | continue; |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 132 | if (!DefMI->isCopy()) |
| 133 | continue; |
Jakob Stoklund Olesen | 04c528a | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 134 | unsigned SrcReg = DefMI->getOperand(1).getReg(); |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 135 | if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) |
| 136 | continue; |
| 137 | if (DefMI->getOperand(0).getSubReg() || DefMI->getOperand(1).getSubReg()) |
| 138 | continue; |
Jakob Stoklund Olesen | bf4699c | 2010-10-06 23:54:39 +0000 | [diff] [blame] | 139 | if (!MRI->constrainRegClass(SrcReg, MRI->getRegClass(Reg))) |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 140 | continue; |
| 141 | DEBUG(dbgs() << "Coalescing: " << *DefMI); |
Jakob Stoklund Olesen | bf4699c | 2010-10-06 23:54:39 +0000 | [diff] [blame] | 142 | DEBUG(dbgs() << "*** to: " << *MI); |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 143 | MO.setReg(SrcReg); |
| 144 | MRI->clearKillFlags(SrcReg); |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 145 | DefMI->eraseFromParent(); |
| 146 | ++NumCoalesces; |
| 147 | Changed = true; |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | return Changed; |
| 151 | } |
| 152 | |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 153 | bool |
| 154 | MachineCSE::isPhysDefTriviallyDead(unsigned Reg, |
| 155 | MachineBasicBlock::const_iterator I, |
| 156 | MachineBasicBlock::const_iterator E) const { |
Eric Christopher | e81d010 | 2010-05-21 23:40:03 +0000 | [diff] [blame] | 157 | unsigned LookAheadLeft = LookAheadLimit; |
Evan Cheng | 112e5e7 | 2010-03-23 20:33:48 +0000 | [diff] [blame] | 158 | while (LookAheadLeft) { |
Evan Cheng | 2250425 | 2010-03-24 01:50:28 +0000 | [diff] [blame] | 159 | // Skip over dbg_value's. |
| 160 | while (I != E && I->isDebugValue()) |
| 161 | ++I; |
| 162 | |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 163 | if (I == E) |
| 164 | // Reached end of block, register is obviously dead. |
| 165 | return true; |
| 166 | |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 167 | bool SeenDef = false; |
| 168 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { |
| 169 | const MachineOperand &MO = I->getOperand(i); |
| 170 | if (!MO.isReg() || !MO.getReg()) |
| 171 | continue; |
| 172 | if (!TRI->regsOverlap(MO.getReg(), Reg)) |
| 173 | continue; |
| 174 | if (MO.isUse()) |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 175 | // Found a use! |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 176 | return false; |
| 177 | SeenDef = true; |
| 178 | } |
| 179 | if (SeenDef) |
| 180 | // See a def of Reg (or an alias) before encountering any use, it's |
| 181 | // trivially dead. |
| 182 | return true; |
Evan Cheng | 112e5e7 | 2010-03-23 20:33:48 +0000 | [diff] [blame] | 183 | |
| 184 | --LookAheadLeft; |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 185 | ++I; |
| 186 | } |
| 187 | return false; |
| 188 | } |
| 189 | |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 190 | /// hasLivePhysRegDefUses - Return true if the specified instruction read/write |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 191 | /// physical registers (except for dead defs of physical registers). It also |
Evan Cheng | 2b4e727 | 2010-06-04 23:28:13 +0000 | [diff] [blame] | 192 | /// returns the physical register def by reference if it's the only one and the |
| 193 | /// instruction does not uses a physical register. |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 194 | bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI, |
| 195 | const MachineBasicBlock *MBB, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 196 | SmallSet<unsigned,8> &PhysRefs, |
| 197 | SmallVector<unsigned,2> &PhysDefs) const{ |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 198 | MachineBasicBlock::const_iterator I = MI; I = llvm::next(I); |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 199 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 200 | const MachineOperand &MO = MI->getOperand(i); |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 201 | if (!MO.isReg()) |
| 202 | continue; |
| 203 | unsigned Reg = MO.getReg(); |
| 204 | if (!Reg) |
| 205 | continue; |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 206 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 207 | continue; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 208 | // If the def is dead, it's ok. But the def may not marked "dead". That's |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 209 | // common since this pass is run before livevariables. We can scan |
| 210 | // forward a few instructions and check if it is obviously dead. |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 211 | if (MO.isDef() && |
| 212 | (MO.isDead() || isPhysDefTriviallyDead(Reg, I, MBB->end()))) |
| 213 | continue; |
| 214 | PhysRefs.insert(Reg); |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 215 | if (MO.isDef()) |
| 216 | PhysDefs.push_back(Reg); |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 217 | for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) |
| 218 | PhysRefs.insert(*Alias); |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 221 | return !PhysRefs.empty(); |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 224 | bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 225 | SmallSet<unsigned,8> &PhysRefs, |
Evan Cheng | f96703e | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 226 | SmallVector<unsigned,2> &PhysDefs, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 227 | bool &NonLocal) const { |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 228 | // For now conservatively returns false if the common subexpression is |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 229 | // not in the same basic block as the given instruction. The only exception |
| 230 | // is if the common subexpression is in the sole predecessor block. |
| 231 | const MachineBasicBlock *MBB = MI->getParent(); |
| 232 | const MachineBasicBlock *CSMBB = CSMI->getParent(); |
| 233 | |
| 234 | bool CrossMBB = false; |
| 235 | if (CSMBB != MBB) { |
Evan Cheng | f96703e | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 236 | if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB) |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 237 | return false; |
Evan Cheng | f96703e | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 238 | |
| 239 | for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) { |
| 240 | if (TRI->isInAllocatableClass(PhysDefs[i])) |
| 241 | // Avoid extending live range of physical registers unless |
| 242 | // they are unallocatable. |
| 243 | return false; |
| 244 | } |
| 245 | CrossMBB = true; |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 246 | } |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 247 | MachineBasicBlock::const_iterator I = CSMI; I = llvm::next(I); |
| 248 | MachineBasicBlock::const_iterator E = MI; |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 249 | MachineBasicBlock::const_iterator EE = CSMBB->end(); |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 250 | unsigned LookAheadLeft = LookAheadLimit; |
| 251 | while (LookAheadLeft) { |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 252 | // Skip over dbg_value's. |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 253 | while (I != E && I != EE && I->isDebugValue()) |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 254 | ++I; |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 255 | |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 256 | if (I == EE) { |
| 257 | assert(CrossMBB && "Reaching end-of-MBB without finding MI?"); |
Duncan Sands | 5b8a1db | 2012-02-05 14:20:11 +0000 | [diff] [blame^] | 258 | (void)CrossMBB; |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 259 | CrossMBB = false; |
| 260 | NonLocal = true; |
| 261 | I = MBB->begin(); |
| 262 | EE = MBB->end(); |
| 263 | continue; |
| 264 | } |
| 265 | |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 266 | if (I == E) |
| 267 | return true; |
| 268 | |
| 269 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { |
| 270 | const MachineOperand &MO = I->getOperand(i); |
| 271 | if (!MO.isReg() || !MO.isDef()) |
| 272 | continue; |
| 273 | unsigned MOReg = MO.getReg(); |
| 274 | if (TargetRegisterInfo::isVirtualRegister(MOReg)) |
| 275 | continue; |
| 276 | if (PhysRefs.count(MOReg)) |
| 277 | return false; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 278 | } |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 279 | |
| 280 | --LookAheadLeft; |
| 281 | ++I; |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | return false; |
| 285 | } |
| 286 | |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 287 | bool MachineCSE::isCSECandidate(MachineInstr *MI) { |
Evan Cheng | 5196018 | 2010-03-08 23:49:12 +0000 | [diff] [blame] | 288 | if (MI->isLabel() || MI->isPHI() || MI->isImplicitDef() || |
Dale Johannesen | e68ea06 | 2010-03-11 02:10:24 +0000 | [diff] [blame] | 289 | MI->isKill() || MI->isInlineAsm() || MI->isDebugValue()) |
Evan Cheng | 5196018 | 2010-03-08 23:49:12 +0000 | [diff] [blame] | 290 | return false; |
| 291 | |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 292 | // Ignore copies. |
Jakob Stoklund Olesen | 04c528a | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 293 | if (MI->isCopyLike()) |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 294 | return false; |
| 295 | |
| 296 | // Ignore stuff that we obviously can't move. |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 297 | if (MI->mayStore() || MI->isCall() || MI->isTerminator() || |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 298 | MI->hasUnmodeledSideEffects()) |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 299 | return false; |
| 300 | |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 301 | if (MI->mayLoad()) { |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 302 | // Okay, this instruction does a load. As a refinement, we allow the target |
| 303 | // to decide whether the loaded value is actually a constant. If so, we can |
| 304 | // actually use it as a load. |
| 305 | if (!MI->isInvariantLoad(AA)) |
| 306 | // FIXME: we should be able to hoist loads with no other side effects if |
| 307 | // there are no other instructions which can change memory in this loop. |
| 308 | // This is a trivial form of alias analysis. |
| 309 | return false; |
| 310 | } |
| 311 | return true; |
| 312 | } |
| 313 | |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 314 | /// isProfitableToCSE - Return true if it's profitable to eliminate MI with a |
| 315 | /// common expression that defines Reg. |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 316 | bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg, |
| 317 | MachineInstr *CSMI, MachineInstr *MI) { |
| 318 | // FIXME: Heuristics that works around the lack the live range splitting. |
| 319 | |
Chris Lattner | 622a11b | 2011-01-10 07:51:31 +0000 | [diff] [blame] | 320 | // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in |
| 321 | // an immediate predecessor. We don't want to increase register pressure and |
| 322 | // end up causing other computation to be spilled. |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 323 | if (MI->isAsCheapAsAMove()) { |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 324 | MachineBasicBlock *CSBB = CSMI->getParent(); |
| 325 | MachineBasicBlock *BB = MI->getParent(); |
Chris Lattner | 622a11b | 2011-01-10 07:51:31 +0000 | [diff] [blame] | 326 | if (CSBB != BB && !CSBB->isSuccessor(BB)) |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 327 | return false; |
| 328 | } |
| 329 | |
| 330 | // Heuristics #2: If the expression doesn't not use a vr and the only use |
| 331 | // of the redundant computation are copies, do not cse. |
| 332 | bool HasVRegUse = false; |
| 333 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 334 | const MachineOperand &MO = MI->getOperand(i); |
Jakob Stoklund Olesen | c9df025 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 335 | if (MO.isReg() && MO.isUse() && |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 336 | TargetRegisterInfo::isVirtualRegister(MO.getReg())) { |
| 337 | HasVRegUse = true; |
| 338 | break; |
| 339 | } |
| 340 | } |
| 341 | if (!HasVRegUse) { |
| 342 | bool HasNonCopyUse = false; |
| 343 | for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg), |
| 344 | E = MRI->use_nodbg_end(); I != E; ++I) { |
| 345 | MachineInstr *Use = &*I; |
| 346 | // Ignore copies. |
Jakob Stoklund Olesen | 04c528a | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 347 | if (!Use->isCopyLike()) { |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 348 | HasNonCopyUse = true; |
| 349 | break; |
| 350 | } |
| 351 | } |
| 352 | if (!HasNonCopyUse) |
| 353 | return false; |
| 354 | } |
| 355 | |
| 356 | // Heuristics #3: If the common subexpression is used by PHIs, do not reuse |
| 357 | // it unless the defined value is already used in the BB of the new use. |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 358 | bool HasPHI = false; |
| 359 | SmallPtrSet<MachineBasicBlock*, 4> CSBBs; |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 360 | for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(CSReg), |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 361 | E = MRI->use_nodbg_end(); I != E; ++I) { |
| 362 | MachineInstr *Use = &*I; |
| 363 | HasPHI |= Use->isPHI(); |
| 364 | CSBBs.insert(Use->getParent()); |
| 365 | } |
| 366 | |
| 367 | if (!HasPHI) |
| 368 | return true; |
| 369 | return CSBBs.count(MI->getParent()); |
| 370 | } |
| 371 | |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 372 | void MachineCSE::EnterScope(MachineBasicBlock *MBB) { |
| 373 | DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n'); |
| 374 | ScopeType *Scope = new ScopeType(VNT); |
| 375 | ScopeMap[MBB] = Scope; |
| 376 | } |
| 377 | |
| 378 | void MachineCSE::ExitScope(MachineBasicBlock *MBB) { |
| 379 | DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n'); |
| 380 | DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB); |
| 381 | assert(SI != ScopeMap.end()); |
| 382 | ScopeMap.erase(SI); |
| 383 | delete SI->second; |
| 384 | } |
| 385 | |
| 386 | bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) { |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 387 | bool Changed = false; |
| 388 | |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 389 | SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs; |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 390 | for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) { |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 391 | MachineInstr *MI = &*I; |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 392 | ++I; |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 393 | |
| 394 | if (!isCSECandidate(MI)) |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 395 | continue; |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 396 | |
| 397 | bool FoundCSE = VNT.count(MI); |
| 398 | if (!FoundCSE) { |
| 399 | // Look for trivial copy coalescing opportunities. |
Evan Cheng | db8771a | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 400 | if (PerformTrivialCoalescing(MI, MBB)) { |
Evan Cheng | cfea985 | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 401 | Changed = true; |
| 402 | |
Evan Cheng | db8771a | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 403 | // After coalescing MI itself may become a copy. |
Jakob Stoklund Olesen | 04c528a | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 404 | if (MI->isCopyLike()) |
Evan Cheng | db8771a | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 405 | continue; |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 406 | FoundCSE = VNT.count(MI); |
Evan Cheng | db8771a | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 407 | } |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 408 | } |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 409 | |
| 410 | // Commute commutable instructions. |
| 411 | bool Commuted = false; |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 412 | if (!FoundCSE && MI->isCommutable()) { |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 413 | MachineInstr *NewMI = TII->commuteInstruction(MI); |
| 414 | if (NewMI) { |
| 415 | Commuted = true; |
| 416 | FoundCSE = VNT.count(NewMI); |
Evan Cheng | cfea985 | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 417 | if (NewMI != MI) { |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 418 | // New instruction. It doesn't need to be kept. |
| 419 | NewMI->eraseFromParent(); |
Evan Cheng | cfea985 | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 420 | Changed = true; |
| 421 | } else if (!FoundCSE) |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 422 | // MI was changed but it didn't help, commute it back! |
| 423 | (void)TII->commuteInstruction(MI); |
| 424 | } |
| 425 | } |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 426 | |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 427 | // If the instruction defines physical registers and the values *may* be |
Evan Cheng | 67bda72 | 2010-03-03 23:59:08 +0000 | [diff] [blame] | 428 | // used, then it's not safe to replace it with a common subexpression. |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 429 | // It's also not safe if the instruction uses physical registers. |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 430 | bool CrossMBBPhysDef = false; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 431 | SmallSet<unsigned,8> PhysRefs; |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 432 | SmallVector<unsigned, 2> PhysDefs; |
| 433 | if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs, PhysDefs)) { |
Evan Cheng | 67bda72 | 2010-03-03 23:59:08 +0000 | [diff] [blame] | 434 | FoundCSE = false; |
| 435 | |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 436 | // ... Unless the CS is local or is in the sole predecessor block |
| 437 | // and it also defines the physical register which is not clobbered |
| 438 | // in between and the physical register uses were not clobbered. |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 439 | unsigned CSVN = VNT.lookup(MI); |
| 440 | MachineInstr *CSMI = Exps[CSVN]; |
Evan Cheng | f96703e | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 441 | if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef)) |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 442 | FoundCSE = true; |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 443 | } |
| 444 | |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 445 | if (!FoundCSE) { |
| 446 | VNT.insert(MI, CurrVN++); |
| 447 | Exps.push_back(MI); |
| 448 | continue; |
| 449 | } |
| 450 | |
| 451 | // Found a common subexpression, eliminate it. |
| 452 | unsigned CSVN = VNT.lookup(MI); |
| 453 | MachineInstr *CSMI = Exps[CSVN]; |
| 454 | DEBUG(dbgs() << "Examining: " << *MI); |
| 455 | DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI); |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 456 | |
| 457 | // Check if it's profitable to perform this CSE. |
| 458 | bool DoCSE = true; |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 459 | unsigned NumDefs = MI->getDesc().getNumDefs(); |
| 460 | for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) { |
| 461 | MachineOperand &MO = MI->getOperand(i); |
| 462 | if (!MO.isReg() || !MO.isDef()) |
| 463 | continue; |
| 464 | unsigned OldReg = MO.getReg(); |
| 465 | unsigned NewReg = CSMI->getOperand(i).getReg(); |
Evan Cheng | 6cc1aea | 2010-03-06 01:14:19 +0000 | [diff] [blame] | 466 | if (OldReg == NewReg) |
| 467 | continue; |
Bill Wendling | f6fb7ed | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 468 | |
Evan Cheng | 6cc1aea | 2010-03-06 01:14:19 +0000 | [diff] [blame] | 469 | assert(TargetRegisterInfo::isVirtualRegister(OldReg) && |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 470 | TargetRegisterInfo::isVirtualRegister(NewReg) && |
| 471 | "Do not CSE physical register defs!"); |
Bill Wendling | f6fb7ed | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 472 | |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 473 | if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) { |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 474 | DoCSE = false; |
| 475 | break; |
| 476 | } |
Bill Wendling | f6fb7ed | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 477 | |
| 478 | // Don't perform CSE if the result of the old instruction cannot exist |
| 479 | // within the register class of the new instruction. |
| 480 | const TargetRegisterClass *OldRC = MRI->getRegClass(OldReg); |
| 481 | if (!MRI->constrainRegClass(NewReg, OldRC)) { |
| 482 | DoCSE = false; |
| 483 | break; |
| 484 | } |
| 485 | |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 486 | CSEPairs.push_back(std::make_pair(OldReg, NewReg)); |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 487 | --NumDefs; |
| 488 | } |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 489 | |
| 490 | // Actually perform the elimination. |
| 491 | if (DoCSE) { |
Dan Gohman | 49b4589 | 2010-05-13 19:24:00 +0000 | [diff] [blame] | 492 | for (unsigned i = 0, e = CSEPairs.size(); i != e; ++i) { |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 493 | MRI->replaceRegWith(CSEPairs[i].first, CSEPairs[i].second); |
Dan Gohman | 49b4589 | 2010-05-13 19:24:00 +0000 | [diff] [blame] | 494 | MRI->clearKillFlags(CSEPairs[i].second); |
| 495 | } |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 496 | |
| 497 | if (CrossMBBPhysDef) { |
| 498 | // Add physical register defs now coming in from a predecessor to MBB |
| 499 | // livein list. |
| 500 | while (!PhysDefs.empty()) { |
| 501 | unsigned LiveIn = PhysDefs.pop_back_val(); |
| 502 | if (!MBB->isLiveIn(LiveIn)) |
| 503 | MBB->addLiveIn(LiveIn); |
| 504 | } |
| 505 | ++NumCrossBBCSEs; |
| 506 | } |
| 507 | |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 508 | MI->eraseFromParent(); |
| 509 | ++NumCSEs; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 510 | if (!PhysRefs.empty()) |
Evan Cheng | 2b4e727 | 2010-06-04 23:28:13 +0000 | [diff] [blame] | 511 | ++NumPhysCSEs; |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 512 | if (Commuted) |
| 513 | ++NumCommutes; |
Evan Cheng | cfea985 | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 514 | Changed = true; |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 515 | } else { |
| 516 | DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n"); |
| 517 | VNT.insert(MI, CurrVN++); |
| 518 | Exps.push_back(MI); |
| 519 | } |
| 520 | CSEPairs.clear(); |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 521 | } |
| 522 | |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 523 | return Changed; |
| 524 | } |
| 525 | |
| 526 | /// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given |
| 527 | /// dominator tree node if its a leaf or all of its children are done. Walk |
| 528 | /// up the dominator tree to destroy ancestors which are now done. |
| 529 | void |
| 530 | MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node, |
| 531 | DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren, |
| 532 | DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap) { |
| 533 | if (OpenChildren[Node]) |
| 534 | return; |
| 535 | |
| 536 | // Pop scope. |
| 537 | ExitScope(Node->getBlock()); |
| 538 | |
| 539 | // Now traverse upwards to pop ancestors whose offsprings are all done. |
| 540 | while (MachineDomTreeNode *Parent = ParentMap[Node]) { |
| 541 | unsigned Left = --OpenChildren[Parent]; |
| 542 | if (Left != 0) |
| 543 | break; |
| 544 | ExitScope(Parent->getBlock()); |
| 545 | Node = Parent; |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) { |
| 550 | SmallVector<MachineDomTreeNode*, 32> Scopes; |
| 551 | SmallVector<MachineDomTreeNode*, 8> WorkList; |
| 552 | DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> ParentMap; |
| 553 | DenseMap<MachineDomTreeNode*, unsigned> OpenChildren; |
| 554 | |
Evan Cheng | c2b768f | 2010-09-17 21:59:42 +0000 | [diff] [blame] | 555 | CurrVN = 0; |
| 556 | |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 557 | // Perform a DFS walk to determine the order of visit. |
| 558 | WorkList.push_back(Node); |
| 559 | do { |
| 560 | Node = WorkList.pop_back_val(); |
| 561 | Scopes.push_back(Node); |
| 562 | const std::vector<MachineDomTreeNode*> &Children = Node->getChildren(); |
| 563 | unsigned NumChildren = Children.size(); |
| 564 | OpenChildren[Node] = NumChildren; |
| 565 | for (unsigned i = 0; i != NumChildren; ++i) { |
| 566 | MachineDomTreeNode *Child = Children[i]; |
| 567 | ParentMap[Child] = Node; |
| 568 | WorkList.push_back(Child); |
| 569 | } |
| 570 | } while (!WorkList.empty()); |
| 571 | |
| 572 | // Now perform CSE. |
| 573 | bool Changed = false; |
| 574 | for (unsigned i = 0, e = Scopes.size(); i != e; ++i) { |
| 575 | MachineDomTreeNode *Node = Scopes[i]; |
| 576 | MachineBasicBlock *MBB = Node->getBlock(); |
| 577 | EnterScope(MBB); |
| 578 | Changed |= ProcessBlock(MBB); |
| 579 | // If it's a leaf node, it's done. Traverse upwards to pop ancestors. |
| 580 | ExitScopeIfDone(Node, OpenChildren, ParentMap); |
| 581 | } |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 582 | |
| 583 | return Changed; |
| 584 | } |
| 585 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 586 | bool MachineCSE::runOnMachineFunction(MachineFunction &MF) { |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 587 | TII = MF.getTarget().getInstrInfo(); |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 588 | TRI = MF.getTarget().getRegisterInfo(); |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 589 | MRI = &MF.getRegInfo(); |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 590 | AA = &getAnalysis<AliasAnalysis>(); |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 591 | DT = &getAnalysis<MachineDominatorTree>(); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 592 | return PerformCSE(DT->getRootNode()); |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 593 | } |