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