blob: 70da9828e6750a3110dc6d05b002a154e9c7e1b3 [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 Chengab8be962011-06-29 01:14:12 +000031#include "llvm/MC/MCInstrItineraries.h"
Evan Cheng0e673912010-10-14 01:16:09 +000032#include "llvm/Target/TargetLowering.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000033#include "llvm/Target/TargetRegisterInfo.h"
Bill Wendlingefe2be72007-12-11 23:27:51 +000034#include "llvm/Target/TargetInstrInfo.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 +000042using namespace llvm;
43
Evan Cheng03a9fdf2010-10-16 02:20:26 +000044STATISTIC(NumHoisted,
45 "Number of machine instructions hoisted out of loops");
46STATISTIC(NumLowRP,
47 "Number of instructions hoisted in low reg pressure situation");
48STATISTIC(NumHighLatency,
49 "Number of high latency instructions hoisted");
50STATISTIC(NumCSEed,
51 "Number of hoisted machine instructions CSEed");
Evan Chengd94671a2010-04-07 00:41:17 +000052STATISTIC(NumPostRAHoisted,
53 "Number of machine instructions hoisted out of loops post regalloc");
Bill Wendlingb48519c2007-12-08 01:47:01 +000054
Bill Wendling0f940c92007-12-07 21:42:31 +000055namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000056 class MachineLICM : public MachineFunctionPass {
Evan Chengd94671a2010-04-07 00:41:17 +000057 bool PreRegAlloc;
58
Bill Wendling9258cd32008-01-02 19:32:43 +000059 const TargetMachine *TM;
Bill Wendlingefe2be72007-12-11 23:27:51 +000060 const TargetInstrInfo *TII;
Evan Cheng0e673912010-10-14 01:16:09 +000061 const TargetLowering *TLI;
Dan Gohmana8fb3362009-09-25 23:58:45 +000062 const TargetRegisterInfo *TRI;
Evan Chengd94671a2010-04-07 00:41:17 +000063 const MachineFrameInfo *MFI;
Evan Cheng0e673912010-10-14 01:16:09 +000064 MachineRegisterInfo *MRI;
65 const InstrItineraryData *InstrItins;
Bill Wendling12ebf142007-12-11 19:40:06 +000066
Bill Wendling0f940c92007-12-07 21:42:31 +000067 // Various analyses that we use...
Dan Gohmane33f44c2009-10-07 17:38:06 +000068 AliasAnalysis *AA; // Alias analysis info.
Evan Cheng4038f9c2010-04-08 01:03:47 +000069 MachineLoopInfo *MLI; // Current MachineLoopInfo
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000070 MachineDominatorTree *DT; // Machine dominator tree for the cur loop
Bill Wendling0f940c92007-12-07 21:42:31 +000071
Bill Wendling0f940c92007-12-07 21:42:31 +000072 // State that is updated as we process loops
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000073 bool Changed; // True if a loop is changed.
Evan Cheng82e0a1a2010-05-29 00:06:36 +000074 bool FirstInLoop; // True if it's the first LICM in the loop.
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +000075 MachineLoop *CurLoop; // The current loop we are working on.
Dan Gohmanc475c362009-01-15 22:01:38 +000076 MachineBasicBlock *CurPreheader; // The preheader for CurLoop.
Evan Chengaf6949d2009-02-05 08:45:46 +000077
Evan Chengd94671a2010-04-07 00:41:17 +000078 BitVector AllocatableSet;
79
Evan Cheng0e673912010-10-14 01:16:09 +000080 // Track 'estimated' register pressure.
Evan Cheng03a9fdf2010-10-16 02:20:26 +000081 SmallSet<unsigned, 32> RegSeen;
Evan Cheng0e673912010-10-14 01:16:09 +000082 SmallVector<unsigned, 8> RegPressure;
Evan Cheng03a9fdf2010-10-16 02:20:26 +000083
84 // Register pressure "limit" per register class. If the pressure
85 // is higher than the limit, then it's considered high.
Evan Cheng0e673912010-10-14 01:16:09 +000086 SmallVector<unsigned, 8> RegLimit;
87
Evan Cheng03a9fdf2010-10-16 02:20:26 +000088 // Register pressure on path leading from loop preheader to current BB.
89 SmallVector<SmallVector<unsigned, 8>, 16> BackTrace;
90
Dale Johannesenc46a5f22010-07-29 17:45:24 +000091 // For each opcode, keep a list of potential CSE instructions.
Evan Cheng777c6b72009-11-03 21:40:02 +000092 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap;
Evan Chengd94671a2010-04-07 00:41:17 +000093
Devang Patel2e350472011-10-11 18:09:58 +000094 // If a MBB does not dominate loop exiting blocks then it may not safe
95 // to hoist loads from this block.
96 bool CurrentMBBDominatesLoopExitingBlocks;
97 bool NeedToCheckMBBDominance;
98
Bill Wendling0f940c92007-12-07 21:42:31 +000099 public:
100 static char ID; // Pass identification, replacement for typeid
Evan Chengd94671a2010-04-07 00:41:17 +0000101 MachineLICM() :
Owen Anderson081c34b2010-10-19 17:21:58 +0000102 MachineFunctionPass(ID), PreRegAlloc(true) {
103 initializeMachineLICMPass(*PassRegistry::getPassRegistry());
104 }
Evan Chengd94671a2010-04-07 00:41:17 +0000105
106 explicit MachineLICM(bool PreRA) :
Owen Anderson081c34b2010-10-19 17:21:58 +0000107 MachineFunctionPass(ID), PreRegAlloc(PreRA) {
108 initializeMachineLICMPass(*PassRegistry::getPassRegistry());
109 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000110
111 virtual bool runOnMachineFunction(MachineFunction &MF);
112
Dan Gohman72241702008-12-18 01:37:56 +0000113 const char *getPassName() const { return "Machine Instruction LICM"; }
114
Bill Wendling0f940c92007-12-07 21:42:31 +0000115 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Bill Wendling0f940c92007-12-07 21:42:31 +0000116 AU.addRequired<MachineLoopInfo>();
117 AU.addRequired<MachineDominatorTree>();
Dan Gohmane33f44c2009-10-07 17:38:06 +0000118 AU.addRequired<AliasAnalysis>();
Bill Wendlingd5da7042008-01-04 08:48:49 +0000119 AU.addPreserved<MachineLoopInfo>();
120 AU.addPreserved<MachineDominatorTree>();
121 MachineFunctionPass::getAnalysisUsage(AU);
Bill Wendling0f940c92007-12-07 21:42:31 +0000122 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000123
124 virtual void releaseMemory() {
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000125 RegSeen.clear();
Evan Cheng0e673912010-10-14 01:16:09 +0000126 RegPressure.clear();
127 RegLimit.clear();
Evan Cheng23128422010-10-19 18:58:51 +0000128 BackTrace.clear();
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000129 for (DenseMap<unsigned,std::vector<const MachineInstr*> >::iterator
130 CI = CSEMap.begin(), CE = CSEMap.end(); CI != CE; ++CI)
131 CI->second.clear();
Evan Chengaf6949d2009-02-05 08:45:46 +0000132 CSEMap.clear();
133 }
134
Bill Wendling0f940c92007-12-07 21:42:31 +0000135 private:
Evan Cheng4038f9c2010-04-08 01:03:47 +0000136 /// CandidateInfo - Keep track of information about hoisting candidates.
137 struct CandidateInfo {
138 MachineInstr *MI;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000139 unsigned Def;
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000140 int FI;
141 CandidateInfo(MachineInstr *mi, unsigned def, int fi)
142 : MI(mi), Def(def), FI(fi) {}
Evan Cheng4038f9c2010-04-08 01:03:47 +0000143 };
144
145 /// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop
146 /// invariants out to the preheader.
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000147 void HoistRegionPostRA();
Evan Cheng4038f9c2010-04-08 01:03:47 +0000148
149 /// HoistPostRA - When an instruction is found to only use loop invariant
150 /// operands that is safe to hoist, this instruction is called to do the
151 /// dirty work.
152 void HoistPostRA(MachineInstr *MI, unsigned Def);
153
154 /// ProcessMI - Examine the instruction for potentai LICM candidate. Also
155 /// gather register def and frame object update information.
156 void ProcessMI(MachineInstr *MI, unsigned *PhysRegDefs,
157 SmallSet<int, 32> &StoredFIs,
158 SmallVector<CandidateInfo, 32> &Candidates);
159
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000160 /// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the
161 /// current loop.
162 void AddToLiveIns(unsigned Reg);
Evan Cheng4038f9c2010-04-08 01:03:47 +0000163
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000164 /// IsLICMCandidate - Returns true if the instruction may be a suitable
Chris Lattner77910802010-07-12 00:00:35 +0000165 /// candidate for LICM. e.g. If the instruction is a call, then it's
166 /// obviously not safe to hoist it.
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000167 bool IsLICMCandidate(MachineInstr &I);
168
Bill Wendling041b3f82007-12-08 23:58:46 +0000169 /// IsLoopInvariantInst - Returns true if the instruction is loop
Bill Wendling0f940c92007-12-07 21:42:31 +0000170 /// invariant. I.e., all virtual register operands are defined outside of
171 /// the loop, physical registers aren't accessed (explicitly or implicitly),
172 /// and the instruction is hoistable.
173 ///
Bill Wendling041b3f82007-12-08 23:58:46 +0000174 bool IsLoopInvariantInst(MachineInstr &I);
Bill Wendling0f940c92007-12-07 21:42:31 +0000175
Evan Chengd67705f2011-04-11 21:09:18 +0000176 /// HasAnyPHIUse - Return true if the specified register is used by any
177 /// phi node.
178 bool HasAnyPHIUse(unsigned Reg) const;
179
Evan Cheng23128422010-10-19 18:58:51 +0000180 /// HasHighOperandLatency - Compute operand latency between a def of 'Reg'
181 /// and an use in the current loop, return true if the target considered
182 /// it 'high'.
Evan Chengc8141df2010-10-26 02:08:50 +0000183 bool HasHighOperandLatency(MachineInstr &MI, unsigned DefIdx,
184 unsigned Reg) const;
185
186 bool IsCheapInstruction(MachineInstr &MI) const;
Evan Cheng0e673912010-10-14 01:16:09 +0000187
Evan Cheng134982d2010-10-20 22:03:58 +0000188 /// CanCauseHighRegPressure - Visit BBs from header to current BB,
189 /// check if hoisting an instruction of the given cost matrix can cause high
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000190 /// register pressure.
Evan Cheng134982d2010-10-20 22:03:58 +0000191 bool CanCauseHighRegPressure(DenseMap<unsigned, int> &Cost);
192
193 /// UpdateBackTraceRegPressure - Traverse the back trace from header to
194 /// the current block and update their register pressures to reflect the
195 /// effect of hoisting MI from the current block to the preheader.
196 void UpdateBackTraceRegPressure(const MachineInstr *MI);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000197
Evan Cheng45e94d62009-02-04 09:19:56 +0000198 /// IsProfitableToHoist - Return true if it is potentially profitable to
199 /// hoist the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000200 bool IsProfitableToHoist(MachineInstr &MI);
Evan Cheng45e94d62009-02-04 09:19:56 +0000201
Devang Patel2e350472011-10-11 18:09:58 +0000202 /// IsGuaranteedToExecute - Check if this mbb is guaranteed to execute.
203 /// If not then a load from this mbb may not be safe to hoist.
204 bool IsGuaranteedToExecute(MachineBasicBlock *BB);
205
Bill Wendling0f940c92007-12-07 21:42:31 +0000206 /// HoistRegion - Walk the specified region of the CFG (defined by all
207 /// blocks dominated by the specified block, and that are in the current
208 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
209 /// visit definitions before uses, allowing us to hoist a loop body in one
210 /// pass without iteration.
211 ///
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000212 void HoistRegion(MachineDomTreeNode *N, bool IsHeader = false);
Bill Wendling0f940c92007-12-07 21:42:31 +0000213
Evan Cheng61560e22011-09-01 01:45:00 +0000214 /// getRegisterClassIDAndCost - For a given MI, register, and the operand
215 /// index, return the ID and cost of its representative register class by
216 /// reference.
217 void getRegisterClassIDAndCost(const MachineInstr *MI,
218 unsigned Reg, unsigned OpIdx,
219 unsigned &RCId, unsigned &RCCost) const;
220
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000221 /// InitRegPressure - Find all virtual register references that are liveout
222 /// of the preheader to initialize the starting "register pressure". Note
223 /// this does not count live through (livein but not used) registers.
Evan Cheng0e673912010-10-14 01:16:09 +0000224 void InitRegPressure(MachineBasicBlock *BB);
225
Evan Cheng134982d2010-10-20 22:03:58 +0000226 /// UpdateRegPressure - Update estimate of register pressure after the
227 /// specified instruction.
228 void UpdateRegPressure(const MachineInstr *MI);
Evan Cheng0e673912010-10-14 01:16:09 +0000229
Dan Gohman5c952302009-10-29 17:47:20 +0000230 /// ExtractHoistableLoad - Unfold a load from the given machineinstr if
231 /// the load itself could be hoisted. Return the unfolded and hoistable
232 /// load, or null if the load couldn't be unfolded or if it wouldn't
233 /// be hoistable.
234 MachineInstr *ExtractHoistableLoad(MachineInstr *MI);
235
Evan Cheng78e5c112009-11-07 03:52:02 +0000236 /// LookForDuplicate - Find an instruction amount PrevMIs that is a
237 /// duplicate of MI. Return this instruction if it's found.
238 const MachineInstr *LookForDuplicate(const MachineInstr *MI,
239 std::vector<const MachineInstr*> &PrevMIs);
240
Evan Cheng9fb744e2009-11-05 00:51:13 +0000241 /// EliminateCSE - Given a LICM'ed instruction, look for an instruction on
242 /// the preheader that compute the same value. If it's found, do a RAU on
243 /// with the definition of the existing instruction rather than hoisting
244 /// the instruction to the preheader.
245 bool EliminateCSE(MachineInstr *MI,
246 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI);
247
Bill Wendling0f940c92007-12-07 21:42:31 +0000248 /// Hoist - When an instruction is found to only use loop invariant operands
249 /// that is safe to hoist, this instruction is called to do the dirty work.
Evan Cheng134982d2010-10-20 22:03:58 +0000250 /// It returns true if the instruction is hoisted.
251 bool Hoist(MachineInstr *MI, MachineBasicBlock *Preheader);
Evan Cheng777c6b72009-11-03 21:40:02 +0000252
253 /// InitCSEMap - Initialize the CSE map with instructions that are in the
254 /// current loop preheader that may become duplicates of instructions that
255 /// are hoisted out of the loop.
256 void InitCSEMap(MachineBasicBlock *BB);
Dan Gohman853d3fb2010-06-22 17:25:57 +0000257
258 /// getCurPreheader - Get the preheader for the current loop, splitting
259 /// a critical edge if needed.
260 MachineBasicBlock *getCurPreheader();
Bill Wendling0f940c92007-12-07 21:42:31 +0000261 };
Bill Wendling0f940c92007-12-07 21:42:31 +0000262} // end anonymous namespace
263
Dan Gohman844731a2008-05-13 00:00:25 +0000264char MachineLICM::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000265INITIALIZE_PASS_BEGIN(MachineLICM, "machinelicm",
266 "Machine Loop Invariant Code Motion", false, false)
267INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
268INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
269INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
270INITIALIZE_PASS_END(MachineLICM, "machinelicm",
Owen Andersonce665bd2010-10-07 22:25:06 +0000271 "Machine Loop Invariant Code Motion", false, false)
Dan Gohman844731a2008-05-13 00:00:25 +0000272
Evan Chengd94671a2010-04-07 00:41:17 +0000273FunctionPass *llvm::createMachineLICMPass(bool PreRegAlloc) {
274 return new MachineLICM(PreRegAlloc);
275}
Bill Wendling0f940c92007-12-07 21:42:31 +0000276
Dan Gohman853d3fb2010-06-22 17:25:57 +0000277/// LoopIsOuterMostWithPredecessor - Test if the given loop is the outer-most
278/// loop that has a unique predecessor.
279static bool LoopIsOuterMostWithPredecessor(MachineLoop *CurLoop) {
Dan Gohmanaa742602010-07-09 18:49:45 +0000280 // Check whether this loop even has a unique predecessor.
281 if (!CurLoop->getLoopPredecessor())
282 return false;
283 // Ok, now check to see if any of its outer loops do.
Dan Gohmanc475c362009-01-15 22:01:38 +0000284 for (MachineLoop *L = CurLoop->getParentLoop(); L; L = L->getParentLoop())
Dan Gohman853d3fb2010-06-22 17:25:57 +0000285 if (L->getLoopPredecessor())
Dan Gohmanc475c362009-01-15 22:01:38 +0000286 return false;
Dan Gohmanaa742602010-07-09 18:49:45 +0000287 // None of them did, so this is the outermost with a unique predecessor.
Dan Gohmanc475c362009-01-15 22:01:38 +0000288 return true;
289}
290
Bill Wendling0f940c92007-12-07 21:42:31 +0000291bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd94671a2010-04-07 00:41:17 +0000292 if (PreRegAlloc)
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000293 DEBUG(dbgs() << "******** Pre-regalloc Machine LICM: ");
Evan Chengd94671a2010-04-07 00:41:17 +0000294 else
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000295 DEBUG(dbgs() << "******** Post-regalloc Machine LICM: ");
296 DEBUG(dbgs() << MF.getFunction()->getName() << " ********\n");
Bill Wendlinga17ad592007-12-11 22:22:22 +0000297
Evan Cheng82e0a1a2010-05-29 00:06:36 +0000298 Changed = FirstInLoop = false;
Bill Wendlingacb04ec2008-08-31 02:30:23 +0000299 TM = &MF.getTarget();
Bill Wendling9258cd32008-01-02 19:32:43 +0000300 TII = TM->getInstrInfo();
Evan Cheng0e673912010-10-14 01:16:09 +0000301 TLI = TM->getTargetLowering();
Dan Gohmana8fb3362009-09-25 23:58:45 +0000302 TRI = TM->getRegisterInfo();
Evan Chengd94671a2010-04-07 00:41:17 +0000303 MFI = MF.getFrameInfo();
Evan Cheng0e673912010-10-14 01:16:09 +0000304 MRI = &MF.getRegInfo();
305 InstrItins = TM->getInstrItineraryData();
Dan Gohman45094e32009-09-26 02:34:00 +0000306 AllocatableSet = TRI->getAllocatableSet(MF);
Devang Patel2e350472011-10-11 18:09:58 +0000307 // Stay conservative.
308 CurrentMBBDominatesLoopExitingBlocks = false;
309 NeedToCheckMBBDominance = true;
Bill Wendling0f940c92007-12-07 21:42:31 +0000310
Evan Cheng0e673912010-10-14 01:16:09 +0000311 if (PreRegAlloc) {
312 // Estimate register pressure during pre-regalloc pass.
313 unsigned NumRC = TRI->getNumRegClasses();
314 RegPressure.resize(NumRC);
Evan Cheng0e673912010-10-14 01:16:09 +0000315 std::fill(RegPressure.begin(), RegPressure.end(), 0);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000316 RegLimit.resize(NumRC);
Evan Cheng0e673912010-10-14 01:16:09 +0000317 for (TargetRegisterInfo::regclass_iterator I = TRI->regclass_begin(),
318 E = TRI->regclass_end(); I != E; ++I)
Cameron Zwarichbe2119e2011-03-07 21:56:36 +0000319 RegLimit[(*I)->getID()] = TRI->getRegPressureLimit(*I, MF);
Evan Cheng0e673912010-10-14 01:16:09 +0000320 }
321
Bill Wendling0f940c92007-12-07 21:42:31 +0000322 // Get our Loop information...
Evan Cheng4038f9c2010-04-08 01:03:47 +0000323 MLI = &getAnalysis<MachineLoopInfo>();
324 DT = &getAnalysis<MachineDominatorTree>();
325 AA = &getAnalysis<AliasAnalysis>();
Bill Wendling0f940c92007-12-07 21:42:31 +0000326
Dan Gohmanaa742602010-07-09 18:49:45 +0000327 SmallVector<MachineLoop *, 8> Worklist(MLI->begin(), MLI->end());
328 while (!Worklist.empty()) {
329 CurLoop = Worklist.pop_back_val();
Dan Gohman853d3fb2010-06-22 17:25:57 +0000330 CurPreheader = 0;
Bill Wendling0f940c92007-12-07 21:42:31 +0000331
Evan Cheng4038f9c2010-04-08 01:03:47 +0000332 // If this is done before regalloc, only visit outer-most preheader-sporting
333 // loops.
Dan Gohmanaa742602010-07-09 18:49:45 +0000334 if (PreRegAlloc && !LoopIsOuterMostWithPredecessor(CurLoop)) {
335 Worklist.append(CurLoop->begin(), CurLoop->end());
Dan Gohmanc475c362009-01-15 22:01:38 +0000336 continue;
Dan Gohmanaa742602010-07-09 18:49:45 +0000337 }
Dan Gohmanc475c362009-01-15 22:01:38 +0000338
Bill Wendlingc83693f2011-10-11 22:42:31 +0000339 // If the header is a landing pad, then we don't want to hoist instructions
340 // out of it. This can happen with SjLj exception handling which has a
341 // dispatch table as the landing pad.
342 if (CurLoop->getHeader()->isLandingPad()) continue;
343
Evan Chengd94671a2010-04-07 00:41:17 +0000344 if (!PreRegAlloc)
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000345 HoistRegionPostRA();
Evan Chengd94671a2010-04-07 00:41:17 +0000346 else {
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000347 // CSEMap is initialized for loop header when the first instruction is
348 // being hoisted.
349 MachineDomTreeNode *N = DT->getNode(CurLoop->getHeader());
Evan Cheng82e0a1a2010-05-29 00:06:36 +0000350 FirstInLoop = true;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000351 HoistRegion(N, true);
Evan Chengd94671a2010-04-07 00:41:17 +0000352 CSEMap.clear();
353 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000354 }
355
356 return Changed;
357}
358
Evan Cheng4038f9c2010-04-08 01:03:47 +0000359/// InstructionStoresToFI - Return true if instruction stores to the
360/// specified frame.
361static bool InstructionStoresToFI(const MachineInstr *MI, int FI) {
362 for (MachineInstr::mmo_iterator o = MI->memoperands_begin(),
363 oe = MI->memoperands_end(); o != oe; ++o) {
364 if (!(*o)->isStore() || !(*o)->getValue())
365 continue;
366 if (const FixedStackPseudoSourceValue *Value =
367 dyn_cast<const FixedStackPseudoSourceValue>((*o)->getValue())) {
368 if (Value->getFrameIndex() == FI)
369 return true;
370 }
371 }
372 return false;
373}
374
375/// ProcessMI - Examine the instruction for potentai LICM candidate. Also
376/// gather register def and frame object update information.
377void MachineLICM::ProcessMI(MachineInstr *MI,
378 unsigned *PhysRegDefs,
379 SmallSet<int, 32> &StoredFIs,
380 SmallVector<CandidateInfo, 32> &Candidates) {
381 bool RuledOut = false;
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000382 bool HasNonInvariantUse = false;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000383 unsigned Def = 0;
384 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
385 const MachineOperand &MO = MI->getOperand(i);
386 if (MO.isFI()) {
387 // Remember if the instruction stores to the frame index.
388 int FI = MO.getIndex();
389 if (!StoredFIs.count(FI) &&
390 MFI->isSpillSlotObjectIndex(FI) &&
391 InstructionStoresToFI(MI, FI))
392 StoredFIs.insert(FI);
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000393 HasNonInvariantUse = true;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000394 continue;
395 }
396
397 if (!MO.isReg())
398 continue;
399 unsigned Reg = MO.getReg();
400 if (!Reg)
401 continue;
402 assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
403 "Not expecting virtual register!");
404
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000405 if (!MO.isDef()) {
Evan Cheng63275372010-04-13 22:13:34 +0000406 if (Reg && PhysRegDefs[Reg])
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000407 // If it's using a non-loop-invariant register, then it's obviously not
408 // safe to hoist.
409 HasNonInvariantUse = true;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000410 continue;
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000411 }
Evan Cheng4038f9c2010-04-08 01:03:47 +0000412
413 if (MO.isImplicit()) {
414 ++PhysRegDefs[Reg];
415 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
416 ++PhysRegDefs[*AS];
417 if (!MO.isDead())
418 // Non-dead implicit def? This cannot be hoisted.
419 RuledOut = true;
420 // No need to check if a dead implicit def is also defined by
421 // another instruction.
422 continue;
423 }
424
425 // FIXME: For now, avoid instructions with multiple defs, unless
426 // it's a dead implicit def.
427 if (Def)
428 RuledOut = true;
429 else
430 Def = Reg;
431
432 // If we have already seen another instruction that defines the same
433 // register, then this is not safe.
434 if (++PhysRegDefs[Reg] > 1)
435 // MI defined register is seen defined by another instruction in
436 // the loop, it cannot be a LICM candidate.
437 RuledOut = true;
438 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
439 if (++PhysRegDefs[*AS] > 1)
440 RuledOut = true;
441 }
442
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000443 // Only consider reloads for now and remats which do not have register
444 // operands. FIXME: Consider unfold load folding instructions.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000445 if (Def && !RuledOut) {
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000446 int FI = INT_MIN;
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000447 if ((!HasNonInvariantUse && IsLICMCandidate(*MI)) ||
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000448 (TII->isLoadFromStackSlot(MI, FI) && MFI->isSpillSlotObjectIndex(FI)))
449 Candidates.push_back(CandidateInfo(MI, Def, FI));
Evan Cheng4038f9c2010-04-08 01:03:47 +0000450 }
451}
452
453/// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop
454/// invariants out to the preheader.
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000455void MachineLICM::HoistRegionPostRA() {
Evan Chengd94671a2010-04-07 00:41:17 +0000456 unsigned NumRegs = TRI->getNumRegs();
457 unsigned *PhysRegDefs = new unsigned[NumRegs];
458 std::fill(PhysRegDefs, PhysRegDefs + NumRegs, 0);
459
Evan Cheng4038f9c2010-04-08 01:03:47 +0000460 SmallVector<CandidateInfo, 32> Candidates;
Evan Chengd94671a2010-04-07 00:41:17 +0000461 SmallSet<int, 32> StoredFIs;
462
463 // Walk the entire region, count number of defs for each register, and
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000464 // collect potential LICM candidates.
465 const std::vector<MachineBasicBlock*> Blocks = CurLoop->getBlocks();
466 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
467 MachineBasicBlock *BB = Blocks[i];
Evan Chengd94671a2010-04-07 00:41:17 +0000468 // Conservatively treat live-in's as an external def.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000469 // FIXME: That means a reload that're reused in successor block(s) will not
470 // be LICM'ed.
Dan Gohman81bf03e2010-04-13 16:57:55 +0000471 for (MachineBasicBlock::livein_iterator I = BB->livein_begin(),
Evan Chengd94671a2010-04-07 00:41:17 +0000472 E = BB->livein_end(); I != E; ++I) {
473 unsigned Reg = *I;
474 ++PhysRegDefs[Reg];
Evan Cheng4038f9c2010-04-08 01:03:47 +0000475 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
476 ++PhysRegDefs[*AS];
Evan Chengd94671a2010-04-07 00:41:17 +0000477 }
478
Devang Patel2e350472011-10-11 18:09:58 +0000479 NeedToCheckMBBDominance = true;
Evan Chengd94671a2010-04-07 00:41:17 +0000480 for (MachineBasicBlock::iterator
481 MII = BB->begin(), E = BB->end(); MII != E; ++MII) {
Evan Chengd94671a2010-04-07 00:41:17 +0000482 MachineInstr *MI = &*MII;
Evan Cheng4038f9c2010-04-08 01:03:47 +0000483 ProcessMI(MI, PhysRegDefs, StoredFIs, Candidates);
Evan Chengd94671a2010-04-07 00:41:17 +0000484 }
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000485 }
Evan Chengd94671a2010-04-07 00:41:17 +0000486
487 // Now evaluate whether the potential candidates qualify.
488 // 1. Check if the candidate defined register is defined by another
489 // instruction in the loop.
490 // 2. If the candidate is a load from stack slot (always true for now),
491 // check if the slot is stored anywhere in the loop.
492 for (unsigned i = 0, e = Candidates.size(); i != e; ++i) {
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000493 if (Candidates[i].FI != INT_MIN &&
494 StoredFIs.count(Candidates[i].FI))
Evan Chengd94671a2010-04-07 00:41:17 +0000495 continue;
496
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000497 if (PhysRegDefs[Candidates[i].Def] == 1) {
498 bool Safe = true;
499 MachineInstr *MI = Candidates[i].MI;
Evan Chengc15d9132010-04-13 20:25:29 +0000500 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
501 const MachineOperand &MO = MI->getOperand(j);
Evan Cheng63275372010-04-13 22:13:34 +0000502 if (!MO.isReg() || MO.isDef() || !MO.getReg())
Evan Chengaeb2f4a2010-04-13 20:21:05 +0000503 continue;
504 if (PhysRegDefs[MO.getReg()]) {
505 // If it's using a non-loop-invariant register, then it's obviously
506 // not safe to hoist.
507 Safe = false;
508 break;
509 }
510 }
511 if (Safe)
512 HoistPostRA(MI, Candidates[i].Def);
513 }
Evan Chengd94671a2010-04-07 00:41:17 +0000514 }
Benjamin Kramer678d9b72010-04-12 11:38:35 +0000515
516 delete[] PhysRegDefs;
Evan Chengd94671a2010-04-07 00:41:17 +0000517}
518
Jakob Stoklund Olesen9196ab62010-04-20 18:45:47 +0000519/// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the current
520/// loop, and make sure it is not killed by any instructions in the loop.
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000521void MachineLICM::AddToLiveIns(unsigned Reg) {
522 const std::vector<MachineBasicBlock*> Blocks = CurLoop->getBlocks();
Jakob Stoklund Olesen9196ab62010-04-20 18:45:47 +0000523 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
524 MachineBasicBlock *BB = Blocks[i];
525 if (!BB->isLiveIn(Reg))
526 BB->addLiveIn(Reg);
527 for (MachineBasicBlock::iterator
528 MII = BB->begin(), E = BB->end(); MII != E; ++MII) {
529 MachineInstr *MI = &*MII;
530 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
531 MachineOperand &MO = MI->getOperand(i);
532 if (!MO.isReg() || !MO.getReg() || MO.isDef()) continue;
533 if (MO.getReg() == Reg || TRI->isSuperRegister(Reg, MO.getReg()))
534 MO.setIsKill(false);
535 }
536 }
537 }
Evan Cheng4038f9c2010-04-08 01:03:47 +0000538}
539
540/// HoistPostRA - When an instruction is found to only use loop invariant
541/// operands that is safe to hoist, this instruction is called to do the
542/// dirty work.
543void MachineLICM::HoistPostRA(MachineInstr *MI, unsigned Def) {
Dan Gohman853d3fb2010-06-22 17:25:57 +0000544 MachineBasicBlock *Preheader = getCurPreheader();
545 if (!Preheader) return;
546
Evan Chengd94671a2010-04-07 00:41:17 +0000547 // Now move the instructions to the predecessor, inserting it before any
548 // terminator instructions.
549 DEBUG({
550 dbgs() << "Hoisting " << *MI;
Dan Gohman853d3fb2010-06-22 17:25:57 +0000551 if (Preheader->getBasicBlock())
Evan Chengd94671a2010-04-07 00:41:17 +0000552 dbgs() << " to MachineBasicBlock "
Dan Gohman853d3fb2010-06-22 17:25:57 +0000553 << Preheader->getName();
Evan Chengd94671a2010-04-07 00:41:17 +0000554 if (MI->getParent()->getBasicBlock())
555 dbgs() << " from MachineBasicBlock "
556 << MI->getParent()->getName();
557 dbgs() << "\n";
558 });
559
560 // Splice the instruction to the preheader.
Evan Cheng4038f9c2010-04-08 01:03:47 +0000561 MachineBasicBlock *MBB = MI->getParent();
Dan Gohman853d3fb2010-06-22 17:25:57 +0000562 Preheader->splice(Preheader->getFirstTerminator(), MBB, MI);
Evan Cheng4038f9c2010-04-08 01:03:47 +0000563
Evan Cheng94d1d9c2010-04-17 07:07:11 +0000564 // Add register to livein list to all the BBs in the current loop since a
565 // loop invariant must be kept live throughout the whole loop. This is
566 // important to ensure later passes do not scavenge the def register.
567 AddToLiveIns(Def);
Evan Chengd94671a2010-04-07 00:41:17 +0000568
569 ++NumPostRAHoisted;
570 Changed = true;
571}
572
Devang Patel2e350472011-10-11 18:09:58 +0000573// IsGuaranteedToExecute - Check if this mbb is guaranteed to execute.
574// If not then a load from this mbb may not be safe to hoist.
575bool MachineLICM::IsGuaranteedToExecute(MachineBasicBlock *BB) {
576 // Do not check if we already have checked it once.
577 if (NeedToCheckMBBDominance == false)
578 return CurrentMBBDominatesLoopExitingBlocks;
579
580 NeedToCheckMBBDominance = false;
581
582 if (BB != CurLoop->getHeader()) {
583 // Check loop exiting blocks.
584 SmallVector<MachineBasicBlock*, 8> CurrentLoopExitingBlocks;
585 CurLoop->getExitingBlocks(CurrentLoopExitingBlocks);
586 for (unsigned i = 0, e = CurrentLoopExitingBlocks.size(); i != e; ++i)
587 if (!DT->dominates(BB, CurrentLoopExitingBlocks[i])) {
588 CurrentMBBDominatesLoopExitingBlocks = false;
589 return CurrentMBBDominatesLoopExitingBlocks;
590 }
591 }
592
593 CurrentMBBDominatesLoopExitingBlocks = true;
594 return CurrentMBBDominatesLoopExitingBlocks;
595}
596
Bill Wendling0f940c92007-12-07 21:42:31 +0000597/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
598/// dominated by the specified block, and that are in the current loop) in depth
599/// first order w.r.t the DominatorTree. This allows us to visit definitions
600/// before uses, allowing us to hoist a loop body in one pass without iteration.
601///
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000602void MachineLICM::HoistRegion(MachineDomTreeNode *N, bool IsHeader) {
Bill Wendling0f940c92007-12-07 21:42:31 +0000603 assert(N != 0 && "Null dominator tree node?");
604 MachineBasicBlock *BB = N->getBlock();
605
606 // If this subregion is not in the top level loop at all, exit.
607 if (!CurLoop->contains(BB)) return;
608
Evan Cheng0e673912010-10-14 01:16:09 +0000609 MachineBasicBlock *Preheader = getCurPreheader();
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000610 if (!Preheader)
611 return;
Evan Cheng0e673912010-10-14 01:16:09 +0000612
Evan Cheng23128422010-10-19 18:58:51 +0000613 if (IsHeader) {
Evan Cheng134982d2010-10-20 22:03:58 +0000614 // Compute registers which are livein into the loop headers.
Evan Cheng23128422010-10-19 18:58:51 +0000615 RegSeen.clear();
616 BackTrace.clear();
617 InitRegPressure(Preheader);
Daniel Dunbar98694132010-10-19 17:14:24 +0000618 }
Evan Cheng11e8b742010-10-19 00:55:07 +0000619
Evan Cheng23128422010-10-19 18:58:51 +0000620 // Remember livein register pressure.
621 BackTrace.push_back(RegPressure);
622
Devang Patel2e350472011-10-11 18:09:58 +0000623 NeedToCheckMBBDominance = true;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000624 for (MachineBasicBlock::iterator
625 MII = BB->begin(), E = BB->end(); MII != E; ) {
626 MachineBasicBlock::iterator NextMII = MII; ++NextMII;
627 MachineInstr *MI = &*MII;
Evan Cheng134982d2010-10-20 22:03:58 +0000628 if (!Hoist(MI, Preheader))
629 UpdateRegPressure(MI);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000630 MII = NextMII;
Dan Gohmanc475c362009-01-15 22:01:38 +0000631 }
Bill Wendling0f940c92007-12-07 21:42:31 +0000632
Dale Johannesenbf1ae5e2010-07-20 00:50:13 +0000633 // Don't hoist things out of a large switch statement. This often causes
634 // code to be hoisted that wasn't going to be executed, and increases
635 // register pressure in a situation where it's likely to matter.
Dale Johannesen21d35c12010-07-20 21:29:12 +0000636 if (BB->succ_size() < 25) {
637 const std::vector<MachineDomTreeNode*> &Children = N->getChildren();
Dale Johannesenbf1ae5e2010-07-20 00:50:13 +0000638 for (unsigned I = 0, E = Children.size(); I != E; ++I)
639 HoistRegion(Children[I]);
Dale Johannesen21d35c12010-07-20 21:29:12 +0000640 }
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000641
Evan Cheng23128422010-10-19 18:58:51 +0000642 BackTrace.pop_back();
Bill Wendling0f940c92007-12-07 21:42:31 +0000643}
644
Evan Cheng134982d2010-10-20 22:03:58 +0000645static bool isOperandKill(const MachineOperand &MO, MachineRegisterInfo *MRI) {
646 return MO.isKill() || MRI->hasOneNonDBGUse(MO.getReg());
647}
648
Evan Cheng61560e22011-09-01 01:45:00 +0000649/// getRegisterClassIDAndCost - For a given MI, register, and the operand
650/// index, return the ID and cost of its representative register class.
651void
652MachineLICM::getRegisterClassIDAndCost(const MachineInstr *MI,
653 unsigned Reg, unsigned OpIdx,
654 unsigned &RCId, unsigned &RCCost) const {
655 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
656 EVT VT = *RC->vt_begin();
657 if (VT == MVT::untyped) {
658 RCId = RC->getID();
659 RCCost = 1;
660 } else {
661 RCId = TLI->getRepRegClassFor(VT)->getID();
662 RCCost = TLI->getRepRegClassCostFor(VT);
663 }
664}
665
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000666/// InitRegPressure - Find all virtual register references that are liveout of
667/// the preheader to initialize the starting "register pressure". Note this
668/// does not count live through (livein but not used) registers.
Evan Cheng0e673912010-10-14 01:16:09 +0000669void MachineLICM::InitRegPressure(MachineBasicBlock *BB) {
Evan Cheng0e673912010-10-14 01:16:09 +0000670 std::fill(RegPressure.begin(), RegPressure.end(), 0);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000671
Evan Cheng134982d2010-10-20 22:03:58 +0000672 // If the preheader has only a single predecessor and it ends with a
673 // fallthrough or an unconditional branch, then scan its predecessor for live
674 // defs as well. This happens whenever the preheader is created by splitting
675 // the critical edge from the loop predecessor to the loop header.
676 if (BB->pred_size() == 1) {
677 MachineBasicBlock *TBB = 0, *FBB = 0;
678 SmallVector<MachineOperand, 4> Cond;
679 if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond, false) && Cond.empty())
680 InitRegPressure(*BB->pred_begin());
681 }
682
Evan Cheng0e673912010-10-14 01:16:09 +0000683 for (MachineBasicBlock::iterator MII = BB->begin(), E = BB->end();
684 MII != E; ++MII) {
685 MachineInstr *MI = &*MII;
686 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
687 const MachineOperand &MO = MI->getOperand(i);
688 if (!MO.isReg() || MO.isImplicit())
689 continue;
690 unsigned Reg = MO.getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000691 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng0e673912010-10-14 01:16:09 +0000692 continue;
Evan Cheng0e673912010-10-14 01:16:09 +0000693
Andrew Trickdc986d22010-10-19 02:50:50 +0000694 bool isNew = RegSeen.insert(Reg);
Evan Cheng61560e22011-09-01 01:45:00 +0000695 unsigned RCId, RCCost;
696 getRegisterClassIDAndCost(MI, Reg, i, RCId, RCCost);
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000697 if (MO.isDef())
Evan Cheng61560e22011-09-01 01:45:00 +0000698 RegPressure[RCId] += RCCost;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000699 else {
Evan Cheng134982d2010-10-20 22:03:58 +0000700 bool isKill = isOperandKill(MO, MRI);
701 if (isNew && !isKill)
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000702 // Haven't seen this, it must be a livein.
Evan Cheng61560e22011-09-01 01:45:00 +0000703 RegPressure[RCId] += RCCost;
Evan Cheng134982d2010-10-20 22:03:58 +0000704 else if (!isNew && isKill)
Evan Cheng61560e22011-09-01 01:45:00 +0000705 RegPressure[RCId] -= RCCost;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000706 }
Evan Cheng0e673912010-10-14 01:16:09 +0000707 }
708 }
709}
710
Evan Cheng134982d2010-10-20 22:03:58 +0000711/// UpdateRegPressure - Update estimate of register pressure after the
712/// specified instruction.
713void MachineLICM::UpdateRegPressure(const MachineInstr *MI) {
714 if (MI->isImplicitDef())
715 return;
Evan Cheng0e673912010-10-14 01:16:09 +0000716
Evan Cheng134982d2010-10-20 22:03:58 +0000717 SmallVector<unsigned, 4> Defs;
Evan Cheng0e673912010-10-14 01:16:09 +0000718 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
719 const MachineOperand &MO = MI->getOperand(i);
Evan Cheng23128422010-10-19 18:58:51 +0000720 if (!MO.isReg() || MO.isImplicit())
Evan Cheng0e673912010-10-14 01:16:09 +0000721 continue;
722 unsigned Reg = MO.getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000723 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng0e673912010-10-14 01:16:09 +0000724 continue;
725
Andrew Trickdc986d22010-10-19 02:50:50 +0000726 bool isNew = RegSeen.insert(Reg);
Evan Cheng23128422010-10-19 18:58:51 +0000727 if (MO.isDef())
728 Defs.push_back(Reg);
Evan Cheng134982d2010-10-20 22:03:58 +0000729 else if (!isNew && isOperandKill(MO, MRI)) {
Evan Cheng61560e22011-09-01 01:45:00 +0000730 unsigned RCId, RCCost;
731 getRegisterClassIDAndCost(MI, Reg, i, RCId, RCCost);
Evan Cheng134982d2010-10-20 22:03:58 +0000732 if (RCCost > RegPressure[RCId])
733 RegPressure[RCId] = 0;
734 else
Evan Cheng23128422010-10-19 18:58:51 +0000735 RegPressure[RCId] -= RCCost;
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000736 }
Evan Cheng0e673912010-10-14 01:16:09 +0000737 }
Evan Cheng0e673912010-10-14 01:16:09 +0000738
Evan Cheng61560e22011-09-01 01:45:00 +0000739 unsigned Idx = 0;
Evan Cheng23128422010-10-19 18:58:51 +0000740 while (!Defs.empty()) {
741 unsigned Reg = Defs.pop_back_val();
Evan Cheng61560e22011-09-01 01:45:00 +0000742 unsigned RCId, RCCost;
743 getRegisterClassIDAndCost(MI, Reg, Idx, RCId, RCCost);
Evan Cheng0e673912010-10-14 01:16:09 +0000744 RegPressure[RCId] += RCCost;
Evan Cheng61560e22011-09-01 01:45:00 +0000745 ++Idx;
Evan Cheng0e673912010-10-14 01:16:09 +0000746 }
747}
748
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000749/// IsLICMCandidate - Returns true if the instruction may be a suitable
750/// candidate for LICM. e.g. If the instruction is a call, then it's obviously
751/// not safe to hoist it.
752bool MachineLICM::IsLICMCandidate(MachineInstr &I) {
Chris Lattner77910802010-07-12 00:00:35 +0000753 // Check if it's safe to move the instruction.
754 bool DontMoveAcrossStore = true;
755 if (!I.isSafeToMove(TII, AA, DontMoveAcrossStore))
Chris Lattnera22edc82008-01-10 23:08:24 +0000756 return false;
Devang Patel2e350472011-10-11 18:09:58 +0000757
758 // If it is load then check if it is guaranteed to execute by making sure that
759 // it dominates all exiting blocks. If it doesn't, then there is a path out of
760 // the loop which does not execute this load, so we can't hoist it.
761 // Stores and side effects are already checked by isSafeToMove.
762 if (I.getDesc().mayLoad() && !IsGuaranteedToExecute(I.getParent()))
763 return false;
764
Evan Cheng5dc57ce2010-04-13 18:16:00 +0000765 return true;
766}
767
768/// IsLoopInvariantInst - Returns true if the instruction is loop
769/// invariant. I.e., all virtual register operands are defined outside of the
770/// loop, physical registers aren't accessed explicitly, and there are no side
771/// effects that aren't captured by the operands or other flags.
772///
773bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) {
774 if (!IsLICMCandidate(I))
775 return false;
Bill Wendling074223a2008-03-10 08:13:01 +0000776
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000777 // The instruction is loop invariant if all of its operands are.
Bill Wendling0f940c92007-12-07 21:42:31 +0000778 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
779 const MachineOperand &MO = I.getOperand(i);
780
Dan Gohmand735b802008-10-03 15:45:36 +0000781 if (!MO.isReg())
Bill Wendlingfb018d02008-08-20 20:32:05 +0000782 continue;
783
Dan Gohmanc475c362009-01-15 22:01:38 +0000784 unsigned Reg = MO.getReg();
785 if (Reg == 0) continue;
786
787 // Don't hoist an instruction that uses or defines a physical register.
Dan Gohmana8fb3362009-09-25 23:58:45 +0000788 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Dan Gohmana8fb3362009-09-25 23:58:45 +0000789 if (MO.isUse()) {
790 // If the physreg has no defs anywhere, it's just an ambient register
Dan Gohman45094e32009-09-26 02:34:00 +0000791 // and we can freely move its uses. Alternatively, if it's allocatable,
792 // it could get allocated to something with a def during allocation.
Evan Cheng0e673912010-10-14 01:16:09 +0000793 if (!MRI->def_empty(Reg))
Dan Gohmana8fb3362009-09-25 23:58:45 +0000794 return false;
Dan Gohman45094e32009-09-26 02:34:00 +0000795 if (AllocatableSet.test(Reg))
796 return false;
Dan Gohmana8fb3362009-09-25 23:58:45 +0000797 // Check for a def among the register's aliases too.
Dan Gohman45094e32009-09-26 02:34:00 +0000798 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
799 unsigned AliasReg = *Alias;
Evan Cheng0e673912010-10-14 01:16:09 +0000800 if (!MRI->def_empty(AliasReg))
Dan Gohmana8fb3362009-09-25 23:58:45 +0000801 return false;
Dan Gohman45094e32009-09-26 02:34:00 +0000802 if (AllocatableSet.test(AliasReg))
803 return false;
804 }
Dan Gohmana8fb3362009-09-25 23:58:45 +0000805 // Otherwise it's safe to move.
806 continue;
807 } else if (!MO.isDead()) {
808 // A def that isn't dead. We can't move it.
809 return false;
Dan Gohmana363a9b2010-02-28 00:08:44 +0000810 } else if (CurLoop->getHeader()->isLiveIn(Reg)) {
811 // If the reg is live into the loop, we can't hoist an instruction
812 // which would clobber it.
813 return false;
Dan Gohmana8fb3362009-09-25 23:58:45 +0000814 }
815 }
Bill Wendlingfb018d02008-08-20 20:32:05 +0000816
817 if (!MO.isUse())
Bill Wendling0f940c92007-12-07 21:42:31 +0000818 continue;
819
Evan Cheng0e673912010-10-14 01:16:09 +0000820 assert(MRI->getVRegDef(Reg) &&
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +0000821 "Machine instr not mapped for this vreg?!");
Bill Wendling0f940c92007-12-07 21:42:31 +0000822
823 // If the loop contains the definition of an operand, then the instruction
824 // isn't loop invariant.
Evan Cheng0e673912010-10-14 01:16:09 +0000825 if (CurLoop->contains(MRI->getVRegDef(Reg)))
Bill Wendling0f940c92007-12-07 21:42:31 +0000826 return false;
827 }
828
829 // If we got this far, the instruction is loop invariant!
830 return true;
831}
832
Evan Chengaf6949d2009-02-05 08:45:46 +0000833
Evan Chengd67705f2011-04-11 21:09:18 +0000834/// HasAnyPHIUse - Return true if the specified register is used by any
835/// phi node.
836bool MachineLICM::HasAnyPHIUse(unsigned Reg) const {
Evan Cheng0e673912010-10-14 01:16:09 +0000837 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
838 UE = MRI->use_end(); UI != UE; ++UI) {
Evan Cheng45e94d62009-02-04 09:19:56 +0000839 MachineInstr *UseMI = &*UI;
Chris Lattner518bb532010-02-09 19:54:29 +0000840 if (UseMI->isPHI())
Evan Chengaf6949d2009-02-05 08:45:46 +0000841 return true;
Evan Chengd67705f2011-04-11 21:09:18 +0000842 // Look pass copies as well.
843 if (UseMI->isCopy()) {
844 unsigned Def = UseMI->getOperand(0).getReg();
845 if (TargetRegisterInfo::isVirtualRegister(Def) &&
846 HasAnyPHIUse(Def))
847 return true;
848 }
Evan Cheng45e94d62009-02-04 09:19:56 +0000849 }
Evan Chengaf6949d2009-02-05 08:45:46 +0000850 return false;
Evan Cheng45e94d62009-02-04 09:19:56 +0000851}
852
Evan Cheng23128422010-10-19 18:58:51 +0000853/// HasHighOperandLatency - Compute operand latency between a def of 'Reg'
854/// and an use in the current loop, return true if the target considered
855/// it 'high'.
856bool MachineLICM::HasHighOperandLatency(MachineInstr &MI,
Evan Chengc8141df2010-10-26 02:08:50 +0000857 unsigned DefIdx, unsigned Reg) const {
858 if (!InstrItins || InstrItins->isEmpty() || MRI->use_nodbg_empty(Reg))
Evan Cheng23128422010-10-19 18:58:51 +0000859 return false;
Evan Cheng0e673912010-10-14 01:16:09 +0000860
Evan Cheng0e673912010-10-14 01:16:09 +0000861 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg),
862 E = MRI->use_nodbg_end(); I != E; ++I) {
863 MachineInstr *UseMI = &*I;
Evan Chengc8141df2010-10-26 02:08:50 +0000864 if (UseMI->isCopyLike())
865 continue;
Evan Cheng0e673912010-10-14 01:16:09 +0000866 if (!CurLoop->contains(UseMI->getParent()))
867 continue;
868 for (unsigned i = 0, e = UseMI->getNumOperands(); i != e; ++i) {
869 const MachineOperand &MO = UseMI->getOperand(i);
870 if (!MO.isReg() || !MO.isUse())
871 continue;
872 unsigned MOReg = MO.getReg();
873 if (MOReg != Reg)
874 continue;
875
Evan Cheng23128422010-10-19 18:58:51 +0000876 if (TII->hasHighOperandLatency(InstrItins, MRI, &MI, DefIdx, UseMI, i))
877 return true;
Evan Cheng0e673912010-10-14 01:16:09 +0000878 }
879
Evan Cheng23128422010-10-19 18:58:51 +0000880 // Only look at the first in loop use.
881 break;
Evan Cheng0e673912010-10-14 01:16:09 +0000882 }
883
Evan Cheng23128422010-10-19 18:58:51 +0000884 return false;
Evan Cheng0e673912010-10-14 01:16:09 +0000885}
886
Evan Chengc8141df2010-10-26 02:08:50 +0000887/// IsCheapInstruction - Return true if the instruction is marked "cheap" or
888/// the operand latency between its def and a use is one or less.
889bool MachineLICM::IsCheapInstruction(MachineInstr &MI) const {
890 if (MI.getDesc().isAsCheapAsAMove() || MI.isCopyLike())
891 return true;
892 if (!InstrItins || InstrItins->isEmpty())
893 return false;
894
895 bool isCheap = false;
896 unsigned NumDefs = MI.getDesc().getNumDefs();
897 for (unsigned i = 0, e = MI.getNumOperands(); NumDefs && i != e; ++i) {
898 MachineOperand &DefMO = MI.getOperand(i);
899 if (!DefMO.isReg() || !DefMO.isDef())
900 continue;
901 --NumDefs;
902 unsigned Reg = DefMO.getReg();
903 if (TargetRegisterInfo::isPhysicalRegister(Reg))
904 continue;
905
906 if (!TII->hasLowDefLatency(InstrItins, &MI, i))
907 return false;
908 isCheap = true;
909 }
910
911 return isCheap;
912}
913
Evan Cheng134982d2010-10-20 22:03:58 +0000914/// CanCauseHighRegPressure - Visit BBs from header to current BB, check
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000915/// if hoisting an instruction of the given cost matrix can cause high
916/// register pressure.
Evan Cheng134982d2010-10-20 22:03:58 +0000917bool MachineLICM::CanCauseHighRegPressure(DenseMap<unsigned, int> &Cost) {
918 for (DenseMap<unsigned, int>::iterator CI = Cost.begin(), CE = Cost.end();
919 CI != CE; ++CI) {
920 if (CI->second <= 0)
921 continue;
922
923 unsigned RCId = CI->first;
924 for (unsigned i = BackTrace.size(); i != 0; --i) {
925 SmallVector<unsigned, 8> &RP = BackTrace[i-1];
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000926 if (RP[RCId] + CI->second >= RegLimit[RCId])
927 return true;
928 }
Evan Cheng03a9fdf2010-10-16 02:20:26 +0000929 }
930
931 return false;
932}
933
Evan Cheng134982d2010-10-20 22:03:58 +0000934/// UpdateBackTraceRegPressure - Traverse the back trace from header to the
935/// current block and update their register pressures to reflect the effect
936/// of hoisting MI from the current block to the preheader.
937void MachineLICM::UpdateBackTraceRegPressure(const MachineInstr *MI) {
938 if (MI->isImplicitDef())
939 return;
940
941 // First compute the 'cost' of the instruction, i.e. its contribution
942 // to register pressure.
943 DenseMap<unsigned, int> Cost;
944 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
945 const MachineOperand &MO = MI->getOperand(i);
946 if (!MO.isReg() || MO.isImplicit())
947 continue;
948 unsigned Reg = MO.getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000949 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng134982d2010-10-20 22:03:58 +0000950 continue;
951
Evan Cheng61560e22011-09-01 01:45:00 +0000952 unsigned RCId, RCCost;
953 getRegisterClassIDAndCost(MI, Reg, i, RCId, RCCost);
Evan Cheng134982d2010-10-20 22:03:58 +0000954 if (MO.isDef()) {
955 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
956 if (CI != Cost.end())
957 CI->second += RCCost;
958 else
959 Cost.insert(std::make_pair(RCId, RCCost));
960 } else if (isOperandKill(MO, MRI)) {
961 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
962 if (CI != Cost.end())
963 CI->second -= RCCost;
964 else
965 Cost.insert(std::make_pair(RCId, -RCCost));
966 }
967 }
968
969 // Update register pressure of blocks from loop header to current block.
970 for (unsigned i = 0, e = BackTrace.size(); i != e; ++i) {
971 SmallVector<unsigned, 8> &RP = BackTrace[i];
972 for (DenseMap<unsigned, int>::iterator CI = Cost.begin(), CE = Cost.end();
973 CI != CE; ++CI) {
974 unsigned RCId = CI->first;
975 RP[RCId] += CI->second;
976 }
977 }
978}
979
Evan Cheng45e94d62009-02-04 09:19:56 +0000980/// IsProfitableToHoist - Return true if it is potentially profitable to hoist
981/// the given loop invariant.
Evan Chengc26abd92009-11-20 23:31:34 +0000982bool MachineLICM::IsProfitableToHoist(MachineInstr &MI) {
Evan Cheng0e673912010-10-14 01:16:09 +0000983 if (MI.isImplicitDef())
984 return true;
985
Evan Cheng23128422010-10-19 18:58:51 +0000986 // If the instruction is cheap, only hoist if it is re-materilizable. LICM
987 // will increase register pressure. It's probably not worth it if the
988 // instruction is cheap.
Evan Cheng87b75ba2009-11-20 19:55:37 +0000989 // Also hoist loads from constant memory, e.g. load from stubs, GOT. Hoisting
990 // these tend to help performance in low register pressure situation. The
991 // trade off is it may cause spill in high pressure situation. It will end up
992 // adding a store in the loop preheader. But the reload is no more expensive.
993 // The side benefit is these loads are frequently CSE'ed.
Evan Chengc8141df2010-10-26 02:08:50 +0000994 if (IsCheapInstruction(MI)) {
Evan Cheng23128422010-10-19 18:58:51 +0000995 if (!TII->isTriviallyReMaterializable(&MI, AA))
Evan Cheng0e673912010-10-14 01:16:09 +0000996 return false;
997 } else {
Evan Cheng23128422010-10-19 18:58:51 +0000998 // Estimate register pressure to determine whether to LICM the instruction.
Evan Cheng0e673912010-10-14 01:16:09 +0000999 // In low register pressure situation, we can be more aggressive about
1000 // hoisting. Also, favors hoisting long latency instructions even in
1001 // moderately high pressure situation.
Dan Gohmanfca0b102010-11-11 18:08:43 +00001002 // FIXME: If there are long latency loop-invariant instructions inside the
1003 // loop at this point, why didn't the optimizer's LICM hoist them?
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001004 DenseMap<unsigned, int> Cost;
Evan Cheng0e673912010-10-14 01:16:09 +00001005 for (unsigned i = 0, e = MI.getDesc().getNumOperands(); i != e; ++i) {
1006 const MachineOperand &MO = MI.getOperand(i);
1007 if (!MO.isReg() || MO.isImplicit())
1008 continue;
1009 unsigned Reg = MO.getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00001010 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng0e673912010-10-14 01:16:09 +00001011 continue;
Evan Cheng61560e22011-09-01 01:45:00 +00001012
1013 unsigned RCId, RCCost;
1014 getRegisterClassIDAndCost(&MI, Reg, i, RCId, RCCost);
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001015 if (MO.isDef()) {
Evan Cheng23128422010-10-19 18:58:51 +00001016 if (HasHighOperandLatency(MI, i, Reg)) {
1017 ++NumHighLatency;
1018 return true;
Evan Cheng0e673912010-10-14 01:16:09 +00001019 }
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001020
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001021 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001022 if (CI != Cost.end())
1023 CI->second += RCCost;
1024 else
1025 Cost.insert(std::make_pair(RCId, RCCost));
Evan Cheng134982d2010-10-20 22:03:58 +00001026 } else if (isOperandKill(MO, MRI)) {
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001027 // Is a virtual register use is a kill, hoisting it out of the loop
1028 // may actually reduce register pressure or be register pressure
Evan Cheng134982d2010-10-20 22:03:58 +00001029 // neutral.
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001030 DenseMap<unsigned, int>::iterator CI = Cost.find(RCId);
1031 if (CI != Cost.end())
1032 CI->second -= RCCost;
1033 else
1034 Cost.insert(std::make_pair(RCId, -RCCost));
Evan Cheng0e673912010-10-14 01:16:09 +00001035 }
1036 }
1037
Evan Cheng134982d2010-10-20 22:03:58 +00001038 // Visit BBs from header to current BB, if hoisting this doesn't cause
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001039 // high register pressure, then it's safe to proceed.
Evan Cheng134982d2010-10-20 22:03:58 +00001040 if (!CanCauseHighRegPressure(Cost)) {
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001041 ++NumLowRP;
Evan Cheng0e673912010-10-14 01:16:09 +00001042 return true;
Evan Cheng03a9fdf2010-10-16 02:20:26 +00001043 }
Evan Cheng0e673912010-10-14 01:16:09 +00001044
1045 // High register pressure situation, only hoist if the instruction is going to
1046 // be remat'ed.
1047 if (!TII->isTriviallyReMaterializable(&MI, AA) &&
Evan Cheng9fe20092011-01-20 08:34:58 +00001048 !MI.isInvariantLoad(AA))
Evan Cheng87b75ba2009-11-20 19:55:37 +00001049 return false;
Evan Cheng87b75ba2009-11-20 19:55:37 +00001050 }
Evan Cheng45e94d62009-02-04 09:19:56 +00001051
Evan Chengd67705f2011-04-11 21:09:18 +00001052 // If result(s) of this instruction is used by PHIs outside of the loop, then
1053 // don't hoist it if the instruction because it will introduce an extra copy.
Evan Cheng45e94d62009-02-04 09:19:56 +00001054 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1055 const MachineOperand &MO = MI.getOperand(i);
1056 if (!MO.isReg() || !MO.isDef())
1057 continue;
Evan Chengd67705f2011-04-11 21:09:18 +00001058 if (HasAnyPHIUse(MO.getReg()))
Evan Chengaf6949d2009-02-05 08:45:46 +00001059 return false;
Evan Cheng45e94d62009-02-04 09:19:56 +00001060 }
Evan Chengaf6949d2009-02-05 08:45:46 +00001061
1062 return true;
1063}
1064
Dan Gohman5c952302009-10-29 17:47:20 +00001065MachineInstr *MachineLICM::ExtractHoistableLoad(MachineInstr *MI) {
Evan Chenge95f3192010-10-08 18:59:19 +00001066 // Don't unfold simple loads.
1067 if (MI->getDesc().canFoldAsLoad())
1068 return 0;
1069
Dan Gohman5c952302009-10-29 17:47:20 +00001070 // If not, we may be able to unfold a load and hoist that.
1071 // First test whether the instruction is loading from an amenable
1072 // memory location.
Evan Cheng9fe20092011-01-20 08:34:58 +00001073 if (!MI->isInvariantLoad(AA))
Evan Cheng87b75ba2009-11-20 19:55:37 +00001074 return 0;
1075
Dan Gohman5c952302009-10-29 17:47:20 +00001076 // Next determine the register class for a temporary register.
Dan Gohman0115e162009-10-30 22:18:41 +00001077 unsigned LoadRegIndex;
Dan Gohman5c952302009-10-29 17:47:20 +00001078 unsigned NewOpc =
1079 TII->getOpcodeAfterMemoryUnfold(MI->getOpcode(),
1080 /*UnfoldLoad=*/true,
Dan Gohman0115e162009-10-30 22:18:41 +00001081 /*UnfoldStore=*/false,
1082 &LoadRegIndex);
Dan Gohman5c952302009-10-29 17:47:20 +00001083 if (NewOpc == 0) return 0;
Evan Chenge837dea2011-06-28 19:10:37 +00001084 const MCInstrDesc &MID = TII->get(NewOpc);
1085 if (MID.getNumDefs() != 1) return 0;
1086 const TargetRegisterClass *RC = TII->getRegClass(MID, LoadRegIndex, TRI);
Dan Gohman5c952302009-10-29 17:47:20 +00001087 // Ok, we're unfolding. Create a temporary register and do the unfold.
Evan Cheng0e673912010-10-14 01:16:09 +00001088 unsigned Reg = MRI->createVirtualRegister(RC);
Evan Cheng87b75ba2009-11-20 19:55:37 +00001089
1090 MachineFunction &MF = *MI->getParent()->getParent();
Dan Gohman5c952302009-10-29 17:47:20 +00001091 SmallVector<MachineInstr *, 2> NewMIs;
1092 bool Success =
1093 TII->unfoldMemoryOperand(MF, MI, Reg,
1094 /*UnfoldLoad=*/true, /*UnfoldStore=*/false,
1095 NewMIs);
1096 (void)Success;
1097 assert(Success &&
1098 "unfoldMemoryOperand failed when getOpcodeAfterMemoryUnfold "
1099 "succeeded!");
1100 assert(NewMIs.size() == 2 &&
1101 "Unfolded a load into multiple instructions!");
1102 MachineBasicBlock *MBB = MI->getParent();
1103 MBB->insert(MI, NewMIs[0]);
1104 MBB->insert(MI, NewMIs[1]);
1105 // If unfolding produced a load that wasn't loop-invariant or profitable to
1106 // hoist, discard the new instructions and bail.
Evan Chengc26abd92009-11-20 23:31:34 +00001107 if (!IsLoopInvariantInst(*NewMIs[0]) || !IsProfitableToHoist(*NewMIs[0])) {
Dan Gohman5c952302009-10-29 17:47:20 +00001108 NewMIs[0]->eraseFromParent();
1109 NewMIs[1]->eraseFromParent();
1110 return 0;
1111 }
Evan Cheng134982d2010-10-20 22:03:58 +00001112
1113 // Update register pressure for the unfolded instruction.
1114 UpdateRegPressure(NewMIs[1]);
1115
Dan Gohman5c952302009-10-29 17:47:20 +00001116 // Otherwise we successfully unfolded a load that we can hoist.
1117 MI->eraseFromParent();
1118 return NewMIs[0];
1119}
1120
Evan Cheng777c6b72009-11-03 21:40:02 +00001121void MachineLICM::InitCSEMap(MachineBasicBlock *BB) {
1122 for (MachineBasicBlock::iterator I = BB->begin(),E = BB->end(); I != E; ++I) {
1123 const MachineInstr *MI = &*I;
Evan Cheng9fe20092011-01-20 08:34:58 +00001124 unsigned Opcode = MI->getOpcode();
1125 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
1126 CI = CSEMap.find(Opcode);
1127 if (CI != CSEMap.end())
1128 CI->second.push_back(MI);
1129 else {
1130 std::vector<const MachineInstr*> CSEMIs;
1131 CSEMIs.push_back(MI);
1132 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
Evan Cheng777c6b72009-11-03 21:40:02 +00001133 }
1134 }
1135}
1136
Evan Cheng78e5c112009-11-07 03:52:02 +00001137const MachineInstr*
1138MachineLICM::LookForDuplicate(const MachineInstr *MI,
1139 std::vector<const MachineInstr*> &PrevMIs) {
Evan Cheng9fb744e2009-11-05 00:51:13 +00001140 for (unsigned i = 0, e = PrevMIs.size(); i != e; ++i) {
1141 const MachineInstr *PrevMI = PrevMIs[i];
Evan Cheng9fe20092011-01-20 08:34:58 +00001142 if (TII->produceSameValue(MI, PrevMI, (PreRegAlloc ? MRI : 0)))
Evan Cheng9fb744e2009-11-05 00:51:13 +00001143 return PrevMI;
1144 }
1145 return 0;
1146}
1147
1148bool MachineLICM::EliminateCSE(MachineInstr *MI,
1149 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI) {
Evan Chengdb898092010-07-14 01:22:19 +00001150 // Do not CSE implicit_def so ProcessImplicitDefs can properly propagate
1151 // the undef property onto uses.
1152 if (CI == CSEMap.end() || MI->isImplicitDef())
Evan Cheng78e5c112009-11-07 03:52:02 +00001153 return false;
1154
1155 if (const MachineInstr *Dup = LookForDuplicate(MI, CI->second)) {
David Greene65a41eb2010-01-05 00:03:48 +00001156 DEBUG(dbgs() << "CSEing " << *MI << " with " << *Dup);
Dan Gohman6ac33b42010-02-28 01:33:43 +00001157
1158 // Replace virtual registers defined by MI by their counterparts defined
1159 // by Dup.
Evan Cheng78e5c112009-11-07 03:52:02 +00001160 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1161 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman6ac33b42010-02-28 01:33:43 +00001162
1163 // Physical registers may not differ here.
1164 assert((!MO.isReg() || MO.getReg() == 0 ||
1165 !TargetRegisterInfo::isPhysicalRegister(MO.getReg()) ||
1166 MO.getReg() == Dup->getOperand(i).getReg()) &&
1167 "Instructions with different phys regs are not identical!");
1168
1169 if (MO.isReg() && MO.isDef() &&
Dan Gohmane6cd7572010-05-13 20:34:42 +00001170 !TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Evan Cheng0e673912010-10-14 01:16:09 +00001171 MRI->replaceRegWith(MO.getReg(), Dup->getOperand(i).getReg());
1172 MRI->clearKillFlags(Dup->getOperand(i).getReg());
Dan Gohmane6cd7572010-05-13 20:34:42 +00001173 }
Evan Cheng9fb744e2009-11-05 00:51:13 +00001174 }
Evan Cheng78e5c112009-11-07 03:52:02 +00001175 MI->eraseFromParent();
1176 ++NumCSEed;
1177 return true;
Evan Cheng9fb744e2009-11-05 00:51:13 +00001178 }
1179 return false;
1180}
1181
Bill Wendlinge4fc1cc2008-05-12 19:38:32 +00001182/// Hoist - When an instruction is found to use only loop invariant operands
1183/// that are safe to hoist, this instruction is called to do the dirty work.
Bill Wendling0f940c92007-12-07 21:42:31 +00001184///
Evan Cheng134982d2010-10-20 22:03:58 +00001185bool MachineLICM::Hoist(MachineInstr *MI, MachineBasicBlock *Preheader) {
Dan Gohman589f1f52009-10-28 03:21:57 +00001186 // First check whether we should hoist this instruction.
Evan Chengc26abd92009-11-20 23:31:34 +00001187 if (!IsLoopInvariantInst(*MI) || !IsProfitableToHoist(*MI)) {
Dan Gohman5c952302009-10-29 17:47:20 +00001188 // If not, try unfolding a hoistable load.
1189 MI = ExtractHoistableLoad(MI);
Evan Cheng134982d2010-10-20 22:03:58 +00001190 if (!MI) return false;
Dan Gohman589f1f52009-10-28 03:21:57 +00001191 }
Bill Wendling0f940c92007-12-07 21:42:31 +00001192
Dan Gohmanc475c362009-01-15 22:01:38 +00001193 // Now move the instructions to the predecessor, inserting it before any
1194 // terminator instructions.
1195 DEBUG({
David Greene65a41eb2010-01-05 00:03:48 +00001196 dbgs() << "Hoisting " << *MI;
Dan Gohman853d3fb2010-06-22 17:25:57 +00001197 if (Preheader->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +00001198 dbgs() << " to MachineBasicBlock "
Dan Gohman853d3fb2010-06-22 17:25:57 +00001199 << Preheader->getName();
Dan Gohman589f1f52009-10-28 03:21:57 +00001200 if (MI->getParent()->getBasicBlock())
David Greene65a41eb2010-01-05 00:03:48 +00001201 dbgs() << " from MachineBasicBlock "
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +00001202 << MI->getParent()->getName();
David Greene65a41eb2010-01-05 00:03:48 +00001203 dbgs() << "\n";
Dan Gohmanc475c362009-01-15 22:01:38 +00001204 });
Bill Wendling0f940c92007-12-07 21:42:31 +00001205
Evan Cheng777c6b72009-11-03 21:40:02 +00001206 // If this is the first instruction being hoisted to the preheader,
1207 // initialize the CSE map with potential common expressions.
Evan Cheng82e0a1a2010-05-29 00:06:36 +00001208 if (FirstInLoop) {
Dan Gohman853d3fb2010-06-22 17:25:57 +00001209 InitCSEMap(Preheader);
Evan Cheng82e0a1a2010-05-29 00:06:36 +00001210 FirstInLoop = false;
1211 }
Evan Cheng777c6b72009-11-03 21:40:02 +00001212
Evan Chengaf6949d2009-02-05 08:45:46 +00001213 // Look for opportunity to CSE the hoisted instruction.
Evan Cheng777c6b72009-11-03 21:40:02 +00001214 unsigned Opcode = MI->getOpcode();
1215 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator
1216 CI = CSEMap.find(Opcode);
Evan Cheng9fb744e2009-11-05 00:51:13 +00001217 if (!EliminateCSE(MI, CI)) {
1218 // Otherwise, splice the instruction to the preheader.
Dan Gohman853d3fb2010-06-22 17:25:57 +00001219 Preheader->splice(Preheader->getFirstTerminator(),MI->getParent(),MI);
Evan Cheng777c6b72009-11-03 21:40:02 +00001220
Evan Cheng134982d2010-10-20 22:03:58 +00001221 // Update register pressure for BBs from header to this block.
1222 UpdateBackTraceRegPressure(MI);
1223
Dan Gohmane6cd7572010-05-13 20:34:42 +00001224 // Clear the kill flags of any register this instruction defines,
1225 // since they may need to be live throughout the entire loop
1226 // rather than just live for part of it.
1227 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1228 MachineOperand &MO = MI->getOperand(i);
1229 if (MO.isReg() && MO.isDef() && !MO.isDead())
Evan Cheng0e673912010-10-14 01:16:09 +00001230 MRI->clearKillFlags(MO.getReg());
Dan Gohmane6cd7572010-05-13 20:34:42 +00001231 }
1232
Evan Chengaf6949d2009-02-05 08:45:46 +00001233 // Add to the CSE map.
1234 if (CI != CSEMap.end())
Dan Gohman589f1f52009-10-28 03:21:57 +00001235 CI->second.push_back(MI);
Evan Chengaf6949d2009-02-05 08:45:46 +00001236 else {
1237 std::vector<const MachineInstr*> CSEMIs;
Dan Gohman589f1f52009-10-28 03:21:57 +00001238 CSEMIs.push_back(MI);
Evan Cheng777c6b72009-11-03 21:40:02 +00001239 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
Evan Chengaf6949d2009-02-05 08:45:46 +00001240 }
1241 }
Bill Wendling0f940c92007-12-07 21:42:31 +00001242
Dan Gohmanc475c362009-01-15 22:01:38 +00001243 ++NumHoisted;
Bill Wendling0f940c92007-12-07 21:42:31 +00001244 Changed = true;
Evan Cheng134982d2010-10-20 22:03:58 +00001245
1246 return true;
Bill Wendling0f940c92007-12-07 21:42:31 +00001247}
Dan Gohman853d3fb2010-06-22 17:25:57 +00001248
1249MachineBasicBlock *MachineLICM::getCurPreheader() {
1250 // Determine the block to which to hoist instructions. If we can't find a
1251 // suitable loop predecessor, we can't do any hoisting.
1252
1253 // If we've tried to get a preheader and failed, don't try again.
1254 if (CurPreheader == reinterpret_cast<MachineBasicBlock *>(-1))
1255 return 0;
1256
1257 if (!CurPreheader) {
1258 CurPreheader = CurLoop->getLoopPreheader();
1259 if (!CurPreheader) {
1260 MachineBasicBlock *Pred = CurLoop->getLoopPredecessor();
1261 if (!Pred) {
1262 CurPreheader = reinterpret_cast<MachineBasicBlock *>(-1);
1263 return 0;
1264 }
1265
1266 CurPreheader = Pred->SplitCriticalEdge(CurLoop->getHeader(), this);
1267 if (!CurPreheader) {
1268 CurPreheader = reinterpret_cast<MachineBasicBlock *>(-1);
1269 return 0;
1270 }
1271 }
1272 }
1273 return CurPreheader;
1274}