blob: c2ab76e71c95c6c8aeace5a9cfabf4c4d40fcc87 [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
Evan Chengc6fe3332010-03-02 02:38:24 +000016#include "llvm/CodeGen/Passes.h"
Evan Cheng31156982010-04-21 00:21:07 +000017#include "llvm/ADT/DenseMap.h"
Evan Chengc6fe3332010-03-02 02:38:24 +000018#include "llvm/ADT/ScopedHashTable.h"
Evan Cheng189c1ec2010-10-29 23:36:03 +000019#include "llvm/ADT/SmallSet.h"
Evan Chengc6fe3332010-03-02 02:38:24 +000020#include "llvm/ADT/Statistic.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000021#include "llvm/Analysis/AliasAnalysis.h"
22#include "llvm/CodeGen/MachineDominators.h"
23#include "llvm/CodeGen/MachineInstr.h"
24#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chengc6fe3332010-03-02 02:38:24 +000025#include "llvm/Support/Debug.h"
Cameron Zwarich53eeba52011-01-03 04:07:46 +000026#include "llvm/Support/RecyclingAllocator.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000027#include "llvm/Target/TargetInstrInfo.h"
Evan Chengc6fe3332010-03-02 02:38:24 +000028using namespace llvm;
29
Stephen Hinesdce4a402014-05-29 02:49:00 -070030#define DEBUG_TYPE "machine-cse"
31
Evan Cheng16b48b82010-03-03 21:20:05 +000032STATISTIC(NumCoalesces, "Number of copies coalesced");
33STATISTIC(NumCSEs, "Number of common subexpression eliminated");
Evan Cheng189c1ec2010-10-29 23:36:03 +000034STATISTIC(NumPhysCSEs,
35 "Number of physreg referencing common subexpr eliminated");
Evan Cheng97b5beb2012-01-10 02:02:58 +000036STATISTIC(NumCrossBBCSEs,
37 "Number of cross-MBB physreg referencing CS eliminated");
Evan Chenga63cde22010-12-15 22:16:21 +000038STATISTIC(NumCommutes, "Number of copies coalesced after commuting");
Bob Wilson38441732010-06-03 18:28:31 +000039
Evan Chengc6fe3332010-03-02 02:38:24 +000040namespace {
41 class MachineCSE : public MachineFunctionPass {
Evan Cheng6ba95542010-03-03 02:48:20 +000042 const TargetInstrInfo *TII;
Evan Chengb3958e82010-03-04 01:33:55 +000043 const TargetRegisterInfo *TRI;
Evan Chenga5f32cb2010-03-04 21:18:08 +000044 AliasAnalysis *AA;
Evan Cheng31f94c72010-03-09 03:21:12 +000045 MachineDominatorTree *DT;
46 MachineRegisterInfo *MRI;
Evan Chengc6fe3332010-03-02 02:38:24 +000047 public:
48 static char ID; // Pass identification
Owen Anderson081c34b2010-10-19 17:21:58 +000049 MachineCSE() : MachineFunctionPass(ID), LookAheadLimit(5), CurrVN(0) {
50 initializeMachineCSEPass(*PassRegistry::getPassRegistry());
51 }
Evan Chengc6fe3332010-03-02 02:38:24 +000052
Stephen Hines36b56882014-04-23 16:57:46 -070053 bool runOnMachineFunction(MachineFunction &MF) override;
Andrew Trick1df91b02012-02-08 21:22:43 +000054
Stephen Hines36b56882014-04-23 16:57:46 -070055 void getAnalysisUsage(AnalysisUsage &AU) const override {
Evan Chengc6fe3332010-03-02 02:38:24 +000056 AU.setPreservesCFG();
57 MachineFunctionPass::getAnalysisUsage(AU);
Evan Chenga5f32cb2010-03-04 21:18:08 +000058 AU.addRequired<AliasAnalysis>();
Evan Cheng65424162010-08-17 20:57:42 +000059 AU.addPreservedID(MachineLoopInfoID);
Evan Chengc6fe3332010-03-02 02:38:24 +000060 AU.addRequired<MachineDominatorTree>();
61 AU.addPreserved<MachineDominatorTree>();
62 }
63
Stephen Hines36b56882014-04-23 16:57:46 -070064 void releaseMemory() override {
Evan Chengc2b768f2010-09-17 21:59:42 +000065 ScopeMap.clear();
66 Exps.clear();
67 }
68
Evan Chengc6fe3332010-03-02 02:38:24 +000069 private:
Evan Cheng835810b2010-05-21 21:22:19 +000070 const unsigned LookAheadLimit;
Cameron Zwarich53eeba52011-01-03 04:07:46 +000071 typedef RecyclingAllocator<BumpPtrAllocator,
72 ScopedHashTableVal<MachineInstr*, unsigned> > AllocatorTy;
73 typedef ScopedHashTable<MachineInstr*, unsigned,
74 MachineInstrExpressionTrait, AllocatorTy> ScopedHTType;
75 typedef ScopedHTType::ScopeTy ScopeType;
Evan Cheng31156982010-04-21 00:21:07 +000076 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap;
Cameron Zwarich53eeba52011-01-03 04:07:46 +000077 ScopedHTType VNT;
Evan Cheng16b48b82010-03-03 21:20:05 +000078 SmallVector<MachineInstr*, 64> Exps;
Evan Cheng31156982010-04-21 00:21:07 +000079 unsigned CurrVN;
Evan Cheng16b48b82010-03-03 21:20:05 +000080
Evan Chenga5f32cb2010-03-04 21:18:08 +000081 bool PerformTrivialCoalescing(MachineInstr *MI, MachineBasicBlock *MBB);
Evan Chengb3958e82010-03-04 01:33:55 +000082 bool isPhysDefTriviallyDead(unsigned Reg,
83 MachineBasicBlock::const_iterator I,
Nick Lewycky7a7a6db2012-07-05 06:19:21 +000084 MachineBasicBlock::const_iterator E) const;
Evan Cheng189c1ec2010-10-29 23:36:03 +000085 bool hasLivePhysRegDefUses(const MachineInstr *MI,
86 const MachineBasicBlock *MBB,
Evan Cheng97b5beb2012-01-10 02:02:58 +000087 SmallSet<unsigned,8> &PhysRefs,
Craig Toppera0ec3f92013-07-14 04:42:23 +000088 SmallVectorImpl<unsigned> &PhysDefs,
Ulrich Weigandb64e2112012-11-13 18:40:58 +000089 bool &PhysUseDef) const;
Evan Cheng189c1ec2010-10-29 23:36:03 +000090 bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng97b5beb2012-01-10 02:02:58 +000091 SmallSet<unsigned,8> &PhysRefs,
Craig Toppera0ec3f92013-07-14 04:42:23 +000092 SmallVectorImpl<unsigned> &PhysDefs,
Evan Cheng97b5beb2012-01-10 02:02:58 +000093 bool &NonLocal) const;
Evan Chenga5f32cb2010-03-04 21:18:08 +000094 bool isCSECandidate(MachineInstr *MI);
Evan Cheng2938a002010-03-10 02:12:03 +000095 bool isProfitableToCSE(unsigned CSReg, unsigned Reg,
96 MachineInstr *CSMI, MachineInstr *MI);
Evan Cheng31156982010-04-21 00:21:07 +000097 void EnterScope(MachineBasicBlock *MBB);
98 void ExitScope(MachineBasicBlock *MBB);
99 bool ProcessBlock(MachineBasicBlock *MBB);
100 void ExitScopeIfDone(MachineDomTreeNode *Node,
Bill Wendling96cb1122012-07-19 00:04:14 +0000101 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren);
Evan Cheng31156982010-04-21 00:21:07 +0000102 bool PerformCSE(MachineDomTreeNode *Node);
Evan Chengc6fe3332010-03-02 02:38:24 +0000103 };
104} // end anonymous namespace
105
106char MachineCSE::ID = 0;
Andrew Trick1dd8c852012-02-08 21:23:13 +0000107char &llvm::MachineCSEID = MachineCSE::ID;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000108INITIALIZE_PASS_BEGIN(MachineCSE, "machine-cse",
109 "Machine Common Subexpression Elimination", false, false)
110INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
111INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
112INITIALIZE_PASS_END(MachineCSE, "machine-cse",
Owen Andersonce665bd2010-10-07 22:25:06 +0000113 "Machine Common Subexpression Elimination", false, false)
Evan Chengc6fe3332010-03-02 02:38:24 +0000114
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);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000130 if (!DefMI->isCopy())
131 continue;
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000132 unsigned SrcReg = DefMI->getOperand(1).getReg();
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000133 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
134 continue;
Stephen Hines36b56882014-04-23 16:57:46 -0700135 if (DefMI->getOperand(0).getSubReg())
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000136 continue;
Stephen Hines36b56882014-04-23 16:57:46 -0700137 // FIXME: We should trivially coalesce subregister copies to expose CSE
138 // opportunities on instructions with truncated operands (see
139 // cse-add-with-overflow.ll). This can be done here as follows:
140 // if (SrcSubReg)
141 // RC = TRI->getMatchingSuperRegClass(MRI->getRegClass(SrcReg), RC,
142 // SrcSubReg);
143 // MO.substVirtReg(SrcReg, SrcSubReg, *TRI);
144 //
145 // The 2-addr pass has been updated to handle coalesced subregs. However,
146 // some machine-specific code still can't handle it.
147 // To handle it properly we also need a way find a constrained subregister
148 // class given a super-reg class and subreg index.
149 if (DefMI->getOperand(1).getSubReg())
150 continue;
151 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
152 if (!MRI->constrainRegClass(SrcReg, RC))
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000153 continue;
154 DEBUG(dbgs() << "Coalescing: " << *DefMI);
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +0000155 DEBUG(dbgs() << "*** to: " << *MI);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000156 MO.setReg(SrcReg);
157 MRI->clearKillFlags(SrcReg);
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +0000158 DefMI->eraseFromParent();
159 ++NumCoalesces;
160 Changed = true;
Evan Cheng6ba95542010-03-03 02:48:20 +0000161 }
162
163 return Changed;
164}
165
Evan Cheng835810b2010-05-21 21:22:19 +0000166bool
167MachineCSE::isPhysDefTriviallyDead(unsigned Reg,
168 MachineBasicBlock::const_iterator I,
169 MachineBasicBlock::const_iterator E) const {
Eric Christophere81d0102010-05-21 23:40:03 +0000170 unsigned LookAheadLeft = LookAheadLimit;
Evan Cheng112e5e72010-03-23 20:33:48 +0000171 while (LookAheadLeft) {
Evan Cheng22504252010-03-24 01:50:28 +0000172 // Skip over dbg_value's.
173 while (I != E && I->isDebugValue())
174 ++I;
175
Evan Chengb3958e82010-03-04 01:33:55 +0000176 if (I == E)
177 // Reached end of block, register is obviously dead.
178 return true;
179
Evan Chengb3958e82010-03-04 01:33:55 +0000180 bool SeenDef = false;
181 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
182 const MachineOperand &MO = I->getOperand(i);
Jakob Stoklund Olesen2129a0f2012-02-28 02:08:50 +0000183 if (MO.isRegMask() && MO.clobbersPhysReg(Reg))
184 SeenDef = true;
Evan Chengb3958e82010-03-04 01:33:55 +0000185 if (!MO.isReg() || !MO.getReg())
186 continue;
187 if (!TRI->regsOverlap(MO.getReg(), Reg))
188 continue;
189 if (MO.isUse())
Evan Cheng835810b2010-05-21 21:22:19 +0000190 // Found a use!
Evan Chengb3958e82010-03-04 01:33:55 +0000191 return false;
192 SeenDef = true;
193 }
194 if (SeenDef)
Andrew Trick1df91b02012-02-08 21:22:43 +0000195 // See a def of Reg (or an alias) before encountering any use, it's
Evan Chengb3958e82010-03-04 01:33:55 +0000196 // trivially dead.
197 return true;
Evan Cheng112e5e72010-03-23 20:33:48 +0000198
199 --LookAheadLeft;
Evan Chengb3958e82010-03-04 01:33:55 +0000200 ++I;
201 }
202 return false;
203}
204
Evan Cheng189c1ec2010-10-29 23:36:03 +0000205/// hasLivePhysRegDefUses - Return true if the specified instruction read/write
Evan Cheng835810b2010-05-21 21:22:19 +0000206/// physical registers (except for dead defs of physical registers). It also
Evan Cheng2b4e7272010-06-04 23:28:13 +0000207/// returns the physical register def by reference if it's the only one and the
208/// instruction does not uses a physical register.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000209bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI,
210 const MachineBasicBlock *MBB,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000211 SmallSet<unsigned,8> &PhysRefs,
Craig Toppera0ec3f92013-07-14 04:42:23 +0000212 SmallVectorImpl<unsigned> &PhysDefs,
Ulrich Weigandb64e2112012-11-13 18:40:58 +0000213 bool &PhysUseDef) const{
214 // First, add all uses to PhysRefs.
Evan Cheng6ba95542010-03-03 02:48:20 +0000215 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
Evan Cheng835810b2010-05-21 21:22:19 +0000216 const MachineOperand &MO = MI->getOperand(i);
Ulrich Weigandb64e2112012-11-13 18:40:58 +0000217 if (!MO.isReg() || MO.isDef())
Evan Cheng6ba95542010-03-03 02:48:20 +0000218 continue;
219 unsigned Reg = MO.getReg();
220 if (!Reg)
221 continue;
Evan Cheng835810b2010-05-21 21:22:19 +0000222 if (TargetRegisterInfo::isVirtualRegister(Reg))
223 continue;
Benjamin Kramer5fa2d452012-08-11 20:42:59 +0000224 // Reading constant physregs is ok.
225 if (!MRI->isConstantPhysReg(Reg, *MBB->getParent()))
226 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
Benjamin Kramercfc0ad62012-08-11 19:05:13 +0000227 PhysRefs.insert(*AI);
Ulrich Weigandb64e2112012-11-13 18:40:58 +0000228 }
229
230 // Next, collect all defs into PhysDefs. If any is already in PhysRefs
231 // (which currently contains only uses), set the PhysUseDef flag.
232 PhysUseDef = false;
Stephen Hines36b56882014-04-23 16:57:46 -0700233 MachineBasicBlock::const_iterator I = MI; I = std::next(I);
Ulrich Weigandb64e2112012-11-13 18:40:58 +0000234 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
235 const MachineOperand &MO = MI->getOperand(i);
236 if (!MO.isReg() || !MO.isDef())
237 continue;
238 unsigned Reg = MO.getReg();
239 if (!Reg)
240 continue;
241 if (TargetRegisterInfo::isVirtualRegister(Reg))
242 continue;
243 // Check against PhysRefs even if the def is "dead".
244 if (PhysRefs.count(Reg))
245 PhysUseDef = true;
246 // If the def is dead, it's ok. But the def may not marked "dead". That's
247 // common since this pass is run before livevariables. We can scan
248 // forward a few instructions and check if it is obviously dead.
249 if (!MO.isDead() && !isPhysDefTriviallyDead(Reg, I, MBB->end()))
Evan Cheng97b5beb2012-01-10 02:02:58 +0000250 PhysDefs.push_back(Reg);
Evan Chengb3958e82010-03-04 01:33:55 +0000251 }
252
Ulrich Weigandb64e2112012-11-13 18:40:58 +0000253 // Finally, add all defs to PhysRefs as well.
254 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i)
255 for (MCRegAliasIterator AI(PhysDefs[i], TRI, true); AI.isValid(); ++AI)
256 PhysRefs.insert(*AI);
257
Evan Cheng189c1ec2010-10-29 23:36:03 +0000258 return !PhysRefs.empty();
Evan Chengc6fe3332010-03-02 02:38:24 +0000259}
260
Evan Cheng189c1ec2010-10-29 23:36:03 +0000261bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000262 SmallSet<unsigned,8> &PhysRefs,
Craig Toppera0ec3f92013-07-14 04:42:23 +0000263 SmallVectorImpl<unsigned> &PhysDefs,
Evan Cheng97b5beb2012-01-10 02:02:58 +0000264 bool &NonLocal) const {
Eli Friedman5e926ac2011-05-06 05:23:07 +0000265 // For now conservatively returns false if the common subexpression is
Evan Cheng97b5beb2012-01-10 02:02:58 +0000266 // not in the same basic block as the given instruction. The only exception
267 // is if the common subexpression is in the sole predecessor block.
268 const MachineBasicBlock *MBB = MI->getParent();
269 const MachineBasicBlock *CSMBB = CSMI->getParent();
270
271 bool CrossMBB = false;
272 if (CSMBB != MBB) {
Evan Chengf96703e2012-01-11 00:38:11 +0000273 if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB)
Evan Cheng97b5beb2012-01-10 02:02:58 +0000274 return false;
Evan Chengf96703e2012-01-11 00:38:11 +0000275
276 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) {
Jakob Stoklund Olesenfb9ebbf2012-10-15 21:57:41 +0000277 if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i]))
Lang Hamesc2e08db2012-02-17 00:27:16 +0000278 // Avoid extending live range of physical registers if they are
279 //allocatable or reserved.
Evan Chengf96703e2012-01-11 00:38:11 +0000280 return false;
281 }
282 CrossMBB = true;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000283 }
Stephen Hines36b56882014-04-23 16:57:46 -0700284 MachineBasicBlock::const_iterator I = CSMI; I = std::next(I);
Eli Friedman5e926ac2011-05-06 05:23:07 +0000285 MachineBasicBlock::const_iterator E = MI;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000286 MachineBasicBlock::const_iterator EE = CSMBB->end();
Evan Cheng835810b2010-05-21 21:22:19 +0000287 unsigned LookAheadLeft = LookAheadLimit;
288 while (LookAheadLeft) {
Eli Friedman5e926ac2011-05-06 05:23:07 +0000289 // Skip over dbg_value's.
Evan Cheng97b5beb2012-01-10 02:02:58 +0000290 while (I != E && I != EE && I->isDebugValue())
Evan Cheng835810b2010-05-21 21:22:19 +0000291 ++I;
Eli Friedman5e926ac2011-05-06 05:23:07 +0000292
Evan Cheng97b5beb2012-01-10 02:02:58 +0000293 if (I == EE) {
294 assert(CrossMBB && "Reaching end-of-MBB without finding MI?");
Duncan Sands5b8a1db2012-02-05 14:20:11 +0000295 (void)CrossMBB;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000296 CrossMBB = false;
297 NonLocal = true;
298 I = MBB->begin();
299 EE = MBB->end();
300 continue;
301 }
302
Eli Friedman5e926ac2011-05-06 05:23:07 +0000303 if (I == E)
304 return true;
305
306 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
307 const MachineOperand &MO = I->getOperand(i);
Jakob Stoklund Olesen2129a0f2012-02-28 02:08:50 +0000308 // RegMasks go on instructions like calls that clobber lots of physregs.
309 // Don't attempt to CSE across such an instruction.
310 if (MO.isRegMask())
311 return false;
Eli Friedman5e926ac2011-05-06 05:23:07 +0000312 if (!MO.isReg() || !MO.isDef())
313 continue;
314 unsigned MOReg = MO.getReg();
315 if (TargetRegisterInfo::isVirtualRegister(MOReg))
316 continue;
317 if (PhysRefs.count(MOReg))
318 return false;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000319 }
Eli Friedman5e926ac2011-05-06 05:23:07 +0000320
321 --LookAheadLeft;
322 ++I;
Evan Cheng835810b2010-05-21 21:22:19 +0000323 }
324
325 return false;
326}
327
Evan Chenga5f32cb2010-03-04 21:18:08 +0000328bool MachineCSE::isCSECandidate(MachineInstr *MI) {
Stephen Hines36b56882014-04-23 16:57:46 -0700329 if (MI->isPosition() || MI->isPHI() || MI->isImplicitDef() || MI->isKill() ||
330 MI->isInlineAsm() || MI->isDebugValue())
Evan Cheng51960182010-03-08 23:49:12 +0000331 return false;
332
Evan Cheng2938a002010-03-10 02:12:03 +0000333 // Ignore copies.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000334 if (MI->isCopyLike())
Evan Chenga5f32cb2010-03-04 21:18:08 +0000335 return false;
336
337 // Ignore stuff that we obviously can't move.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000338 if (MI->mayStore() || MI->isCall() || MI->isTerminator() ||
Evan Chengc36b7062011-01-07 23:50:32 +0000339 MI->hasUnmodeledSideEffects())
Evan Chenga5f32cb2010-03-04 21:18:08 +0000340 return false;
341
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000342 if (MI->mayLoad()) {
Evan Chenga5f32cb2010-03-04 21:18:08 +0000343 // Okay, this instruction does a load. As a refinement, we allow the target
344 // to decide whether the loaded value is actually a constant. If so, we can
345 // actually use it as a load.
346 if (!MI->isInvariantLoad(AA))
347 // FIXME: we should be able to hoist loads with no other side effects if
348 // there are no other instructions which can change memory in this loop.
349 // This is a trivial form of alias analysis.
350 return false;
351 }
352 return true;
353}
354
Evan Cheng31f94c72010-03-09 03:21:12 +0000355/// isProfitableToCSE - Return true if it's profitable to eliminate MI with a
356/// common expression that defines Reg.
Evan Cheng2938a002010-03-10 02:12:03 +0000357bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg,
358 MachineInstr *CSMI, MachineInstr *MI) {
359 // FIXME: Heuristics that works around the lack the live range splitting.
360
Manman Renba86b132012-08-07 06:16:46 +0000361 // If CSReg is used at all uses of Reg, CSE should not increase register
362 // pressure of CSReg.
363 bool MayIncreasePressure = true;
364 if (TargetRegisterInfo::isVirtualRegister(CSReg) &&
365 TargetRegisterInfo::isVirtualRegister(Reg)) {
366 MayIncreasePressure = false;
367 SmallPtrSet<MachineInstr*, 8> CSUses;
Stephen Hines36b56882014-04-23 16:57:46 -0700368 for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) {
369 CSUses.insert(&MI);
Manman Renba86b132012-08-07 06:16:46 +0000370 }
Stephen Hines36b56882014-04-23 16:57:46 -0700371 for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) {
372 if (!CSUses.count(&MI)) {
Manman Renba86b132012-08-07 06:16:46 +0000373 MayIncreasePressure = true;
374 break;
375 }
376 }
377 }
378 if (!MayIncreasePressure) return true;
379
Chris Lattner622a11b2011-01-10 07:51:31 +0000380 // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in
381 // an immediate predecessor. We don't want to increase register pressure and
382 // end up causing other computation to be spilled.
Stephen Hinesbfc2d682014-10-17 08:47:43 -0700383 if (TII->isAsCheapAsAMove(MI)) {
Evan Cheng2938a002010-03-10 02:12:03 +0000384 MachineBasicBlock *CSBB = CSMI->getParent();
385 MachineBasicBlock *BB = MI->getParent();
Chris Lattner622a11b2011-01-10 07:51:31 +0000386 if (CSBB != BB && !CSBB->isSuccessor(BB))
Evan Cheng2938a002010-03-10 02:12:03 +0000387 return false;
388 }
389
390 // Heuristics #2: If the expression doesn't not use a vr and the only use
391 // of the redundant computation are copies, do not cse.
392 bool HasVRegUse = false;
393 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
394 const MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000395 if (MO.isReg() && MO.isUse() &&
Evan Cheng2938a002010-03-10 02:12:03 +0000396 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
397 HasVRegUse = true;
398 break;
399 }
400 }
401 if (!HasVRegUse) {
402 bool HasNonCopyUse = false;
Stephen Hines36b56882014-04-23 16:57:46 -0700403 for (MachineInstr &MI : MRI->use_nodbg_instructions(Reg)) {
Evan Cheng2938a002010-03-10 02:12:03 +0000404 // Ignore copies.
Stephen Hines36b56882014-04-23 16:57:46 -0700405 if (!MI.isCopyLike()) {
Evan Cheng2938a002010-03-10 02:12:03 +0000406 HasNonCopyUse = true;
407 break;
408 }
409 }
410 if (!HasNonCopyUse)
411 return false;
412 }
413
414 // Heuristics #3: If the common subexpression is used by PHIs, do not reuse
415 // it unless the defined value is already used in the BB of the new use.
Evan Cheng31f94c72010-03-09 03:21:12 +0000416 bool HasPHI = false;
417 SmallPtrSet<MachineBasicBlock*, 4> CSBBs;
Stephen Hines36b56882014-04-23 16:57:46 -0700418 for (MachineInstr &MI : MRI->use_nodbg_instructions(CSReg)) {
419 HasPHI |= MI.isPHI();
420 CSBBs.insert(MI.getParent());
Evan Cheng31f94c72010-03-09 03:21:12 +0000421 }
422
423 if (!HasPHI)
424 return true;
425 return CSBBs.count(MI->getParent());
426}
427
Evan Cheng31156982010-04-21 00:21:07 +0000428void MachineCSE::EnterScope(MachineBasicBlock *MBB) {
429 DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n');
430 ScopeType *Scope = new ScopeType(VNT);
431 ScopeMap[MBB] = Scope;
432}
433
434void MachineCSE::ExitScope(MachineBasicBlock *MBB) {
435 DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n');
436 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB);
437 assert(SI != ScopeMap.end());
Evan Cheng31156982010-04-21 00:21:07 +0000438 delete SI->second;
Jakub Staszakbb8ddc72012-11-26 22:14:19 +0000439 ScopeMap.erase(SI);
Evan Cheng31156982010-04-21 00:21:07 +0000440}
441
442bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000443 bool Changed = false;
444
Evan Cheng31f94c72010-03-09 03:21:12 +0000445 SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs;
Manman Ren39ad5682012-08-08 00:51:41 +0000446 SmallVector<unsigned, 2> ImplicitDefsToUpdate;
Evan Cheng16b48b82010-03-03 21:20:05 +0000447 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000448 MachineInstr *MI = &*I;
Evan Cheng16b48b82010-03-03 21:20:05 +0000449 ++I;
Evan Chenga5f32cb2010-03-04 21:18:08 +0000450
451 if (!isCSECandidate(MI))
Evan Cheng6ba95542010-03-03 02:48:20 +0000452 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000453
454 bool FoundCSE = VNT.count(MI);
455 if (!FoundCSE) {
456 // Look for trivial copy coalescing opportunities.
Evan Chengdb8771a2010-04-02 02:21:24 +0000457 if (PerformTrivialCoalescing(MI, MBB)) {
Evan Chengcfea9852011-04-11 18:47:20 +0000458 Changed = true;
459
Evan Chengdb8771a2010-04-02 02:21:24 +0000460 // After coalescing MI itself may become a copy.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000461 if (MI->isCopyLike())
Evan Chengdb8771a2010-04-02 02:21:24 +0000462 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000463 FoundCSE = VNT.count(MI);
Evan Chengdb8771a2010-04-02 02:21:24 +0000464 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000465 }
Evan Chenga63cde22010-12-15 22:16:21 +0000466
467 // Commute commutable instructions.
468 bool Commuted = false;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000469 if (!FoundCSE && MI->isCommutable()) {
Evan Chenga63cde22010-12-15 22:16:21 +0000470 MachineInstr *NewMI = TII->commuteInstruction(MI);
471 if (NewMI) {
472 Commuted = true;
473 FoundCSE = VNT.count(NewMI);
Evan Chengcfea9852011-04-11 18:47:20 +0000474 if (NewMI != MI) {
Evan Chenga63cde22010-12-15 22:16:21 +0000475 // New instruction. It doesn't need to be kept.
476 NewMI->eraseFromParent();
Evan Chengcfea9852011-04-11 18:47:20 +0000477 Changed = true;
478 } else if (!FoundCSE)
Evan Chenga63cde22010-12-15 22:16:21 +0000479 // MI was changed but it didn't help, commute it back!
480 (void)TII->commuteInstruction(MI);
481 }
482 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000483
Evan Cheng189c1ec2010-10-29 23:36:03 +0000484 // If the instruction defines physical registers and the values *may* be
Evan Cheng67bda722010-03-03 23:59:08 +0000485 // used, then it's not safe to replace it with a common subexpression.
Evan Cheng189c1ec2010-10-29 23:36:03 +0000486 // It's also not safe if the instruction uses physical registers.
Evan Cheng97b5beb2012-01-10 02:02:58 +0000487 bool CrossMBBPhysDef = false;
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000488 SmallSet<unsigned, 8> PhysRefs;
Evan Cheng97b5beb2012-01-10 02:02:58 +0000489 SmallVector<unsigned, 2> PhysDefs;
Ulrich Weigandb64e2112012-11-13 18:40:58 +0000490 bool PhysUseDef = false;
491 if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs,
492 PhysDefs, PhysUseDef)) {
Evan Cheng67bda722010-03-03 23:59:08 +0000493 FoundCSE = false;
494
Evan Cheng97b5beb2012-01-10 02:02:58 +0000495 // ... Unless the CS is local or is in the sole predecessor block
496 // and it also defines the physical register which is not clobbered
497 // in between and the physical register uses were not clobbered.
Ulrich Weigandb64e2112012-11-13 18:40:58 +0000498 // This can never be the case if the instruction both uses and
499 // defines the same physical register, which was detected above.
500 if (!PhysUseDef) {
501 unsigned CSVN = VNT.lookup(MI);
502 MachineInstr *CSMI = Exps[CSVN];
503 if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef))
504 FoundCSE = true;
505 }
Evan Cheng835810b2010-05-21 21:22:19 +0000506 }
507
Evan Cheng16b48b82010-03-03 21:20:05 +0000508 if (!FoundCSE) {
509 VNT.insert(MI, CurrVN++);
510 Exps.push_back(MI);
511 continue;
512 }
513
514 // Found a common subexpression, eliminate it.
515 unsigned CSVN = VNT.lookup(MI);
516 MachineInstr *CSMI = Exps[CSVN];
517 DEBUG(dbgs() << "Examining: " << *MI);
518 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI);
Evan Cheng31f94c72010-03-09 03:21:12 +0000519
520 // Check if it's profitable to perform this CSE.
521 bool DoCSE = true;
Manman Ren39ad5682012-08-08 00:51:41 +0000522 unsigned NumDefs = MI->getDesc().getNumDefs() +
523 MI->getDesc().getNumImplicitDefs();
Stephen Hines36b56882014-04-23 16:57:46 -0700524
Evan Cheng16b48b82010-03-03 21:20:05 +0000525 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
526 MachineOperand &MO = MI->getOperand(i);
527 if (!MO.isReg() || !MO.isDef())
528 continue;
529 unsigned OldReg = MO.getReg();
530 unsigned NewReg = CSMI->getOperand(i).getReg();
Manman Ren39ad5682012-08-08 00:51:41 +0000531
532 // Go through implicit defs of CSMI and MI, if a def is not dead at MI,
533 // we should make sure it is not dead at CSMI.
534 if (MO.isImplicit() && !MO.isDead() && CSMI->getOperand(i).isDead())
535 ImplicitDefsToUpdate.push_back(i);
536 if (OldReg == NewReg) {
537 --NumDefs;
Evan Cheng6cc1aea2010-03-06 01:14:19 +0000538 continue;
Manman Ren39ad5682012-08-08 00:51:41 +0000539 }
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000540
Evan Cheng6cc1aea2010-03-06 01:14:19 +0000541 assert(TargetRegisterInfo::isVirtualRegister(OldReg) &&
Evan Cheng16b48b82010-03-03 21:20:05 +0000542 TargetRegisterInfo::isVirtualRegister(NewReg) &&
543 "Do not CSE physical register defs!");
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000544
Evan Cheng2938a002010-03-10 02:12:03 +0000545 if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) {
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000546 DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n");
Evan Cheng31f94c72010-03-09 03:21:12 +0000547 DoCSE = false;
548 break;
549 }
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000550
551 // Don't perform CSE if the result of the old instruction cannot exist
552 // within the register class of the new instruction.
553 const TargetRegisterClass *OldRC = MRI->getRegClass(OldReg);
554 if (!MRI->constrainRegClass(NewReg, OldRC)) {
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000555 DEBUG(dbgs() << "*** Not the same register class, avoid CSE!\n");
Bill Wendlingf6fb7ed2011-10-12 23:03:40 +0000556 DoCSE = false;
557 break;
558 }
559
Evan Cheng31f94c72010-03-09 03:21:12 +0000560 CSEPairs.push_back(std::make_pair(OldReg, NewReg));
Evan Cheng16b48b82010-03-03 21:20:05 +0000561 --NumDefs;
562 }
Evan Cheng31f94c72010-03-09 03:21:12 +0000563
564 // Actually perform the elimination.
565 if (DoCSE) {
Dan Gohman49b45892010-05-13 19:24:00 +0000566 for (unsigned i = 0, e = CSEPairs.size(); i != e; ++i) {
Evan Cheng31f94c72010-03-09 03:21:12 +0000567 MRI->replaceRegWith(CSEPairs[i].first, CSEPairs[i].second);
Dan Gohman49b45892010-05-13 19:24:00 +0000568 MRI->clearKillFlags(CSEPairs[i].second);
569 }
Evan Cheng97b5beb2012-01-10 02:02:58 +0000570
Manman Ren39ad5682012-08-08 00:51:41 +0000571 // Go through implicit defs of CSMI and MI, if a def is not dead at MI,
572 // we should make sure it is not dead at CSMI.
573 for (unsigned i = 0, e = ImplicitDefsToUpdate.size(); i != e; ++i)
574 CSMI->getOperand(ImplicitDefsToUpdate[i]).setIsDead(false);
575
Evan Cheng97b5beb2012-01-10 02:02:58 +0000576 if (CrossMBBPhysDef) {
577 // Add physical register defs now coming in from a predecessor to MBB
578 // livein list.
579 while (!PhysDefs.empty()) {
580 unsigned LiveIn = PhysDefs.pop_back_val();
581 if (!MBB->isLiveIn(LiveIn))
582 MBB->addLiveIn(LiveIn);
583 }
584 ++NumCrossBBCSEs;
585 }
586
Evan Cheng31f94c72010-03-09 03:21:12 +0000587 MI->eraseFromParent();
588 ++NumCSEs;
Evan Cheng189c1ec2010-10-29 23:36:03 +0000589 if (!PhysRefs.empty())
Evan Cheng2b4e7272010-06-04 23:28:13 +0000590 ++NumPhysCSEs;
Evan Chenga63cde22010-12-15 22:16:21 +0000591 if (Commuted)
592 ++NumCommutes;
Evan Chengcfea9852011-04-11 18:47:20 +0000593 Changed = true;
Evan Cheng31f94c72010-03-09 03:21:12 +0000594 } else {
Evan Cheng31f94c72010-03-09 03:21:12 +0000595 VNT.insert(MI, CurrVN++);
596 Exps.push_back(MI);
597 }
598 CSEPairs.clear();
Manman Ren39ad5682012-08-08 00:51:41 +0000599 ImplicitDefsToUpdate.clear();
Evan Cheng6ba95542010-03-03 02:48:20 +0000600 }
601
Evan Cheng31156982010-04-21 00:21:07 +0000602 return Changed;
603}
604
605/// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
606/// dominator tree node if its a leaf or all of its children are done. Walk
607/// up the dominator tree to destroy ancestors which are now done.
608void
609MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node,
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000610 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren) {
Evan Cheng31156982010-04-21 00:21:07 +0000611 if (OpenChildren[Node])
612 return;
613
614 // Pop scope.
615 ExitScope(Node->getBlock());
616
617 // Now traverse upwards to pop ancestors whose offsprings are all done.
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000618 while (MachineDomTreeNode *Parent = Node->getIDom()) {
Evan Cheng31156982010-04-21 00:21:07 +0000619 unsigned Left = --OpenChildren[Parent];
620 if (Left != 0)
621 break;
622 ExitScope(Parent->getBlock());
623 Node = Parent;
624 }
625}
626
627bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) {
628 SmallVector<MachineDomTreeNode*, 32> Scopes;
629 SmallVector<MachineDomTreeNode*, 8> WorkList;
Evan Cheng31156982010-04-21 00:21:07 +0000630 DenseMap<MachineDomTreeNode*, unsigned> OpenChildren;
631
Evan Chengc2b768f2010-09-17 21:59:42 +0000632 CurrVN = 0;
633
Evan Cheng31156982010-04-21 00:21:07 +0000634 // Perform a DFS walk to determine the order of visit.
635 WorkList.push_back(Node);
636 do {
637 Node = WorkList.pop_back_val();
638 Scopes.push_back(Node);
639 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
640 unsigned NumChildren = Children.size();
641 OpenChildren[Node] = NumChildren;
642 for (unsigned i = 0; i != NumChildren; ++i) {
643 MachineDomTreeNode *Child = Children[i];
Evan Cheng31156982010-04-21 00:21:07 +0000644 WorkList.push_back(Child);
645 }
646 } while (!WorkList.empty());
647
648 // Now perform CSE.
649 bool Changed = false;
650 for (unsigned i = 0, e = Scopes.size(); i != e; ++i) {
651 MachineDomTreeNode *Node = Scopes[i];
652 MachineBasicBlock *MBB = Node->getBlock();
653 EnterScope(MBB);
654 Changed |= ProcessBlock(MBB);
655 // If it's a leaf node, it's done. Traverse upwards to pop ancestors.
Nick Lewycky7a7a6db2012-07-05 06:19:21 +0000656 ExitScopeIfDone(Node, OpenChildren);
Evan Cheng31156982010-04-21 00:21:07 +0000657 }
Evan Cheng6ba95542010-03-03 02:48:20 +0000658
659 return Changed;
660}
661
Evan Chengc6fe3332010-03-02 02:38:24 +0000662bool MachineCSE::runOnMachineFunction(MachineFunction &MF) {
Stephen Hines36b56882014-04-23 16:57:46 -0700663 if (skipOptnoneFunction(*MF.getFunction()))
664 return false;
665
Evan Cheng6ba95542010-03-03 02:48:20 +0000666 TII = MF.getTarget().getInstrInfo();
Evan Chengb3958e82010-03-04 01:33:55 +0000667 TRI = MF.getTarget().getRegisterInfo();
Evan Cheng6ba95542010-03-03 02:48:20 +0000668 MRI = &MF.getRegInfo();
Evan Chenga5f32cb2010-03-04 21:18:08 +0000669 AA = &getAnalysis<AliasAnalysis>();
Evan Cheng31f94c72010-03-09 03:21:12 +0000670 DT = &getAnalysis<MachineDominatorTree>();
Evan Cheng31156982010-04-21 00:21:07 +0000671 return PerformCSE(DT->getRootNode());
Evan Chengc6fe3332010-03-02 02:38:24 +0000672}