blob: b931517b4f9c00824da28f9a99ee6934ab30f66c [file] [log] [blame]
Evan Chengc6fe3332010-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 Chengc5bbba12010-03-02 19:02:27 +000011// instructions using a scoped hash table based value numbering scheme. It
Evan Chengc6fe3332010-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"
18#include "llvm/CodeGen/MachineDominators.h"
19#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng6ba95542010-03-03 02:48:20 +000020#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chenga5f32cb2010-03-04 21:18:08 +000021#include "llvm/Analysis/AliasAnalysis.h"
Evan Cheng6ba95542010-03-03 02:48:20 +000022#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng31156982010-04-21 00:21:07 +000023#include "llvm/ADT/DenseMap.h"
Evan Chengc6fe3332010-03-02 02:38:24 +000024#include "llvm/ADT/ScopedHashTable.h"
Evan Cheng189c1ec2010-10-29 23:36:03 +000025#include "llvm/ADT/SmallSet.h"
Evan Chengc6fe3332010-03-02 02:38:24 +000026#include "llvm/ADT/Statistic.h"
27#include "llvm/Support/Debug.h"
Cameron Zwarich53eeba52011-01-03 04:07:46 +000028#include "llvm/Support/RecyclingAllocator.h"
Evan Chengc6fe3332010-03-02 02:38:24 +000029using namespace llvm;
30
Evan Cheng16b48b82010-03-03 21:20:05 +000031STATISTIC(NumCoalesces, "Number of copies coalesced");
32STATISTIC(NumCSEs, "Number of common subexpression eliminated");
Evan Cheng189c1ec2010-10-29 23:36:03 +000033STATISTIC(NumPhysCSEs,
34 "Number of physreg referencing common subexpr eliminated");
Evan Cheng97b5beb2012-01-10 02:02:58 +000035STATISTIC(NumCrossBBCSEs,
36 "Number of cross-MBB physreg referencing CS eliminated");
Evan Chenga63cde22010-12-15 22:16:21 +000037STATISTIC(NumCommutes, "Number of copies coalesced after commuting");
Bob Wilson38441732010-06-03 18:28:31 +000038
Evan Chengc6fe3332010-03-02 02:38:24 +000039namespace {
40 class MachineCSE : public MachineFunctionPass {
Evan Cheng6ba95542010-03-03 02:48:20 +000041 const TargetInstrInfo *TII;
Evan Chengb3958e82010-03-04 01:33:55 +000042 const TargetRegisterInfo *TRI;
Evan Chenga5f32cb2010-03-04 21:18:08 +000043 AliasAnalysis *AA;
Evan Cheng31f94c72010-03-09 03:21:12 +000044 MachineDominatorTree *DT;
45 MachineRegisterInfo *MRI;
Evan Chengc6fe3332010-03-02 02:38:24 +000046 public:
47 static char ID; // Pass identification
Owen Anderson081c34b2010-10-19 17:21:58 +000048 MachineCSE() : MachineFunctionPass(ID), LookAheadLimit(5), CurrVN(0) {
49 initializeMachineCSEPass(*PassRegistry::getPassRegistry());
50 }
Evan Chengc6fe3332010-03-02 02:38:24 +000051
52 virtual bool runOnMachineFunction(MachineFunction &MF);
Andrew Trick1df91b02012-02-08 21:22:43 +000053
Evan Chengc6fe3332010-03-02 02:38:24 +000054 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
55 AU.setPreservesCFG();
56 MachineFunctionPass::getAnalysisUsage(AU);
Evan Chenga5f32cb2010-03-04 21:18:08 +000057 AU.addRequired<AliasAnalysis>();
Evan Cheng65424162010-08-17 20:57:42 +000058 AU.addPreservedID(MachineLoopInfoID);
Evan Chengc6fe3332010-03-02 02:38:24 +000059 AU.addRequired<MachineDominatorTree>();
60 AU.addPreserved<MachineDominatorTree>();
61 }
62
Evan Chengc2b768f2010-09-17 21:59:42 +000063 virtual void releaseMemory() {
64 ScopeMap.clear();
65 Exps.clear();
Lang Hamesc2e08db2012-02-17 00:27:16 +000066 AllocatableRegs.clear();
67 ReservedRegs.clear();
Evan Chengc2b768f2010-09-17 21:59:42 +000068 }
69
Evan Chengc6fe3332010-03-02 02:38:24 +000070 private:
Evan Cheng835810b2010-05-21 21:22:19 +000071 const unsigned LookAheadLimit;
Cameron Zwarich53eeba52011-01-03 04:07:46 +000072 typedef RecyclingAllocator<BumpPtrAllocator,
73 ScopedHashTableVal<MachineInstr*, unsigned> > AllocatorTy;
74 typedef ScopedHashTable<MachineInstr*, unsigned,
75 MachineInstrExpressionTrait, AllocatorTy> ScopedHTType;
76 typedef ScopedHTType::ScopeTy ScopeType;
Evan Cheng31156982010-04-21 00:21:07 +000077 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
Cameron Zwarich53eeba52011-01-03 04:07:46 +000078 ScopedHTType VNT;
Evan Cheng16b48b82010-03-03 21:20:05 +000079 SmallVector<MachineInstr*, 64> Exps;
Evan Cheng31156982010-04-21 00:21:07 +000080 unsigned CurrVN;
Lang Hamesc2e08db2012-02-17 00:27:16 +000081 BitVector AllocatableRegs;
82 BitVector ReservedRegs;
Evan Cheng16b48b82010-03-03 21:20:05 +000083
Evan Chenga5f32cb2010-03-04 21:18:08 +000084 bool PerformTrivialCoalescing(MachineInstr *MI, MachineBasicBlock *MBB);
Evan Chengb3958e82010-03-04 01:33:55 +000085 bool isPhysDefTriviallyDead(unsigned Reg,
86 MachineBasicBlock::const_iterator I,
Nick Lewycky7a7a6db2012-07-05 06:19:21 +000087 MachineBasicBlock::const_iterator E) const;
Evan Cheng189c1ec2010-10-29 23:36:03 +000088 bool hasLivePhysRegDefUses(const MachineInstr *MI,
89 const MachineBasicBlock *MBB,
Evan Cheng97b5beb2012-01-10 02:02:58 +000090 SmallSet<unsigned,8> &PhysRefs,
91 SmallVector<unsigned,2> &PhysDefs) const;
Evan Cheng189c1ec2010-10-29 23:36:03 +000092 bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng97b5beb2012-01-10 02:02:58 +000093 SmallSet<unsigned,8> &PhysRefs,
Evan Chengf96703e2012-01-11 00:38:11 +000094 SmallVector<unsigned,2> &PhysDefs,
Evan Cheng97b5beb2012-01-10 02:02:58 +000095 bool &NonLocal) const;
Evan Chenga5f32cb2010-03-04 21:18:08 +000096 bool isCSECandidate(MachineInstr *MI);
Evan Cheng2938a002010-03-10 02:12:03 +000097 bool isProfitableToCSE(unsigned CSReg, unsigned Reg,
98 MachineInstr *CSMI, MachineInstr *MI);
Evan Cheng31156982010-04-21 00:21:07 +000099 void EnterScope(MachineBasicBlock *MBB);
100 void ExitScope(MachineBasicBlock *MBB);
101 bool ProcessBlock(MachineBasicBlock *MBB);
102 void ExitScopeIfDone(MachineDomTreeNode *Node,
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000103 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren);
Evan Cheng31156982010-04-21 00:21:07 +0000104 bool PerformCSE(MachineDomTreeNode *Node);
Evan Chengc6fe3332010-03-02 02:38:24 +0000105 };
106} // end anonymous namespace
107
108char MachineCSE::ID = 0;
Andrew Trick1dd8c852012-02-08 21:23:13 +0000109char &llvm::MachineCSEID = MachineCSE::ID;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000110INITIALIZE_PASS_BEGIN(MachineCSE, "machine-cse",
111 "Machine Common Subexpression Elimination", false, false)
112INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
113INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
114INITIALIZE_PASS_END(MachineCSE, "machine-cse",
Owen Andersonce665bd2010-10-07 22:25:06 +0000115 "Machine Common Subexpression Elimination", false, false)
Evan Chengc6fe3332010-03-02 02:38:24 +0000116
Evan Cheng6ba95542010-03-03 02:48:20 +0000117bool MachineCSE::PerformTrivialCoalescing(MachineInstr *MI,
118 MachineBasicBlock *MBB) {
119 bool Changed = false;
120 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
121 MachineOperand &MO = MI->getOperand(i);
Evan Cheng16b48b82010-03-03 21:20:05 +0000122 if (!MO.isReg() || !MO.isUse())
123 continue;
124 unsigned Reg = MO.getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000125 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng16b48b82010-03-03 21:20:05 +0000126 continue;
Evan Chengf437f732010-09-17 21:56:26 +0000127 if (!MRI->hasOneNonDBGUse(Reg))
Evan Cheng16b48b82010-03-03 21:20:05 +0000128 // Only coalesce single use copies. This ensure the copy will be
129 // deleted.
130 continue;
131 MachineInstr *DefMI = MRI->getVRegDef(Reg);
132 if (DefMI->getParent() != MBB)
133 continue;
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000134 if (!DefMI->isCopy())
135 continue;
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000136 unsigned SrcReg = DefMI->getOperand(1).getReg();
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000137 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
138 continue;
139 if (DefMI->getOperand(0).getSubReg() || DefMI->getOperand(1).getSubReg())
140 continue;
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +0000141 if (!MRI->constrainRegClass(SrcReg, MRI->getRegClass(Reg)))
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000142 continue;
143 DEBUG(dbgs() << "Coalescing: " << *DefMI);
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +0000144 DEBUG(dbgs() << "*** to: " << *MI);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000145 MO.setReg(SrcReg);
146 MRI->clearKillFlags(SrcReg);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000147 DefMI->eraseFromParent();
148 ++NumCoalesces;
149 Changed = true;
Evan Cheng6ba95542010-03-03 02:48:20 +0000150 }
151
152 return Changed;
153}
154
Evan Cheng835810b2010-05-21 21:22:19 +0000155bool
156MachineCSE::isPhysDefTriviallyDead(unsigned Reg,
157 MachineBasicBlock::const_iterator I,
158 MachineBasicBlock::const_iterator E) const {
Eric Christophere81d0102010-05-21 23:40:03 +0000159 unsigned LookAheadLeft = LookAheadLimit;
Evan Cheng112e5e72010-03-23 20:33:48 +0000160 while (LookAheadLeft) {
Evan Cheng22504252010-03-24 01:50:28 +0000161 // Skip over dbg_value's.
162 while (I != E && I->isDebugValue())
163 ++I;
164
Evan Chengb3958e82010-03-04 01:33:55 +0000165 if (I == E)
166 // Reached end of block, register is obviously dead.
167 return true;
168
Evan Chengb3958e82010-03-04 01:33:55 +0000169 bool SeenDef = false;
170 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
171 const MachineOperand &MO = I->getOperand(i);
Jakob Stoklund Olesen2129a0f2012-02-28 02:08:50 +0000172 if (MO.isRegMask() && MO.clobbersPhysReg(Reg))
173 SeenDef = true;
Evan Chengb3958e82010-03-04 01:33:55 +0000174 if (!MO.isReg() || !MO.getReg())
175 continue;
176 if (!TRI->regsOverlap(MO.getReg(), Reg))
177 continue;
178 if (MO.isUse())
Evan Cheng835810b2010-05-21 21:22:19 +0000179 // Found a use!
Evan Chengb3958e82010-03-04 01:33:55 +0000180 return false;
181 SeenDef = true;
182 }
183 if (SeenDef)
Andrew Trick1df91b02012-02-08 21:22:43 +0000184 // See a def of Reg (or an alias) before encountering any use, it's
Evan Chengb3958e82010-03-04 01:33:55 +0000185 // trivially dead.
186 return true;
Evan Cheng112e5e72010-03-23 20:33:48 +0000187
188 --LookAheadLeft;
Evan Chengb3958e82010-03-04 01:33:55 +0000189 ++I;
190 }
191 return false;
192}
193
Evan Cheng189c1ec2010-10-29 23:36:03 +0000194/// hasLivePhysRegDefUses - Return true if the specified instruction read/write
Evan Cheng835810b2010-05-21 21:22:19 +0000195/// physical registers (except for dead defs of physical registers). It also
Evan Cheng2b4e7272010-06-04 23:28:13 +0000196/// returns the physical register def by reference if it's the only one and the
197/// instruction does not uses a physical register.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000198bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI,
199 const MachineBasicBlock *MBB,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000200 SmallSet<unsigned,8> &PhysRefs,
201 SmallVector<unsigned,2> &PhysDefs) const{
Evan Cheng189c1ec2010-10-29 23:36:03 +0000202 MachineBasicBlock::const_iterator I = MI; I = llvm::next(I);
Evan Cheng6ba95542010-03-03 02:48:20 +0000203 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
Evan Cheng835810b2010-05-21 21:22:19 +0000204 const MachineOperand &MO = MI->getOperand(i);
Evan Cheng6ba95542010-03-03 02:48:20 +0000205 if (!MO.isReg())
206 continue;
207 unsigned Reg = MO.getReg();
208 if (!Reg)
209 continue;
Evan Cheng835810b2010-05-21 21:22:19 +0000210 if (TargetRegisterInfo::isVirtualRegister(Reg))
211 continue;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000212 // If the def is dead, it's ok. But the def may not marked "dead". That's
Evan Cheng835810b2010-05-21 21:22:19 +0000213 // common since this pass is run before livevariables. We can scan
214 // forward a few instructions and check if it is obviously dead.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000215 if (MO.isDef() &&
216 (MO.isDead() || isPhysDefTriviallyDead(Reg, I, MBB->end())))
217 continue;
Jakob Stoklund Olesenf152fe82012-06-01 20:36:54 +0000218 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
219 PhysRefs.insert(*AI);
Evan Cheng97b5beb2012-01-10 02:02:58 +0000220 if (MO.isDef())
221 PhysDefs.push_back(Reg);
Evan Chengb3958e82010-03-04 01:33:55 +0000222 }
223
Evan Cheng189c1ec2010-10-29 23:36:03 +0000224 return !PhysRefs.empty();
Evan Chengc6fe3332010-03-02 02:38:24 +0000225}
226
Evan Cheng189c1ec2010-10-29 23:36:03 +0000227bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000228 SmallSet<unsigned,8> &PhysRefs,
Evan Chengf96703e2012-01-11 00:38:11 +0000229 SmallVector<unsigned,2> &PhysDefs,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000230 bool &NonLocal) const {
Eli Friedman5e926ac2011-05-06 05:23:07 +0000231 // For now conservatively returns false if the common subexpression is
Evan Cheng97b5beb2012-01-10 02:02:58 +0000232 // not in the same basic block as the given instruction. The only exception
233 // is if the common subexpression is in the sole predecessor block.
234 const MachineBasicBlock *MBB = MI->getParent();
235 const MachineBasicBlock *CSMBB = CSMI->getParent();
236
237 bool CrossMBB = false;
238 if (CSMBB != MBB) {
Evan Chengf96703e2012-01-11 00:38:11 +0000239 if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB)
Evan Cheng97b5beb2012-01-10 02:02:58 +0000240 return false;
Evan Chengf96703e2012-01-11 00:38:11 +0000241
242 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) {
Lang Hamesc2e08db2012-02-17 00:27:16 +0000243 if (AllocatableRegs.test(PhysDefs[i]) || ReservedRegs.test(PhysDefs[i]))
244 // Avoid extending live range of physical registers if they are
245 //allocatable or reserved.
Evan Chengf96703e2012-01-11 00:38:11 +0000246 return false;
247 }
248 CrossMBB = true;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000249 }
Eli Friedman5e926ac2011-05-06 05:23:07 +0000250 MachineBasicBlock::const_iterator I = CSMI; I = llvm::next(I);
251 MachineBasicBlock::const_iterator E = MI;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000252 MachineBasicBlock::const_iterator EE = CSMBB->end();
Evan Cheng835810b2010-05-21 21:22:19 +0000253 unsigned LookAheadLeft = LookAheadLimit;
254 while (LookAheadLeft) {
Eli Friedman5e926ac2011-05-06 05:23:07 +0000255 // Skip over dbg_value's.
Evan Cheng97b5beb2012-01-10 02:02:58 +0000256 while (I != E && I != EE && I->isDebugValue())
Evan Cheng835810b2010-05-21 21:22:19 +0000257 ++I;
Eli Friedman5e926ac2011-05-06 05:23:07 +0000258
Evan Cheng97b5beb2012-01-10 02:02:58 +0000259 if (I == EE) {
260 assert(CrossMBB && "Reaching end-of-MBB without finding MI?");
Duncan Sands5b8a1db2012-02-05 14:20:11 +0000261 (void)CrossMBB;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000262 CrossMBB = false;
263 NonLocal = true;
264 I = MBB->begin();
265 EE = MBB->end();
266 continue;
267 }
268
Eli Friedman5e926ac2011-05-06 05:23:07 +0000269 if (I == E)
270 return true;
271
272 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
273 const MachineOperand &MO = I->getOperand(i);
Jakob Stoklund Olesen2129a0f2012-02-28 02:08:50 +0000274 // RegMasks go on instructions like calls that clobber lots of physregs.
275 // Don't attempt to CSE across such an instruction.
276 if (MO.isRegMask())
277 return false;
Eli Friedman5e926ac2011-05-06 05:23:07 +0000278 if (!MO.isReg() || !MO.isDef())
279 continue;
280 unsigned MOReg = MO.getReg();
281 if (TargetRegisterInfo::isVirtualRegister(MOReg))
282 continue;
283 if (PhysRefs.count(MOReg))
284 return false;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000285 }
Eli Friedman5e926ac2011-05-06 05:23:07 +0000286
287 --LookAheadLeft;
288 ++I;
Evan Cheng835810b2010-05-21 21:22:19 +0000289 }
290
291 return false;
292}
293
Evan Chenga5f32cb2010-03-04 21:18:08 +0000294bool MachineCSE::isCSECandidate(MachineInstr *MI) {
Evan Cheng51960182010-03-08 23:49:12 +0000295 if (MI->isLabel() || MI->isPHI() || MI->isImplicitDef() ||
Dale Johannesene68ea062010-03-11 02:10:24 +0000296 MI->isKill() || MI->isInlineAsm() || MI->isDebugValue())
Evan Cheng51960182010-03-08 23:49:12 +0000297 return false;
298
Evan Cheng2938a002010-03-10 02:12:03 +0000299 // Ignore copies.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000300 if (MI->isCopyLike())
Evan Chenga5f32cb2010-03-04 21:18:08 +0000301 return false;
302
303 // Ignore stuff that we obviously can't move.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000304 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
Evan Chengc36b7062011-01-07 23:50:32 +0000305 MI->hasUnmodeledSideEffects())
Evan Chenga5f32cb2010-03-04 21:18:08 +0000306 return false;
307
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000308 if (MI->mayLoad()) {
Evan Chenga5f32cb2010-03-04 21:18:08 +0000309 // Okay, this instruction does a load. As a refinement, we allow the target
310 // to decide whether the loaded value is actually a constant. If so, we can
311 // actually use it as a load.
312 if (!MI->isInvariantLoad(AA))
313 // FIXME: we should be able to hoist loads with no other side effects if
314 // there are no other instructions which can change memory in this loop.
315 // This is a trivial form of alias analysis.
316 return false;
317 }
318 return true;
319}
320
Evan Cheng31f94c72010-03-09 03:21:12 +0000321/// isProfitableToCSE - Return true if it's profitable to eliminate MI with a
322/// common expression that defines Reg.
Evan Cheng2938a002010-03-10 02:12:03 +0000323bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg,
324 MachineInstr *CSMI, MachineInstr *MI) {
325 // FIXME: Heuristics that works around the lack the live range splitting.
326
Chris Lattner622a11b2011-01-10 07:51:31 +0000327 // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in
328 // an immediate predecessor. We don't want to increase register pressure and
329 // end up causing other computation to be spilled.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000330 if (MI->isAsCheapAsAMove()) {
Evan Cheng2938a002010-03-10 02:12:03 +0000331 MachineBasicBlock *CSBB = CSMI->getParent();
332 MachineBasicBlock *BB = MI->getParent();
Chris Lattner622a11b2011-01-10 07:51:31 +0000333 if (CSBB != BB && !CSBB->isSuccessor(BB))
Evan Cheng2938a002010-03-10 02:12:03 +0000334 return false;
335 }
336
337 // Heuristics #2: If the expression doesn't not use a vr and the only use
338 // of the redundant computation are copies, do not cse.
339 bool HasVRegUse = false;
340 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
341 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000342 if (MO.isReg() && MO.isUse() &&
Evan Cheng2938a002010-03-10 02:12:03 +0000343 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
344 HasVRegUse = true;
345 break;
346 }
347 }
348 if (!HasVRegUse) {
349 bool HasNonCopyUse = false;
350 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg),
351 E = MRI->use_nodbg_end(); I != E; ++I) {
352 MachineInstr *Use = &*I;
353 // Ignore copies.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000354 if (!Use->isCopyLike()) {
Evan Cheng2938a002010-03-10 02:12:03 +0000355 HasNonCopyUse = true;
356 break;
357 }
358 }
359 if (!HasNonCopyUse)
360 return false;
361 }
362
363 // Heuristics #3: If the common subexpression is used by PHIs, do not reuse
364 // it unless the defined value is already used in the BB of the new use.
Evan Cheng31f94c72010-03-09 03:21:12 +0000365 bool HasPHI = false;
366 SmallPtrSet<MachineBasicBlock*, 4> CSBBs;
Evan Cheng2938a002010-03-10 02:12:03 +0000367 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(CSReg),
Evan Cheng31f94c72010-03-09 03:21:12 +0000368 E = MRI->use_nodbg_end(); I != E; ++I) {
369 MachineInstr *Use = &*I;
370 HasPHI |= Use->isPHI();
371 CSBBs.insert(Use->getParent());
372 }
373
374 if (!HasPHI)
375 return true;
376 return CSBBs.count(MI->getParent());
377}
378
Evan Cheng31156982010-04-21 00:21:07 +0000379void MachineCSE::EnterScope(MachineBasicBlock *MBB) {
380 DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n');
381 ScopeType *Scope = new ScopeType(VNT);
382 ScopeMap[MBB] = Scope;
383}
384
385void MachineCSE::ExitScope(MachineBasicBlock *MBB) {
386 DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n');
387 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
388 assert(SI != ScopeMap.end());
389 ScopeMap.erase(SI);
390 delete SI->second;
391}
392
393bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000394 bool Changed = false;
395
Evan Cheng31f94c72010-03-09 03:21:12 +0000396 SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs;
Evan Cheng16b48b82010-03-03 21:20:05 +0000397 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000398 MachineInstr *MI = &*I;
Evan Cheng16b48b82010-03-03 21:20:05 +0000399 ++I;
Evan Chenga5f32cb2010-03-04 21:18:08 +0000400
401 if (!isCSECandidate(MI))
Evan Cheng6ba95542010-03-03 02:48:20 +0000402 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000403
404 bool FoundCSE = VNT.count(MI);
405 if (!FoundCSE) {
406 // Look for trivial copy coalescing opportunities.
Evan Chengdb8771a2010-04-02 02:21:24 +0000407 if (PerformTrivialCoalescing(MI, MBB)) {
Evan Chengcfea9852011-04-11 18:47:20 +0000408 Changed = true;
409
Evan Chengdb8771a2010-04-02 02:21:24 +0000410 // After coalescing MI itself may become a copy.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000411 if (MI->isCopyLike())
Evan Chengdb8771a2010-04-02 02:21:24 +0000412 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000413 FoundCSE = VNT.count(MI);
Evan Chengdb8771a2010-04-02 02:21:24 +0000414 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000415 }
Evan Chenga63cde22010-12-15 22:16:21 +0000416
417 // Commute commutable instructions.
418 bool Commuted = false;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000419 if (!FoundCSE && MI->isCommutable()) {
Evan Chenga63cde22010-12-15 22:16:21 +0000420 MachineInstr *NewMI = TII->commuteInstruction(MI);
421 if (NewMI) {
422 Commuted = true;
423 FoundCSE = VNT.count(NewMI);
Evan Chengcfea9852011-04-11 18:47:20 +0000424 if (NewMI != MI) {
Evan Chenga63cde22010-12-15 22:16:21 +0000425 // New instruction. It doesn't need to be kept.
426 NewMI->eraseFromParent();
Evan Chengcfea9852011-04-11 18:47:20 +0000427 Changed = true;
428 } else if (!FoundCSE)
Evan Chenga63cde22010-12-15 22:16:21 +0000429 // MI was changed but it didn't help, commute it back!
430 (void)TII->commuteInstruction(MI);
431 }
432 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000433
Evan Cheng189c1ec2010-10-29 23:36:03 +0000434 // If the instruction defines physical registers and the values *may* be
Evan Cheng67bda722010-03-03 23:59:08 +0000435 // used, then it's not safe to replace it with a common subexpression.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000436 // It's also not safe if the instruction uses physical registers.
Evan Cheng97b5beb2012-01-10 02:02:58 +0000437 bool CrossMBBPhysDef = false;
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000438 SmallSet<unsigned, 8> PhysRefs;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000439 SmallVector<unsigned, 2> PhysDefs;
440 if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs, PhysDefs)) {
Evan Cheng67bda722010-03-03 23:59:08 +0000441 FoundCSE = false;
442
Evan Cheng97b5beb2012-01-10 02:02:58 +0000443 // ... Unless the CS is local or is in the sole predecessor block
444 // and it also defines the physical register which is not clobbered
445 // in between and the physical register uses were not clobbered.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000446 unsigned CSVN = VNT.lookup(MI);
447 MachineInstr *CSMI = Exps[CSVN];
Evan Chengf96703e2012-01-11 00:38:11 +0000448 if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef))
Evan Cheng189c1ec2010-10-29 23:36:03 +0000449 FoundCSE = true;
Evan Cheng835810b2010-05-21 21:22:19 +0000450 }
451
Evan Cheng16b48b82010-03-03 21:20:05 +0000452 if (!FoundCSE) {
453 VNT.insert(MI, CurrVN++);
454 Exps.push_back(MI);
455 continue;
456 }
457
458 // Found a common subexpression, eliminate it.
459 unsigned CSVN = VNT.lookup(MI);
460 MachineInstr *CSMI = Exps[CSVN];
461 DEBUG(dbgs() << "Examining: " << *MI);
462 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI);
Evan Cheng31f94c72010-03-09 03:21:12 +0000463
464 // Check if it's profitable to perform this CSE.
465 bool DoCSE = true;
Evan Cheng16b48b82010-03-03 21:20:05 +0000466 unsigned NumDefs = MI->getDesc().getNumDefs();
467 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
468 MachineOperand &MO = MI->getOperand(i);
469 if (!MO.isReg() || !MO.isDef())
470 continue;
471 unsigned OldReg = MO.getReg();
472 unsigned NewReg = CSMI->getOperand(i).getReg();
Evan Cheng6cc1aea2010-03-06 01:14:19 +0000473 if (OldReg == NewReg)
474 continue;
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000475
Evan Cheng6cc1aea2010-03-06 01:14:19 +0000476 assert(TargetRegisterInfo::isVirtualRegister(OldReg) &&
Evan Cheng16b48b82010-03-03 21:20:05 +0000477 TargetRegisterInfo::isVirtualRegister(NewReg) &&
478 "Do not CSE physical register defs!");
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000479
Evan Cheng2938a002010-03-10 02:12:03 +0000480 if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) {
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000481 DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n");
Evan Cheng31f94c72010-03-09 03:21:12 +0000482 DoCSE = false;
483 break;
484 }
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000485
486 // Don't perform CSE if the result of the old instruction cannot exist
487 // within the register class of the new instruction.
488 const TargetRegisterClass *OldRC = MRI->getRegClass(OldReg);
489 if (!MRI->constrainRegClass(NewReg, OldRC)) {
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000490 DEBUG(dbgs() << "*** Not the same register class, avoid CSE!\n");
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000491 DoCSE = false;
492 break;
493 }
494
Evan Cheng31f94c72010-03-09 03:21:12 +0000495 CSEPairs.push_back(std::make_pair(OldReg, NewReg));
Evan Cheng16b48b82010-03-03 21:20:05 +0000496 --NumDefs;
497 }
Evan Cheng31f94c72010-03-09 03:21:12 +0000498
499 // Actually perform the elimination.
500 if (DoCSE) {
Dan Gohman49b45892010-05-13 19:24:00 +0000501 for (unsigned i = 0, e = CSEPairs.size(); i != e; ++i) {
Evan Cheng31f94c72010-03-09 03:21:12 +0000502 MRI->replaceRegWith(CSEPairs[i].first, CSEPairs[i].second);
Dan Gohman49b45892010-05-13 19:24:00 +0000503 MRI->clearKillFlags(CSEPairs[i].second);
504 }
Evan Cheng97b5beb2012-01-10 02:02:58 +0000505
506 if (CrossMBBPhysDef) {
507 // Add physical register defs now coming in from a predecessor to MBB
508 // livein list.
509 while (!PhysDefs.empty()) {
510 unsigned LiveIn = PhysDefs.pop_back_val();
511 if (!MBB->isLiveIn(LiveIn))
512 MBB->addLiveIn(LiveIn);
513 }
514 ++NumCrossBBCSEs;
515 }
516
Evan Cheng31f94c72010-03-09 03:21:12 +0000517 MI->eraseFromParent();
518 ++NumCSEs;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000519 if (!PhysRefs.empty())
Evan Cheng2b4e7272010-06-04 23:28:13 +0000520 ++NumPhysCSEs;
Evan Chenga63cde22010-12-15 22:16:21 +0000521 if (Commuted)
522 ++NumCommutes;
Evan Chengcfea9852011-04-11 18:47:20 +0000523 Changed = true;
Evan Cheng31f94c72010-03-09 03:21:12 +0000524 } else {
Evan Cheng31f94c72010-03-09 03:21:12 +0000525 VNT.insert(MI, CurrVN++);
526 Exps.push_back(MI);
527 }
528 CSEPairs.clear();
Evan Cheng6ba95542010-03-03 02:48:20 +0000529 }
530
Evan Cheng31156982010-04-21 00:21:07 +0000531 return Changed;
532}
533
534/// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
535/// dominator tree node if its a leaf or all of its children are done. Walk
536/// up the dominator tree to destroy ancestors which are now done.
537void
538MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node,
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000539 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren) {
Evan Cheng31156982010-04-21 00:21:07 +0000540 if (OpenChildren[Node])
541 return;
542
543 // Pop scope.
544 ExitScope(Node->getBlock());
545
546 // Now traverse upwards to pop ancestors whose offsprings are all done.
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000547 while (MachineDomTreeNode *Parent = Node->getIDom()) {
Evan Cheng31156982010-04-21 00:21:07 +0000548 unsigned Left = --OpenChildren[Parent];
549 if (Left != 0)
550 break;
551 ExitScope(Parent->getBlock());
552 Node = Parent;
553 }
554}
555
556bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) {
557 SmallVector<MachineDomTreeNode*, 32> Scopes;
558 SmallVector<MachineDomTreeNode*, 8> WorkList;
Evan Cheng31156982010-04-21 00:21:07 +0000559 DenseMap<MachineDomTreeNode*, unsigned> OpenChildren;
560
Evan Chengc2b768f2010-09-17 21:59:42 +0000561 CurrVN = 0;
562
Evan Cheng31156982010-04-21 00:21:07 +0000563 // Perform a DFS walk to determine the order of visit.
564 WorkList.push_back(Node);
565 do {
566 Node = WorkList.pop_back_val();
567 Scopes.push_back(Node);
568 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
569 unsigned NumChildren = Children.size();
570 OpenChildren[Node] = NumChildren;
571 for (unsigned i = 0; i != NumChildren; ++i) {
572 MachineDomTreeNode *Child = Children[i];
Evan Cheng31156982010-04-21 00:21:07 +0000573 WorkList.push_back(Child);
574 }
575 } while (!WorkList.empty());
576
577 // Now perform CSE.
578 bool Changed = false;
579 for (unsigned i = 0, e = Scopes.size(); i != e; ++i) {
580 MachineDomTreeNode *Node = Scopes[i];
581 MachineBasicBlock *MBB = Node->getBlock();
582 EnterScope(MBB);
583 Changed |= ProcessBlock(MBB);
584 // If it's a leaf node, it's done. Traverse upwards to pop ancestors.
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000585 ExitScopeIfDone(Node, OpenChildren);
Evan Cheng31156982010-04-21 00:21:07 +0000586 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000587
588 return Changed;
589}
590
Evan Chengc6fe3332010-03-02 02:38:24 +0000591bool MachineCSE::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000592 TII = MF.getTarget().getInstrInfo();
Evan Chengb3958e82010-03-04 01:33:55 +0000593 TRI = MF.getTarget().getRegisterInfo();
Evan Cheng6ba95542010-03-03 02:48:20 +0000594 MRI = &MF.getRegInfo();
Evan Chenga5f32cb2010-03-04 21:18:08 +0000595 AA = &getAnalysis<AliasAnalysis>();
Evan Cheng31f94c72010-03-09 03:21:12 +0000596 DT = &getAnalysis<MachineDominatorTree>();
Lang Hamesc2e08db2012-02-17 00:27:16 +0000597 AllocatableRegs = TRI->getAllocatableSet(MF);
598 ReservedRegs = TRI->getReservedRegs(MF);
Evan Cheng31156982010-04-21 00:21:07 +0000599 return PerformCSE(DT->getRootNode());
Evan Chengc6fe3332010-03-02 02:38:24 +0000600}