blob: 3031d4588b2ad12922653465e1b884d1513ad3d2 [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();
66 }
67
Evan Chengc6fe3332010-03-02 02:38:24 +000068 private:
Evan Cheng835810b2010-05-21 21:22:19 +000069 const unsigned LookAheadLimit;
Cameron Zwarich53eeba52011-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 Cheng31156982010-04-21 00:21:07 +000075 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
Cameron Zwarich53eeba52011-01-03 04:07:46 +000076 ScopedHTType VNT;
Evan Cheng16b48b82010-03-03 21:20:05 +000077 SmallVector<MachineInstr*, 64> Exps;
Evan Cheng31156982010-04-21 00:21:07 +000078 unsigned CurrVN;
Evan Cheng16b48b82010-03-03 21:20:05 +000079
Evan Chenga5f32cb2010-03-04 21:18:08 +000080 bool PerformTrivialCoalescing(MachineInstr *MI, MachineBasicBlock *MBB);
Evan Chengb3958e82010-03-04 01:33:55 +000081 bool isPhysDefTriviallyDead(unsigned Reg,
82 MachineBasicBlock::const_iterator I,
Evan Cheng835810b2010-05-21 21:22:19 +000083 MachineBasicBlock::const_iterator E) const ;
Evan Cheng189c1ec2010-10-29 23:36:03 +000084 bool hasLivePhysRegDefUses(const MachineInstr *MI,
85 const MachineBasicBlock *MBB,
Evan Cheng97b5beb2012-01-10 02:02:58 +000086 SmallSet<unsigned,8> &PhysRefs,
87 SmallVector<unsigned,2> &PhysDefs) const;
Evan Cheng189c1ec2010-10-29 23:36:03 +000088 bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng97b5beb2012-01-10 02:02:58 +000089 SmallSet<unsigned,8> &PhysRefs,
Evan Chengf96703e2012-01-11 00:38:11 +000090 SmallVector<unsigned,2> &PhysDefs,
Evan Cheng97b5beb2012-01-10 02:02:58 +000091 bool &NonLocal) const;
Evan Chenga5f32cb2010-03-04 21:18:08 +000092 bool isCSECandidate(MachineInstr *MI);
Evan Cheng2938a002010-03-10 02:12:03 +000093 bool isProfitableToCSE(unsigned CSReg, unsigned Reg,
94 MachineInstr *CSMI, MachineInstr *MI);
Evan Cheng31156982010-04-21 00:21:07 +000095 void EnterScope(MachineBasicBlock *MBB);
96 void ExitScope(MachineBasicBlock *MBB);
97 bool ProcessBlock(MachineBasicBlock *MBB);
98 void ExitScopeIfDone(MachineDomTreeNode *Node,
99 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren,
100 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap);
101 bool PerformCSE(MachineDomTreeNode *Node);
Evan Chengc6fe3332010-03-02 02:38:24 +0000102 };
103} // end anonymous namespace
104
105char MachineCSE::ID = 0;
Andrew Trick1dd8c852012-02-08 21:23:13 +0000106char &llvm::MachineCSEID = MachineCSE::ID;
Owen Anderson2ab36d32010-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 Andersonce665bd2010-10-07 22:25:06 +0000112 "Machine Common Subexpression Elimination", false, false)
Evan Chengc6fe3332010-03-02 02:38:24 +0000113
Evan Cheng6ba95542010-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 Cheng16b48b82010-03-03 21:20:05 +0000119 if (!MO.isReg() || !MO.isUse())
120 continue;
121 unsigned Reg = MO.getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000122 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng16b48b82010-03-03 21:20:05 +0000123 continue;
Evan Chengf437f732010-09-17 21:56:26 +0000124 if (!MRI->hasOneNonDBGUse(Reg))
Evan Cheng16b48b82010-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);
129 if (DefMI->getParent() != MBB)
130 continue;
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000131 if (!DefMI->isCopy())
132 continue;
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000133 unsigned SrcReg = DefMI->getOperand(1).getReg();
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000134 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
135 continue;
136 if (DefMI->getOperand(0).getSubReg() || DefMI->getOperand(1).getSubReg())
137 continue;
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +0000138 if (!MRI->constrainRegClass(SrcReg, MRI->getRegClass(Reg)))
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000139 continue;
140 DEBUG(dbgs() << "Coalescing: " << *DefMI);
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +0000141 DEBUG(dbgs() << "*** to: " << *MI);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000142 MO.setReg(SrcReg);
143 MRI->clearKillFlags(SrcReg);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000144 DefMI->eraseFromParent();
145 ++NumCoalesces;
146 Changed = true;
Evan Cheng6ba95542010-03-03 02:48:20 +0000147 }
148
149 return Changed;
150}
151
Evan Cheng835810b2010-05-21 21:22:19 +0000152bool
153MachineCSE::isPhysDefTriviallyDead(unsigned Reg,
154 MachineBasicBlock::const_iterator I,
155 MachineBasicBlock::const_iterator E) const {
Eric Christophere81d0102010-05-21 23:40:03 +0000156 unsigned LookAheadLeft = LookAheadLimit;
Evan Cheng112e5e72010-03-23 20:33:48 +0000157 while (LookAheadLeft) {
Evan Cheng22504252010-03-24 01:50:28 +0000158 // Skip over dbg_value's.
159 while (I != E && I->isDebugValue())
160 ++I;
161
Evan Chengb3958e82010-03-04 01:33:55 +0000162 if (I == E)
163 // Reached end of block, register is obviously dead.
164 return true;
165
Evan Chengb3958e82010-03-04 01:33:55 +0000166 bool SeenDef = false;
167 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
168 const MachineOperand &MO = I->getOperand(i);
169 if (!MO.isReg() || !MO.getReg())
170 continue;
171 if (!TRI->regsOverlap(MO.getReg(), Reg))
172 continue;
173 if (MO.isUse())
Evan Cheng835810b2010-05-21 21:22:19 +0000174 // Found a use!
Evan Chengb3958e82010-03-04 01:33:55 +0000175 return false;
176 SeenDef = true;
177 }
178 if (SeenDef)
Andrew Trick1df91b02012-02-08 21:22:43 +0000179 // See a def of Reg (or an alias) before encountering any use, it's
Evan Chengb3958e82010-03-04 01:33:55 +0000180 // trivially dead.
181 return true;
Evan Cheng112e5e72010-03-23 20:33:48 +0000182
183 --LookAheadLeft;
Evan Chengb3958e82010-03-04 01:33:55 +0000184 ++I;
185 }
186 return false;
187}
188
Evan Cheng189c1ec2010-10-29 23:36:03 +0000189/// hasLivePhysRegDefUses - Return true if the specified instruction read/write
Evan Cheng835810b2010-05-21 21:22:19 +0000190/// physical registers (except for dead defs of physical registers). It also
Evan Cheng2b4e7272010-06-04 23:28:13 +0000191/// returns the physical register def by reference if it's the only one and the
192/// instruction does not uses a physical register.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000193bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI,
194 const MachineBasicBlock *MBB,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000195 SmallSet<unsigned,8> &PhysRefs,
196 SmallVector<unsigned,2> &PhysDefs) const{
Evan Cheng189c1ec2010-10-29 23:36:03 +0000197 MachineBasicBlock::const_iterator I = MI; I = llvm::next(I);
Evan Cheng6ba95542010-03-03 02:48:20 +0000198 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
Evan Cheng835810b2010-05-21 21:22:19 +0000199 const MachineOperand &MO = MI->getOperand(i);
Evan Cheng6ba95542010-03-03 02:48:20 +0000200 if (!MO.isReg())
201 continue;
202 unsigned Reg = MO.getReg();
203 if (!Reg)
204 continue;
Evan Cheng835810b2010-05-21 21:22:19 +0000205 if (TargetRegisterInfo::isVirtualRegister(Reg))
206 continue;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000207 // If the def is dead, it's ok. But the def may not marked "dead". That's
Evan Cheng835810b2010-05-21 21:22:19 +0000208 // common since this pass is run before livevariables. We can scan
209 // forward a few instructions and check if it is obviously dead.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000210 if (MO.isDef() &&
211 (MO.isDead() || isPhysDefTriviallyDead(Reg, I, MBB->end())))
212 continue;
213 PhysRefs.insert(Reg);
Evan Cheng97b5beb2012-01-10 02:02:58 +0000214 if (MO.isDef())
215 PhysDefs.push_back(Reg);
Evan Cheng189c1ec2010-10-29 23:36:03 +0000216 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias)
217 PhysRefs.insert(*Alias);
Evan Chengb3958e82010-03-04 01:33:55 +0000218 }
219
Evan Cheng189c1ec2010-10-29 23:36:03 +0000220 return !PhysRefs.empty();
Evan Chengc6fe3332010-03-02 02:38:24 +0000221}
222
Evan Cheng189c1ec2010-10-29 23:36:03 +0000223bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000224 SmallSet<unsigned,8> &PhysRefs,
Evan Chengf96703e2012-01-11 00:38:11 +0000225 SmallVector<unsigned,2> &PhysDefs,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000226 bool &NonLocal) const {
Eli Friedman5e926ac2011-05-06 05:23:07 +0000227 // For now conservatively returns false if the common subexpression is
Evan Cheng97b5beb2012-01-10 02:02:58 +0000228 // not in the same basic block as the given instruction. The only exception
229 // is if the common subexpression is in the sole predecessor block.
230 const MachineBasicBlock *MBB = MI->getParent();
231 const MachineBasicBlock *CSMBB = CSMI->getParent();
232
233 bool CrossMBB = false;
234 if (CSMBB != MBB) {
Evan Chengf96703e2012-01-11 00:38:11 +0000235 if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB)
Evan Cheng97b5beb2012-01-10 02:02:58 +0000236 return false;
Evan Chengf96703e2012-01-11 00:38:11 +0000237
238 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) {
239 if (TRI->isInAllocatableClass(PhysDefs[i]))
240 // Avoid extending live range of physical registers unless
241 // they are unallocatable.
242 return false;
243 }
244 CrossMBB = true;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000245 }
Eli Friedman5e926ac2011-05-06 05:23:07 +0000246 MachineBasicBlock::const_iterator I = CSMI; I = llvm::next(I);
247 MachineBasicBlock::const_iterator E = MI;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000248 MachineBasicBlock::const_iterator EE = CSMBB->end();
Evan Cheng835810b2010-05-21 21:22:19 +0000249 unsigned LookAheadLeft = LookAheadLimit;
250 while (LookAheadLeft) {
Eli Friedman5e926ac2011-05-06 05:23:07 +0000251 // Skip over dbg_value's.
Evan Cheng97b5beb2012-01-10 02:02:58 +0000252 while (I != E && I != EE && I->isDebugValue())
Evan Cheng835810b2010-05-21 21:22:19 +0000253 ++I;
Eli Friedman5e926ac2011-05-06 05:23:07 +0000254
Evan Cheng97b5beb2012-01-10 02:02:58 +0000255 if (I == EE) {
256 assert(CrossMBB && "Reaching end-of-MBB without finding MI?");
Duncan Sands5b8a1db2012-02-05 14:20:11 +0000257 (void)CrossMBB;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000258 CrossMBB = false;
259 NonLocal = true;
260 I = MBB->begin();
261 EE = MBB->end();
262 continue;
263 }
264
Eli Friedman5e926ac2011-05-06 05:23:07 +0000265 if (I == E)
266 return true;
267
268 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
269 const MachineOperand &MO = I->getOperand(i);
270 if (!MO.isReg() || !MO.isDef())
271 continue;
272 unsigned MOReg = MO.getReg();
273 if (TargetRegisterInfo::isVirtualRegister(MOReg))
274 continue;
275 if (PhysRefs.count(MOReg))
276 return false;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000277 }
Eli Friedman5e926ac2011-05-06 05:23:07 +0000278
279 --LookAheadLeft;
280 ++I;
Evan Cheng835810b2010-05-21 21:22:19 +0000281 }
282
283 return false;
284}
285
Evan Chenga5f32cb2010-03-04 21:18:08 +0000286bool MachineCSE::isCSECandidate(MachineInstr *MI) {
Evan Cheng51960182010-03-08 23:49:12 +0000287 if (MI->isLabel() || MI->isPHI() || MI->isImplicitDef() ||
Dale Johannesene68ea062010-03-11 02:10:24 +0000288 MI->isKill() || MI->isInlineAsm() || MI->isDebugValue())
Evan Cheng51960182010-03-08 23:49:12 +0000289 return false;
290
Evan Cheng2938a002010-03-10 02:12:03 +0000291 // Ignore copies.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000292 if (MI->isCopyLike())
Evan Chenga5f32cb2010-03-04 21:18:08 +0000293 return false;
294
295 // Ignore stuff that we obviously can't move.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000296 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
Evan Chengc36b7062011-01-07 23:50:32 +0000297 MI->hasUnmodeledSideEffects())
Evan Chenga5f32cb2010-03-04 21:18:08 +0000298 return false;
299
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000300 if (MI->mayLoad()) {
Evan Chenga5f32cb2010-03-04 21:18:08 +0000301 // Okay, this instruction does a load. As a refinement, we allow the target
302 // to decide whether the loaded value is actually a constant. If so, we can
303 // actually use it as a load.
304 if (!MI->isInvariantLoad(AA))
305 // FIXME: we should be able to hoist loads with no other side effects if
306 // there are no other instructions which can change memory in this loop.
307 // This is a trivial form of alias analysis.
308 return false;
309 }
310 return true;
311}
312
Evan Cheng31f94c72010-03-09 03:21:12 +0000313/// isProfitableToCSE - Return true if it's profitable to eliminate MI with a
314/// common expression that defines Reg.
Evan Cheng2938a002010-03-10 02:12:03 +0000315bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg,
316 MachineInstr *CSMI, MachineInstr *MI) {
317 // FIXME: Heuristics that works around the lack the live range splitting.
318
Chris Lattner622a11b2011-01-10 07:51:31 +0000319 // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in
320 // an immediate predecessor. We don't want to increase register pressure and
321 // end up causing other computation to be spilled.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000322 if (MI->isAsCheapAsAMove()) {
Evan Cheng2938a002010-03-10 02:12:03 +0000323 MachineBasicBlock *CSBB = CSMI->getParent();
324 MachineBasicBlock *BB = MI->getParent();
Chris Lattner622a11b2011-01-10 07:51:31 +0000325 if (CSBB != BB && !CSBB->isSuccessor(BB))
Evan Cheng2938a002010-03-10 02:12:03 +0000326 return false;
327 }
328
329 // Heuristics #2: If the expression doesn't not use a vr and the only use
330 // of the redundant computation are copies, do not cse.
331 bool HasVRegUse = false;
332 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
333 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000334 if (MO.isReg() && MO.isUse() &&
Evan Cheng2938a002010-03-10 02:12:03 +0000335 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
336 HasVRegUse = true;
337 break;
338 }
339 }
340 if (!HasVRegUse) {
341 bool HasNonCopyUse = false;
342 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg),
343 E = MRI->use_nodbg_end(); I != E; ++I) {
344 MachineInstr *Use = &*I;
345 // Ignore copies.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000346 if (!Use->isCopyLike()) {
Evan Cheng2938a002010-03-10 02:12:03 +0000347 HasNonCopyUse = true;
348 break;
349 }
350 }
351 if (!HasNonCopyUse)
352 return false;
353 }
354
355 // Heuristics #3: If the common subexpression is used by PHIs, do not reuse
356 // it unless the defined value is already used in the BB of the new use.
Evan Cheng31f94c72010-03-09 03:21:12 +0000357 bool HasPHI = false;
358 SmallPtrSet<MachineBasicBlock*, 4> CSBBs;
Evan Cheng2938a002010-03-10 02:12:03 +0000359 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(CSReg),
Evan Cheng31f94c72010-03-09 03:21:12 +0000360 E = MRI->use_nodbg_end(); I != E; ++I) {
361 MachineInstr *Use = &*I;
362 HasPHI |= Use->isPHI();
363 CSBBs.insert(Use->getParent());
364 }
365
366 if (!HasPHI)
367 return true;
368 return CSBBs.count(MI->getParent());
369}
370
Evan Cheng31156982010-04-21 00:21:07 +0000371void MachineCSE::EnterScope(MachineBasicBlock *MBB) {
372 DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n');
373 ScopeType *Scope = new ScopeType(VNT);
374 ScopeMap[MBB] = Scope;
375}
376
377void MachineCSE::ExitScope(MachineBasicBlock *MBB) {
378 DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n');
379 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
380 assert(SI != ScopeMap.end());
381 ScopeMap.erase(SI);
382 delete SI->second;
383}
384
385bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000386 bool Changed = false;
387
Evan Cheng31f94c72010-03-09 03:21:12 +0000388 SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs;
Evan Cheng16b48b82010-03-03 21:20:05 +0000389 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000390 MachineInstr *MI = &*I;
Evan Cheng16b48b82010-03-03 21:20:05 +0000391 ++I;
Evan Chenga5f32cb2010-03-04 21:18:08 +0000392
393 if (!isCSECandidate(MI))
Evan Cheng6ba95542010-03-03 02:48:20 +0000394 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000395
396 bool FoundCSE = VNT.count(MI);
397 if (!FoundCSE) {
398 // Look for trivial copy coalescing opportunities.
Evan Chengdb8771a2010-04-02 02:21:24 +0000399 if (PerformTrivialCoalescing(MI, MBB)) {
Evan Chengcfea9852011-04-11 18:47:20 +0000400 Changed = true;
401
Evan Chengdb8771a2010-04-02 02:21:24 +0000402 // After coalescing MI itself may become a copy.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000403 if (MI->isCopyLike())
Evan Chengdb8771a2010-04-02 02:21:24 +0000404 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000405 FoundCSE = VNT.count(MI);
Evan Chengdb8771a2010-04-02 02:21:24 +0000406 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000407 }
Evan Chenga63cde22010-12-15 22:16:21 +0000408
409 // Commute commutable instructions.
410 bool Commuted = false;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000411 if (!FoundCSE && MI->isCommutable()) {
Evan Chenga63cde22010-12-15 22:16:21 +0000412 MachineInstr *NewMI = TII->commuteInstruction(MI);
413 if (NewMI) {
414 Commuted = true;
415 FoundCSE = VNT.count(NewMI);
Evan Chengcfea9852011-04-11 18:47:20 +0000416 if (NewMI != MI) {
Evan Chenga63cde22010-12-15 22:16:21 +0000417 // New instruction. It doesn't need to be kept.
418 NewMI->eraseFromParent();
Evan Chengcfea9852011-04-11 18:47:20 +0000419 Changed = true;
420 } else if (!FoundCSE)
Evan Chenga63cde22010-12-15 22:16:21 +0000421 // MI was changed but it didn't help, commute it back!
422 (void)TII->commuteInstruction(MI);
423 }
424 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000425
Evan Cheng189c1ec2010-10-29 23:36:03 +0000426 // If the instruction defines physical registers and the values *may* be
Evan Cheng67bda722010-03-03 23:59:08 +0000427 // used, then it's not safe to replace it with a common subexpression.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000428 // It's also not safe if the instruction uses physical registers.
Evan Cheng97b5beb2012-01-10 02:02:58 +0000429 bool CrossMBBPhysDef = false;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000430 SmallSet<unsigned,8> PhysRefs;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000431 SmallVector<unsigned, 2> PhysDefs;
432 if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs, PhysDefs)) {
Evan Cheng67bda722010-03-03 23:59:08 +0000433 FoundCSE = false;
434
Evan Cheng97b5beb2012-01-10 02:02:58 +0000435 // ... Unless the CS is local or is in the sole predecessor block
436 // and it also defines the physical register which is not clobbered
437 // in between and the physical register uses were not clobbered.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000438 unsigned CSVN = VNT.lookup(MI);
439 MachineInstr *CSMI = Exps[CSVN];
Evan Chengf96703e2012-01-11 00:38:11 +0000440 if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef))
Evan Cheng189c1ec2010-10-29 23:36:03 +0000441 FoundCSE = true;
Evan Cheng835810b2010-05-21 21:22:19 +0000442 }
443
Evan Cheng16b48b82010-03-03 21:20:05 +0000444 if (!FoundCSE) {
445 VNT.insert(MI, CurrVN++);
446 Exps.push_back(MI);
447 continue;
448 }
449
450 // Found a common subexpression, eliminate it.
451 unsigned CSVN = VNT.lookup(MI);
452 MachineInstr *CSMI = Exps[CSVN];
453 DEBUG(dbgs() << "Examining: " << *MI);
454 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI);
Evan Cheng31f94c72010-03-09 03:21:12 +0000455
456 // Check if it's profitable to perform this CSE.
457 bool DoCSE = true;
Evan Cheng16b48b82010-03-03 21:20:05 +0000458 unsigned NumDefs = MI->getDesc().getNumDefs();
459 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
460 MachineOperand &MO = MI->getOperand(i);
461 if (!MO.isReg() || !MO.isDef())
462 continue;
463 unsigned OldReg = MO.getReg();
464 unsigned NewReg = CSMI->getOperand(i).getReg();
Evan Cheng6cc1aea2010-03-06 01:14:19 +0000465 if (OldReg == NewReg)
466 continue;
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000467
Evan Cheng6cc1aea2010-03-06 01:14:19 +0000468 assert(TargetRegisterInfo::isVirtualRegister(OldReg) &&
Evan Cheng16b48b82010-03-03 21:20:05 +0000469 TargetRegisterInfo::isVirtualRegister(NewReg) &&
470 "Do not CSE physical register defs!");
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000471
Evan Cheng2938a002010-03-10 02:12:03 +0000472 if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) {
Evan Cheng31f94c72010-03-09 03:21:12 +0000473 DoCSE = false;
474 break;
475 }
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000476
477 // Don't perform CSE if the result of the old instruction cannot exist
478 // within the register class of the new instruction.
479 const TargetRegisterClass *OldRC = MRI->getRegClass(OldReg);
480 if (!MRI->constrainRegClass(NewReg, OldRC)) {
481 DoCSE = false;
482 break;
483 }
484
Evan Cheng31f94c72010-03-09 03:21:12 +0000485 CSEPairs.push_back(std::make_pair(OldReg, NewReg));
Evan Cheng16b48b82010-03-03 21:20:05 +0000486 --NumDefs;
487 }
Evan Cheng31f94c72010-03-09 03:21:12 +0000488
489 // Actually perform the elimination.
490 if (DoCSE) {
Dan Gohman49b45892010-05-13 19:24:00 +0000491 for (unsigned i = 0, e = CSEPairs.size(); i != e; ++i) {
Evan Cheng31f94c72010-03-09 03:21:12 +0000492 MRI->replaceRegWith(CSEPairs[i].first, CSEPairs[i].second);
Dan Gohman49b45892010-05-13 19:24:00 +0000493 MRI->clearKillFlags(CSEPairs[i].second);
494 }
Evan Cheng97b5beb2012-01-10 02:02:58 +0000495
496 if (CrossMBBPhysDef) {
497 // Add physical register defs now coming in from a predecessor to MBB
498 // livein list.
499 while (!PhysDefs.empty()) {
500 unsigned LiveIn = PhysDefs.pop_back_val();
501 if (!MBB->isLiveIn(LiveIn))
502 MBB->addLiveIn(LiveIn);
503 }
504 ++NumCrossBBCSEs;
505 }
506
Evan Cheng31f94c72010-03-09 03:21:12 +0000507 MI->eraseFromParent();
508 ++NumCSEs;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000509 if (!PhysRefs.empty())
Evan Cheng2b4e7272010-06-04 23:28:13 +0000510 ++NumPhysCSEs;
Evan Chenga63cde22010-12-15 22:16:21 +0000511 if (Commuted)
512 ++NumCommutes;
Evan Chengcfea9852011-04-11 18:47:20 +0000513 Changed = true;
Evan Cheng31f94c72010-03-09 03:21:12 +0000514 } else {
515 DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n");
516 VNT.insert(MI, CurrVN++);
517 Exps.push_back(MI);
518 }
519 CSEPairs.clear();
Evan Cheng6ba95542010-03-03 02:48:20 +0000520 }
521
Evan Cheng31156982010-04-21 00:21:07 +0000522 return Changed;
523}
524
525/// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
526/// dominator tree node if its a leaf or all of its children are done. Walk
527/// up the dominator tree to destroy ancestors which are now done.
528void
529MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node,
530 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren,
531 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap) {
532 if (OpenChildren[Node])
533 return;
534
535 // Pop scope.
536 ExitScope(Node->getBlock());
537
538 // Now traverse upwards to pop ancestors whose offsprings are all done.
539 while (MachineDomTreeNode *Parent = ParentMap[Node]) {
540 unsigned Left = --OpenChildren[Parent];
541 if (Left != 0)
542 break;
543 ExitScope(Parent->getBlock());
544 Node = Parent;
545 }
546}
547
548bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) {
549 SmallVector<MachineDomTreeNode*, 32> Scopes;
550 SmallVector<MachineDomTreeNode*, 8> WorkList;
551 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> ParentMap;
552 DenseMap<MachineDomTreeNode*, unsigned> OpenChildren;
553
Evan Chengc2b768f2010-09-17 21:59:42 +0000554 CurrVN = 0;
555
Evan Cheng31156982010-04-21 00:21:07 +0000556 // Perform a DFS walk to determine the order of visit.
557 WorkList.push_back(Node);
558 do {
559 Node = WorkList.pop_back_val();
560 Scopes.push_back(Node);
561 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
562 unsigned NumChildren = Children.size();
563 OpenChildren[Node] = NumChildren;
564 for (unsigned i = 0; i != NumChildren; ++i) {
565 MachineDomTreeNode *Child = Children[i];
566 ParentMap[Child] = Node;
567 WorkList.push_back(Child);
568 }
569 } while (!WorkList.empty());
570
571 // Now perform CSE.
572 bool Changed = false;
573 for (unsigned i = 0, e = Scopes.size(); i != e; ++i) {
574 MachineDomTreeNode *Node = Scopes[i];
575 MachineBasicBlock *MBB = Node->getBlock();
576 EnterScope(MBB);
577 Changed |= ProcessBlock(MBB);
578 // If it's a leaf node, it's done. Traverse upwards to pop ancestors.
579 ExitScopeIfDone(Node, OpenChildren, ParentMap);
580 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000581
582 return Changed;
583}
584
Evan Chengc6fe3332010-03-02 02:38:24 +0000585bool MachineCSE::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000586 TII = MF.getTarget().getInstrInfo();
Evan Chengb3958e82010-03-04 01:33:55 +0000587 TRI = MF.getTarget().getRegisterInfo();
Evan Cheng6ba95542010-03-03 02:48:20 +0000588 MRI = &MF.getRegInfo();
Evan Chenga5f32cb2010-03-04 21:18:08 +0000589 AA = &getAnalysis<AliasAnalysis>();
Evan Cheng31f94c72010-03-09 03:21:12 +0000590 DT = &getAnalysis<MachineDominatorTree>();
Evan Cheng31156982010-04-21 00:21:07 +0000591 return PerformCSE(DT->getRootNode());
Evan Chengc6fe3332010-03-02 02:38:24 +0000592}