blob: 9a0fbc29da0bcb8b1ff23b4266f4726ac685a7bc [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//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "machine-licm"
Bill Wendlingb48519c2007-12-08 01:47:01 +000016#include "llvm/ADT/IndexedMap.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000017#include "llvm/ADT/SmallVector.h"
18#include "llvm/ADT/Statistic.h"
19#include "llvm/CodeGen/MachineBasicBlock.h"
20#include "llvm/CodeGen/MachineDominators.h"
21#include "llvm/CodeGen/MachineInstr.h"
22#include "llvm/CodeGen/MachineLoopInfo.h"
Bill Wendling9258cd32008-01-02 19:32:43 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000024#include "llvm/CodeGen/Passes.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000025#include "llvm/Support/CFG.h"
26#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Compiler.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Target/MRegisterInfo.h"
Bill Wendlingefe2be72007-12-11 23:27:51 +000030#include "llvm/Target/TargetInstrInfo.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000031#include "llvm/Target/TargetMachine.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000032
33using namespace llvm;
34
35namespace {
36 // Hidden options to help debugging
37 cl::opt<bool>
38 PerformLICM("machine-licm",
Bill Wendlingb48519c2007-12-08 01:47:01 +000039 cl::init(false), cl::Hidden,
40 cl::desc("Perform loop-invariant code motion on machine code"));
Bill Wendling0f940c92007-12-07 21:42:31 +000041}
42
Bill Wendling041b3f82007-12-08 23:58:46 +000043STATISTIC(NumHoisted, "Number of machine instructions hoisted out of loops");
Bill Wendlingb48519c2007-12-08 01:47:01 +000044
Bill Wendling0f940c92007-12-07 21:42:31 +000045namespace {
46 class VISIBILITY_HIDDEN MachineLICM : public MachineFunctionPass {
Bill Wendling9258cd32008-01-02 19:32:43 +000047 const TargetMachine *TM;
Bill Wendlingefe2be72007-12-11 23:27:51 +000048 const TargetInstrInfo *TII;
49 MachineFunction *CurMF; // Current MachineFunction
Bill Wendling12ebf142007-12-11 19:40:06 +000050
Bill Wendling0f940c92007-12-07 21:42:31 +000051 // Various analyses that we use...
52 MachineLoopInfo *LI; // Current MachineLoopInfo
53 MachineDominatorTree *DT; // Machine dominator tree for the current Loop
Bill Wendling9258cd32008-01-02 19:32:43 +000054 MachineRegisterInfo *RegInfo; // Machine register information
Bill Wendling0f940c92007-12-07 21:42:31 +000055
Bill Wendling0f940c92007-12-07 21:42:31 +000056 // State that is updated as we process loops
57 bool Changed; // True if a loop is changed.
58 MachineLoop *CurLoop; // The current loop we are working on.
59
60 // Map the def of a virtual register to the machine instruction.
Bill Wendlingb48519c2007-12-08 01:47:01 +000061 IndexedMap<const MachineInstr*, VirtReg2IndexFunctor> VRegDefs;
Bill Wendling0f940c92007-12-07 21:42:31 +000062 public:
63 static char ID; // Pass identification, replacement for typeid
64 MachineLICM() : MachineFunctionPass((intptr_t)&ID) {}
65
66 virtual bool runOnMachineFunction(MachineFunction &MF);
67
68 /// FIXME: Loop preheaders?
69 ///
70 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
71 AU.setPreservesCFG();
72 AU.addRequired<MachineLoopInfo>();
73 AU.addRequired<MachineDominatorTree>();
74 }
75 private:
Bill Wendlingb48519c2007-12-08 01:47:01 +000076 /// VisitAllLoops - Visit all of the loops in depth first order and try to
77 /// hoist invariant instructions from them.
Bill Wendling0f940c92007-12-07 21:42:31 +000078 ///
Bill Wendlingb48519c2007-12-08 01:47:01 +000079 void VisitAllLoops(MachineLoop *L) {
Bill Wendling0f940c92007-12-07 21:42:31 +000080 const std::vector<MachineLoop*> &SubLoops = L->getSubLoops();
81
82 for (MachineLoop::iterator
Bill Wendlingb48519c2007-12-08 01:47:01 +000083 I = SubLoops.begin(), E = SubLoops.end(); I != E; ++I) {
84 MachineLoop *ML = *I;
Bill Wendling0f940c92007-12-07 21:42:31 +000085
Bill Wendlingb48519c2007-12-08 01:47:01 +000086 // Traverse the body of the loop in depth first order on the dominator
87 // tree so that we are guaranteed to see definitions before we see uses.
88 VisitAllLoops(ML);
89 HoistRegion(DT->getNode(ML->getHeader()));
90 }
91
92 HoistRegion(DT->getNode(L->getHeader()));
Bill Wendling0f940c92007-12-07 21:42:31 +000093 }
94
95 /// MapVirtualRegisterDefs - Create a map of which machine instruction
96 /// defines a virtual register.
97 ///
Bill Wendling12ebf142007-12-11 19:40:06 +000098 void MapVirtualRegisterDefs();
Bill Wendling0f940c92007-12-07 21:42:31 +000099
Bill Wendling041b3f82007-12-08 23:58:46 +0000100 /// IsInSubLoop - A little predicate that returns true if the specified
Bill Wendling0f940c92007-12-07 21:42:31 +0000101 /// basic block is in a subloop of the current one, not the current one
102 /// itself.
103 ///
Bill Wendling041b3f82007-12-08 23:58:46 +0000104 bool IsInSubLoop(MachineBasicBlock *BB) {
Bill Wendling0f940c92007-12-07 21:42:31 +0000105 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Bill Wendling650b0522007-12-11 18:45:11 +0000106 return LI->getLoopFor(BB) != CurLoop;
Bill Wendling0f940c92007-12-07 21:42:31 +0000107 }
108
Bill Wendling041b3f82007-12-08 23:58:46 +0000109 /// IsLoopInvariantInst - Returns true if the instruction is loop
Bill Wendling0f940c92007-12-07 21:42:31 +0000110 /// invariant. I.e., all virtual register operands are defined outside of
111 /// the loop, physical registers aren't accessed (explicitly or implicitly),
112 /// and the instruction is hoistable.
113 ///
Bill Wendling041b3f82007-12-08 23:58:46 +0000114 bool IsLoopInvariantInst(MachineInstr &I);
Bill Wendling0f940c92007-12-07 21:42:31 +0000115
116 /// FindPredecessors - Get all of the predecessors of the loop that are not
117 /// back-edges.
118 ///
Bill Wendling650b0522007-12-11 18:45:11 +0000119 void FindPredecessors(std::vector<MachineBasicBlock*> &Preds) {
Bill Wendling0f940c92007-12-07 21:42:31 +0000120 const MachineBasicBlock *Header = CurLoop->getHeader();
121
122 for (MachineBasicBlock::const_pred_iterator
123 I = Header->pred_begin(), E = Header->pred_end(); I != E; ++I)
124 if (!CurLoop->contains(*I))
125 Preds.push_back(*I);
126 }
127
Bill Wendlingb48519c2007-12-08 01:47:01 +0000128 /// MoveInstToEndOfBlock - Moves the machine instruction to the bottom of
129 /// the predecessor basic block (but before the terminator instructions).
Bill Wendling0f940c92007-12-07 21:42:31 +0000130 ///
Bill Wendling9258cd32008-01-02 19:32:43 +0000131 void MoveInstToEndOfBlock(MachineBasicBlock *ToMBB,
132 MachineBasicBlock *FromMBB,
133 MachineInstr *MI) {
Bill Wendlingefe2be72007-12-11 23:27:51 +0000134 DEBUG({
135 DOUT << "Hoisting " << *MI;
Bill Wendling9258cd32008-01-02 19:32:43 +0000136 if (ToMBB->getBasicBlock())
Bill Wendlingefe2be72007-12-11 23:27:51 +0000137 DOUT << " to MachineBasicBlock "
Bill Wendling9258cd32008-01-02 19:32:43 +0000138 << ToMBB->getBasicBlock()->getName();
Bill Wendlingefe2be72007-12-11 23:27:51 +0000139 DOUT << "\n";
140 });
Bill Wendling9258cd32008-01-02 19:32:43 +0000141
142 MachineBasicBlock::iterator WhereIter = ToMBB->getFirstTerminator();
143 MachineBasicBlock::iterator To, From = FromMBB->begin();
144
145 while (&*From != MI)
146 ++From;
147
148 assert(From != FromMBB->end() && "Didn't find instr in BB!");
149
150 To = From;
151 ToMBB->splice(WhereIter, FromMBB, From, ++To);
Bill Wendlingb48519c2007-12-08 01:47:01 +0000152 ++NumHoisted;
Bill Wendling0f940c92007-12-07 21:42:31 +0000153 }
154
155 /// HoistRegion - Walk the specified region of the CFG (defined by all
156 /// blocks dominated by the specified block, and that are in the current
157 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
158 /// visit definitions before uses, allowing us to hoist a loop body in one
159 /// pass without iteration.
160 ///
161 void HoistRegion(MachineDomTreeNode *N);
162
163 /// Hoist - When an instruction is found to only use loop invariant operands
164 /// that is safe to hoist, this instruction is called to do the dirty work.
165 ///
Bill Wendlingb48519c2007-12-08 01:47:01 +0000166 void Hoist(MachineInstr &MI);
Bill Wendling0f940c92007-12-07 21:42:31 +0000167 };
168
169 char MachineLICM::ID = 0;
170 RegisterPass<MachineLICM> X("machine-licm",
171 "Machine Loop Invariant Code Motion");
172} // end anonymous namespace
173
174FunctionPass *llvm::createMachineLICMPass() { return new MachineLICM(); }
175
176/// Hoist expressions out of the specified loop. Note, alias info for inner loop
177/// is not preserved so it is not a good idea to run LICM multiple times on one
178/// loop.
179///
180bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
181 if (!PerformLICM) return false; // For debugging.
182
Bill Wendlinga17ad592007-12-11 22:22:22 +0000183 DOUT << "******** Machine LICM ********\n";
184
Bill Wendling0f940c92007-12-07 21:42:31 +0000185 Changed = false;
Bill Wendling12ebf142007-12-11 19:40:06 +0000186 CurMF = &MF;
Bill Wendling9258cd32008-01-02 19:32:43 +0000187 TM = &CurMF->getTarget();
188 TII = TM->getInstrInfo();
189 RegInfo = new MachineRegisterInfo(*TM->getRegisterInfo());
Bill Wendling0f940c92007-12-07 21:42:31 +0000190
191 // Get our Loop information...
192 LI = &getAnalysis<MachineLoopInfo>();
193 DT = &getAnalysis<MachineDominatorTree>();
194
Bill Wendling12ebf142007-12-11 19:40:06 +0000195 MapVirtualRegisterDefs();
196
Bill Wendling0f940c92007-12-07 21:42:31 +0000197 for (MachineLoopInfo::iterator
198 I = LI->begin(), E = LI->end(); I != E; ++I) {
Bill Wendlinga17ad592007-12-11 22:22:22 +0000199 CurLoop = *I;
Bill Wendling0f940c92007-12-07 21:42:31 +0000200
201 // Visit all of the instructions of the loop. We want to visit the subloops
202 // first, though, so that we can hoist their invariants first into their
203 // containing loop before we process that loop.
Bill Wendlinga17ad592007-12-11 22:22:22 +0000204 VisitAllLoops(CurLoop);
Bill Wendling0f940c92007-12-07 21:42:31 +0000205 }
206
Bill Wendling9258cd32008-01-02 19:32:43 +0000207 delete RegInfo;
Bill Wendling0f940c92007-12-07 21:42:31 +0000208 return Changed;
209}
210
211/// MapVirtualRegisterDefs - Create a map of which machine instruction defines a
212/// virtual register.
213///
Bill Wendling12ebf142007-12-11 19:40:06 +0000214void MachineLICM::MapVirtualRegisterDefs() {
Bill Wendling0f940c92007-12-07 21:42:31 +0000215 for (MachineFunction::const_iterator
Bill Wendling12ebf142007-12-11 19:40:06 +0000216 I = CurMF->begin(), E = CurMF->end(); I != E; ++I) {
Bill Wendling0f940c92007-12-07 21:42:31 +0000217 const MachineBasicBlock &MBB = *I;
218
219 for (MachineBasicBlock::const_iterator
220 II = MBB.begin(), IE = MBB.end(); II != IE; ++II) {
221 const MachineInstr &MI = *II;
222
Bill Wendlingb48519c2007-12-08 01:47:01 +0000223 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
Bill Wendling28bd5f02007-12-11 19:17:04 +0000224 const MachineOperand &MO = MI.getOperand(i);
Bill Wendling0f940c92007-12-07 21:42:31 +0000225
226 if (MO.isRegister() && MO.isDef() &&
Bill Wendlingefe2be72007-12-11 23:27:51 +0000227 MRegisterInfo::isVirtualRegister(MO.getReg())) {
228 VRegDefs.grow(MO.getReg());
Bill Wendling0f940c92007-12-07 21:42:31 +0000229 VRegDefs[MO.getReg()] = &MI;
Bill Wendlingefe2be72007-12-11 23:27:51 +0000230 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000231 }
232 }
233 }
234}
235
236/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
237/// dominated by the specified block, and that are in the current loop) in depth
238/// first order w.r.t the DominatorTree. This allows us to visit definitions
239/// before uses, allowing us to hoist a loop body in one pass without iteration.
240///
241void MachineLICM::HoistRegion(MachineDomTreeNode *N) {
242 assert(N != 0 && "Null dominator tree node?");
243 MachineBasicBlock *BB = N->getBlock();
244
245 // If this subregion is not in the top level loop at all, exit.
246 if (!CurLoop->contains(BB)) return;
247
248 // Only need to process the contents of this block if it is not part of a
249 // subloop (which would already have been processed).
Bill Wendling041b3f82007-12-08 23:58:46 +0000250 if (!IsInSubLoop(BB))
Bill Wendling0f940c92007-12-07 21:42:31 +0000251 for (MachineBasicBlock::iterator
252 I = BB->begin(), E = BB->end(); I != E; ) {
253 MachineInstr &MI = *I++;
254
255 // Try hoisting the instruction out of the loop. We can only do this if
256 // all of the operands of the instruction are loop invariant and if it is
257 // safe to hoist the instruction.
Bill Wendlingb48519c2007-12-08 01:47:01 +0000258 Hoist(MI);
Bill Wendling0f940c92007-12-07 21:42:31 +0000259 }
260
261 const std::vector<MachineDomTreeNode*> &Children = N->getChildren();
262
263 for (unsigned I = 0, E = Children.size(); I != E; ++I)
264 HoistRegion(Children[I]);
265}
266
Bill Wendling041b3f82007-12-08 23:58:46 +0000267/// IsLoopInvariantInst - Returns true if the instruction is loop
Bill Wendling0f940c92007-12-07 21:42:31 +0000268/// invariant. I.e., all virtual register operands are defined outside of the
Bill Wendling60ff1a32007-12-20 01:08:10 +0000269/// loop, physical registers aren't accessed explicitly, and there are no side
270/// effects that aren't captured by the operands or other flags.
Bill Wendling0f940c92007-12-07 21:42:31 +0000271///
Bill Wendling041b3f82007-12-08 23:58:46 +0000272bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) {
Bill Wendling280f4562007-12-18 21:38:04 +0000273 DEBUG({
274 DOUT << "--- Checking if we can hoist " << I;
275 if (I.getInstrDescriptor()->ImplicitUses) {
276 DOUT << " * Instruction has implicit uses:\n";
277
Bill Wendling9258cd32008-01-02 19:32:43 +0000278 const MRegisterInfo *MRI = TM->getRegisterInfo();
Bill Wendling280f4562007-12-18 21:38:04 +0000279 const unsigned *ImpUses = I.getInstrDescriptor()->ImplicitUses;
280
281 for (; *ImpUses; ++ImpUses)
282 DOUT << " -> " << MRI->getName(*ImpUses) << "\n";
283 }
284
285 if (I.getInstrDescriptor()->ImplicitDefs) {
286 DOUT << " * Instruction has implicit defines:\n";
287
Bill Wendling9258cd32008-01-02 19:32:43 +0000288 const MRegisterInfo *MRI = TM->getRegisterInfo();
Bill Wendling280f4562007-12-18 21:38:04 +0000289 const unsigned *ImpDefs = I.getInstrDescriptor()->ImplicitDefs;
290
291 for (; *ImpDefs; ++ImpDefs)
292 DOUT << " -> " << MRI->getName(*ImpDefs) << "\n";
293 }
294
295 if (TII->hasUnmodelledSideEffects(&I))
296 DOUT << " * Instruction has side effects.\n";
297 });
298
Bill Wendling0f940c92007-12-07 21:42:31 +0000299 // The instruction is loop invariant if all of its operands are loop-invariant
300 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
301 const MachineOperand &MO = I.getOperand(i);
302
Bill Wendling280f4562007-12-18 21:38:04 +0000303 if (!(MO.isRegister() && MO.getReg() && MO.isUse()))
Bill Wendling0f940c92007-12-07 21:42:31 +0000304 continue;
305
306 unsigned Reg = MO.getReg();
307
308 // Don't hoist instructions that access physical registers.
309 if (!MRegisterInfo::isVirtualRegister(Reg))
310 return false;
311
Bill Wendling9258cd32008-01-02 19:32:43 +0000312 assert(RegInfo->getVRegDef(Reg)&&"Machine instr not mapped for this vreg?");
Bill Wendling0f940c92007-12-07 21:42:31 +0000313
314 // If the loop contains the definition of an operand, then the instruction
315 // isn't loop invariant.
Bill Wendling9258cd32008-01-02 19:32:43 +0000316 if (CurLoop->contains(RegInfo->getVRegDef(Reg)->getParent()))
Bill Wendling0f940c92007-12-07 21:42:31 +0000317 return false;
318 }
319
Bill Wendling60ff1a32007-12-20 01:08:10 +0000320 // Don't hoist something that has unmodelled side effects.
Bill Wendling280f4562007-12-18 21:38:04 +0000321 if (TII->hasUnmodelledSideEffects(&I)) return false;
322
Bill Wendling0f940c92007-12-07 21:42:31 +0000323 // If we got this far, the instruction is loop invariant!
324 return true;
325}
326
327/// Hoist - When an instruction is found to only use loop invariant operands
328/// that is safe to hoist, this instruction is called to do the dirty work.
329///
Bill Wendlingb48519c2007-12-08 01:47:01 +0000330void MachineLICM::Hoist(MachineInstr &MI) {
Bill Wendling041b3f82007-12-08 23:58:46 +0000331 if (!IsLoopInvariantInst(MI)) return;
Bill Wendling0f940c92007-12-07 21:42:31 +0000332
333 std::vector<MachineBasicBlock*> Preds;
334
335 // Non-back-edge predecessors.
336 FindPredecessors(Preds);
Bill Wendling0f940c92007-12-07 21:42:31 +0000337
Bill Wendlingb48519c2007-12-08 01:47:01 +0000338 // Either we don't have any predecessors(?!) or we have more than one, which
339 // is forbidden.
340 if (Preds.empty() || Preds.size() != 1) return;
Bill Wendling0f940c92007-12-07 21:42:31 +0000341
Bill Wendlingb48519c2007-12-08 01:47:01 +0000342 // Check that the predecessor is qualified to take the hoisted
343 // instruction. I.e., there is only one edge from the predecessor, and it's to
344 // the loop header.
345 MachineBasicBlock *MBB = Preds.front();
Bill Wendling0f940c92007-12-07 21:42:31 +0000346
Bill Wendling041b3f82007-12-08 23:58:46 +0000347 // FIXME: We are assuming at first that the basic block coming into this loop
348 // has only one successor. This isn't the case in general because we haven't
349 // broken critical edges or added preheaders.
Bill Wendlingb48519c2007-12-08 01:47:01 +0000350 if (MBB->succ_size() != 1) return;
351 assert(*MBB->succ_begin() == CurLoop->getHeader() &&
352 "The predecessor doesn't feed directly into the loop header!");
Bill Wendling0f940c92007-12-07 21:42:31 +0000353
Bill Wendlingb48519c2007-12-08 01:47:01 +0000354 // Now move the instructions to the predecessor.
Bill Wendling9258cd32008-01-02 19:32:43 +0000355 MoveInstToEndOfBlock(MBB, MI.getParent(), &MI);
Bill Wendling0f940c92007-12-07 21:42:31 +0000356 Changed = true;
Bill Wendling0f940c92007-12-07 21:42:31 +0000357}