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