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