blob: 75a3d071bdc40b8768c86eca3a3441980be2acf2 [file] [log] [blame]
Eugene Zelenko5df3d892017-08-24 21:21:39 +00001//===- MachineCSE.cpp - Machine Common Subexpression Elimination Pass -----===//
Evan Cheng036aa492010-03-02 02:38:24 +00002//
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 Cheng4b2ef562010-04-21 00:21:07 +000016#include "llvm/ADT/DenseMap.h"
Evan Cheng036aa492010-03-02 02:38:24 +000017#include "llvm/ADT/ScopedHashTable.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000018#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng2b3f25e2010-10-29 23:36:03 +000019#include "llvm/ADT/SmallSet.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000020#include "llvm/ADT/SmallVector.h"
Evan Cheng036aa492010-03-02 02:38:24 +000021#include "llvm/ADT/Statistic.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/Analysis/AliasAnalysis.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000023#include "llvm/CodeGen/MachineBasicBlock.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/CodeGen/MachineDominators.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000025#include "llvm/CodeGen/MachineFunction.h"
26#include "llvm/CodeGen/MachineFunctionPass.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000027#include "llvm/CodeGen/MachineInstr.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000028#include "llvm/CodeGen/MachineOperand.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000029#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000030#include "llvm/CodeGen/Passes.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000031#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000032#include "llvm/CodeGen/TargetOpcodes.h"
33#include "llvm/CodeGen/TargetRegisterInfo.h"
34#include "llvm/CodeGen/TargetSubtargetInfo.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000035#include "llvm/MC/MCInstrDesc.h"
36#include "llvm/MC/MCRegisterInfo.h"
37#include "llvm/Pass.h"
38#include "llvm/Support/Allocator.h"
Evan Cheng036aa492010-03-02 02:38:24 +000039#include "llvm/Support/Debug.h"
Cameron Zwarich18f164f2011-01-03 04:07:46 +000040#include "llvm/Support/RecyclingAllocator.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000041#include "llvm/Support/raw_ostream.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000042#include <cassert>
43#include <iterator>
44#include <utility>
45#include <vector>
46
Evan Cheng036aa492010-03-02 02:38:24 +000047using namespace llvm;
48
Chandler Carruth1b9dde02014-04-22 02:02:50 +000049#define DEBUG_TYPE "machine-cse"
50
Evan Chengb386cd32010-03-03 21:20:05 +000051STATISTIC(NumCoalesces, "Number of copies coalesced");
52STATISTIC(NumCSEs, "Number of common subexpression eliminated");
Evan Cheng2b3f25e2010-10-29 23:36:03 +000053STATISTIC(NumPhysCSEs,
54 "Number of physreg referencing common subexpr eliminated");
Evan Cheng0be41442012-01-10 02:02:58 +000055STATISTIC(NumCrossBBCSEs,
56 "Number of cross-MBB physreg referencing CS eliminated");
Evan Chengb7ff5a02010-12-15 22:16:21 +000057STATISTIC(NumCommutes, "Number of copies coalesced after commuting");
Bob Wilson30093b52010-06-03 18:28:31 +000058
Evan Cheng036aa492010-03-02 02:38:24 +000059namespace {
Eugene Zelenko5df3d892017-08-24 21:21:39 +000060
Evan Cheng036aa492010-03-02 02:38:24 +000061 class MachineCSE : public MachineFunctionPass {
Evan Cheng4eab0082010-03-03 02:48:20 +000062 const TargetInstrInfo *TII;
Evan Cheng36f8aab2010-03-04 01:33:55 +000063 const TargetRegisterInfo *TRI;
Evan Cheng1abd1a92010-03-04 21:18:08 +000064 AliasAnalysis *AA;
Evan Cheng19e44b42010-03-09 03:21:12 +000065 MachineDominatorTree *DT;
66 MachineRegisterInfo *MRI;
Eugene Zelenko5df3d892017-08-24 21:21:39 +000067
Evan Cheng036aa492010-03-02 02:38:24 +000068 public:
69 static char ID; // Pass identification
Eugene Zelenko5df3d892017-08-24 21:21:39 +000070
71 MachineCSE() : MachineFunctionPass(ID) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +000072 initializeMachineCSEPass(*PassRegistry::getPassRegistry());
73 }
Evan Cheng036aa492010-03-02 02:38:24 +000074
Craig Topper4584cd52014-03-07 09:26:03 +000075 bool runOnMachineFunction(MachineFunction &MF) override;
Andrew Trick9e761992012-02-08 21:22:43 +000076
Craig Topper4584cd52014-03-07 09:26:03 +000077 void getAnalysisUsage(AnalysisUsage &AU) const override {
Evan Cheng036aa492010-03-02 02:38:24 +000078 AU.setPreservesCFG();
79 MachineFunctionPass::getAnalysisUsage(AU);
Chandler Carruth7b560d42015-09-09 17:55:00 +000080 AU.addRequired<AAResultsWrapperPass>();
Evan Chenge0db9d02010-08-17 20:57:42 +000081 AU.addPreservedID(MachineLoopInfoID);
Evan Cheng036aa492010-03-02 02:38:24 +000082 AU.addRequired<MachineDominatorTree>();
83 AU.addPreserved<MachineDominatorTree>();
84 }
85
Craig Topper4584cd52014-03-07 09:26:03 +000086 void releaseMemory() override {
Evan Chengb08377e2010-09-17 21:59:42 +000087 ScopeMap.clear();
88 Exps.clear();
89 }
90
Evan Cheng036aa492010-03-02 02:38:24 +000091 private:
Eugene Zelenko5df3d892017-08-24 21:21:39 +000092 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 Zwarich18f164f2011-01-03 04:07:46 +0000101 ScopedHTType VNT;
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000102 SmallVector<MachineInstr *, 64> Exps;
103 unsigned CurrVN = 0;
Evan Chengb386cd32010-03-03 21:20:05 +0000104
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000105 bool PerformTrivialCopyPropagation(MachineInstr *MI,
106 MachineBasicBlock *MBB);
Evan Cheng36f8aab2010-03-04 01:33:55 +0000107 bool isPhysDefTriviallyDead(unsigned Reg,
108 MachineBasicBlock::const_iterator I,
Nick Lewycky765c6992012-07-05 06:19:21 +0000109 MachineBasicBlock::const_iterator E) const;
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000110 bool hasLivePhysRegDefUses(const MachineInstr *MI,
111 const MachineBasicBlock *MBB,
Evan Cheng0be41442012-01-10 02:02:58 +0000112 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +0000113 SmallVectorImpl<unsigned> &PhysDefs,
Ulrich Weigand39468772012-11-13 18:40:58 +0000114 bool &PhysUseDef) const;
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000115 bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng0be41442012-01-10 02:02:58 +0000116 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +0000117 SmallVectorImpl<unsigned> &PhysDefs,
Evan Cheng0be41442012-01-10 02:02:58 +0000118 bool &NonLocal) const;
Evan Cheng1abd1a92010-03-04 21:18:08 +0000119 bool isCSECandidate(MachineInstr *MI);
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000120 bool isProfitableToCSE(unsigned CSReg, unsigned Reg,
121 MachineInstr *CSMI, MachineInstr *MI);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000122 void EnterScope(MachineBasicBlock *MBB);
123 void ExitScope(MachineBasicBlock *MBB);
124 bool ProcessBlock(MachineBasicBlock *MBB);
125 void ExitScopeIfDone(MachineDomTreeNode *Node,
Bill Wendlingd1634052012-07-19 00:04:14 +0000126 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000127 bool PerformCSE(MachineDomTreeNode *Node);
Evan Cheng036aa492010-03-02 02:38:24 +0000128 };
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000129
Evan Cheng036aa492010-03-02 02:38:24 +0000130} // end anonymous namespace
131
132char MachineCSE::ID = 0;
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000133
Andrew Trick1fa5bcb2012-02-08 21:23:13 +0000134char &llvm::MachineCSEID = MachineCSE::ID;
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000135
Matthias Braun1527baa2017-05-25 21:26:32 +0000136INITIALIZE_PASS_BEGIN(MachineCSE, DEBUG_TYPE,
137 "Machine Common Subexpression Elimination", false, false)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000138INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000139INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
Matthias Braun1527baa2017-05-25 21:26:32 +0000140INITIALIZE_PASS_END(MachineCSE, DEBUG_TYPE,
141 "Machine Common Subexpression Elimination", false, false)
Evan Cheng036aa492010-03-02 02:38:24 +0000142
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000143/// 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.
147bool MachineCSE::PerformTrivialCopyPropagation(MachineInstr *MI,
148 MachineBasicBlock *MBB) {
Evan Cheng4eab0082010-03-03 02:48:20 +0000149 bool Changed = false;
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000150 for (MachineOperand &MO : MI->operands()) {
Evan Chengb386cd32010-03-03 21:20:05 +0000151 if (!MO.isReg() || !MO.isUse())
152 continue;
153 unsigned Reg = MO.getReg();
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +0000154 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Chengb386cd32010-03-03 21:20:05 +0000155 continue;
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000156 bool OnlyOneUse = MRI->hasOneNonDBGUse(Reg);
Evan Chengb386cd32010-03-03 21:20:05 +0000157 MachineInstr *DefMI = MRI->getVRegDef(Reg);
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000158 if (!DefMI->isCopy())
159 continue;
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000160 unsigned SrcReg = DefMI->getOperand(1).getReg();
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000161 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
162 continue;
Andrew Tricke3398282013-12-17 04:50:45 +0000163 if (DefMI->getOperand(0).getSubReg())
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000164 continue;
Andrew Tricke4083f92013-12-17 19:29:36 +0000165 // 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 Bognera9346e02018-01-18 02:06:56 +0000179 if (!MRI->constrainRegAttrs(SrcReg, Reg))
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000180 continue;
181 DEBUG(dbgs() << "Coalescing: " << *DefMI);
Jakob Stoklund Olesen18842782010-10-06 23:54:39 +0000182 DEBUG(dbgs() << "*** to: " << *MI);
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000183 // Propagate SrcReg of copies to MI.
Andrew Tricke4083f92013-12-17 19:29:36 +0000184 MO.setReg(SrcReg);
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000185 MRI->clearKillFlags(SrcReg);
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000186 // Coalesce single use copies.
187 if (OnlyOneUse) {
188 DefMI->eraseFromParent();
189 ++NumCoalesces;
190 }
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000191 Changed = true;
Evan Cheng4eab0082010-03-03 02:48:20 +0000192 }
193
194 return Changed;
195}
196
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000197bool
198MachineCSE::isPhysDefTriviallyDead(unsigned Reg,
199 MachineBasicBlock::const_iterator I,
200 MachineBasicBlock::const_iterator E) const {
Eric Christopher53ff9922010-05-21 23:40:03 +0000201 unsigned LookAheadLeft = LookAheadLimit;
Evan Chengc7d721a2010-03-23 20:33:48 +0000202 while (LookAheadLeft) {
Evan Chengcf7be392010-03-24 01:50:28 +0000203 // Skip over dbg_value's.
Florian Hahn3c8b8c92016-12-16 11:10:26 +0000204 I = skipDebugInstructionsForward(I, E);
Evan Chengcf7be392010-03-24 01:50:28 +0000205
Evan Cheng36f8aab2010-03-04 01:33:55 +0000206 if (I == E)
Mikael Holmen2676f822017-05-24 09:35:23 +0000207 // Reached end of block, we don't know if register is dead or not.
208 return false;
Evan Cheng36f8aab2010-03-04 01:33:55 +0000209
Evan Cheng36f8aab2010-03-04 01:33:55 +0000210 bool SeenDef = false;
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000211 for (const MachineOperand &MO : I->operands()) {
Jakob Stoklund Olesen4c5ad2b2012-02-28 02:08:50 +0000212 if (MO.isRegMask() && MO.clobbersPhysReg(Reg))
213 SeenDef = true;
Evan Cheng36f8aab2010-03-04 01:33:55 +0000214 if (!MO.isReg() || !MO.getReg())
215 continue;
216 if (!TRI->regsOverlap(MO.getReg(), Reg))
217 continue;
218 if (MO.isUse())
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000219 // Found a use!
Evan Cheng36f8aab2010-03-04 01:33:55 +0000220 return false;
221 SeenDef = true;
222 }
223 if (SeenDef)
Andrew Trick9e761992012-02-08 21:22:43 +0000224 // See a def of Reg (or an alias) before encountering any use, it's
Evan Cheng36f8aab2010-03-04 01:33:55 +0000225 // trivially dead.
226 return true;
Evan Chengc7d721a2010-03-23 20:33:48 +0000227
228 --LookAheadLeft;
Evan Cheng36f8aab2010-03-04 01:33:55 +0000229 ++I;
230 }
231 return false;
232}
233
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000234/// hasLivePhysRegDefUses - Return true if the specified instruction read/write
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000235/// physical registers (except for dead defs of physical registers). It also
Evan Chenga03e6f82010-06-04 23:28:13 +0000236/// returns the physical register def by reference if it's the only one and the
237/// instruction does not uses a physical register.
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000238bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI,
239 const MachineBasicBlock *MBB,
Evan Cheng0be41442012-01-10 02:02:58 +0000240 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +0000241 SmallVectorImpl<unsigned> &PhysDefs,
Ulrich Weigand39468772012-11-13 18:40:58 +0000242 bool &PhysUseDef) const{
243 // First, add all uses to PhysRefs.
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000244 for (const MachineOperand &MO : MI->operands()) {
Ulrich Weigand39468772012-11-13 18:40:58 +0000245 if (!MO.isReg() || MO.isDef())
Evan Cheng4eab0082010-03-03 02:48:20 +0000246 continue;
247 unsigned Reg = MO.getReg();
248 if (!Reg)
249 continue;
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000250 if (TargetRegisterInfo::isVirtualRegister(Reg))
251 continue;
Tony Jiangf75f4d62017-11-20 16:55:07 +0000252 // Reading either caller preserved or constant physregs is ok.
253 if (!MRI->isCallerPreservedOrConstPhysReg(Reg))
Benjamin Kramer59c8b412012-08-11 20:42:59 +0000254 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
Benjamin Krameref6494f2012-08-11 19:05:13 +0000255 PhysRefs.insert(*AI);
Ulrich Weigand39468772012-11-13 18:40:58 +0000256 }
257
258 // Next, collect all defs into PhysDefs. If any is already in PhysRefs
259 // (which currently contains only uses), set the PhysUseDef flag.
260 PhysUseDef = false;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000261 MachineBasicBlock::const_iterator I = MI; I = std::next(I);
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000262 for (const MachineOperand &MO : MI->operands()) {
Ulrich Weigand39468772012-11-13 18:40:58 +0000263 if (!MO.isReg() || !MO.isDef())
264 continue;
265 unsigned Reg = MO.getReg();
266 if (!Reg)
267 continue;
268 if (TargetRegisterInfo::isVirtualRegister(Reg))
269 continue;
270 // Check against PhysRefs even if the def is "dead".
271 if (PhysRefs.count(Reg))
272 PhysUseDef = true;
273 // If the def is dead, it's ok. But the def may not marked "dead". That's
274 // common since this pass is run before livevariables. We can scan
275 // forward a few instructions and check if it is obviously dead.
276 if (!MO.isDead() && !isPhysDefTriviallyDead(Reg, I, MBB->end()))
Evan Cheng0be41442012-01-10 02:02:58 +0000277 PhysDefs.push_back(Reg);
Evan Cheng36f8aab2010-03-04 01:33:55 +0000278 }
279
Ulrich Weigand39468772012-11-13 18:40:58 +0000280 // Finally, add all defs to PhysRefs as well.
281 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i)
282 for (MCRegAliasIterator AI(PhysDefs[i], TRI, true); AI.isValid(); ++AI)
283 PhysRefs.insert(*AI);
284
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000285 return !PhysRefs.empty();
Evan Cheng036aa492010-03-02 02:38:24 +0000286}
287
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000288bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng0be41442012-01-10 02:02:58 +0000289 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +0000290 SmallVectorImpl<unsigned> &PhysDefs,
Evan Cheng0be41442012-01-10 02:02:58 +0000291 bool &NonLocal) const {
Eli Friedman54019622011-05-06 05:23:07 +0000292 // For now conservatively returns false if the common subexpression is
Evan Cheng0be41442012-01-10 02:02:58 +0000293 // not in the same basic block as the given instruction. The only exception
294 // is if the common subexpression is in the sole predecessor block.
295 const MachineBasicBlock *MBB = MI->getParent();
296 const MachineBasicBlock *CSMBB = CSMI->getParent();
297
298 bool CrossMBB = false;
299 if (CSMBB != MBB) {
Evan Chengd9725a32012-01-11 00:38:11 +0000300 if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB)
Evan Cheng0be41442012-01-10 02:02:58 +0000301 return false;
Evan Chengd9725a32012-01-11 00:38:11 +0000302
303 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) {
Jakob Stoklund Olesenc30a9af2012-10-15 21:57:41 +0000304 if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i]))
Lang Hames5bade3d2012-02-17 00:27:16 +0000305 // Avoid extending live range of physical registers if they are
306 //allocatable or reserved.
Evan Chengd9725a32012-01-11 00:38:11 +0000307 return false;
308 }
309 CrossMBB = true;
Evan Cheng0be41442012-01-10 02:02:58 +0000310 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000311 MachineBasicBlock::const_iterator I = CSMI; I = std::next(I);
Eli Friedman54019622011-05-06 05:23:07 +0000312 MachineBasicBlock::const_iterator E = MI;
Evan Cheng0be41442012-01-10 02:02:58 +0000313 MachineBasicBlock::const_iterator EE = CSMBB->end();
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000314 unsigned LookAheadLeft = LookAheadLimit;
315 while (LookAheadLeft) {
Eli Friedman54019622011-05-06 05:23:07 +0000316 // Skip over dbg_value's.
Shiva Chen801bf7e2018-05-09 02:42:00 +0000317 while (I != E && I != EE && I->isDebugInstr())
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000318 ++I;
Eli Friedman54019622011-05-06 05:23:07 +0000319
Evan Cheng0be41442012-01-10 02:02:58 +0000320 if (I == EE) {
321 assert(CrossMBB && "Reaching end-of-MBB without finding MI?");
Duncan Sandsae22c602012-02-05 14:20:11 +0000322 (void)CrossMBB;
Evan Cheng0be41442012-01-10 02:02:58 +0000323 CrossMBB = false;
324 NonLocal = true;
325 I = MBB->begin();
326 EE = MBB->end();
327 continue;
328 }
329
Eli Friedman54019622011-05-06 05:23:07 +0000330 if (I == E)
331 return true;
332
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000333 for (const MachineOperand &MO : I->operands()) {
Jakob Stoklund Olesen4c5ad2b2012-02-28 02:08:50 +0000334 // RegMasks go on instructions like calls that clobber lots of physregs.
335 // Don't attempt to CSE across such an instruction.
336 if (MO.isRegMask())
337 return false;
Eli Friedman54019622011-05-06 05:23:07 +0000338 if (!MO.isReg() || !MO.isDef())
339 continue;
340 unsigned MOReg = MO.getReg();
341 if (TargetRegisterInfo::isVirtualRegister(MOReg))
342 continue;
343 if (PhysRefs.count(MOReg))
344 return false;
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000345 }
Eli Friedman54019622011-05-06 05:23:07 +0000346
347 --LookAheadLeft;
348 ++I;
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000349 }
350
351 return false;
352}
353
Evan Cheng1abd1a92010-03-04 21:18:08 +0000354bool MachineCSE::isCSECandidate(MachineInstr *MI) {
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000355 if (MI->isPosition() || MI->isPHI() || MI->isImplicitDef() || MI->isKill() ||
Shiva Chen801bf7e2018-05-09 02:42:00 +0000356 MI->isInlineAsm() || MI->isDebugInstr())
Evan Chengc9e86212010-03-08 23:49:12 +0000357 return false;
358
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000359 // Ignore copies.
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000360 if (MI->isCopyLike())
Evan Cheng1abd1a92010-03-04 21:18:08 +0000361 return false;
362
363 // Ignore stuff that we obviously can't move.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000364 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
Evan Cheng6eb516d2011-01-07 23:50:32 +0000365 MI->hasUnmodeledSideEffects())
Evan Cheng1abd1a92010-03-04 21:18:08 +0000366 return false;
367
Evan Cheng7f8e5632011-12-07 07:15:52 +0000368 if (MI->mayLoad()) {
Evan Cheng1abd1a92010-03-04 21:18:08 +0000369 // Okay, this instruction does a load. As a refinement, we allow the target
370 // to decide whether the loaded value is actually a constant. If so, we can
371 // actually use it as a load.
Justin Lebard98cf002016-09-10 01:03:20 +0000372 if (!MI->isDereferenceableInvariantLoad(AA))
Evan Cheng1abd1a92010-03-04 21:18:08 +0000373 // FIXME: we should be able to hoist loads with no other side effects if
374 // there are no other instructions which can change memory in this loop.
375 // This is a trivial form of alias analysis.
376 return false;
377 }
Tim Shene885d5e2016-04-19 19:40:37 +0000378
379 // Ignore stack guard loads, otherwise the register that holds CSEed value may
380 // be spilled and get loaded back with corrupted data.
381 if (MI->getOpcode() == TargetOpcode::LOAD_STACK_GUARD)
382 return false;
383
Evan Cheng1abd1a92010-03-04 21:18:08 +0000384 return true;
385}
386
Evan Cheng19e44b42010-03-09 03:21:12 +0000387/// isProfitableToCSE - Return true if it's profitable to eliminate MI with a
388/// common expression that defines Reg.
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000389bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg,
390 MachineInstr *CSMI, MachineInstr *MI) {
391 // FIXME: Heuristics that works around the lack the live range splitting.
392
Manman Rencb36b8c2012-08-07 06:16:46 +0000393 // If CSReg is used at all uses of Reg, CSE should not increase register
394 // pressure of CSReg.
395 bool MayIncreasePressure = true;
396 if (TargetRegisterInfo::isVirtualRegister(CSReg) &&
397 TargetRegisterInfo::isVirtualRegister(Reg)) {
398 MayIncreasePressure = false;
399 SmallPtrSet<MachineInstr*, 8> CSUses;
Owen Andersonb36376e2014-03-17 19:36:09 +0000400 for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) {
401 CSUses.insert(&MI);
Manman Rencb36b8c2012-08-07 06:16:46 +0000402 }
Owen Andersonb36376e2014-03-17 19:36:09 +0000403 for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) {
404 if (!CSUses.count(&MI)) {
Manman Rencb36b8c2012-08-07 06:16:46 +0000405 MayIncreasePressure = true;
406 break;
407 }
408 }
409 }
410 if (!MayIncreasePressure) return true;
411
Chris Lattner6c8b8dd2011-01-10 07:51:31 +0000412 // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in
413 // an immediate predecessor. We don't want to increase register pressure and
414 // end up causing other computation to be spilled.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000415 if (TII->isAsCheapAsAMove(*MI)) {
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000416 MachineBasicBlock *CSBB = CSMI->getParent();
417 MachineBasicBlock *BB = MI->getParent();
Chris Lattner6c8b8dd2011-01-10 07:51:31 +0000418 if (CSBB != BB && !CSBB->isSuccessor(BB))
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000419 return false;
420 }
421
422 // Heuristics #2: If the expression doesn't not use a vr and the only use
423 // of the redundant computation are copies, do not cse.
424 bool HasVRegUse = false;
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000425 for (const MachineOperand &MO : MI->operands()) {
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +0000426 if (MO.isReg() && MO.isUse() &&
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000427 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
428 HasVRegUse = true;
429 break;
430 }
431 }
432 if (!HasVRegUse) {
433 bool HasNonCopyUse = false;
Owen Andersonb36376e2014-03-17 19:36:09 +0000434 for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) {
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000435 // Ignore copies.
Owen Andersonb36376e2014-03-17 19:36:09 +0000436 if (!MI.isCopyLike()) {
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000437 HasNonCopyUse = true;
438 break;
439 }
440 }
441 if (!HasNonCopyUse)
442 return false;
443 }
444
445 // Heuristics #3: If the common subexpression is used by PHIs, do not reuse
446 // it unless the defined value is already used in the BB of the new use.
Evan Cheng19e44b42010-03-09 03:21:12 +0000447 bool HasPHI = false;
Michael Zolotukhin131e7492018-05-04 01:40:05 +0000448 for (MachineInstr &UseMI : MRI->use_nodbg_instructions(CSReg)) {
449 HasPHI |= UseMI.isPHI();
450 if (UseMI.getParent() == MI->getParent())
451 return true;
Evan Cheng19e44b42010-03-09 03:21:12 +0000452 }
453
Michael Zolotukhin131e7492018-05-04 01:40:05 +0000454 return !HasPHI;
Evan Cheng19e44b42010-03-09 03:21:12 +0000455}
456
Evan Cheng4b2ef562010-04-21 00:21:07 +0000457void MachineCSE::EnterScope(MachineBasicBlock *MBB) {
458 DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n');
459 ScopeType *Scope = new ScopeType(VNT);
460 ScopeMap[MBB] = Scope;
461}
462
463void MachineCSE::ExitScope(MachineBasicBlock *MBB) {
464 DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n');
465 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
466 assert(SI != ScopeMap.end());
Evan Cheng4b2ef562010-04-21 00:21:07 +0000467 delete SI->second;
Jakub Staszakf18753b2012-11-26 22:14:19 +0000468 ScopeMap.erase(SI);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000469}
470
471bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) {
Evan Cheng4eab0082010-03-03 02:48:20 +0000472 bool Changed = false;
473
Evan Cheng19e44b42010-03-09 03:21:12 +0000474 SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs;
Manman Ren1be131b2012-08-08 00:51:41 +0000475 SmallVector<unsigned, 2> ImplicitDefsToUpdate;
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000476 SmallVector<unsigned, 2> ImplicitDefs;
Evan Chengb386cd32010-03-03 21:20:05 +0000477 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) {
Evan Cheng4eab0082010-03-03 02:48:20 +0000478 MachineInstr *MI = &*I;
Evan Chengb386cd32010-03-03 21:20:05 +0000479 ++I;
Evan Cheng1abd1a92010-03-04 21:18:08 +0000480
481 if (!isCSECandidate(MI))
Evan Cheng4eab0082010-03-03 02:48:20 +0000482 continue;
Evan Cheng4eab0082010-03-03 02:48:20 +0000483
484 bool FoundCSE = VNT.count(MI);
485 if (!FoundCSE) {
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000486 // Using trivial copy propagation to find more CSE opportunities.
487 if (PerformTrivialCopyPropagation(MI, MBB)) {
Evan Chengfe917ef2011-04-11 18:47:20 +0000488 Changed = true;
489
Evan Cheng604bc162010-04-02 02:21:24 +0000490 // After coalescing MI itself may become a copy.
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000491 if (MI->isCopyLike())
Evan Cheng604bc162010-04-02 02:21:24 +0000492 continue;
Jiangning Liudd6e12d2014-08-11 05:17:19 +0000493
494 // Try again to see if CSE is possible.
Evan Cheng4eab0082010-03-03 02:48:20 +0000495 FoundCSE = VNT.count(MI);
Evan Cheng604bc162010-04-02 02:21:24 +0000496 }
Evan Cheng4eab0082010-03-03 02:48:20 +0000497 }
Evan Chengb7ff5a02010-12-15 22:16:21 +0000498
499 // Commute commutable instructions.
500 bool Commuted = false;
Evan Cheng7f8e5632011-12-07 07:15:52 +0000501 if (!FoundCSE && MI->isCommutable()) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000502 if (MachineInstr *NewMI = TII->commuteInstruction(*MI)) {
Evan Chengb7ff5a02010-12-15 22:16:21 +0000503 Commuted = true;
504 FoundCSE = VNT.count(NewMI);
Evan Chengfe917ef2011-04-11 18:47:20 +0000505 if (NewMI != MI) {
Evan Chengb7ff5a02010-12-15 22:16:21 +0000506 // New instruction. It doesn't need to be kept.
507 NewMI->eraseFromParent();
Evan Chengfe917ef2011-04-11 18:47:20 +0000508 Changed = true;
509 } else if (!FoundCSE)
Evan Chengb7ff5a02010-12-15 22:16:21 +0000510 // MI was changed but it didn't help, commute it back!
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000511 (void)TII->commuteInstruction(*MI);
Evan Chengb7ff5a02010-12-15 22:16:21 +0000512 }
513 }
Evan Cheng4eab0082010-03-03 02:48:20 +0000514
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000515 // If the instruction defines physical registers and the values *may* be
Evan Cheng29226412010-03-03 23:59:08 +0000516 // used, then it's not safe to replace it with a common subexpression.
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000517 // It's also not safe if the instruction uses physical registers.
Evan Cheng0be41442012-01-10 02:02:58 +0000518 bool CrossMBBPhysDef = false;
Nick Lewycky765c6992012-07-05 06:19:21 +0000519 SmallSet<unsigned, 8> PhysRefs;
Evan Cheng0be41442012-01-10 02:02:58 +0000520 SmallVector<unsigned, 2> PhysDefs;
Ulrich Weigand39468772012-11-13 18:40:58 +0000521 bool PhysUseDef = false;
522 if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs,
523 PhysDefs, PhysUseDef)) {
Evan Cheng29226412010-03-03 23:59:08 +0000524 FoundCSE = false;
525
Evan Cheng0be41442012-01-10 02:02:58 +0000526 // ... Unless the CS is local or is in the sole predecessor block
527 // and it also defines the physical register which is not clobbered
528 // in between and the physical register uses were not clobbered.
Ulrich Weigand39468772012-11-13 18:40:58 +0000529 // This can never be the case if the instruction both uses and
530 // defines the same physical register, which was detected above.
531 if (!PhysUseDef) {
532 unsigned CSVN = VNT.lookup(MI);
533 MachineInstr *CSMI = Exps[CSVN];
534 if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef))
535 FoundCSE = true;
536 }
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000537 }
538
Evan Chengb386cd32010-03-03 21:20:05 +0000539 if (!FoundCSE) {
540 VNT.insert(MI, CurrVN++);
541 Exps.push_back(MI);
542 continue;
543 }
544
545 // Found a common subexpression, eliminate it.
546 unsigned CSVN = VNT.lookup(MI);
547 MachineInstr *CSMI = Exps[CSVN];
548 DEBUG(dbgs() << "Examining: " << *MI);
549 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI);
Evan Cheng19e44b42010-03-09 03:21:12 +0000550
551 // Check if it's profitable to perform this CSE.
552 bool DoCSE = true;
Manman Ren1be131b2012-08-08 00:51:41 +0000553 unsigned NumDefs = MI->getDesc().getNumDefs() +
554 MI->getDesc().getNumImplicitDefs();
Andrew Trickcccd82f2013-12-16 19:36:18 +0000555
Evan Chengb386cd32010-03-03 21:20:05 +0000556 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
557 MachineOperand &MO = MI->getOperand(i);
558 if (!MO.isReg() || !MO.isDef())
559 continue;
560 unsigned OldReg = MO.getReg();
561 unsigned NewReg = CSMI->getOperand(i).getReg();
Manman Ren1be131b2012-08-08 00:51:41 +0000562
563 // Go through implicit defs of CSMI and MI, if a def is not dead at MI,
564 // we should make sure it is not dead at CSMI.
565 if (MO.isImplicit() && !MO.isDead() && CSMI->getOperand(i).isDead())
566 ImplicitDefsToUpdate.push_back(i);
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000567
568 // Keep track of implicit defs of CSMI and MI, to clear possibly
569 // made-redundant kill flags.
570 if (MO.isImplicit() && !MO.isDead() && OldReg == NewReg)
571 ImplicitDefs.push_back(OldReg);
572
Manman Ren1be131b2012-08-08 00:51:41 +0000573 if (OldReg == NewReg) {
574 --NumDefs;
Evan Cheng0f5f5472010-03-06 01:14:19 +0000575 continue;
Manman Ren1be131b2012-08-08 00:51:41 +0000576 }
Bill Wendling3e5409d2011-10-12 23:03:40 +0000577
Evan Cheng0f5f5472010-03-06 01:14:19 +0000578 assert(TargetRegisterInfo::isVirtualRegister(OldReg) &&
Evan Chengb386cd32010-03-03 21:20:05 +0000579 TargetRegisterInfo::isVirtualRegister(NewReg) &&
580 "Do not CSE physical register defs!");
Bill Wendling3e5409d2011-10-12 23:03:40 +0000581
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000582 if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) {
Nick Lewycky765c6992012-07-05 06:19:21 +0000583 DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n");
Evan Cheng19e44b42010-03-09 03:21:12 +0000584 DoCSE = false;
585 break;
586 }
Bill Wendling3e5409d2011-10-12 23:03:40 +0000587
Justin Bognera9346e02018-01-18 02:06:56 +0000588 // Don't perform CSE if the result of the new instruction cannot exist
589 // within the constraints (register class, bank, or low-level type) of
590 // the old instruction.
591 if (!MRI->constrainRegAttrs(NewReg, OldReg)) {
592 DEBUG(dbgs() << "*** Not the same register constraints, avoid CSE!\n");
Bill Wendling3e5409d2011-10-12 23:03:40 +0000593 DoCSE = false;
594 break;
595 }
596
Evan Cheng19e44b42010-03-09 03:21:12 +0000597 CSEPairs.push_back(std::make_pair(OldReg, NewReg));
Evan Chengb386cd32010-03-03 21:20:05 +0000598 --NumDefs;
599 }
Evan Cheng19e44b42010-03-09 03:21:12 +0000600
601 // Actually perform the elimination.
602 if (DoCSE) {
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000603 for (std::pair<unsigned, unsigned> &CSEPair : CSEPairs) {
604 unsigned OldReg = CSEPair.first;
605 unsigned NewReg = CSEPair.second;
Matthias Braun26e7ea62015-02-04 19:35:16 +0000606 // OldReg may have been unused but is used now, clear the Dead flag
607 MachineInstr *Def = MRI->getUniqueVRegDef(NewReg);
608 assert(Def != nullptr && "CSEd register has no unique definition?");
609 Def->clearRegisterDeads(NewReg);
610 // Replace with NewReg and clear kill flags which may be wrong now.
611 MRI->replaceRegWith(OldReg, NewReg);
612 MRI->clearKillFlags(NewReg);
Dan Gohman7767d272010-05-13 19:24:00 +0000613 }
Evan Cheng0be41442012-01-10 02:02:58 +0000614
Manman Ren1be131b2012-08-08 00:51:41 +0000615 // Go through implicit defs of CSMI and MI, if a def is not dead at MI,
616 // we should make sure it is not dead at CSMI.
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000617 for (unsigned ImplicitDefToUpdate : ImplicitDefsToUpdate)
618 CSMI->getOperand(ImplicitDefToUpdate).setIsDead(false);
Manman Ren1be131b2012-08-08 00:51:41 +0000619
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000620 // Go through implicit defs of CSMI and MI, and clear the kill flags on
621 // their uses in all the instructions between CSMI and MI.
622 // We might have made some of the kill flags redundant, consider:
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +0000623 // subs ... implicit-def %nzcv <- CSMI
624 // csinc ... implicit killed %nzcv <- this kill flag isn't valid anymore
625 // subs ... implicit-def %nzcv <- MI, to be eliminated
626 // csinc ... implicit killed %nzcv
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000627 // Since we eliminated MI, and reused a register imp-def'd by CSMI
Francis Visoiu Mistrih9d7bb0c2017-11-28 17:15:09 +0000628 // (here %nzcv), that register, if it was killed before MI, should have
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000629 // that kill flag removed, because it's lifetime was extended.
630 if (CSMI->getParent() == MI->getParent()) {
631 for (MachineBasicBlock::iterator II = CSMI, IE = MI; II != IE; ++II)
632 for (auto ImplicitDef : ImplicitDefs)
633 if (MachineOperand *MO = II->findRegisterUseOperand(
634 ImplicitDef, /*isKill=*/true, TRI))
635 MO->setIsKill(false);
636 } else {
637 // If the instructions aren't in the same BB, bail out and clear the
638 // kill flag on all uses of the imp-def'd register.
639 for (auto ImplicitDef : ImplicitDefs)
640 MRI->clearKillFlags(ImplicitDef);
641 }
642
Evan Cheng0be41442012-01-10 02:02:58 +0000643 if (CrossMBBPhysDef) {
644 // Add physical register defs now coming in from a predecessor to MBB
645 // livein list.
646 while (!PhysDefs.empty()) {
647 unsigned LiveIn = PhysDefs.pop_back_val();
648 if (!MBB->isLiveIn(LiveIn))
649 MBB->addLiveIn(LiveIn);
650 }
651 ++NumCrossBBCSEs;
652 }
653
Evan Cheng19e44b42010-03-09 03:21:12 +0000654 MI->eraseFromParent();
655 ++NumCSEs;
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000656 if (!PhysRefs.empty())
Evan Chenga03e6f82010-06-04 23:28:13 +0000657 ++NumPhysCSEs;
Evan Chengb7ff5a02010-12-15 22:16:21 +0000658 if (Commuted)
659 ++NumCommutes;
Evan Chengfe917ef2011-04-11 18:47:20 +0000660 Changed = true;
Evan Cheng19e44b42010-03-09 03:21:12 +0000661 } else {
Evan Cheng19e44b42010-03-09 03:21:12 +0000662 VNT.insert(MI, CurrVN++);
663 Exps.push_back(MI);
664 }
665 CSEPairs.clear();
Manman Ren1be131b2012-08-08 00:51:41 +0000666 ImplicitDefsToUpdate.clear();
Ahmed Bougacha54b7d332014-12-02 18:09:51 +0000667 ImplicitDefs.clear();
Evan Cheng4eab0082010-03-03 02:48:20 +0000668 }
669
Evan Cheng4b2ef562010-04-21 00:21:07 +0000670 return Changed;
671}
672
673/// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
674/// dominator tree node if its a leaf or all of its children are done. Walk
675/// up the dominator tree to destroy ancestors which are now done.
676void
677MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node,
Nick Lewycky765c6992012-07-05 06:19:21 +0000678 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren) {
Evan Cheng4b2ef562010-04-21 00:21:07 +0000679 if (OpenChildren[Node])
680 return;
681
682 // Pop scope.
683 ExitScope(Node->getBlock());
684
685 // Now traverse upwards to pop ancestors whose offsprings are all done.
Nick Lewycky765c6992012-07-05 06:19:21 +0000686 while (MachineDomTreeNode *Parent = Node->getIDom()) {
Evan Cheng4b2ef562010-04-21 00:21:07 +0000687 unsigned Left = --OpenChildren[Parent];
688 if (Left != 0)
689 break;
690 ExitScope(Parent->getBlock());
691 Node = Parent;
692 }
693}
694
695bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) {
696 SmallVector<MachineDomTreeNode*, 32> Scopes;
697 SmallVector<MachineDomTreeNode*, 8> WorkList;
Evan Cheng4b2ef562010-04-21 00:21:07 +0000698 DenseMap<MachineDomTreeNode*, unsigned> OpenChildren;
699
Evan Chengb08377e2010-09-17 21:59:42 +0000700 CurrVN = 0;
701
Evan Cheng4b2ef562010-04-21 00:21:07 +0000702 // Perform a DFS walk to determine the order of visit.
703 WorkList.push_back(Node);
704 do {
705 Node = WorkList.pop_back_val();
706 Scopes.push_back(Node);
707 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000708 OpenChildren[Node] = Children.size();
709 for (MachineDomTreeNode *Child : Children)
Evan Cheng4b2ef562010-04-21 00:21:07 +0000710 WorkList.push_back(Child);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000711 } while (!WorkList.empty());
712
713 // Now perform CSE.
714 bool Changed = false;
Sanjay Patel3d07ec92016-01-06 00:45:42 +0000715 for (MachineDomTreeNode *Node : Scopes) {
Evan Cheng4b2ef562010-04-21 00:21:07 +0000716 MachineBasicBlock *MBB = Node->getBlock();
717 EnterScope(MBB);
718 Changed |= ProcessBlock(MBB);
719 // If it's a leaf node, it's done. Traverse upwards to pop ancestors.
Nick Lewycky765c6992012-07-05 06:19:21 +0000720 ExitScopeIfDone(Node, OpenChildren);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000721 }
Evan Cheng4eab0082010-03-03 02:48:20 +0000722
723 return Changed;
724}
725
Evan Cheng036aa492010-03-02 02:38:24 +0000726bool MachineCSE::runOnMachineFunction(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000727 if (skipFunction(MF.getFunction()))
Paul Robinson7c99ec52014-03-31 17:43:35 +0000728 return false;
729
Eric Christopherfc6de422014-08-05 02:39:49 +0000730 TII = MF.getSubtarget().getInstrInfo();
731 TRI = MF.getSubtarget().getRegisterInfo();
Evan Cheng4eab0082010-03-03 02:48:20 +0000732 MRI = &MF.getRegInfo();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000733 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Evan Cheng19e44b42010-03-09 03:21:12 +0000734 DT = &getAnalysis<MachineDominatorTree>();
Tom Stellardf01af292015-05-09 00:56:07 +0000735 LookAheadLimit = TII->getMachineCSELookAheadLimit();
Evan Cheng4b2ef562010-04-21 00:21:07 +0000736 return PerformCSE(DT->getRootNode());
Evan Cheng036aa492010-03-02 02:38:24 +0000737}