blob: 544f74fb7a676b8dcebb5f244ef89ab17df33ce7 [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"
25#include "llvm/ADT/Statistic.h"
Evan Cheng835810b2010-05-21 21:22:19 +000026#include "llvm/Support/CommandLine.h"
Evan Chengc6fe3332010-03-02 02:38:24 +000027#include "llvm/Support/Debug.h"
28
29using namespace llvm;
30
Evan Cheng16b48b82010-03-03 21:20:05 +000031STATISTIC(NumCoalesces, "Number of copies coalesced");
32STATISTIC(NumCSEs, "Number of common subexpression eliminated");
Evan Cheng2b4e7272010-06-04 23:28:13 +000033STATISTIC(NumPhysCSEs, "Number of phyreg defining common subexpr eliminated");
Bob Wilson38441732010-06-03 18:28:31 +000034
Evan Chengc6fe3332010-03-02 02:38:24 +000035namespace {
36 class MachineCSE : public MachineFunctionPass {
Evan Cheng6ba95542010-03-03 02:48:20 +000037 const TargetInstrInfo *TII;
Evan Chengb3958e82010-03-04 01:33:55 +000038 const TargetRegisterInfo *TRI;
Evan Chenga5f32cb2010-03-04 21:18:08 +000039 AliasAnalysis *AA;
Evan Cheng31f94c72010-03-09 03:21:12 +000040 MachineDominatorTree *DT;
41 MachineRegisterInfo *MRI;
Evan Chengc6fe3332010-03-02 02:38:24 +000042 public:
43 static char ID; // Pass identification
Owen Anderson90c579d2010-08-06 18:33:48 +000044 MachineCSE() : MachineFunctionPass(ID), LookAheadLimit(5), CurrVN(0) {}
Evan Chengc6fe3332010-03-02 02:38:24 +000045
46 virtual bool runOnMachineFunction(MachineFunction &MF);
47
48 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
49 AU.setPreservesCFG();
50 MachineFunctionPass::getAnalysisUsage(AU);
Evan Chenga5f32cb2010-03-04 21:18:08 +000051 AU.addRequired<AliasAnalysis>();
Evan Cheng65424162010-08-17 20:57:42 +000052 AU.addPreservedID(MachineLoopInfoID);
Evan Chengc6fe3332010-03-02 02:38:24 +000053 AU.addRequired<MachineDominatorTree>();
54 AU.addPreserved<MachineDominatorTree>();
55 }
56
Evan Chengc2b768f2010-09-17 21:59:42 +000057 virtual void releaseMemory() {
58 ScopeMap.clear();
59 Exps.clear();
60 }
61
Evan Chengc6fe3332010-03-02 02:38:24 +000062 private:
Evan Cheng835810b2010-05-21 21:22:19 +000063 const unsigned LookAheadLimit;
Evan Cheng31156982010-04-21 00:21:07 +000064 typedef ScopedHashTableScope<MachineInstr*, unsigned,
65 MachineInstrExpressionTrait> ScopeType;
66 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
Evan Cheng05bdcbb2010-03-03 23:27:36 +000067 ScopedHashTable<MachineInstr*, unsigned, MachineInstrExpressionTrait> VNT;
Evan Cheng16b48b82010-03-03 21:20:05 +000068 SmallVector<MachineInstr*, 64> Exps;
Evan Cheng31156982010-04-21 00:21:07 +000069 unsigned CurrVN;
Evan Cheng16b48b82010-03-03 21:20:05 +000070
Evan Chenga5f32cb2010-03-04 21:18:08 +000071 bool PerformTrivialCoalescing(MachineInstr *MI, MachineBasicBlock *MBB);
Evan Chengb3958e82010-03-04 01:33:55 +000072 bool isPhysDefTriviallyDead(unsigned Reg,
73 MachineBasicBlock::const_iterator I,
Evan Cheng835810b2010-05-21 21:22:19 +000074 MachineBasicBlock::const_iterator E) const ;
75 bool hasLivePhysRegDefUse(const MachineInstr *MI,
76 const MachineBasicBlock *MBB,
77 unsigned &PhysDef) const;
78 bool PhysRegDefReaches(MachineInstr *CSMI, MachineInstr *MI,
79 unsigned PhysDef) const;
Evan Chenga5f32cb2010-03-04 21:18:08 +000080 bool isCSECandidate(MachineInstr *MI);
Evan Cheng2938a002010-03-10 02:12:03 +000081 bool isProfitableToCSE(unsigned CSReg, unsigned Reg,
82 MachineInstr *CSMI, MachineInstr *MI);
Evan Cheng31156982010-04-21 00:21:07 +000083 void EnterScope(MachineBasicBlock *MBB);
84 void ExitScope(MachineBasicBlock *MBB);
85 bool ProcessBlock(MachineBasicBlock *MBB);
86 void ExitScopeIfDone(MachineDomTreeNode *Node,
87 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren,
88 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap);
89 bool PerformCSE(MachineDomTreeNode *Node);
Evan Chengc6fe3332010-03-02 02:38:24 +000090 };
91} // end anonymous namespace
92
93char MachineCSE::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +000094INITIALIZE_PASS_BEGIN(MachineCSE, "machine-cse",
95 "Machine Common Subexpression Elimination", false, false)
96INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
97INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
98INITIALIZE_PASS_END(MachineCSE, "machine-cse",
Owen Andersonce665bd2010-10-07 22:25:06 +000099 "Machine Common Subexpression Elimination", false, false)
Evan Chengc6fe3332010-03-02 02:38:24 +0000100
101FunctionPass *llvm::createMachineCSEPass() { return new MachineCSE(); }
102
Evan Cheng6ba95542010-03-03 02:48:20 +0000103bool MachineCSE::PerformTrivialCoalescing(MachineInstr *MI,
104 MachineBasicBlock *MBB) {
105 bool Changed = false;
106 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
107 MachineOperand &MO = MI->getOperand(i);
Evan Cheng16b48b82010-03-03 21:20:05 +0000108 if (!MO.isReg() || !MO.isUse())
109 continue;
110 unsigned Reg = MO.getReg();
111 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
112 continue;
Evan Chengf437f732010-09-17 21:56:26 +0000113 if (!MRI->hasOneNonDBGUse(Reg))
Evan Cheng16b48b82010-03-03 21:20:05 +0000114 // Only coalesce single use copies. This ensure the copy will be
115 // deleted.
116 continue;
117 MachineInstr *DefMI = MRI->getVRegDef(Reg);
118 if (DefMI->getParent() != MBB)
119 continue;
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000120 if (!DefMI->isCopy())
121 continue;
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000122 unsigned SrcReg = DefMI->getOperand(1).getReg();
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000123 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
124 continue;
125 if (DefMI->getOperand(0).getSubReg() || DefMI->getOperand(1).getSubReg())
126 continue;
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +0000127 if (!MRI->constrainRegClass(SrcReg, MRI->getRegClass(Reg)))
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000128 continue;
129 DEBUG(dbgs() << "Coalescing: " << *DefMI);
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +0000130 DEBUG(dbgs() << "*** to: " << *MI);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000131 MO.setReg(SrcReg);
132 MRI->clearKillFlags(SrcReg);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000133 DefMI->eraseFromParent();
134 ++NumCoalesces;
135 Changed = true;
Evan Cheng6ba95542010-03-03 02:48:20 +0000136 }
137
138 return Changed;
139}
140
Evan Cheng835810b2010-05-21 21:22:19 +0000141bool
142MachineCSE::isPhysDefTriviallyDead(unsigned Reg,
143 MachineBasicBlock::const_iterator I,
144 MachineBasicBlock::const_iterator E) const {
Eric Christophere81d0102010-05-21 23:40:03 +0000145 unsigned LookAheadLeft = LookAheadLimit;
Evan Cheng112e5e72010-03-23 20:33:48 +0000146 while (LookAheadLeft) {
Evan Cheng22504252010-03-24 01:50:28 +0000147 // Skip over dbg_value's.
148 while (I != E && I->isDebugValue())
149 ++I;
150
Evan Chengb3958e82010-03-04 01:33:55 +0000151 if (I == E)
152 // Reached end of block, register is obviously dead.
153 return true;
154
Evan Chengb3958e82010-03-04 01:33:55 +0000155 bool SeenDef = false;
156 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
157 const MachineOperand &MO = I->getOperand(i);
158 if (!MO.isReg() || !MO.getReg())
159 continue;
160 if (!TRI->regsOverlap(MO.getReg(), Reg))
161 continue;
162 if (MO.isUse())
Evan Cheng835810b2010-05-21 21:22:19 +0000163 // Found a use!
Evan Chengb3958e82010-03-04 01:33:55 +0000164 return false;
165 SeenDef = true;
166 }
167 if (SeenDef)
168 // See a def of Reg (or an alias) before encountering any use, it's
169 // trivially dead.
170 return true;
Evan Cheng112e5e72010-03-23 20:33:48 +0000171
172 --LookAheadLeft;
Evan Chengb3958e82010-03-04 01:33:55 +0000173 ++I;
174 }
175 return false;
176}
177
Evan Cheng2938a002010-03-10 02:12:03 +0000178/// hasLivePhysRegDefUse - Return true if the specified instruction read / write
Evan Cheng835810b2010-05-21 21:22:19 +0000179/// physical registers (except for dead defs of physical registers). It also
Evan Cheng2b4e7272010-06-04 23:28:13 +0000180/// returns the physical register def by reference if it's the only one and the
181/// instruction does not uses a physical register.
Evan Cheng835810b2010-05-21 21:22:19 +0000182bool MachineCSE::hasLivePhysRegDefUse(const MachineInstr *MI,
183 const MachineBasicBlock *MBB,
184 unsigned &PhysDef) const {
185 PhysDef = 0;
Evan Cheng6ba95542010-03-03 02:48:20 +0000186 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
Evan Cheng835810b2010-05-21 21:22:19 +0000187 const MachineOperand &MO = MI->getOperand(i);
Evan Cheng6ba95542010-03-03 02:48:20 +0000188 if (!MO.isReg())
189 continue;
190 unsigned Reg = MO.getReg();
191 if (!Reg)
192 continue;
Evan Cheng835810b2010-05-21 21:22:19 +0000193 if (TargetRegisterInfo::isVirtualRegister(Reg))
194 continue;
Evan Cheng2b4e7272010-06-04 23:28:13 +0000195 if (MO.isUse()) {
Evan Cheng835810b2010-05-21 21:22:19 +0000196 // Can't touch anything to read a physical register.
Evan Cheng2b4e7272010-06-04 23:28:13 +0000197 PhysDef = 0;
Evan Cheng835810b2010-05-21 21:22:19 +0000198 return true;
Evan Cheng2b4e7272010-06-04 23:28:13 +0000199 }
Evan Cheng835810b2010-05-21 21:22:19 +0000200 if (MO.isDead())
201 // If the def is dead, it's ok.
202 continue;
203 // Ok, this is a physical register def that's not marked "dead". That's
204 // common since this pass is run before livevariables. We can scan
205 // forward a few instructions and check if it is obviously dead.
206 if (PhysDef) {
207 // Multiple physical register defs. These are rare, forget about it.
208 PhysDef = 0;
209 return true;
Evan Chengb3958e82010-03-04 01:33:55 +0000210 }
Evan Cheng835810b2010-05-21 21:22:19 +0000211 PhysDef = Reg;
Evan Chengb3958e82010-03-04 01:33:55 +0000212 }
213
214 if (PhysDef) {
Evan Cheng835810b2010-05-21 21:22:19 +0000215 MachineBasicBlock::const_iterator I = MI; I = llvm::next(I);
Evan Chengb3958e82010-03-04 01:33:55 +0000216 if (!isPhysDefTriviallyDead(PhysDef, I, MBB->end()))
Evan Cheng6ba95542010-03-03 02:48:20 +0000217 return true;
Evan Chengc6fe3332010-03-02 02:38:24 +0000218 }
219 return false;
220}
221
Evan Cheng835810b2010-05-21 21:22:19 +0000222bool MachineCSE::PhysRegDefReaches(MachineInstr *CSMI, MachineInstr *MI,
223 unsigned PhysDef) const {
224 // For now conservatively returns false if the common subexpression is
225 // not in the same basic block as the given instruction.
226 MachineBasicBlock *MBB = MI->getParent();
227 if (CSMI->getParent() != MBB)
228 return false;
229 MachineBasicBlock::const_iterator I = CSMI; I = llvm::next(I);
230 MachineBasicBlock::const_iterator E = MI;
231 unsigned LookAheadLeft = LookAheadLimit;
232 while (LookAheadLeft) {
233 // Skip over dbg_value's.
234 while (I != E && I->isDebugValue())
235 ++I;
236
237 if (I == E)
238 return true;
239 if (I->modifiesRegister(PhysDef, TRI))
240 return false;
241
242 --LookAheadLeft;
243 ++I;
244 }
245
246 return false;
247}
248
Evan Chenga5f32cb2010-03-04 21:18:08 +0000249bool MachineCSE::isCSECandidate(MachineInstr *MI) {
Evan Cheng51960182010-03-08 23:49:12 +0000250 if (MI->isLabel() || MI->isPHI() || MI->isImplicitDef() ||
Dale Johannesene68ea062010-03-11 02:10:24 +0000251 MI->isKill() || MI->isInlineAsm() || MI->isDebugValue())
Evan Cheng51960182010-03-08 23:49:12 +0000252 return false;
253
Evan Cheng2938a002010-03-10 02:12:03 +0000254 // Ignore copies.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000255 if (MI->isCopyLike())
Evan Chenga5f32cb2010-03-04 21:18:08 +0000256 return false;
257
258 // Ignore stuff that we obviously can't move.
259 const TargetInstrDesc &TID = MI->getDesc();
260 if (TID.mayStore() || TID.isCall() || TID.isTerminator() ||
261 TID.hasUnmodeledSideEffects())
262 return false;
263
264 if (TID.mayLoad()) {
265 // Okay, this instruction does a load. As a refinement, we allow the target
266 // to decide whether the loaded value is actually a constant. If so, we can
267 // actually use it as a load.
268 if (!MI->isInvariantLoad(AA))
269 // FIXME: we should be able to hoist loads with no other side effects if
270 // there are no other instructions which can change memory in this loop.
271 // This is a trivial form of alias analysis.
272 return false;
273 }
274 return true;
275}
276
Evan Cheng31f94c72010-03-09 03:21:12 +0000277/// isProfitableToCSE - Return true if it's profitable to eliminate MI with a
278/// common expression that defines Reg.
Evan Cheng2938a002010-03-10 02:12:03 +0000279bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg,
280 MachineInstr *CSMI, MachineInstr *MI) {
281 // FIXME: Heuristics that works around the lack the live range splitting.
282
283 // Heuristics #1: Don't cse "cheap" computating if the def is not local or in an
284 // immediate predecessor. We don't want to increase register pressure and end up
285 // causing other computation to be spilled.
286 if (MI->getDesc().isAsCheapAsAMove()) {
287 MachineBasicBlock *CSBB = CSMI->getParent();
288 MachineBasicBlock *BB = MI->getParent();
289 if (CSBB != BB &&
290 find(CSBB->succ_begin(), CSBB->succ_end(), BB) == CSBB->succ_end())
291 return false;
292 }
293
294 // Heuristics #2: If the expression doesn't not use a vr and the only use
295 // of the redundant computation are copies, do not cse.
296 bool HasVRegUse = false;
297 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
298 const MachineOperand &MO = MI->getOperand(i);
299 if (MO.isReg() && MO.isUse() && MO.getReg() &&
300 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
301 HasVRegUse = true;
302 break;
303 }
304 }
305 if (!HasVRegUse) {
306 bool HasNonCopyUse = false;
307 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg),
308 E = MRI->use_nodbg_end(); I != E; ++I) {
309 MachineInstr *Use = &*I;
310 // Ignore copies.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000311 if (!Use->isCopyLike()) {
Evan Cheng2938a002010-03-10 02:12:03 +0000312 HasNonCopyUse = true;
313 break;
314 }
315 }
316 if (!HasNonCopyUse)
317 return false;
318 }
319
320 // Heuristics #3: If the common subexpression is used by PHIs, do not reuse
321 // it unless the defined value is already used in the BB of the new use.
Evan Cheng31f94c72010-03-09 03:21:12 +0000322 bool HasPHI = false;
323 SmallPtrSet<MachineBasicBlock*, 4> CSBBs;
Evan Cheng2938a002010-03-10 02:12:03 +0000324 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(CSReg),
Evan Cheng31f94c72010-03-09 03:21:12 +0000325 E = MRI->use_nodbg_end(); I != E; ++I) {
326 MachineInstr *Use = &*I;
327 HasPHI |= Use->isPHI();
328 CSBBs.insert(Use->getParent());
329 }
330
331 if (!HasPHI)
332 return true;
333 return CSBBs.count(MI->getParent());
334}
335
Evan Cheng31156982010-04-21 00:21:07 +0000336void MachineCSE::EnterScope(MachineBasicBlock *MBB) {
337 DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n');
338 ScopeType *Scope = new ScopeType(VNT);
339 ScopeMap[MBB] = Scope;
340}
341
342void MachineCSE::ExitScope(MachineBasicBlock *MBB) {
343 DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n');
344 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
345 assert(SI != ScopeMap.end());
346 ScopeMap.erase(SI);
347 delete SI->second;
348}
349
350bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000351 bool Changed = false;
352
Evan Cheng31f94c72010-03-09 03:21:12 +0000353 SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs;
Evan Cheng16b48b82010-03-03 21:20:05 +0000354 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000355 MachineInstr *MI = &*I;
Evan Cheng16b48b82010-03-03 21:20:05 +0000356 ++I;
Evan Chenga5f32cb2010-03-04 21:18:08 +0000357
358 if (!isCSECandidate(MI))
Evan Cheng6ba95542010-03-03 02:48:20 +0000359 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000360
Evan Cheng2b4e7272010-06-04 23:28:13 +0000361 bool DefPhys = false;
Evan Cheng6ba95542010-03-03 02:48:20 +0000362 bool FoundCSE = VNT.count(MI);
363 if (!FoundCSE) {
364 // Look for trivial copy coalescing opportunities.
Evan Chengdb8771a2010-04-02 02:21:24 +0000365 if (PerformTrivialCoalescing(MI, MBB)) {
366 // After coalescing MI itself may become a copy.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000367 if (MI->isCopyLike())
Evan Chengdb8771a2010-04-02 02:21:24 +0000368 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000369 FoundCSE = VNT.count(MI);
Evan Chengdb8771a2010-04-02 02:21:24 +0000370 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000371 }
Evan Chengb3958e82010-03-04 01:33:55 +0000372 // FIXME: commute commutable instructions?
Evan Cheng6ba95542010-03-03 02:48:20 +0000373
Evan Cheng67bda722010-03-03 23:59:08 +0000374 // If the instruction defines a physical register and the value *may* be
375 // used, then it's not safe to replace it with a common subexpression.
Evan Cheng835810b2010-05-21 21:22:19 +0000376 unsigned PhysDef = 0;
377 if (FoundCSE && hasLivePhysRegDefUse(MI, MBB, PhysDef)) {
Evan Cheng67bda722010-03-03 23:59:08 +0000378 FoundCSE = false;
379
Evan Cheng835810b2010-05-21 21:22:19 +0000380 // ... Unless the CS is local and it also defines the physical register
381 // which is not clobbered in between.
Evan Cheng2b4e7272010-06-04 23:28:13 +0000382 if (PhysDef) {
Evan Cheng835810b2010-05-21 21:22:19 +0000383 unsigned CSVN = VNT.lookup(MI);
384 MachineInstr *CSMI = Exps[CSVN];
Evan Cheng2b4e7272010-06-04 23:28:13 +0000385 if (PhysRegDefReaches(CSMI, MI, PhysDef)) {
Evan Cheng835810b2010-05-21 21:22:19 +0000386 FoundCSE = true;
Evan Cheng2b4e7272010-06-04 23:28:13 +0000387 DefPhys = true;
388 }
Evan Cheng835810b2010-05-21 21:22:19 +0000389 }
390 }
391
Evan Cheng16b48b82010-03-03 21:20:05 +0000392 if (!FoundCSE) {
393 VNT.insert(MI, CurrVN++);
394 Exps.push_back(MI);
395 continue;
396 }
397
398 // Found a common subexpression, eliminate it.
399 unsigned CSVN = VNT.lookup(MI);
400 MachineInstr *CSMI = Exps[CSVN];
401 DEBUG(dbgs() << "Examining: " << *MI);
402 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI);
Evan Cheng31f94c72010-03-09 03:21:12 +0000403
404 // Check if it's profitable to perform this CSE.
405 bool DoCSE = true;
Evan Cheng16b48b82010-03-03 21:20:05 +0000406 unsigned NumDefs = MI->getDesc().getNumDefs();
407 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
408 MachineOperand &MO = MI->getOperand(i);
409 if (!MO.isReg() || !MO.isDef())
410 continue;
411 unsigned OldReg = MO.getReg();
412 unsigned NewReg = CSMI->getOperand(i).getReg();
Evan Cheng6cc1aea2010-03-06 01:14:19 +0000413 if (OldReg == NewReg)
414 continue;
415 assert(TargetRegisterInfo::isVirtualRegister(OldReg) &&
Evan Cheng16b48b82010-03-03 21:20:05 +0000416 TargetRegisterInfo::isVirtualRegister(NewReg) &&
417 "Do not CSE physical register defs!");
Evan Cheng2938a002010-03-10 02:12:03 +0000418 if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) {
Evan Cheng31f94c72010-03-09 03:21:12 +0000419 DoCSE = false;
420 break;
421 }
422 CSEPairs.push_back(std::make_pair(OldReg, NewReg));
Evan Cheng16b48b82010-03-03 21:20:05 +0000423 --NumDefs;
424 }
Evan Cheng31f94c72010-03-09 03:21:12 +0000425
426 // Actually perform the elimination.
427 if (DoCSE) {
Dan Gohman49b45892010-05-13 19:24:00 +0000428 for (unsigned i = 0, e = CSEPairs.size(); i != e; ++i) {
Evan Cheng31f94c72010-03-09 03:21:12 +0000429 MRI->replaceRegWith(CSEPairs[i].first, CSEPairs[i].second);
Dan Gohman49b45892010-05-13 19:24:00 +0000430 MRI->clearKillFlags(CSEPairs[i].second);
431 }
Evan Cheng31f94c72010-03-09 03:21:12 +0000432 MI->eraseFromParent();
433 ++NumCSEs;
Evan Cheng2b4e7272010-06-04 23:28:13 +0000434 if (DefPhys)
435 ++NumPhysCSEs;
Evan Cheng31f94c72010-03-09 03:21:12 +0000436 } else {
437 DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n");
438 VNT.insert(MI, CurrVN++);
439 Exps.push_back(MI);
440 }
441 CSEPairs.clear();
Evan Cheng6ba95542010-03-03 02:48:20 +0000442 }
443
Evan Cheng31156982010-04-21 00:21:07 +0000444 return Changed;
445}
446
447/// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
448/// dominator tree node if its a leaf or all of its children are done. Walk
449/// up the dominator tree to destroy ancestors which are now done.
450void
451MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node,
452 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren,
453 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap) {
454 if (OpenChildren[Node])
455 return;
456
457 // Pop scope.
458 ExitScope(Node->getBlock());
459
460 // Now traverse upwards to pop ancestors whose offsprings are all done.
461 while (MachineDomTreeNode *Parent = ParentMap[Node]) {
462 unsigned Left = --OpenChildren[Parent];
463 if (Left != 0)
464 break;
465 ExitScope(Parent->getBlock());
466 Node = Parent;
467 }
468}
469
470bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) {
471 SmallVector<MachineDomTreeNode*, 32> Scopes;
472 SmallVector<MachineDomTreeNode*, 8> WorkList;
473 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> ParentMap;
474 DenseMap<MachineDomTreeNode*, unsigned> OpenChildren;
475
Evan Chengc2b768f2010-09-17 21:59:42 +0000476 CurrVN = 0;
477
Evan Cheng31156982010-04-21 00:21:07 +0000478 // Perform a DFS walk to determine the order of visit.
479 WorkList.push_back(Node);
480 do {
481 Node = WorkList.pop_back_val();
482 Scopes.push_back(Node);
483 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
484 unsigned NumChildren = Children.size();
485 OpenChildren[Node] = NumChildren;
486 for (unsigned i = 0; i != NumChildren; ++i) {
487 MachineDomTreeNode *Child = Children[i];
488 ParentMap[Child] = Node;
489 WorkList.push_back(Child);
490 }
491 } while (!WorkList.empty());
492
493 // Now perform CSE.
494 bool Changed = false;
495 for (unsigned i = 0, e = Scopes.size(); i != e; ++i) {
496 MachineDomTreeNode *Node = Scopes[i];
497 MachineBasicBlock *MBB = Node->getBlock();
498 EnterScope(MBB);
499 Changed |= ProcessBlock(MBB);
500 // If it's a leaf node, it's done. Traverse upwards to pop ancestors.
501 ExitScopeIfDone(Node, OpenChildren, ParentMap);
502 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000503
504 return Changed;
505}
506
Evan Chengc6fe3332010-03-02 02:38:24 +0000507bool MachineCSE::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000508 TII = MF.getTarget().getInstrInfo();
Evan Chengb3958e82010-03-04 01:33:55 +0000509 TRI = MF.getTarget().getRegisterInfo();
Evan Cheng6ba95542010-03-03 02:48:20 +0000510 MRI = &MF.getRegInfo();
Evan Chenga5f32cb2010-03-04 21:18:08 +0000511 AA = &getAnalysis<AliasAnalysis>();
Evan Cheng31f94c72010-03-09 03:21:12 +0000512 DT = &getAnalysis<MachineDominatorTree>();
Evan Cheng31156982010-04-21 00:21:07 +0000513 return PerformCSE(DT->getRootNode());
Evan Chengc6fe3332010-03-02 02:38:24 +0000514}