blob: fd153d8c448c6a785bda42f8582593ffa418b178 [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
16#define DEBUG_TYPE "machine-cse"
17#include "llvm/CodeGen/Passes.h"
Evan Cheng4b2ef562010-04-21 00:21:07 +000018#include "llvm/ADT/DenseMap.h"
Evan Cheng036aa492010-03-02 02:38:24 +000019#include "llvm/ADT/ScopedHashTable.h"
Evan Cheng2b3f25e2010-10-29 23:36:03 +000020#include "llvm/ADT/SmallSet.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"
23#include "llvm/CodeGen/MachineDominators.h"
24#include "llvm/CodeGen/MachineInstr.h"
25#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng036aa492010-03-02 02:38:24 +000026#include "llvm/Support/Debug.h"
Cameron Zwarich18f164f2011-01-03 04:07:46 +000027#include "llvm/Support/RecyclingAllocator.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000028#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng036aa492010-03-02 02:38:24 +000029using namespace llvm;
30
Evan Chengb386cd32010-03-03 21:20:05 +000031STATISTIC(NumCoalesces, "Number of copies coalesced");
32STATISTIC(NumCSEs, "Number of common subexpression eliminated");
Evan Cheng2b3f25e2010-10-29 23:36:03 +000033STATISTIC(NumPhysCSEs,
34 "Number of physreg referencing common subexpr eliminated");
Evan Cheng0be41442012-01-10 02:02:58 +000035STATISTIC(NumCrossBBCSEs,
36 "Number of cross-MBB physreg referencing CS eliminated");
Evan Chengb7ff5a02010-12-15 22:16:21 +000037STATISTIC(NumCommutes, "Number of copies coalesced after commuting");
Bob Wilson30093b52010-06-03 18:28:31 +000038
Evan Cheng036aa492010-03-02 02:38:24 +000039namespace {
40 class MachineCSE : public MachineFunctionPass {
Evan Cheng4eab0082010-03-03 02:48:20 +000041 const TargetInstrInfo *TII;
Evan Cheng36f8aab2010-03-04 01:33:55 +000042 const TargetRegisterInfo *TRI;
Evan Cheng1abd1a92010-03-04 21:18:08 +000043 AliasAnalysis *AA;
Evan Cheng19e44b42010-03-09 03:21:12 +000044 MachineDominatorTree *DT;
45 MachineRegisterInfo *MRI;
Evan Cheng036aa492010-03-02 02:38:24 +000046 public:
47 static char ID; // Pass identification
Owen Anderson6c18d1a2010-10-19 17:21:58 +000048 MachineCSE() : MachineFunctionPass(ID), LookAheadLimit(5), CurrVN(0) {
49 initializeMachineCSEPass(*PassRegistry::getPassRegistry());
50 }
Evan Cheng036aa492010-03-02 02:38:24 +000051
Craig Topper4584cd52014-03-07 09:26:03 +000052 bool runOnMachineFunction(MachineFunction &MF) override;
Andrew Trick9e761992012-02-08 21:22:43 +000053
Craig Topper4584cd52014-03-07 09:26:03 +000054 void getAnalysisUsage(AnalysisUsage &AU) const override {
Evan Cheng036aa492010-03-02 02:38:24 +000055 AU.setPreservesCFG();
56 MachineFunctionPass::getAnalysisUsage(AU);
Evan Cheng1abd1a92010-03-04 21:18:08 +000057 AU.addRequired<AliasAnalysis>();
Evan Chenge0db9d02010-08-17 20:57:42 +000058 AU.addPreservedID(MachineLoopInfoID);
Evan Cheng036aa492010-03-02 02:38:24 +000059 AU.addRequired<MachineDominatorTree>();
60 AU.addPreserved<MachineDominatorTree>();
61 }
62
Craig Topper4584cd52014-03-07 09:26:03 +000063 void releaseMemory() override {
Evan Chengb08377e2010-09-17 21:59:42 +000064 ScopeMap.clear();
65 Exps.clear();
66 }
67
Evan Cheng036aa492010-03-02 02:38:24 +000068 private:
Evan Cheng2c8bdea2010-05-21 21:22:19 +000069 const unsigned LookAheadLimit;
Cameron Zwarich18f164f2011-01-03 04:07:46 +000070 typedef RecyclingAllocator<BumpPtrAllocator,
71 ScopedHashTableVal<MachineInstr*, unsigned> > AllocatorTy;
72 typedef ScopedHashTable<MachineInstr*, unsigned,
73 MachineInstrExpressionTrait, AllocatorTy> ScopedHTType;
74 typedef ScopedHTType::ScopeTy ScopeType;
Evan Cheng4b2ef562010-04-21 00:21:07 +000075 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
Cameron Zwarich18f164f2011-01-03 04:07:46 +000076 ScopedHTType VNT;
Evan Chengb386cd32010-03-03 21:20:05 +000077 SmallVector<MachineInstr*, 64> Exps;
Evan Cheng4b2ef562010-04-21 00:21:07 +000078 unsigned CurrVN;
Evan Chengb386cd32010-03-03 21:20:05 +000079
Evan Cheng1abd1a92010-03-04 21:18:08 +000080 bool PerformTrivialCoalescing(MachineInstr *MI, MachineBasicBlock *MBB);
Evan Cheng36f8aab2010-03-04 01:33:55 +000081 bool isPhysDefTriviallyDead(unsigned Reg,
82 MachineBasicBlock::const_iterator I,
Nick Lewycky765c6992012-07-05 06:19:21 +000083 MachineBasicBlock::const_iterator E) const;
Evan Cheng2b3f25e2010-10-29 23:36:03 +000084 bool hasLivePhysRegDefUses(const MachineInstr *MI,
85 const MachineBasicBlock *MBB,
Evan Cheng0be41442012-01-10 02:02:58 +000086 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +000087 SmallVectorImpl<unsigned> &PhysDefs,
Ulrich Weigand39468772012-11-13 18:40:58 +000088 bool &PhysUseDef) const;
Evan Cheng2b3f25e2010-10-29 23:36:03 +000089 bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng0be41442012-01-10 02:02:58 +000090 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +000091 SmallVectorImpl<unsigned> &PhysDefs,
Evan Cheng0be41442012-01-10 02:02:58 +000092 bool &NonLocal) const;
Evan Cheng1abd1a92010-03-04 21:18:08 +000093 bool isCSECandidate(MachineInstr *MI);
Evan Cheng4c5f7a72010-03-10 02:12:03 +000094 bool isProfitableToCSE(unsigned CSReg, unsigned Reg,
95 MachineInstr *CSMI, MachineInstr *MI);
Evan Cheng4b2ef562010-04-21 00:21:07 +000096 void EnterScope(MachineBasicBlock *MBB);
97 void ExitScope(MachineBasicBlock *MBB);
98 bool ProcessBlock(MachineBasicBlock *MBB);
99 void ExitScopeIfDone(MachineDomTreeNode *Node,
Bill Wendlingd1634052012-07-19 00:04:14 +0000100 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000101 bool PerformCSE(MachineDomTreeNode *Node);
Evan Cheng036aa492010-03-02 02:38:24 +0000102 };
103} // end anonymous namespace
104
105char MachineCSE::ID = 0;
Andrew Trick1fa5bcb2012-02-08 21:23:13 +0000106char &llvm::MachineCSEID = MachineCSE::ID;
Owen Anderson8ac477f2010-10-12 19:48:12 +0000107INITIALIZE_PASS_BEGIN(MachineCSE, "machine-cse",
108 "Machine Common Subexpression Elimination", false, false)
109INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
110INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
111INITIALIZE_PASS_END(MachineCSE, "machine-cse",
Owen Andersondf7a4f22010-10-07 22:25:06 +0000112 "Machine Common Subexpression Elimination", false, false)
Evan Cheng036aa492010-03-02 02:38:24 +0000113
Evan Cheng4eab0082010-03-03 02:48:20 +0000114bool MachineCSE::PerformTrivialCoalescing(MachineInstr *MI,
115 MachineBasicBlock *MBB) {
116 bool Changed = false;
117 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
118 MachineOperand &MO = MI->getOperand(i);
Evan Chengb386cd32010-03-03 21:20:05 +0000119 if (!MO.isReg() || !MO.isUse())
120 continue;
121 unsigned Reg = MO.getReg();
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +0000122 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Chengb386cd32010-03-03 21:20:05 +0000123 continue;
Evan Cheng0dcd3362010-09-17 21:56:26 +0000124 if (!MRI->hasOneNonDBGUse(Reg))
Evan Chengb386cd32010-03-03 21:20:05 +0000125 // Only coalesce single use copies. This ensure the copy will be
126 // deleted.
127 continue;
128 MachineInstr *DefMI = MRI->getVRegDef(Reg);
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000129 if (!DefMI->isCopy())
130 continue;
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000131 unsigned SrcReg = DefMI->getOperand(1).getReg();
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000132 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
133 continue;
Andrew Tricke3398282013-12-17 04:50:45 +0000134 if (DefMI->getOperand(0).getSubReg())
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000135 continue;
Andrew Tricke4083f92013-12-17 19:29:36 +0000136 // FIXME: We should trivially coalesce subregister copies to expose CSE
137 // opportunities on instructions with truncated operands (see
138 // cse-add-with-overflow.ll). This can be done here as follows:
139 // if (SrcSubReg)
140 // RC = TRI->getMatchingSuperRegClass(MRI->getRegClass(SrcReg), RC,
141 // SrcSubReg);
142 // MO.substVirtReg(SrcReg, SrcSubReg, *TRI);
143 //
144 // The 2-addr pass has been updated to handle coalesced subregs. However,
145 // some machine-specific code still can't handle it.
146 // To handle it properly we also need a way find a constrained subregister
147 // class given a super-reg class and subreg index.
148 if (DefMI->getOperand(1).getSubReg())
149 continue;
Andrew Tricke3398282013-12-17 04:50:45 +0000150 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
Andrew Tricke3398282013-12-17 04:50:45 +0000151 if (!MRI->constrainRegClass(SrcReg, RC))
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000152 continue;
153 DEBUG(dbgs() << "Coalescing: " << *DefMI);
Jakob Stoklund Olesen18842782010-10-06 23:54:39 +0000154 DEBUG(dbgs() << "*** to: " << *MI);
Andrew Tricke4083f92013-12-17 19:29:36 +0000155 MO.setReg(SrcReg);
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000156 MRI->clearKillFlags(SrcReg);
Jakob Stoklund Olesen00264622010-07-08 16:40:22 +0000157 DefMI->eraseFromParent();
158 ++NumCoalesces;
159 Changed = true;
Evan Cheng4eab0082010-03-03 02:48:20 +0000160 }
161
162 return Changed;
163}
164
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000165bool
166MachineCSE::isPhysDefTriviallyDead(unsigned Reg,
167 MachineBasicBlock::const_iterator I,
168 MachineBasicBlock::const_iterator E) const {
Eric Christopher53ff9922010-05-21 23:40:03 +0000169 unsigned LookAheadLeft = LookAheadLimit;
Evan Chengc7d721a2010-03-23 20:33:48 +0000170 while (LookAheadLeft) {
Evan Chengcf7be392010-03-24 01:50:28 +0000171 // Skip over dbg_value's.
172 while (I != E && I->isDebugValue())
173 ++I;
174
Evan Cheng36f8aab2010-03-04 01:33:55 +0000175 if (I == E)
176 // Reached end of block, register is obviously dead.
177 return true;
178
Evan Cheng36f8aab2010-03-04 01:33:55 +0000179 bool SeenDef = false;
180 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
181 const MachineOperand &MO = I->getOperand(i);
Jakob Stoklund Olesen4c5ad2b2012-02-28 02:08:50 +0000182 if (MO.isRegMask() && MO.clobbersPhysReg(Reg))
183 SeenDef = true;
Evan Cheng36f8aab2010-03-04 01:33:55 +0000184 if (!MO.isReg() || !MO.getReg())
185 continue;
186 if (!TRI->regsOverlap(MO.getReg(), Reg))
187 continue;
188 if (MO.isUse())
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000189 // Found a use!
Evan Cheng36f8aab2010-03-04 01:33:55 +0000190 return false;
191 SeenDef = true;
192 }
193 if (SeenDef)
Andrew Trick9e761992012-02-08 21:22:43 +0000194 // See a def of Reg (or an alias) before encountering any use, it's
Evan Cheng36f8aab2010-03-04 01:33:55 +0000195 // trivially dead.
196 return true;
Evan Chengc7d721a2010-03-23 20:33:48 +0000197
198 --LookAheadLeft;
Evan Cheng36f8aab2010-03-04 01:33:55 +0000199 ++I;
200 }
201 return false;
202}
203
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000204/// hasLivePhysRegDefUses - Return true if the specified instruction read/write
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000205/// physical registers (except for dead defs of physical registers). It also
Evan Chenga03e6f82010-06-04 23:28:13 +0000206/// returns the physical register def by reference if it's the only one and the
207/// instruction does not uses a physical register.
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000208bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI,
209 const MachineBasicBlock *MBB,
Evan Cheng0be41442012-01-10 02:02:58 +0000210 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +0000211 SmallVectorImpl<unsigned> &PhysDefs,
Ulrich Weigand39468772012-11-13 18:40:58 +0000212 bool &PhysUseDef) const{
213 // First, add all uses to PhysRefs.
Evan Cheng4eab0082010-03-03 02:48:20 +0000214 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000215 const MachineOperand &MO = MI->getOperand(i);
Ulrich Weigand39468772012-11-13 18:40:58 +0000216 if (!MO.isReg() || MO.isDef())
Evan Cheng4eab0082010-03-03 02:48:20 +0000217 continue;
218 unsigned Reg = MO.getReg();
219 if (!Reg)
220 continue;
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000221 if (TargetRegisterInfo::isVirtualRegister(Reg))
222 continue;
Benjamin Kramer59c8b412012-08-11 20:42:59 +0000223 // Reading constant physregs is ok.
224 if (!MRI->isConstantPhysReg(Reg, *MBB->getParent()))
225 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
Benjamin Krameref6494f2012-08-11 19:05:13 +0000226 PhysRefs.insert(*AI);
Ulrich Weigand39468772012-11-13 18:40:58 +0000227 }
228
229 // Next, collect all defs into PhysDefs. If any is already in PhysRefs
230 // (which currently contains only uses), set the PhysUseDef flag.
231 PhysUseDef = false;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000232 MachineBasicBlock::const_iterator I = MI; I = std::next(I);
Ulrich Weigand39468772012-11-13 18:40:58 +0000233 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
234 const MachineOperand &MO = MI->getOperand(i);
235 if (!MO.isReg() || !MO.isDef())
236 continue;
237 unsigned Reg = MO.getReg();
238 if (!Reg)
239 continue;
240 if (TargetRegisterInfo::isVirtualRegister(Reg))
241 continue;
242 // Check against PhysRefs even if the def is "dead".
243 if (PhysRefs.count(Reg))
244 PhysUseDef = true;
245 // If the def is dead, it's ok. But the def may not marked "dead". That's
246 // common since this pass is run before livevariables. We can scan
247 // forward a few instructions and check if it is obviously dead.
248 if (!MO.isDead() && !isPhysDefTriviallyDead(Reg, I, MBB->end()))
Evan Cheng0be41442012-01-10 02:02:58 +0000249 PhysDefs.push_back(Reg);
Evan Cheng36f8aab2010-03-04 01:33:55 +0000250 }
251
Ulrich Weigand39468772012-11-13 18:40:58 +0000252 // Finally, add all defs to PhysRefs as well.
253 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i)
254 for (MCRegAliasIterator AI(PhysDefs[i], TRI, true); AI.isValid(); ++AI)
255 PhysRefs.insert(*AI);
256
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000257 return !PhysRefs.empty();
Evan Cheng036aa492010-03-02 02:38:24 +0000258}
259
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000260bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng0be41442012-01-10 02:02:58 +0000261 SmallSet<unsigned,8> &PhysRefs,
Craig Topperb94011f2013-07-14 04:42:23 +0000262 SmallVectorImpl<unsigned> &PhysDefs,
Evan Cheng0be41442012-01-10 02:02:58 +0000263 bool &NonLocal) const {
Eli Friedman54019622011-05-06 05:23:07 +0000264 // For now conservatively returns false if the common subexpression is
Evan Cheng0be41442012-01-10 02:02:58 +0000265 // not in the same basic block as the given instruction. The only exception
266 // is if the common subexpression is in the sole predecessor block.
267 const MachineBasicBlock *MBB = MI->getParent();
268 const MachineBasicBlock *CSMBB = CSMI->getParent();
269
270 bool CrossMBB = false;
271 if (CSMBB != MBB) {
Evan Chengd9725a32012-01-11 00:38:11 +0000272 if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB)
Evan Cheng0be41442012-01-10 02:02:58 +0000273 return false;
Evan Chengd9725a32012-01-11 00:38:11 +0000274
275 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) {
Jakob Stoklund Olesenc30a9af2012-10-15 21:57:41 +0000276 if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i]))
Lang Hames5bade3d2012-02-17 00:27:16 +0000277 // Avoid extending live range of physical registers if they are
278 //allocatable or reserved.
Evan Chengd9725a32012-01-11 00:38:11 +0000279 return false;
280 }
281 CrossMBB = true;
Evan Cheng0be41442012-01-10 02:02:58 +0000282 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000283 MachineBasicBlock::const_iterator I = CSMI; I = std::next(I);
Eli Friedman54019622011-05-06 05:23:07 +0000284 MachineBasicBlock::const_iterator E = MI;
Evan Cheng0be41442012-01-10 02:02:58 +0000285 MachineBasicBlock::const_iterator EE = CSMBB->end();
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000286 unsigned LookAheadLeft = LookAheadLimit;
287 while (LookAheadLeft) {
Eli Friedman54019622011-05-06 05:23:07 +0000288 // Skip over dbg_value's.
Evan Cheng0be41442012-01-10 02:02:58 +0000289 while (I != E && I != EE && I->isDebugValue())
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000290 ++I;
Eli Friedman54019622011-05-06 05:23:07 +0000291
Evan Cheng0be41442012-01-10 02:02:58 +0000292 if (I == EE) {
293 assert(CrossMBB && "Reaching end-of-MBB without finding MI?");
Duncan Sandsae22c602012-02-05 14:20:11 +0000294 (void)CrossMBB;
Evan Cheng0be41442012-01-10 02:02:58 +0000295 CrossMBB = false;
296 NonLocal = true;
297 I = MBB->begin();
298 EE = MBB->end();
299 continue;
300 }
301
Eli Friedman54019622011-05-06 05:23:07 +0000302 if (I == E)
303 return true;
304
305 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
306 const MachineOperand &MO = I->getOperand(i);
Jakob Stoklund Olesen4c5ad2b2012-02-28 02:08:50 +0000307 // RegMasks go on instructions like calls that clobber lots of physregs.
308 // Don't attempt to CSE across such an instruction.
309 if (MO.isRegMask())
310 return false;
Eli Friedman54019622011-05-06 05:23:07 +0000311 if (!MO.isReg() || !MO.isDef())
312 continue;
313 unsigned MOReg = MO.getReg();
314 if (TargetRegisterInfo::isVirtualRegister(MOReg))
315 continue;
316 if (PhysRefs.count(MOReg))
317 return false;
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000318 }
Eli Friedman54019622011-05-06 05:23:07 +0000319
320 --LookAheadLeft;
321 ++I;
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000322 }
323
324 return false;
325}
326
Evan Cheng1abd1a92010-03-04 21:18:08 +0000327bool MachineCSE::isCSECandidate(MachineInstr *MI) {
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000328 if (MI->isPosition() || MI->isPHI() || MI->isImplicitDef() || MI->isKill() ||
329 MI->isInlineAsm() || MI->isDebugValue())
Evan Chengc9e86212010-03-08 23:49:12 +0000330 return false;
331
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000332 // Ignore copies.
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000333 if (MI->isCopyLike())
Evan Cheng1abd1a92010-03-04 21:18:08 +0000334 return false;
335
336 // Ignore stuff that we obviously can't move.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000337 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
Evan Cheng6eb516d2011-01-07 23:50:32 +0000338 MI->hasUnmodeledSideEffects())
Evan Cheng1abd1a92010-03-04 21:18:08 +0000339 return false;
340
Evan Cheng7f8e5632011-12-07 07:15:52 +0000341 if (MI->mayLoad()) {
Evan Cheng1abd1a92010-03-04 21:18:08 +0000342 // Okay, this instruction does a load. As a refinement, we allow the target
343 // to decide whether the loaded value is actually a constant. If so, we can
344 // actually use it as a load.
345 if (!MI->isInvariantLoad(AA))
346 // FIXME: we should be able to hoist loads with no other side effects if
347 // there are no other instructions which can change memory in this loop.
348 // This is a trivial form of alias analysis.
349 return false;
350 }
351 return true;
352}
353
Evan Cheng19e44b42010-03-09 03:21:12 +0000354/// isProfitableToCSE - Return true if it's profitable to eliminate MI with a
355/// common expression that defines Reg.
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000356bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg,
357 MachineInstr *CSMI, MachineInstr *MI) {
358 // FIXME: Heuristics that works around the lack the live range splitting.
359
Manman Rencb36b8c2012-08-07 06:16:46 +0000360 // If CSReg is used at all uses of Reg, CSE should not increase register
361 // pressure of CSReg.
362 bool MayIncreasePressure = true;
363 if (TargetRegisterInfo::isVirtualRegister(CSReg) &&
364 TargetRegisterInfo::isVirtualRegister(Reg)) {
365 MayIncreasePressure = false;
366 SmallPtrSet<MachineInstr*, 8> CSUses;
Owen Andersonb36376e2014-03-17 19:36:09 +0000367 for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) {
368 CSUses.insert(&MI);
Manman Rencb36b8c2012-08-07 06:16:46 +0000369 }
Owen Andersonb36376e2014-03-17 19:36:09 +0000370 for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) {
371 if (!CSUses.count(&MI)) {
Manman Rencb36b8c2012-08-07 06:16:46 +0000372 MayIncreasePressure = true;
373 break;
374 }
375 }
376 }
377 if (!MayIncreasePressure) return true;
378
Chris Lattner6c8b8dd2011-01-10 07:51:31 +0000379 // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in
380 // an immediate predecessor. We don't want to increase register pressure and
381 // end up causing other computation to be spilled.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000382 if (MI->isAsCheapAsAMove()) {
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000383 MachineBasicBlock *CSBB = CSMI->getParent();
384 MachineBasicBlock *BB = MI->getParent();
Chris Lattner6c8b8dd2011-01-10 07:51:31 +0000385 if (CSBB != BB && !CSBB->isSuccessor(BB))
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000386 return false;
387 }
388
389 // Heuristics #2: If the expression doesn't not use a vr and the only use
390 // of the redundant computation are copies, do not cse.
391 bool HasVRegUse = false;
392 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
393 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +0000394 if (MO.isReg() && MO.isUse() &&
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000395 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
396 HasVRegUse = true;
397 break;
398 }
399 }
400 if (!HasVRegUse) {
401 bool HasNonCopyUse = false;
Owen Andersonb36376e2014-03-17 19:36:09 +0000402 for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) {
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000403 // Ignore copies.
Owen Andersonb36376e2014-03-17 19:36:09 +0000404 if (!MI.isCopyLike()) {
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000405 HasNonCopyUse = true;
406 break;
407 }
408 }
409 if (!HasNonCopyUse)
410 return false;
411 }
412
413 // Heuristics #3: If the common subexpression is used by PHIs, do not reuse
414 // it unless the defined value is already used in the BB of the new use.
Evan Cheng19e44b42010-03-09 03:21:12 +0000415 bool HasPHI = false;
416 SmallPtrSet<MachineBasicBlock*, 4> CSBBs;
Owen Andersonb36376e2014-03-17 19:36:09 +0000417 for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) {
418 HasPHI |= MI.isPHI();
419 CSBBs.insert(MI.getParent());
Evan Cheng19e44b42010-03-09 03:21:12 +0000420 }
421
422 if (!HasPHI)
423 return true;
424 return CSBBs.count(MI->getParent());
425}
426
Evan Cheng4b2ef562010-04-21 00:21:07 +0000427void MachineCSE::EnterScope(MachineBasicBlock *MBB) {
428 DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n');
429 ScopeType *Scope = new ScopeType(VNT);
430 ScopeMap[MBB] = Scope;
431}
432
433void MachineCSE::ExitScope(MachineBasicBlock *MBB) {
434 DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n');
435 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
436 assert(SI != ScopeMap.end());
Evan Cheng4b2ef562010-04-21 00:21:07 +0000437 delete SI->second;
Jakub Staszakf18753b2012-11-26 22:14:19 +0000438 ScopeMap.erase(SI);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000439}
440
441bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) {
Evan Cheng4eab0082010-03-03 02:48:20 +0000442 bool Changed = false;
443
Evan Cheng19e44b42010-03-09 03:21:12 +0000444 SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs;
Manman Ren1be131b2012-08-08 00:51:41 +0000445 SmallVector<unsigned, 2> ImplicitDefsToUpdate;
Evan Chengb386cd32010-03-03 21:20:05 +0000446 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) {
Evan Cheng4eab0082010-03-03 02:48:20 +0000447 MachineInstr *MI = &*I;
Evan Chengb386cd32010-03-03 21:20:05 +0000448 ++I;
Evan Cheng1abd1a92010-03-04 21:18:08 +0000449
450 if (!isCSECandidate(MI))
Evan Cheng4eab0082010-03-03 02:48:20 +0000451 continue;
Evan Cheng4eab0082010-03-03 02:48:20 +0000452
453 bool FoundCSE = VNT.count(MI);
454 if (!FoundCSE) {
455 // Look for trivial copy coalescing opportunities.
Evan Cheng604bc162010-04-02 02:21:24 +0000456 if (PerformTrivialCoalescing(MI, MBB)) {
Evan Chengfe917ef2011-04-11 18:47:20 +0000457 Changed = true;
458
Evan Cheng604bc162010-04-02 02:21:24 +0000459 // After coalescing MI itself may become a copy.
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000460 if (MI->isCopyLike())
Evan Cheng604bc162010-04-02 02:21:24 +0000461 continue;
Evan Cheng4eab0082010-03-03 02:48:20 +0000462 FoundCSE = VNT.count(MI);
Evan Cheng604bc162010-04-02 02:21:24 +0000463 }
Evan Cheng4eab0082010-03-03 02:48:20 +0000464 }
Evan Chengb7ff5a02010-12-15 22:16:21 +0000465
466 // Commute commutable instructions.
467 bool Commuted = false;
Evan Cheng7f8e5632011-12-07 07:15:52 +0000468 if (!FoundCSE && MI->isCommutable()) {
Evan Chengb7ff5a02010-12-15 22:16:21 +0000469 MachineInstr *NewMI = TII->commuteInstruction(MI);
470 if (NewMI) {
471 Commuted = true;
472 FoundCSE = VNT.count(NewMI);
Evan Chengfe917ef2011-04-11 18:47:20 +0000473 if (NewMI != MI) {
Evan Chengb7ff5a02010-12-15 22:16:21 +0000474 // New instruction. It doesn't need to be kept.
475 NewMI->eraseFromParent();
Evan Chengfe917ef2011-04-11 18:47:20 +0000476 Changed = true;
477 } else if (!FoundCSE)
Evan Chengb7ff5a02010-12-15 22:16:21 +0000478 // MI was changed but it didn't help, commute it back!
479 (void)TII->commuteInstruction(MI);
480 }
481 }
Evan Cheng4eab0082010-03-03 02:48:20 +0000482
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000483 // If the instruction defines physical registers and the values *may* be
Evan Cheng29226412010-03-03 23:59:08 +0000484 // used, then it's not safe to replace it with a common subexpression.
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000485 // It's also not safe if the instruction uses physical registers.
Evan Cheng0be41442012-01-10 02:02:58 +0000486 bool CrossMBBPhysDef = false;
Nick Lewycky765c6992012-07-05 06:19:21 +0000487 SmallSet<unsigned, 8> PhysRefs;
Evan Cheng0be41442012-01-10 02:02:58 +0000488 SmallVector<unsigned, 2> PhysDefs;
Ulrich Weigand39468772012-11-13 18:40:58 +0000489 bool PhysUseDef = false;
490 if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs,
491 PhysDefs, PhysUseDef)) {
Evan Cheng29226412010-03-03 23:59:08 +0000492 FoundCSE = false;
493
Evan Cheng0be41442012-01-10 02:02:58 +0000494 // ... Unless the CS is local or is in the sole predecessor block
495 // and it also defines the physical register which is not clobbered
496 // in between and the physical register uses were not clobbered.
Ulrich Weigand39468772012-11-13 18:40:58 +0000497 // This can never be the case if the instruction both uses and
498 // defines the same physical register, which was detected above.
499 if (!PhysUseDef) {
500 unsigned CSVN = VNT.lookup(MI);
501 MachineInstr *CSMI = Exps[CSVN];
502 if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef))
503 FoundCSE = true;
504 }
Evan Cheng2c8bdea2010-05-21 21:22:19 +0000505 }
506
Evan Chengb386cd32010-03-03 21:20:05 +0000507 if (!FoundCSE) {
508 VNT.insert(MI, CurrVN++);
509 Exps.push_back(MI);
510 continue;
511 }
512
513 // Found a common subexpression, eliminate it.
514 unsigned CSVN = VNT.lookup(MI);
515 MachineInstr *CSMI = Exps[CSVN];
516 DEBUG(dbgs() << "Examining: " << *MI);
517 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI);
Evan Cheng19e44b42010-03-09 03:21:12 +0000518
519 // Check if it's profitable to perform this CSE.
520 bool DoCSE = true;
Manman Ren1be131b2012-08-08 00:51:41 +0000521 unsigned NumDefs = MI->getDesc().getNumDefs() +
522 MI->getDesc().getNumImplicitDefs();
Andrew Trickcccd82f2013-12-16 19:36:18 +0000523
Evan Chengb386cd32010-03-03 21:20:05 +0000524 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
525 MachineOperand &MO = MI->getOperand(i);
526 if (!MO.isReg() || !MO.isDef())
527 continue;
528 unsigned OldReg = MO.getReg();
529 unsigned NewReg = CSMI->getOperand(i).getReg();
Manman Ren1be131b2012-08-08 00:51:41 +0000530
531 // Go through implicit defs of CSMI and MI, if a def is not dead at MI,
532 // we should make sure it is not dead at CSMI.
533 if (MO.isImplicit() && !MO.isDead() && CSMI->getOperand(i).isDead())
534 ImplicitDefsToUpdate.push_back(i);
535 if (OldReg == NewReg) {
536 --NumDefs;
Evan Cheng0f5f5472010-03-06 01:14:19 +0000537 continue;
Manman Ren1be131b2012-08-08 00:51:41 +0000538 }
Bill Wendling3e5409d2011-10-12 23:03:40 +0000539
Evan Cheng0f5f5472010-03-06 01:14:19 +0000540 assert(TargetRegisterInfo::isVirtualRegister(OldReg) &&
Evan Chengb386cd32010-03-03 21:20:05 +0000541 TargetRegisterInfo::isVirtualRegister(NewReg) &&
542 "Do not CSE physical register defs!");
Bill Wendling3e5409d2011-10-12 23:03:40 +0000543
Evan Cheng4c5f7a72010-03-10 02:12:03 +0000544 if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) {
Nick Lewycky765c6992012-07-05 06:19:21 +0000545 DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n");
Evan Cheng19e44b42010-03-09 03:21:12 +0000546 DoCSE = false;
547 break;
548 }
Bill Wendling3e5409d2011-10-12 23:03:40 +0000549
550 // Don't perform CSE if the result of the old instruction cannot exist
551 // within the register class of the new instruction.
552 const TargetRegisterClass *OldRC = MRI->getRegClass(OldReg);
553 if (!MRI->constrainRegClass(NewReg, OldRC)) {
Nick Lewycky765c6992012-07-05 06:19:21 +0000554 DEBUG(dbgs() << "*** Not the same register class, avoid CSE!\n");
Bill Wendling3e5409d2011-10-12 23:03:40 +0000555 DoCSE = false;
556 break;
557 }
558
Evan Cheng19e44b42010-03-09 03:21:12 +0000559 CSEPairs.push_back(std::make_pair(OldReg, NewReg));
Evan Chengb386cd32010-03-03 21:20:05 +0000560 --NumDefs;
561 }
Evan Cheng19e44b42010-03-09 03:21:12 +0000562
563 // Actually perform the elimination.
564 if (DoCSE) {
Dan Gohman7767d272010-05-13 19:24:00 +0000565 for (unsigned i = 0, e = CSEPairs.size(); i != e; ++i) {
Evan Cheng19e44b42010-03-09 03:21:12 +0000566 MRI->replaceRegWith(CSEPairs[i].first, CSEPairs[i].second);
Dan Gohman7767d272010-05-13 19:24:00 +0000567 MRI->clearKillFlags(CSEPairs[i].second);
568 }
Evan Cheng0be41442012-01-10 02:02:58 +0000569
Manman Ren1be131b2012-08-08 00:51:41 +0000570 // Go through implicit defs of CSMI and MI, if a def is not dead at MI,
571 // we should make sure it is not dead at CSMI.
572 for (unsigned i = 0, e = ImplicitDefsToUpdate.size(); i != e; ++i)
573 CSMI->getOperand(ImplicitDefsToUpdate[i]).setIsDead(false);
574
Evan Cheng0be41442012-01-10 02:02:58 +0000575 if (CrossMBBPhysDef) {
576 // Add physical register defs now coming in from a predecessor to MBB
577 // livein list.
578 while (!PhysDefs.empty()) {
579 unsigned LiveIn = PhysDefs.pop_back_val();
580 if (!MBB->isLiveIn(LiveIn))
581 MBB->addLiveIn(LiveIn);
582 }
583 ++NumCrossBBCSEs;
584 }
585
Evan Cheng19e44b42010-03-09 03:21:12 +0000586 MI->eraseFromParent();
587 ++NumCSEs;
Evan Cheng2b3f25e2010-10-29 23:36:03 +0000588 if (!PhysRefs.empty())
Evan Chenga03e6f82010-06-04 23:28:13 +0000589 ++NumPhysCSEs;
Evan Chengb7ff5a02010-12-15 22:16:21 +0000590 if (Commuted)
591 ++NumCommutes;
Evan Chengfe917ef2011-04-11 18:47:20 +0000592 Changed = true;
Evan Cheng19e44b42010-03-09 03:21:12 +0000593 } else {
Evan Cheng19e44b42010-03-09 03:21:12 +0000594 VNT.insert(MI, CurrVN++);
595 Exps.push_back(MI);
596 }
597 CSEPairs.clear();
Manman Ren1be131b2012-08-08 00:51:41 +0000598 ImplicitDefsToUpdate.clear();
Evan Cheng4eab0082010-03-03 02:48:20 +0000599 }
600
Evan Cheng4b2ef562010-04-21 00:21:07 +0000601 return Changed;
602}
603
604/// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
605/// dominator tree node if its a leaf or all of its children are done. Walk
606/// up the dominator tree to destroy ancestors which are now done.
607void
608MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node,
Nick Lewycky765c6992012-07-05 06:19:21 +0000609 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren) {
Evan Cheng4b2ef562010-04-21 00:21:07 +0000610 if (OpenChildren[Node])
611 return;
612
613 // Pop scope.
614 ExitScope(Node->getBlock());
615
616 // Now traverse upwards to pop ancestors whose offsprings are all done.
Nick Lewycky765c6992012-07-05 06:19:21 +0000617 while (MachineDomTreeNode *Parent = Node->getIDom()) {
Evan Cheng4b2ef562010-04-21 00:21:07 +0000618 unsigned Left = --OpenChildren[Parent];
619 if (Left != 0)
620 break;
621 ExitScope(Parent->getBlock());
622 Node = Parent;
623 }
624}
625
626bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) {
627 SmallVector<MachineDomTreeNode*, 32> Scopes;
628 SmallVector<MachineDomTreeNode*, 8> WorkList;
Evan Cheng4b2ef562010-04-21 00:21:07 +0000629 DenseMap<MachineDomTreeNode*, unsigned> OpenChildren;
630
Evan Chengb08377e2010-09-17 21:59:42 +0000631 CurrVN = 0;
632
Evan Cheng4b2ef562010-04-21 00:21:07 +0000633 // Perform a DFS walk to determine the order of visit.
634 WorkList.push_back(Node);
635 do {
636 Node = WorkList.pop_back_val();
637 Scopes.push_back(Node);
638 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
639 unsigned NumChildren = Children.size();
640 OpenChildren[Node] = NumChildren;
641 for (unsigned i = 0; i != NumChildren; ++i) {
642 MachineDomTreeNode *Child = Children[i];
Evan Cheng4b2ef562010-04-21 00:21:07 +0000643 WorkList.push_back(Child);
644 }
645 } while (!WorkList.empty());
646
647 // Now perform CSE.
648 bool Changed = false;
649 for (unsigned i = 0, e = Scopes.size(); i != e; ++i) {
650 MachineDomTreeNode *Node = Scopes[i];
651 MachineBasicBlock *MBB = Node->getBlock();
652 EnterScope(MBB);
653 Changed |= ProcessBlock(MBB);
654 // If it's a leaf node, it's done. Traverse upwards to pop ancestors.
Nick Lewycky765c6992012-07-05 06:19:21 +0000655 ExitScopeIfDone(Node, OpenChildren);
Evan Cheng4b2ef562010-04-21 00:21:07 +0000656 }
Evan Cheng4eab0082010-03-03 02:48:20 +0000657
658 return Changed;
659}
660
Evan Cheng036aa492010-03-02 02:38:24 +0000661bool MachineCSE::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng4eab0082010-03-03 02:48:20 +0000662 TII = MF.getTarget().getInstrInfo();
Evan Cheng36f8aab2010-03-04 01:33:55 +0000663 TRI = MF.getTarget().getRegisterInfo();
Evan Cheng4eab0082010-03-03 02:48:20 +0000664 MRI = &MF.getRegInfo();
Evan Cheng1abd1a92010-03-04 21:18:08 +0000665 AA = &getAnalysis<AliasAnalysis>();
Evan Cheng19e44b42010-03-09 03:21:12 +0000666 DT = &getAnalysis<MachineDominatorTree>();
Evan Cheng4b2ef562010-04-21 00:21:07 +0000667 return PerformCSE(DT->getRootNode());
Evan Cheng036aa492010-03-02 02:38:24 +0000668}