blob: 2308ee6010f2279607feb0c8ffc9b0984af3daa0 [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"
Chris Lattnerac695822008-01-04 06:41:45 +000040#include "llvm/Support/Debug.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000041#include "llvm/Support/raw_ostream.h"
Bill Wendling0f940c92007-12-07 21:42:31 +000042
43using namespace llvm;
44
Evan Cheng03a9fdf2010-10-16 02:20:26 +000045STATISTIC(NumHoisted,
46 "Number of machine instructions hoisted out of loops");
47STATISTIC(NumLowRP,
48 "Number of instructions hoisted in low reg pressure situation");
49STATISTIC(NumHighLatency,
50 "Number of high latency instructions hoisted");
51STATISTIC(NumCSEed,
52 "Number of hoisted machine instructions CSEed");
Evan Chengd94671a2010-04-07 00:41:17 +000053STATISTIC(NumPostRAHoisted,
54 "Number of machine instructions hoisted out of loops post regalloc");
Bill Wendlingb48519c2007-12-08 01:47:01 +000055
Bill Wendling0f940c92007-12-07 21:42:31 +000056namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000057 class MachineLICM : public MachineFunctionPass {
Evan Chengd94671a2010-04-07 00:41:17 +000058 bool PreRegAlloc;
59
Bill Wendling9258cd32008-01-02 19:32:43 +000060 const TargetMachine *TM;
Bill Wendlingefe2be72007-12-11 23:27:51 +000061 const TargetInstrInfo *TII;
Evan Cheng0e673912010-10-14 01:16:09 +000062 const TargetLowering *TLI;
Dan Gohmana8fb3362009-09-25 23:58:45 +000063 const TargetRegisterInfo *TRI;
Evan Chengd94671a2010-04-07 00:41:17 +000064 const MachineFrameInfo *MFI;
Evan Cheng0e673912010-10-14 01:16:09 +000065 MachineRegisterInfo *MRI;
66 const InstrItineraryData *InstrItins;
Bill Wendling12ebf142007-12-11 19:40:06 +000067
Bill Wendling0f940c92007-12-07 21:42:31 +000068 // Various analyses that we use...
Dan Gohmane33f44c2009-10-07 17:38:06 +000069 AliasAnalysis *AA; // Alias analysis info.
Evan Cheng4038f9c2010-04-08 01:03:47 +000070 MachineLoopInfo *MLI; // Current MachineLoopInfo
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000071 MachineDominatorTree *DT; // Machine dominator tree for the cur loop
Bill Wendling0f940c92007-12-07 21:42:31 +000072
Bill Wendling0f940c92007-12-07 21:42:31 +000073 // State that is updated as we process loops
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000074 bool Changed; // True if a loop is changed.
Evan Cheng82e0a1a2010-05-29 00:06:36 +000075 bool FirstInLoop; // True if it's the first LICM in the loop.
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000076 MachineLoop *CurLoop; // The current loop we are working on.
Dan Gohmanc475c362009-01-15 22:01:38 +000077 MachineBasicBlock *CurPreheader; // The preheader for CurLoop.
Evan Chengaf6949d2009-02-05 08:45:46 +000078
Evan Chengd94671a2010-04-07 00:41:17 +000079 BitVector AllocatableSet;
80
Evan Cheng0e673912010-10-14 01:16:09 +000081 // Track 'estimated' register pressure.
Evan Cheng03a9fdf2010-10-16 02:20:26 +000082 SmallSet<unsigned, 32> RegSeen;
Evan Cheng0e673912010-10-14 01:16:09 +000083 SmallVector<unsigned, 8> RegPressure;
Evan Cheng03a9fdf2010-10-16 02:20:26 +000084
85 // Register pressure "limit" per register class. If the pressure
86 // is higher than the limit, then it's considered high.
Evan Cheng0e673912010-10-14 01:16:09 +000087 SmallVector<unsigned, 8> RegLimit;
88
Evan Cheng03a9fdf2010-10-16 02:20:26 +000089 // Register pressure on path leading from loop preheader to current BB.
90 SmallVector<SmallVector<unsigned, 8>, 16> BackTrace;
91
Dale Johannesenc46a5f22010-07-29 17:45:24 +000092 // For each opcode, keep a list of potential CSE instructions.
Evan Cheng777c6b72009-11-03 21:40:02 +000093 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap;
Evan Chengd94671a2010-04-07 00:41:17 +000094
Bill Wendling0f940c92007-12-07 21:42:31 +000095 public:
96 static char ID; // Pass identification, replacement for typeid
Evan Chengd94671a2010-04-07 00:41:17 +000097 MachineLICM() :
Owen Anderson081c34b2010-10-19 17:21:58 +000098 MachineFunctionPass(ID), PreRegAlloc(true) {
99 initializeMachineLICMPass(*PassRegistry::getPassRegistry());
100 }
Evan Chengd94671a2010-04-07 00:41:17 +0000101
102 explicit MachineLICM(bool PreRA) :
Owen Anderson081c34b2010-10-19 17:21:58 +0000103 MachineFunctionPass(ID), PreRegAlloc(PreRA) {
104 initializeMachineLICMPass(*PassRegistry::getPassRegistry());
105 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000106
107 virtual bool runOnMachineFunction(MachineFunction &MF);
108
Dan Gohman72241702008-12-18 01:37:56 +0000109 const char *getPassName() const { return "Machine Instruction LICM"; }
110
Bill Wendling0f940c92007-12-07 21:42:31 +0000111 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
112 AU.setPreservesCFG();
113 AU.addRequired<MachineLoopInfo>();
114 AU.addRequired<MachineDominatorTree>();
Dan Gohmane33f44c2009-10-07 17:38:06 +0000115 AU.addRequired<AliasAnalysis>();
Bill Wendlingd5da7042008-01-04 08:48:49 +0000116 AU.addPreserved<MachineLoopInfo>();
117 AU.addPreserved<MachineDominatorTree>();
118 MachineFunctionPass::getAnalysisUsage(AU);
Bill Wendling0f940c92007-12-07 21:42:31 +0000119 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000120
121 virtual void releaseMemory() {
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000122 RegSeen.clear();
Evan Cheng0e673912010-10-14 01:16:09 +0000123 RegPressure.clear();
124 RegLimit.clear();
Evan Cheng23128422010-10-19 18:58:51 +0000125 BackTrace.clear();
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000126 for (DenseMap<unsigned,std::vector<const MachineInstr*> >::iterator
127 CI = CSEMap.begin(), CE = CSEMap.end(); CI != CE; ++CI)
128 CI->second.clear();
Evan Chengaf6949d2009-02-05 08:45:46 +0000129 CSEMap.clear();
130 }
131
Bill Wendling0f940c92007-12-07 21:42:31 +0000132 private:
Evan Cheng4038f9c2010-04-08 01:03:47 +0000133 /// CandidateInfo - Keep track of information about hoisting candidates.
134 struct CandidateInfo {
135 MachineInstr *MI;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000136 unsigned Def;
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000137 int FI;
138 CandidateInfo(MachineInstr *mi, unsigned def, int fi)
139 : MI(mi), Def(def), FI(fi) {}
Evan Cheng4038f9c2010-04-08 01:03:47 +0000140 };
141
142 /// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop
143 /// invariants out to the preheader.
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000144 void HoistRegionPostRA();
Evan Cheng4038f9c2010-04-08 01:03:47 +0000145
146 /// HoistPostRA - When an instruction is found to only use loop invariant
147 /// operands that is safe to hoist, this instruction is called to do the
148 /// dirty work.
149 void HoistPostRA(MachineInstr *MI, unsigned Def);
150
151 /// ProcessMI - Examine the instruction for potentai LICM candidate. Also
152 /// gather register def and frame object update information.
153 void ProcessMI(MachineInstr *MI, unsigned *PhysRegDefs,
154 SmallSet<int, 32> &StoredFIs,
155 SmallVector<CandidateInfo, 32> &Candidates);
156
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000157 /// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the
158 /// current loop.
159 void AddToLiveIns(unsigned Reg);
Evan Cheng4038f9c2010-04-08 01:03:47 +0000160
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000161 /// IsLICMCandidate - Returns true if the instruction may be a suitable
Chris Lattner77910802010-07-12 00:00:35 +0000162 /// candidate for LICM. e.g. If the instruction is a call, then it's
163 /// obviously not safe to hoist it.
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000164 bool IsLICMCandidate(MachineInstr &I);
165
Bill Wendling041b3f82007-12-08 23:58:46 +0000166 /// IsLoopInvariantInst - Returns true if the instruction is loop
Bill Wendling0f940c92007-12-07 21:42:31 +0000167 /// invariant. I.e., all virtual register operands are defined outside of
168 /// the loop, physical registers aren't accessed (explicitly or implicitly),
169 /// and the instruction is hoistable.
170 ///
Bill Wendling041b3f82007-12-08 23:58:46 +0000171 bool IsLoopInvariantInst(MachineInstr &I);
Bill Wendling0f940c92007-12-07 21:42:31 +0000172
Evan Cheng23128422010-10-19 18:58:51 +0000173 /// HasHighOperandLatency - Compute operand latency between a def of 'Reg'
174 /// and an use in the current loop, return true if the target considered
175 /// it 'high'.
Evan Chengc8141df2010-10-26 02:08:50 +0000176 bool HasHighOperandLatency(MachineInstr &MI, unsigned DefIdx,
177 unsigned Reg) const;
178
179 bool IsCheapInstruction(MachineInstr &MI) const;
Evan Cheng0e673912010-10-14 01:16:09 +0000180
Evan Cheng134982d2010-10-20 22:03:58 +0000181 /// CanCauseHighRegPressure - Visit BBs from header to current BB,
182 /// check if hoisting an instruction of the given cost matrix can cause high
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000183 /// register pressure.
Evan Cheng134982d2010-10-20 22:03:58 +0000184 bool CanCauseHighRegPressure(DenseMap<unsigned, int> &Cost);
185
186 /// UpdateBackTraceRegPressure - Traverse the back trace from header to
187 /// the current block and update their register pressures to reflect the
188 /// effect of hoisting MI from the current block to the preheader.
189 void UpdateBackTraceRegPressure(const MachineInstr *MI);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000190
Evan Cheng45e94d62009-02-04 09:19:56 +0000191 /// IsProfitableToHoist - Return true if it is potentially profitable to
192 /// hoist the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000193 bool IsProfitableToHoist(MachineInstr &MI);
Evan Cheng45e94d62009-02-04 09:19:56 +0000194
Bill Wendling0f940c92007-12-07 21:42:31 +0000195 /// HoistRegion - Walk the specified region of the CFG (defined by all
196 /// blocks dominated by the specified block, and that are in the current
197 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
198 /// visit definitions before uses, allowing us to hoist a loop body in one
199 /// pass without iteration.
200 ///
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000201 void HoistRegion(MachineDomTreeNode *N, bool IsHeader = false);
Bill Wendling0f940c92007-12-07 21:42:31 +0000202
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000203 /// InitRegPressure - Find all virtual register references that are liveout
204 /// of the preheader to initialize the starting "register pressure". Note
205 /// this does not count live through (livein but not used) registers.
Evan Cheng0e673912010-10-14 01:16:09 +0000206 void InitRegPressure(MachineBasicBlock *BB);
207
Evan Cheng134982d2010-10-20 22:03:58 +0000208 /// UpdateRegPressure - Update estimate of register pressure after the
209 /// specified instruction.
210 void UpdateRegPressure(const MachineInstr *MI);
Evan Cheng0e673912010-10-14 01:16:09 +0000211
Evan Cheng87b75ba2009-11-20 19:55:37 +0000212 /// isLoadFromConstantMemory - Return true if the given instruction is a
213 /// load from constant memory.
214 bool isLoadFromConstantMemory(MachineInstr *MI);
215
Dan Gohman5c952302009-10-29 17:47:20 +0000216 /// ExtractHoistableLoad - Unfold a load from the given machineinstr if
217 /// the load itself could be hoisted. Return the unfolded and hoistable
218 /// load, or null if the load couldn't be unfolded or if it wouldn't
219 /// be hoistable.
220 MachineInstr *ExtractHoistableLoad(MachineInstr *MI);
221
Evan Cheng78e5c112009-11-07 03:52:02 +0000222 /// LookForDuplicate - Find an instruction amount PrevMIs that is a
223 /// duplicate of MI. Return this instruction if it's found.
224 const MachineInstr *LookForDuplicate(const MachineInstr *MI,
225 std::vector<const MachineInstr*> &PrevMIs);
226
Evan Cheng9fb744e2009-11-05 00:51:13 +0000227 /// EliminateCSE - Given a LICM'ed instruction, look for an instruction on
228 /// the preheader that compute the same value. If it's found, do a RAU on
229 /// with the definition of the existing instruction rather than hoisting
230 /// the instruction to the preheader.
231 bool EliminateCSE(MachineInstr *MI,
232 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI);
233
Bill Wendling0f940c92007-12-07 21:42:31 +0000234 /// Hoist - When an instruction is found to only use loop invariant operands
235 /// that is safe to hoist, this instruction is called to do the dirty work.
Evan Cheng134982d2010-10-20 22:03:58 +0000236 /// It returns true if the instruction is hoisted.
237 bool Hoist(MachineInstr *MI, MachineBasicBlock *Preheader);
Evan Cheng777c6b72009-11-03 21:40:02 +0000238
239 /// InitCSEMap - Initialize the CSE map with instructions that are in the
240 /// current loop preheader that may become duplicates of instructions that
241 /// are hoisted out of the loop.
242 void InitCSEMap(MachineBasicBlock *BB);
Dan Gohman853d3fb2010-06-22 17:25:57 +0000243
244 /// getCurPreheader - Get the preheader for the current loop, splitting
245 /// a critical edge if needed.
246 MachineBasicBlock *getCurPreheader();
Bill Wendling0f940c92007-12-07 21:42:31 +0000247 };
Bill Wendling0f940c92007-12-07 21:42:31 +0000248} // end anonymous namespace
249
Dan Gohman844731a2008-05-13 00:00:25 +0000250char MachineLICM::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000251INITIALIZE_PASS_BEGIN(MachineLICM, "machinelicm",
252 "Machine Loop Invariant Code Motion", false, false)
253INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
254INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
255INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
256INITIALIZE_PASS_END(MachineLICM, "machinelicm",
Owen Andersonce665bd2010-10-07 22:25:06 +0000257 "Machine Loop Invariant Code Motion", false, false)
Dan Gohman844731a2008-05-13 00:00:25 +0000258
Evan Chengd94671a2010-04-07 00:41:17 +0000259FunctionPass *llvm::createMachineLICMPass(bool PreRegAlloc) {
260 return new MachineLICM(PreRegAlloc);
261}
Bill Wendling0f940c92007-12-07 21:42:31 +0000262
Dan Gohman853d3fb2010-06-22 17:25:57 +0000263/// LoopIsOuterMostWithPredecessor - Test if the given loop is the outer-most
264/// loop that has a unique predecessor.
265static bool LoopIsOuterMostWithPredecessor(MachineLoop *CurLoop) {
Dan Gohmanaa742602010-07-09 18:49:45 +0000266 // Check whether this loop even has a unique predecessor.
267 if (!CurLoop->getLoopPredecessor())
268 return false;
269 // Ok, now check to see if any of its outer loops do.
Dan Gohmanc475c362009-01-15 22:01:38 +0000270 for (MachineLoop *L = CurLoop->getParentLoop(); L; L = L->getParentLoop())
Dan Gohman853d3fb2010-06-22 17:25:57 +0000271 if (L->getLoopPredecessor())
Dan Gohmanc475c362009-01-15 22:01:38 +0000272 return false;
Dan Gohmanaa742602010-07-09 18:49:45 +0000273 // None of them did, so this is the outermost with a unique predecessor.
Dan Gohmanc475c362009-01-15 22:01:38 +0000274 return true;
275}
276
Bill Wendling0f940c92007-12-07 21:42:31 +0000277bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd94671a2010-04-07 00:41:17 +0000278 if (PreRegAlloc)
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000279 DEBUG(dbgs() << "******** Pre-regalloc Machine LICM: ");
Evan Chengd94671a2010-04-07 00:41:17 +0000280 else
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000281 DEBUG(dbgs() << "******** Post-regalloc Machine LICM: ");
282 DEBUG(dbgs() << MF.getFunction()->getName() << " ********\n");
Bill Wendlinga17ad592007-12-11 22:22:22 +0000283
Evan Cheng82e0a1a2010-05-29 00:06:36 +0000284 Changed = FirstInLoop = false;
Bill Wendlingacb04ec2008-08-31 02:30:23 +0000285 TM = &MF.getTarget();
Bill Wendling9258cd32008-01-02 19:32:43 +0000286 TII = TM->getInstrInfo();
Evan Cheng0e673912010-10-14 01:16:09 +0000287 TLI = TM->getTargetLowering();
Dan Gohmana8fb3362009-09-25 23:58:45 +0000288 TRI = TM->getRegisterInfo();
Evan Chengd94671a2010-04-07 00:41:17 +0000289 MFI = MF.getFrameInfo();
Evan Cheng0e673912010-10-14 01:16:09 +0000290 MRI = &MF.getRegInfo();
291 InstrItins = TM->getInstrItineraryData();
Dan Gohman45094e32009-09-26 02:34:00 +0000292 AllocatableSet = TRI->getAllocatableSet(MF);
Bill Wendling0f940c92007-12-07 21:42:31 +0000293
Evan Cheng0e673912010-10-14 01:16:09 +0000294 if (PreRegAlloc) {
295 // Estimate register pressure during pre-regalloc pass.
296 unsigned NumRC = TRI->getNumRegClasses();
297 RegPressure.resize(NumRC);
Evan Cheng0e673912010-10-14 01:16:09 +0000298 std::fill(RegPressure.begin(), RegPressure.end(), 0);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000299 RegLimit.resize(NumRC);
Evan Cheng0e673912010-10-14 01:16:09 +0000300 for (TargetRegisterInfo::regclass_iterator I = TRI->regclass_begin(),
301 E = TRI->regclass_end(); I != E; ++I)
302 RegLimit[(*I)->getID()] = TLI->getRegPressureLimit(*I, MF);
303 }
304
Bill Wendling0f940c92007-12-07 21:42:31 +0000305 // Get our Loop information...
Evan Cheng4038f9c2010-04-08 01:03:47 +0000306 MLI = &getAnalysis<MachineLoopInfo>();
307 DT = &getAnalysis<MachineDominatorTree>();
308 AA = &getAnalysis<AliasAnalysis>();
Bill Wendling0f940c92007-12-07 21:42:31 +0000309
Dan Gohmanaa742602010-07-09 18:49:45 +0000310 SmallVector<MachineLoop *, 8> Worklist(MLI->begin(), MLI->end());
311 while (!Worklist.empty()) {
312 CurLoop = Worklist.pop_back_val();
Dan Gohman853d3fb2010-06-22 17:25:57 +0000313 CurPreheader = 0;
Bill Wendling0f940c92007-12-07 21:42:31 +0000314
Evan Cheng4038f9c2010-04-08 01:03:47 +0000315 // If this is done before regalloc, only visit outer-most preheader-sporting
316 // loops.
Dan Gohmanaa742602010-07-09 18:49:45 +0000317 if (PreRegAlloc && !LoopIsOuterMostWithPredecessor(CurLoop)) {
318 Worklist.append(CurLoop->begin(), CurLoop->end());
Dan Gohmanc475c362009-01-15 22:01:38 +0000319 continue;
Dan Gohmanaa742602010-07-09 18:49:45 +0000320 }
Dan Gohmanc475c362009-01-15 22:01:38 +0000321
Evan Chengd94671a2010-04-07 00:41:17 +0000322 if (!PreRegAlloc)
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000323 HoistRegionPostRA();
Evan Chengd94671a2010-04-07 00:41:17 +0000324 else {
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000325 // CSEMap is initialized for loop header when the first instruction is
326 // being hoisted.
327 MachineDomTreeNode *N = DT->getNode(CurLoop->getHeader());
Evan Cheng82e0a1a2010-05-29 00:06:36 +0000328 FirstInLoop = true;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000329 HoistRegion(N, true);
Evan Chengd94671a2010-04-07 00:41:17 +0000330 CSEMap.clear();
331 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000332 }
333
334 return Changed;
335}
336
Evan Cheng4038f9c2010-04-08 01:03:47 +0000337/// InstructionStoresToFI - Return true if instruction stores to the
338/// specified frame.
339static bool InstructionStoresToFI(const MachineInstr *MI, int FI) {
340 for (MachineInstr::mmo_iterator o = MI->memoperands_begin(),
341 oe = MI->memoperands_end(); o != oe; ++o) {
342 if (!(*o)->isStore() || !(*o)->getValue())
343 continue;
344 if (const FixedStackPseudoSourceValue *Value =
345 dyn_cast<const FixedStackPseudoSourceValue>((*o)->getValue())) {
346 if (Value->getFrameIndex() == FI)
347 return true;
348 }
349 }
350 return false;
351}
352
353/// ProcessMI - Examine the instruction for potentai LICM candidate. Also
354/// gather register def and frame object update information.
355void MachineLICM::ProcessMI(MachineInstr *MI,
356 unsigned *PhysRegDefs,
357 SmallSet<int, 32> &StoredFIs,
358 SmallVector<CandidateInfo, 32> &Candidates) {
359 bool RuledOut = false;
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000360 bool HasNonInvariantUse = false;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000361 unsigned Def = 0;
362 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
363 const MachineOperand &MO = MI->getOperand(i);
364 if (MO.isFI()) {
365 // Remember if the instruction stores to the frame index.
366 int FI = MO.getIndex();
367 if (!StoredFIs.count(FI) &&
368 MFI->isSpillSlotObjectIndex(FI) &&
369 InstructionStoresToFI(MI, FI))
370 StoredFIs.insert(FI);
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000371 HasNonInvariantUse = true;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000372 continue;
373 }
374
375 if (!MO.isReg())
376 continue;
377 unsigned Reg = MO.getReg();
378 if (!Reg)
379 continue;
380 assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
381 "Not expecting virtual register!");
382
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000383 if (!MO.isDef()) {
Evan Cheng63275372010-04-13 22:13:34 +0000384 if (Reg && PhysRegDefs[Reg])
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000385 // If it's using a non-loop-invariant register, then it's obviously not
386 // safe to hoist.
387 HasNonInvariantUse = true;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000388 continue;
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000389 }
Evan Cheng4038f9c2010-04-08 01:03:47 +0000390
391 if (MO.isImplicit()) {
392 ++PhysRegDefs[Reg];
393 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
394 ++PhysRegDefs[*AS];
395 if (!MO.isDead())
396 // Non-dead implicit def? This cannot be hoisted.
397 RuledOut = true;
398 // No need to check if a dead implicit def is also defined by
399 // another instruction.
400 continue;
401 }
402
403 // FIXME: For now, avoid instructions with multiple defs, unless
404 // it's a dead implicit def.
405 if (Def)
406 RuledOut = true;
407 else
408 Def = Reg;
409
410 // If we have already seen another instruction that defines the same
411 // register, then this is not safe.
412 if (++PhysRegDefs[Reg] > 1)
413 // MI defined register is seen defined by another instruction in
414 // the loop, it cannot be a LICM candidate.
415 RuledOut = true;
416 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
417 if (++PhysRegDefs[*AS] > 1)
418 RuledOut = true;
419 }
420
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000421 // Only consider reloads for now and remats which do not have register
422 // operands. FIXME: Consider unfold load folding instructions.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000423 if (Def && !RuledOut) {
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000424 int FI = INT_MIN;
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000425 if ((!HasNonInvariantUse && IsLICMCandidate(*MI)) ||
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000426 (TII->isLoadFromStackSlot(MI, FI) && MFI->isSpillSlotObjectIndex(FI)))
427 Candidates.push_back(CandidateInfo(MI, Def, FI));
Evan Cheng4038f9c2010-04-08 01:03:47 +0000428 }
429}
430
431/// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop
432/// invariants out to the preheader.
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000433void MachineLICM::HoistRegionPostRA() {
Evan Chengd94671a2010-04-07 00:41:17 +0000434 unsigned NumRegs = TRI->getNumRegs();
435 unsigned *PhysRegDefs = new unsigned[NumRegs];
436 std::fill(PhysRegDefs, PhysRegDefs + NumRegs, 0);
437
Evan Cheng4038f9c2010-04-08 01:03:47 +0000438 SmallVector<CandidateInfo, 32> Candidates;
Evan Chengd94671a2010-04-07 00:41:17 +0000439 SmallSet<int, 32> StoredFIs;
440
441 // Walk the entire region, count number of defs for each register, and
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000442 // collect potential LICM candidates.
443 const std::vector<MachineBasicBlock*> Blocks = CurLoop->getBlocks();
444 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
445 MachineBasicBlock *BB = Blocks[i];
Evan Chengd94671a2010-04-07 00:41:17 +0000446 // Conservatively treat live-in's as an external def.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000447 // FIXME: That means a reload that're reused in successor block(s) will not
448 // be LICM'ed.
Dan Gohman81bf03e2010-04-13 16:57:55 +0000449 for (MachineBasicBlock::livein_iterator I = BB->livein_begin(),
Evan Chengd94671a2010-04-07 00:41:17 +0000450 E = BB->livein_end(); I != E; ++I) {
451 unsigned Reg = *I;
452 ++PhysRegDefs[Reg];
Evan Cheng4038f9c2010-04-08 01:03:47 +0000453 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
454 ++PhysRegDefs[*AS];
Evan Chengd94671a2010-04-07 00:41:17 +0000455 }
456
457 for (MachineBasicBlock::iterator
458 MII = BB->begin(), E = BB->end(); MII != E; ++MII) {
Evan Chengd94671a2010-04-07 00:41:17 +0000459 MachineInstr *MI = &*MII;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000460 ProcessMI(MI, PhysRegDefs, StoredFIs, Candidates);
Evan Chengd94671a2010-04-07 00:41:17 +0000461 }
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000462 }
Evan Chengd94671a2010-04-07 00:41:17 +0000463
464 // Now evaluate whether the potential candidates qualify.
465 // 1. Check if the candidate defined register is defined by another
466 // instruction in the loop.
467 // 2. If the candidate is a load from stack slot (always true for now),
468 // check if the slot is stored anywhere in the loop.
469 for (unsigned i = 0, e = Candidates.size(); i != e; ++i) {
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000470 if (Candidates[i].FI != INT_MIN &&
471 StoredFIs.count(Candidates[i].FI))
Evan Chengd94671a2010-04-07 00:41:17 +0000472 continue;
473
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000474 if (PhysRegDefs[Candidates[i].Def] == 1) {
475 bool Safe = true;
476 MachineInstr *MI = Candidates[i].MI;
Evan Chengc15d9132010-04-13 20:25:29 +0000477 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
478 const MachineOperand &MO = MI->getOperand(j);
Evan Cheng63275372010-04-13 22:13:34 +0000479 if (!MO.isReg() || MO.isDef() || !MO.getReg())
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000480 continue;
481 if (PhysRegDefs[MO.getReg()]) {
482 // If it's using a non-loop-invariant register, then it's obviously
483 // not safe to hoist.
484 Safe = false;
485 break;
486 }
487 }
488 if (Safe)
489 HoistPostRA(MI, Candidates[i].Def);
490 }
Evan Chengd94671a2010-04-07 00:41:17 +0000491 }
Benjamin Kramer678d9b72010-04-12 11:38:35 +0000492
493 delete[] PhysRegDefs;
Evan Chengd94671a2010-04-07 00:41:17 +0000494}
495
Jakob Stoklund Olesen9196ab62010-04-20 18:45:47 +0000496/// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the current
497/// loop, and make sure it is not killed by any instructions in the loop.
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000498void MachineLICM::AddToLiveIns(unsigned Reg) {
499 const std::vector<MachineBasicBlock*> Blocks = CurLoop->getBlocks();
Jakob Stoklund Olesen9196ab62010-04-20 18:45:47 +0000500 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
501 MachineBasicBlock *BB = Blocks[i];
502 if (!BB->isLiveIn(Reg))
503 BB->addLiveIn(Reg);
504 for (MachineBasicBlock::iterator
505 MII = BB->begin(), E = BB->end(); MII != E; ++MII) {
506 MachineInstr *MI = &*MII;
507 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
508 MachineOperand &MO = MI->getOperand(i);
509 if (!MO.isReg() || !MO.getReg() || MO.isDef()) continue;
510 if (MO.getReg() == Reg || TRI->isSuperRegister(Reg, MO.getReg()))
511 MO.setIsKill(false);
512 }
513 }
514 }
Evan Cheng4038f9c2010-04-08 01:03:47 +0000515}
516
517/// HoistPostRA - When an instruction is found to only use loop invariant
518/// operands that is safe to hoist, this instruction is called to do the
519/// dirty work.
520void MachineLICM::HoistPostRA(MachineInstr *MI, unsigned Def) {
Dan Gohman853d3fb2010-06-22 17:25:57 +0000521 MachineBasicBlock *Preheader = getCurPreheader();
522 if (!Preheader) return;
523
Evan Chengd94671a2010-04-07 00:41:17 +0000524 // Now move the instructions to the predecessor, inserting it before any
525 // terminator instructions.
526 DEBUG({
527 dbgs() << "Hoisting " << *MI;
Dan Gohman853d3fb2010-06-22 17:25:57 +0000528 if (Preheader->getBasicBlock())
Evan Chengd94671a2010-04-07 00:41:17 +0000529 dbgs() << " to MachineBasicBlock "
Dan Gohman853d3fb2010-06-22 17:25:57 +0000530 << Preheader->getName();
Evan Chengd94671a2010-04-07 00:41:17 +0000531 if (MI->getParent()->getBasicBlock())
532 dbgs() << " from MachineBasicBlock "
533 << MI->getParent()->getName();
534 dbgs() << "\n";
535 });
536
537 // Splice the instruction to the preheader.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000538 MachineBasicBlock *MBB = MI->getParent();
Dan Gohman853d3fb2010-06-22 17:25:57 +0000539 Preheader->splice(Preheader->getFirstTerminator(), MBB, MI);
Evan Cheng4038f9c2010-04-08 01:03:47 +0000540
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000541 // Add register to livein list to all the BBs in the current loop since a
542 // loop invariant must be kept live throughout the whole loop. This is
543 // important to ensure later passes do not scavenge the def register.
544 AddToLiveIns(Def);
Evan Chengd94671a2010-04-07 00:41:17 +0000545
546 ++NumPostRAHoisted;
547 Changed = true;
548}
549
Bill Wendling0f940c92007-12-07 21:42:31 +0000550/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
551/// dominated by the specified block, and that are in the current loop) in depth
552/// first order w.r.t the DominatorTree. This allows us to visit definitions
553/// before uses, allowing us to hoist a loop body in one pass without iteration.
554///
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000555void MachineLICM::HoistRegion(MachineDomTreeNode *N, bool IsHeader) {
Bill Wendling0f940c92007-12-07 21:42:31 +0000556 assert(N != 0 && "Null dominator tree node?");
557 MachineBasicBlock *BB = N->getBlock();
558
559 // If this subregion is not in the top level loop at all, exit.
560 if (!CurLoop->contains(BB)) return;
561
Evan Cheng0e673912010-10-14 01:16:09 +0000562 MachineBasicBlock *Preheader = getCurPreheader();
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000563 if (!Preheader)
564 return;
Evan Cheng0e673912010-10-14 01:16:09 +0000565
Evan Cheng23128422010-10-19 18:58:51 +0000566 if (IsHeader) {
Evan Cheng134982d2010-10-20 22:03:58 +0000567 // Compute registers which are livein into the loop headers.
Evan Cheng23128422010-10-19 18:58:51 +0000568 RegSeen.clear();
569 BackTrace.clear();
570 InitRegPressure(Preheader);
Daniel Dunbar98694132010-10-19 17:14:24 +0000571 }
Evan Cheng11e8b742010-10-19 00:55:07 +0000572
Evan Cheng23128422010-10-19 18:58:51 +0000573 // Remember livein register pressure.
574 BackTrace.push_back(RegPressure);
575
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000576 for (MachineBasicBlock::iterator
577 MII = BB->begin(), E = BB->end(); MII != E; ) {
578 MachineBasicBlock::iterator NextMII = MII; ++NextMII;
579 MachineInstr *MI = &*MII;
Evan Cheng134982d2010-10-20 22:03:58 +0000580 if (!Hoist(MI, Preheader))
581 UpdateRegPressure(MI);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000582 MII = NextMII;
Dan Gohmanc475c362009-01-15 22:01:38 +0000583 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000584
Dale Johannesenbf1ae5e2010-07-20 00:50:13 +0000585 // Don't hoist things out of a large switch statement. This often causes
586 // code to be hoisted that wasn't going to be executed, and increases
587 // register pressure in a situation where it's likely to matter.
Dale Johannesen21d35c12010-07-20 21:29:12 +0000588 if (BB->succ_size() < 25) {
589 const std::vector<MachineDomTreeNode*> &Children = N->getChildren();
Dale Johannesenbf1ae5e2010-07-20 00:50:13 +0000590 for (unsigned I = 0, E = Children.size(); I != E; ++I)
591 HoistRegion(Children[I]);
Dale Johannesen21d35c12010-07-20 21:29:12 +0000592 }
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000593
Evan Cheng23128422010-10-19 18:58:51 +0000594 BackTrace.pop_back();
Bill Wendling0f940c92007-12-07 21:42:31 +0000595}
596
Evan Cheng134982d2010-10-20 22:03:58 +0000597static bool isOperandKill(const MachineOperand &MO, MachineRegisterInfo *MRI) {
598 return MO.isKill() || MRI->hasOneNonDBGUse(MO.getReg());
599}
600
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000601/// InitRegPressure - Find all virtual register references that are liveout of
602/// the preheader to initialize the starting "register pressure". Note this
603/// does not count live through (livein but not used) registers.
Evan Cheng0e673912010-10-14 01:16:09 +0000604void MachineLICM::InitRegPressure(MachineBasicBlock *BB) {
Evan Cheng0e673912010-10-14 01:16:09 +0000605 std::fill(RegPressure.begin(), RegPressure.end(), 0);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000606
Evan Cheng134982d2010-10-20 22:03:58 +0000607 // If the preheader has only a single predecessor and it ends with a
608 // fallthrough or an unconditional branch, then scan its predecessor for live
609 // defs as well. This happens whenever the preheader is created by splitting
610 // the critical edge from the loop predecessor to the loop header.
611 if (BB->pred_size() == 1) {
612 MachineBasicBlock *TBB = 0, *FBB = 0;
613 SmallVector<MachineOperand, 4> Cond;
614 if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond, false) && Cond.empty())
615 InitRegPressure(*BB->pred_begin());
616 }
617
Evan Cheng0e673912010-10-14 01:16:09 +0000618 for (MachineBasicBlock::iterator MII = BB->begin(), E = BB->end();
619 MII != E; ++MII) {
620 MachineInstr *MI = &*MII;
621 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
622 const MachineOperand &MO = MI->getOperand(i);
623 if (!MO.isReg() || MO.isImplicit())
624 continue;
625 unsigned Reg = MO.getReg();
626 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
627 continue;
Evan Cheng0e673912010-10-14 01:16:09 +0000628
Andrew Trickdc986d22010-10-19 02:50:50 +0000629 bool isNew = RegSeen.insert(Reg);
Evan Cheng0e673912010-10-14 01:16:09 +0000630 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
631 EVT VT = *RC->vt_begin();
632 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000633 if (MO.isDef())
634 RegPressure[RCId] += TLI->getRepRegClassCostFor(VT);
635 else {
Evan Cheng134982d2010-10-20 22:03:58 +0000636 bool isKill = isOperandKill(MO, MRI);
637 if (isNew && !isKill)
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000638 // Haven't seen this, it must be a livein.
639 RegPressure[RCId] += TLI->getRepRegClassCostFor(VT);
Evan Cheng134982d2010-10-20 22:03:58 +0000640 else if (!isNew && isKill)
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000641 RegPressure[RCId] -= TLI->getRepRegClassCostFor(VT);
642 }
Evan Cheng0e673912010-10-14 01:16:09 +0000643 }
644 }
645}
646
Evan Cheng134982d2010-10-20 22:03:58 +0000647/// UpdateRegPressure - Update estimate of register pressure after the
648/// specified instruction.
649void MachineLICM::UpdateRegPressure(const MachineInstr *MI) {
650 if (MI->isImplicitDef())
651 return;
Evan Cheng0e673912010-10-14 01:16:09 +0000652
Evan Cheng134982d2010-10-20 22:03:58 +0000653 SmallVector<unsigned, 4> Defs;
Evan Cheng0e673912010-10-14 01:16:09 +0000654 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
655 const MachineOperand &MO = MI->getOperand(i);
Evan Cheng23128422010-10-19 18:58:51 +0000656 if (!MO.isReg() || MO.isImplicit())
Evan Cheng0e673912010-10-14 01:16:09 +0000657 continue;
658 unsigned Reg = MO.getReg();
659 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
660 continue;
661
Andrew Trickdc986d22010-10-19 02:50:50 +0000662 bool isNew = RegSeen.insert(Reg);
Evan Cheng23128422010-10-19 18:58:51 +0000663 if (MO.isDef())
664 Defs.push_back(Reg);
Evan Cheng134982d2010-10-20 22:03:58 +0000665 else if (!isNew && isOperandKill(MO, MRI)) {
666 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
667 EVT VT = *RC->vt_begin();
668 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
669 unsigned RCCost = TLI->getRepRegClassCostFor(VT);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000670
Evan Cheng134982d2010-10-20 22:03:58 +0000671 if (RCCost > RegPressure[RCId])
672 RegPressure[RCId] = 0;
673 else
Evan Cheng23128422010-10-19 18:58:51 +0000674 RegPressure[RCId] -= RCCost;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000675 }
Evan Cheng0e673912010-10-14 01:16:09 +0000676 }
Evan Cheng0e673912010-10-14 01:16:09 +0000677
Evan Cheng23128422010-10-19 18:58:51 +0000678 while (!Defs.empty()) {
679 unsigned Reg = Defs.pop_back_val();
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 {
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000791 return AA->pointsToConstantMemory(AliasAnalysis::Location(MMO->getValue(),
792 MMO->getSize(),
793 MMO->getTBAAInfo()));
Evan Cheng87b75ba2009-11-20 19:55:37 +0000794 }
795}
796
Evan Cheng23128422010-10-19 18:58:51 +0000797/// HasHighOperandLatency - Compute operand latency between a def of 'Reg'
798/// and an use in the current loop, return true if the target considered
799/// it 'high'.
800bool MachineLICM::HasHighOperandLatency(MachineInstr &MI,
Evan Chengc8141df2010-10-26 02:08:50 +0000801 unsigned DefIdx, unsigned Reg) const {
802 if (!InstrItins || InstrItins->isEmpty() || MRI->use_nodbg_empty(Reg))
Evan Cheng23128422010-10-19 18:58:51 +0000803 return false;
Evan Cheng0e673912010-10-14 01:16:09 +0000804
Evan Cheng0e673912010-10-14 01:16:09 +0000805 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg),
806 E = MRI->use_nodbg_end(); I != E; ++I) {
807 MachineInstr *UseMI = &*I;
Evan Chengc8141df2010-10-26 02:08:50 +0000808 if (UseMI->isCopyLike())
809 continue;
Evan Cheng0e673912010-10-14 01:16:09 +0000810 if (!CurLoop->contains(UseMI->getParent()))
811 continue;
812 for (unsigned i = 0, e = UseMI->getNumOperands(); i != e; ++i) {
813 const MachineOperand &MO = UseMI->getOperand(i);
814 if (!MO.isReg() || !MO.isUse())
815 continue;
816 unsigned MOReg = MO.getReg();
817 if (MOReg != Reg)
818 continue;
819
Evan Cheng23128422010-10-19 18:58:51 +0000820 if (TII->hasHighOperandLatency(InstrItins, MRI, &MI, DefIdx, UseMI, i))
821 return true;
Evan Cheng0e673912010-10-14 01:16:09 +0000822 }
823
Evan Cheng23128422010-10-19 18:58:51 +0000824 // Only look at the first in loop use.
825 break;
Evan Cheng0e673912010-10-14 01:16:09 +0000826 }
827
Evan Cheng23128422010-10-19 18:58:51 +0000828 return false;
Evan Cheng0e673912010-10-14 01:16:09 +0000829}
830
Evan Chengc8141df2010-10-26 02:08:50 +0000831/// IsCheapInstruction - Return true if the instruction is marked "cheap" or
832/// the operand latency between its def and a use is one or less.
833bool MachineLICM::IsCheapInstruction(MachineInstr &MI) const {
834 if (MI.getDesc().isAsCheapAsAMove() || MI.isCopyLike())
835 return true;
836 if (!InstrItins || InstrItins->isEmpty())
837 return false;
838
839 bool isCheap = false;
840 unsigned NumDefs = MI.getDesc().getNumDefs();
841 for (unsigned i = 0, e = MI.getNumOperands(); NumDefs && i != e; ++i) {
842 MachineOperand &DefMO = MI.getOperand(i);
843 if (!DefMO.isReg() || !DefMO.isDef())
844 continue;
845 --NumDefs;
846 unsigned Reg = DefMO.getReg();
847 if (TargetRegisterInfo::isPhysicalRegister(Reg))
848 continue;
849
850 if (!TII->hasLowDefLatency(InstrItins, &MI, i))
851 return false;
852 isCheap = true;
853 }
854
855 return isCheap;
856}
857
Evan Cheng134982d2010-10-20 22:03:58 +0000858/// CanCauseHighRegPressure - Visit BBs from header to current BB, check
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000859/// if hoisting an instruction of the given cost matrix can cause high
860/// register pressure.
Evan Cheng134982d2010-10-20 22:03:58 +0000861bool MachineLICM::CanCauseHighRegPressure(DenseMap<unsigned, int> &Cost) {
862 for (DenseMap<unsigned, int>::iterator CI = Cost.begin(), CE = Cost.end();
863 CI != CE; ++CI) {
864 if (CI->second <= 0)
865 continue;
866
867 unsigned RCId = CI->first;
868 for (unsigned i = BackTrace.size(); i != 0; --i) {
869 SmallVector<unsigned, 8> &RP = BackTrace[i-1];
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000870 if (RP[RCId] + CI->second >= RegLimit[RCId])
871 return true;
872 }
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000873 }
874
875 return false;
876}
877
Evan Cheng134982d2010-10-20 22:03:58 +0000878/// UpdateBackTraceRegPressure - Traverse the back trace from header to the
879/// current block and update their register pressures to reflect the effect
880/// of hoisting MI from the current block to the preheader.
881void MachineLICM::UpdateBackTraceRegPressure(const MachineInstr *MI) {
882 if (MI->isImplicitDef())
883 return;
884
885 // First compute the 'cost' of the instruction, i.e. its contribution
886 // to register pressure.
887 DenseMap<unsigned, int> Cost;
888 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
889 const MachineOperand &MO = MI->getOperand(i);
890 if (!MO.isReg() || MO.isImplicit())
891 continue;
892 unsigned Reg = MO.getReg();
893 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
894 continue;
895
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 if (MO.isDef()) {
901 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
902 if (CI != Cost.end())
903 CI->second += RCCost;
904 else
905 Cost.insert(std::make_pair(RCId, RCCost));
906 } else if (isOperandKill(MO, MRI)) {
907 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
908 if (CI != Cost.end())
909 CI->second -= RCCost;
910 else
911 Cost.insert(std::make_pair(RCId, -RCCost));
912 }
913 }
914
915 // Update register pressure of blocks from loop header to current block.
916 for (unsigned i = 0, e = BackTrace.size(); i != e; ++i) {
917 SmallVector<unsigned, 8> &RP = BackTrace[i];
918 for (DenseMap<unsigned, int>::iterator CI = Cost.begin(), CE = Cost.end();
919 CI != CE; ++CI) {
920 unsigned RCId = CI->first;
921 RP[RCId] += CI->second;
922 }
923 }
924}
925
Evan Cheng45e94d62009-02-04 09:19:56 +0000926/// IsProfitableToHoist - Return true if it is potentially profitable to hoist
927/// the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000928bool MachineLICM::IsProfitableToHoist(MachineInstr &MI) {
Evan Cheng0e673912010-10-14 01:16:09 +0000929 if (MI.isImplicitDef())
930 return true;
931
Evan Cheng23128422010-10-19 18:58:51 +0000932 // If the instruction is cheap, only hoist if it is re-materilizable. LICM
933 // will increase register pressure. It's probably not worth it if the
934 // instruction is cheap.
Evan Cheng87b75ba2009-11-20 19:55:37 +0000935 // Also hoist loads from constant memory, e.g. load from stubs, GOT. Hoisting
936 // these tend to help performance in low register pressure situation. The
937 // trade off is it may cause spill in high pressure situation. It will end up
938 // adding a store in the loop preheader. But the reload is no more expensive.
939 // The side benefit is these loads are frequently CSE'ed.
Evan Chengc8141df2010-10-26 02:08:50 +0000940 if (IsCheapInstruction(MI)) {
Evan Cheng23128422010-10-19 18:58:51 +0000941 if (!TII->isTriviallyReMaterializable(&MI, AA))
Evan Cheng0e673912010-10-14 01:16:09 +0000942 return false;
943 } else {
Evan Cheng23128422010-10-19 18:58:51 +0000944 // Estimate register pressure to determine whether to LICM the instruction.
Evan Cheng0e673912010-10-14 01:16:09 +0000945 // In low register pressure situation, we can be more aggressive about
946 // hoisting. Also, favors hoisting long latency instructions even in
947 // moderately high pressure situation.
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000948 DenseMap<unsigned, int> Cost;
Evan Cheng0e673912010-10-14 01:16:09 +0000949 for (unsigned i = 0, e = MI.getDesc().getNumOperands(); i != e; ++i) {
950 const MachineOperand &MO = MI.getOperand(i);
951 if (!MO.isReg() || MO.isImplicit())
952 continue;
953 unsigned Reg = MO.getReg();
954 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
955 continue;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000956 if (MO.isDef()) {
Evan Cheng23128422010-10-19 18:58:51 +0000957 if (HasHighOperandLatency(MI, i, Reg)) {
958 ++NumHighLatency;
959 return true;
Evan Cheng0e673912010-10-14 01:16:09 +0000960 }
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000961
962 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
963 EVT VT = *RC->vt_begin();
964 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
965 unsigned RCCost = TLI->getRepRegClassCostFor(VT);
966 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000967 if (CI != Cost.end())
968 CI->second += RCCost;
969 else
970 Cost.insert(std::make_pair(RCId, RCCost));
Evan Cheng134982d2010-10-20 22:03:58 +0000971 } else if (isOperandKill(MO, MRI)) {
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000972 // Is a virtual register use is a kill, hoisting it out of the loop
973 // may actually reduce register pressure or be register pressure
Evan Cheng134982d2010-10-20 22:03:58 +0000974 // neutral.
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000975 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
976 EVT VT = *RC->vt_begin();
977 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
978 unsigned RCCost = TLI->getRepRegClassCostFor(VT);
979 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
980 if (CI != Cost.end())
981 CI->second -= RCCost;
982 else
983 Cost.insert(std::make_pair(RCId, -RCCost));
Evan Cheng0e673912010-10-14 01:16:09 +0000984 }
985 }
986
Evan Cheng134982d2010-10-20 22:03:58 +0000987 // Visit BBs from header to current BB, if hoisting this doesn't cause
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000988 // high register pressure, then it's safe to proceed.
Evan Cheng134982d2010-10-20 22:03:58 +0000989 if (!CanCauseHighRegPressure(Cost)) {
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000990 ++NumLowRP;
Evan Cheng0e673912010-10-14 01:16:09 +0000991 return true;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000992 }
Evan Cheng0e673912010-10-14 01:16:09 +0000993
994 // High register pressure situation, only hoist if the instruction is going to
995 // be remat'ed.
996 if (!TII->isTriviallyReMaterializable(&MI, AA) &&
997 !isLoadFromConstantMemory(&MI))
Evan Cheng87b75ba2009-11-20 19:55:37 +0000998 return false;
Evan Cheng87b75ba2009-11-20 19:55:37 +0000999 }
Evan Cheng45e94d62009-02-04 09:19:56 +00001000
Evan Chengaf6949d2009-02-05 08:45:46 +00001001 // If result(s) of this instruction is used by PHIs, then don't hoist it.
1002 // The presence of joins makes it difficult for current register allocator
1003 // implementation to perform remat.
Evan Cheng45e94d62009-02-04 09:19:56 +00001004 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1005 const MachineOperand &MO = MI.getOperand(i);
1006 if (!MO.isReg() || !MO.isDef())
1007 continue;
Evan Cheng0e673912010-10-14 01:16:09 +00001008 if (HasPHIUses(MO.getReg(), MRI))
Evan Chengaf6949d2009-02-05 08:45:46 +00001009 return false;
Evan Cheng45e94d62009-02-04 09:19:56 +00001010 }
Evan Chengaf6949d2009-02-05 08:45:46 +00001011
1012 return true;
1013}
1014
Dan Gohman5c952302009-10-29 17:47:20 +00001015MachineInstr *MachineLICM::ExtractHoistableLoad(MachineInstr *MI) {
Evan Chenge95f3192010-10-08 18:59:19 +00001016 // Don't unfold simple loads.
1017 if (MI->getDesc().canFoldAsLoad())
1018 return 0;
1019
Dan Gohman5c952302009-10-29 17:47:20 +00001020 // If not, we may be able to unfold a load and hoist that.
1021 // First test whether the instruction is loading from an amenable
1022 // memory location.
Evan Cheng87b75ba2009-11-20 19:55:37 +00001023 if (!isLoadFromConstantMemory(MI))
1024 return 0;
1025
Dan Gohman5c952302009-10-29 17:47:20 +00001026 // Next determine the register class for a temporary register.
Dan Gohman0115e162009-10-30 22:18:41 +00001027 unsigned LoadRegIndex;
Dan Gohman5c952302009-10-29 17:47:20 +00001028 unsigned NewOpc =
1029 TII->getOpcodeAfterMemoryUnfold(MI->getOpcode(),
1030 /*UnfoldLoad=*/true,
Dan Gohman0115e162009-10-30 22:18:41 +00001031 /*UnfoldStore=*/false,
1032 &LoadRegIndex);
Dan Gohman5c952302009-10-29 17:47:20 +00001033 if (NewOpc == 0) return 0;
1034 const TargetInstrDesc &TID = TII->get(NewOpc);
1035 if (TID.getNumDefs() != 1) return 0;
Dan Gohman0115e162009-10-30 22:18:41 +00001036 const TargetRegisterClass *RC = TID.OpInfo[LoadRegIndex].getRegClass(TRI);
Dan Gohman5c952302009-10-29 17:47:20 +00001037 // Ok, we're unfolding. Create a temporary register and do the unfold.
Evan Cheng0e673912010-10-14 01:16:09 +00001038 unsigned Reg = MRI->createVirtualRegister(RC);
Evan Cheng87b75ba2009-11-20 19:55:37 +00001039
1040 MachineFunction &MF = *MI->getParent()->getParent();
Dan Gohman5c952302009-10-29 17:47:20 +00001041 SmallVector<MachineInstr *, 2> NewMIs;
1042 bool Success =
1043 TII->unfoldMemoryOperand(MF, MI, Reg,
1044 /*UnfoldLoad=*/true, /*UnfoldStore=*/false,
1045 NewMIs);
1046 (void)Success;
1047 assert(Success &&
1048 "unfoldMemoryOperand failed when getOpcodeAfterMemoryUnfold "
1049 "succeeded!");
1050 assert(NewMIs.size() == 2 &&
1051 "Unfolded a load into multiple instructions!");
1052 MachineBasicBlock *MBB = MI->getParent();
1053 MBB->insert(MI, NewMIs[0]);
1054 MBB->insert(MI, NewMIs[1]);
1055 // If unfolding produced a load that wasn't loop-invariant or profitable to
1056 // hoist, discard the new instructions and bail.
Evan Chengc26abd92009-11-20 23:31:34 +00001057 if (!IsLoopInvariantInst(*NewMIs[0]) || !IsProfitableToHoist(*NewMIs[0])) {
Dan Gohman5c952302009-10-29 17:47:20 +00001058 NewMIs[0]->eraseFromParent();
1059 NewMIs[1]->eraseFromParent();
1060 return 0;
1061 }
Evan Cheng134982d2010-10-20 22:03:58 +00001062
1063 // Update register pressure for the unfolded instruction.
1064 UpdateRegPressure(NewMIs[1]);
1065
Dan Gohman5c952302009-10-29 17:47:20 +00001066 // Otherwise we successfully unfolded a load that we can hoist.
1067 MI->eraseFromParent();
1068 return NewMIs[0];
1069}
1070
Evan Cheng777c6b72009-11-03 21:40:02 +00001071void MachineLICM::InitCSEMap(MachineBasicBlock *BB) {
1072 for (MachineBasicBlock::iterator I = BB->begin(),E = BB->end(); I != E; ++I) {
1073 const MachineInstr *MI = &*I;
1074 // FIXME: For now, only hoist re-materilizable instructions. LICM will
1075 // increase register pressure. We want to make sure it doesn't increase
1076 // spilling.
1077 if (TII->isTriviallyReMaterializable(MI, AA)) {
1078 unsigned Opcode = MI->getOpcode();
1079 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
1080 CI = CSEMap.find(Opcode);
1081 if (CI != CSEMap.end())
1082 CI->second.push_back(MI);
1083 else {
1084 std::vector<const MachineInstr*> CSEMIs;
1085 CSEMIs.push_back(MI);
1086 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
1087 }
1088 }
1089 }
1090}
1091
Evan Cheng78e5c112009-11-07 03:52:02 +00001092const MachineInstr*
1093MachineLICM::LookForDuplicate(const MachineInstr *MI,
1094 std::vector<const MachineInstr*> &PrevMIs) {
Evan Cheng9fb744e2009-11-05 00:51:13 +00001095 for (unsigned i = 0, e = PrevMIs.size(); i != e; ++i) {
1096 const MachineInstr *PrevMI = PrevMIs[i];
Evan Cheng506049f2010-03-03 01:44:33 +00001097 if (TII->produceSameValue(MI, PrevMI))
Evan Cheng9fb744e2009-11-05 00:51:13 +00001098 return PrevMI;
1099 }
1100 return 0;
1101}
1102
1103bool MachineLICM::EliminateCSE(MachineInstr *MI,
1104 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI) {
Evan Chengdb898092010-07-14 01:22:19 +00001105 // Do not CSE implicit_def so ProcessImplicitDefs can properly propagate
1106 // the undef property onto uses.
1107 if (CI == CSEMap.end() || MI->isImplicitDef())
Evan Cheng78e5c112009-11-07 03:52:02 +00001108 return false;
1109
1110 if (const MachineInstr *Dup = LookForDuplicate(MI, CI->second)) {
David Greene65a41eb2010-01-05 00:03:48 +00001111 DEBUG(dbgs() << "CSEing " << *MI << " with " << *Dup);
Dan Gohman6ac33b42010-02-28 01:33:43 +00001112
1113 // Replace virtual registers defined by MI by their counterparts defined
1114 // by Dup.
Evan Cheng78e5c112009-11-07 03:52:02 +00001115 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1116 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman6ac33b42010-02-28 01:33:43 +00001117
1118 // Physical registers may not differ here.
1119 assert((!MO.isReg() || MO.getReg() == 0 ||
1120 !TargetRegisterInfo::isPhysicalRegister(MO.getReg()) ||
1121 MO.getReg() == Dup->getOperand(i).getReg()) &&
1122 "Instructions with different phys regs are not identical!");
1123
1124 if (MO.isReg() && MO.isDef() &&
Dan Gohmane6cd7572010-05-13 20:34:42 +00001125 !TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Evan Cheng0e673912010-10-14 01:16:09 +00001126 MRI->replaceRegWith(MO.getReg(), Dup->getOperand(i).getReg());
1127 MRI->clearKillFlags(Dup->getOperand(i).getReg());
Dan Gohmane6cd7572010-05-13 20:34:42 +00001128 }
Evan Cheng9fb744e2009-11-05 00:51:13 +00001129 }
Evan Cheng78e5c112009-11-07 03:52:02 +00001130 MI->eraseFromParent();
1131 ++NumCSEed;
1132 return true;
Evan Cheng9fb744e2009-11-05 00:51:13 +00001133 }
1134 return false;
1135}
1136
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +00001137/// Hoist - When an instruction is found to use only loop invariant operands
1138/// that are safe to hoist, this instruction is called to do the dirty work.
Bill Wendling0f940c92007-12-07 21:42:31 +00001139///
Evan Cheng134982d2010-10-20 22:03:58 +00001140bool MachineLICM::Hoist(MachineInstr *MI, MachineBasicBlock *Preheader) {
Dan Gohman589f1f52009-10-28 03:21:57 +00001141 // First check whether we should hoist this instruction.
Evan Chengc26abd92009-11-20 23:31:34 +00001142 if (!IsLoopInvariantInst(*MI) || !IsProfitableToHoist(*MI)) {
Dan Gohman5c952302009-10-29 17:47:20 +00001143 // If not, try unfolding a hoistable load.
1144 MI = ExtractHoistableLoad(MI);
Evan Cheng134982d2010-10-20 22:03:58 +00001145 if (!MI) return false;
Dan Gohman589f1f52009-10-28 03:21:57 +00001146 }
Bill Wendling0f940c92007-12-07 21:42:31 +00001147
Dan Gohmanc475c362009-01-15 22:01:38 +00001148 // Now move the instructions to the predecessor, inserting it before any
1149 // terminator instructions.
1150 DEBUG({
David Greene65a41eb2010-01-05 00:03:48 +00001151 dbgs() << "Hoisting " << *MI;
Dan Gohman853d3fb2010-06-22 17:25:57 +00001152 if (Preheader->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +00001153 dbgs() << " to MachineBasicBlock "
Dan Gohman853d3fb2010-06-22 17:25:57 +00001154 << Preheader->getName();
Dan Gohman589f1f52009-10-28 03:21:57 +00001155 if (MI->getParent()->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +00001156 dbgs() << " from MachineBasicBlock "
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +00001157 << MI->getParent()->getName();
David Greene65a41eb2010-01-05 00:03:48 +00001158 dbgs() << "\n";
Dan Gohmanc475c362009-01-15 22:01:38 +00001159 });
Bill Wendling0f940c92007-12-07 21:42:31 +00001160
Evan Cheng777c6b72009-11-03 21:40:02 +00001161 // If this is the first instruction being hoisted to the preheader,
1162 // initialize the CSE map with potential common expressions.
Evan Cheng82e0a1a2010-05-29 00:06:36 +00001163 if (FirstInLoop) {
Dan Gohman853d3fb2010-06-22 17:25:57 +00001164 InitCSEMap(Preheader);
Evan Cheng82e0a1a2010-05-29 00:06:36 +00001165 FirstInLoop = false;
1166 }
Evan Cheng777c6b72009-11-03 21:40:02 +00001167
Evan Chengaf6949d2009-02-05 08:45:46 +00001168 // Look for opportunity to CSE the hoisted instruction.
Evan Cheng777c6b72009-11-03 21:40:02 +00001169 unsigned Opcode = MI->getOpcode();
1170 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
1171 CI = CSEMap.find(Opcode);
Evan Cheng9fb744e2009-11-05 00:51:13 +00001172 if (!EliminateCSE(MI, CI)) {
1173 // Otherwise, splice the instruction to the preheader.
Dan Gohman853d3fb2010-06-22 17:25:57 +00001174 Preheader->splice(Preheader->getFirstTerminator(),MI->getParent(),MI);
Evan Cheng777c6b72009-11-03 21:40:02 +00001175
Evan Cheng134982d2010-10-20 22:03:58 +00001176 // Update register pressure for BBs from header to this block.
1177 UpdateBackTraceRegPressure(MI);
1178
Dan Gohmane6cd7572010-05-13 20:34:42 +00001179 // Clear the kill flags of any register this instruction defines,
1180 // since they may need to be live throughout the entire loop
1181 // rather than just live for part of it.
1182 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1183 MachineOperand &MO = MI->getOperand(i);
1184 if (MO.isReg() && MO.isDef() && !MO.isDead())
Evan Cheng0e673912010-10-14 01:16:09 +00001185 MRI->clearKillFlags(MO.getReg());
Dan Gohmane6cd7572010-05-13 20:34:42 +00001186 }
1187
Evan Chengaf6949d2009-02-05 08:45:46 +00001188 // Add to the CSE map.
1189 if (CI != CSEMap.end())
Dan Gohman589f1f52009-10-28 03:21:57 +00001190 CI->second.push_back(MI);
Evan Chengaf6949d2009-02-05 08:45:46 +00001191 else {
1192 std::vector<const MachineInstr*> CSEMIs;
Dan Gohman589f1f52009-10-28 03:21:57 +00001193 CSEMIs.push_back(MI);
Evan Cheng777c6b72009-11-03 21:40:02 +00001194 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
Evan Chengaf6949d2009-02-05 08:45:46 +00001195 }
1196 }
Bill Wendling0f940c92007-12-07 21:42:31 +00001197
Dan Gohmanc475c362009-01-15 22:01:38 +00001198 ++NumHoisted;
Bill Wendling0f940c92007-12-07 21:42:31 +00001199 Changed = true;
Evan Cheng134982d2010-10-20 22:03:58 +00001200
1201 return true;
Bill Wendling0f940c92007-12-07 21:42:31 +00001202}
Dan Gohman853d3fb2010-06-22 17:25:57 +00001203
1204MachineBasicBlock *MachineLICM::getCurPreheader() {
1205 // Determine the block to which to hoist instructions. If we can't find a
1206 // suitable loop predecessor, we can't do any hoisting.
1207
1208 // If we've tried to get a preheader and failed, don't try again.
1209 if (CurPreheader == reinterpret_cast<MachineBasicBlock *>(-1))
1210 return 0;
1211
1212 if (!CurPreheader) {
1213 CurPreheader = CurLoop->getLoopPreheader();
1214 if (!CurPreheader) {
1215 MachineBasicBlock *Pred = CurLoop->getLoopPredecessor();
1216 if (!Pred) {
1217 CurPreheader = reinterpret_cast<MachineBasicBlock *>(-1);
1218 return 0;
1219 }
1220
1221 CurPreheader = Pred->SplitCriticalEdge(CurLoop->getHeader(), this);
1222 if (!CurPreheader) {
1223 CurPreheader = reinterpret_cast<MachineBasicBlock *>(-1);
1224 return 0;
1225 }
1226 }
1227 }
1228 return CurPreheader;
1229}