Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 1 | //===- MachineCSE.cpp - Machine Common Subexpression Elimination Pass -----===// |
Evan Cheng | c6fe333 | 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 | c5bbba1 | 2010-03-02 19:02:27 +0000 | [diff] [blame] | 11 | // instructions using a scoped hash table based value numbering scheme. It |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 12 | // must be run while the machine function is still in SSA form. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/DenseMap.h" |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/ScopedHashTable.h" |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/SmallPtrSet.h" |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallSet.h" |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallVector.h" |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/AliasAnalysis.h" |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineDominators.h" |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineFunction.h" |
| 26 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineInstr.h" |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineOperand.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Chandler Carruth | e3e43d9 | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/Passes.h" |
David Blaikie | 4831923 | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | e3a9b4c | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/TargetOpcodes.h" |
| 33 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 34 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 35 | #include "llvm/MC/MCInstrDesc.h" |
| 36 | #include "llvm/MC/MCRegisterInfo.h" |
| 37 | #include "llvm/Pass.h" |
| 38 | #include "llvm/Support/Allocator.h" |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 39 | #include "llvm/Support/Debug.h" |
Cameron Zwarich | 53eeba5 | 2011-01-03 04:07:46 +0000 | [diff] [blame] | 40 | #include "llvm/Support/RecyclingAllocator.h" |
Benjamin Kramer | 1bfcd1f | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 41 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 42 | #include <cassert> |
| 43 | #include <iterator> |
| 44 | #include <utility> |
| 45 | #include <vector> |
| 46 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 47 | using namespace llvm; |
| 48 | |
Chandler Carruth | 8677f2f | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 49 | #define DEBUG_TYPE "machine-cse" |
| 50 | |
Evan Cheng | 16b48b8 | 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 | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 53 | STATISTIC(NumPhysCSEs, |
| 54 | "Number of physreg referencing common subexpr eliminated"); |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 55 | STATISTIC(NumCrossBBCSEs, |
| 56 | "Number of cross-MBB physreg referencing CS eliminated"); |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 57 | STATISTIC(NumCommutes, "Number of copies coalesced after commuting"); |
Bob Wilson | 3844173 | 2010-06-03 18:28:31 +0000 | [diff] [blame] | 58 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 59 | namespace { |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 60 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 61 | class MachineCSE : public MachineFunctionPass { |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 62 | const TargetInstrInfo *TII; |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 63 | const TargetRegisterInfo *TRI; |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 64 | AliasAnalysis *AA; |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 65 | MachineDominatorTree *DT; |
| 66 | MachineRegisterInfo *MRI; |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 67 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 68 | public: |
| 69 | static char ID; // Pass identification |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 70 | |
| 71 | MachineCSE() : MachineFunctionPass(ID) { |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 72 | initializeMachineCSEPass(*PassRegistry::getPassRegistry()); |
| 73 | } |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 74 | |
Craig Topper | 9f998de | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 75 | bool runOnMachineFunction(MachineFunction &MF) override; |
Andrew Trick | 1df91b0 | 2012-02-08 21:22:43 +0000 | [diff] [blame] | 76 | |
Craig Topper | 9f998de | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 77 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 78 | AU.setPreservesCFG(); |
| 79 | MachineFunctionPass::getAnalysisUsage(AU); |
Chandler Carruth | 9146833 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 80 | AU.addRequired<AAResultsWrapperPass>(); |
Evan Cheng | 6542416 | 2010-08-17 20:57:42 +0000 | [diff] [blame] | 81 | AU.addPreservedID(MachineLoopInfoID); |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 82 | AU.addRequired<MachineDominatorTree>(); |
| 83 | AU.addPreserved<MachineDominatorTree>(); |
| 84 | } |
| 85 | |
Craig Topper | 9f998de | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 86 | void releaseMemory() override { |
Evan Cheng | c2b768f | 2010-09-17 21:59:42 +0000 | [diff] [blame] | 87 | ScopeMap.clear(); |
| 88 | Exps.clear(); |
| 89 | } |
| 90 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 91 | private: |
Eugene Zelenko | 2de563a | 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 | 53eeba5 | 2011-01-03 04:07:46 +0000 | [diff] [blame] | 101 | ScopedHTType VNT; |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 102 | SmallVector<MachineInstr *, 64> Exps; |
| 103 | unsigned CurrVN = 0; |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 104 | |
Jiangning Liu | 0679d2d | 2014-08-11 05:17:19 +0000 | [diff] [blame] | 105 | bool PerformTrivialCopyPropagation(MachineInstr *MI, |
| 106 | MachineBasicBlock *MBB); |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 107 | bool isPhysDefTriviallyDead(unsigned Reg, |
| 108 | MachineBasicBlock::const_iterator I, |
Nick Lewycky | 7a7a6db | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 109 | MachineBasicBlock::const_iterator E) const; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 110 | bool hasLivePhysRegDefUses(const MachineInstr *MI, |
| 111 | const MachineBasicBlock *MBB, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 112 | SmallSet<unsigned,8> &PhysRefs, |
Craig Topper | a0ec3f9 | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 113 | SmallVectorImpl<unsigned> &PhysDefs, |
Ulrich Weigand | b64e211 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 114 | bool &PhysUseDef) const; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 115 | bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 116 | SmallSet<unsigned,8> &PhysRefs, |
Craig Topper | a0ec3f9 | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 117 | SmallVectorImpl<unsigned> &PhysDefs, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 118 | bool &NonLocal) const; |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 119 | bool isCSECandidate(MachineInstr *MI); |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 120 | bool isProfitableToCSE(unsigned CSReg, unsigned Reg, |
| 121 | MachineInstr *CSMI, MachineInstr *MI); |
Evan Cheng | 3115698 | 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 | 96cb112 | 2012-07-19 00:04:14 +0000 | [diff] [blame] | 126 | DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 127 | bool PerformCSE(MachineDomTreeNode *Node); |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 128 | }; |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 129 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 130 | } // end anonymous namespace |
| 131 | |
| 132 | char MachineCSE::ID = 0; |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 133 | |
Andrew Trick | 1dd8c85 | 2012-02-08 21:23:13 +0000 | [diff] [blame] | 134 | char &llvm::MachineCSEID = MachineCSE::ID; |
Eugene Zelenko | 2de563a | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 135 | |
Matthias Braun | 94c4904 | 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 | 2ab36d3 | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 138 | INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) |
Chandler Carruth | 9146833 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 139 | INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) |
Matthias Braun | 94c4904 | 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 | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 142 | |
Jiangning Liu | 0679d2d | 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 | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 149 | bool Changed = false; |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 150 | for (MachineOperand &MO : MI->operands()) { |
Evan Cheng | 16b48b8 | 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 | c9df025 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 154 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 155 | continue; |
Jiangning Liu | 0679d2d | 2014-08-11 05:17:19 +0000 | [diff] [blame] | 156 | bool OnlyOneUse = MRI->hasOneNonDBGUse(Reg); |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 157 | MachineInstr *DefMI = MRI->getVRegDef(Reg); |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 158 | if (!DefMI->isCopy()) |
| 159 | continue; |
Jakob Stoklund Olesen | 04c528a | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 160 | unsigned SrcReg = DefMI->getOperand(1).getReg(); |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 161 | if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) |
| 162 | continue; |
Andrew Trick | c4c5a1d | 2013-12-17 04:50:45 +0000 | [diff] [blame] | 163 | if (DefMI->getOperand(0).getSubReg()) |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 164 | continue; |
Andrew Trick | ff7e4b1 | 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; |
Justin Bogner | 3df0e39 | 2018-01-18 02:06:56 +0000 | [diff] [blame] | 179 | if (!MRI->constrainRegAttrs(SrcReg, Reg)) |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 180 | continue; |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 181 | LLVM_DEBUG(dbgs() << "Coalescing: " << *DefMI); |
| 182 | LLVM_DEBUG(dbgs() << "*** to: " << *MI); |
Carlos Alberto Enciso | 03c16fb | 2018-08-30 07:17:41 +0000 | [diff] [blame] | 183 | |
Carlos Alberto Enciso | 42b5443 | 2018-10-01 08:14:44 +0000 | [diff] [blame] | 184 | // Update matching debug values. |
| 185 | DefMI->changeDebugValuesDefReg(SrcReg); |
Carlos Alberto Enciso | 03c16fb | 2018-08-30 07:17:41 +0000 | [diff] [blame] | 186 | |
Jiangning Liu | 0679d2d | 2014-08-11 05:17:19 +0000 | [diff] [blame] | 187 | // Propagate SrcReg of copies to MI. |
Andrew Trick | ff7e4b1 | 2013-12-17 19:29:36 +0000 | [diff] [blame] | 188 | MO.setReg(SrcReg); |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 189 | MRI->clearKillFlags(SrcReg); |
Jiangning Liu | 0679d2d | 2014-08-11 05:17:19 +0000 | [diff] [blame] | 190 | // Coalesce single use copies. |
| 191 | if (OnlyOneUse) { |
| 192 | DefMI->eraseFromParent(); |
| 193 | ++NumCoalesces; |
| 194 | } |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame] | 195 | Changed = true; |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | return Changed; |
| 199 | } |
| 200 | |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 201 | bool |
| 202 | MachineCSE::isPhysDefTriviallyDead(unsigned Reg, |
| 203 | MachineBasicBlock::const_iterator I, |
| 204 | MachineBasicBlock::const_iterator E) const { |
Eric Christopher | e81d010 | 2010-05-21 23:40:03 +0000 | [diff] [blame] | 205 | unsigned LookAheadLeft = LookAheadLimit; |
Evan Cheng | 112e5e7 | 2010-03-23 20:33:48 +0000 | [diff] [blame] | 206 | while (LookAheadLeft) { |
Evan Cheng | 2250425 | 2010-03-24 01:50:28 +0000 | [diff] [blame] | 207 | // Skip over dbg_value's. |
Florian Hahn | f295c8c | 2016-12-16 11:10:26 +0000 | [diff] [blame] | 208 | I = skipDebugInstructionsForward(I, E); |
Evan Cheng | 2250425 | 2010-03-24 01:50:28 +0000 | [diff] [blame] | 209 | |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 210 | if (I == E) |
Mikael Holmen | 3bfeab4 | 2017-05-24 09:35:23 +0000 | [diff] [blame] | 211 | // Reached end of block, we don't know if register is dead or not. |
| 212 | return false; |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 213 | |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 214 | bool SeenDef = false; |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 215 | for (const MachineOperand &MO : I->operands()) { |
Jakob Stoklund Olesen | 2129a0f | 2012-02-28 02:08:50 +0000 | [diff] [blame] | 216 | if (MO.isRegMask() && MO.clobbersPhysReg(Reg)) |
| 217 | SeenDef = true; |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 218 | if (!MO.isReg() || !MO.getReg()) |
| 219 | continue; |
| 220 | if (!TRI->regsOverlap(MO.getReg(), Reg)) |
| 221 | continue; |
| 222 | if (MO.isUse()) |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 223 | // Found a use! |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 224 | return false; |
| 225 | SeenDef = true; |
| 226 | } |
| 227 | if (SeenDef) |
Andrew Trick | 1df91b0 | 2012-02-08 21:22:43 +0000 | [diff] [blame] | 228 | // See a def of Reg (or an alias) before encountering any use, it's |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 229 | // trivially dead. |
| 230 | return true; |
Evan Cheng | 112e5e7 | 2010-03-23 20:33:48 +0000 | [diff] [blame] | 231 | |
| 232 | --LookAheadLeft; |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 233 | ++I; |
| 234 | } |
| 235 | return false; |
| 236 | } |
| 237 | |
Roman Tereshin | 315f6cf | 2018-10-20 00:06:15 +0000 | [diff] [blame] | 238 | static bool isCallerPreservedOrConstPhysReg(unsigned Reg, |
| 239 | const MachineFunction &MF, |
| 240 | const TargetRegisterInfo &TRI) { |
| 241 | // MachineRegisterInfo::isConstantPhysReg directly called by |
| 242 | // MachineRegisterInfo::isCallerPreservedOrConstPhysReg expects the |
| 243 | // reserved registers to be frozen. That doesn't cause a problem post-ISel as |
| 244 | // most (if not all) targets freeze reserved registers right after ISel. |
| 245 | // |
| 246 | // It does cause issues mid-GlobalISel, however, hence the additional |
| 247 | // reservedRegsFrozen check. |
| 248 | const MachineRegisterInfo &MRI = MF.getRegInfo(); |
| 249 | return TRI.isCallerPreservedPhysReg(Reg, MF) || |
| 250 | (MRI.reservedRegsFrozen() && MRI.isConstantPhysReg(Reg)); |
| 251 | } |
| 252 | |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 253 | /// hasLivePhysRegDefUses - Return true if the specified instruction read/write |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 254 | /// physical registers (except for dead defs of physical registers). It also |
Evan Cheng | 2b4e727 | 2010-06-04 23:28:13 +0000 | [diff] [blame] | 255 | /// returns the physical register def by reference if it's the only one and the |
| 256 | /// instruction does not uses a physical register. |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 257 | bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI, |
| 258 | const MachineBasicBlock *MBB, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 259 | SmallSet<unsigned,8> &PhysRefs, |
Craig Topper | a0ec3f9 | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 260 | SmallVectorImpl<unsigned> &PhysDefs, |
Ulrich Weigand | b64e211 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 261 | bool &PhysUseDef) const{ |
| 262 | // First, add all uses to PhysRefs. |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 263 | for (const MachineOperand &MO : MI->operands()) { |
Ulrich Weigand | b64e211 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 264 | if (!MO.isReg() || MO.isDef()) |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 265 | continue; |
| 266 | unsigned Reg = MO.getReg(); |
| 267 | if (!Reg) |
| 268 | continue; |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 269 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 270 | continue; |
Tony Jiang | 8c81e85 | 2017-11-20 16:55:07 +0000 | [diff] [blame] | 271 | // Reading either caller preserved or constant physregs is ok. |
Roman Tereshin | 315f6cf | 2018-10-20 00:06:15 +0000 | [diff] [blame] | 272 | if (!isCallerPreservedOrConstPhysReg(Reg, *MI->getMF(), *TRI)) |
Benjamin Kramer | 5fa2d45 | 2012-08-11 20:42:59 +0000 | [diff] [blame] | 273 | for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) |
Benjamin Kramer | cfc0ad6 | 2012-08-11 19:05:13 +0000 | [diff] [blame] | 274 | PhysRefs.insert(*AI); |
Ulrich Weigand | b64e211 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | // Next, collect all defs into PhysDefs. If any is already in PhysRefs |
| 278 | // (which currently contains only uses), set the PhysUseDef flag. |
| 279 | PhysUseDef = false; |
Benjamin Kramer | d628f19 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 280 | MachineBasicBlock::const_iterator I = MI; I = std::next(I); |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 281 | for (const MachineOperand &MO : MI->operands()) { |
Ulrich Weigand | b64e211 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 282 | if (!MO.isReg() || !MO.isDef()) |
| 283 | continue; |
| 284 | unsigned Reg = MO.getReg(); |
| 285 | if (!Reg) |
| 286 | continue; |
| 287 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 288 | continue; |
| 289 | // Check against PhysRefs even if the def is "dead". |
| 290 | if (PhysRefs.count(Reg)) |
| 291 | PhysUseDef = true; |
| 292 | // If the def is dead, it's ok. But the def may not marked "dead". That's |
| 293 | // common since this pass is run before livevariables. We can scan |
| 294 | // forward a few instructions and check if it is obviously dead. |
| 295 | if (!MO.isDead() && !isPhysDefTriviallyDead(Reg, I, MBB->end())) |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 296 | PhysDefs.push_back(Reg); |
Evan Cheng | b3958e8 | 2010-03-04 01:33:55 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Ulrich Weigand | b64e211 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 299 | // Finally, add all defs to PhysRefs as well. |
| 300 | for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) |
| 301 | for (MCRegAliasIterator AI(PhysDefs[i], TRI, true); AI.isValid(); ++AI) |
| 302 | PhysRefs.insert(*AI); |
| 303 | |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 304 | return !PhysRefs.empty(); |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 305 | } |
| 306 | |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 307 | bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 308 | SmallSet<unsigned,8> &PhysRefs, |
Craig Topper | a0ec3f9 | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 309 | SmallVectorImpl<unsigned> &PhysDefs, |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 310 | bool &NonLocal) const { |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 311 | // For now conservatively returns false if the common subexpression is |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 312 | // not in the same basic block as the given instruction. The only exception |
| 313 | // is if the common subexpression is in the sole predecessor block. |
| 314 | const MachineBasicBlock *MBB = MI->getParent(); |
| 315 | const MachineBasicBlock *CSMBB = CSMI->getParent(); |
| 316 | |
| 317 | bool CrossMBB = false; |
| 318 | if (CSMBB != MBB) { |
Evan Cheng | f96703e | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 319 | if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB) |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 320 | return false; |
Evan Cheng | f96703e | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 321 | |
| 322 | for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) { |
Jakob Stoklund Olesen | fb9ebbf | 2012-10-15 21:57:41 +0000 | [diff] [blame] | 323 | if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i])) |
Lang Hames | c2e08db | 2012-02-17 00:27:16 +0000 | [diff] [blame] | 324 | // Avoid extending live range of physical registers if they are |
| 325 | //allocatable or reserved. |
Evan Cheng | f96703e | 2012-01-11 00:38:11 +0000 | [diff] [blame] | 326 | return false; |
| 327 | } |
| 328 | CrossMBB = true; |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 329 | } |
Benjamin Kramer | d628f19 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 330 | MachineBasicBlock::const_iterator I = CSMI; I = std::next(I); |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 331 | MachineBasicBlock::const_iterator E = MI; |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 332 | MachineBasicBlock::const_iterator EE = CSMBB->end(); |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 333 | unsigned LookAheadLeft = LookAheadLimit; |
| 334 | while (LookAheadLeft) { |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 335 | // Skip over dbg_value's. |
Shiva Chen | 24abe71 | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 336 | while (I != E && I != EE && I->isDebugInstr()) |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 337 | ++I; |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 338 | |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 339 | if (I == EE) { |
| 340 | assert(CrossMBB && "Reaching end-of-MBB without finding MI?"); |
Duncan Sands | 5b8a1db | 2012-02-05 14:20:11 +0000 | [diff] [blame] | 341 | (void)CrossMBB; |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 342 | CrossMBB = false; |
| 343 | NonLocal = true; |
| 344 | I = MBB->begin(); |
| 345 | EE = MBB->end(); |
| 346 | continue; |
| 347 | } |
| 348 | |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 349 | if (I == E) |
| 350 | return true; |
| 351 | |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 352 | for (const MachineOperand &MO : I->operands()) { |
Jakob Stoklund Olesen | 2129a0f | 2012-02-28 02:08:50 +0000 | [diff] [blame] | 353 | // RegMasks go on instructions like calls that clobber lots of physregs. |
| 354 | // Don't attempt to CSE across such an instruction. |
| 355 | if (MO.isRegMask()) |
| 356 | return false; |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 357 | if (!MO.isReg() || !MO.isDef()) |
| 358 | continue; |
| 359 | unsigned MOReg = MO.getReg(); |
| 360 | if (TargetRegisterInfo::isVirtualRegister(MOReg)) |
| 361 | continue; |
| 362 | if (PhysRefs.count(MOReg)) |
| 363 | return false; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 364 | } |
Eli Friedman | 5e926ac | 2011-05-06 05:23:07 +0000 | [diff] [blame] | 365 | |
| 366 | --LookAheadLeft; |
| 367 | ++I; |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | return false; |
| 371 | } |
| 372 | |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 373 | bool MachineCSE::isCSECandidate(MachineInstr *MI) { |
Rafael Espindola | 7d7d996 | 2014-03-07 06:08:31 +0000 | [diff] [blame] | 374 | if (MI->isPosition() || MI->isPHI() || MI->isImplicitDef() || MI->isKill() || |
Shiva Chen | 24abe71 | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 375 | MI->isInlineAsm() || MI->isDebugInstr()) |
Evan Cheng | 5196018 | 2010-03-08 23:49:12 +0000 | [diff] [blame] | 376 | return false; |
| 377 | |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 378 | // Ignore copies. |
Jakob Stoklund Olesen | 04c528a | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 379 | if (MI->isCopyLike()) |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 380 | return false; |
| 381 | |
| 382 | // Ignore stuff that we obviously can't move. |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 383 | if (MI->mayStore() || MI->isCall() || MI->isTerminator() || |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 384 | MI->hasUnmodeledSideEffects()) |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 385 | return false; |
| 386 | |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 387 | if (MI->mayLoad()) { |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 388 | // Okay, this instruction does a load. As a refinement, we allow the target |
| 389 | // to decide whether the loaded value is actually a constant. If so, we can |
| 390 | // actually use it as a load. |
Justin Lebar | e7555f0 | 2016-09-10 01:03:20 +0000 | [diff] [blame] | 391 | if (!MI->isDereferenceableInvariantLoad(AA)) |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 392 | // FIXME: we should be able to hoist loads with no other side effects if |
| 393 | // there are no other instructions which can change memory in this loop. |
| 394 | // This is a trivial form of alias analysis. |
| 395 | return false; |
| 396 | } |
Tim Shen | e7221e6 | 2016-04-19 19:40:37 +0000 | [diff] [blame] | 397 | |
| 398 | // Ignore stack guard loads, otherwise the register that holds CSEed value may |
| 399 | // be spilled and get loaded back with corrupted data. |
| 400 | if (MI->getOpcode() == TargetOpcode::LOAD_STACK_GUARD) |
| 401 | return false; |
| 402 | |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 403 | return true; |
| 404 | } |
| 405 | |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 406 | /// isProfitableToCSE - Return true if it's profitable to eliminate MI with a |
| 407 | /// common expression that defines Reg. |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 408 | bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg, |
| 409 | MachineInstr *CSMI, MachineInstr *MI) { |
| 410 | // FIXME: Heuristics that works around the lack the live range splitting. |
| 411 | |
Manman Ren | ba86b13 | 2012-08-07 06:16:46 +0000 | [diff] [blame] | 412 | // If CSReg is used at all uses of Reg, CSE should not increase register |
| 413 | // pressure of CSReg. |
| 414 | bool MayIncreasePressure = true; |
| 415 | if (TargetRegisterInfo::isVirtualRegister(CSReg) && |
| 416 | TargetRegisterInfo::isVirtualRegister(Reg)) { |
| 417 | MayIncreasePressure = false; |
| 418 | SmallPtrSet<MachineInstr*, 8> CSUses; |
Owen Anderson | 92fca73 | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 419 | for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) { |
| 420 | CSUses.insert(&MI); |
Manman Ren | ba86b13 | 2012-08-07 06:16:46 +0000 | [diff] [blame] | 421 | } |
Owen Anderson | 92fca73 | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 422 | for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) { |
| 423 | if (!CSUses.count(&MI)) { |
Manman Ren | ba86b13 | 2012-08-07 06:16:46 +0000 | [diff] [blame] | 424 | MayIncreasePressure = true; |
| 425 | break; |
| 426 | } |
| 427 | } |
| 428 | } |
| 429 | if (!MayIncreasePressure) return true; |
| 430 | |
Chris Lattner | 622a11b | 2011-01-10 07:51:31 +0000 | [diff] [blame] | 431 | // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in |
| 432 | // an immediate predecessor. We don't want to increase register pressure and |
| 433 | // end up causing other computation to be spilled. |
Duncan P. N. Exon Smith | 567409d | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 434 | if (TII->isAsCheapAsAMove(*MI)) { |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 435 | MachineBasicBlock *CSBB = CSMI->getParent(); |
| 436 | MachineBasicBlock *BB = MI->getParent(); |
Chris Lattner | 622a11b | 2011-01-10 07:51:31 +0000 | [diff] [blame] | 437 | if (CSBB != BB && !CSBB->isSuccessor(BB)) |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 438 | return false; |
| 439 | } |
| 440 | |
| 441 | // Heuristics #2: If the expression doesn't not use a vr and the only use |
| 442 | // of the redundant computation are copies, do not cse. |
| 443 | bool HasVRegUse = false; |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 444 | for (const MachineOperand &MO : MI->operands()) { |
Jakob Stoklund Olesen | c9df025 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 445 | if (MO.isReg() && MO.isUse() && |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 446 | TargetRegisterInfo::isVirtualRegister(MO.getReg())) { |
| 447 | HasVRegUse = true; |
| 448 | break; |
| 449 | } |
| 450 | } |
| 451 | if (!HasVRegUse) { |
| 452 | bool HasNonCopyUse = false; |
Owen Anderson | 92fca73 | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 453 | for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) { |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 454 | // Ignore copies. |
Owen Anderson | 92fca73 | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 455 | if (!MI.isCopyLike()) { |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 456 | HasNonCopyUse = true; |
| 457 | break; |
| 458 | } |
| 459 | } |
| 460 | if (!HasNonCopyUse) |
| 461 | return false; |
| 462 | } |
| 463 | |
| 464 | // Heuristics #3: If the common subexpression is used by PHIs, do not reuse |
| 465 | // it unless the defined value is already used in the BB of the new use. |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 466 | bool HasPHI = false; |
Michael Zolotukhin | 53458b4 | 2018-05-04 01:40:05 +0000 | [diff] [blame] | 467 | for (MachineInstr &UseMI : MRI->use_nodbg_instructions(CSReg)) { |
| 468 | HasPHI |= UseMI.isPHI(); |
| 469 | if (UseMI.getParent() == MI->getParent()) |
| 470 | return true; |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 471 | } |
| 472 | |
Michael Zolotukhin | 53458b4 | 2018-05-04 01:40:05 +0000 | [diff] [blame] | 473 | return !HasPHI; |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 476 | void MachineCSE::EnterScope(MachineBasicBlock *MBB) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 477 | LLVM_DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n'); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 478 | ScopeType *Scope = new ScopeType(VNT); |
| 479 | ScopeMap[MBB] = Scope; |
| 480 | } |
| 481 | |
| 482 | void MachineCSE::ExitScope(MachineBasicBlock *MBB) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 483 | LLVM_DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n'); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 484 | DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB); |
| 485 | assert(SI != ScopeMap.end()); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 486 | delete SI->second; |
Jakub Staszak | bb8ddc7 | 2012-11-26 22:14:19 +0000 | [diff] [blame] | 487 | ScopeMap.erase(SI); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) { |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 491 | bool Changed = false; |
| 492 | |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 493 | SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs; |
Manman Ren | 39ad568 | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 494 | SmallVector<unsigned, 2> ImplicitDefsToUpdate; |
Ahmed Bougacha | 88d2b58 | 2014-12-02 18:09:51 +0000 | [diff] [blame] | 495 | SmallVector<unsigned, 2> ImplicitDefs; |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 496 | for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) { |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 497 | MachineInstr *MI = &*I; |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 498 | ++I; |
Evan Cheng | a5f32cb | 2010-03-04 21:18:08 +0000 | [diff] [blame] | 499 | |
| 500 | if (!isCSECandidate(MI)) |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 501 | continue; |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 502 | |
| 503 | bool FoundCSE = VNT.count(MI); |
| 504 | if (!FoundCSE) { |
Jiangning Liu | 0679d2d | 2014-08-11 05:17:19 +0000 | [diff] [blame] | 505 | // Using trivial copy propagation to find more CSE opportunities. |
| 506 | if (PerformTrivialCopyPropagation(MI, MBB)) { |
Evan Cheng | cfea985 | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 507 | Changed = true; |
| 508 | |
Evan Cheng | db8771a | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 509 | // After coalescing MI itself may become a copy. |
Jakob Stoklund Olesen | 04c528a | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 510 | if (MI->isCopyLike()) |
Evan Cheng | db8771a | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 511 | continue; |
Jiangning Liu | 0679d2d | 2014-08-11 05:17:19 +0000 | [diff] [blame] | 512 | |
| 513 | // Try again to see if CSE is possible. |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 514 | FoundCSE = VNT.count(MI); |
Evan Cheng | db8771a | 2010-04-02 02:21:24 +0000 | [diff] [blame] | 515 | } |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 516 | } |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 517 | |
| 518 | // Commute commutable instructions. |
| 519 | bool Commuted = false; |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 520 | if (!FoundCSE && MI->isCommutable()) { |
Duncan P. N. Exon Smith | 567409d | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 521 | if (MachineInstr *NewMI = TII->commuteInstruction(*MI)) { |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 522 | Commuted = true; |
| 523 | FoundCSE = VNT.count(NewMI); |
Evan Cheng | cfea985 | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 524 | if (NewMI != MI) { |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 525 | // New instruction. It doesn't need to be kept. |
| 526 | NewMI->eraseFromParent(); |
Evan Cheng | cfea985 | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 527 | Changed = true; |
| 528 | } else if (!FoundCSE) |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 529 | // MI was changed but it didn't help, commute it back! |
Duncan P. N. Exon Smith | 567409d | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 530 | (void)TII->commuteInstruction(*MI); |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 531 | } |
| 532 | } |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 533 | |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 534 | // If the instruction defines physical registers and the values *may* be |
Evan Cheng | 67bda72 | 2010-03-03 23:59:08 +0000 | [diff] [blame] | 535 | // used, then it's not safe to replace it with a common subexpression. |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 536 | // It's also not safe if the instruction uses physical registers. |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 537 | bool CrossMBBPhysDef = false; |
Nick Lewycky | 7a7a6db | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 538 | SmallSet<unsigned, 8> PhysRefs; |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 539 | SmallVector<unsigned, 2> PhysDefs; |
Ulrich Weigand | b64e211 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 540 | bool PhysUseDef = false; |
| 541 | if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs, |
| 542 | PhysDefs, PhysUseDef)) { |
Evan Cheng | 67bda72 | 2010-03-03 23:59:08 +0000 | [diff] [blame] | 543 | FoundCSE = false; |
| 544 | |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 545 | // ... Unless the CS is local or is in the sole predecessor block |
| 546 | // and it also defines the physical register which is not clobbered |
| 547 | // in between and the physical register uses were not clobbered. |
Ulrich Weigand | b64e211 | 2012-11-13 18:40:58 +0000 | [diff] [blame] | 548 | // This can never be the case if the instruction both uses and |
| 549 | // defines the same physical register, which was detected above. |
| 550 | if (!PhysUseDef) { |
| 551 | unsigned CSVN = VNT.lookup(MI); |
| 552 | MachineInstr *CSMI = Exps[CSVN]; |
| 553 | if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef)) |
| 554 | FoundCSE = true; |
| 555 | } |
Evan Cheng | 835810b | 2010-05-21 21:22:19 +0000 | [diff] [blame] | 556 | } |
| 557 | |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 558 | if (!FoundCSE) { |
| 559 | VNT.insert(MI, CurrVN++); |
| 560 | Exps.push_back(MI); |
| 561 | continue; |
| 562 | } |
| 563 | |
| 564 | // Found a common subexpression, eliminate it. |
| 565 | unsigned CSVN = VNT.lookup(MI); |
| 566 | MachineInstr *CSMI = Exps[CSVN]; |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 567 | LLVM_DEBUG(dbgs() << "Examining: " << *MI); |
| 568 | LLVM_DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI); |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 569 | |
| 570 | // Check if it's profitable to perform this CSE. |
| 571 | bool DoCSE = true; |
Roman Tereshin | b1c42de | 2018-06-12 18:30:37 +0000 | [diff] [blame] | 572 | unsigned NumDefs = MI->getNumDefs(); |
Andrew Trick | 86d2896 | 2013-12-16 19:36:18 +0000 | [diff] [blame] | 573 | |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 574 | for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) { |
| 575 | MachineOperand &MO = MI->getOperand(i); |
| 576 | if (!MO.isReg() || !MO.isDef()) |
| 577 | continue; |
| 578 | unsigned OldReg = MO.getReg(); |
| 579 | unsigned NewReg = CSMI->getOperand(i).getReg(); |
Manman Ren | 39ad568 | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 580 | |
| 581 | // Go through implicit defs of CSMI and MI, if a def is not dead at MI, |
| 582 | // we should make sure it is not dead at CSMI. |
| 583 | if (MO.isImplicit() && !MO.isDead() && CSMI->getOperand(i).isDead()) |
| 584 | ImplicitDefsToUpdate.push_back(i); |
Ahmed Bougacha | 88d2b58 | 2014-12-02 18:09:51 +0000 | [diff] [blame] | 585 | |
| 586 | // Keep track of implicit defs of CSMI and MI, to clear possibly |
| 587 | // made-redundant kill flags. |
| 588 | if (MO.isImplicit() && !MO.isDead() && OldReg == NewReg) |
| 589 | ImplicitDefs.push_back(OldReg); |
| 590 | |
Manman Ren | 39ad568 | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 591 | if (OldReg == NewReg) { |
| 592 | --NumDefs; |
Evan Cheng | 6cc1aea | 2010-03-06 01:14:19 +0000 | [diff] [blame] | 593 | continue; |
Manman Ren | 39ad568 | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 594 | } |
Bill Wendling | f6fb7ed | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 595 | |
Evan Cheng | 6cc1aea | 2010-03-06 01:14:19 +0000 | [diff] [blame] | 596 | assert(TargetRegisterInfo::isVirtualRegister(OldReg) && |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 597 | TargetRegisterInfo::isVirtualRegister(NewReg) && |
| 598 | "Do not CSE physical register defs!"); |
Bill Wendling | f6fb7ed | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 599 | |
Evan Cheng | 2938a00 | 2010-03-10 02:12:03 +0000 | [diff] [blame] | 600 | if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 601 | LLVM_DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n"); |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 602 | DoCSE = false; |
| 603 | break; |
| 604 | } |
Bill Wendling | f6fb7ed | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 605 | |
Justin Bogner | 3df0e39 | 2018-01-18 02:06:56 +0000 | [diff] [blame] | 606 | // Don't perform CSE if the result of the new instruction cannot exist |
| 607 | // within the constraints (register class, bank, or low-level type) of |
| 608 | // the old instruction. |
| 609 | if (!MRI->constrainRegAttrs(NewReg, OldReg)) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 610 | LLVM_DEBUG( |
| 611 | dbgs() << "*** Not the same register constraints, avoid CSE!\n"); |
Bill Wendling | f6fb7ed | 2011-10-12 23:03:40 +0000 | [diff] [blame] | 612 | DoCSE = false; |
| 613 | break; |
| 614 | } |
| 615 | |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 616 | CSEPairs.push_back(std::make_pair(OldReg, NewReg)); |
Evan Cheng | 16b48b8 | 2010-03-03 21:20:05 +0000 | [diff] [blame] | 617 | --NumDefs; |
| 618 | } |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 619 | |
| 620 | // Actually perform the elimination. |
| 621 | if (DoCSE) { |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 622 | for (std::pair<unsigned, unsigned> &CSEPair : CSEPairs) { |
| 623 | unsigned OldReg = CSEPair.first; |
| 624 | unsigned NewReg = CSEPair.second; |
Matthias Braun | a602c10 | 2015-02-04 19:35:16 +0000 | [diff] [blame] | 625 | // OldReg may have been unused but is used now, clear the Dead flag |
| 626 | MachineInstr *Def = MRI->getUniqueVRegDef(NewReg); |
| 627 | assert(Def != nullptr && "CSEd register has no unique definition?"); |
| 628 | Def->clearRegisterDeads(NewReg); |
| 629 | // Replace with NewReg and clear kill flags which may be wrong now. |
| 630 | MRI->replaceRegWith(OldReg, NewReg); |
| 631 | MRI->clearKillFlags(NewReg); |
Dan Gohman | 49b4589 | 2010-05-13 19:24:00 +0000 | [diff] [blame] | 632 | } |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 633 | |
Manman Ren | 39ad568 | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 634 | // Go through implicit defs of CSMI and MI, if a def is not dead at MI, |
| 635 | // we should make sure it is not dead at CSMI. |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 636 | for (unsigned ImplicitDefToUpdate : ImplicitDefsToUpdate) |
| 637 | CSMI->getOperand(ImplicitDefToUpdate).setIsDead(false); |
Manman Ren | 39ad568 | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 638 | |
Ahmed Bougacha | 88d2b58 | 2014-12-02 18:09:51 +0000 | [diff] [blame] | 639 | // Go through implicit defs of CSMI and MI, and clear the kill flags on |
| 640 | // their uses in all the instructions between CSMI and MI. |
| 641 | // We might have made some of the kill flags redundant, consider: |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 642 | // subs ... implicit-def %nzcv <- CSMI |
| 643 | // csinc ... implicit killed %nzcv <- this kill flag isn't valid anymore |
| 644 | // subs ... implicit-def %nzcv <- MI, to be eliminated |
| 645 | // csinc ... implicit killed %nzcv |
Ahmed Bougacha | 88d2b58 | 2014-12-02 18:09:51 +0000 | [diff] [blame] | 646 | // Since we eliminated MI, and reused a register imp-def'd by CSMI |
Francis Visoiu Mistrih | a4ec08b | 2017-11-28 17:15:09 +0000 | [diff] [blame] | 647 | // (here %nzcv), that register, if it was killed before MI, should have |
Ahmed Bougacha | 88d2b58 | 2014-12-02 18:09:51 +0000 | [diff] [blame] | 648 | // that kill flag removed, because it's lifetime was extended. |
| 649 | if (CSMI->getParent() == MI->getParent()) { |
| 650 | for (MachineBasicBlock::iterator II = CSMI, IE = MI; II != IE; ++II) |
| 651 | for (auto ImplicitDef : ImplicitDefs) |
| 652 | if (MachineOperand *MO = II->findRegisterUseOperand( |
| 653 | ImplicitDef, /*isKill=*/true, TRI)) |
| 654 | MO->setIsKill(false); |
| 655 | } else { |
| 656 | // If the instructions aren't in the same BB, bail out and clear the |
| 657 | // kill flag on all uses of the imp-def'd register. |
| 658 | for (auto ImplicitDef : ImplicitDefs) |
| 659 | MRI->clearKillFlags(ImplicitDef); |
| 660 | } |
| 661 | |
Evan Cheng | 97b5beb | 2012-01-10 02:02:58 +0000 | [diff] [blame] | 662 | if (CrossMBBPhysDef) { |
| 663 | // Add physical register defs now coming in from a predecessor to MBB |
| 664 | // livein list. |
| 665 | while (!PhysDefs.empty()) { |
| 666 | unsigned LiveIn = PhysDefs.pop_back_val(); |
| 667 | if (!MBB->isLiveIn(LiveIn)) |
| 668 | MBB->addLiveIn(LiveIn); |
| 669 | } |
| 670 | ++NumCrossBBCSEs; |
| 671 | } |
| 672 | |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 673 | MI->eraseFromParent(); |
| 674 | ++NumCSEs; |
Evan Cheng | 189c1ec | 2010-10-29 23:36:03 +0000 | [diff] [blame] | 675 | if (!PhysRefs.empty()) |
Evan Cheng | 2b4e727 | 2010-06-04 23:28:13 +0000 | [diff] [blame] | 676 | ++NumPhysCSEs; |
Evan Cheng | a63cde2 | 2010-12-15 22:16:21 +0000 | [diff] [blame] | 677 | if (Commuted) |
| 678 | ++NumCommutes; |
Evan Cheng | cfea985 | 2011-04-11 18:47:20 +0000 | [diff] [blame] | 679 | Changed = true; |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 680 | } else { |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 681 | VNT.insert(MI, CurrVN++); |
| 682 | Exps.push_back(MI); |
| 683 | } |
| 684 | CSEPairs.clear(); |
Manman Ren | 39ad568 | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 685 | ImplicitDefsToUpdate.clear(); |
Ahmed Bougacha | 88d2b58 | 2014-12-02 18:09:51 +0000 | [diff] [blame] | 686 | ImplicitDefs.clear(); |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 687 | } |
| 688 | |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 689 | return Changed; |
| 690 | } |
| 691 | |
| 692 | /// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given |
| 693 | /// dominator tree node if its a leaf or all of its children are done. Walk |
| 694 | /// up the dominator tree to destroy ancestors which are now done. |
| 695 | void |
| 696 | MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node, |
Nick Lewycky | 7a7a6db | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 697 | DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren) { |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 698 | if (OpenChildren[Node]) |
| 699 | return; |
| 700 | |
| 701 | // Pop scope. |
| 702 | ExitScope(Node->getBlock()); |
| 703 | |
| 704 | // Now traverse upwards to pop ancestors whose offsprings are all done. |
Nick Lewycky | 7a7a6db | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 705 | while (MachineDomTreeNode *Parent = Node->getIDom()) { |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 706 | unsigned Left = --OpenChildren[Parent]; |
| 707 | if (Left != 0) |
| 708 | break; |
| 709 | ExitScope(Parent->getBlock()); |
| 710 | Node = Parent; |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) { |
| 715 | SmallVector<MachineDomTreeNode*, 32> Scopes; |
| 716 | SmallVector<MachineDomTreeNode*, 8> WorkList; |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 717 | DenseMap<MachineDomTreeNode*, unsigned> OpenChildren; |
| 718 | |
Evan Cheng | c2b768f | 2010-09-17 21:59:42 +0000 | [diff] [blame] | 719 | CurrVN = 0; |
| 720 | |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 721 | // Perform a DFS walk to determine the order of visit. |
| 722 | WorkList.push_back(Node); |
| 723 | do { |
| 724 | Node = WorkList.pop_back_val(); |
| 725 | Scopes.push_back(Node); |
| 726 | const std::vector<MachineDomTreeNode*> &Children = Node->getChildren(); |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 727 | OpenChildren[Node] = Children.size(); |
| 728 | for (MachineDomTreeNode *Child : Children) |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 729 | WorkList.push_back(Child); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 730 | } while (!WorkList.empty()); |
| 731 | |
| 732 | // Now perform CSE. |
| 733 | bool Changed = false; |
Sanjay Patel | f4e4e5e | 2016-01-06 00:45:42 +0000 | [diff] [blame] | 734 | for (MachineDomTreeNode *Node : Scopes) { |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 735 | MachineBasicBlock *MBB = Node->getBlock(); |
| 736 | EnterScope(MBB); |
| 737 | Changed |= ProcessBlock(MBB); |
| 738 | // If it's a leaf node, it's done. Traverse upwards to pop ancestors. |
Nick Lewycky | 7a7a6db | 2012-07-05 06:19:21 +0000 | [diff] [blame] | 739 | ExitScopeIfDone(Node, OpenChildren); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 740 | } |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 741 | |
| 742 | return Changed; |
| 743 | } |
| 744 | |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 745 | bool MachineCSE::runOnMachineFunction(MachineFunction &MF) { |
Matthias Braun | d318139 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 746 | if (skipFunction(MF.getFunction())) |
Paul Robinson | 5fa58a5 | 2014-03-31 17:43:35 +0000 | [diff] [blame] | 747 | return false; |
| 748 | |
Eric Christopher | 6035518 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 749 | TII = MF.getSubtarget().getInstrInfo(); |
| 750 | TRI = MF.getSubtarget().getRegisterInfo(); |
Evan Cheng | 6ba9554 | 2010-03-03 02:48:20 +0000 | [diff] [blame] | 751 | MRI = &MF.getRegInfo(); |
Chandler Carruth | 9146833 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 752 | AA = &getAnalysis<AAResultsWrapperPass>().getAAResults(); |
Evan Cheng | 31f94c7 | 2010-03-09 03:21:12 +0000 | [diff] [blame] | 753 | DT = &getAnalysis<MachineDominatorTree>(); |
Tom Stellard | 7d66bd3 | 2015-05-09 00:56:07 +0000 | [diff] [blame] | 754 | LookAheadLimit = TII->getMachineCSELookAheadLimit(); |
Evan Cheng | 3115698 | 2010-04-21 00:21:07 +0000 | [diff] [blame] | 755 | return PerformCSE(DT->getRootNode()); |
Evan Cheng | c6fe333 | 2010-03-02 02:38:24 +0000 | [diff] [blame] | 756 | } |