blob: 907a92bb506840290020c1127b141b7036bb6f80 [file] [log] [blame]
Bill Wendling0f940c92007-12-07 21:42:31 +00001//===-- MachineLICM.cpp - Machine Loop Invariant Code Motion Pass ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bill Wendling0f940c92007-12-07 21:42:31 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass performs loop invariant code motion on machine instructions. We
11// attempt to remove as much code from the body of a loop as possible.
12//
Dan Gohmanc475c362009-01-15 22:01:38 +000013// This pass does not attempt to throttle itself to limit register pressure.
14// The register allocation phases are expected to perform rematerialization
15// to recover when register pressure is high.
16//
17// This pass is not intended to be a replacement or a complete alternative
18// for the LLVM-IR-level LICM pass. It is only designed to hoist simple
19// constructs that are not exposed before lowering and instruction selection.
20//
Bill Wendling0f940c92007-12-07 21:42:31 +000021//===----------------------------------------------------------------------===//
22
23#define DEBUG_TYPE "machine-licm"
Chris Lattnerac695822008-01-04 06:41:45 +000024#include "llvm/CodeGen/Passes.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000025#include "llvm/CodeGen/MachineDominators.h"
Evan Chengd94671a2010-04-07 00:41:17 +000026#include "llvm/CodeGen/MachineFrameInfo.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000027#include "llvm/CodeGen/MachineLoopInfo.h"
Dan Gohman589f1f52009-10-28 03:21:57 +000028#include "llvm/CodeGen/MachineMemOperand.h"
Bill Wendling9258cd32008-01-02 19:32:43 +000029#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman589f1f52009-10-28 03:21:57 +000030#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000031#include "llvm/Target/TargetRegisterInfo.h"
Bill Wendlingefe2be72007-12-11 23:27:51 +000032#include "llvm/Target/TargetInstrInfo.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000033#include "llvm/Target/TargetMachine.h"
Dan Gohmane33f44c2009-10-07 17:38:06 +000034#include "llvm/Analysis/AliasAnalysis.h"
Evan Chengaf6949d2009-02-05 08:45:46 +000035#include "llvm/ADT/DenseMap.h"
Evan Chengd94671a2010-04-07 00:41:17 +000036#include "llvm/ADT/SmallSet.h"
Chris Lattnerac695822008-01-04 06:41:45 +000037#include "llvm/ADT/Statistic.h"
Chris Lattnerac695822008-01-04 06:41:45 +000038#include "llvm/Support/Debug.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000039#include "llvm/Support/raw_ostream.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000040
41using namespace llvm;
42
Bill Wendling041b3f82007-12-08 23:58:46 +000043STATISTIC(NumHoisted, "Number of machine instructions hoisted out of loops");
Evan Chengaf6949d2009-02-05 08:45:46 +000044STATISTIC(NumCSEed, "Number of hoisted machine instructions CSEed");
Evan Chengd94671a2010-04-07 00:41:17 +000045STATISTIC(NumPostRAHoisted,
46 "Number of machine instructions hoisted out of loops post regalloc");
Bill Wendlingb48519c2007-12-08 01:47:01 +000047
Bill Wendling0f940c92007-12-07 21:42:31 +000048namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000049 class MachineLICM : public MachineFunctionPass {
Evan Chengd94671a2010-04-07 00:41:17 +000050 bool PreRegAlloc;
51
Bill Wendling9258cd32008-01-02 19:32:43 +000052 const TargetMachine *TM;
Bill Wendlingefe2be72007-12-11 23:27:51 +000053 const TargetInstrInfo *TII;
Dan Gohmana8fb3362009-09-25 23:58:45 +000054 const TargetRegisterInfo *TRI;
Evan Chengd94671a2010-04-07 00:41:17 +000055 const MachineFrameInfo *MFI;
56 MachineRegisterInfo *RegInfo;
Bill Wendling12ebf142007-12-11 19:40:06 +000057
Bill Wendling0f940c92007-12-07 21:42:31 +000058 // Various analyses that we use...
Dan Gohmane33f44c2009-10-07 17:38:06 +000059 AliasAnalysis *AA; // Alias analysis info.
Evan Cheng4038f9c2010-04-08 01:03:47 +000060 MachineLoopInfo *MLI; // Current MachineLoopInfo
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000061 MachineDominatorTree *DT; // Machine dominator tree for the cur loop
Bill Wendling0f940c92007-12-07 21:42:31 +000062
Bill Wendling0f940c92007-12-07 21:42:31 +000063 // State that is updated as we process loops
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000064 bool Changed; // True if a loop is changed.
65 MachineLoop *CurLoop; // The current loop we are working on.
Dan Gohmanc475c362009-01-15 22:01:38 +000066 MachineBasicBlock *CurPreheader; // The preheader for CurLoop.
Evan Chengaf6949d2009-02-05 08:45:46 +000067
Evan Chengd94671a2010-04-07 00:41:17 +000068 BitVector AllocatableSet;
69
Evan Cheng777c6b72009-11-03 21:40:02 +000070 // For each opcode, keep a list of potentail CSE instructions.
71 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap;
Evan Chengd94671a2010-04-07 00:41:17 +000072
Bill Wendling0f940c92007-12-07 21:42:31 +000073 public:
74 static char ID; // Pass identification, replacement for typeid
Evan Chengd94671a2010-04-07 00:41:17 +000075 MachineLICM() :
76 MachineFunctionPass(&ID), PreRegAlloc(true) {}
77
78 explicit MachineLICM(bool PreRA) :
79 MachineFunctionPass(&ID), PreRegAlloc(PreRA) {}
Bill Wendling0f940c92007-12-07 21:42:31 +000080
81 virtual bool runOnMachineFunction(MachineFunction &MF);
82
Dan Gohman72241702008-12-18 01:37:56 +000083 const char *getPassName() const { return "Machine Instruction LICM"; }
84
Bill Wendling074223a2008-03-10 08:13:01 +000085 // FIXME: Loop preheaders?
Bill Wendling0f940c92007-12-07 21:42:31 +000086 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
87 AU.setPreservesCFG();
88 AU.addRequired<MachineLoopInfo>();
89 AU.addRequired<MachineDominatorTree>();
Dan Gohmane33f44c2009-10-07 17:38:06 +000090 AU.addRequired<AliasAnalysis>();
Bill Wendlingd5da7042008-01-04 08:48:49 +000091 AU.addPreserved<MachineLoopInfo>();
92 AU.addPreserved<MachineDominatorTree>();
93 MachineFunctionPass::getAnalysisUsage(AU);
Bill Wendling0f940c92007-12-07 21:42:31 +000094 }
Evan Chengaf6949d2009-02-05 08:45:46 +000095
96 virtual void releaseMemory() {
97 CSEMap.clear();
98 }
99
Bill Wendling0f940c92007-12-07 21:42:31 +0000100 private:
Evan Cheng4038f9c2010-04-08 01:03:47 +0000101 /// CandidateInfo - Keep track of information about hoisting candidates.
102 struct CandidateInfo {
103 MachineInstr *MI;
104 int FI;
105 unsigned Def;
106 CandidateInfo(MachineInstr *mi, int fi, unsigned def)
107 : MI(mi), FI(fi), Def(def) {}
108 };
109
110 /// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop
111 /// invariants out to the preheader.
112 void HoistRegionPostRA(MachineDomTreeNode *N);
113
114 /// HoistPostRA - When an instruction is found to only use loop invariant
115 /// operands that is safe to hoist, this instruction is called to do the
116 /// dirty work.
117 void HoistPostRA(MachineInstr *MI, unsigned Def);
118
119 /// ProcessMI - Examine the instruction for potentai LICM candidate. Also
120 /// gather register def and frame object update information.
121 void ProcessMI(MachineInstr *MI, unsigned *PhysRegDefs,
122 SmallSet<int, 32> &StoredFIs,
123 SmallVector<CandidateInfo, 32> &Candidates);
124
125 /// AddToLiveIns - Add 'Reg' to the livein sets of BBs in the backedge path
126 /// from MBB to LoopHeader (inclusive).
127 void AddToLiveIns(unsigned Reg,
128 MachineBasicBlock *MBB, MachineBasicBlock *LoopHeader);
129
Bill Wendling041b3f82007-12-08 23:58:46 +0000130 /// IsLoopInvariantInst - Returns true if the instruction is loop
Bill Wendling0f940c92007-12-07 21:42:31 +0000131 /// invariant. I.e., all virtual register operands are defined outside of
132 /// the loop, physical registers aren't accessed (explicitly or implicitly),
133 /// and the instruction is hoistable.
134 ///
Bill Wendling041b3f82007-12-08 23:58:46 +0000135 bool IsLoopInvariantInst(MachineInstr &I);
Bill Wendling0f940c92007-12-07 21:42:31 +0000136
Evan Cheng45e94d62009-02-04 09:19:56 +0000137 /// IsProfitableToHoist - Return true if it is potentially profitable to
138 /// hoist the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000139 bool IsProfitableToHoist(MachineInstr &MI);
Evan Cheng45e94d62009-02-04 09:19:56 +0000140
Bill Wendling0f940c92007-12-07 21:42:31 +0000141 /// HoistRegion - Walk the specified region of the CFG (defined by all
142 /// blocks dominated by the specified block, and that are in the current
143 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
144 /// visit definitions before uses, allowing us to hoist a loop body in one
145 /// pass without iteration.
146 ///
147 void HoistRegion(MachineDomTreeNode *N);
148
Evan Cheng87b75ba2009-11-20 19:55:37 +0000149 /// isLoadFromConstantMemory - Return true if the given instruction is a
150 /// load from constant memory.
151 bool isLoadFromConstantMemory(MachineInstr *MI);
152
Dan Gohman5c952302009-10-29 17:47:20 +0000153 /// ExtractHoistableLoad - Unfold a load from the given machineinstr if
154 /// the load itself could be hoisted. Return the unfolded and hoistable
155 /// load, or null if the load couldn't be unfolded or if it wouldn't
156 /// be hoistable.
157 MachineInstr *ExtractHoistableLoad(MachineInstr *MI);
158
Evan Cheng78e5c112009-11-07 03:52:02 +0000159 /// LookForDuplicate - Find an instruction amount PrevMIs that is a
160 /// duplicate of MI. Return this instruction if it's found.
161 const MachineInstr *LookForDuplicate(const MachineInstr *MI,
162 std::vector<const MachineInstr*> &PrevMIs);
163
Evan Cheng9fb744e2009-11-05 00:51:13 +0000164 /// EliminateCSE - Given a LICM'ed instruction, look for an instruction on
165 /// the preheader that compute the same value. If it's found, do a RAU on
166 /// with the definition of the existing instruction rather than hoisting
167 /// the instruction to the preheader.
168 bool EliminateCSE(MachineInstr *MI,
169 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI);
170
Bill Wendling0f940c92007-12-07 21:42:31 +0000171 /// Hoist - When an instruction is found to only use loop invariant operands
172 /// that is safe to hoist, this instruction is called to do the dirty work.
173 ///
Dan Gohman589f1f52009-10-28 03:21:57 +0000174 void Hoist(MachineInstr *MI);
Evan Cheng777c6b72009-11-03 21:40:02 +0000175
176 /// InitCSEMap - Initialize the CSE map with instructions that are in the
177 /// current loop preheader that may become duplicates of instructions that
178 /// are hoisted out of the loop.
179 void InitCSEMap(MachineBasicBlock *BB);
Bill Wendling0f940c92007-12-07 21:42:31 +0000180 };
Bill Wendling0f940c92007-12-07 21:42:31 +0000181} // end anonymous namespace
182
Dan Gohman844731a2008-05-13 00:00:25 +0000183char MachineLICM::ID = 0;
184static RegisterPass<MachineLICM>
Bill Wendling8870ce92008-07-07 05:42:27 +0000185X("machinelicm", "Machine Loop Invariant Code Motion");
Dan Gohman844731a2008-05-13 00:00:25 +0000186
Evan Chengd94671a2010-04-07 00:41:17 +0000187FunctionPass *llvm::createMachineLICMPass(bool PreRegAlloc) {
188 return new MachineLICM(PreRegAlloc);
189}
Bill Wendling0f940c92007-12-07 21:42:31 +0000190
Dan Gohmanc475c362009-01-15 22:01:38 +0000191/// LoopIsOuterMostWithPreheader - Test if the given loop is the outer-most
192/// loop that has a preheader.
193static bool LoopIsOuterMostWithPreheader(MachineLoop *CurLoop) {
194 for (MachineLoop *L = CurLoop->getParentLoop(); L; L = L->getParentLoop())
195 if (L->getLoopPreheader())
196 return false;
197 return true;
198}
199
Bill Wendling0f940c92007-12-07 21:42:31 +0000200/// Hoist expressions out of the specified loop. Note, alias info for inner loop
201/// is not preserved so it is not a good idea to run LICM multiple times on one
202/// loop.
203///
204bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd94671a2010-04-07 00:41:17 +0000205 if (PreRegAlloc)
206 DEBUG(dbgs() << "******** Pre-regalloc Machine LICM ********\n");
207 else
208 DEBUG(dbgs() << "******** Post-regalloc Machine LICM ********\n");
Bill Wendlinga17ad592007-12-11 22:22:22 +0000209
Evan Cheng4038f9c2010-04-08 01:03:47 +0000210 Changed = false;
Bill Wendlingacb04ec2008-08-31 02:30:23 +0000211 TM = &MF.getTarget();
Bill Wendling9258cd32008-01-02 19:32:43 +0000212 TII = TM->getInstrInfo();
Dan Gohmana8fb3362009-09-25 23:58:45 +0000213 TRI = TM->getRegisterInfo();
Evan Chengd94671a2010-04-07 00:41:17 +0000214 MFI = MF.getFrameInfo();
Bill Wendlingacb04ec2008-08-31 02:30:23 +0000215 RegInfo = &MF.getRegInfo();
Dan Gohman45094e32009-09-26 02:34:00 +0000216 AllocatableSet = TRI->getAllocatableSet(MF);
Bill Wendling0f940c92007-12-07 21:42:31 +0000217
218 // Get our Loop information...
Evan Cheng4038f9c2010-04-08 01:03:47 +0000219 MLI = &getAnalysis<MachineLoopInfo>();
220 DT = &getAnalysis<MachineDominatorTree>();
221 AA = &getAnalysis<AliasAnalysis>();
Bill Wendling0f940c92007-12-07 21:42:31 +0000222
Evan Cheng4038f9c2010-04-08 01:03:47 +0000223 for (MachineLoopInfo::iterator I = MLI->begin(), E = MLI->end(); I != E; ++I){
Bill Wendlinga17ad592007-12-11 22:22:22 +0000224 CurLoop = *I;
Bill Wendling0f940c92007-12-07 21:42:31 +0000225
Evan Cheng4038f9c2010-04-08 01:03:47 +0000226 // If this is done before regalloc, only visit outer-most preheader-sporting
227 // loops.
228 if (PreRegAlloc && !LoopIsOuterMostWithPreheader(CurLoop))
Dan Gohmanc475c362009-01-15 22:01:38 +0000229 continue;
230
231 // Determine the block to which to hoist instructions. If we can't find a
232 // suitable loop preheader, we can't do any hoisting.
233 //
234 // FIXME: We are only hoisting if the basic block coming into this loop
235 // has only one successor. This isn't the case in general because we haven't
236 // broken critical edges or added preheaders.
237 CurPreheader = CurLoop->getLoopPreheader();
238 if (!CurPreheader)
239 continue;
240
Evan Cheng777c6b72009-11-03 21:40:02 +0000241 // CSEMap is initialized for loop header when the first instruction is
242 // being hoisted.
Evan Chengd94671a2010-04-07 00:41:17 +0000243 MachineDomTreeNode *N = DT->getNode(CurLoop->getHeader());
244 if (!PreRegAlloc)
245 HoistRegionPostRA(N);
246 else {
247 HoistRegion(N);
248 CSEMap.clear();
249 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000250 }
251
252 return Changed;
253}
254
Evan Cheng4038f9c2010-04-08 01:03:47 +0000255/// InstructionStoresToFI - Return true if instruction stores to the
256/// specified frame.
257static bool InstructionStoresToFI(const MachineInstr *MI, int FI) {
258 for (MachineInstr::mmo_iterator o = MI->memoperands_begin(),
259 oe = MI->memoperands_end(); o != oe; ++o) {
260 if (!(*o)->isStore() || !(*o)->getValue())
261 continue;
262 if (const FixedStackPseudoSourceValue *Value =
263 dyn_cast<const FixedStackPseudoSourceValue>((*o)->getValue())) {
264 if (Value->getFrameIndex() == FI)
265 return true;
266 }
267 }
268 return false;
269}
270
271/// ProcessMI - Examine the instruction for potentai LICM candidate. Also
272/// gather register def and frame object update information.
273void MachineLICM::ProcessMI(MachineInstr *MI,
274 unsigned *PhysRegDefs,
275 SmallSet<int, 32> &StoredFIs,
276 SmallVector<CandidateInfo, 32> &Candidates) {
277 bool RuledOut = false;
278 unsigned Def = 0;
279 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
280 const MachineOperand &MO = MI->getOperand(i);
281 if (MO.isFI()) {
282 // Remember if the instruction stores to the frame index.
283 int FI = MO.getIndex();
284 if (!StoredFIs.count(FI) &&
285 MFI->isSpillSlotObjectIndex(FI) &&
286 InstructionStoresToFI(MI, FI))
287 StoredFIs.insert(FI);
288 continue;
289 }
290
291 if (!MO.isReg())
292 continue;
293 unsigned Reg = MO.getReg();
294 if (!Reg)
295 continue;
296 assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
297 "Not expecting virtual register!");
298
299 if (!MO.isDef())
300 continue;
301
302 if (MO.isImplicit()) {
303 ++PhysRegDefs[Reg];
304 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
305 ++PhysRegDefs[*AS];
306 if (!MO.isDead())
307 // Non-dead implicit def? This cannot be hoisted.
308 RuledOut = true;
309 // No need to check if a dead implicit def is also defined by
310 // another instruction.
311 continue;
312 }
313
314 // FIXME: For now, avoid instructions with multiple defs, unless
315 // it's a dead implicit def.
316 if (Def)
317 RuledOut = true;
318 else
319 Def = Reg;
320
321 // If we have already seen another instruction that defines the same
322 // register, then this is not safe.
323 if (++PhysRegDefs[Reg] > 1)
324 // MI defined register is seen defined by another instruction in
325 // the loop, it cannot be a LICM candidate.
326 RuledOut = true;
327 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
328 if (++PhysRegDefs[*AS] > 1)
329 RuledOut = true;
330 }
331
332 // FIXME: Only consider reloads for now. We should be able to handle
333 // remats which does not have register operands.
334 if (Def && !RuledOut) {
335 int FI;
336 if (TII->isLoadFromStackSlot(MI, FI) &&
337 MFI->isSpillSlotObjectIndex(FI))
338 Candidates.push_back(CandidateInfo(MI, FI, Def));
339 }
340}
341
342/// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop
343/// invariants out to the preheader.
Evan Chengd94671a2010-04-07 00:41:17 +0000344void MachineLICM::HoistRegionPostRA(MachineDomTreeNode *N) {
345 assert(N != 0 && "Null dominator tree node?");
346
347 unsigned NumRegs = TRI->getNumRegs();
348 unsigned *PhysRegDefs = new unsigned[NumRegs];
349 std::fill(PhysRegDefs, PhysRegDefs + NumRegs, 0);
350
Evan Cheng4038f9c2010-04-08 01:03:47 +0000351 SmallVector<CandidateInfo, 32> Candidates;
Evan Chengd94671a2010-04-07 00:41:17 +0000352 SmallSet<int, 32> StoredFIs;
353
354 // Walk the entire region, count number of defs for each register, and
355 // return potential LICM candidates.
356 SmallVector<MachineDomTreeNode*, 8> WorkList;
357 WorkList.push_back(N);
358 do {
359 N = WorkList.pop_back_val();
360 MachineBasicBlock *BB = N->getBlock();
361
Evan Cheng4038f9c2010-04-08 01:03:47 +0000362 if (!CurLoop->contains(MLI->getLoopFor(BB)))
Evan Chengd94671a2010-04-07 00:41:17 +0000363 continue;
364 // Conservatively treat live-in's as an external def.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000365 // FIXME: That means a reload that're reused in successor block(s) will not
366 // be LICM'ed.
Evan Chengd94671a2010-04-07 00:41:17 +0000367 for (MachineBasicBlock::const_livein_iterator I = BB->livein_begin(),
368 E = BB->livein_end(); I != E; ++I) {
369 unsigned Reg = *I;
370 ++PhysRegDefs[Reg];
Evan Cheng4038f9c2010-04-08 01:03:47 +0000371 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
372 ++PhysRegDefs[*AS];
Evan Chengd94671a2010-04-07 00:41:17 +0000373 }
374
375 for (MachineBasicBlock::iterator
376 MII = BB->begin(), E = BB->end(); MII != E; ++MII) {
Evan Chengd94671a2010-04-07 00:41:17 +0000377 MachineInstr *MI = &*MII;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000378 ProcessMI(MI, PhysRegDefs, StoredFIs, Candidates);
Evan Chengd94671a2010-04-07 00:41:17 +0000379 }
380
381 const std::vector<MachineDomTreeNode*> &Children = N->getChildren();
382 for (unsigned I = 0, E = Children.size(); I != E; ++I)
383 WorkList.push_back(Children[I]);
384 } while (!WorkList.empty());
385
386 // Now evaluate whether the potential candidates qualify.
387 // 1. Check if the candidate defined register is defined by another
388 // instruction in the loop.
389 // 2. If the candidate is a load from stack slot (always true for now),
390 // check if the slot is stored anywhere in the loop.
391 for (unsigned i = 0, e = Candidates.size(); i != e; ++i) {
Evan Cheng4038f9c2010-04-08 01:03:47 +0000392 if (StoredFIs.count(Candidates[i].FI))
Evan Chengd94671a2010-04-07 00:41:17 +0000393 continue;
394
Evan Cheng4038f9c2010-04-08 01:03:47 +0000395 if (PhysRegDefs[Candidates[i].Def] == 1)
396 HoistPostRA(Candidates[i].MI, Candidates[i].Def);
Evan Chengd94671a2010-04-07 00:41:17 +0000397 }
398}
399
Evan Cheng4038f9c2010-04-08 01:03:47 +0000400/// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the
401/// backedge path from MBB to LoopHeader.
402void MachineLICM::AddToLiveIns(unsigned Reg, MachineBasicBlock *MBB,
403 MachineBasicBlock *LoopHeader) {
404 SmallPtrSet<MachineBasicBlock*, 4> Visited;
405 SmallVector<MachineBasicBlock*, 4> WorkList;
406 WorkList.push_back(MBB);
407 do {
408 MBB = WorkList.pop_back_val();
409 if (!Visited.insert(MBB))
410 continue;
411 MBB->addLiveIn(Reg);
412 if (MBB == LoopHeader)
413 continue;
414 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
415 E = MBB->pred_end(); PI != E; ++PI)
416 WorkList.push_back(*PI);
417 } while (!WorkList.empty());
418}
419
420/// HoistPostRA - When an instruction is found to only use loop invariant
421/// operands that is safe to hoist, this instruction is called to do the
422/// dirty work.
423void MachineLICM::HoistPostRA(MachineInstr *MI, unsigned Def) {
Evan Chengd94671a2010-04-07 00:41:17 +0000424 // Now move the instructions to the predecessor, inserting it before any
425 // terminator instructions.
426 DEBUG({
427 dbgs() << "Hoisting " << *MI;
428 if (CurPreheader->getBasicBlock())
429 dbgs() << " to MachineBasicBlock "
430 << CurPreheader->getName();
431 if (MI->getParent()->getBasicBlock())
432 dbgs() << " from MachineBasicBlock "
433 << MI->getParent()->getName();
434 dbgs() << "\n";
435 });
436
437 // Splice the instruction to the preheader.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000438 MachineBasicBlock *MBB = MI->getParent();
439 CurPreheader->splice(CurPreheader->getFirstTerminator(), MBB, MI);
440
441 // Add register to livein list to BBs in the path from loop header to original
442 // BB. Note, currently it's not necessary to worry about adding it to all BB's
443 // with uses. Reload that're reused in successor block(s) are not being
444 // hoisted.
445 AddToLiveIns(Def, MBB, CurLoop->getHeader());
Evan Chengd94671a2010-04-07 00:41:17 +0000446
447 ++NumPostRAHoisted;
448 Changed = true;
449}
450
Bill Wendling0f940c92007-12-07 21:42:31 +0000451/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
452/// dominated by the specified block, and that are in the current loop) in depth
453/// first order w.r.t the DominatorTree. This allows us to visit definitions
454/// before uses, allowing us to hoist a loop body in one pass without iteration.
455///
456void MachineLICM::HoistRegion(MachineDomTreeNode *N) {
457 assert(N != 0 && "Null dominator tree node?");
458 MachineBasicBlock *BB = N->getBlock();
459
460 // If this subregion is not in the top level loop at all, exit.
461 if (!CurLoop->contains(BB)) return;
462
Dan Gohmanc475c362009-01-15 22:01:38 +0000463 for (MachineBasicBlock::iterator
Evan Chengaf6949d2009-02-05 08:45:46 +0000464 MII = BB->begin(), E = BB->end(); MII != E; ) {
465 MachineBasicBlock::iterator NextMII = MII; ++NextMII;
Evan Cheng777c6b72009-11-03 21:40:02 +0000466 Hoist(&*MII);
Evan Chengaf6949d2009-02-05 08:45:46 +0000467 MII = NextMII;
Dan Gohmanc475c362009-01-15 22:01:38 +0000468 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000469
470 const std::vector<MachineDomTreeNode*> &Children = N->getChildren();
Bill Wendling0f940c92007-12-07 21:42:31 +0000471 for (unsigned I = 0, E = Children.size(); I != E; ++I)
472 HoistRegion(Children[I]);
473}
474
Bill Wendling041b3f82007-12-08 23:58:46 +0000475/// IsLoopInvariantInst - Returns true if the instruction is loop
Bill Wendling0f940c92007-12-07 21:42:31 +0000476/// invariant. I.e., all virtual register operands are defined outside of the
Bill Wendling60ff1a32007-12-20 01:08:10 +0000477/// loop, physical registers aren't accessed explicitly, and there are no side
478/// effects that aren't captured by the operands or other flags.
Bill Wendling0f940c92007-12-07 21:42:31 +0000479///
Bill Wendling041b3f82007-12-08 23:58:46 +0000480bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) {
Chris Lattnera22edc82008-01-10 23:08:24 +0000481 const TargetInstrDesc &TID = I.getDesc();
482
483 // Ignore stuff that we obviously can't hoist.
Dan Gohman237dee12008-12-23 17:28:50 +0000484 if (TID.mayStore() || TID.isCall() || TID.isTerminator() ||
Chris Lattnera22edc82008-01-10 23:08:24 +0000485 TID.hasUnmodeledSideEffects())
486 return false;
Evan Cheng9b61f332009-02-04 07:17:49 +0000487
Chris Lattnera22edc82008-01-10 23:08:24 +0000488 if (TID.mayLoad()) {
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000489 // Okay, this instruction does a load. As a refinement, we allow the target
490 // to decide whether the loaded value is actually a constant. If so, we can
491 // actually use it as a load.
Dan Gohmane33f44c2009-10-07 17:38:06 +0000492 if (!I.isInvariantLoad(AA))
Evan Cheng7adcdc32009-11-17 19:19:01 +0000493 // FIXME: we should be able to hoist loads with no other side effects if
494 // there are no other instructions which can change memory in this loop.
495 // This is a trivial form of alias analysis.
Chris Lattnera22edc82008-01-10 23:08:24 +0000496 return false;
Chris Lattnera22edc82008-01-10 23:08:24 +0000497 }
Bill Wendling074223a2008-03-10 08:13:01 +0000498
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000499 // The instruction is loop invariant if all of its operands are.
Bill Wendling0f940c92007-12-07 21:42:31 +0000500 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
501 const MachineOperand &MO = I.getOperand(i);
502
Dan Gohmand735b802008-10-03 15:45:36 +0000503 if (!MO.isReg())
Bill Wendlingfb018d02008-08-20 20:32:05 +0000504 continue;
505
Dan Gohmanc475c362009-01-15 22:01:38 +0000506 unsigned Reg = MO.getReg();
507 if (Reg == 0) continue;
508
509 // Don't hoist an instruction that uses or defines a physical register.
Dan Gohmana8fb3362009-09-25 23:58:45 +0000510 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Dan Gohmana8fb3362009-09-25 23:58:45 +0000511 if (MO.isUse()) {
512 // If the physreg has no defs anywhere, it's just an ambient register
Dan Gohman45094e32009-09-26 02:34:00 +0000513 // and we can freely move its uses. Alternatively, if it's allocatable,
514 // it could get allocated to something with a def during allocation.
Dan Gohmana8fb3362009-09-25 23:58:45 +0000515 if (!RegInfo->def_empty(Reg))
516 return false;
Dan Gohman45094e32009-09-26 02:34:00 +0000517 if (AllocatableSet.test(Reg))
518 return false;
Dan Gohmana8fb3362009-09-25 23:58:45 +0000519 // Check for a def among the register's aliases too.
Dan Gohman45094e32009-09-26 02:34:00 +0000520 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
521 unsigned AliasReg = *Alias;
522 if (!RegInfo->def_empty(AliasReg))
Dan Gohmana8fb3362009-09-25 23:58:45 +0000523 return false;
Dan Gohman45094e32009-09-26 02:34:00 +0000524 if (AllocatableSet.test(AliasReg))
525 return false;
526 }
Dan Gohmana8fb3362009-09-25 23:58:45 +0000527 // Otherwise it's safe to move.
528 continue;
529 } else if (!MO.isDead()) {
530 // A def that isn't dead. We can't move it.
531 return false;
Dan Gohmana363a9b2010-02-28 00:08:44 +0000532 } else if (CurLoop->getHeader()->isLiveIn(Reg)) {
533 // If the reg is live into the loop, we can't hoist an instruction
534 // which would clobber it.
535 return false;
Dan Gohmana8fb3362009-09-25 23:58:45 +0000536 }
537 }
Bill Wendlingfb018d02008-08-20 20:32:05 +0000538
539 if (!MO.isUse())
Bill Wendling0f940c92007-12-07 21:42:31 +0000540 continue;
541
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000542 assert(RegInfo->getVRegDef(Reg) &&
543 "Machine instr not mapped for this vreg?!");
Bill Wendling0f940c92007-12-07 21:42:31 +0000544
545 // If the loop contains the definition of an operand, then the instruction
546 // isn't loop invariant.
Dan Gohman92329c72009-12-18 01:24:09 +0000547 if (CurLoop->contains(RegInfo->getVRegDef(Reg)))
Bill Wendling0f940c92007-12-07 21:42:31 +0000548 return false;
549 }
550
551 // If we got this far, the instruction is loop invariant!
552 return true;
553}
554
Evan Chengaf6949d2009-02-05 08:45:46 +0000555
556/// HasPHIUses - Return true if the specified register has any PHI use.
557static bool HasPHIUses(unsigned Reg, MachineRegisterInfo *RegInfo) {
Evan Cheng45e94d62009-02-04 09:19:56 +0000558 for (MachineRegisterInfo::use_iterator UI = RegInfo->use_begin(Reg),
559 UE = RegInfo->use_end(); UI != UE; ++UI) {
560 MachineInstr *UseMI = &*UI;
Chris Lattner518bb532010-02-09 19:54:29 +0000561 if (UseMI->isPHI())
Evan Chengaf6949d2009-02-05 08:45:46 +0000562 return true;
Evan Cheng45e94d62009-02-04 09:19:56 +0000563 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000564 return false;
Evan Cheng45e94d62009-02-04 09:19:56 +0000565}
566
Evan Cheng87b75ba2009-11-20 19:55:37 +0000567/// isLoadFromConstantMemory - Return true if the given instruction is a
568/// load from constant memory. Machine LICM will hoist these even if they are
569/// not re-materializable.
570bool MachineLICM::isLoadFromConstantMemory(MachineInstr *MI) {
571 if (!MI->getDesc().mayLoad()) return false;
572 if (!MI->hasOneMemOperand()) return false;
573 MachineMemOperand *MMO = *MI->memoperands_begin();
574 if (MMO->isVolatile()) return false;
575 if (!MMO->getValue()) return false;
576 const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(MMO->getValue());
577 if (PSV) {
578 MachineFunction &MF = *MI->getParent()->getParent();
579 return PSV->isConstant(MF.getFrameInfo());
580 } else {
581 return AA->pointsToConstantMemory(MMO->getValue());
582 }
583}
584
Evan Cheng45e94d62009-02-04 09:19:56 +0000585/// IsProfitableToHoist - Return true if it is potentially profitable to hoist
586/// the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000587bool MachineLICM::IsProfitableToHoist(MachineInstr &MI) {
Chris Lattner518bb532010-02-09 19:54:29 +0000588 if (MI.isImplicitDef())
Evan Chengefc78392009-02-27 00:02:22 +0000589 return false;
590
Evan Cheng45e94d62009-02-04 09:19:56 +0000591 // FIXME: For now, only hoist re-materilizable instructions. LICM will
592 // increase register pressure. We want to make sure it doesn't increase
593 // spilling.
Evan Cheng87b75ba2009-11-20 19:55:37 +0000594 // Also hoist loads from constant memory, e.g. load from stubs, GOT. Hoisting
595 // these tend to help performance in low register pressure situation. The
596 // trade off is it may cause spill in high pressure situation. It will end up
597 // adding a store in the loop preheader. But the reload is no more expensive.
598 // The side benefit is these loads are frequently CSE'ed.
599 if (!TII->isTriviallyReMaterializable(&MI, AA)) {
Evan Chengc26abd92009-11-20 23:31:34 +0000600 if (!isLoadFromConstantMemory(&MI))
Evan Cheng87b75ba2009-11-20 19:55:37 +0000601 return false;
Evan Cheng87b75ba2009-11-20 19:55:37 +0000602 }
Evan Cheng45e94d62009-02-04 09:19:56 +0000603
Evan Chengaf6949d2009-02-05 08:45:46 +0000604 // If result(s) of this instruction is used by PHIs, then don't hoist it.
605 // The presence of joins makes it difficult for current register allocator
606 // implementation to perform remat.
Evan Cheng45e94d62009-02-04 09:19:56 +0000607 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
608 const MachineOperand &MO = MI.getOperand(i);
609 if (!MO.isReg() || !MO.isDef())
610 continue;
Evan Chengaf6949d2009-02-05 08:45:46 +0000611 if (HasPHIUses(MO.getReg(), RegInfo))
612 return false;
Evan Cheng45e94d62009-02-04 09:19:56 +0000613 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000614
615 return true;
616}
617
Dan Gohman5c952302009-10-29 17:47:20 +0000618MachineInstr *MachineLICM::ExtractHoistableLoad(MachineInstr *MI) {
619 // If not, we may be able to unfold a load and hoist that.
620 // First test whether the instruction is loading from an amenable
621 // memory location.
Evan Cheng87b75ba2009-11-20 19:55:37 +0000622 if (!isLoadFromConstantMemory(MI))
623 return 0;
624
Dan Gohman5c952302009-10-29 17:47:20 +0000625 // Next determine the register class for a temporary register.
Dan Gohman0115e162009-10-30 22:18:41 +0000626 unsigned LoadRegIndex;
Dan Gohman5c952302009-10-29 17:47:20 +0000627 unsigned NewOpc =
628 TII->getOpcodeAfterMemoryUnfold(MI->getOpcode(),
629 /*UnfoldLoad=*/true,
Dan Gohman0115e162009-10-30 22:18:41 +0000630 /*UnfoldStore=*/false,
631 &LoadRegIndex);
Dan Gohman5c952302009-10-29 17:47:20 +0000632 if (NewOpc == 0) return 0;
633 const TargetInstrDesc &TID = TII->get(NewOpc);
634 if (TID.getNumDefs() != 1) return 0;
Dan Gohman0115e162009-10-30 22:18:41 +0000635 const TargetRegisterClass *RC = TID.OpInfo[LoadRegIndex].getRegClass(TRI);
Dan Gohman5c952302009-10-29 17:47:20 +0000636 // Ok, we're unfolding. Create a temporary register and do the unfold.
637 unsigned Reg = RegInfo->createVirtualRegister(RC);
Evan Cheng87b75ba2009-11-20 19:55:37 +0000638
639 MachineFunction &MF = *MI->getParent()->getParent();
Dan Gohman5c952302009-10-29 17:47:20 +0000640 SmallVector<MachineInstr *, 2> NewMIs;
641 bool Success =
642 TII->unfoldMemoryOperand(MF, MI, Reg,
643 /*UnfoldLoad=*/true, /*UnfoldStore=*/false,
644 NewMIs);
645 (void)Success;
646 assert(Success &&
647 "unfoldMemoryOperand failed when getOpcodeAfterMemoryUnfold "
648 "succeeded!");
649 assert(NewMIs.size() == 2 &&
650 "Unfolded a load into multiple instructions!");
651 MachineBasicBlock *MBB = MI->getParent();
652 MBB->insert(MI, NewMIs[0]);
653 MBB->insert(MI, NewMIs[1]);
654 // If unfolding produced a load that wasn't loop-invariant or profitable to
655 // hoist, discard the new instructions and bail.
Evan Chengc26abd92009-11-20 23:31:34 +0000656 if (!IsLoopInvariantInst(*NewMIs[0]) || !IsProfitableToHoist(*NewMIs[0])) {
Dan Gohman5c952302009-10-29 17:47:20 +0000657 NewMIs[0]->eraseFromParent();
658 NewMIs[1]->eraseFromParent();
659 return 0;
660 }
661 // Otherwise we successfully unfolded a load that we can hoist.
662 MI->eraseFromParent();
663 return NewMIs[0];
664}
665
Evan Cheng777c6b72009-11-03 21:40:02 +0000666void MachineLICM::InitCSEMap(MachineBasicBlock *BB) {
667 for (MachineBasicBlock::iterator I = BB->begin(),E = BB->end(); I != E; ++I) {
668 const MachineInstr *MI = &*I;
669 // FIXME: For now, only hoist re-materilizable instructions. LICM will
670 // increase register pressure. We want to make sure it doesn't increase
671 // spilling.
672 if (TII->isTriviallyReMaterializable(MI, AA)) {
673 unsigned Opcode = MI->getOpcode();
674 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
675 CI = CSEMap.find(Opcode);
676 if (CI != CSEMap.end())
677 CI->second.push_back(MI);
678 else {
679 std::vector<const MachineInstr*> CSEMIs;
680 CSEMIs.push_back(MI);
681 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
682 }
683 }
684 }
685}
686
Evan Cheng78e5c112009-11-07 03:52:02 +0000687const MachineInstr*
688MachineLICM::LookForDuplicate(const MachineInstr *MI,
689 std::vector<const MachineInstr*> &PrevMIs) {
Evan Cheng9fb744e2009-11-05 00:51:13 +0000690 for (unsigned i = 0, e = PrevMIs.size(); i != e; ++i) {
691 const MachineInstr *PrevMI = PrevMIs[i];
Evan Cheng506049f2010-03-03 01:44:33 +0000692 if (TII->produceSameValue(MI, PrevMI))
Evan Cheng9fb744e2009-11-05 00:51:13 +0000693 return PrevMI;
694 }
695 return 0;
696}
697
698bool MachineLICM::EliminateCSE(MachineInstr *MI,
699 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI) {
Evan Cheng78e5c112009-11-07 03:52:02 +0000700 if (CI == CSEMap.end())
701 return false;
702
703 if (const MachineInstr *Dup = LookForDuplicate(MI, CI->second)) {
David Greene65a41eb2010-01-05 00:03:48 +0000704 DEBUG(dbgs() << "CSEing " << *MI << " with " << *Dup);
Dan Gohman6ac33b42010-02-28 01:33:43 +0000705
706 // Replace virtual registers defined by MI by their counterparts defined
707 // by Dup.
Evan Cheng78e5c112009-11-07 03:52:02 +0000708 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
709 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman6ac33b42010-02-28 01:33:43 +0000710
711 // Physical registers may not differ here.
712 assert((!MO.isReg() || MO.getReg() == 0 ||
713 !TargetRegisterInfo::isPhysicalRegister(MO.getReg()) ||
714 MO.getReg() == Dup->getOperand(i).getReg()) &&
715 "Instructions with different phys regs are not identical!");
716
717 if (MO.isReg() && MO.isDef() &&
718 !TargetRegisterInfo::isPhysicalRegister(MO.getReg()))
Evan Cheng78e5c112009-11-07 03:52:02 +0000719 RegInfo->replaceRegWith(MO.getReg(), Dup->getOperand(i).getReg());
Evan Cheng9fb744e2009-11-05 00:51:13 +0000720 }
Evan Cheng78e5c112009-11-07 03:52:02 +0000721 MI->eraseFromParent();
722 ++NumCSEed;
723 return true;
Evan Cheng9fb744e2009-11-05 00:51:13 +0000724 }
725 return false;
726}
727
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000728/// Hoist - When an instruction is found to use only loop invariant operands
729/// that are safe to hoist, this instruction is called to do the dirty work.
Bill Wendling0f940c92007-12-07 21:42:31 +0000730///
Dan Gohman589f1f52009-10-28 03:21:57 +0000731void MachineLICM::Hoist(MachineInstr *MI) {
732 // First check whether we should hoist this instruction.
Evan Chengc26abd92009-11-20 23:31:34 +0000733 if (!IsLoopInvariantInst(*MI) || !IsProfitableToHoist(*MI)) {
Dan Gohman5c952302009-10-29 17:47:20 +0000734 // If not, try unfolding a hoistable load.
735 MI = ExtractHoistableLoad(MI);
736 if (!MI) return;
Dan Gohman589f1f52009-10-28 03:21:57 +0000737 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000738
Dan Gohmanc475c362009-01-15 22:01:38 +0000739 // Now move the instructions to the predecessor, inserting it before any
740 // terminator instructions.
741 DEBUG({
David Greene65a41eb2010-01-05 00:03:48 +0000742 dbgs() << "Hoisting " << *MI;
Dan Gohmanc475c362009-01-15 22:01:38 +0000743 if (CurPreheader->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +0000744 dbgs() << " to MachineBasicBlock "
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +0000745 << CurPreheader->getName();
Dan Gohman589f1f52009-10-28 03:21:57 +0000746 if (MI->getParent()->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +0000747 dbgs() << " from MachineBasicBlock "
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +0000748 << MI->getParent()->getName();
David Greene65a41eb2010-01-05 00:03:48 +0000749 dbgs() << "\n";
Dan Gohmanc475c362009-01-15 22:01:38 +0000750 });
Bill Wendling0f940c92007-12-07 21:42:31 +0000751
Evan Cheng777c6b72009-11-03 21:40:02 +0000752 // If this is the first instruction being hoisted to the preheader,
753 // initialize the CSE map with potential common expressions.
754 InitCSEMap(CurPreheader);
755
Evan Chengaf6949d2009-02-05 08:45:46 +0000756 // Look for opportunity to CSE the hoisted instruction.
Evan Cheng777c6b72009-11-03 21:40:02 +0000757 unsigned Opcode = MI->getOpcode();
758 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
759 CI = CSEMap.find(Opcode);
Evan Cheng9fb744e2009-11-05 00:51:13 +0000760 if (!EliminateCSE(MI, CI)) {
761 // Otherwise, splice the instruction to the preheader.
Evan Cheng777c6b72009-11-03 21:40:02 +0000762 CurPreheader->splice(CurPreheader->getFirstTerminator(),MI->getParent(),MI);
763
Evan Chengaf6949d2009-02-05 08:45:46 +0000764 // Add to the CSE map.
765 if (CI != CSEMap.end())
Dan Gohman589f1f52009-10-28 03:21:57 +0000766 CI->second.push_back(MI);
Evan Chengaf6949d2009-02-05 08:45:46 +0000767 else {
768 std::vector<const MachineInstr*> CSEMIs;
Dan Gohman589f1f52009-10-28 03:21:57 +0000769 CSEMIs.push_back(MI);
Evan Cheng777c6b72009-11-03 21:40:02 +0000770 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
Evan Chengaf6949d2009-02-05 08:45:46 +0000771 }
772 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000773
Dan Gohmanc475c362009-01-15 22:01:38 +0000774 ++NumHoisted;
Bill Wendling0f940c92007-12-07 21:42:31 +0000775 Changed = true;
Bill Wendling0f940c92007-12-07 21:42:31 +0000776}