blob: f99aa25e10003a1fe10b606aba2eae1d7e43b961 [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;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000104 unsigned Def;
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000105 int FI;
106 CandidateInfo(MachineInstr *mi, unsigned def, int fi)
107 : MI(mi), Def(def), FI(fi) {}
Evan Cheng4038f9c2010-04-08 01:03:47 +0000108 };
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
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000130 /// IsLICMCandidate - Returns true if the instruction may be a suitable
131 /// candidate for LICM. e.g. If the instruction is a call, then it's obviously
132 /// not safe to hoist it.
133 bool IsLICMCandidate(MachineInstr &I);
134
Bill Wendling041b3f82007-12-08 23:58:46 +0000135 /// IsLoopInvariantInst - Returns true if the instruction is loop
Bill Wendling0f940c92007-12-07 21:42:31 +0000136 /// invariant. I.e., all virtual register operands are defined outside of
137 /// the loop, physical registers aren't accessed (explicitly or implicitly),
138 /// and the instruction is hoistable.
139 ///
Bill Wendling041b3f82007-12-08 23:58:46 +0000140 bool IsLoopInvariantInst(MachineInstr &I);
Bill Wendling0f940c92007-12-07 21:42:31 +0000141
Evan Cheng45e94d62009-02-04 09:19:56 +0000142 /// IsProfitableToHoist - Return true if it is potentially profitable to
143 /// hoist the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000144 bool IsProfitableToHoist(MachineInstr &MI);
Evan Cheng45e94d62009-02-04 09:19:56 +0000145
Bill Wendling0f940c92007-12-07 21:42:31 +0000146 /// HoistRegion - Walk the specified region of the CFG (defined by all
147 /// blocks dominated by the specified block, and that are in the current
148 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
149 /// visit definitions before uses, allowing us to hoist a loop body in one
150 /// pass without iteration.
151 ///
152 void HoistRegion(MachineDomTreeNode *N);
153
Evan Cheng87b75ba2009-11-20 19:55:37 +0000154 /// isLoadFromConstantMemory - Return true if the given instruction is a
155 /// load from constant memory.
156 bool isLoadFromConstantMemory(MachineInstr *MI);
157
Dan Gohman5c952302009-10-29 17:47:20 +0000158 /// ExtractHoistableLoad - Unfold a load from the given machineinstr if
159 /// the load itself could be hoisted. Return the unfolded and hoistable
160 /// load, or null if the load couldn't be unfolded or if it wouldn't
161 /// be hoistable.
162 MachineInstr *ExtractHoistableLoad(MachineInstr *MI);
163
Evan Cheng78e5c112009-11-07 03:52:02 +0000164 /// LookForDuplicate - Find an instruction amount PrevMIs that is a
165 /// duplicate of MI. Return this instruction if it's found.
166 const MachineInstr *LookForDuplicate(const MachineInstr *MI,
167 std::vector<const MachineInstr*> &PrevMIs);
168
Evan Cheng9fb744e2009-11-05 00:51:13 +0000169 /// EliminateCSE - Given a LICM'ed instruction, look for an instruction on
170 /// the preheader that compute the same value. If it's found, do a RAU on
171 /// with the definition of the existing instruction rather than hoisting
172 /// the instruction to the preheader.
173 bool EliminateCSE(MachineInstr *MI,
174 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI);
175
Bill Wendling0f940c92007-12-07 21:42:31 +0000176 /// Hoist - When an instruction is found to only use loop invariant operands
177 /// that is safe to hoist, this instruction is called to do the dirty work.
178 ///
Dan Gohman589f1f52009-10-28 03:21:57 +0000179 void Hoist(MachineInstr *MI);
Evan Cheng777c6b72009-11-03 21:40:02 +0000180
181 /// InitCSEMap - Initialize the CSE map with instructions that are in the
182 /// current loop preheader that may become duplicates of instructions that
183 /// are hoisted out of the loop.
184 void InitCSEMap(MachineBasicBlock *BB);
Bill Wendling0f940c92007-12-07 21:42:31 +0000185 };
Bill Wendling0f940c92007-12-07 21:42:31 +0000186} // end anonymous namespace
187
Dan Gohman844731a2008-05-13 00:00:25 +0000188char MachineLICM::ID = 0;
189static RegisterPass<MachineLICM>
Bill Wendling8870ce92008-07-07 05:42:27 +0000190X("machinelicm", "Machine Loop Invariant Code Motion");
Dan Gohman844731a2008-05-13 00:00:25 +0000191
Evan Chengd94671a2010-04-07 00:41:17 +0000192FunctionPass *llvm::createMachineLICMPass(bool PreRegAlloc) {
193 return new MachineLICM(PreRegAlloc);
194}
Bill Wendling0f940c92007-12-07 21:42:31 +0000195
Dan Gohmanc475c362009-01-15 22:01:38 +0000196/// LoopIsOuterMostWithPreheader - Test if the given loop is the outer-most
197/// loop that has a preheader.
198static bool LoopIsOuterMostWithPreheader(MachineLoop *CurLoop) {
199 for (MachineLoop *L = CurLoop->getParentLoop(); L; L = L->getParentLoop())
200 if (L->getLoopPreheader())
201 return false;
202 return true;
203}
204
Bill Wendling0f940c92007-12-07 21:42:31 +0000205bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd94671a2010-04-07 00:41:17 +0000206 if (PreRegAlloc)
207 DEBUG(dbgs() << "******** Pre-regalloc Machine LICM ********\n");
208 else
209 DEBUG(dbgs() << "******** Post-regalloc Machine LICM ********\n");
Bill Wendlinga17ad592007-12-11 22:22:22 +0000210
Evan Cheng4038f9c2010-04-08 01:03:47 +0000211 Changed = false;
Bill Wendlingacb04ec2008-08-31 02:30:23 +0000212 TM = &MF.getTarget();
Bill Wendling9258cd32008-01-02 19:32:43 +0000213 TII = TM->getInstrInfo();
Dan Gohmana8fb3362009-09-25 23:58:45 +0000214 TRI = TM->getRegisterInfo();
Evan Chengd94671a2010-04-07 00:41:17 +0000215 MFI = MF.getFrameInfo();
Bill Wendlingacb04ec2008-08-31 02:30:23 +0000216 RegInfo = &MF.getRegInfo();
Dan Gohman45094e32009-09-26 02:34:00 +0000217 AllocatableSet = TRI->getAllocatableSet(MF);
Bill Wendling0f940c92007-12-07 21:42:31 +0000218
219 // Get our Loop information...
Evan Cheng4038f9c2010-04-08 01:03:47 +0000220 MLI = &getAnalysis<MachineLoopInfo>();
221 DT = &getAnalysis<MachineDominatorTree>();
222 AA = &getAnalysis<AliasAnalysis>();
Bill Wendling0f940c92007-12-07 21:42:31 +0000223
Evan Cheng4038f9c2010-04-08 01:03:47 +0000224 for (MachineLoopInfo::iterator I = MLI->begin(), E = MLI->end(); I != E; ++I){
Bill Wendlinga17ad592007-12-11 22:22:22 +0000225 CurLoop = *I;
Bill Wendling0f940c92007-12-07 21:42:31 +0000226
Evan Cheng4038f9c2010-04-08 01:03:47 +0000227 // If this is done before regalloc, only visit outer-most preheader-sporting
228 // loops.
229 if (PreRegAlloc && !LoopIsOuterMostWithPreheader(CurLoop))
Dan Gohmanc475c362009-01-15 22:01:38 +0000230 continue;
231
232 // Determine the block to which to hoist instructions. If we can't find a
233 // suitable loop preheader, we can't do any hoisting.
234 //
235 // FIXME: We are only hoisting if the basic block coming into this loop
236 // has only one successor. This isn't the case in general because we haven't
237 // broken critical edges or added preheaders.
238 CurPreheader = CurLoop->getLoopPreheader();
239 if (!CurPreheader)
240 continue;
241
Evan Cheng777c6b72009-11-03 21:40:02 +0000242 // CSEMap is initialized for loop header when the first instruction is
243 // being hoisted.
Evan Chengd94671a2010-04-07 00:41:17 +0000244 MachineDomTreeNode *N = DT->getNode(CurLoop->getHeader());
245 if (!PreRegAlloc)
246 HoistRegionPostRA(N);
247 else {
248 HoistRegion(N);
249 CSEMap.clear();
250 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000251 }
252
253 return Changed;
254}
255
Evan Cheng4038f9c2010-04-08 01:03:47 +0000256/// InstructionStoresToFI - Return true if instruction stores to the
257/// specified frame.
258static bool InstructionStoresToFI(const MachineInstr *MI, int FI) {
259 for (MachineInstr::mmo_iterator o = MI->memoperands_begin(),
260 oe = MI->memoperands_end(); o != oe; ++o) {
261 if (!(*o)->isStore() || !(*o)->getValue())
262 continue;
263 if (const FixedStackPseudoSourceValue *Value =
264 dyn_cast<const FixedStackPseudoSourceValue>((*o)->getValue())) {
265 if (Value->getFrameIndex() == FI)
266 return true;
267 }
268 }
269 return false;
270}
271
272/// ProcessMI - Examine the instruction for potentai LICM candidate. Also
273/// gather register def and frame object update information.
274void MachineLICM::ProcessMI(MachineInstr *MI,
275 unsigned *PhysRegDefs,
276 SmallSet<int, 32> &StoredFIs,
277 SmallVector<CandidateInfo, 32> &Candidates) {
278 bool RuledOut = false;
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000279 bool HasRegFIUse = false;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000280 unsigned Def = 0;
281 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
282 const MachineOperand &MO = MI->getOperand(i);
283 if (MO.isFI()) {
284 // Remember if the instruction stores to the frame index.
285 int FI = MO.getIndex();
286 if (!StoredFIs.count(FI) &&
287 MFI->isSpillSlotObjectIndex(FI) &&
288 InstructionStoresToFI(MI, FI))
289 StoredFIs.insert(FI);
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000290 HasRegFIUse = true;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000291 continue;
292 }
293
294 if (!MO.isReg())
295 continue;
296 unsigned Reg = MO.getReg();
297 if (!Reg)
298 continue;
299 assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
300 "Not expecting virtual register!");
301
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000302 if (!MO.isDef()) {
303 HasRegFIUse = true;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000304 continue;
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000305 }
Evan Cheng4038f9c2010-04-08 01:03:47 +0000306
307 if (MO.isImplicit()) {
308 ++PhysRegDefs[Reg];
309 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
310 ++PhysRegDefs[*AS];
311 if (!MO.isDead())
312 // Non-dead implicit def? This cannot be hoisted.
313 RuledOut = true;
314 // No need to check if a dead implicit def is also defined by
315 // another instruction.
316 continue;
317 }
318
319 // FIXME: For now, avoid instructions with multiple defs, unless
320 // it's a dead implicit def.
321 if (Def)
322 RuledOut = true;
323 else
324 Def = Reg;
325
326 // If we have already seen another instruction that defines the same
327 // register, then this is not safe.
328 if (++PhysRegDefs[Reg] > 1)
329 // MI defined register is seen defined by another instruction in
330 // the loop, it cannot be a LICM candidate.
331 RuledOut = true;
332 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
333 if (++PhysRegDefs[*AS] > 1)
334 RuledOut = true;
335 }
336
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000337 // Only consider reloads for now and remats which do not have register
338 // operands. FIXME: Consider unfold load folding instructions.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000339 if (Def && !RuledOut) {
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000340 int FI = INT_MIN;
341 // FIXME: Also hoist instructions if all source operands are live in
342 // to the loop.
343 if ((!HasRegFIUse && IsLICMCandidate(*MI)) ||
344 (TII->isLoadFromStackSlot(MI, FI) && MFI->isSpillSlotObjectIndex(FI)))
345 Candidates.push_back(CandidateInfo(MI, Def, FI));
Evan Cheng4038f9c2010-04-08 01:03:47 +0000346 }
347}
348
349/// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop
350/// invariants out to the preheader.
Evan Chengd94671a2010-04-07 00:41:17 +0000351void MachineLICM::HoistRegionPostRA(MachineDomTreeNode *N) {
352 assert(N != 0 && "Null dominator tree node?");
353
354 unsigned NumRegs = TRI->getNumRegs();
355 unsigned *PhysRegDefs = new unsigned[NumRegs];
356 std::fill(PhysRegDefs, PhysRegDefs + NumRegs, 0);
357
Evan Cheng4038f9c2010-04-08 01:03:47 +0000358 SmallVector<CandidateInfo, 32> Candidates;
Evan Chengd94671a2010-04-07 00:41:17 +0000359 SmallSet<int, 32> StoredFIs;
360
361 // Walk the entire region, count number of defs for each register, and
362 // return potential LICM candidates.
363 SmallVector<MachineDomTreeNode*, 8> WorkList;
364 WorkList.push_back(N);
365 do {
366 N = WorkList.pop_back_val();
367 MachineBasicBlock *BB = N->getBlock();
368
Evan Cheng4038f9c2010-04-08 01:03:47 +0000369 if (!CurLoop->contains(MLI->getLoopFor(BB)))
Evan Chengd94671a2010-04-07 00:41:17 +0000370 continue;
371 // Conservatively treat live-in's as an external def.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000372 // FIXME: That means a reload that're reused in successor block(s) will not
373 // be LICM'ed.
Dan Gohman81bf03e2010-04-13 16:57:55 +0000374 for (MachineBasicBlock::livein_iterator I = BB->livein_begin(),
Evan Chengd94671a2010-04-07 00:41:17 +0000375 E = BB->livein_end(); I != E; ++I) {
376 unsigned Reg = *I;
377 ++PhysRegDefs[Reg];
Evan Cheng4038f9c2010-04-08 01:03:47 +0000378 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
379 ++PhysRegDefs[*AS];
Evan Chengd94671a2010-04-07 00:41:17 +0000380 }
381
382 for (MachineBasicBlock::iterator
383 MII = BB->begin(), E = BB->end(); MII != E; ++MII) {
Evan Chengd94671a2010-04-07 00:41:17 +0000384 MachineInstr *MI = &*MII;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000385 ProcessMI(MI, PhysRegDefs, StoredFIs, Candidates);
Evan Chengd94671a2010-04-07 00:41:17 +0000386 }
387
388 const std::vector<MachineDomTreeNode*> &Children = N->getChildren();
389 for (unsigned I = 0, E = Children.size(); I != E; ++I)
390 WorkList.push_back(Children[I]);
391 } while (!WorkList.empty());
392
393 // Now evaluate whether the potential candidates qualify.
394 // 1. Check if the candidate defined register is defined by another
395 // instruction in the loop.
396 // 2. If the candidate is a load from stack slot (always true for now),
397 // check if the slot is stored anywhere in the loop.
398 for (unsigned i = 0, e = Candidates.size(); i != e; ++i) {
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000399 if (Candidates[i].FI != INT_MIN &&
400 StoredFIs.count(Candidates[i].FI))
Evan Chengd94671a2010-04-07 00:41:17 +0000401 continue;
402
Evan Cheng4038f9c2010-04-08 01:03:47 +0000403 if (PhysRegDefs[Candidates[i].Def] == 1)
404 HoistPostRA(Candidates[i].MI, Candidates[i].Def);
Evan Chengd94671a2010-04-07 00:41:17 +0000405 }
Benjamin Kramer678d9b72010-04-12 11:38:35 +0000406
407 delete[] PhysRegDefs;
Evan Chengd94671a2010-04-07 00:41:17 +0000408}
409
Evan Cheng4038f9c2010-04-08 01:03:47 +0000410/// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the
411/// backedge path from MBB to LoopHeader.
412void MachineLICM::AddToLiveIns(unsigned Reg, MachineBasicBlock *MBB,
413 MachineBasicBlock *LoopHeader) {
414 SmallPtrSet<MachineBasicBlock*, 4> Visited;
415 SmallVector<MachineBasicBlock*, 4> WorkList;
416 WorkList.push_back(MBB);
417 do {
418 MBB = WorkList.pop_back_val();
419 if (!Visited.insert(MBB))
420 continue;
421 MBB->addLiveIn(Reg);
422 if (MBB == LoopHeader)
423 continue;
424 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
425 E = MBB->pred_end(); PI != E; ++PI)
426 WorkList.push_back(*PI);
427 } while (!WorkList.empty());
428}
429
430/// HoistPostRA - When an instruction is found to only use loop invariant
431/// operands that is safe to hoist, this instruction is called to do the
432/// dirty work.
433void MachineLICM::HoistPostRA(MachineInstr *MI, unsigned Def) {
Evan Chengd94671a2010-04-07 00:41:17 +0000434 // Now move the instructions to the predecessor, inserting it before any
435 // terminator instructions.
436 DEBUG({
437 dbgs() << "Hoisting " << *MI;
438 if (CurPreheader->getBasicBlock())
439 dbgs() << " to MachineBasicBlock "
440 << CurPreheader->getName();
441 if (MI->getParent()->getBasicBlock())
442 dbgs() << " from MachineBasicBlock "
443 << MI->getParent()->getName();
444 dbgs() << "\n";
445 });
446
447 // Splice the instruction to the preheader.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000448 MachineBasicBlock *MBB = MI->getParent();
449 CurPreheader->splice(CurPreheader->getFirstTerminator(), MBB, MI);
450
451 // Add register to livein list to BBs in the path from loop header to original
452 // BB. Note, currently it's not necessary to worry about adding it to all BB's
453 // with uses. Reload that're reused in successor block(s) are not being
454 // hoisted.
455 AddToLiveIns(Def, MBB, CurLoop->getHeader());
Evan Chengd94671a2010-04-07 00:41:17 +0000456
457 ++NumPostRAHoisted;
458 Changed = true;
459}
460
Bill Wendling0f940c92007-12-07 21:42:31 +0000461/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
462/// dominated by the specified block, and that are in the current loop) in depth
463/// first order w.r.t the DominatorTree. This allows us to visit definitions
464/// before uses, allowing us to hoist a loop body in one pass without iteration.
465///
466void MachineLICM::HoistRegion(MachineDomTreeNode *N) {
467 assert(N != 0 && "Null dominator tree node?");
468 MachineBasicBlock *BB = N->getBlock();
469
470 // If this subregion is not in the top level loop at all, exit.
471 if (!CurLoop->contains(BB)) return;
472
Dan Gohmanc475c362009-01-15 22:01:38 +0000473 for (MachineBasicBlock::iterator
Evan Chengaf6949d2009-02-05 08:45:46 +0000474 MII = BB->begin(), E = BB->end(); MII != E; ) {
475 MachineBasicBlock::iterator NextMII = MII; ++NextMII;
Evan Cheng777c6b72009-11-03 21:40:02 +0000476 Hoist(&*MII);
Evan Chengaf6949d2009-02-05 08:45:46 +0000477 MII = NextMII;
Dan Gohmanc475c362009-01-15 22:01:38 +0000478 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000479
480 const std::vector<MachineDomTreeNode*> &Children = N->getChildren();
Bill Wendling0f940c92007-12-07 21:42:31 +0000481 for (unsigned I = 0, E = Children.size(); I != E; ++I)
482 HoistRegion(Children[I]);
483}
484
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000485/// IsLICMCandidate - Returns true if the instruction may be a suitable
486/// candidate for LICM. e.g. If the instruction is a call, then it's obviously
487/// not safe to hoist it.
488bool MachineLICM::IsLICMCandidate(MachineInstr &I) {
Chris Lattnera22edc82008-01-10 23:08:24 +0000489 const TargetInstrDesc &TID = I.getDesc();
490
491 // Ignore stuff that we obviously can't hoist.
Dan Gohman237dee12008-12-23 17:28:50 +0000492 if (TID.mayStore() || TID.isCall() || TID.isTerminator() ||
Chris Lattnera22edc82008-01-10 23:08:24 +0000493 TID.hasUnmodeledSideEffects())
494 return false;
Evan Cheng9b61f332009-02-04 07:17:49 +0000495
Chris Lattnera22edc82008-01-10 23:08:24 +0000496 if (TID.mayLoad()) {
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000497 // Okay, this instruction does a load. As a refinement, we allow the target
498 // to decide whether the loaded value is actually a constant. If so, we can
499 // actually use it as a load.
Dan Gohmane33f44c2009-10-07 17:38:06 +0000500 if (!I.isInvariantLoad(AA))
Evan Cheng7adcdc32009-11-17 19:19:01 +0000501 // FIXME: we should be able to hoist loads with no other side effects if
502 // there are no other instructions which can change memory in this loop.
503 // This is a trivial form of alias analysis.
Chris Lattnera22edc82008-01-10 23:08:24 +0000504 return false;
Chris Lattnera22edc82008-01-10 23:08:24 +0000505 }
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000506 return true;
507}
508
509/// IsLoopInvariantInst - Returns true if the instruction is loop
510/// invariant. I.e., all virtual register operands are defined outside of the
511/// loop, physical registers aren't accessed explicitly, and there are no side
512/// effects that aren't captured by the operands or other flags.
513///
514bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) {
515 if (!IsLICMCandidate(I))
516 return false;
Bill Wendling074223a2008-03-10 08:13:01 +0000517
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000518 // The instruction is loop invariant if all of its operands are.
Bill Wendling0f940c92007-12-07 21:42:31 +0000519 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
520 const MachineOperand &MO = I.getOperand(i);
521
Dan Gohmand735b802008-10-03 15:45:36 +0000522 if (!MO.isReg())
Bill Wendlingfb018d02008-08-20 20:32:05 +0000523 continue;
524
Dan Gohmanc475c362009-01-15 22:01:38 +0000525 unsigned Reg = MO.getReg();
526 if (Reg == 0) continue;
527
528 // Don't hoist an instruction that uses or defines a physical register.
Dan Gohmana8fb3362009-09-25 23:58:45 +0000529 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Dan Gohmana8fb3362009-09-25 23:58:45 +0000530 if (MO.isUse()) {
531 // If the physreg has no defs anywhere, it's just an ambient register
Dan Gohman45094e32009-09-26 02:34:00 +0000532 // and we can freely move its uses. Alternatively, if it's allocatable,
533 // it could get allocated to something with a def during allocation.
Dan Gohmana8fb3362009-09-25 23:58:45 +0000534 if (!RegInfo->def_empty(Reg))
535 return false;
Dan Gohman45094e32009-09-26 02:34:00 +0000536 if (AllocatableSet.test(Reg))
537 return false;
Dan Gohmana8fb3362009-09-25 23:58:45 +0000538 // Check for a def among the register's aliases too.
Dan Gohman45094e32009-09-26 02:34:00 +0000539 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
540 unsigned AliasReg = *Alias;
541 if (!RegInfo->def_empty(AliasReg))
Dan Gohmana8fb3362009-09-25 23:58:45 +0000542 return false;
Dan Gohman45094e32009-09-26 02:34:00 +0000543 if (AllocatableSet.test(AliasReg))
544 return false;
545 }
Dan Gohmana8fb3362009-09-25 23:58:45 +0000546 // Otherwise it's safe to move.
547 continue;
548 } else if (!MO.isDead()) {
549 // A def that isn't dead. We can't move it.
550 return false;
Dan Gohmana363a9b2010-02-28 00:08:44 +0000551 } else if (CurLoop->getHeader()->isLiveIn(Reg)) {
552 // If the reg is live into the loop, we can't hoist an instruction
553 // which would clobber it.
554 return false;
Dan Gohmana8fb3362009-09-25 23:58:45 +0000555 }
556 }
Bill Wendlingfb018d02008-08-20 20:32:05 +0000557
558 if (!MO.isUse())
Bill Wendling0f940c92007-12-07 21:42:31 +0000559 continue;
560
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000561 assert(RegInfo->getVRegDef(Reg) &&
562 "Machine instr not mapped for this vreg?!");
Bill Wendling0f940c92007-12-07 21:42:31 +0000563
564 // If the loop contains the definition of an operand, then the instruction
565 // isn't loop invariant.
Dan Gohman92329c72009-12-18 01:24:09 +0000566 if (CurLoop->contains(RegInfo->getVRegDef(Reg)))
Bill Wendling0f940c92007-12-07 21:42:31 +0000567 return false;
568 }
569
570 // If we got this far, the instruction is loop invariant!
571 return true;
572}
573
Evan Chengaf6949d2009-02-05 08:45:46 +0000574
575/// HasPHIUses - Return true if the specified register has any PHI use.
576static bool HasPHIUses(unsigned Reg, MachineRegisterInfo *RegInfo) {
Evan Cheng45e94d62009-02-04 09:19:56 +0000577 for (MachineRegisterInfo::use_iterator UI = RegInfo->use_begin(Reg),
578 UE = RegInfo->use_end(); UI != UE; ++UI) {
579 MachineInstr *UseMI = &*UI;
Chris Lattner518bb532010-02-09 19:54:29 +0000580 if (UseMI->isPHI())
Evan Chengaf6949d2009-02-05 08:45:46 +0000581 return true;
Evan Cheng45e94d62009-02-04 09:19:56 +0000582 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000583 return false;
Evan Cheng45e94d62009-02-04 09:19:56 +0000584}
585
Evan Cheng87b75ba2009-11-20 19:55:37 +0000586/// isLoadFromConstantMemory - Return true if the given instruction is a
587/// load from constant memory. Machine LICM will hoist these even if they are
588/// not re-materializable.
589bool MachineLICM::isLoadFromConstantMemory(MachineInstr *MI) {
590 if (!MI->getDesc().mayLoad()) return false;
591 if (!MI->hasOneMemOperand()) return false;
592 MachineMemOperand *MMO = *MI->memoperands_begin();
593 if (MMO->isVolatile()) return false;
594 if (!MMO->getValue()) return false;
595 const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(MMO->getValue());
596 if (PSV) {
597 MachineFunction &MF = *MI->getParent()->getParent();
598 return PSV->isConstant(MF.getFrameInfo());
599 } else {
600 return AA->pointsToConstantMemory(MMO->getValue());
601 }
602}
603
Evan Cheng45e94d62009-02-04 09:19:56 +0000604/// IsProfitableToHoist - Return true if it is potentially profitable to hoist
605/// the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000606bool MachineLICM::IsProfitableToHoist(MachineInstr &MI) {
Chris Lattner518bb532010-02-09 19:54:29 +0000607 if (MI.isImplicitDef())
Evan Chengefc78392009-02-27 00:02:22 +0000608 return false;
609
Evan Cheng45e94d62009-02-04 09:19:56 +0000610 // FIXME: For now, only hoist re-materilizable instructions. LICM will
611 // increase register pressure. We want to make sure it doesn't increase
612 // spilling.
Evan Cheng87b75ba2009-11-20 19:55:37 +0000613 // Also hoist loads from constant memory, e.g. load from stubs, GOT. Hoisting
614 // these tend to help performance in low register pressure situation. The
615 // trade off is it may cause spill in high pressure situation. It will end up
616 // adding a store in the loop preheader. But the reload is no more expensive.
617 // The side benefit is these loads are frequently CSE'ed.
618 if (!TII->isTriviallyReMaterializable(&MI, AA)) {
Evan Chengc26abd92009-11-20 23:31:34 +0000619 if (!isLoadFromConstantMemory(&MI))
Evan Cheng87b75ba2009-11-20 19:55:37 +0000620 return false;
Evan Cheng87b75ba2009-11-20 19:55:37 +0000621 }
Evan Cheng45e94d62009-02-04 09:19:56 +0000622
Evan Chengaf6949d2009-02-05 08:45:46 +0000623 // If result(s) of this instruction is used by PHIs, then don't hoist it.
624 // The presence of joins makes it difficult for current register allocator
625 // implementation to perform remat.
Evan Cheng45e94d62009-02-04 09:19:56 +0000626 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
627 const MachineOperand &MO = MI.getOperand(i);
628 if (!MO.isReg() || !MO.isDef())
629 continue;
Evan Chengaf6949d2009-02-05 08:45:46 +0000630 if (HasPHIUses(MO.getReg(), RegInfo))
631 return false;
Evan Cheng45e94d62009-02-04 09:19:56 +0000632 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000633
634 return true;
635}
636
Dan Gohman5c952302009-10-29 17:47:20 +0000637MachineInstr *MachineLICM::ExtractHoistableLoad(MachineInstr *MI) {
638 // If not, we may be able to unfold a load and hoist that.
639 // First test whether the instruction is loading from an amenable
640 // memory location.
Evan Cheng87b75ba2009-11-20 19:55:37 +0000641 if (!isLoadFromConstantMemory(MI))
642 return 0;
643
Dan Gohman5c952302009-10-29 17:47:20 +0000644 // Next determine the register class for a temporary register.
Dan Gohman0115e162009-10-30 22:18:41 +0000645 unsigned LoadRegIndex;
Dan Gohman5c952302009-10-29 17:47:20 +0000646 unsigned NewOpc =
647 TII->getOpcodeAfterMemoryUnfold(MI->getOpcode(),
648 /*UnfoldLoad=*/true,
Dan Gohman0115e162009-10-30 22:18:41 +0000649 /*UnfoldStore=*/false,
650 &LoadRegIndex);
Dan Gohman5c952302009-10-29 17:47:20 +0000651 if (NewOpc == 0) return 0;
652 const TargetInstrDesc &TID = TII->get(NewOpc);
653 if (TID.getNumDefs() != 1) return 0;
Dan Gohman0115e162009-10-30 22:18:41 +0000654 const TargetRegisterClass *RC = TID.OpInfo[LoadRegIndex].getRegClass(TRI);
Dan Gohman5c952302009-10-29 17:47:20 +0000655 // Ok, we're unfolding. Create a temporary register and do the unfold.
656 unsigned Reg = RegInfo->createVirtualRegister(RC);
Evan Cheng87b75ba2009-11-20 19:55:37 +0000657
658 MachineFunction &MF = *MI->getParent()->getParent();
Dan Gohman5c952302009-10-29 17:47:20 +0000659 SmallVector<MachineInstr *, 2> NewMIs;
660 bool Success =
661 TII->unfoldMemoryOperand(MF, MI, Reg,
662 /*UnfoldLoad=*/true, /*UnfoldStore=*/false,
663 NewMIs);
664 (void)Success;
665 assert(Success &&
666 "unfoldMemoryOperand failed when getOpcodeAfterMemoryUnfold "
667 "succeeded!");
668 assert(NewMIs.size() == 2 &&
669 "Unfolded a load into multiple instructions!");
670 MachineBasicBlock *MBB = MI->getParent();
671 MBB->insert(MI, NewMIs[0]);
672 MBB->insert(MI, NewMIs[1]);
673 // If unfolding produced a load that wasn't loop-invariant or profitable to
674 // hoist, discard the new instructions and bail.
Evan Chengc26abd92009-11-20 23:31:34 +0000675 if (!IsLoopInvariantInst(*NewMIs[0]) || !IsProfitableToHoist(*NewMIs[0])) {
Dan Gohman5c952302009-10-29 17:47:20 +0000676 NewMIs[0]->eraseFromParent();
677 NewMIs[1]->eraseFromParent();
678 return 0;
679 }
680 // Otherwise we successfully unfolded a load that we can hoist.
681 MI->eraseFromParent();
682 return NewMIs[0];
683}
684
Evan Cheng777c6b72009-11-03 21:40:02 +0000685void MachineLICM::InitCSEMap(MachineBasicBlock *BB) {
686 for (MachineBasicBlock::iterator I = BB->begin(),E = BB->end(); I != E; ++I) {
687 const MachineInstr *MI = &*I;
688 // FIXME: For now, only hoist re-materilizable instructions. LICM will
689 // increase register pressure. We want to make sure it doesn't increase
690 // spilling.
691 if (TII->isTriviallyReMaterializable(MI, AA)) {
692 unsigned Opcode = MI->getOpcode();
693 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
694 CI = CSEMap.find(Opcode);
695 if (CI != CSEMap.end())
696 CI->second.push_back(MI);
697 else {
698 std::vector<const MachineInstr*> CSEMIs;
699 CSEMIs.push_back(MI);
700 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
701 }
702 }
703 }
704}
705
Evan Cheng78e5c112009-11-07 03:52:02 +0000706const MachineInstr*
707MachineLICM::LookForDuplicate(const MachineInstr *MI,
708 std::vector<const MachineInstr*> &PrevMIs) {
Evan Cheng9fb744e2009-11-05 00:51:13 +0000709 for (unsigned i = 0, e = PrevMIs.size(); i != e; ++i) {
710 const MachineInstr *PrevMI = PrevMIs[i];
Evan Cheng506049f2010-03-03 01:44:33 +0000711 if (TII->produceSameValue(MI, PrevMI))
Evan Cheng9fb744e2009-11-05 00:51:13 +0000712 return PrevMI;
713 }
714 return 0;
715}
716
717bool MachineLICM::EliminateCSE(MachineInstr *MI,
718 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI) {
Evan Cheng78e5c112009-11-07 03:52:02 +0000719 if (CI == CSEMap.end())
720 return false;
721
722 if (const MachineInstr *Dup = LookForDuplicate(MI, CI->second)) {
David Greene65a41eb2010-01-05 00:03:48 +0000723 DEBUG(dbgs() << "CSEing " << *MI << " with " << *Dup);
Dan Gohman6ac33b42010-02-28 01:33:43 +0000724
725 // Replace virtual registers defined by MI by their counterparts defined
726 // by Dup.
Evan Cheng78e5c112009-11-07 03:52:02 +0000727 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
728 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman6ac33b42010-02-28 01:33:43 +0000729
730 // Physical registers may not differ here.
731 assert((!MO.isReg() || MO.getReg() == 0 ||
732 !TargetRegisterInfo::isPhysicalRegister(MO.getReg()) ||
733 MO.getReg() == Dup->getOperand(i).getReg()) &&
734 "Instructions with different phys regs are not identical!");
735
736 if (MO.isReg() && MO.isDef() &&
737 !TargetRegisterInfo::isPhysicalRegister(MO.getReg()))
Evan Cheng78e5c112009-11-07 03:52:02 +0000738 RegInfo->replaceRegWith(MO.getReg(), Dup->getOperand(i).getReg());
Evan Cheng9fb744e2009-11-05 00:51:13 +0000739 }
Evan Cheng78e5c112009-11-07 03:52:02 +0000740 MI->eraseFromParent();
741 ++NumCSEed;
742 return true;
Evan Cheng9fb744e2009-11-05 00:51:13 +0000743 }
744 return false;
745}
746
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000747/// Hoist - When an instruction is found to use only loop invariant operands
748/// that are safe to hoist, this instruction is called to do the dirty work.
Bill Wendling0f940c92007-12-07 21:42:31 +0000749///
Dan Gohman589f1f52009-10-28 03:21:57 +0000750void MachineLICM::Hoist(MachineInstr *MI) {
751 // First check whether we should hoist this instruction.
Evan Chengc26abd92009-11-20 23:31:34 +0000752 if (!IsLoopInvariantInst(*MI) || !IsProfitableToHoist(*MI)) {
Dan Gohman5c952302009-10-29 17:47:20 +0000753 // If not, try unfolding a hoistable load.
754 MI = ExtractHoistableLoad(MI);
755 if (!MI) return;
Dan Gohman589f1f52009-10-28 03:21:57 +0000756 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000757
Dan Gohmanc475c362009-01-15 22:01:38 +0000758 // Now move the instructions to the predecessor, inserting it before any
759 // terminator instructions.
760 DEBUG({
David Greene65a41eb2010-01-05 00:03:48 +0000761 dbgs() << "Hoisting " << *MI;
Dan Gohmanc475c362009-01-15 22:01:38 +0000762 if (CurPreheader->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +0000763 dbgs() << " to MachineBasicBlock "
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +0000764 << CurPreheader->getName();
Dan Gohman589f1f52009-10-28 03:21:57 +0000765 if (MI->getParent()->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +0000766 dbgs() << " from MachineBasicBlock "
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +0000767 << MI->getParent()->getName();
David Greene65a41eb2010-01-05 00:03:48 +0000768 dbgs() << "\n";
Dan Gohmanc475c362009-01-15 22:01:38 +0000769 });
Bill Wendling0f940c92007-12-07 21:42:31 +0000770
Evan Cheng777c6b72009-11-03 21:40:02 +0000771 // If this is the first instruction being hoisted to the preheader,
772 // initialize the CSE map with potential common expressions.
773 InitCSEMap(CurPreheader);
774
Evan Chengaf6949d2009-02-05 08:45:46 +0000775 // Look for opportunity to CSE the hoisted instruction.
Evan Cheng777c6b72009-11-03 21:40:02 +0000776 unsigned Opcode = MI->getOpcode();
777 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
778 CI = CSEMap.find(Opcode);
Evan Cheng9fb744e2009-11-05 00:51:13 +0000779 if (!EliminateCSE(MI, CI)) {
780 // Otherwise, splice the instruction to the preheader.
Evan Cheng777c6b72009-11-03 21:40:02 +0000781 CurPreheader->splice(CurPreheader->getFirstTerminator(),MI->getParent(),MI);
782
Evan Chengaf6949d2009-02-05 08:45:46 +0000783 // Add to the CSE map.
784 if (CI != CSEMap.end())
Dan Gohman589f1f52009-10-28 03:21:57 +0000785 CI->second.push_back(MI);
Evan Chengaf6949d2009-02-05 08:45:46 +0000786 else {
787 std::vector<const MachineInstr*> CSEMIs;
Dan Gohman589f1f52009-10-28 03:21:57 +0000788 CSEMIs.push_back(MI);
Evan Cheng777c6b72009-11-03 21:40:02 +0000789 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
Evan Chengaf6949d2009-02-05 08:45:46 +0000790 }
791 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000792
Dan Gohmanc475c362009-01-15 22:01:38 +0000793 ++NumHoisted;
Bill Wendling0f940c92007-12-07 21:42:31 +0000794 Changed = true;
Bill Wendling0f940c92007-12-07 21:42:31 +0000795}