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