blob: 9d46aaab8dfa36def1f34996a95465fea1d46e8d [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);
53
54 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;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000106INITIALIZE_PASS_BEGIN(MachineCSE, "machine-cse",
107 "Machine Common Subexpression Elimination", false, false)
108INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
109INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
110INITIALIZE_PASS_END(MachineCSE, "machine-cse",
Owen Andersonce665bd2010-10-07 22:25:06 +0000111 "Machine Common Subexpression Elimination", false, false)
Evan Chengc6fe3332010-03-02 02:38:24 +0000112
113FunctionPass *llvm::createMachineCSEPass() { return new MachineCSE(); }
114
Evan Cheng6ba95542010-03-03 02:48:20 +0000115bool MachineCSE::PerformTrivialCoalescing(MachineInstr *MI,
116 MachineBasicBlock *MBB) {
117 bool Changed = false;
118 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
119 MachineOperand &MO = MI->getOperand(i);
Evan Cheng16b48b82010-03-03 21:20:05 +0000120 if (!MO.isReg() || !MO.isUse())
121 continue;
122 unsigned Reg = MO.getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000123 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng16b48b82010-03-03 21:20:05 +0000124 continue;
Evan Chengf437f732010-09-17 21:56:26 +0000125 if (!MRI->hasOneNonDBGUse(Reg))
Evan Cheng16b48b82010-03-03 21:20:05 +0000126 // Only coalesce single use copies. This ensure the copy will be
127 // deleted.
128 continue;
129 MachineInstr *DefMI = MRI->getVRegDef(Reg);
130 if (DefMI->getParent() != MBB)
131 continue;
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000132 if (!DefMI->isCopy())
133 continue;
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000134 unsigned SrcReg = DefMI->getOperand(1).getReg();
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000135 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
136 continue;
137 if (DefMI->getOperand(0).getSubReg() || DefMI->getOperand(1).getSubReg())
138 continue;
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +0000139 if (!MRI->constrainRegClass(SrcReg, MRI->getRegClass(Reg)))
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000140 continue;
141 DEBUG(dbgs() << "Coalescing: " << *DefMI);
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +0000142 DEBUG(dbgs() << "*** to: " << *MI);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000143 MO.setReg(SrcReg);
144 MRI->clearKillFlags(SrcReg);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000145 DefMI->eraseFromParent();
146 ++NumCoalesces;
147 Changed = true;
Evan Cheng6ba95542010-03-03 02:48:20 +0000148 }
149
150 return Changed;
151}
152
Evan Cheng835810b2010-05-21 21:22:19 +0000153bool
154MachineCSE::isPhysDefTriviallyDead(unsigned Reg,
155 MachineBasicBlock::const_iterator I,
156 MachineBasicBlock::const_iterator E) const {
Eric Christophere81d0102010-05-21 23:40:03 +0000157 unsigned LookAheadLeft = LookAheadLimit;
Evan Cheng112e5e72010-03-23 20:33:48 +0000158 while (LookAheadLeft) {
Evan Cheng22504252010-03-24 01:50:28 +0000159 // Skip over dbg_value's.
160 while (I != E && I->isDebugValue())
161 ++I;
162
Evan Chengb3958e82010-03-04 01:33:55 +0000163 if (I == E)
164 // Reached end of block, register is obviously dead.
165 return true;
166
Evan Chengb3958e82010-03-04 01:33:55 +0000167 bool SeenDef = false;
168 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
169 const MachineOperand &MO = I->getOperand(i);
170 if (!MO.isReg() || !MO.getReg())
171 continue;
172 if (!TRI->regsOverlap(MO.getReg(), Reg))
173 continue;
174 if (MO.isUse())
Evan Cheng835810b2010-05-21 21:22:19 +0000175 // Found a use!
Evan Chengb3958e82010-03-04 01:33:55 +0000176 return false;
177 SeenDef = true;
178 }
179 if (SeenDef)
180 // See a def of Reg (or an alias) before encountering any use, it's
181 // trivially dead.
182 return true;
Evan Cheng112e5e72010-03-23 20:33:48 +0000183
184 --LookAheadLeft;
Evan Chengb3958e82010-03-04 01:33:55 +0000185 ++I;
186 }
187 return false;
188}
189
Evan Cheng189c1ec2010-10-29 23:36:03 +0000190/// hasLivePhysRegDefUses - Return true if the specified instruction read/write
Evan Cheng835810b2010-05-21 21:22:19 +0000191/// physical registers (except for dead defs of physical registers). It also
Evan Cheng2b4e7272010-06-04 23:28:13 +0000192/// returns the physical register def by reference if it's the only one and the
193/// instruction does not uses a physical register.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000194bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI,
195 const MachineBasicBlock *MBB,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000196 SmallSet<unsigned,8> &PhysRefs,
197 SmallVector<unsigned,2> &PhysDefs) const{
Evan Cheng189c1ec2010-10-29 23:36:03 +0000198 MachineBasicBlock::const_iterator I = MI; I = llvm::next(I);
Evan Cheng6ba95542010-03-03 02:48:20 +0000199 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
Evan Cheng835810b2010-05-21 21:22:19 +0000200 const MachineOperand &MO = MI->getOperand(i);
Evan Cheng6ba95542010-03-03 02:48:20 +0000201 if (!MO.isReg())
202 continue;
203 unsigned Reg = MO.getReg();
204 if (!Reg)
205 continue;
Evan Cheng835810b2010-05-21 21:22:19 +0000206 if (TargetRegisterInfo::isVirtualRegister(Reg))
207 continue;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000208 // If the def is dead, it's ok. But the def may not marked "dead". That's
Evan Cheng835810b2010-05-21 21:22:19 +0000209 // common since this pass is run before livevariables. We can scan
210 // forward a few instructions and check if it is obviously dead.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000211 if (MO.isDef() &&
212 (MO.isDead() || isPhysDefTriviallyDead(Reg, I, MBB->end())))
213 continue;
214 PhysRefs.insert(Reg);
Evan Cheng97b5beb2012-01-10 02:02:58 +0000215 if (MO.isDef())
216 PhysDefs.push_back(Reg);
Evan Cheng189c1ec2010-10-29 23:36:03 +0000217 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias)
218 PhysRefs.insert(*Alias);
Evan Chengb3958e82010-03-04 01:33:55 +0000219 }
220
Evan Cheng189c1ec2010-10-29 23:36:03 +0000221 return !PhysRefs.empty();
Evan Chengc6fe3332010-03-02 02:38:24 +0000222}
223
Evan Cheng189c1ec2010-10-29 23:36:03 +0000224bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000225 SmallSet<unsigned,8> &PhysRefs,
Evan Chengf96703e2012-01-11 00:38:11 +0000226 SmallVector<unsigned,2> &PhysDefs,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000227 bool &NonLocal) const {
Eli Friedman5e926ac2011-05-06 05:23:07 +0000228 // For now conservatively returns false if the common subexpression is
Evan Cheng97b5beb2012-01-10 02:02:58 +0000229 // not in the same basic block as the given instruction. The only exception
230 // is if the common subexpression is in the sole predecessor block.
231 const MachineBasicBlock *MBB = MI->getParent();
232 const MachineBasicBlock *CSMBB = CSMI->getParent();
233
234 bool CrossMBB = false;
235 if (CSMBB != MBB) {
Evan Chengf96703e2012-01-11 00:38:11 +0000236 if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB)
Evan Cheng97b5beb2012-01-10 02:02:58 +0000237 return false;
Evan Chengf96703e2012-01-11 00:38:11 +0000238
239 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) {
240 if (TRI->isInAllocatableClass(PhysDefs[i]))
241 // Avoid extending live range of physical registers unless
242 // they are unallocatable.
243 return false;
244 }
245 CrossMBB = true;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000246 }
Eli Friedman5e926ac2011-05-06 05:23:07 +0000247 MachineBasicBlock::const_iterator I = CSMI; I = llvm::next(I);
248 MachineBasicBlock::const_iterator E = MI;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000249 MachineBasicBlock::const_iterator EE = CSMBB->end();
Evan Cheng835810b2010-05-21 21:22:19 +0000250 unsigned LookAheadLeft = LookAheadLimit;
251 while (LookAheadLeft) {
Eli Friedman5e926ac2011-05-06 05:23:07 +0000252 // Skip over dbg_value's.
Evan Cheng97b5beb2012-01-10 02:02:58 +0000253 while (I != E && I != EE && I->isDebugValue())
Evan Cheng835810b2010-05-21 21:22:19 +0000254 ++I;
Eli Friedman5e926ac2011-05-06 05:23:07 +0000255
Evan Cheng97b5beb2012-01-10 02:02:58 +0000256 if (I == EE) {
257 assert(CrossMBB && "Reaching end-of-MBB without finding MI?");
Duncan Sands5b8a1db2012-02-05 14:20:11 +0000258 (void)CrossMBB;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000259 CrossMBB = false;
260 NonLocal = true;
261 I = MBB->begin();
262 EE = MBB->end();
263 continue;
264 }
265
Eli Friedman5e926ac2011-05-06 05:23:07 +0000266 if (I == E)
267 return true;
268
269 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
270 const MachineOperand &MO = I->getOperand(i);
271 if (!MO.isReg() || !MO.isDef())
272 continue;
273 unsigned MOReg = MO.getReg();
274 if (TargetRegisterInfo::isVirtualRegister(MOReg))
275 continue;
276 if (PhysRefs.count(MOReg))
277 return false;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000278 }
Eli Friedman5e926ac2011-05-06 05:23:07 +0000279
280 --LookAheadLeft;
281 ++I;
Evan Cheng835810b2010-05-21 21:22:19 +0000282 }
283
284 return false;
285}
286
Evan Chenga5f32cb2010-03-04 21:18:08 +0000287bool MachineCSE::isCSECandidate(MachineInstr *MI) {
Evan Cheng51960182010-03-08 23:49:12 +0000288 if (MI->isLabel() || MI->isPHI() || MI->isImplicitDef() ||
Dale Johannesene68ea062010-03-11 02:10:24 +0000289 MI->isKill() || MI->isInlineAsm() || MI->isDebugValue())
Evan Cheng51960182010-03-08 23:49:12 +0000290 return false;
291
Evan Cheng2938a002010-03-10 02:12:03 +0000292 // Ignore copies.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000293 if (MI->isCopyLike())
Evan Chenga5f32cb2010-03-04 21:18:08 +0000294 return false;
295
296 // Ignore stuff that we obviously can't move.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000297 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
Evan Chengc36b7062011-01-07 23:50:32 +0000298 MI->hasUnmodeledSideEffects())
Evan Chenga5f32cb2010-03-04 21:18:08 +0000299 return false;
300
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000301 if (MI->mayLoad()) {
Evan Chenga5f32cb2010-03-04 21:18:08 +0000302 // Okay, this instruction does a load. As a refinement, we allow the target
303 // to decide whether the loaded value is actually a constant. If so, we can
304 // actually use it as a load.
305 if (!MI->isInvariantLoad(AA))
306 // FIXME: we should be able to hoist loads with no other side effects if
307 // there are no other instructions which can change memory in this loop.
308 // This is a trivial form of alias analysis.
309 return false;
310 }
311 return true;
312}
313
Evan Cheng31f94c72010-03-09 03:21:12 +0000314/// isProfitableToCSE - Return true if it's profitable to eliminate MI with a
315/// common expression that defines Reg.
Evan Cheng2938a002010-03-10 02:12:03 +0000316bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg,
317 MachineInstr *CSMI, MachineInstr *MI) {
318 // FIXME: Heuristics that works around the lack the live range splitting.
319
Chris Lattner622a11b2011-01-10 07:51:31 +0000320 // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in
321 // an immediate predecessor. We don't want to increase register pressure and
322 // end up causing other computation to be spilled.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000323 if (MI->isAsCheapAsAMove()) {
Evan Cheng2938a002010-03-10 02:12:03 +0000324 MachineBasicBlock *CSBB = CSMI->getParent();
325 MachineBasicBlock *BB = MI->getParent();
Chris Lattner622a11b2011-01-10 07:51:31 +0000326 if (CSBB != BB && !CSBB->isSuccessor(BB))
Evan Cheng2938a002010-03-10 02:12:03 +0000327 return false;
328 }
329
330 // Heuristics #2: If the expression doesn't not use a vr and the only use
331 // of the redundant computation are copies, do not cse.
332 bool HasVRegUse = false;
333 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
334 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000335 if (MO.isReg() && MO.isUse() &&
Evan Cheng2938a002010-03-10 02:12:03 +0000336 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
337 HasVRegUse = true;
338 break;
339 }
340 }
341 if (!HasVRegUse) {
342 bool HasNonCopyUse = false;
343 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg),
344 E = MRI->use_nodbg_end(); I != E; ++I) {
345 MachineInstr *Use = &*I;
346 // Ignore copies.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000347 if (!Use->isCopyLike()) {
Evan Cheng2938a002010-03-10 02:12:03 +0000348 HasNonCopyUse = true;
349 break;
350 }
351 }
352 if (!HasNonCopyUse)
353 return false;
354 }
355
356 // Heuristics #3: If the common subexpression is used by PHIs, do not reuse
357 // it unless the defined value is already used in the BB of the new use.
Evan Cheng31f94c72010-03-09 03:21:12 +0000358 bool HasPHI = false;
359 SmallPtrSet<MachineBasicBlock*, 4> CSBBs;
Evan Cheng2938a002010-03-10 02:12:03 +0000360 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(CSReg),
Evan Cheng31f94c72010-03-09 03:21:12 +0000361 E = MRI->use_nodbg_end(); I != E; ++I) {
362 MachineInstr *Use = &*I;
363 HasPHI |= Use->isPHI();
364 CSBBs.insert(Use->getParent());
365 }
366
367 if (!HasPHI)
368 return true;
369 return CSBBs.count(MI->getParent());
370}
371
Evan Cheng31156982010-04-21 00:21:07 +0000372void MachineCSE::EnterScope(MachineBasicBlock *MBB) {
373 DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n');
374 ScopeType *Scope = new ScopeType(VNT);
375 ScopeMap[MBB] = Scope;
376}
377
378void MachineCSE::ExitScope(MachineBasicBlock *MBB) {
379 DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n');
380 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
381 assert(SI != ScopeMap.end());
382 ScopeMap.erase(SI);
383 delete SI->second;
384}
385
386bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000387 bool Changed = false;
388
Evan Cheng31f94c72010-03-09 03:21:12 +0000389 SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs;
Evan Cheng16b48b82010-03-03 21:20:05 +0000390 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000391 MachineInstr *MI = &*I;
Evan Cheng16b48b82010-03-03 21:20:05 +0000392 ++I;
Evan Chenga5f32cb2010-03-04 21:18:08 +0000393
394 if (!isCSECandidate(MI))
Evan Cheng6ba95542010-03-03 02:48:20 +0000395 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000396
397 bool FoundCSE = VNT.count(MI);
398 if (!FoundCSE) {
399 // Look for trivial copy coalescing opportunities.
Evan Chengdb8771a2010-04-02 02:21:24 +0000400 if (PerformTrivialCoalescing(MI, MBB)) {
Evan Chengcfea9852011-04-11 18:47:20 +0000401 Changed = true;
402
Evan Chengdb8771a2010-04-02 02:21:24 +0000403 // After coalescing MI itself may become a copy.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000404 if (MI->isCopyLike())
Evan Chengdb8771a2010-04-02 02:21:24 +0000405 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000406 FoundCSE = VNT.count(MI);
Evan Chengdb8771a2010-04-02 02:21:24 +0000407 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000408 }
Evan Chenga63cde22010-12-15 22:16:21 +0000409
410 // Commute commutable instructions.
411 bool Commuted = false;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000412 if (!FoundCSE && MI->isCommutable()) {
Evan Chenga63cde22010-12-15 22:16:21 +0000413 MachineInstr *NewMI = TII->commuteInstruction(MI);
414 if (NewMI) {
415 Commuted = true;
416 FoundCSE = VNT.count(NewMI);
Evan Chengcfea9852011-04-11 18:47:20 +0000417 if (NewMI != MI) {
Evan Chenga63cde22010-12-15 22:16:21 +0000418 // New instruction. It doesn't need to be kept.
419 NewMI->eraseFromParent();
Evan Chengcfea9852011-04-11 18:47:20 +0000420 Changed = true;
421 } else if (!FoundCSE)
Evan Chenga63cde22010-12-15 22:16:21 +0000422 // MI was changed but it didn't help, commute it back!
423 (void)TII->commuteInstruction(MI);
424 }
425 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000426
Evan Cheng189c1ec2010-10-29 23:36:03 +0000427 // If the instruction defines physical registers and the values *may* be
Evan Cheng67bda722010-03-03 23:59:08 +0000428 // used, then it's not safe to replace it with a common subexpression.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000429 // It's also not safe if the instruction uses physical registers.
Evan Cheng97b5beb2012-01-10 02:02:58 +0000430 bool CrossMBBPhysDef = false;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000431 SmallSet<unsigned,8> PhysRefs;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000432 SmallVector<unsigned, 2> PhysDefs;
433 if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs, PhysDefs)) {
Evan Cheng67bda722010-03-03 23:59:08 +0000434 FoundCSE = false;
435
Evan Cheng97b5beb2012-01-10 02:02:58 +0000436 // ... Unless the CS is local or is in the sole predecessor block
437 // and it also defines the physical register which is not clobbered
438 // in between and the physical register uses were not clobbered.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000439 unsigned CSVN = VNT.lookup(MI);
440 MachineInstr *CSMI = Exps[CSVN];
Evan Chengf96703e2012-01-11 00:38:11 +0000441 if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef))
Evan Cheng189c1ec2010-10-29 23:36:03 +0000442 FoundCSE = true;
Evan Cheng835810b2010-05-21 21:22:19 +0000443 }
444
Evan Cheng16b48b82010-03-03 21:20:05 +0000445 if (!FoundCSE) {
446 VNT.insert(MI, CurrVN++);
447 Exps.push_back(MI);
448 continue;
449 }
450
451 // Found a common subexpression, eliminate it.
452 unsigned CSVN = VNT.lookup(MI);
453 MachineInstr *CSMI = Exps[CSVN];
454 DEBUG(dbgs() << "Examining: " << *MI);
455 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI);
Evan Cheng31f94c72010-03-09 03:21:12 +0000456
457 // Check if it's profitable to perform this CSE.
458 bool DoCSE = true;
Evan Cheng16b48b82010-03-03 21:20:05 +0000459 unsigned NumDefs = MI->getDesc().getNumDefs();
460 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
461 MachineOperand &MO = MI->getOperand(i);
462 if (!MO.isReg() || !MO.isDef())
463 continue;
464 unsigned OldReg = MO.getReg();
465 unsigned NewReg = CSMI->getOperand(i).getReg();
Evan Cheng6cc1aea2010-03-06 01:14:19 +0000466 if (OldReg == NewReg)
467 continue;
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000468
Evan Cheng6cc1aea2010-03-06 01:14:19 +0000469 assert(TargetRegisterInfo::isVirtualRegister(OldReg) &&
Evan Cheng16b48b82010-03-03 21:20:05 +0000470 TargetRegisterInfo::isVirtualRegister(NewReg) &&
471 "Do not CSE physical register defs!");
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000472
Evan Cheng2938a002010-03-10 02:12:03 +0000473 if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) {
Evan Cheng31f94c72010-03-09 03:21:12 +0000474 DoCSE = false;
475 break;
476 }
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000477
478 // Don't perform CSE if the result of the old instruction cannot exist
479 // within the register class of the new instruction.
480 const TargetRegisterClass *OldRC = MRI->getRegClass(OldReg);
481 if (!MRI->constrainRegClass(NewReg, OldRC)) {
482 DoCSE = false;
483 break;
484 }
485
Evan Cheng31f94c72010-03-09 03:21:12 +0000486 CSEPairs.push_back(std::make_pair(OldReg, NewReg));
Evan Cheng16b48b82010-03-03 21:20:05 +0000487 --NumDefs;
488 }
Evan Cheng31f94c72010-03-09 03:21:12 +0000489
490 // Actually perform the elimination.
491 if (DoCSE) {
Dan Gohman49b45892010-05-13 19:24:00 +0000492 for (unsigned i = 0, e = CSEPairs.size(); i != e; ++i) {
Evan Cheng31f94c72010-03-09 03:21:12 +0000493 MRI->replaceRegWith(CSEPairs[i].first, CSEPairs[i].second);
Dan Gohman49b45892010-05-13 19:24:00 +0000494 MRI->clearKillFlags(CSEPairs[i].second);
495 }
Evan Cheng97b5beb2012-01-10 02:02:58 +0000496
497 if (CrossMBBPhysDef) {
498 // Add physical register defs now coming in from a predecessor to MBB
499 // livein list.
500 while (!PhysDefs.empty()) {
501 unsigned LiveIn = PhysDefs.pop_back_val();
502 if (!MBB->isLiveIn(LiveIn))
503 MBB->addLiveIn(LiveIn);
504 }
505 ++NumCrossBBCSEs;
506 }
507
Evan Cheng31f94c72010-03-09 03:21:12 +0000508 MI->eraseFromParent();
509 ++NumCSEs;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000510 if (!PhysRefs.empty())
Evan Cheng2b4e7272010-06-04 23:28:13 +0000511 ++NumPhysCSEs;
Evan Chenga63cde22010-12-15 22:16:21 +0000512 if (Commuted)
513 ++NumCommutes;
Evan Chengcfea9852011-04-11 18:47:20 +0000514 Changed = true;
Evan Cheng31f94c72010-03-09 03:21:12 +0000515 } else {
516 DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n");
517 VNT.insert(MI, CurrVN++);
518 Exps.push_back(MI);
519 }
520 CSEPairs.clear();
Evan Cheng6ba95542010-03-03 02:48:20 +0000521 }
522
Evan Cheng31156982010-04-21 00:21:07 +0000523 return Changed;
524}
525
526/// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
527/// dominator tree node if its a leaf or all of its children are done. Walk
528/// up the dominator tree to destroy ancestors which are now done.
529void
530MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node,
531 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren,
532 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap) {
533 if (OpenChildren[Node])
534 return;
535
536 // Pop scope.
537 ExitScope(Node->getBlock());
538
539 // Now traverse upwards to pop ancestors whose offsprings are all done.
540 while (MachineDomTreeNode *Parent = ParentMap[Node]) {
541 unsigned Left = --OpenChildren[Parent];
542 if (Left != 0)
543 break;
544 ExitScope(Parent->getBlock());
545 Node = Parent;
546 }
547}
548
549bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) {
550 SmallVector<MachineDomTreeNode*, 32> Scopes;
551 SmallVector<MachineDomTreeNode*, 8> WorkList;
552 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> ParentMap;
553 DenseMap<MachineDomTreeNode*, unsigned> OpenChildren;
554
Evan Chengc2b768f2010-09-17 21:59:42 +0000555 CurrVN = 0;
556
Evan Cheng31156982010-04-21 00:21:07 +0000557 // Perform a DFS walk to determine the order of visit.
558 WorkList.push_back(Node);
559 do {
560 Node = WorkList.pop_back_val();
561 Scopes.push_back(Node);
562 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
563 unsigned NumChildren = Children.size();
564 OpenChildren[Node] = NumChildren;
565 for (unsigned i = 0; i != NumChildren; ++i) {
566 MachineDomTreeNode *Child = Children[i];
567 ParentMap[Child] = Node;
568 WorkList.push_back(Child);
569 }
570 } while (!WorkList.empty());
571
572 // Now perform CSE.
573 bool Changed = false;
574 for (unsigned i = 0, e = Scopes.size(); i != e; ++i) {
575 MachineDomTreeNode *Node = Scopes[i];
576 MachineBasicBlock *MBB = Node->getBlock();
577 EnterScope(MBB);
578 Changed |= ProcessBlock(MBB);
579 // If it's a leaf node, it's done. Traverse upwards to pop ancestors.
580 ExitScopeIfDone(Node, OpenChildren, ParentMap);
581 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000582
583 return Changed;
584}
585
Evan Chengc6fe3332010-03-02 02:38:24 +0000586bool MachineCSE::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000587 TII = MF.getTarget().getInstrInfo();
Evan Chengb3958e82010-03-04 01:33:55 +0000588 TRI = MF.getTarget().getRegisterInfo();
Evan Cheng6ba95542010-03-03 02:48:20 +0000589 MRI = &MF.getRegInfo();
Evan Chenga5f32cb2010-03-04 21:18:08 +0000590 AA = &getAnalysis<AliasAnalysis>();
Evan Cheng31f94c72010-03-09 03:21:12 +0000591 DT = &getAnalysis<MachineDominatorTree>();
Evan Cheng31156982010-04-21 00:21:07 +0000592 return PerformCSE(DT->getRootNode());
Evan Chengc6fe3332010-03-02 02:38:24 +0000593}