Indentation.
[llvm/avr.git] / lib / CodeGen / MachineLICM.cpp
blob4ef065f1766a1a3ea66bc4f3339af664602c981f
1 //===-- MachineLICM.cpp - Machine Loop Invariant Code Motion 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 loop invariant code motion on machine instructions. We
11 // attempt to remove as much code from the body of a loop as possible.
13 // 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.
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.
21 //===----------------------------------------------------------------------===//
23 #define DEBUG_TYPE "machine-licm"
24 #include "llvm/CodeGen/Passes.h"
25 #include "llvm/CodeGen/MachineDominators.h"
26 #include "llvm/CodeGen/MachineLoopInfo.h"
27 #include "llvm/CodeGen/MachineRegisterInfo.h"
28 #include "llvm/Target/TargetRegisterInfo.h"
29 #include "llvm/Target/TargetInstrInfo.h"
30 #include "llvm/Target/TargetMachine.h"
31 #include "llvm/ADT/DenseMap.h"
32 #include "llvm/ADT/Statistic.h"
33 #include "llvm/Support/Compiler.h"
34 #include "llvm/Support/Debug.h"
35 #include "llvm/Support/raw_ostream.h"
37 using namespace llvm;
39 STATISTIC(NumHoisted, "Number of machine instructions hoisted out of loops");
40 STATISTIC(NumCSEed, "Number of hoisted machine instructions CSEed");
42 namespace {
43 class VISIBILITY_HIDDEN MachineLICM : public MachineFunctionPass {
44 const TargetMachine *TM;
45 const TargetInstrInfo *TII;
47 // Various analyses that we use...
48 MachineLoopInfo *LI; // Current MachineLoopInfo
49 MachineDominatorTree *DT; // Machine dominator tree for the cur loop
50 MachineRegisterInfo *RegInfo; // Machine register information
52 // State that is updated as we process loops
53 bool Changed; // True if a loop is changed.
54 MachineLoop *CurLoop; // The current loop we are working on.
55 MachineBasicBlock *CurPreheader; // The preheader for CurLoop.
57 // For each BB and opcode pair, keep a list of hoisted instructions.
58 DenseMap<std::pair<unsigned, unsigned>,
59 std::vector<const MachineInstr*> > CSEMap;
60 public:
61 static char ID; // Pass identification, replacement for typeid
62 MachineLICM() : MachineFunctionPass(&ID) {}
64 virtual bool runOnMachineFunction(MachineFunction &MF);
66 const char *getPassName() const { return "Machine Instruction LICM"; }
68 // FIXME: Loop preheaders?
69 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
70 AU.setPreservesCFG();
71 AU.addRequired<MachineLoopInfo>();
72 AU.addRequired<MachineDominatorTree>();
73 AU.addPreserved<MachineLoopInfo>();
74 AU.addPreserved<MachineDominatorTree>();
75 MachineFunctionPass::getAnalysisUsage(AU);
78 virtual void releaseMemory() {
79 CSEMap.clear();
82 private:
83 /// IsLoopInvariantInst - Returns true if the instruction is loop
84 /// invariant. I.e., all virtual register operands are defined outside of
85 /// the loop, physical registers aren't accessed (explicitly or implicitly),
86 /// and the instruction is hoistable.
87 ///
88 bool IsLoopInvariantInst(MachineInstr &I);
90 /// IsProfitableToHoist - Return true if it is potentially profitable to
91 /// hoist the given loop invariant.
92 bool IsProfitableToHoist(MachineInstr &MI);
94 /// HoistRegion - Walk the specified region of the CFG (defined by all
95 /// blocks dominated by the specified block, and that are in the current
96 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
97 /// visit definitions before uses, allowing us to hoist a loop body in one
98 /// pass without iteration.
99 ///
100 void HoistRegion(MachineDomTreeNode *N);
102 /// Hoist - When an instruction is found to only use loop invariant operands
103 /// that is safe to hoist, this instruction is called to do the dirty work.
105 void Hoist(MachineInstr &MI);
107 } // end anonymous namespace
109 char MachineLICM::ID = 0;
110 static RegisterPass<MachineLICM>
111 X("machinelicm", "Machine Loop Invariant Code Motion");
113 FunctionPass *llvm::createMachineLICMPass() { return new MachineLICM(); }
115 /// LoopIsOuterMostWithPreheader - Test if the given loop is the outer-most
116 /// loop that has a preheader.
117 static bool LoopIsOuterMostWithPreheader(MachineLoop *CurLoop) {
118 for (MachineLoop *L = CurLoop->getParentLoop(); L; L = L->getParentLoop())
119 if (L->getLoopPreheader())
120 return false;
121 return true;
124 /// Hoist expressions out of the specified loop. Note, alias info for inner loop
125 /// is not preserved so it is not a good idea to run LICM multiple times on one
126 /// loop.
128 bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
129 const Function *F = MF.getFunction();
130 if (F->hasFnAttr(Attribute::OptimizeForSize))
131 return false;
133 DOUT << "******** Machine LICM ********\n";
135 Changed = false;
136 TM = &MF.getTarget();
137 TII = TM->getInstrInfo();
138 RegInfo = &MF.getRegInfo();
140 // Get our Loop information...
141 LI = &getAnalysis<MachineLoopInfo>();
142 DT = &getAnalysis<MachineDominatorTree>();
144 for (MachineLoopInfo::iterator
145 I = LI->begin(), E = LI->end(); I != E; ++I) {
146 CurLoop = *I;
148 // Only visit outer-most preheader-sporting loops.
149 if (!LoopIsOuterMostWithPreheader(CurLoop))
150 continue;
152 // Determine the block to which to hoist instructions. If we can't find a
153 // suitable loop preheader, we can't do any hoisting.
155 // FIXME: We are only hoisting if the basic block coming into this loop
156 // has only one successor. This isn't the case in general because we haven't
157 // broken critical edges or added preheaders.
158 CurPreheader = CurLoop->getLoopPreheader();
159 if (!CurPreheader)
160 continue;
162 HoistRegion(DT->getNode(CurLoop->getHeader()));
165 return Changed;
168 /// HoistRegion - Walk the specified region of the CFG (defined by all blocks
169 /// dominated by the specified block, and that are in the current loop) in depth
170 /// first order w.r.t the DominatorTree. This allows us to visit definitions
171 /// before uses, allowing us to hoist a loop body in one pass without iteration.
173 void MachineLICM::HoistRegion(MachineDomTreeNode *N) {
174 assert(N != 0 && "Null dominator tree node?");
175 MachineBasicBlock *BB = N->getBlock();
177 // If this subregion is not in the top level loop at all, exit.
178 if (!CurLoop->contains(BB)) return;
180 for (MachineBasicBlock::iterator
181 MII = BB->begin(), E = BB->end(); MII != E; ) {
182 MachineBasicBlock::iterator NextMII = MII; ++NextMII;
183 MachineInstr &MI = *MII;
185 Hoist(MI);
187 MII = NextMII;
190 const std::vector<MachineDomTreeNode*> &Children = N->getChildren();
192 for (unsigned I = 0, E = Children.size(); I != E; ++I)
193 HoistRegion(Children[I]);
196 /// IsLoopInvariantInst - Returns true if the instruction is loop
197 /// invariant. I.e., all virtual register operands are defined outside of the
198 /// loop, physical registers aren't accessed explicitly, and there are no side
199 /// effects that aren't captured by the operands or other flags.
200 ///
201 bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) {
202 const TargetInstrDesc &TID = I.getDesc();
204 // Ignore stuff that we obviously can't hoist.
205 if (TID.mayStore() || TID.isCall() || TID.isTerminator() ||
206 TID.hasUnmodeledSideEffects())
207 return false;
209 if (TID.mayLoad()) {
210 // Okay, this instruction does a load. As a refinement, we allow the target
211 // to decide whether the loaded value is actually a constant. If so, we can
212 // actually use it as a load.
213 if (!TII->isInvariantLoad(&I))
214 // FIXME: we should be able to sink loads with no other side effects if
215 // there is nothing that can change memory from here until the end of
216 // block. This is a trivial form of alias analysis.
217 return false;
220 DEBUG({
221 DOUT << "--- Checking if we can hoist " << I;
222 if (I.getDesc().getImplicitUses()) {
223 DOUT << " * Instruction has implicit uses:\n";
225 const TargetRegisterInfo *TRI = TM->getRegisterInfo();
226 for (const unsigned *ImpUses = I.getDesc().getImplicitUses();
227 *ImpUses; ++ImpUses)
228 DOUT << " -> " << TRI->getName(*ImpUses) << "\n";
231 if (I.getDesc().getImplicitDefs()) {
232 DOUT << " * Instruction has implicit defines:\n";
234 const TargetRegisterInfo *TRI = TM->getRegisterInfo();
235 for (const unsigned *ImpDefs = I.getDesc().getImplicitDefs();
236 *ImpDefs; ++ImpDefs)
237 DOUT << " -> " << TRI->getName(*ImpDefs) << "\n";
241 if (I.getDesc().getImplicitDefs() || I.getDesc().getImplicitUses()) {
242 DOUT << "Cannot hoist with implicit defines or uses\n";
243 return false;
246 // The instruction is loop invariant if all of its operands are.
247 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
248 const MachineOperand &MO = I.getOperand(i);
250 if (!MO.isReg())
251 continue;
253 unsigned Reg = MO.getReg();
254 if (Reg == 0) continue;
256 // Don't hoist an instruction that uses or defines a physical register.
257 if (TargetRegisterInfo::isPhysicalRegister(Reg))
258 return false;
260 if (!MO.isUse())
261 continue;
263 assert(RegInfo->getVRegDef(Reg) &&
264 "Machine instr not mapped for this vreg?!");
266 // If the loop contains the definition of an operand, then the instruction
267 // isn't loop invariant.
268 if (CurLoop->contains(RegInfo->getVRegDef(Reg)->getParent()))
269 return false;
272 // If we got this far, the instruction is loop invariant!
273 return true;
277 /// HasPHIUses - Return true if the specified register has any PHI use.
278 static bool HasPHIUses(unsigned Reg, MachineRegisterInfo *RegInfo) {
279 for (MachineRegisterInfo::use_iterator UI = RegInfo->use_begin(Reg),
280 UE = RegInfo->use_end(); UI != UE; ++UI) {
281 MachineInstr *UseMI = &*UI;
282 if (UseMI->getOpcode() == TargetInstrInfo::PHI)
283 return true;
285 return false;
288 /// IsProfitableToHoist - Return true if it is potentially profitable to hoist
289 /// the given loop invariant.
290 bool MachineLICM::IsProfitableToHoist(MachineInstr &MI) {
291 if (MI.getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
292 return false;
294 const TargetInstrDesc &TID = MI.getDesc();
296 // FIXME: For now, only hoist re-materilizable instructions. LICM will
297 // increase register pressure. We want to make sure it doesn't increase
298 // spilling.
299 if (!TID.mayLoad() && (!TID.isRematerializable() ||
300 !TII->isTriviallyReMaterializable(&MI)))
301 return false;
303 // If result(s) of this instruction is used by PHIs, then don't hoist it.
304 // The presence of joins makes it difficult for current register allocator
305 // implementation to perform remat.
306 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
307 const MachineOperand &MO = MI.getOperand(i);
308 if (!MO.isReg() || !MO.isDef())
309 continue;
310 if (HasPHIUses(MO.getReg(), RegInfo))
311 return false;
314 return true;
317 static const MachineInstr *LookForDuplicate(const MachineInstr *MI,
318 std::vector<const MachineInstr*> &PrevMIs,
319 MachineRegisterInfo *RegInfo) {
320 unsigned NumOps = MI->getNumOperands();
321 for (unsigned i = 0, e = PrevMIs.size(); i != e; ++i) {
322 const MachineInstr *PrevMI = PrevMIs[i];
323 unsigned NumOps2 = PrevMI->getNumOperands();
324 if (NumOps != NumOps2)
325 continue;
326 bool IsSame = true;
327 for (unsigned j = 0; j != NumOps; ++j) {
328 const MachineOperand &MO = MI->getOperand(j);
329 if (MO.isReg() && MO.isDef()) {
330 if (RegInfo->getRegClass(MO.getReg()) !=
331 RegInfo->getRegClass(PrevMI->getOperand(j).getReg())) {
332 IsSame = false;
333 break;
335 continue;
337 if (!MO.isIdenticalTo(PrevMI->getOperand(j))) {
338 IsSame = false;
339 break;
342 if (IsSame)
343 return PrevMI;
345 return 0;
348 /// Hoist - When an instruction is found to use only loop invariant operands
349 /// that are safe to hoist, this instruction is called to do the dirty work.
351 void MachineLICM::Hoist(MachineInstr &MI) {
352 if (!IsLoopInvariantInst(MI)) return;
353 if (!IsProfitableToHoist(MI)) return;
355 // Now move the instructions to the predecessor, inserting it before any
356 // terminator instructions.
357 DEBUG({
358 errs() << "Hoisting " << MI;
359 if (CurPreheader->getBasicBlock())
360 errs() << " to MachineBasicBlock "
361 << CurPreheader->getBasicBlock()->getName();
362 if (MI.getParent()->getBasicBlock())
363 errs() << " from MachineBasicBlock "
364 << MI.getParent()->getBasicBlock()->getName();
365 errs() << "\n";
368 // Look for opportunity to CSE the hoisted instruction.
369 std::pair<unsigned, unsigned> BBOpcPair =
370 std::make_pair(CurPreheader->getNumber(), MI.getOpcode());
371 DenseMap<std::pair<unsigned, unsigned>,
372 std::vector<const MachineInstr*> >::iterator CI = CSEMap.find(BBOpcPair);
373 bool DoneCSE = false;
374 if (CI != CSEMap.end()) {
375 const MachineInstr *Dup = LookForDuplicate(&MI, CI->second, RegInfo);
376 if (Dup) {
377 DOUT << "CSEing " << MI;
378 DOUT << " with " << *Dup;
379 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
380 const MachineOperand &MO = MI.getOperand(i);
381 if (MO.isReg() && MO.isDef())
382 RegInfo->replaceRegWith(MO.getReg(), Dup->getOperand(i).getReg());
384 MI.eraseFromParent();
385 DoneCSE = true;
386 ++NumCSEed;
390 // Otherwise, splice the instruction to the preheader.
391 if (!DoneCSE) {
392 CurPreheader->splice(CurPreheader->getFirstTerminator(),
393 MI.getParent(), &MI);
394 // Add to the CSE map.
395 if (CI != CSEMap.end())
396 CI->second.push_back(&MI);
397 else {
398 std::vector<const MachineInstr*> CSEMIs;
399 CSEMIs.push_back(&MI);
400 CSEMap.insert(std::make_pair(BBOpcPair, CSEMIs));
404 ++NumHoisted;
405 Changed = true;