blob: b8283eaf9e2a93bd2fca978c26505331904582cd [file] [log] [blame]
Evan Cheng036aa492010-03-02 02:38:24 +00001//===-- MachineCSE.cpp - Machine Common Subexpression Elimination Pass ----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass performs global common subexpression elimination on machine
Evan Cheng10194a42010-03-02 19:02:27 +000011// instructions using a scoped hash table based value numbering scheme. It
Evan Cheng036aa492010-03-02 02:38:24 +000012// must be run while the machine function is still in SSA form.
13//
14//===----------------------------------------------------------------------===//
15
Evan Cheng036aa492010-03-02 02:38:24 +000016#include "llvm/CodeGen/Passes.h"
Evan Cheng4b2ef562010-04-21 00:21:07 +000017#include "llvm/ADT/DenseMap.h"
Evan Cheng036aa492010-03-02 02:38:24 +000018#include "llvm/ADT/ScopedHashTable.h"
Evan Cheng2b3f25e2010-10-29 23:36:03 +000019#include "llvm/ADT/SmallSet.h"
Evan Cheng036aa492010-03-02 02:38:24 +000020#include "llvm/ADT/Statistic.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/Analysis/AliasAnalysis.h"
22#include "llvm/CodeGen/MachineDominators.h"
23#include "llvm/CodeGen/MachineInstr.h"
24#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng036aa492010-03-02 02:38:24 +000025#include "llvm/Support/Debug.h"
Cameron Zwarich18f164f2011-01-03 04:07:46 +000026#include "llvm/Support/RecyclingAllocator.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000027#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000028#include "llvm/Target/TargetInstrInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000029#include "llvm/Target/TargetSubtargetInfo.h"
Evan Cheng036aa492010-03-02 02:38:24 +000030using namespace llvm;
31
Chandler Carruth1b9dde02014-04-22 02:02:50 +000032#define DEBUG_TYPE "machine-cse"
33
Evan Chengb386cd32010-03-03 21:20:05 +000034STATISTIC(NumCoalesces, "Number of copies coalesced");
35STATISTIC(NumCSEs, "Number of common subexpression eliminated");
Evan Cheng2b3f25e2010-10-29 23:36:03 +000036STATISTIC(NumPhysCSEs,
37 "Number of physreg referencing common subexpr eliminated");
Evan Cheng0be41442012-01-10 02:02:58 +000038STATISTIC(NumCrossBBCSEs,
39 "Number of cross-MBB physreg referencing CS eliminated");
Evan Chengb7ff5a02010-12-15 22:16:21 +000040STATISTIC(NumCommutes, "Number of copies coalesced after commuting");
Bob Wilson30093b52010-06-03 18:28:31 +000041
Evan Cheng036aa492010-03-02 02:38:24 +000042namespace {
43 class MachineCSE : public MachineFunctionPass {
Evan Cheng4eab0082010-03-03 02:48:20 +000044 const TargetInstrInfo *TII;
Evan Cheng36f8aab2010-03-04 01:33:55 +000045 const TargetRegisterInfo *TRI;
Evan Cheng1abd1a92010-03-04 21:18:08 +000046 AliasAnalysis *AA;
Evan Cheng19e44b42010-03-09 03:21:12 +000047 MachineDominatorTree *DT;
48 MachineRegisterInfo *MRI;
Evan Cheng036aa492010-03-02 02:38:24 +000049 public:
50 static char ID; // Pass identification
Tom Stellardf01af292015-05-09 00:56:07 +000051 MachineCSE() : MachineFunctionPass(ID), LookAheadLimit(0), CurrVN(0) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +000052 initializeMachineCSEPass(*PassRegistry::getPassRegistry());
53 }
Evan Cheng036aa492010-03-02 02:38:24 +000054
Craig Topper4584cd52014-03-07 09:26:03 +000055 bool runOnMachineFunction(MachineFunction &MF) override;
Andrew Trick9e761992012-02-08 21:22:43 +000056
Craig Topper4584cd52014-03-07 09:26:03 +000057 void getAnalysisUsage(AnalysisUsage &AU) const override {
Evan Cheng036aa492010-03-02 02:38:24 +000058 AU.setPreservesCFG();
59 MachineFunctionPass::getAnalysisUsage(AU);
Chandler Carruth7b560d42015-09-09 17:55:00 +000060 AU.addRequired<AAResultsWrapperPass>();
Evan Chenge0db9d02010-08-17 20:57:42 +000061 AU.addPreservedID(MachineLoopInfoID);
Evan Cheng036aa492010-03-02 02:38:24 +000062 AU.addRequired<MachineDominatorTree>();
63 AU.addPreserved<MachineDominatorTree>();
64 }
65
Craig Topper4584cd52014-03-07 09:26:03 +000066 void releaseMemory() override {
Evan Chengb08377e2010-09-17 21:59:42 +000067 ScopeMap.clear();
68 Exps.clear();
69 }
70
Evan Cheng036aa492010-03-02 02:38:24 +000071 private:
Tom Stellardf01af292015-05-09 00:56:07 +000072 unsigned LookAheadLimit;
Cameron Zwarich18f164f2011-01-03 04:07:46 +000073 typedef RecyclingAllocator<BumpPtrAllocator,
74 ScopedHashTableVal<MachineInstr*, unsigned> > AllocatorTy;
75 typedef ScopedHashTable<MachineInstr*, unsigned,
76 MachineInstrExpressionTrait, AllocatorTy> ScopedHTType;
77 typedef ScopedHTType::ScopeTy ScopeType;
Evan Cheng4b2ef562010-04-21 00:21:07 +000078 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
Cameron Zwarich18f164f2011-01-03 04:07:46 +000079 ScopedHTType VNT;
Evan Chengb386cd32010-03-03 21:20:05 +000080 SmallVector<MachineInstr*, 64> Exps;
Evan Cheng4b2ef562010-04-21 00:21:07 +000081 unsigned CurrVN;
Evan Chengb386cd32010-03-03 21:20:05 +000082
Jiangning Liudd6e12d2014-08-11 05:17:19 +000083 bool PerformTrivialCopyPropagation(MachineInstr *MI,
84 MachineBasicBlock *MBB);
Evan Cheng36f8aab2010-03-04 01:33:55 +000085 bool isPhysDefTriviallyDead(unsigned Reg,
86 MachineBasicBlock::const_iterator I,
Nick Lewycky765c6992012-07-05 06:19:21 +000087 MachineBasicBlock::const_iterator E) const;
Evan Cheng2b3f25e2010-10-29 23:36:03 +000088 bool hasLivePhysRegDefUses(const MachineInstr *MI,
89 const MachineBasicBlock *MBB,
Evan Cheng0be41442012-01-10 02:02:58 +000090 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +000091 SmallVectorImpl<unsigned> &PhysDefs,
Ulrich Weigand39468772012-11-13 18:40:58 +000092 bool &PhysUseDef) const;
Evan Cheng2b3f25e2010-10-29 23:36:03 +000093 bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng0be41442012-01-10 02:02:58 +000094 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +000095 SmallVectorImpl<unsigned> &PhysDefs,
Evan Cheng0be41442012-01-10 02:02:58 +000096 bool &NonLocal) const;
Evan Cheng1abd1a92010-03-04 21:18:08 +000097 bool isCSECandidate(MachineInstr *MI);
Evan Cheng4c5f7a72010-03-10 02:12:03 +000098 bool isProfitableToCSE(unsigned CSReg, unsigned Reg,
99 MachineInstr *CSMI, MachineInstr *MI);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000100 void EnterScope(MachineBasicBlock *MBB);
101 void ExitScope(MachineBasicBlock *MBB);
102 bool ProcessBlock(MachineBasicBlock *MBB);
103 void ExitScopeIfDone(MachineDomTreeNode *Node,
Bill Wendlingd1634052012-07-19 00:04:14 +0000104 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000105 bool PerformCSE(MachineDomTreeNode *Node);
Evan Cheng036aa492010-03-02 02:38:24 +0000106 };
107} // end anonymous namespace
108
109char MachineCSE::ID = 0;
Andrew Trick1fa5bcb2012-02-08 21:23:13 +0000110char &llvm::MachineCSEID = MachineCSE::ID;
Owen Anderson8ac477f2010-10-12 19:48:12 +0000111INITIALIZE_PASS_BEGIN(MachineCSE, "machine-cse",
112 "Machine Common Subexpression Elimination", false, false)
113INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000114INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000115INITIALIZE_PASS_END(MachineCSE, "machine-cse",
Owen Andersondf7a4f22010-10-07 22:25:06 +0000116 "Machine Common Subexpression Elimination", false, false)
Evan Cheng036aa492010-03-02 02:38:24 +0000117
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000118/// The source register of a COPY machine instruction can be propagated to all
119/// its users, and this propagation could increase the probability of finding
120/// common subexpressions. If the COPY has only one user, the COPY itself can
121/// be removed.
122bool MachineCSE::PerformTrivialCopyPropagation(MachineInstr *MI,
123 MachineBasicBlock *MBB) {
Evan Cheng4eab0082010-03-03 02:48:20 +0000124 bool Changed = false;
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000125 for (MachineOperand &MO : MI->operands()) {
Evan Chengb386cd32010-03-03 21:20:05 +0000126 if (!MO.isReg() || !MO.isUse())
127 continue;
128 unsigned Reg = MO.getReg();
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +0000129 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Chengb386cd32010-03-03 21:20:05 +0000130 continue;
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000131 bool OnlyOneUse = MRI->hasOneNonDBGUse(Reg);
Evan Chengb386cd32010-03-03 21:20:05 +0000132 MachineInstr *DefMI = MRI->getVRegDef(Reg);
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000133 if (!DefMI->isCopy())
134 continue;
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000135 unsigned SrcReg = DefMI->getOperand(1).getReg();
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000136 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
137 continue;
Andrew Tricke3398282013-12-17 04:50:45 +0000138 if (DefMI->getOperand(0).getSubReg())
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000139 continue;
Andrew Tricke4083f92013-12-17 19:29:36 +0000140 // FIXME: We should trivially coalesce subregister copies to expose CSE
141 // opportunities on instructions with truncated operands (see
142 // cse-add-with-overflow.ll). This can be done here as follows:
143 // if (SrcSubReg)
144 // RC = TRI->getMatchingSuperRegClass(MRI->getRegClass(SrcReg), RC,
145 // SrcSubReg);
146 // MO.substVirtReg(SrcReg, SrcSubReg, *TRI);
147 //
148 // The 2-addr pass has been updated to handle coalesced subregs. However,
149 // some machine-specific code still can't handle it.
150 // To handle it properly we also need a way find a constrained subregister
151 // class given a super-reg class and subreg index.
152 if (DefMI->getOperand(1).getSubReg())
153 continue;
Andrew Tricke3398282013-12-17 04:50:45 +0000154 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
Andrew Tricke3398282013-12-17 04:50:45 +0000155 if (!MRI->constrainRegClass(SrcReg, RC))
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000156 continue;
157 DEBUG(dbgs() << "Coalescing: " << *DefMI);
Jakob Stoklund Olesen18842782010-10-06 23:54:39 +0000158 DEBUG(dbgs() << "*** to: " << *MI);
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000159 // Propagate SrcReg of copies to MI.
Andrew Tricke4083f92013-12-17 19:29:36 +0000160 MO.setReg(SrcReg);
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000161 MRI->clearKillFlags(SrcReg);
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000162 // Coalesce single use copies.
163 if (OnlyOneUse) {
164 DefMI->eraseFromParent();
165 ++NumCoalesces;
166 }
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000167 Changed = true;
Evan Cheng4eab0082010-03-03 02:48:20 +0000168 }
169
170 return Changed;
171}
172
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000173bool
174MachineCSE::isPhysDefTriviallyDead(unsigned Reg,
175 MachineBasicBlock::const_iterator I,
176 MachineBasicBlock::const_iterator E) const {
Eric Christopher53ff9922010-05-21 23:40:03 +0000177 unsigned LookAheadLeft = LookAheadLimit;
Evan Chengc7d721a2010-03-23 20:33:48 +0000178 while (LookAheadLeft) {
Evan Chengcf7be392010-03-24 01:50:28 +0000179 // Skip over dbg_value's.
180 while (I != E && I->isDebugValue())
181 ++I;
182
Evan Cheng36f8aab2010-03-04 01:33:55 +0000183 if (I == E)
184 // Reached end of block, register is obviously dead.
185 return true;
186
Evan Cheng36f8aab2010-03-04 01:33:55 +0000187 bool SeenDef = false;
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000188 for (const MachineOperand &MO : I->operands()) {
Jakob Stoklund Olesen4c5ad2b2012-02-28 02:08:50 +0000189 if (MO.isRegMask() && MO.clobbersPhysReg(Reg))
190 SeenDef = true;
Evan Cheng36f8aab2010-03-04 01:33:55 +0000191 if (!MO.isReg() || !MO.getReg())
192 continue;
193 if (!TRI->regsOverlap(MO.getReg(), Reg))
194 continue;
195 if (MO.isUse())
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000196 // Found a use!
Evan Cheng36f8aab2010-03-04 01:33:55 +0000197 return false;
198 SeenDef = true;
199 }
200 if (SeenDef)
Andrew Trick9e761992012-02-08 21:22:43 +0000201 // See a def of Reg (or an alias) before encountering any use, it's
Evan Cheng36f8aab2010-03-04 01:33:55 +0000202 // trivially dead.
203 return true;
Evan Chengc7d721a2010-03-23 20:33:48 +0000204
205 --LookAheadLeft;
Evan Cheng36f8aab2010-03-04 01:33:55 +0000206 ++I;
207 }
208 return false;
209}
210
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000211/// hasLivePhysRegDefUses - Return true if the specified instruction read/write
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000212/// physical registers (except for dead defs of physical registers). It also
Evan Chenga03e6f82010-06-04 23:28:13 +0000213/// returns the physical register def by reference if it's the only one and the
214/// instruction does not uses a physical register.
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000215bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI,
216 const MachineBasicBlock *MBB,
Evan Cheng0be41442012-01-10 02:02:58 +0000217 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +0000218 SmallVectorImpl<unsigned> &PhysDefs,
Ulrich Weigand39468772012-11-13 18:40:58 +0000219 bool &PhysUseDef) const{
220 // First, add all uses to PhysRefs.
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000221 for (const MachineOperand &MO : MI->operands()) {
Ulrich Weigand39468772012-11-13 18:40:58 +0000222 if (!MO.isReg() || MO.isDef())
Evan Cheng4eab0082010-03-03 02:48:20 +0000223 continue;
224 unsigned Reg = MO.getReg();
225 if (!Reg)
226 continue;
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000227 if (TargetRegisterInfo::isVirtualRegister(Reg))
228 continue;
Benjamin Kramer59c8b412012-08-11 20:42:59 +0000229 // Reading constant physregs is ok.
230 if (!MRI->isConstantPhysReg(Reg, *MBB->getParent()))
231 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
Benjamin Krameref6494f2012-08-11 19:05:13 +0000232 PhysRefs.insert(*AI);
Ulrich Weigand39468772012-11-13 18:40:58 +0000233 }
234
235 // Next, collect all defs into PhysDefs. If any is already in PhysRefs
236 // (which currently contains only uses), set the PhysUseDef flag.
237 PhysUseDef = false;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000238 MachineBasicBlock::const_iterator I = MI; I = std::next(I);
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000239 for (const MachineOperand &MO : MI->operands()) {
Ulrich Weigand39468772012-11-13 18:40:58 +0000240 if (!MO.isReg() || !MO.isDef())
241 continue;
242 unsigned Reg = MO.getReg();
243 if (!Reg)
244 continue;
245 if (TargetRegisterInfo::isVirtualRegister(Reg))
246 continue;
247 // Check against PhysRefs even if the def is "dead".
248 if (PhysRefs.count(Reg))
249 PhysUseDef = true;
250 // If the def is dead, it's ok. But the def may not marked "dead". That's
251 // common since this pass is run before livevariables. We can scan
252 // forward a few instructions and check if it is obviously dead.
253 if (!MO.isDead() && !isPhysDefTriviallyDead(Reg, I, MBB->end()))
Evan Cheng0be41442012-01-10 02:02:58 +0000254 PhysDefs.push_back(Reg);
Evan Cheng36f8aab2010-03-04 01:33:55 +0000255 }
256
Ulrich Weigand39468772012-11-13 18:40:58 +0000257 // Finally, add all defs to PhysRefs as well.
258 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i)
259 for (MCRegAliasIterator AI(PhysDefs[i], TRI, true); AI.isValid(); ++AI)
260 PhysRefs.insert(*AI);
261
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000262 return !PhysRefs.empty();
Evan Cheng036aa492010-03-02 02:38:24 +0000263}
264
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000265bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng0be41442012-01-10 02:02:58 +0000266 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +0000267 SmallVectorImpl<unsigned> &PhysDefs,
Evan Cheng0be41442012-01-10 02:02:58 +0000268 bool &NonLocal) const {
Eli Friedman54019622011-05-06 05:23:07 +0000269 // For now conservatively returns false if the common subexpression is
Evan Cheng0be41442012-01-10 02:02:58 +0000270 // not in the same basic block as the given instruction. The only exception
271 // is if the common subexpression is in the sole predecessor block.
272 const MachineBasicBlock *MBB = MI->getParent();
273 const MachineBasicBlock *CSMBB = CSMI->getParent();
274
275 bool CrossMBB = false;
276 if (CSMBB != MBB) {
Evan Chengd9725a32012-01-11 00:38:11 +0000277 if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB)
Evan Cheng0be41442012-01-10 02:02:58 +0000278 return false;
Evan Chengd9725a32012-01-11 00:38:11 +0000279
280 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) {
Jakob Stoklund Olesenc30a9af2012-10-15 21:57:41 +0000281 if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i]))
Lang Hames5bade3d2012-02-17 00:27:16 +0000282 // Avoid extending live range of physical registers if they are
283 //allocatable or reserved.
Evan Chengd9725a32012-01-11 00:38:11 +0000284 return false;
285 }
286 CrossMBB = true;
Evan Cheng0be41442012-01-10 02:02:58 +0000287 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000288 MachineBasicBlock::const_iterator I = CSMI; I = std::next(I);
Eli Friedman54019622011-05-06 05:23:07 +0000289 MachineBasicBlock::const_iterator E = MI;
Evan Cheng0be41442012-01-10 02:02:58 +0000290 MachineBasicBlock::const_iterator EE = CSMBB->end();
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000291 unsigned LookAheadLeft = LookAheadLimit;
292 while (LookAheadLeft) {
Eli Friedman54019622011-05-06 05:23:07 +0000293 // Skip over dbg_value's.
Evan Cheng0be41442012-01-10 02:02:58 +0000294 while (I != E && I != EE && I->isDebugValue())
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000295 ++I;
Eli Friedman54019622011-05-06 05:23:07 +0000296
Evan Cheng0be41442012-01-10 02:02:58 +0000297 if (I == EE) {
298 assert(CrossMBB && "Reaching end-of-MBB without finding MI?");
Duncan Sandsae22c602012-02-05 14:20:11 +0000299 (void)CrossMBB;
Evan Cheng0be41442012-01-10 02:02:58 +0000300 CrossMBB = false;
301 NonLocal = true;
302 I = MBB->begin();
303 EE = MBB->end();
304 continue;
305 }
306
Eli Friedman54019622011-05-06 05:23:07 +0000307 if (I == E)
308 return true;
309
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000310 for (const MachineOperand &MO : I->operands()) {
Jakob Stoklund Olesen4c5ad2b2012-02-28 02:08:50 +0000311 // RegMasks go on instructions like calls that clobber lots of physregs.
312 // Don't attempt to CSE across such an instruction.
313 if (MO.isRegMask())
314 return false;
Eli Friedman54019622011-05-06 05:23:07 +0000315 if (!MO.isReg() || !MO.isDef())
316 continue;
317 unsigned MOReg = MO.getReg();
318 if (TargetRegisterInfo::isVirtualRegister(MOReg))
319 continue;
320 if (PhysRefs.count(MOReg))
321 return false;
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000322 }
Eli Friedman54019622011-05-06 05:23:07 +0000323
324 --LookAheadLeft;
325 ++I;
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000326 }
327
328 return false;
329}
330
Evan Cheng1abd1a92010-03-04 21:18:08 +0000331bool MachineCSE::isCSECandidate(MachineInstr *MI) {
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000332 if (MI->isPosition() || MI->isPHI() || MI->isImplicitDef() || MI->isKill() ||
333 MI->isInlineAsm() || MI->isDebugValue())
Evan Chengc9e86212010-03-08 23:49:12 +0000334 return false;
335
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000336 // Ignore copies.
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000337 if (MI->isCopyLike())
Evan Cheng1abd1a92010-03-04 21:18:08 +0000338 return false;
339
340 // Ignore stuff that we obviously can't move.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000341 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
Evan Cheng6eb516d2011-01-07 23:50:32 +0000342 MI->hasUnmodeledSideEffects())
Evan Cheng1abd1a92010-03-04 21:18:08 +0000343 return false;
344
Evan Cheng7f8e5632011-12-07 07:15:52 +0000345 if (MI->mayLoad()) {
Evan Cheng1abd1a92010-03-04 21:18:08 +0000346 // Okay, this instruction does a load. As a refinement, we allow the target
347 // to decide whether the loaded value is actually a constant. If so, we can
348 // actually use it as a load.
349 if (!MI->isInvariantLoad(AA))
350 // FIXME: we should be able to hoist loads with no other side effects if
351 // there are no other instructions which can change memory in this loop.
352 // This is a trivial form of alias analysis.
353 return false;
354 }
Tim Shene885d5e2016-04-19 19:40:37 +0000355
356 // Ignore stack guard loads, otherwise the register that holds CSEed value may
357 // be spilled and get loaded back with corrupted data.
358 if (MI->getOpcode() == TargetOpcode::LOAD_STACK_GUARD)
359 return false;
360
Evan Cheng1abd1a92010-03-04 21:18:08 +0000361 return true;
362}
363
Evan Cheng19e44b42010-03-09 03:21:12 +0000364/// isProfitableToCSE - Return true if it's profitable to eliminate MI with a
365/// common expression that defines Reg.
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000366bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg,
367 MachineInstr *CSMI, MachineInstr *MI) {
368 // FIXME: Heuristics that works around the lack the live range splitting.
369
Manman Rencb36b8c2012-08-07 06:16:46 +0000370 // If CSReg is used at all uses of Reg, CSE should not increase register
371 // pressure of CSReg.
372 bool MayIncreasePressure = true;
373 if (TargetRegisterInfo::isVirtualRegister(CSReg) &&
374 TargetRegisterInfo::isVirtualRegister(Reg)) {
375 MayIncreasePressure = false;
376 SmallPtrSet<MachineInstr*, 8> CSUses;
Owen Andersonb36376e2014-03-17 19:36:09 +0000377 for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) {
378 CSUses.insert(&MI);
Manman Rencb36b8c2012-08-07 06:16:46 +0000379 }
Owen Andersonb36376e2014-03-17 19:36:09 +0000380 for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) {
381 if (!CSUses.count(&MI)) {
Manman Rencb36b8c2012-08-07 06:16:46 +0000382 MayIncreasePressure = true;
383 break;
384 }
385 }
386 }
387 if (!MayIncreasePressure) return true;
388
Chris Lattner6c8b8dd2011-01-10 07:51:31 +0000389 // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in
390 // an immediate predecessor. We don't want to increase register pressure and
391 // end up causing other computation to be spilled.
Jiangning Liuc3053122014-07-29 01:55:19 +0000392 if (TII->isAsCheapAsAMove(MI)) {
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000393 MachineBasicBlock *CSBB = CSMI->getParent();
394 MachineBasicBlock *BB = MI->getParent();
Chris Lattner6c8b8dd2011-01-10 07:51:31 +0000395 if (CSBB != BB && !CSBB->isSuccessor(BB))
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000396 return false;
397 }
398
399 // Heuristics #2: If the expression doesn't not use a vr and the only use
400 // of the redundant computation are copies, do not cse.
401 bool HasVRegUse = false;
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000402 for (const MachineOperand &MO : MI->operands()) {
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +0000403 if (MO.isReg() && MO.isUse() &&
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000404 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
405 HasVRegUse = true;
406 break;
407 }
408 }
409 if (!HasVRegUse) {
410 bool HasNonCopyUse = false;
Owen Andersonb36376e2014-03-17 19:36:09 +0000411 for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) {
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000412 // Ignore copies.
Owen Andersonb36376e2014-03-17 19:36:09 +0000413 if (!MI.isCopyLike()) {
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000414 HasNonCopyUse = true;
415 break;
416 }
417 }
418 if (!HasNonCopyUse)
419 return false;
420 }
421
422 // Heuristics #3: If the common subexpression is used by PHIs, do not reuse
423 // it unless the defined value is already used in the BB of the new use.
Evan Cheng19e44b42010-03-09 03:21:12 +0000424 bool HasPHI = false;
425 SmallPtrSet<MachineBasicBlock*, 4> CSBBs;
Owen Andersonb36376e2014-03-17 19:36:09 +0000426 for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) {
427 HasPHI |= MI.isPHI();
428 CSBBs.insert(MI.getParent());
Evan Cheng19e44b42010-03-09 03:21:12 +0000429 }
430
431 if (!HasPHI)
432 return true;
433 return CSBBs.count(MI->getParent());
434}
435
Evan Cheng4b2ef562010-04-21 00:21:07 +0000436void MachineCSE::EnterScope(MachineBasicBlock *MBB) {
437 DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n');
438 ScopeType *Scope = new ScopeType(VNT);
439 ScopeMap[MBB] = Scope;
440}
441
442void MachineCSE::ExitScope(MachineBasicBlock *MBB) {
443 DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n');
444 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
445 assert(SI != ScopeMap.end());
Evan Cheng4b2ef562010-04-21 00:21:07 +0000446 delete SI->second;
Jakub Staszakf18753b2012-11-26 22:14:19 +0000447 ScopeMap.erase(SI);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000448}
449
450bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) {
Evan Cheng4eab0082010-03-03 02:48:20 +0000451 bool Changed = false;
452
Evan Cheng19e44b42010-03-09 03:21:12 +0000453 SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs;
Manman Ren1be131b2012-08-08 00:51:41 +0000454 SmallVector<unsigned, 2> ImplicitDefsToUpdate;
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000455 SmallVector<unsigned, 2> ImplicitDefs;
Evan Chengb386cd32010-03-03 21:20:05 +0000456 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) {
Evan Cheng4eab0082010-03-03 02:48:20 +0000457 MachineInstr *MI = &*I;
Evan Chengb386cd32010-03-03 21:20:05 +0000458 ++I;
Evan Cheng1abd1a92010-03-04 21:18:08 +0000459
460 if (!isCSECandidate(MI))
Evan Cheng4eab0082010-03-03 02:48:20 +0000461 continue;
Evan Cheng4eab0082010-03-03 02:48:20 +0000462
463 bool FoundCSE = VNT.count(MI);
464 if (!FoundCSE) {
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000465 // Using trivial copy propagation to find more CSE opportunities.
466 if (PerformTrivialCopyPropagation(MI, MBB)) {
Evan Chengfe917ef2011-04-11 18:47:20 +0000467 Changed = true;
468
Evan Cheng604bc162010-04-02 02:21:24 +0000469 // After coalescing MI itself may become a copy.
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000470 if (MI->isCopyLike())
Evan Cheng604bc162010-04-02 02:21:24 +0000471 continue;
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000472
473 // Try again to see if CSE is possible.
Evan Cheng4eab0082010-03-03 02:48:20 +0000474 FoundCSE = VNT.count(MI);
Evan Cheng604bc162010-04-02 02:21:24 +0000475 }
Evan Cheng4eab0082010-03-03 02:48:20 +0000476 }
Evan Chengb7ff5a02010-12-15 22:16:21 +0000477
478 // Commute commutable instructions.
479 bool Commuted = false;
Evan Cheng7f8e5632011-12-07 07:15:52 +0000480 if (!FoundCSE && MI->isCommutable()) {
Evan Chengb7ff5a02010-12-15 22:16:21 +0000481 MachineInstr *NewMI = TII->commuteInstruction(MI);
482 if (NewMI) {
483 Commuted = true;
484 FoundCSE = VNT.count(NewMI);
Evan Chengfe917ef2011-04-11 18:47:20 +0000485 if (NewMI != MI) {
Evan Chengb7ff5a02010-12-15 22:16:21 +0000486 // New instruction. It doesn't need to be kept.
487 NewMI->eraseFromParent();
Evan Chengfe917ef2011-04-11 18:47:20 +0000488 Changed = true;
489 } else if (!FoundCSE)
Evan Chengb7ff5a02010-12-15 22:16:21 +0000490 // MI was changed but it didn't help, commute it back!
491 (void)TII->commuteInstruction(MI);
492 }
493 }
Evan Cheng4eab0082010-03-03 02:48:20 +0000494
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000495 // If the instruction defines physical registers and the values *may* be
Evan Cheng29226412010-03-03 23:59:08 +0000496 // used, then it's not safe to replace it with a common subexpression.
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000497 // It's also not safe if the instruction uses physical registers.
Evan Cheng0be41442012-01-10 02:02:58 +0000498 bool CrossMBBPhysDef = false;
Nick Lewycky765c6992012-07-05 06:19:21 +0000499 SmallSet<unsigned, 8> PhysRefs;
Evan Cheng0be41442012-01-10 02:02:58 +0000500 SmallVector<unsigned, 2> PhysDefs;
Ulrich Weigand39468772012-11-13 18:40:58 +0000501 bool PhysUseDef = false;
502 if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs,
503 PhysDefs, PhysUseDef)) {
Evan Cheng29226412010-03-03 23:59:08 +0000504 FoundCSE = false;
505
Evan Cheng0be41442012-01-10 02:02:58 +0000506 // ... Unless the CS is local or is in the sole predecessor block
507 // and it also defines the physical register which is not clobbered
508 // in between and the physical register uses were not clobbered.
Ulrich Weigand39468772012-11-13 18:40:58 +0000509 // This can never be the case if the instruction both uses and
510 // defines the same physical register, which was detected above.
511 if (!PhysUseDef) {
512 unsigned CSVN = VNT.lookup(MI);
513 MachineInstr *CSMI = Exps[CSVN];
514 if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef))
515 FoundCSE = true;
516 }
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000517 }
518
Evan Chengb386cd32010-03-03 21:20:05 +0000519 if (!FoundCSE) {
520 VNT.insert(MI, CurrVN++);
521 Exps.push_back(MI);
522 continue;
523 }
524
525 // Found a common subexpression, eliminate it.
526 unsigned CSVN = VNT.lookup(MI);
527 MachineInstr *CSMI = Exps[CSVN];
528 DEBUG(dbgs() << "Examining: " << *MI);
529 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI);
Evan Cheng19e44b42010-03-09 03:21:12 +0000530
531 // Check if it's profitable to perform this CSE.
532 bool DoCSE = true;
Manman Ren1be131b2012-08-08 00:51:41 +0000533 unsigned NumDefs = MI->getDesc().getNumDefs() +
534 MI->getDesc().getNumImplicitDefs();
Andrew Trickcccd82f2013-12-16 19:36:18 +0000535
Evan Chengb386cd32010-03-03 21:20:05 +0000536 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
537 MachineOperand &MO = MI->getOperand(i);
538 if (!MO.isReg() || !MO.isDef())
539 continue;
540 unsigned OldReg = MO.getReg();
541 unsigned NewReg = CSMI->getOperand(i).getReg();
Manman Ren1be131b2012-08-08 00:51:41 +0000542
543 // Go through implicit defs of CSMI and MI, if a def is not dead at MI,
544 // we should make sure it is not dead at CSMI.
545 if (MO.isImplicit() && !MO.isDead() && CSMI->getOperand(i).isDead())
546 ImplicitDefsToUpdate.push_back(i);
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000547
548 // Keep track of implicit defs of CSMI and MI, to clear possibly
549 // made-redundant kill flags.
550 if (MO.isImplicit() && !MO.isDead() && OldReg == NewReg)
551 ImplicitDefs.push_back(OldReg);
552
Manman Ren1be131b2012-08-08 00:51:41 +0000553 if (OldReg == NewReg) {
554 --NumDefs;
Evan Cheng0f5f5472010-03-06 01:14:19 +0000555 continue;
Manman Ren1be131b2012-08-08 00:51:41 +0000556 }
Bill Wendling3e5409d2011-10-12 23:03:40 +0000557
Evan Cheng0f5f5472010-03-06 01:14:19 +0000558 assert(TargetRegisterInfo::isVirtualRegister(OldReg) &&
Evan Chengb386cd32010-03-03 21:20:05 +0000559 TargetRegisterInfo::isVirtualRegister(NewReg) &&
560 "Do not CSE physical register defs!");
Bill Wendling3e5409d2011-10-12 23:03:40 +0000561
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000562 if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) {
Nick Lewycky765c6992012-07-05 06:19:21 +0000563 DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n");
Evan Cheng19e44b42010-03-09 03:21:12 +0000564 DoCSE = false;
565 break;
566 }
Bill Wendling3e5409d2011-10-12 23:03:40 +0000567
568 // Don't perform CSE if the result of the old instruction cannot exist
569 // within the register class of the new instruction.
570 const TargetRegisterClass *OldRC = MRI->getRegClass(OldReg);
571 if (!MRI->constrainRegClass(NewReg, OldRC)) {
Nick Lewycky765c6992012-07-05 06:19:21 +0000572 DEBUG(dbgs() << "*** Not the same register class, avoid CSE!\n");
Bill Wendling3e5409d2011-10-12 23:03:40 +0000573 DoCSE = false;
574 break;
575 }
576
Evan Cheng19e44b42010-03-09 03:21:12 +0000577 CSEPairs.push_back(std::make_pair(OldReg, NewReg));
Evan Chengb386cd32010-03-03 21:20:05 +0000578 --NumDefs;
579 }
Evan Cheng19e44b42010-03-09 03:21:12 +0000580
581 // Actually perform the elimination.
582 if (DoCSE) {
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000583 for (std::pair<unsigned, unsigned> &CSEPair : CSEPairs) {
584 unsigned OldReg = CSEPair.first;
585 unsigned NewReg = CSEPair.second;
Matthias Braun26e7ea62015-02-04 19:35:16 +0000586 // OldReg may have been unused but is used now, clear the Dead flag
587 MachineInstr *Def = MRI->getUniqueVRegDef(NewReg);
588 assert(Def != nullptr && "CSEd register has no unique definition?");
589 Def->clearRegisterDeads(NewReg);
590 // Replace with NewReg and clear kill flags which may be wrong now.
591 MRI->replaceRegWith(OldReg, NewReg);
592 MRI->clearKillFlags(NewReg);
Dan Gohman7767d272010-05-13 19:24:00 +0000593 }
Evan Cheng0be41442012-01-10 02:02:58 +0000594
Manman Ren1be131b2012-08-08 00:51:41 +0000595 // Go through implicit defs of CSMI and MI, if a def is not dead at MI,
596 // we should make sure it is not dead at CSMI.
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000597 for (unsigned ImplicitDefToUpdate : ImplicitDefsToUpdate)
598 CSMI->getOperand(ImplicitDefToUpdate).setIsDead(false);
Manman Ren1be131b2012-08-08 00:51:41 +0000599
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000600 // Go through implicit defs of CSMI and MI, and clear the kill flags on
601 // their uses in all the instructions between CSMI and MI.
602 // We might have made some of the kill flags redundant, consider:
603 // subs ... %NZCV<imp-def> <- CSMI
604 // csinc ... %NZCV<imp-use,kill> <- this kill flag isn't valid anymore
605 // subs ... %NZCV<imp-def> <- MI, to be eliminated
606 // csinc ... %NZCV<imp-use,kill>
607 // Since we eliminated MI, and reused a register imp-def'd by CSMI
608 // (here %NZCV), that register, if it was killed before MI, should have
609 // that kill flag removed, because it's lifetime was extended.
610 if (CSMI->getParent() == MI->getParent()) {
611 for (MachineBasicBlock::iterator II = CSMI, IE = MI; II != IE; ++II)
612 for (auto ImplicitDef : ImplicitDefs)
613 if (MachineOperand *MO = II->findRegisterUseOperand(
614 ImplicitDef, /*isKill=*/true, TRI))
615 MO->setIsKill(false);
616 } else {
617 // If the instructions aren't in the same BB, bail out and clear the
618 // kill flag on all uses of the imp-def'd register.
619 for (auto ImplicitDef : ImplicitDefs)
620 MRI->clearKillFlags(ImplicitDef);
621 }
622
Evan Cheng0be41442012-01-10 02:02:58 +0000623 if (CrossMBBPhysDef) {
624 // Add physical register defs now coming in from a predecessor to MBB
625 // livein list.
626 while (!PhysDefs.empty()) {
627 unsigned LiveIn = PhysDefs.pop_back_val();
628 if (!MBB->isLiveIn(LiveIn))
629 MBB->addLiveIn(LiveIn);
630 }
631 ++NumCrossBBCSEs;
632 }
633
Evan Cheng19e44b42010-03-09 03:21:12 +0000634 MI->eraseFromParent();
635 ++NumCSEs;
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000636 if (!PhysRefs.empty())
Evan Chenga03e6f82010-06-04 23:28:13 +0000637 ++NumPhysCSEs;
Evan Chengb7ff5a02010-12-15 22:16:21 +0000638 if (Commuted)
639 ++NumCommutes;
Evan Chengfe917ef2011-04-11 18:47:20 +0000640 Changed = true;
Evan Cheng19e44b42010-03-09 03:21:12 +0000641 } else {
Evan Cheng19e44b42010-03-09 03:21:12 +0000642 VNT.insert(MI, CurrVN++);
643 Exps.push_back(MI);
644 }
645 CSEPairs.clear();
Manman Ren1be131b2012-08-08 00:51:41 +0000646 ImplicitDefsToUpdate.clear();
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000647 ImplicitDefs.clear();
Evan Cheng4eab0082010-03-03 02:48:20 +0000648 }
649
Evan Cheng4b2ef562010-04-21 00:21:07 +0000650 return Changed;
651}
652
653/// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
654/// dominator tree node if its a leaf or all of its children are done. Walk
655/// up the dominator tree to destroy ancestors which are now done.
656void
657MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node,
Nick Lewycky765c6992012-07-05 06:19:21 +0000658 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren) {
Evan Cheng4b2ef562010-04-21 00:21:07 +0000659 if (OpenChildren[Node])
660 return;
661
662 // Pop scope.
663 ExitScope(Node->getBlock());
664
665 // Now traverse upwards to pop ancestors whose offsprings are all done.
Nick Lewycky765c6992012-07-05 06:19:21 +0000666 while (MachineDomTreeNode *Parent = Node->getIDom()) {
Evan Cheng4b2ef562010-04-21 00:21:07 +0000667 unsigned Left = --OpenChildren[Parent];
668 if (Left != 0)
669 break;
670 ExitScope(Parent->getBlock());
671 Node = Parent;
672 }
673}
674
675bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) {
676 SmallVector<MachineDomTreeNode*, 32> Scopes;
677 SmallVector<MachineDomTreeNode*, 8> WorkList;
Evan Cheng4b2ef562010-04-21 00:21:07 +0000678 DenseMap<MachineDomTreeNode*, unsigned> OpenChildren;
679
Evan Chengb08377e2010-09-17 21:59:42 +0000680 CurrVN = 0;
681
Evan Cheng4b2ef562010-04-21 00:21:07 +0000682 // Perform a DFS walk to determine the order of visit.
683 WorkList.push_back(Node);
684 do {
685 Node = WorkList.pop_back_val();
686 Scopes.push_back(Node);
687 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000688 OpenChildren[Node] = Children.size();
689 for (MachineDomTreeNode *Child : Children)
Evan Cheng4b2ef562010-04-21 00:21:07 +0000690 WorkList.push_back(Child);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000691 } while (!WorkList.empty());
692
693 // Now perform CSE.
694 bool Changed = false;
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000695 for (MachineDomTreeNode *Node : Scopes) {
Evan Cheng4b2ef562010-04-21 00:21:07 +0000696 MachineBasicBlock *MBB = Node->getBlock();
697 EnterScope(MBB);
698 Changed |= ProcessBlock(MBB);
699 // If it's a leaf node, it's done. Traverse upwards to pop ancestors.
Nick Lewycky765c6992012-07-05 06:19:21 +0000700 ExitScopeIfDone(Node, OpenChildren);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000701 }
Evan Cheng4eab0082010-03-03 02:48:20 +0000702
703 return Changed;
704}
705
Evan Cheng036aa492010-03-02 02:38:24 +0000706bool MachineCSE::runOnMachineFunction(MachineFunction &MF) {
Andrew Kayloraa641a52016-04-22 22:06:11 +0000707 if (skipFunction(*MF.getFunction()))
Paul Robinson7c99ec52014-03-31 17:43:35 +0000708 return false;
709
Eric Christopherfc6de422014-08-05 02:39:49 +0000710 TII = MF.getSubtarget().getInstrInfo();
711 TRI = MF.getSubtarget().getRegisterInfo();
Evan Cheng4eab0082010-03-03 02:48:20 +0000712 MRI = &MF.getRegInfo();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000713 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Evan Cheng19e44b42010-03-09 03:21:12 +0000714 DT = &getAnalysis<MachineDominatorTree>();
Tom Stellardf01af292015-05-09 00:56:07 +0000715 LookAheadLimit = TII->getMachineCSELookAheadLimit();
Evan Cheng4b2ef562010-04-21 00:21:07 +0000716 return PerformCSE(DT->getRootNode());
Evan Cheng036aa492010-03-02 02:38:24 +0000717}