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