blob: 3e25e917c9e96ed1c7ab3e7a1218739d53b048f9 [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"
Evan Cheng0e673912010-10-14 01:16:09 +000031#include "llvm/Target/TargetLowering.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000032#include "llvm/Target/TargetRegisterInfo.h"
Bill Wendlingefe2be72007-12-11 23:27:51 +000033#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng0e673912010-10-14 01:16:09 +000034#include "llvm/Target/TargetInstrItineraries.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000035#include "llvm/Target/TargetMachine.h"
Dan Gohmane33f44c2009-10-07 17:38:06 +000036#include "llvm/Analysis/AliasAnalysis.h"
Evan Chengaf6949d2009-02-05 08:45:46 +000037#include "llvm/ADT/DenseMap.h"
Evan Chengd94671a2010-04-07 00:41:17 +000038#include "llvm/ADT/SmallSet.h"
Chris Lattnerac695822008-01-04 06:41:45 +000039#include "llvm/ADT/Statistic.h"
Evan Cheng0e673912010-10-14 01:16:09 +000040#include "llvm/Support/CommandLine.h"
Chris Lattnerac695822008-01-04 06:41:45 +000041#include "llvm/Support/Debug.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000042#include "llvm/Support/raw_ostream.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000043
44using namespace llvm;
45
Daniel Dunbar98694132010-10-19 17:14:24 +000046static cl::opt<bool>
47TrackRegPressure("rp-aware-machine-licm",
48 cl::desc("Register pressure aware machine LICM"),
49 cl::init(false), cl::Hidden);
50
Evan Cheng03a9fdf2010-10-16 02:20:26 +000051STATISTIC(NumHoisted,
52 "Number of machine instructions hoisted out of loops");
53STATISTIC(NumLowRP,
54 "Number of instructions hoisted in low reg pressure situation");
55STATISTIC(NumHighLatency,
56 "Number of high latency instructions hoisted");
57STATISTIC(NumCSEed,
58 "Number of hoisted machine instructions CSEed");
Evan Chengd94671a2010-04-07 00:41:17 +000059STATISTIC(NumPostRAHoisted,
60 "Number of machine instructions hoisted out of loops post regalloc");
Bill Wendlingb48519c2007-12-08 01:47:01 +000061
Bill Wendling0f940c92007-12-07 21:42:31 +000062namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000063 class MachineLICM : public MachineFunctionPass {
Evan Chengd94671a2010-04-07 00:41:17 +000064 bool PreRegAlloc;
65
Bill Wendling9258cd32008-01-02 19:32:43 +000066 const TargetMachine *TM;
Bill Wendlingefe2be72007-12-11 23:27:51 +000067 const TargetInstrInfo *TII;
Evan Cheng0e673912010-10-14 01:16:09 +000068 const TargetLowering *TLI;
Dan Gohmana8fb3362009-09-25 23:58:45 +000069 const TargetRegisterInfo *TRI;
Evan Chengd94671a2010-04-07 00:41:17 +000070 const MachineFrameInfo *MFI;
Evan Cheng0e673912010-10-14 01:16:09 +000071 MachineRegisterInfo *MRI;
72 const InstrItineraryData *InstrItins;
Bill Wendling12ebf142007-12-11 19:40:06 +000073
Bill Wendling0f940c92007-12-07 21:42:31 +000074 // Various analyses that we use...
Dan Gohmane33f44c2009-10-07 17:38:06 +000075 AliasAnalysis *AA; // Alias analysis info.
Evan Cheng4038f9c2010-04-08 01:03:47 +000076 MachineLoopInfo *MLI; // Current MachineLoopInfo
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000077 MachineDominatorTree *DT; // Machine dominator tree for the cur loop
Bill Wendling0f940c92007-12-07 21:42:31 +000078
Bill Wendling0f940c92007-12-07 21:42:31 +000079 // State that is updated as we process loops
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000080 bool Changed; // True if a loop is changed.
Evan Cheng82e0a1a2010-05-29 00:06:36 +000081 bool FirstInLoop; // True if it's the first LICM in the loop.
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000082 MachineLoop *CurLoop; // The current loop we are working on.
Dan Gohmanc475c362009-01-15 22:01:38 +000083 MachineBasicBlock *CurPreheader; // The preheader for CurLoop.
Evan Chengaf6949d2009-02-05 08:45:46 +000084
Evan Chengd94671a2010-04-07 00:41:17 +000085 BitVector AllocatableSet;
86
Evan Cheng0e673912010-10-14 01:16:09 +000087 // Track 'estimated' register pressure.
Evan Cheng03a9fdf2010-10-16 02:20:26 +000088 SmallSet<unsigned, 32> RegSeen;
Evan Cheng0e673912010-10-14 01:16:09 +000089 SmallVector<unsigned, 8> RegPressure;
Evan Cheng03a9fdf2010-10-16 02:20:26 +000090
91 // Register pressure "limit" per register class. If the pressure
92 // is higher than the limit, then it's considered high.
Evan Cheng0e673912010-10-14 01:16:09 +000093 SmallVector<unsigned, 8> RegLimit;
94
Evan Cheng03a9fdf2010-10-16 02:20:26 +000095 // Register pressure on path leading from loop preheader to current BB.
96 SmallVector<SmallVector<unsigned, 8>, 16> BackTrace;
97
Dale Johannesenc46a5f22010-07-29 17:45:24 +000098 // For each opcode, keep a list of potential CSE instructions.
Evan Cheng777c6b72009-11-03 21:40:02 +000099 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap;
Evan Chengd94671a2010-04-07 00:41:17 +0000100
Bill Wendling0f940c92007-12-07 21:42:31 +0000101 public:
102 static char ID; // Pass identification, replacement for typeid
Evan Chengd94671a2010-04-07 00:41:17 +0000103 MachineLICM() :
Owen Anderson081c34b2010-10-19 17:21:58 +0000104 MachineFunctionPass(ID), PreRegAlloc(true) {
105 initializeMachineLICMPass(*PassRegistry::getPassRegistry());
106 }
Evan Chengd94671a2010-04-07 00:41:17 +0000107
108 explicit MachineLICM(bool PreRA) :
Owen Anderson081c34b2010-10-19 17:21:58 +0000109 MachineFunctionPass(ID), PreRegAlloc(PreRA) {
110 initializeMachineLICMPass(*PassRegistry::getPassRegistry());
111 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000112
113 virtual bool runOnMachineFunction(MachineFunction &MF);
114
Dan Gohman72241702008-12-18 01:37:56 +0000115 const char *getPassName() const { return "Machine Instruction LICM"; }
116
Bill Wendling0f940c92007-12-07 21:42:31 +0000117 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
118 AU.setPreservesCFG();
119 AU.addRequired<MachineLoopInfo>();
120 AU.addRequired<MachineDominatorTree>();
Dan Gohmane33f44c2009-10-07 17:38:06 +0000121 AU.addRequired<AliasAnalysis>();
Bill Wendlingd5da7042008-01-04 08:48:49 +0000122 AU.addPreserved<MachineLoopInfo>();
123 AU.addPreserved<MachineDominatorTree>();
124 MachineFunctionPass::getAnalysisUsage(AU);
Bill Wendling0f940c92007-12-07 21:42:31 +0000125 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000126
127 virtual void releaseMemory() {
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000128 RegSeen.clear();
Evan Cheng0e673912010-10-14 01:16:09 +0000129 RegPressure.clear();
130 RegLimit.clear();
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000131 for (DenseMap<unsigned,std::vector<const MachineInstr*> >::iterator
132 CI = CSEMap.begin(), CE = CSEMap.end(); CI != CE; ++CI)
133 CI->second.clear();
Evan Chengaf6949d2009-02-05 08:45:46 +0000134 CSEMap.clear();
135 }
136
Bill Wendling0f940c92007-12-07 21:42:31 +0000137 private:
Evan Cheng4038f9c2010-04-08 01:03:47 +0000138 /// CandidateInfo - Keep track of information about hoisting candidates.
139 struct CandidateInfo {
140 MachineInstr *MI;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000141 unsigned Def;
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000142 int FI;
143 CandidateInfo(MachineInstr *mi, unsigned def, int fi)
144 : MI(mi), Def(def), FI(fi) {}
Evan Cheng4038f9c2010-04-08 01:03:47 +0000145 };
146
147 /// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop
148 /// invariants out to the preheader.
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000149 void HoistRegionPostRA();
Evan Cheng4038f9c2010-04-08 01:03:47 +0000150
151 /// HoistPostRA - When an instruction is found to only use loop invariant
152 /// operands that is safe to hoist, this instruction is called to do the
153 /// dirty work.
154 void HoistPostRA(MachineInstr *MI, unsigned Def);
155
156 /// ProcessMI - Examine the instruction for potentai LICM candidate. Also
157 /// gather register def and frame object update information.
158 void ProcessMI(MachineInstr *MI, unsigned *PhysRegDefs,
159 SmallSet<int, 32> &StoredFIs,
160 SmallVector<CandidateInfo, 32> &Candidates);
161
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000162 /// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the
163 /// current loop.
164 void AddToLiveIns(unsigned Reg);
Evan Cheng4038f9c2010-04-08 01:03:47 +0000165
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000166 /// IsLICMCandidate - Returns true if the instruction may be a suitable
Chris Lattner77910802010-07-12 00:00:35 +0000167 /// candidate for LICM. e.g. If the instruction is a call, then it's
168 /// obviously not safe to hoist it.
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000169 bool IsLICMCandidate(MachineInstr &I);
170
Bill Wendling041b3f82007-12-08 23:58:46 +0000171 /// IsLoopInvariantInst - Returns true if the instruction is loop
Bill Wendling0f940c92007-12-07 21:42:31 +0000172 /// invariant. I.e., all virtual register operands are defined outside of
173 /// the loop, physical registers aren't accessed (explicitly or implicitly),
174 /// and the instruction is hoistable.
175 ///
Bill Wendling041b3f82007-12-08 23:58:46 +0000176 bool IsLoopInvariantInst(MachineInstr &I);
Bill Wendling0f940c92007-12-07 21:42:31 +0000177
Daniel Dunbar98694132010-10-19 17:14:24 +0000178 /// ComputeOperandLatency - Compute operand latency between a def of 'Reg'
179 /// and an use in the current loop.
180 int ComputeOperandLatency(MachineInstr &MI, unsigned DefIdx, unsigned Reg);
Evan Cheng0e673912010-10-14 01:16:09 +0000181
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000182 /// IncreaseHighRegPressure - Visit BBs from preheader to current BB, check
183 /// if hoisting an instruction of the given cost matrix can cause high
184 /// register pressure.
185 bool IncreaseHighRegPressure(DenseMap<unsigned, int> &Cost);
186
Evan Cheng45e94d62009-02-04 09:19:56 +0000187 /// IsProfitableToHoist - Return true if it is potentially profitable to
188 /// hoist the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000189 bool IsProfitableToHoist(MachineInstr &MI);
Evan Cheng45e94d62009-02-04 09:19:56 +0000190
Bill Wendling0f940c92007-12-07 21:42:31 +0000191 /// HoistRegion - Walk the specified region of the CFG (defined by all
192 /// blocks dominated by the specified block, and that are in the current
193 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
194 /// visit definitions before uses, allowing us to hoist a loop body in one
195 /// pass without iteration.
196 ///
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000197 void HoistRegion(MachineDomTreeNode *N, bool IsHeader = false);
Bill Wendling0f940c92007-12-07 21:42:31 +0000198
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000199 /// InitRegPressure - Find all virtual register references that are liveout
200 /// of the preheader to initialize the starting "register pressure". Note
201 /// this does not count live through (livein but not used) registers.
Evan Cheng0e673912010-10-14 01:16:09 +0000202 void InitRegPressure(MachineBasicBlock *BB);
203
204 /// UpdateRegPressureBefore / UpdateRegPressureAfter - Update estimate of
205 /// register pressure before and after executing a specifi instruction.
206 void UpdateRegPressureBefore(const MachineInstr *MI);
207 void UpdateRegPressureAfter(const MachineInstr *MI);
208
Evan Cheng87b75ba2009-11-20 19:55:37 +0000209 /// isLoadFromConstantMemory - Return true if the given instruction is a
210 /// load from constant memory.
211 bool isLoadFromConstantMemory(MachineInstr *MI);
212
Dan Gohman5c952302009-10-29 17:47:20 +0000213 /// ExtractHoistableLoad - Unfold a load from the given machineinstr if
214 /// the load itself could be hoisted. Return the unfolded and hoistable
215 /// load, or null if the load couldn't be unfolded or if it wouldn't
216 /// be hoistable.
217 MachineInstr *ExtractHoistableLoad(MachineInstr *MI);
218
Evan Cheng78e5c112009-11-07 03:52:02 +0000219 /// LookForDuplicate - Find an instruction amount PrevMIs that is a
220 /// duplicate of MI. Return this instruction if it's found.
221 const MachineInstr *LookForDuplicate(const MachineInstr *MI,
222 std::vector<const MachineInstr*> &PrevMIs);
223
Evan Cheng9fb744e2009-11-05 00:51:13 +0000224 /// EliminateCSE - Given a LICM'ed instruction, look for an instruction on
225 /// the preheader that compute the same value. If it's found, do a RAU on
226 /// with the definition of the existing instruction rather than hoisting
227 /// the instruction to the preheader.
228 bool EliminateCSE(MachineInstr *MI,
229 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI);
230
Bill Wendling0f940c92007-12-07 21:42:31 +0000231 /// Hoist - When an instruction is found to only use loop invariant operands
232 /// that is safe to hoist, this instruction is called to do the dirty work.
233 ///
Evan Cheng0e673912010-10-14 01:16:09 +0000234 void Hoist(MachineInstr *MI, MachineBasicBlock *Preheader);
Evan Cheng777c6b72009-11-03 21:40:02 +0000235
236 /// InitCSEMap - Initialize the CSE map with instructions that are in the
237 /// current loop preheader that may become duplicates of instructions that
238 /// are hoisted out of the loop.
239 void InitCSEMap(MachineBasicBlock *BB);
Dan Gohman853d3fb2010-06-22 17:25:57 +0000240
241 /// getCurPreheader - Get the preheader for the current loop, splitting
242 /// a critical edge if needed.
243 MachineBasicBlock *getCurPreheader();
Bill Wendling0f940c92007-12-07 21:42:31 +0000244 };
Bill Wendling0f940c92007-12-07 21:42:31 +0000245} // end anonymous namespace
246
Dan Gohman844731a2008-05-13 00:00:25 +0000247char MachineLICM::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000248INITIALIZE_PASS_BEGIN(MachineLICM, "machinelicm",
249 "Machine Loop Invariant Code Motion", false, false)
250INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
251INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
252INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
253INITIALIZE_PASS_END(MachineLICM, "machinelicm",
Owen Andersonce665bd2010-10-07 22:25:06 +0000254 "Machine Loop Invariant Code Motion", false, false)
Dan Gohman844731a2008-05-13 00:00:25 +0000255
Evan Chengd94671a2010-04-07 00:41:17 +0000256FunctionPass *llvm::createMachineLICMPass(bool PreRegAlloc) {
257 return new MachineLICM(PreRegAlloc);
258}
Bill Wendling0f940c92007-12-07 21:42:31 +0000259
Dan Gohman853d3fb2010-06-22 17:25:57 +0000260/// LoopIsOuterMostWithPredecessor - Test if the given loop is the outer-most
261/// loop that has a unique predecessor.
262static bool LoopIsOuterMostWithPredecessor(MachineLoop *CurLoop) {
Dan Gohmanaa742602010-07-09 18:49:45 +0000263 // Check whether this loop even has a unique predecessor.
264 if (!CurLoop->getLoopPredecessor())
265 return false;
266 // Ok, now check to see if any of its outer loops do.
Dan Gohmanc475c362009-01-15 22:01:38 +0000267 for (MachineLoop *L = CurLoop->getParentLoop(); L; L = L->getParentLoop())
Dan Gohman853d3fb2010-06-22 17:25:57 +0000268 if (L->getLoopPredecessor())
Dan Gohmanc475c362009-01-15 22:01:38 +0000269 return false;
Dan Gohmanaa742602010-07-09 18:49:45 +0000270 // None of them did, so this is the outermost with a unique predecessor.
Dan Gohmanc475c362009-01-15 22:01:38 +0000271 return true;
272}
273
Bill Wendling0f940c92007-12-07 21:42:31 +0000274bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd94671a2010-04-07 00:41:17 +0000275 if (PreRegAlloc)
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000276 DEBUG(dbgs() << "******** Pre-regalloc Machine LICM: ");
Evan Chengd94671a2010-04-07 00:41:17 +0000277 else
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000278 DEBUG(dbgs() << "******** Post-regalloc Machine LICM: ");
279 DEBUG(dbgs() << MF.getFunction()->getName() << " ********\n");
Bill Wendlinga17ad592007-12-11 22:22:22 +0000280
Evan Cheng82e0a1a2010-05-29 00:06:36 +0000281 Changed = FirstInLoop = false;
Bill Wendlingacb04ec2008-08-31 02:30:23 +0000282 TM = &MF.getTarget();
Bill Wendling9258cd32008-01-02 19:32:43 +0000283 TII = TM->getInstrInfo();
Evan Cheng0e673912010-10-14 01:16:09 +0000284 TLI = TM->getTargetLowering();
Dan Gohmana8fb3362009-09-25 23:58:45 +0000285 TRI = TM->getRegisterInfo();
Evan Chengd94671a2010-04-07 00:41:17 +0000286 MFI = MF.getFrameInfo();
Evan Cheng0e673912010-10-14 01:16:09 +0000287 MRI = &MF.getRegInfo();
288 InstrItins = TM->getInstrItineraryData();
Dan Gohman45094e32009-09-26 02:34:00 +0000289 AllocatableSet = TRI->getAllocatableSet(MF);
Bill Wendling0f940c92007-12-07 21:42:31 +0000290
Evan Cheng0e673912010-10-14 01:16:09 +0000291 if (PreRegAlloc) {
292 // Estimate register pressure during pre-regalloc pass.
293 unsigned NumRC = TRI->getNumRegClasses();
294 RegPressure.resize(NumRC);
Evan Cheng0e673912010-10-14 01:16:09 +0000295 std::fill(RegPressure.begin(), RegPressure.end(), 0);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000296 RegLimit.resize(NumRC);
Evan Cheng0e673912010-10-14 01:16:09 +0000297 for (TargetRegisterInfo::regclass_iterator I = TRI->regclass_begin(),
298 E = TRI->regclass_end(); I != E; ++I)
299 RegLimit[(*I)->getID()] = TLI->getRegPressureLimit(*I, MF);
300 }
301
Bill Wendling0f940c92007-12-07 21:42:31 +0000302 // Get our Loop information...
Evan Cheng4038f9c2010-04-08 01:03:47 +0000303 MLI = &getAnalysis<MachineLoopInfo>();
304 DT = &getAnalysis<MachineDominatorTree>();
305 AA = &getAnalysis<AliasAnalysis>();
Bill Wendling0f940c92007-12-07 21:42:31 +0000306
Dan Gohmanaa742602010-07-09 18:49:45 +0000307 SmallVector<MachineLoop *, 8> Worklist(MLI->begin(), MLI->end());
308 while (!Worklist.empty()) {
309 CurLoop = Worklist.pop_back_val();
Dan Gohman853d3fb2010-06-22 17:25:57 +0000310 CurPreheader = 0;
Bill Wendling0f940c92007-12-07 21:42:31 +0000311
Evan Cheng4038f9c2010-04-08 01:03:47 +0000312 // If this is done before regalloc, only visit outer-most preheader-sporting
313 // loops.
Dan Gohmanaa742602010-07-09 18:49:45 +0000314 if (PreRegAlloc && !LoopIsOuterMostWithPredecessor(CurLoop)) {
315 Worklist.append(CurLoop->begin(), CurLoop->end());
Dan Gohmanc475c362009-01-15 22:01:38 +0000316 continue;
Dan Gohmanaa742602010-07-09 18:49:45 +0000317 }
Dan Gohmanc475c362009-01-15 22:01:38 +0000318
Evan Chengd94671a2010-04-07 00:41:17 +0000319 if (!PreRegAlloc)
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000320 HoistRegionPostRA();
Evan Chengd94671a2010-04-07 00:41:17 +0000321 else {
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000322 // CSEMap is initialized for loop header when the first instruction is
323 // being hoisted.
324 MachineDomTreeNode *N = DT->getNode(CurLoop->getHeader());
Evan Cheng82e0a1a2010-05-29 00:06:36 +0000325 FirstInLoop = true;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000326 HoistRegion(N, true);
Evan Chengd94671a2010-04-07 00:41:17 +0000327 CSEMap.clear();
328 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000329 }
330
331 return Changed;
332}
333
Evan Cheng4038f9c2010-04-08 01:03:47 +0000334/// InstructionStoresToFI - Return true if instruction stores to the
335/// specified frame.
336static bool InstructionStoresToFI(const MachineInstr *MI, int FI) {
337 for (MachineInstr::mmo_iterator o = MI->memoperands_begin(),
338 oe = MI->memoperands_end(); o != oe; ++o) {
339 if (!(*o)->isStore() || !(*o)->getValue())
340 continue;
341 if (const FixedStackPseudoSourceValue *Value =
342 dyn_cast<const FixedStackPseudoSourceValue>((*o)->getValue())) {
343 if (Value->getFrameIndex() == FI)
344 return true;
345 }
346 }
347 return false;
348}
349
350/// ProcessMI - Examine the instruction for potentai LICM candidate. Also
351/// gather register def and frame object update information.
352void MachineLICM::ProcessMI(MachineInstr *MI,
353 unsigned *PhysRegDefs,
354 SmallSet<int, 32> &StoredFIs,
355 SmallVector<CandidateInfo, 32> &Candidates) {
356 bool RuledOut = false;
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000357 bool HasNonInvariantUse = false;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000358 unsigned Def = 0;
359 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
360 const MachineOperand &MO = MI->getOperand(i);
361 if (MO.isFI()) {
362 // Remember if the instruction stores to the frame index.
363 int FI = MO.getIndex();
364 if (!StoredFIs.count(FI) &&
365 MFI->isSpillSlotObjectIndex(FI) &&
366 InstructionStoresToFI(MI, FI))
367 StoredFIs.insert(FI);
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000368 HasNonInvariantUse = true;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000369 continue;
370 }
371
372 if (!MO.isReg())
373 continue;
374 unsigned Reg = MO.getReg();
375 if (!Reg)
376 continue;
377 assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
378 "Not expecting virtual register!");
379
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000380 if (!MO.isDef()) {
Evan Cheng63275372010-04-13 22:13:34 +0000381 if (Reg && PhysRegDefs[Reg])
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000382 // If it's using a non-loop-invariant register, then it's obviously not
383 // safe to hoist.
384 HasNonInvariantUse = true;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000385 continue;
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000386 }
Evan Cheng4038f9c2010-04-08 01:03:47 +0000387
388 if (MO.isImplicit()) {
389 ++PhysRegDefs[Reg];
390 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
391 ++PhysRegDefs[*AS];
392 if (!MO.isDead())
393 // Non-dead implicit def? This cannot be hoisted.
394 RuledOut = true;
395 // No need to check if a dead implicit def is also defined by
396 // another instruction.
397 continue;
398 }
399
400 // FIXME: For now, avoid instructions with multiple defs, unless
401 // it's a dead implicit def.
402 if (Def)
403 RuledOut = true;
404 else
405 Def = Reg;
406
407 // If we have already seen another instruction that defines the same
408 // register, then this is not safe.
409 if (++PhysRegDefs[Reg] > 1)
410 // MI defined register is seen defined by another instruction in
411 // the loop, it cannot be a LICM candidate.
412 RuledOut = true;
413 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
414 if (++PhysRegDefs[*AS] > 1)
415 RuledOut = true;
416 }
417
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000418 // Only consider reloads for now and remats which do not have register
419 // operands. FIXME: Consider unfold load folding instructions.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000420 if (Def && !RuledOut) {
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000421 int FI = INT_MIN;
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000422 if ((!HasNonInvariantUse && IsLICMCandidate(*MI)) ||
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000423 (TII->isLoadFromStackSlot(MI, FI) && MFI->isSpillSlotObjectIndex(FI)))
424 Candidates.push_back(CandidateInfo(MI, Def, FI));
Evan Cheng4038f9c2010-04-08 01:03:47 +0000425 }
426}
427
428/// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop
429/// invariants out to the preheader.
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000430void MachineLICM::HoistRegionPostRA() {
Evan Chengd94671a2010-04-07 00:41:17 +0000431 unsigned NumRegs = TRI->getNumRegs();
432 unsigned *PhysRegDefs = new unsigned[NumRegs];
433 std::fill(PhysRegDefs, PhysRegDefs + NumRegs, 0);
434
Evan Cheng4038f9c2010-04-08 01:03:47 +0000435 SmallVector<CandidateInfo, 32> Candidates;
Evan Chengd94671a2010-04-07 00:41:17 +0000436 SmallSet<int, 32> StoredFIs;
437
438 // Walk the entire region, count number of defs for each register, and
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000439 // collect potential LICM candidates.
440 const std::vector<MachineBasicBlock*> Blocks = CurLoop->getBlocks();
441 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
442 MachineBasicBlock *BB = Blocks[i];
Evan Chengd94671a2010-04-07 00:41:17 +0000443 // Conservatively treat live-in's as an external def.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000444 // FIXME: That means a reload that're reused in successor block(s) will not
445 // be LICM'ed.
Dan Gohman81bf03e2010-04-13 16:57:55 +0000446 for (MachineBasicBlock::livein_iterator I = BB->livein_begin(),
Evan Chengd94671a2010-04-07 00:41:17 +0000447 E = BB->livein_end(); I != E; ++I) {
448 unsigned Reg = *I;
449 ++PhysRegDefs[Reg];
Evan Cheng4038f9c2010-04-08 01:03:47 +0000450 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
451 ++PhysRegDefs[*AS];
Evan Chengd94671a2010-04-07 00:41:17 +0000452 }
453
454 for (MachineBasicBlock::iterator
455 MII = BB->begin(), E = BB->end(); MII != E; ++MII) {
Evan Chengd94671a2010-04-07 00:41:17 +0000456 MachineInstr *MI = &*MII;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000457 ProcessMI(MI, PhysRegDefs, StoredFIs, Candidates);
Evan Chengd94671a2010-04-07 00:41:17 +0000458 }
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000459 }
Evan Chengd94671a2010-04-07 00:41:17 +0000460
461 // Now evaluate whether the potential candidates qualify.
462 // 1. Check if the candidate defined register is defined by another
463 // instruction in the loop.
464 // 2. If the candidate is a load from stack slot (always true for now),
465 // check if the slot is stored anywhere in the loop.
466 for (unsigned i = 0, e = Candidates.size(); i != e; ++i) {
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000467 if (Candidates[i].FI != INT_MIN &&
468 StoredFIs.count(Candidates[i].FI))
Evan Chengd94671a2010-04-07 00:41:17 +0000469 continue;
470
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000471 if (PhysRegDefs[Candidates[i].Def] == 1) {
472 bool Safe = true;
473 MachineInstr *MI = Candidates[i].MI;
Evan Chengc15d9132010-04-13 20:25:29 +0000474 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
475 const MachineOperand &MO = MI->getOperand(j);
Evan Cheng63275372010-04-13 22:13:34 +0000476 if (!MO.isReg() || MO.isDef() || !MO.getReg())
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000477 continue;
478 if (PhysRegDefs[MO.getReg()]) {
479 // If it's using a non-loop-invariant register, then it's obviously
480 // not safe to hoist.
481 Safe = false;
482 break;
483 }
484 }
485 if (Safe)
486 HoistPostRA(MI, Candidates[i].Def);
487 }
Evan Chengd94671a2010-04-07 00:41:17 +0000488 }
Benjamin Kramer678d9b72010-04-12 11:38:35 +0000489
490 delete[] PhysRegDefs;
Evan Chengd94671a2010-04-07 00:41:17 +0000491}
492
Jakob Stoklund Olesen9196ab62010-04-20 18:45:47 +0000493/// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the current
494/// loop, and make sure it is not killed by any instructions in the loop.
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000495void MachineLICM::AddToLiveIns(unsigned Reg) {
496 const std::vector<MachineBasicBlock*> Blocks = CurLoop->getBlocks();
Jakob Stoklund Olesen9196ab62010-04-20 18:45:47 +0000497 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
498 MachineBasicBlock *BB = Blocks[i];
499 if (!BB->isLiveIn(Reg))
500 BB->addLiveIn(Reg);
501 for (MachineBasicBlock::iterator
502 MII = BB->begin(), E = BB->end(); MII != E; ++MII) {
503 MachineInstr *MI = &*MII;
504 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
505 MachineOperand &MO = MI->getOperand(i);
506 if (!MO.isReg() || !MO.getReg() || MO.isDef()) continue;
507 if (MO.getReg() == Reg || TRI->isSuperRegister(Reg, MO.getReg()))
508 MO.setIsKill(false);
509 }
510 }
511 }
Evan Cheng4038f9c2010-04-08 01:03:47 +0000512}
513
514/// HoistPostRA - When an instruction is found to only use loop invariant
515/// operands that is safe to hoist, this instruction is called to do the
516/// dirty work.
517void MachineLICM::HoistPostRA(MachineInstr *MI, unsigned Def) {
Dan Gohman853d3fb2010-06-22 17:25:57 +0000518 MachineBasicBlock *Preheader = getCurPreheader();
519 if (!Preheader) return;
520
Evan Chengd94671a2010-04-07 00:41:17 +0000521 // Now move the instructions to the predecessor, inserting it before any
522 // terminator instructions.
523 DEBUG({
524 dbgs() << "Hoisting " << *MI;
Dan Gohman853d3fb2010-06-22 17:25:57 +0000525 if (Preheader->getBasicBlock())
Evan Chengd94671a2010-04-07 00:41:17 +0000526 dbgs() << " to MachineBasicBlock "
Dan Gohman853d3fb2010-06-22 17:25:57 +0000527 << Preheader->getName();
Evan Chengd94671a2010-04-07 00:41:17 +0000528 if (MI->getParent()->getBasicBlock())
529 dbgs() << " from MachineBasicBlock "
530 << MI->getParent()->getName();
531 dbgs() << "\n";
532 });
533
534 // Splice the instruction to the preheader.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000535 MachineBasicBlock *MBB = MI->getParent();
Dan Gohman853d3fb2010-06-22 17:25:57 +0000536 Preheader->splice(Preheader->getFirstTerminator(), MBB, MI);
Evan Cheng4038f9c2010-04-08 01:03:47 +0000537
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000538 // Add register to livein list to all the BBs in the current loop since a
539 // loop invariant must be kept live throughout the whole loop. This is
540 // important to ensure later passes do not scavenge the def register.
541 AddToLiveIns(Def);
Evan Chengd94671a2010-04-07 00:41:17 +0000542
543 ++NumPostRAHoisted;
544 Changed = true;
545}
546
Bill Wendling0f940c92007-12-07 21:42:31 +0000547/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
548/// dominated by the specified block, and that are in the current loop) in depth
549/// first order w.r.t the DominatorTree. This allows us to visit definitions
550/// before uses, allowing us to hoist a loop body in one pass without iteration.
551///
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000552void MachineLICM::HoistRegion(MachineDomTreeNode *N, bool IsHeader) {
Bill Wendling0f940c92007-12-07 21:42:31 +0000553 assert(N != 0 && "Null dominator tree node?");
554 MachineBasicBlock *BB = N->getBlock();
555
556 // If this subregion is not in the top level loop at all, exit.
557 if (!CurLoop->contains(BB)) return;
558
Evan Cheng0e673912010-10-14 01:16:09 +0000559 MachineBasicBlock *Preheader = getCurPreheader();
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000560 if (!Preheader)
561 return;
Evan Cheng0e673912010-10-14 01:16:09 +0000562
Daniel Dunbar98694132010-10-19 17:14:24 +0000563 if (TrackRegPressure) {
564 if (IsHeader) {
565 // Compute registers which are liveout of preheader.
566 RegSeen.clear();
567 BackTrace.clear();
568 InitRegPressure(Preheader);
569 }
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000570
Daniel Dunbar98694132010-10-19 17:14:24 +0000571 // Remember livein register pressure.
572 BackTrace.push_back(RegPressure);
573 }
Evan Cheng11e8b742010-10-19 00:55:07 +0000574
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000575 for (MachineBasicBlock::iterator
576 MII = BB->begin(), E = BB->end(); MII != E; ) {
577 MachineBasicBlock::iterator NextMII = MII; ++NextMII;
578 MachineInstr *MI = &*MII;
579
Daniel Dunbar98694132010-10-19 17:14:24 +0000580 if (TrackRegPressure)
581 UpdateRegPressureBefore(MI);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000582 Hoist(MI, Preheader);
Daniel Dunbar98694132010-10-19 17:14:24 +0000583 if (TrackRegPressure)
584 UpdateRegPressureAfter(MI);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000585
586 MII = NextMII;
Dan Gohmanc475c362009-01-15 22:01:38 +0000587 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000588
Dale Johannesenbf1ae5e2010-07-20 00:50:13 +0000589 // Don't hoist things out of a large switch statement. This often causes
590 // code to be hoisted that wasn't going to be executed, and increases
591 // register pressure in a situation where it's likely to matter.
Dale Johannesen21d35c12010-07-20 21:29:12 +0000592 if (BB->succ_size() < 25) {
593 const std::vector<MachineDomTreeNode*> &Children = N->getChildren();
Dale Johannesenbf1ae5e2010-07-20 00:50:13 +0000594 for (unsigned I = 0, E = Children.size(); I != E; ++I)
595 HoistRegion(Children[I]);
Dale Johannesen21d35c12010-07-20 21:29:12 +0000596 }
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000597
Daniel Dunbar98694132010-10-19 17:14:24 +0000598 if (TrackRegPressure)
599 BackTrace.pop_back();
Bill Wendling0f940c92007-12-07 21:42:31 +0000600}
601
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000602/// InitRegPressure - Find all virtual register references that are liveout of
603/// the preheader to initialize the starting "register pressure". Note this
604/// does not count live through (livein but not used) registers.
Evan Cheng0e673912010-10-14 01:16:09 +0000605void MachineLICM::InitRegPressure(MachineBasicBlock *BB) {
Evan Cheng0e673912010-10-14 01:16:09 +0000606 std::fill(RegPressure.begin(), RegPressure.end(), 0);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000607
Evan Cheng0e673912010-10-14 01:16:09 +0000608 for (MachineBasicBlock::iterator MII = BB->begin(), E = BB->end();
609 MII != E; ++MII) {
610 MachineInstr *MI = &*MII;
611 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
612 const MachineOperand &MO = MI->getOperand(i);
613 if (!MO.isReg() || MO.isImplicit())
614 continue;
615 unsigned Reg = MO.getReg();
616 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
617 continue;
Evan Cheng0e673912010-10-14 01:16:09 +0000618
Andrew Trickdc986d22010-10-19 02:50:50 +0000619 bool isNew = RegSeen.insert(Reg);
Evan Cheng0e673912010-10-14 01:16:09 +0000620 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
621 EVT VT = *RC->vt_begin();
622 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000623 if (MO.isDef())
624 RegPressure[RCId] += TLI->getRepRegClassCostFor(VT);
625 else {
626 if (isNew && !MO.isKill())
627 // Haven't seen this, it must be a livein.
628 RegPressure[RCId] += TLI->getRepRegClassCostFor(VT);
629 else if (!isNew && MO.isKill())
630 RegPressure[RCId] -= TLI->getRepRegClassCostFor(VT);
631 }
Evan Cheng0e673912010-10-14 01:16:09 +0000632 }
633 }
634}
635
636/// UpdateRegPressureBefore / UpdateRegPressureAfter - Update estimate of
637/// register pressure before and after executing a specifi instruction.
638void MachineLICM::UpdateRegPressureBefore(const MachineInstr *MI) {
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000639 bool NoImpact = MI->isImplicitDef() || MI->isPHI();
Evan Cheng0e673912010-10-14 01:16:09 +0000640
641 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
642 const MachineOperand &MO = MI->getOperand(i);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000643 if (!MO.isReg() || MO.isImplicit() || !MO.isUse())
Evan Cheng0e673912010-10-14 01:16:09 +0000644 continue;
645 unsigned Reg = MO.getReg();
646 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
647 continue;
648
Andrew Trickdc986d22010-10-19 02:50:50 +0000649 bool isNew = RegSeen.insert(Reg);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000650 if (NoImpact)
651 continue;
Evan Cheng0e673912010-10-14 01:16:09 +0000652
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000653 if (!isNew && MO.isKill()) {
654 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
655 EVT VT = *RC->vt_begin();
656 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
657 unsigned RCCost = TLI->getRepRegClassCostFor(VT);
658
659 assert(RCCost <= RegPressure[RCId]);
660 RegPressure[RCId] -= RCCost;
661 }
Evan Cheng0e673912010-10-14 01:16:09 +0000662 }
663}
664
665void MachineLICM::UpdateRegPressureAfter(const MachineInstr *MI) {
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000666 bool NoImpact = MI->isImplicitDef() || MI->isPHI();
Evan Cheng0e673912010-10-14 01:16:09 +0000667
668 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
669 const MachineOperand &MO = MI->getOperand(i);
670 if (!MO.isReg() || MO.isImplicit() || !MO.isDef())
671 continue;
672 unsigned Reg = MO.getReg();
673 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
674 continue;
675
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000676 RegSeen.insert(Reg);
677 if (NoImpact)
678 continue;
679
Evan Cheng0e673912010-10-14 01:16:09 +0000680 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
681 EVT VT = *RC->vt_begin();
682 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
683 unsigned RCCost = TLI->getRepRegClassCostFor(VT);
684 RegPressure[RCId] += RCCost;
685 }
686}
687
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000688/// IsLICMCandidate - Returns true if the instruction may be a suitable
689/// candidate for LICM. e.g. If the instruction is a call, then it's obviously
690/// not safe to hoist it.
691bool MachineLICM::IsLICMCandidate(MachineInstr &I) {
Chris Lattner77910802010-07-12 00:00:35 +0000692 // Check if it's safe to move the instruction.
693 bool DontMoveAcrossStore = true;
694 if (!I.isSafeToMove(TII, AA, DontMoveAcrossStore))
Chris Lattnera22edc82008-01-10 23:08:24 +0000695 return false;
Chris Lattner77910802010-07-12 00:00:35 +0000696
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000697 return true;
698}
699
700/// IsLoopInvariantInst - Returns true if the instruction is loop
701/// invariant. I.e., all virtual register operands are defined outside of the
702/// loop, physical registers aren't accessed explicitly, and there are no side
703/// effects that aren't captured by the operands or other flags.
704///
705bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) {
706 if (!IsLICMCandidate(I))
707 return false;
Bill Wendling074223a2008-03-10 08:13:01 +0000708
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000709 // The instruction is loop invariant if all of its operands are.
Bill Wendling0f940c92007-12-07 21:42:31 +0000710 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
711 const MachineOperand &MO = I.getOperand(i);
712
Dan Gohmand735b802008-10-03 15:45:36 +0000713 if (!MO.isReg())
Bill Wendlingfb018d02008-08-20 20:32:05 +0000714 continue;
715
Dan Gohmanc475c362009-01-15 22:01:38 +0000716 unsigned Reg = MO.getReg();
717 if (Reg == 0) continue;
718
719 // Don't hoist an instruction that uses or defines a physical register.
Dan Gohmana8fb3362009-09-25 23:58:45 +0000720 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Dan Gohmana8fb3362009-09-25 23:58:45 +0000721 if (MO.isUse()) {
722 // If the physreg has no defs anywhere, it's just an ambient register
Dan Gohman45094e32009-09-26 02:34:00 +0000723 // and we can freely move its uses. Alternatively, if it's allocatable,
724 // it could get allocated to something with a def during allocation.
Evan Cheng0e673912010-10-14 01:16:09 +0000725 if (!MRI->def_empty(Reg))
Dan Gohmana8fb3362009-09-25 23:58:45 +0000726 return false;
Dan Gohman45094e32009-09-26 02:34:00 +0000727 if (AllocatableSet.test(Reg))
728 return false;
Dan Gohmana8fb3362009-09-25 23:58:45 +0000729 // Check for a def among the register's aliases too.
Dan Gohman45094e32009-09-26 02:34:00 +0000730 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
731 unsigned AliasReg = *Alias;
Evan Cheng0e673912010-10-14 01:16:09 +0000732 if (!MRI->def_empty(AliasReg))
Dan Gohmana8fb3362009-09-25 23:58:45 +0000733 return false;
Dan Gohman45094e32009-09-26 02:34:00 +0000734 if (AllocatableSet.test(AliasReg))
735 return false;
736 }
Dan Gohmana8fb3362009-09-25 23:58:45 +0000737 // Otherwise it's safe to move.
738 continue;
739 } else if (!MO.isDead()) {
740 // A def that isn't dead. We can't move it.
741 return false;
Dan Gohmana363a9b2010-02-28 00:08:44 +0000742 } else if (CurLoop->getHeader()->isLiveIn(Reg)) {
743 // If the reg is live into the loop, we can't hoist an instruction
744 // which would clobber it.
745 return false;
Dan Gohmana8fb3362009-09-25 23:58:45 +0000746 }
747 }
Bill Wendlingfb018d02008-08-20 20:32:05 +0000748
749 if (!MO.isUse())
Bill Wendling0f940c92007-12-07 21:42:31 +0000750 continue;
751
Evan Cheng0e673912010-10-14 01:16:09 +0000752 assert(MRI->getVRegDef(Reg) &&
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000753 "Machine instr not mapped for this vreg?!");
Bill Wendling0f940c92007-12-07 21:42:31 +0000754
755 // If the loop contains the definition of an operand, then the instruction
756 // isn't loop invariant.
Evan Cheng0e673912010-10-14 01:16:09 +0000757 if (CurLoop->contains(MRI->getVRegDef(Reg)))
Bill Wendling0f940c92007-12-07 21:42:31 +0000758 return false;
759 }
760
761 // If we got this far, the instruction is loop invariant!
762 return true;
763}
764
Evan Chengaf6949d2009-02-05 08:45:46 +0000765
766/// HasPHIUses - Return true if the specified register has any PHI use.
Evan Cheng0e673912010-10-14 01:16:09 +0000767static bool HasPHIUses(unsigned Reg, MachineRegisterInfo *MRI) {
768 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
769 UE = MRI->use_end(); UI != UE; ++UI) {
Evan Cheng45e94d62009-02-04 09:19:56 +0000770 MachineInstr *UseMI = &*UI;
Chris Lattner518bb532010-02-09 19:54:29 +0000771 if (UseMI->isPHI())
Evan Chengaf6949d2009-02-05 08:45:46 +0000772 return true;
Evan Cheng45e94d62009-02-04 09:19:56 +0000773 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000774 return false;
Evan Cheng45e94d62009-02-04 09:19:56 +0000775}
776
Evan Cheng87b75ba2009-11-20 19:55:37 +0000777/// isLoadFromConstantMemory - Return true if the given instruction is a
778/// load from constant memory. Machine LICM will hoist these even if they are
779/// not re-materializable.
780bool MachineLICM::isLoadFromConstantMemory(MachineInstr *MI) {
781 if (!MI->getDesc().mayLoad()) return false;
782 if (!MI->hasOneMemOperand()) return false;
783 MachineMemOperand *MMO = *MI->memoperands_begin();
784 if (MMO->isVolatile()) return false;
785 if (!MMO->getValue()) return false;
786 const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(MMO->getValue());
787 if (PSV) {
788 MachineFunction &MF = *MI->getParent()->getParent();
789 return PSV->isConstant(MF.getFrameInfo());
790 } else {
791 return AA->pointsToConstantMemory(MMO->getValue());
792 }
793}
794
Daniel Dunbar98694132010-10-19 17:14:24 +0000795/// ComputeOperandLatency - Compute operand latency between a def of 'Reg'
796/// and an use in the current loop.
797int MachineLICM::ComputeOperandLatency(MachineInstr &MI,
798 unsigned DefIdx, unsigned Reg) {
Evan Cheng0e673912010-10-14 01:16:09 +0000799 if (MRI->use_nodbg_empty(Reg))
Daniel Dunbar98694132010-10-19 17:14:24 +0000800 // No use? Return arbitrary large number!
801 return 300;
Evan Cheng0e673912010-10-14 01:16:09 +0000802
Daniel Dunbar98694132010-10-19 17:14:24 +0000803 int Latency = -1;
Evan Cheng0e673912010-10-14 01:16:09 +0000804 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg),
805 E = MRI->use_nodbg_end(); I != E; ++I) {
806 MachineInstr *UseMI = &*I;
807 if (!CurLoop->contains(UseMI->getParent()))
808 continue;
809 for (unsigned i = 0, e = UseMI->getNumOperands(); i != e; ++i) {
810 const MachineOperand &MO = UseMI->getOperand(i);
811 if (!MO.isReg() || !MO.isUse())
812 continue;
813 unsigned MOReg = MO.getReg();
814 if (MOReg != Reg)
815 continue;
816
Daniel Dunbar98694132010-10-19 17:14:24 +0000817 int UseCycle = TII->getOperandLatency(InstrItins, &MI, DefIdx, UseMI, i);
818 Latency = std::max(Latency, UseCycle);
Evan Cheng0e673912010-10-14 01:16:09 +0000819 }
820
Daniel Dunbar98694132010-10-19 17:14:24 +0000821 if (Latency != -1)
822 break;
Evan Cheng0e673912010-10-14 01:16:09 +0000823 }
824
Daniel Dunbar98694132010-10-19 17:14:24 +0000825 if (Latency == -1)
826 Latency = InstrItins->getOperandCycle(MI.getDesc().getSchedClass(), DefIdx);
827
828 return Latency;
Evan Cheng0e673912010-10-14 01:16:09 +0000829}
830
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000831/// IncreaseHighRegPressure - Visit BBs from preheader to current BB, check
832/// if hoisting an instruction of the given cost matrix can cause high
833/// register pressure.
834bool MachineLICM::IncreaseHighRegPressure(DenseMap<unsigned, int> &Cost) {
835 for (unsigned i = BackTrace.size(); i != 0; --i) {
836 bool AnyIncrease = false;
837 SmallVector<unsigned, 8> &RP = BackTrace[i-1];
838 for (DenseMap<unsigned, int>::iterator CI = Cost.begin(), CE = Cost.end();
839 CI != CE; ++CI) {
840 if (CI->second <= 0)
841 continue;
842 AnyIncrease = true;
843 unsigned RCId = CI->first;
844 if (RP[RCId] + CI->second >= RegLimit[RCId])
845 return true;
846 }
847
848 if (!AnyIncrease)
849 // Hoisting the instruction doesn't increase register pressure.
850 return false;
851 }
852
853 return false;
854}
855
Evan Cheng45e94d62009-02-04 09:19:56 +0000856/// IsProfitableToHoist - Return true if it is potentially profitable to hoist
857/// the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000858bool MachineLICM::IsProfitableToHoist(MachineInstr &MI) {
Evan Cheng0e673912010-10-14 01:16:09 +0000859 if (MI.isImplicitDef())
860 return true;
861
Daniel Dunbar98694132010-10-19 17:14:24 +0000862 // FIXME: For now, only hoist re-materilizable instructions. LICM will
863 // increase register pressure. We want to make sure it doesn't increase
864 // spilling.
Evan Cheng87b75ba2009-11-20 19:55:37 +0000865 // Also hoist loads from constant memory, e.g. load from stubs, GOT. Hoisting
866 // these tend to help performance in low register pressure situation. The
867 // trade off is it may cause spill in high pressure situation. It will end up
868 // adding a store in the loop preheader. But the reload is no more expensive.
869 // The side benefit is these loads are frequently CSE'ed.
Daniel Dunbar98694132010-10-19 17:14:24 +0000870 if (!TrackRegPressure || MI.getDesc().isAsCheapAsAMove()) {
871 if (!TII->isTriviallyReMaterializable(&MI, AA) &&
872 !isLoadFromConstantMemory(&MI))
Evan Cheng0e673912010-10-14 01:16:09 +0000873 return false;
874 } else {
875 // In low register pressure situation, we can be more aggressive about
876 // hoisting. Also, favors hoisting long latency instructions even in
877 // moderately high pressure situation.
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000878 DenseMap<unsigned, int> Cost;
Evan Cheng0e673912010-10-14 01:16:09 +0000879 for (unsigned i = 0, e = MI.getDesc().getNumOperands(); i != e; ++i) {
880 const MachineOperand &MO = MI.getOperand(i);
881 if (!MO.isReg() || MO.isImplicit())
882 continue;
883 unsigned Reg = MO.getReg();
884 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
885 continue;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000886 if (MO.isDef()) {
Daniel Dunbar98694132010-10-19 17:14:24 +0000887 if (InstrItins && !InstrItins->isEmpty()) {
888 int Cycle = ComputeOperandLatency(MI, i, Reg);
889 if (Cycle > 3) {
890 // FIXME: Target specific high latency limit?
891 ++NumHighLatency;
892 return true;
893 }
Evan Cheng0e673912010-10-14 01:16:09 +0000894 }
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000895
896 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
897 EVT VT = *RC->vt_begin();
898 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
899 unsigned RCCost = TLI->getRepRegClassCostFor(VT);
900 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
901 // If the instruction is not register pressure neutrail (or better),
902 // check if hoisting it will cause high register pressure in BB's
903 // leading up to this point.
904 if (CI != Cost.end())
905 CI->second += RCCost;
906 else
907 Cost.insert(std::make_pair(RCId, RCCost));
908 } else if (MO.isKill()) {
909 // Is a virtual register use is a kill, hoisting it out of the loop
910 // may actually reduce register pressure or be register pressure
911 // neutral
912 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
913 EVT VT = *RC->vt_begin();
914 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
915 unsigned RCCost = TLI->getRepRegClassCostFor(VT);
916 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
917 if (CI != Cost.end())
918 CI->second -= RCCost;
919 else
920 Cost.insert(std::make_pair(RCId, -RCCost));
Evan Cheng0e673912010-10-14 01:16:09 +0000921 }
922 }
923
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000924 // Visit BBs from preheader to current BB, if hoisting this doesn't cause
925 // high register pressure, then it's safe to proceed.
926 if (!IncreaseHighRegPressure(Cost)) {
927 ++NumLowRP;
Evan Cheng0e673912010-10-14 01:16:09 +0000928 return true;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000929 }
Evan Cheng0e673912010-10-14 01:16:09 +0000930
931 // High register pressure situation, only hoist if the instruction is going to
932 // be remat'ed.
933 if (!TII->isTriviallyReMaterializable(&MI, AA) &&
934 !isLoadFromConstantMemory(&MI))
Evan Cheng87b75ba2009-11-20 19:55:37 +0000935 return false;
Evan Cheng87b75ba2009-11-20 19:55:37 +0000936 }
Evan Cheng45e94d62009-02-04 09:19:56 +0000937
Evan Chengaf6949d2009-02-05 08:45:46 +0000938 // If result(s) of this instruction is used by PHIs, then don't hoist it.
939 // The presence of joins makes it difficult for current register allocator
940 // implementation to perform remat.
Evan Cheng45e94d62009-02-04 09:19:56 +0000941 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
942 const MachineOperand &MO = MI.getOperand(i);
943 if (!MO.isReg() || !MO.isDef())
944 continue;
Evan Cheng0e673912010-10-14 01:16:09 +0000945 if (HasPHIUses(MO.getReg(), MRI))
Evan Chengaf6949d2009-02-05 08:45:46 +0000946 return false;
Evan Cheng45e94d62009-02-04 09:19:56 +0000947 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000948
949 return true;
950}
951
Dan Gohman5c952302009-10-29 17:47:20 +0000952MachineInstr *MachineLICM::ExtractHoistableLoad(MachineInstr *MI) {
Evan Chenge95f3192010-10-08 18:59:19 +0000953 // Don't unfold simple loads.
954 if (MI->getDesc().canFoldAsLoad())
955 return 0;
956
Dan Gohman5c952302009-10-29 17:47:20 +0000957 // If not, we may be able to unfold a load and hoist that.
958 // First test whether the instruction is loading from an amenable
959 // memory location.
Evan Cheng87b75ba2009-11-20 19:55:37 +0000960 if (!isLoadFromConstantMemory(MI))
961 return 0;
962
Dan Gohman5c952302009-10-29 17:47:20 +0000963 // Next determine the register class for a temporary register.
Dan Gohman0115e162009-10-30 22:18:41 +0000964 unsigned LoadRegIndex;
Dan Gohman5c952302009-10-29 17:47:20 +0000965 unsigned NewOpc =
966 TII->getOpcodeAfterMemoryUnfold(MI->getOpcode(),
967 /*UnfoldLoad=*/true,
Dan Gohman0115e162009-10-30 22:18:41 +0000968 /*UnfoldStore=*/false,
969 &LoadRegIndex);
Dan Gohman5c952302009-10-29 17:47:20 +0000970 if (NewOpc == 0) return 0;
971 const TargetInstrDesc &TID = TII->get(NewOpc);
972 if (TID.getNumDefs() != 1) return 0;
Dan Gohman0115e162009-10-30 22:18:41 +0000973 const TargetRegisterClass *RC = TID.OpInfo[LoadRegIndex].getRegClass(TRI);
Dan Gohman5c952302009-10-29 17:47:20 +0000974 // Ok, we're unfolding. Create a temporary register and do the unfold.
Evan Cheng0e673912010-10-14 01:16:09 +0000975 unsigned Reg = MRI->createVirtualRegister(RC);
Evan Cheng87b75ba2009-11-20 19:55:37 +0000976
977 MachineFunction &MF = *MI->getParent()->getParent();
Dan Gohman5c952302009-10-29 17:47:20 +0000978 SmallVector<MachineInstr *, 2> NewMIs;
979 bool Success =
980 TII->unfoldMemoryOperand(MF, MI, Reg,
981 /*UnfoldLoad=*/true, /*UnfoldStore=*/false,
982 NewMIs);
983 (void)Success;
984 assert(Success &&
985 "unfoldMemoryOperand failed when getOpcodeAfterMemoryUnfold "
986 "succeeded!");
987 assert(NewMIs.size() == 2 &&
988 "Unfolded a load into multiple instructions!");
989 MachineBasicBlock *MBB = MI->getParent();
990 MBB->insert(MI, NewMIs[0]);
991 MBB->insert(MI, NewMIs[1]);
992 // If unfolding produced a load that wasn't loop-invariant or profitable to
993 // hoist, discard the new instructions and bail.
Evan Chengc26abd92009-11-20 23:31:34 +0000994 if (!IsLoopInvariantInst(*NewMIs[0]) || !IsProfitableToHoist(*NewMIs[0])) {
Dan Gohman5c952302009-10-29 17:47:20 +0000995 NewMIs[0]->eraseFromParent();
996 NewMIs[1]->eraseFromParent();
997 return 0;
998 }
999 // Otherwise we successfully unfolded a load that we can hoist.
1000 MI->eraseFromParent();
1001 return NewMIs[0];
1002}
1003
Evan Cheng777c6b72009-11-03 21:40:02 +00001004void MachineLICM::InitCSEMap(MachineBasicBlock *BB) {
1005 for (MachineBasicBlock::iterator I = BB->begin(),E = BB->end(); I != E; ++I) {
1006 const MachineInstr *MI = &*I;
1007 // FIXME: For now, only hoist re-materilizable instructions. LICM will
1008 // increase register pressure. We want to make sure it doesn't increase
1009 // spilling.
1010 if (TII->isTriviallyReMaterializable(MI, AA)) {
1011 unsigned Opcode = MI->getOpcode();
1012 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
1013 CI = CSEMap.find(Opcode);
1014 if (CI != CSEMap.end())
1015 CI->second.push_back(MI);
1016 else {
1017 std::vector<const MachineInstr*> CSEMIs;
1018 CSEMIs.push_back(MI);
1019 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
1020 }
1021 }
1022 }
1023}
1024
Evan Cheng78e5c112009-11-07 03:52:02 +00001025const MachineInstr*
1026MachineLICM::LookForDuplicate(const MachineInstr *MI,
1027 std::vector<const MachineInstr*> &PrevMIs) {
Evan Cheng9fb744e2009-11-05 00:51:13 +00001028 for (unsigned i = 0, e = PrevMIs.size(); i != e; ++i) {
1029 const MachineInstr *PrevMI = PrevMIs[i];
Evan Cheng506049f2010-03-03 01:44:33 +00001030 if (TII->produceSameValue(MI, PrevMI))
Evan Cheng9fb744e2009-11-05 00:51:13 +00001031 return PrevMI;
1032 }
1033 return 0;
1034}
1035
1036bool MachineLICM::EliminateCSE(MachineInstr *MI,
1037 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI) {
Evan Chengdb898092010-07-14 01:22:19 +00001038 // Do not CSE implicit_def so ProcessImplicitDefs can properly propagate
1039 // the undef property onto uses.
1040 if (CI == CSEMap.end() || MI->isImplicitDef())
Evan Cheng78e5c112009-11-07 03:52:02 +00001041 return false;
1042
1043 if (const MachineInstr *Dup = LookForDuplicate(MI, CI->second)) {
David Greene65a41eb2010-01-05 00:03:48 +00001044 DEBUG(dbgs() << "CSEing " << *MI << " with " << *Dup);
Dan Gohman6ac33b42010-02-28 01:33:43 +00001045
1046 // Replace virtual registers defined by MI by their counterparts defined
1047 // by Dup.
Evan Cheng78e5c112009-11-07 03:52:02 +00001048 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1049 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman6ac33b42010-02-28 01:33:43 +00001050
1051 // Physical registers may not differ here.
1052 assert((!MO.isReg() || MO.getReg() == 0 ||
1053 !TargetRegisterInfo::isPhysicalRegister(MO.getReg()) ||
1054 MO.getReg() == Dup->getOperand(i).getReg()) &&
1055 "Instructions with different phys regs are not identical!");
1056
1057 if (MO.isReg() && MO.isDef() &&
Dan Gohmane6cd7572010-05-13 20:34:42 +00001058 !TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Evan Cheng0e673912010-10-14 01:16:09 +00001059 MRI->replaceRegWith(MO.getReg(), Dup->getOperand(i).getReg());
1060 MRI->clearKillFlags(Dup->getOperand(i).getReg());
Dan Gohmane6cd7572010-05-13 20:34:42 +00001061 }
Evan Cheng9fb744e2009-11-05 00:51:13 +00001062 }
Evan Cheng78e5c112009-11-07 03:52:02 +00001063 MI->eraseFromParent();
1064 ++NumCSEed;
1065 return true;
Evan Cheng9fb744e2009-11-05 00:51:13 +00001066 }
1067 return false;
1068}
1069
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +00001070/// Hoist - When an instruction is found to use only loop invariant operands
1071/// that are safe to hoist, this instruction is called to do the dirty work.
Bill Wendling0f940c92007-12-07 21:42:31 +00001072///
Evan Cheng0e673912010-10-14 01:16:09 +00001073void MachineLICM::Hoist(MachineInstr *MI, MachineBasicBlock *Preheader) {
Dan Gohman589f1f52009-10-28 03:21:57 +00001074 // First check whether we should hoist this instruction.
Evan Chengc26abd92009-11-20 23:31:34 +00001075 if (!IsLoopInvariantInst(*MI) || !IsProfitableToHoist(*MI)) {
Dan Gohman5c952302009-10-29 17:47:20 +00001076 // If not, try unfolding a hoistable load.
1077 MI = ExtractHoistableLoad(MI);
1078 if (!MI) return;
Dan Gohman589f1f52009-10-28 03:21:57 +00001079 }
Bill Wendling0f940c92007-12-07 21:42:31 +00001080
Dan Gohmanc475c362009-01-15 22:01:38 +00001081 // Now move the instructions to the predecessor, inserting it before any
1082 // terminator instructions.
1083 DEBUG({
David Greene65a41eb2010-01-05 00:03:48 +00001084 dbgs() << "Hoisting " << *MI;
Dan Gohman853d3fb2010-06-22 17:25:57 +00001085 if (Preheader->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +00001086 dbgs() << " to MachineBasicBlock "
Dan Gohman853d3fb2010-06-22 17:25:57 +00001087 << Preheader->getName();
Dan Gohman589f1f52009-10-28 03:21:57 +00001088 if (MI->getParent()->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +00001089 dbgs() << " from MachineBasicBlock "
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +00001090 << MI->getParent()->getName();
David Greene65a41eb2010-01-05 00:03:48 +00001091 dbgs() << "\n";
Dan Gohmanc475c362009-01-15 22:01:38 +00001092 });
Bill Wendling0f940c92007-12-07 21:42:31 +00001093
Evan Cheng777c6b72009-11-03 21:40:02 +00001094 // If this is the first instruction being hoisted to the preheader,
1095 // initialize the CSE map with potential common expressions.
Evan Cheng82e0a1a2010-05-29 00:06:36 +00001096 if (FirstInLoop) {
Dan Gohman853d3fb2010-06-22 17:25:57 +00001097 InitCSEMap(Preheader);
Evan Cheng82e0a1a2010-05-29 00:06:36 +00001098 FirstInLoop = false;
1099 }
Evan Cheng777c6b72009-11-03 21:40:02 +00001100
Evan Chengaf6949d2009-02-05 08:45:46 +00001101 // Look for opportunity to CSE the hoisted instruction.
Evan Cheng777c6b72009-11-03 21:40:02 +00001102 unsigned Opcode = MI->getOpcode();
1103 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
1104 CI = CSEMap.find(Opcode);
Evan Cheng9fb744e2009-11-05 00:51:13 +00001105 if (!EliminateCSE(MI, CI)) {
1106 // Otherwise, splice the instruction to the preheader.
Dan Gohman853d3fb2010-06-22 17:25:57 +00001107 Preheader->splice(Preheader->getFirstTerminator(),MI->getParent(),MI);
Evan Cheng777c6b72009-11-03 21:40:02 +00001108
Dan Gohmane6cd7572010-05-13 20:34:42 +00001109 // Clear the kill flags of any register this instruction defines,
1110 // since they may need to be live throughout the entire loop
1111 // rather than just live for part of it.
1112 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1113 MachineOperand &MO = MI->getOperand(i);
1114 if (MO.isReg() && MO.isDef() && !MO.isDead())
Evan Cheng0e673912010-10-14 01:16:09 +00001115 MRI->clearKillFlags(MO.getReg());
Dan Gohmane6cd7572010-05-13 20:34:42 +00001116 }
1117
Evan Chengaf6949d2009-02-05 08:45:46 +00001118 // Add to the CSE map.
1119 if (CI != CSEMap.end())
Dan Gohman589f1f52009-10-28 03:21:57 +00001120 CI->second.push_back(MI);
Evan Chengaf6949d2009-02-05 08:45:46 +00001121 else {
1122 std::vector<const MachineInstr*> CSEMIs;
Dan Gohman589f1f52009-10-28 03:21:57 +00001123 CSEMIs.push_back(MI);
Evan Cheng777c6b72009-11-03 21:40:02 +00001124 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
Evan Chengaf6949d2009-02-05 08:45:46 +00001125 }
1126 }
Bill Wendling0f940c92007-12-07 21:42:31 +00001127
Dan Gohmanc475c362009-01-15 22:01:38 +00001128 ++NumHoisted;
Bill Wendling0f940c92007-12-07 21:42:31 +00001129 Changed = true;
Bill Wendling0f940c92007-12-07 21:42:31 +00001130}
Dan Gohman853d3fb2010-06-22 17:25:57 +00001131
1132MachineBasicBlock *MachineLICM::getCurPreheader() {
1133 // Determine the block to which to hoist instructions. If we can't find a
1134 // suitable loop predecessor, we can't do any hoisting.
1135
1136 // If we've tried to get a preheader and failed, don't try again.
1137 if (CurPreheader == reinterpret_cast<MachineBasicBlock *>(-1))
1138 return 0;
1139
1140 if (!CurPreheader) {
1141 CurPreheader = CurLoop->getLoopPreheader();
1142 if (!CurPreheader) {
1143 MachineBasicBlock *Pred = CurLoop->getLoopPredecessor();
1144 if (!Pred) {
1145 CurPreheader = reinterpret_cast<MachineBasicBlock *>(-1);
1146 return 0;
1147 }
1148
1149 CurPreheader = Pred->SplitCriticalEdge(CurLoop->getHeader(), this);
1150 if (!CurPreheader) {
1151 CurPreheader = reinterpret_cast<MachineBasicBlock *>(-1);
1152 return 0;
1153 }
1154 }
1155 }
1156 return CurPreheader;
1157}