blob: 82df6c2379312eb95f274ce3a58922c96979fbb0 [file] [log] [blame]
Evan Cheng09e8ca82008-10-20 21:44:59 +00001//===-- PreAllocSplitting.cpp - Pre-allocation Interval Spltting Pass. ----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the machine instruction level pre-register allocation
11// live interval splitting pass. It finds live interval barriers, i.e.
12// instructions which will kill all physical registers in certain register
13// classes, and split all live intervals which cross the barrier.
14//
15//===----------------------------------------------------------------------===//
16
17#define DEBUG_TYPE "pre-alloc-split"
Owen Anderson420dd372009-03-14 21:40:05 +000018#include "VirtRegMap.h"
Lang Hamesa937f222009-12-14 06:49:42 +000019#include "llvm/CodeGen/CalcSpillWeights.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000020#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Evan Chengd0e32c52008-10-29 05:06:14 +000021#include "llvm/CodeGen/LiveStackAnalysis.h"
Owen Andersonf1f75b12008-11-04 22:22:41 +000022#include "llvm/CodeGen/MachineDominators.h"
Evan Chengf5cd4f02008-10-23 20:43:13 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000024#include "llvm/CodeGen/MachineFunctionPass.h"
25#include "llvm/CodeGen/MachineLoopInfo.h"
26#include "llvm/CodeGen/MachineRegisterInfo.h"
27#include "llvm/CodeGen/Passes.h"
28#include "llvm/CodeGen/RegisterCoalescer.h"
Evan Chengf5cd4f02008-10-23 20:43:13 +000029#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000030#include "llvm/Target/TargetMachine.h"
31#include "llvm/Target/TargetOptions.h"
32#include "llvm/Target/TargetRegisterInfo.h"
33#include "llvm/Support/CommandLine.h"
34#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000035#include "llvm/Support/ErrorHandling.h"
Evan Chengd0e32c52008-10-29 05:06:14 +000036#include "llvm/ADT/DenseMap.h"
Evan Cheng54898932008-10-29 08:39:34 +000037#include "llvm/ADT/DepthFirstIterator.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000038#include "llvm/ADT/SmallPtrSet.h"
Evan Chengf5cd4f02008-10-23 20:43:13 +000039#include "llvm/ADT/Statistic.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000040using namespace llvm;
41
Evan Chengae7fa5b2008-10-28 01:48:24 +000042static cl::opt<int> PreSplitLimit("pre-split-limit", cl::init(-1), cl::Hidden);
Evan Cheng63040ce2009-11-09 06:49:22 +000043static cl::opt<int> DeadSplitLimit("dead-split-limit", cl::init(-1),
44 cl::Hidden);
45static cl::opt<int> RestoreFoldLimit("restore-fold-limit", cl::init(-1),
46 cl::Hidden);
Evan Chengae7fa5b2008-10-28 01:48:24 +000047
Owen Anderson45e68552009-01-29 05:28:55 +000048STATISTIC(NumSplits, "Number of intervals split");
Owen Anderson75fa96b2008-11-19 04:28:29 +000049STATISTIC(NumRemats, "Number of intervals split by rematerialization");
Owen Anderson7b9d67c2008-12-02 18:53:47 +000050STATISTIC(NumFolds, "Number of intervals split with spill folding");
Owen Anderson323c58d2009-03-05 07:19:18 +000051STATISTIC(NumRestoreFolds, "Number of intervals split with restore folding");
Owen Anderson2ebf63f2008-12-18 01:27:19 +000052STATISTIC(NumRenumbers, "Number of intervals renumbered into new registers");
Owen Anderson956ec272009-01-23 00:23:32 +000053STATISTIC(NumDeadSpills, "Number of dead spills removed");
Evan Chengf5cd4f02008-10-23 20:43:13 +000054
Evan Cheng09e8ca82008-10-20 21:44:59 +000055namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000056 class PreAllocSplitting : public MachineFunctionPass {
Evan Chengd0e32c52008-10-29 05:06:14 +000057 MachineFunction *CurrMF;
Evan Chengf5cd4f02008-10-23 20:43:13 +000058 const TargetMachine *TM;
59 const TargetInstrInfo *TII;
Owen Anderson3ef45492009-01-29 22:13:06 +000060 const TargetRegisterInfo* TRI;
Evan Chengf5cd4f02008-10-23 20:43:13 +000061 MachineFrameInfo *MFI;
62 MachineRegisterInfo *MRI;
Lang Hames233a60e2009-11-03 23:52:08 +000063 SlotIndexes *SIs;
Evan Chengf5cd4f02008-10-23 20:43:13 +000064 LiveIntervals *LIs;
Evan Chengd0e32c52008-10-29 05:06:14 +000065 LiveStacks *LSs;
Owen Anderson420dd372009-03-14 21:40:05 +000066 VirtRegMap *VRM;
Evan Cheng09e8ca82008-10-20 21:44:59 +000067
Evan Chengf5cd4f02008-10-23 20:43:13 +000068 // Barrier - Current barrier being processed.
69 MachineInstr *Barrier;
70
71 // BarrierMBB - Basic block where the barrier resides in.
72 MachineBasicBlock *BarrierMBB;
73
74 // Barrier - Current barrier index.
Lang Hames233a60e2009-11-03 23:52:08 +000075 SlotIndex BarrierIdx;
Evan Chengf5cd4f02008-10-23 20:43:13 +000076
77 // CurrLI - Current live interval being split.
78 LiveInterval *CurrLI;
79
Evan Chengd0e32c52008-10-29 05:06:14 +000080 // CurrSLI - Current stack slot live interval.
81 LiveInterval *CurrSLI;
82
83 // CurrSValNo - Current val# for the stack slot live interval.
84 VNInfo *CurrSValNo;
85
86 // IntervalSSMap - A map from live interval to spill slots.
87 DenseMap<unsigned, int> IntervalSSMap;
Evan Chengf5cd4f02008-10-23 20:43:13 +000088
Evan Cheng54898932008-10-29 08:39:34 +000089 // Def2SpillMap - A map from a def instruction index to spill index.
Lang Hames233a60e2009-11-03 23:52:08 +000090 DenseMap<SlotIndex, SlotIndex> Def2SpillMap;
Evan Cheng06587492008-10-24 02:05:00 +000091
Evan Cheng09e8ca82008-10-20 21:44:59 +000092 public:
93 static char ID;
Lang Hames233a60e2009-11-03 23:52:08 +000094 PreAllocSplitting()
Owen Anderson9ccaf532010-08-05 23:42:04 +000095 : MachineFunctionPass(ID) {}
Evan Cheng09e8ca82008-10-20 21:44:59 +000096
97 virtual bool runOnMachineFunction(MachineFunction &MF);
98
99 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +0000100 AU.setPreservesCFG();
Lang Hames233a60e2009-11-03 23:52:08 +0000101 AU.addRequired<SlotIndexes>();
102 AU.addPreserved<SlotIndexes>();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000103 AU.addRequired<LiveIntervals>();
104 AU.addPreserved<LiveIntervals>();
Evan Chengd0e32c52008-10-29 05:06:14 +0000105 AU.addRequired<LiveStacks>();
106 AU.addPreserved<LiveStacks>();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000107 AU.addPreserved<RegisterCoalescer>();
Lang Hamesa937f222009-12-14 06:49:42 +0000108 AU.addPreserved<CalculateSpillWeights>();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000109 if (StrongPHIElim)
110 AU.addPreservedID(StrongPHIEliminationID);
111 else
112 AU.addPreservedID(PHIEliminationID);
Owen Andersonf1f75b12008-11-04 22:22:41 +0000113 AU.addRequired<MachineDominatorTree>();
114 AU.addRequired<MachineLoopInfo>();
Owen Anderson420dd372009-03-14 21:40:05 +0000115 AU.addRequired<VirtRegMap>();
Owen Andersonf1f75b12008-11-04 22:22:41 +0000116 AU.addPreserved<MachineDominatorTree>();
117 AU.addPreserved<MachineLoopInfo>();
Owen Anderson420dd372009-03-14 21:40:05 +0000118 AU.addPreserved<VirtRegMap>();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000119 MachineFunctionPass::getAnalysisUsage(AU);
120 }
121
122 virtual void releaseMemory() {
Evan Chengd0e32c52008-10-29 05:06:14 +0000123 IntervalSSMap.clear();
Evan Cheng54898932008-10-29 08:39:34 +0000124 Def2SpillMap.clear();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000125 }
126
127 virtual const char *getPassName() const {
128 return "Pre-Register Allocaton Live Interval Splitting";
129 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000130
131 /// print - Implement the dump method.
Chris Lattner45cfe542009-08-23 06:03:38 +0000132 virtual void print(raw_ostream &O, const Module* M = 0) const {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000133 LIs->print(O, M);
134 }
135
Evan Chengf5cd4f02008-10-23 20:43:13 +0000136
137 private:
Evan Chengf5cd4f02008-10-23 20:43:13 +0000138
139 MachineBasicBlock::iterator
Evan Cheng1f08cc22008-10-28 05:28:21 +0000140 findSpillPoint(MachineBasicBlock*, MachineInstr*, MachineInstr*,
Lang Hamesb3661582009-11-14 00:02:51 +0000141 SmallPtrSet<MachineInstr*, 4>&);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000142
143 MachineBasicBlock::iterator
Lang Hames233a60e2009-11-03 23:52:08 +0000144 findRestorePoint(MachineBasicBlock*, MachineInstr*, SlotIndex,
Lang Hamesb3661582009-11-14 00:02:51 +0000145 SmallPtrSet<MachineInstr*, 4>&);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000146
Evan Chengd0e32c52008-10-29 05:06:14 +0000147 int CreateSpillStackSlot(unsigned, const TargetRegisterClass *);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000148
Lang Hames86511252009-09-04 20:41:11 +0000149 bool IsAvailableInStack(MachineBasicBlock*, unsigned,
Lang Hames233a60e2009-11-03 23:52:08 +0000150 SlotIndex, SlotIndex,
151 SlotIndex&, int&) const;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000152
Lang Hames233a60e2009-11-03 23:52:08 +0000153 void UpdateSpillSlotInterval(VNInfo*, SlotIndex, SlotIndex);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000154
Evan Chengf5cd4f02008-10-23 20:43:13 +0000155 bool SplitRegLiveInterval(LiveInterval*);
156
Owen Anderson956ec272009-01-23 00:23:32 +0000157 bool SplitRegLiveIntervals(const TargetRegisterClass **,
158 SmallPtrSet<LiveInterval*, 8>&);
Owen Andersonf1f75b12008-11-04 22:22:41 +0000159
160 bool createsNewJoin(LiveRange* LR, MachineBasicBlock* DefMBB,
161 MachineBasicBlock* BarrierMBB);
Owen Anderson75fa96b2008-11-19 04:28:29 +0000162 bool Rematerialize(unsigned vreg, VNInfo* ValNo,
163 MachineInstr* DefMI,
164 MachineBasicBlock::iterator RestorePt,
Owen Anderson75fa96b2008-11-19 04:28:29 +0000165 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000166 MachineInstr* FoldSpill(unsigned vreg, const TargetRegisterClass* RC,
167 MachineInstr* DefMI,
168 MachineInstr* Barrier,
169 MachineBasicBlock* MBB,
170 int& SS,
171 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Andersonc93023a2009-03-04 08:52:31 +0000172 MachineInstr* FoldRestore(unsigned vreg,
173 const TargetRegisterClass* RC,
174 MachineInstr* Barrier,
175 MachineBasicBlock* MBB,
176 int SS,
177 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000178 void RenumberValno(VNInfo* VN);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000179 void ReconstructLiveInterval(LiveInterval* LI);
Owen Anderson956ec272009-01-23 00:23:32 +0000180 bool removeDeadSpills(SmallPtrSet<LiveInterval*, 8>& split);
Owen Anderson45e68552009-01-29 05:28:55 +0000181 unsigned getNumberOfNonSpills(SmallPtrSet<MachineInstr*, 4>& MIs,
182 unsigned Reg, int FrameIndex, bool& TwoAddr);
Evan Cheng19a72582009-02-02 18:33:18 +0000183 VNInfo* PerformPHIConstruction(MachineBasicBlock::iterator Use,
184 MachineBasicBlock* MBB, LiveInterval* LI,
Owen Anderson200ee7f2009-01-06 07:53:32 +0000185 SmallPtrSet<MachineInstr*, 4>& Visited,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000186 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
187 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
188 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000189 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
190 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
Evan Cheng19a72582009-02-02 18:33:18 +0000191 bool IsTopLevel, bool IsIntraBlock);
192 VNInfo* PerformPHIConstructionFallBack(MachineBasicBlock::iterator Use,
193 MachineBasicBlock* MBB, LiveInterval* LI,
194 SmallPtrSet<MachineInstr*, 4>& Visited,
195 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
196 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
197 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
198 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
199 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
200 bool IsTopLevel, bool IsIntraBlock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000201};
Evan Cheng09e8ca82008-10-20 21:44:59 +0000202} // end anonymous namespace
203
204char PreAllocSplitting::ID = 0;
205
206static RegisterPass<PreAllocSplitting>
207X("pre-alloc-splitting", "Pre-Register Allocation Live Interval Splitting");
208
Owen Anderson9ccaf532010-08-05 23:42:04 +0000209char &llvm::PreAllocSplittingID = PreAllocSplitting::ID;
Evan Cheng09e8ca82008-10-20 21:44:59 +0000210
Evan Chengf5cd4f02008-10-23 20:43:13 +0000211/// findSpillPoint - Find a gap as far away from the given MI that's suitable
212/// for spilling the current live interval. The index must be before any
213/// defs and uses of the live interval register in the mbb. Return begin() if
214/// none is found.
215MachineBasicBlock::iterator
216PreAllocSplitting::findSpillPoint(MachineBasicBlock *MBB, MachineInstr *MI,
Evan Cheng1f08cc22008-10-28 05:28:21 +0000217 MachineInstr *DefMI,
Lang Hamesb3661582009-11-14 00:02:51 +0000218 SmallPtrSet<MachineInstr*, 4> &RefsInMBB) {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000219 MachineBasicBlock::iterator Pt = MBB->begin();
220
Owen Anderson696a1302009-03-31 08:27:09 +0000221 MachineBasicBlock::iterator MII = MI;
222 MachineBasicBlock::iterator EndPt = DefMI
223 ? MachineBasicBlock::iterator(DefMI) : MBB->begin();
Owen Anderson4cafbb52009-02-20 10:02:23 +0000224
Owen Anderson696a1302009-03-31 08:27:09 +0000225 while (MII != EndPt && !RefsInMBB.count(MII) &&
226 MII->getOpcode() != TRI->getCallFrameSetupOpcode())
227 --MII;
228 if (MII == EndPt || RefsInMBB.count(MII)) return Pt;
Owen Anderson4cafbb52009-02-20 10:02:23 +0000229
Owen Anderson696a1302009-03-31 08:27:09 +0000230 while (MII != EndPt && !RefsInMBB.count(MII)) {
Owen Anderson696a1302009-03-31 08:27:09 +0000231 // We can't insert the spill between the barrier (a call), and its
232 // corresponding call frame setup.
233 if (MII->getOpcode() == TRI->getCallFrameDestroyOpcode()) {
234 while (MII->getOpcode() != TRI->getCallFrameSetupOpcode()) {
Owen Anderson5734c942009-02-05 05:58:41 +0000235 --MII;
Owen Anderson696a1302009-03-31 08:27:09 +0000236 if (MII == EndPt) {
237 return Pt;
Owen Anderson5734c942009-02-05 05:58:41 +0000238 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000239 }
Owen Anderson696a1302009-03-31 08:27:09 +0000240 continue;
Lang Hamesb3661582009-11-14 00:02:51 +0000241 } else {
Owen Anderson696a1302009-03-31 08:27:09 +0000242 Pt = MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000243 }
Owen Anderson696a1302009-03-31 08:27:09 +0000244
245 if (RefsInMBB.count(MII))
246 return Pt;
247
248
249 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000250 }
251
252 return Pt;
253}
254
255/// findRestorePoint - Find a gap in the instruction index map that's suitable
256/// for restoring the current live interval value. The index must be before any
257/// uses of the live interval register in the mbb. Return end() if none is
258/// found.
259MachineBasicBlock::iterator
260PreAllocSplitting::findRestorePoint(MachineBasicBlock *MBB, MachineInstr *MI,
Lang Hames233a60e2009-11-03 23:52:08 +0000261 SlotIndex LastIdx,
Lang Hamesb3661582009-11-14 00:02:51 +0000262 SmallPtrSet<MachineInstr*, 4> &RefsInMBB) {
Evan Cheng54898932008-10-29 08:39:34 +0000263 // FIXME: Allow spill to be inserted to the beginning of the mbb. Update mbb
264 // begin index accordingly.
Owen Anderson5a92d4e2008-11-18 20:53:59 +0000265 MachineBasicBlock::iterator Pt = MBB->end();
Owen Anderson696a1302009-03-31 08:27:09 +0000266 MachineBasicBlock::iterator EndPt = MBB->getFirstTerminator();
Evan Chengf5cd4f02008-10-23 20:43:13 +0000267
Owen Anderson696a1302009-03-31 08:27:09 +0000268 // We start at the call, so walk forward until we find the call frame teardown
269 // since we can't insert restores before that. Bail if we encounter a use
270 // during this time.
271 MachineBasicBlock::iterator MII = MI;
272 if (MII == EndPt) return Pt;
273
274 while (MII != EndPt && !RefsInMBB.count(MII) &&
275 MII->getOpcode() != TRI->getCallFrameDestroyOpcode())
276 ++MII;
277 if (MII == EndPt || RefsInMBB.count(MII)) return Pt;
278 ++MII;
279
280 // FIXME: Limit the number of instructions to examine to reduce
281 // compile time?
282 while (MII != EndPt) {
Lang Hames233a60e2009-11-03 23:52:08 +0000283 SlotIndex Index = LIs->getInstructionIndex(MII);
Owen Anderson696a1302009-03-31 08:27:09 +0000284 if (Index > LastIdx)
285 break;
Owen Anderson3ef45492009-01-29 22:13:06 +0000286
Owen Anderson696a1302009-03-31 08:27:09 +0000287 // We can't insert a restore between the barrier (a call) and its
288 // corresponding call frame teardown.
289 if (MII->getOpcode() == TRI->getCallFrameSetupOpcode()) {
290 do {
291 if (MII == EndPt || RefsInMBB.count(MII)) return Pt;
Owen Anderson5734c942009-02-05 05:58:41 +0000292 ++MII;
Owen Anderson696a1302009-03-31 08:27:09 +0000293 } while (MII->getOpcode() != TRI->getCallFrameDestroyOpcode());
Lang Hamesb3661582009-11-14 00:02:51 +0000294 } else {
Owen Anderson696a1302009-03-31 08:27:09 +0000295 Pt = MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000296 }
Owen Anderson696a1302009-03-31 08:27:09 +0000297
298 if (RefsInMBB.count(MII))
299 return Pt;
300
301 ++MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000302 }
303
304 return Pt;
305}
306
Evan Chengd0e32c52008-10-29 05:06:14 +0000307/// CreateSpillStackSlot - Create a stack slot for the live interval being
308/// split. If the live interval was previously split, just reuse the same
309/// slot.
310int PreAllocSplitting::CreateSpillStackSlot(unsigned Reg,
311 const TargetRegisterClass *RC) {
312 int SS;
313 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
314 if (I != IntervalSSMap.end()) {
315 SS = I->second;
316 } else {
David Greene3f2bf852009-11-12 20:49:22 +0000317 SS = MFI->CreateSpillStackObject(RC->getSize(), RC->getAlignment());
Evan Chengd0e32c52008-10-29 05:06:14 +0000318 IntervalSSMap[Reg] = SS;
Evan Cheng06587492008-10-24 02:05:00 +0000319 }
Evan Chengd0e32c52008-10-29 05:06:14 +0000320
321 // Create live interval for stack slot.
Evan Chengc781a242009-05-03 18:32:42 +0000322 CurrSLI = &LSs->getOrCreateInterval(SS, RC);
Evan Cheng54898932008-10-29 08:39:34 +0000323 if (CurrSLI->hasAtLeastOneValue())
Evan Chengd0e32c52008-10-29 05:06:14 +0000324 CurrSValNo = CurrSLI->getValNumInfo(0);
325 else
Lang Hames233a60e2009-11-03 23:52:08 +0000326 CurrSValNo = CurrSLI->getNextValue(SlotIndex(), 0, false,
Lang Hames86511252009-09-04 20:41:11 +0000327 LSs->getVNInfoAllocator());
Evan Chengd0e32c52008-10-29 05:06:14 +0000328 return SS;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000329}
330
Evan Chengd0e32c52008-10-29 05:06:14 +0000331/// IsAvailableInStack - Return true if register is available in a split stack
332/// slot at the specified index.
333bool
Evan Cheng54898932008-10-29 08:39:34 +0000334PreAllocSplitting::IsAvailableInStack(MachineBasicBlock *DefMBB,
Lang Hames233a60e2009-11-03 23:52:08 +0000335 unsigned Reg, SlotIndex DefIndex,
336 SlotIndex RestoreIndex,
337 SlotIndex &SpillIndex,
Evan Cheng54898932008-10-29 08:39:34 +0000338 int& SS) const {
339 if (!DefMBB)
340 return false;
341
Jeffrey Yasskin81cf4322009-11-10 01:02:17 +0000342 DenseMap<unsigned, int>::const_iterator I = IntervalSSMap.find(Reg);
Evan Chengd0e32c52008-10-29 05:06:14 +0000343 if (I == IntervalSSMap.end())
Evan Chengf5cd4f02008-10-23 20:43:13 +0000344 return false;
Jeffrey Yasskin81cf4322009-11-10 01:02:17 +0000345 DenseMap<SlotIndex, SlotIndex>::const_iterator
Lang Hames86511252009-09-04 20:41:11 +0000346 II = Def2SpillMap.find(DefIndex);
Evan Cheng54898932008-10-29 08:39:34 +0000347 if (II == Def2SpillMap.end())
348 return false;
349
350 // If last spill of def is in the same mbb as barrier mbb (where restore will
351 // be), make sure it's not below the intended restore index.
352 // FIXME: Undo the previous spill?
353 assert(LIs->getMBBFromIndex(II->second) == DefMBB);
354 if (DefMBB == BarrierMBB && II->second >= RestoreIndex)
355 return false;
356
357 SS = I->second;
358 SpillIndex = II->second;
359 return true;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000360}
361
Evan Chengd0e32c52008-10-29 05:06:14 +0000362/// UpdateSpillSlotInterval - Given the specified val# of the register live
363/// interval being split, and the spill and restore indicies, update the live
364/// interval of the spill stack slot.
365void
Lang Hames233a60e2009-11-03 23:52:08 +0000366PreAllocSplitting::UpdateSpillSlotInterval(VNInfo *ValNo, SlotIndex SpillIndex,
367 SlotIndex RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000368 assert(LIs->getMBBFromIndex(RestoreIndex) == BarrierMBB &&
369 "Expect restore in the barrier mbb");
370
371 MachineBasicBlock *MBB = LIs->getMBBFromIndex(SpillIndex);
372 if (MBB == BarrierMBB) {
373 // Intra-block spill + restore. We are done.
Evan Chengd0e32c52008-10-29 05:06:14 +0000374 LiveRange SLR(SpillIndex, RestoreIndex, CurrSValNo);
375 CurrSLI->addRange(SLR);
376 return;
377 }
378
Evan Cheng54898932008-10-29 08:39:34 +0000379 SmallPtrSet<MachineBasicBlock*, 4> Processed;
Lang Hames233a60e2009-11-03 23:52:08 +0000380 SlotIndex EndIdx = LIs->getMBBEndIdx(MBB);
Lang Hames74ab5ee2009-12-22 00:11:50 +0000381 LiveRange SLR(SpillIndex, EndIdx, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000382 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000383 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000384
385 // Start from the spill mbb, figure out the extend of the spill slot's
386 // live interval.
387 SmallVector<MachineBasicBlock*, 4> WorkList;
Evan Cheng54898932008-10-29 08:39:34 +0000388 const LiveRange *LR = CurrLI->getLiveRangeContaining(SpillIndex);
389 if (LR->end > EndIdx)
Evan Chengd0e32c52008-10-29 05:06:14 +0000390 // If live range extend beyond end of mbb, add successors to work list.
391 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
392 SE = MBB->succ_end(); SI != SE; ++SI)
393 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000394
395 while (!WorkList.empty()) {
396 MachineBasicBlock *MBB = WorkList.back();
397 WorkList.pop_back();
Evan Cheng54898932008-10-29 08:39:34 +0000398 if (Processed.count(MBB))
399 continue;
Lang Hames233a60e2009-11-03 23:52:08 +0000400 SlotIndex Idx = LIs->getMBBStartIdx(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000401 LR = CurrLI->getLiveRangeContaining(Idx);
Evan Cheng54898932008-10-29 08:39:34 +0000402 if (LR && LR->valno == ValNo) {
403 EndIdx = LIs->getMBBEndIdx(MBB);
404 if (Idx <= RestoreIndex && RestoreIndex < EndIdx) {
Evan Chengd0e32c52008-10-29 05:06:14 +0000405 // Spill slot live interval stops at the restore.
Evan Cheng54898932008-10-29 08:39:34 +0000406 LiveRange SLR(Idx, RestoreIndex, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000407 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000408 } else if (LR->end > EndIdx) {
409 // Live range extends beyond end of mbb, process successors.
Lang Hames233a60e2009-11-03 23:52:08 +0000410 LiveRange SLR(Idx, EndIdx.getNextIndex(), CurrSValNo);
Evan Cheng54898932008-10-29 08:39:34 +0000411 CurrSLI->addRange(SLR);
412 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
413 SE = MBB->succ_end(); SI != SE; ++SI)
414 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000415 } else {
Evan Cheng54898932008-10-29 08:39:34 +0000416 LiveRange SLR(Idx, LR->end, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000417 CurrSLI->addRange(SLR);
Evan Chengd0e32c52008-10-29 05:06:14 +0000418 }
Evan Cheng54898932008-10-29 08:39:34 +0000419 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000420 }
421 }
422}
423
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000424/// PerformPHIConstruction - From properly set up use and def lists, use a PHI
425/// construction algorithm to compute the ranges and valnos for an interval.
Evan Cheng19a72582009-02-02 18:33:18 +0000426VNInfo*
427PreAllocSplitting::PerformPHIConstruction(MachineBasicBlock::iterator UseI,
428 MachineBasicBlock* MBB, LiveInterval* LI,
Owen Anderson200ee7f2009-01-06 07:53:32 +0000429 SmallPtrSet<MachineInstr*, 4>& Visited,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000430 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
431 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
432 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000433 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
434 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
Evan Cheng19a72582009-02-02 18:33:18 +0000435 bool IsTopLevel, bool IsIntraBlock) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000436 // Return memoized result if it's available.
Evan Cheng19a72582009-02-02 18:33:18 +0000437 if (IsTopLevel && Visited.count(UseI) && NewVNs.count(UseI))
438 return NewVNs[UseI];
439 else if (!IsTopLevel && IsIntraBlock && NewVNs.count(UseI))
440 return NewVNs[UseI];
441 else if (!IsIntraBlock && LiveOut.count(MBB))
Owen Anderson7d211e22008-12-31 02:00:25 +0000442 return LiveOut[MBB];
443
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000444 // Check if our block contains any uses or defs.
Owen Anderson7d211e22008-12-31 02:00:25 +0000445 bool ContainsDefs = Defs.count(MBB);
446 bool ContainsUses = Uses.count(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000447
Evan Cheng19a72582009-02-02 18:33:18 +0000448 VNInfo* RetVNI = 0;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000449
450 // Enumerate the cases of use/def contaning blocks.
451 if (!ContainsDefs && !ContainsUses) {
Evan Cheng19a72582009-02-02 18:33:18 +0000452 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs, Uses,
453 NewVNs, LiveOut, Phis,
454 IsTopLevel, IsIntraBlock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000455 } else if (ContainsDefs && !ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000456 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000457
458 // Search for the def in this block. If we don't find it before the
459 // instruction we care about, go to the fallback case. Note that that
Owen Anderson7d211e22008-12-31 02:00:25 +0000460 // should never happen: this cannot be intrablock, so use should
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000461 // always be an end() iterator.
Evan Cheng19a72582009-02-02 18:33:18 +0000462 assert(UseI == MBB->end() && "No use marked in intrablock");
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000463
Evan Cheng19a72582009-02-02 18:33:18 +0000464 MachineBasicBlock::iterator Walker = UseI;
465 --Walker;
466 while (Walker != MBB->begin()) {
467 if (BlockDefs.count(Walker))
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000468 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000469 --Walker;
470 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000471
472 // Once we've found it, extend its VNInfo to our instruction.
Lang Hames233a60e2009-11-03 23:52:08 +0000473 SlotIndex DefIndex = LIs->getInstructionIndex(Walker);
474 DefIndex = DefIndex.getDefIndex();
475 SlotIndex EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000476
Evan Cheng19a72582009-02-02 18:33:18 +0000477 RetVNI = NewVNs[Walker];
Lang Hames74ab5ee2009-12-22 00:11:50 +0000478 LI->addRange(LiveRange(DefIndex, EndIndex, RetVNI));
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000479 } else if (!ContainsDefs && ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000480 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000481
482 // Search for the use in this block that precedes the instruction we care
Evan Cheng19a72582009-02-02 18:33:18 +0000483 // about, going to the fallback case if we don't find it.
Evan Cheng19a72582009-02-02 18:33:18 +0000484 MachineBasicBlock::iterator Walker = UseI;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000485 bool found = false;
Evan Cheng19a72582009-02-02 18:33:18 +0000486 while (Walker != MBB->begin()) {
Benjamin Kramer2e0de6f2010-01-07 19:46:15 +0000487 --Walker;
Evan Cheng19a72582009-02-02 18:33:18 +0000488 if (BlockUses.count(Walker)) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000489 found = true;
490 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000491 }
Evan Cheng19a72582009-02-02 18:33:18 +0000492 }
Benjamin Kramer2e0de6f2010-01-07 19:46:15 +0000493
494 if (!found)
495 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
496 Uses, NewVNs, LiveOut, Phis,
497 IsTopLevel, IsIntraBlock);
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000498
Lang Hames233a60e2009-11-03 23:52:08 +0000499 SlotIndex UseIndex = LIs->getInstructionIndex(Walker);
500 UseIndex = UseIndex.getUseIndex();
501 SlotIndex EndIndex;
Evan Cheng19a72582009-02-02 18:33:18 +0000502 if (IsIntraBlock) {
Lang Hames74ab5ee2009-12-22 00:11:50 +0000503 EndIndex = LIs->getInstructionIndex(UseI).getDefIndex();
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000504 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000505 EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000506
507 // Now, recursively phi construct the VNInfo for the use we found,
508 // and then extend it to include the instruction we care about
Evan Cheng19a72582009-02-02 18:33:18 +0000509 RetVNI = PerformPHIConstruction(Walker, MBB, LI, Visited, Defs, Uses,
510 NewVNs, LiveOut, Phis, false, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000511
Lang Hames74ab5ee2009-12-22 00:11:50 +0000512 LI->addRange(LiveRange(UseIndex, EndIndex, RetVNI));
Owen Andersonb4b84362009-01-26 21:57:31 +0000513
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000514 // FIXME: Need to set kills properly for inter-block stuff.
Evan Cheng19a72582009-02-02 18:33:18 +0000515 } else if (ContainsDefs && ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000516 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
517 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000518
519 // This case is basically a merging of the two preceding case, with the
520 // special note that checking for defs must take precedence over checking
521 // for uses, because of two-address instructions.
Evan Cheng19a72582009-02-02 18:33:18 +0000522 MachineBasicBlock::iterator Walker = UseI;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000523 bool foundDef = false;
524 bool foundUse = false;
Evan Cheng19a72582009-02-02 18:33:18 +0000525 while (Walker != MBB->begin()) {
Benjamin Kramer2e0de6f2010-01-07 19:46:15 +0000526 --Walker;
Evan Cheng19a72582009-02-02 18:33:18 +0000527 if (BlockDefs.count(Walker)) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000528 foundDef = true;
529 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000530 } else if (BlockUses.count(Walker)) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000531 foundUse = true;
532 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000533 }
Evan Cheng19a72582009-02-02 18:33:18 +0000534 }
Benjamin Kramer2e0de6f2010-01-07 19:46:15 +0000535
536 if (!foundDef && !foundUse)
537 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
538 Uses, NewVNs, LiveOut, Phis,
539 IsTopLevel, IsIntraBlock);
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000540
Lang Hames233a60e2009-11-03 23:52:08 +0000541 SlotIndex StartIndex = LIs->getInstructionIndex(Walker);
542 StartIndex = foundDef ? StartIndex.getDefIndex() : StartIndex.getUseIndex();
543 SlotIndex EndIndex;
Evan Cheng19a72582009-02-02 18:33:18 +0000544 if (IsIntraBlock) {
Lang Hames74ab5ee2009-12-22 00:11:50 +0000545 EndIndex = LIs->getInstructionIndex(UseI).getDefIndex();
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000546 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000547 EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000548
549 if (foundDef)
Evan Cheng19a72582009-02-02 18:33:18 +0000550 RetVNI = NewVNs[Walker];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000551 else
Evan Cheng19a72582009-02-02 18:33:18 +0000552 RetVNI = PerformPHIConstruction(Walker, MBB, LI, Visited, Defs, Uses,
553 NewVNs, LiveOut, Phis, false, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000554
Lang Hames74ab5ee2009-12-22 00:11:50 +0000555 LI->addRange(LiveRange(StartIndex, EndIndex, RetVNI));
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000556 }
557
558 // Memoize results so we don't have to recompute them.
Evan Cheng19a72582009-02-02 18:33:18 +0000559 if (!IsIntraBlock) LiveOut[MBB] = RetVNI;
Owen Anderson200ee7f2009-01-06 07:53:32 +0000560 else {
Evan Cheng19a72582009-02-02 18:33:18 +0000561 if (!NewVNs.count(UseI))
562 NewVNs[UseI] = RetVNI;
563 Visited.insert(UseI);
Owen Anderson200ee7f2009-01-06 07:53:32 +0000564 }
565
Evan Cheng19a72582009-02-02 18:33:18 +0000566 return RetVNI;
567}
568
569/// PerformPHIConstructionFallBack - PerformPHIConstruction fall back path.
570///
571VNInfo*
572PreAllocSplitting::PerformPHIConstructionFallBack(MachineBasicBlock::iterator UseI,
573 MachineBasicBlock* MBB, LiveInterval* LI,
574 SmallPtrSet<MachineInstr*, 4>& Visited,
575 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
576 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
577 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
578 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
579 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
580 bool IsTopLevel, bool IsIntraBlock) {
581 // NOTE: Because this is the fallback case from other cases, we do NOT
582 // assume that we are not intrablock here.
583 if (Phis.count(MBB)) return Phis[MBB];
584
Lang Hames233a60e2009-11-03 23:52:08 +0000585 SlotIndex StartIndex = LIs->getMBBStartIdx(MBB);
Lang Hames857c4e02009-06-17 21:01:20 +0000586 VNInfo *RetVNI = Phis[MBB] =
Lang Hames233a60e2009-11-03 23:52:08 +0000587 LI->getNextValue(SlotIndex(), /*FIXME*/ 0, false,
Lang Hames86511252009-09-04 20:41:11 +0000588 LIs->getVNInfoAllocator());
Lang Hames857c4e02009-06-17 21:01:20 +0000589
Evan Cheng19a72582009-02-02 18:33:18 +0000590 if (!IsIntraBlock) LiveOut[MBB] = RetVNI;
591
592 // If there are no uses or defs between our starting point and the
593 // beginning of the block, then recursive perform phi construction
594 // on our predecessors.
595 DenseMap<MachineBasicBlock*, VNInfo*> IncomingVNs;
596 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
597 PE = MBB->pred_end(); PI != PE; ++PI) {
598 VNInfo* Incoming = PerformPHIConstruction((*PI)->end(), *PI, LI,
599 Visited, Defs, Uses, NewVNs,
600 LiveOut, Phis, false, false);
601 if (Incoming != 0)
602 IncomingVNs[*PI] = Incoming;
603 }
604
Lang Hames857c4e02009-06-17 21:01:20 +0000605 if (MBB->pred_size() == 1 && !RetVNI->hasPHIKill()) {
Owen Anderson5b93f6f2009-02-02 22:42:01 +0000606 VNInfo* OldVN = RetVNI;
607 VNInfo* NewVN = IncomingVNs.begin()->second;
608 VNInfo* MergedVN = LI->MergeValueNumberInto(OldVN, NewVN);
609 if (MergedVN == OldVN) std::swap(OldVN, NewVN);
610
611 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator LOI = LiveOut.begin(),
612 LOE = LiveOut.end(); LOI != LOE; ++LOI)
613 if (LOI->second == OldVN)
614 LOI->second = MergedVN;
615 for (DenseMap<MachineInstr*, VNInfo*>::iterator NVI = NewVNs.begin(),
616 NVE = NewVNs.end(); NVI != NVE; ++NVI)
617 if (NVI->second == OldVN)
618 NVI->second = MergedVN;
619 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator PI = Phis.begin(),
620 PE = Phis.end(); PI != PE; ++PI)
621 if (PI->second == OldVN)
622 PI->second = MergedVN;
623 RetVNI = MergedVN;
Evan Cheng19a72582009-02-02 18:33:18 +0000624 } else {
625 // Otherwise, merge the incoming VNInfos with a phi join. Create a new
626 // VNInfo to represent the joined value.
627 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator I =
628 IncomingVNs.begin(), E = IncomingVNs.end(); I != E; ++I) {
Lang Hames857c4e02009-06-17 21:01:20 +0000629 I->second->setHasPHIKill(true);
Evan Cheng19a72582009-02-02 18:33:18 +0000630 }
631 }
632
Lang Hames233a60e2009-11-03 23:52:08 +0000633 SlotIndex EndIndex;
Evan Cheng19a72582009-02-02 18:33:18 +0000634 if (IsIntraBlock) {
Lang Hames74ab5ee2009-12-22 00:11:50 +0000635 EndIndex = LIs->getInstructionIndex(UseI).getDefIndex();
Evan Cheng19a72582009-02-02 18:33:18 +0000636 } else
637 EndIndex = LIs->getMBBEndIdx(MBB);
Lang Hames74ab5ee2009-12-22 00:11:50 +0000638 LI->addRange(LiveRange(StartIndex, EndIndex, RetVNI));
Evan Cheng19a72582009-02-02 18:33:18 +0000639
640 // Memoize results so we don't have to recompute them.
641 if (!IsIntraBlock)
642 LiveOut[MBB] = RetVNI;
643 else {
644 if (!NewVNs.count(UseI))
645 NewVNs[UseI] = RetVNI;
646 Visited.insert(UseI);
647 }
648
649 return RetVNI;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000650}
651
652/// ReconstructLiveInterval - Recompute a live interval from scratch.
653void PreAllocSplitting::ReconstructLiveInterval(LiveInterval* LI) {
Benjamin Kramer991de142010-03-30 20:16:45 +0000654 VNInfo::Allocator& Alloc = LIs->getVNInfoAllocator();
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000655
656 // Clear the old ranges and valnos;
657 LI->clear();
658
659 // Cache the uses and defs of the register
660 typedef DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> > RegMap;
661 RegMap Defs, Uses;
662
663 // Keep track of the new VNs we're creating.
664 DenseMap<MachineInstr*, VNInfo*> NewVNs;
665 SmallPtrSet<VNInfo*, 2> PhiVNs;
666
667 // Cache defs, and create a new VNInfo for each def.
668 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
669 DE = MRI->def_end(); DI != DE; ++DI) {
670 Defs[(*DI).getParent()].insert(&*DI);
671
Lang Hames233a60e2009-11-03 23:52:08 +0000672 SlotIndex DefIdx = LIs->getInstructionIndex(&*DI);
673 DefIdx = DefIdx.getDefIndex();
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000674
Chris Lattner518bb532010-02-09 19:54:29 +0000675 assert(!DI->isPHI() && "PHI instr in code during pre-alloc splitting.");
Lang Hames857c4e02009-06-17 21:01:20 +0000676 VNInfo* NewVN = LI->getNextValue(DefIdx, 0, true, Alloc);
Owen Anderson200ee7f2009-01-06 07:53:32 +0000677
678 // If the def is a move, set the copy field.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000679 if (DI->isCopyLike() && DI->getOperand(0).getReg() == LI->reg)
Jakob Stoklund Olesen273f7e42010-07-03 00:04:37 +0000680 NewVN->setCopy(&*DI);
681
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000682 NewVNs[&*DI] = NewVN;
683 }
684
685 // Cache uses as a separate pass from actually processing them.
686 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
687 UE = MRI->use_end(); UI != UE; ++UI)
688 Uses[(*UI).getParent()].insert(&*UI);
689
690 // Now, actually process every use and use a phi construction algorithm
691 // to walk from it to its reaching definitions, building VNInfos along
692 // the way.
Owen Anderson7d211e22008-12-31 02:00:25 +0000693 DenseMap<MachineBasicBlock*, VNInfo*> LiveOut;
694 DenseMap<MachineBasicBlock*, VNInfo*> Phis;
Owen Anderson200ee7f2009-01-06 07:53:32 +0000695 SmallPtrSet<MachineInstr*, 4> Visited;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000696 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
697 UE = MRI->use_end(); UI != UE; ++UI) {
Owen Anderson200ee7f2009-01-06 07:53:32 +0000698 PerformPHIConstruction(&*UI, UI->getParent(), LI, Visited, Defs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000699 Uses, NewVNs, LiveOut, Phis, true, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000700 }
Owen Andersond4f6fe52008-12-28 23:35:13 +0000701
702 // Add ranges for dead defs
703 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
704 DE = MRI->def_end(); DI != DE; ++DI) {
Lang Hames233a60e2009-11-03 23:52:08 +0000705 SlotIndex DefIdx = LIs->getInstructionIndex(&*DI);
706 DefIdx = DefIdx.getDefIndex();
Owen Andersond4f6fe52008-12-28 23:35:13 +0000707
708 if (LI->liveAt(DefIdx)) continue;
709
710 VNInfo* DeadVN = NewVNs[&*DI];
Lang Hames233a60e2009-11-03 23:52:08 +0000711 LI->addRange(LiveRange(DefIdx, DefIdx.getNextSlot(), DeadVN));
Evan Cheng35ca9202009-10-09 01:17:11 +0000712 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000713}
714
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000715/// RenumberValno - Split the given valno out into a new vreg, allowing it to
716/// be allocated to a different register. This function creates a new vreg,
717/// copies the valno and its live ranges over to the new vreg's interval,
718/// removes them from the old interval, and rewrites all uses and defs of
719/// the original reg to the new vreg within those ranges.
720void PreAllocSplitting::RenumberValno(VNInfo* VN) {
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000721 SmallVector<VNInfo*, 4> Stack;
722 SmallVector<VNInfo*, 4> VNsToCopy;
723 Stack.push_back(VN);
724
725 // Walk through and copy the valno we care about, and any other valnos
726 // that are two-address redefinitions of the one we care about. These
727 // will need to be rewritten as well. We also check for safety of the
728 // renumbering here, by making sure that none of the valno involved has
729 // phi kills.
730 while (!Stack.empty()) {
731 VNInfo* OldVN = Stack.back();
732 Stack.pop_back();
733
734 // Bail out if we ever encounter a valno that has a PHI kill. We can't
735 // renumber these.
Lang Hames857c4e02009-06-17 21:01:20 +0000736 if (OldVN->hasPHIKill()) return;
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000737
738 VNsToCopy.push_back(OldVN);
739
740 // Locate two-address redefinitions
Jakob Stoklund Olesen15a57142010-06-25 22:53:05 +0000741 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(CurrLI->reg),
742 DE = MRI->def_end(); DI != DE; ++DI) {
743 if (!DI->isRegTiedToUseOperand(DI.getOperandNo())) continue;
744 SlotIndex DefIdx = LIs->getInstructionIndex(&*DI).getDefIndex();
745 VNInfo* NextVN = CurrLI->findDefinedVNInfoForRegInt(DefIdx);
746 if (std::find(VNsToCopy.begin(), VNsToCopy.end(), NextVN) !=
747 VNsToCopy.end())
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000748 Stack.push_back(NextVN);
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000749 }
750 }
751
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000752 // Create the new vreg
753 unsigned NewVReg = MRI->createVirtualRegister(MRI->getRegClass(CurrLI->reg));
754
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000755 // Create the new live interval
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000756 LiveInterval& NewLI = LIs->getOrCreateInterval(NewVReg);
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000757
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000758 for (SmallVector<VNInfo*, 4>::iterator OI = VNsToCopy.begin(), OE =
759 VNsToCopy.end(); OI != OE; ++OI) {
760 VNInfo* OldVN = *OI;
761
762 // Copy the valno over
Lang Hames857c4e02009-06-17 21:01:20 +0000763 VNInfo* NewVN = NewLI.createValueCopy(OldVN, LIs->getVNInfoAllocator());
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000764 NewLI.MergeValueInAsValue(*CurrLI, OldVN, NewVN);
765
766 // Remove the valno from the old interval
767 CurrLI->removeValNo(OldVN);
768 }
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000769
770 // Rewrite defs and uses. This is done in two stages to avoid invalidating
771 // the reg_iterator.
772 SmallVector<std::pair<MachineInstr*, unsigned>, 8> OpsToChange;
773
774 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
775 E = MRI->reg_end(); I != E; ++I) {
776 MachineOperand& MO = I.getOperand();
Lang Hames233a60e2009-11-03 23:52:08 +0000777 SlotIndex InstrIdx = LIs->getInstructionIndex(&*I);
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000778
Lang Hames233a60e2009-11-03 23:52:08 +0000779 if ((MO.isUse() && NewLI.liveAt(InstrIdx.getUseIndex())) ||
780 (MO.isDef() && NewLI.liveAt(InstrIdx.getDefIndex())))
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000781 OpsToChange.push_back(std::make_pair(&*I, I.getOperandNo()));
782 }
783
784 for (SmallVector<std::pair<MachineInstr*, unsigned>, 8>::iterator I =
785 OpsToChange.begin(), E = OpsToChange.end(); I != E; ++I) {
786 MachineInstr* Inst = I->first;
787 unsigned OpIdx = I->second;
788 MachineOperand& MO = Inst->getOperand(OpIdx);
789 MO.setReg(NewVReg);
790 }
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000791
Owen Anderson420dd372009-03-14 21:40:05 +0000792 // Grow the VirtRegMap, since we've created a new vreg.
793 VRM->grow();
794
Owen Anderson45e68552009-01-29 05:28:55 +0000795 // The renumbered vreg shares a stack slot with the old register.
796 if (IntervalSSMap.count(CurrLI->reg))
797 IntervalSSMap[NewVReg] = IntervalSSMap[CurrLI->reg];
798
Dan Gohmanfe601042010-06-22 15:08:57 +0000799 ++NumRenumbers;
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000800}
801
Evan Cheng37844532009-07-16 09:20:10 +0000802bool PreAllocSplitting::Rematerialize(unsigned VReg, VNInfo* ValNo,
Owen Anderson6002e992008-12-04 21:20:30 +0000803 MachineInstr* DefMI,
804 MachineBasicBlock::iterator RestorePt,
Owen Anderson6002e992008-12-04 21:20:30 +0000805 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
806 MachineBasicBlock& MBB = *RestorePt->getParent();
807
808 MachineBasicBlock::iterator KillPt = BarrierMBB->end();
Lang Hames857c4e02009-06-17 21:01:20 +0000809 if (!ValNo->isDefAccurate() || DefMI->getParent() == BarrierMBB)
Lang Hamesb3661582009-11-14 00:02:51 +0000810 KillPt = findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB);
Owen Anderson6002e992008-12-04 21:20:30 +0000811 else
Chris Lattner7896c9f2009-12-03 00:50:42 +0000812 KillPt = llvm::next(MachineBasicBlock::iterator(DefMI));
Owen Anderson6002e992008-12-04 21:20:30 +0000813
814 if (KillPt == DefMI->getParent()->end())
815 return false;
816
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +0000817 TII->reMaterialize(MBB, RestorePt, VReg, 0, DefMI, *TRI);
Lang Hamesb3661582009-11-14 00:02:51 +0000818 SlotIndex RematIdx = LIs->InsertMachineInstrInMaps(prior(RestorePt));
Owen Anderson6002e992008-12-04 21:20:30 +0000819
Owen Andersonb4b84362009-01-26 21:57:31 +0000820 ReconstructLiveInterval(CurrLI);
Lang Hames233a60e2009-11-03 23:52:08 +0000821 RematIdx = RematIdx.getDefIndex();
Lang Hames86511252009-09-04 20:41:11 +0000822 RenumberValno(CurrLI->findDefinedVNInfoForRegInt(RematIdx));
Owen Andersone1762c92009-01-12 03:10:40 +0000823
Owen Anderson75fa96b2008-11-19 04:28:29 +0000824 ++NumSplits;
825 ++NumRemats;
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000826 return true;
827}
828
829MachineInstr* PreAllocSplitting::FoldSpill(unsigned vreg,
830 const TargetRegisterClass* RC,
831 MachineInstr* DefMI,
832 MachineInstr* Barrier,
833 MachineBasicBlock* MBB,
834 int& SS,
835 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000836 // Go top down if RefsInMBB is empty.
837 if (RefsInMBB.empty())
838 return 0;
Owen Anderson75fa96b2008-11-19 04:28:29 +0000839
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000840 MachineBasicBlock::iterator FoldPt = Barrier;
841 while (&*FoldPt != DefMI && FoldPt != MBB->begin() &&
842 !RefsInMBB.count(FoldPt))
843 --FoldPt;
844
Evan Cheng1015ba72010-05-21 20:53:24 +0000845 int OpIdx = FoldPt->findRegisterDefOperandIdx(vreg);
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000846 if (OpIdx == -1)
847 return 0;
848
849 SmallVector<unsigned, 1> Ops;
850 Ops.push_back(OpIdx);
851
852 if (!TII->canFoldMemoryOperand(FoldPt, Ops))
853 return 0;
854
855 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(vreg);
856 if (I != IntervalSSMap.end()) {
857 SS = I->second;
858 } else {
David Greene3f2bf852009-11-12 20:49:22 +0000859 SS = MFI->CreateSpillStackObject(RC->getSize(), RC->getAlignment());
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000860 }
861
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000862 MachineInstr* FMI = TII->foldMemoryOperand(FoldPt, Ops, SS);
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000863
864 if (FMI) {
865 LIs->ReplaceMachineInstrInMaps(FoldPt, FMI);
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000866 FoldPt->eraseFromParent();
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000867 ++NumFolds;
868
869 IntervalSSMap[vreg] = SS;
Evan Chengc781a242009-05-03 18:32:42 +0000870 CurrSLI = &LSs->getOrCreateInterval(SS, RC);
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000871 if (CurrSLI->hasAtLeastOneValue())
872 CurrSValNo = CurrSLI->getValNumInfo(0);
873 else
Lang Hames233a60e2009-11-03 23:52:08 +0000874 CurrSValNo = CurrSLI->getNextValue(SlotIndex(), 0, false,
Lang Hames86511252009-09-04 20:41:11 +0000875 LSs->getVNInfoAllocator());
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000876 }
877
878 return FMI;
Owen Anderson75fa96b2008-11-19 04:28:29 +0000879}
880
Owen Andersonc93023a2009-03-04 08:52:31 +0000881MachineInstr* PreAllocSplitting::FoldRestore(unsigned vreg,
882 const TargetRegisterClass* RC,
883 MachineInstr* Barrier,
884 MachineBasicBlock* MBB,
885 int SS,
886 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
Owen Andersona2bfb542009-03-05 08:23:20 +0000887 if ((int)RestoreFoldLimit != -1 && RestoreFoldLimit == (int)NumRestoreFolds)
Owen Anderson323c58d2009-03-05 07:19:18 +0000888 return 0;
889
Owen Andersonc93023a2009-03-04 08:52:31 +0000890 // Go top down if RefsInMBB is empty.
891 if (RefsInMBB.empty())
892 return 0;
893
894 // Can't fold a restore between a call stack setup and teardown.
895 MachineBasicBlock::iterator FoldPt = Barrier;
Owen Anderson323c58d2009-03-05 07:19:18 +0000896
897 // Advance from barrier to call frame teardown.
898 while (FoldPt != MBB->getFirstTerminator() &&
899 FoldPt->getOpcode() != TRI->getCallFrameDestroyOpcode()) {
900 if (RefsInMBB.count(FoldPt))
901 return 0;
Owen Andersonc93023a2009-03-04 08:52:31 +0000902
Owen Anderson323c58d2009-03-05 07:19:18 +0000903 ++FoldPt;
904 }
905
906 if (FoldPt == MBB->getFirstTerminator())
907 return 0;
908 else
909 ++FoldPt;
910
911 // Now find the restore point.
912 while (FoldPt != MBB->getFirstTerminator() && !RefsInMBB.count(FoldPt)) {
Owen Andersonc93023a2009-03-04 08:52:31 +0000913 if (FoldPt->getOpcode() == TRI->getCallFrameSetupOpcode()) {
914 while (FoldPt != MBB->getFirstTerminator() &&
915 FoldPt->getOpcode() != TRI->getCallFrameDestroyOpcode()) {
916 if (RefsInMBB.count(FoldPt))
917 return 0;
918
919 ++FoldPt;
920 }
921
Owen Anderson323c58d2009-03-05 07:19:18 +0000922 if (FoldPt == MBB->getFirstTerminator())
923 return 0;
924 }
925
926 ++FoldPt;
Owen Andersonc93023a2009-03-04 08:52:31 +0000927 }
928
929 if (FoldPt == MBB->getFirstTerminator())
930 return 0;
931
932 int OpIdx = FoldPt->findRegisterUseOperandIdx(vreg, true);
933 if (OpIdx == -1)
934 return 0;
935
936 SmallVector<unsigned, 1> Ops;
937 Ops.push_back(OpIdx);
938
939 if (!TII->canFoldMemoryOperand(FoldPt, Ops))
940 return 0;
941
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000942 MachineInstr* FMI = TII->foldMemoryOperand(FoldPt, Ops, SS);
Owen Andersonc93023a2009-03-04 08:52:31 +0000943
944 if (FMI) {
945 LIs->ReplaceMachineInstrInMaps(FoldPt, FMI);
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000946 FoldPt->eraseFromParent();
Owen Anderson323c58d2009-03-05 07:19:18 +0000947 ++NumRestoreFolds;
Owen Andersonc93023a2009-03-04 08:52:31 +0000948 }
949
950 return FMI;
951}
952
Evan Chengf5cd4f02008-10-23 20:43:13 +0000953/// SplitRegLiveInterval - Split (spill and restore) the given live interval
954/// so it would not cross the barrier that's being processed. Shrink wrap
955/// (minimize) the live interval to the last uses.
956bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) {
David Greene4175f582010-01-05 01:25:47 +0000957 DEBUG(dbgs() << "Pre-alloc splitting " << LI->reg << " for " << *Barrier
Lang Hames233a60e2009-11-03 23:52:08 +0000958 << " result: ");
959
Evan Chengf5cd4f02008-10-23 20:43:13 +0000960 CurrLI = LI;
961
962 // Find live range where current interval cross the barrier.
963 LiveInterval::iterator LR =
Lang Hames233a60e2009-11-03 23:52:08 +0000964 CurrLI->FindLiveRangeContaining(BarrierIdx.getUseIndex());
Evan Chengf5cd4f02008-10-23 20:43:13 +0000965 VNInfo *ValNo = LR->valno;
966
Torok Edwinf3689232009-07-12 20:07:01 +0000967 assert(!ValNo->isUnused() && "Val# is defined by a dead def?");
Evan Chengf5cd4f02008-10-23 20:43:13 +0000968
Lang Hames857c4e02009-06-17 21:01:20 +0000969 MachineInstr *DefMI = ValNo->isDefAccurate()
Evan Cheng06587492008-10-24 02:05:00 +0000970 ? LIs->getInstructionFromIndex(ValNo->def) : NULL;
Evan Cheng06587492008-10-24 02:05:00 +0000971
Owen Andersond3be4622009-01-21 08:18:03 +0000972 // If this would create a new join point, do not split.
Lang Hames233a60e2009-11-03 23:52:08 +0000973 if (DefMI && createsNewJoin(LR, DefMI->getParent(), Barrier->getParent())) {
David Greene4175f582010-01-05 01:25:47 +0000974 DEBUG(dbgs() << "FAILED (would create a new join point).\n");
Owen Andersond3be4622009-01-21 08:18:03 +0000975 return false;
Lang Hames233a60e2009-11-03 23:52:08 +0000976 }
Owen Andersond3be4622009-01-21 08:18:03 +0000977
Evan Chengf5cd4f02008-10-23 20:43:13 +0000978 // Find all references in the barrier mbb.
979 SmallPtrSet<MachineInstr*, 4> RefsInMBB;
980 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
981 E = MRI->reg_end(); I != E; ++I) {
982 MachineInstr *RefMI = &*I;
983 if (RefMI->getParent() == BarrierMBB)
984 RefsInMBB.insert(RefMI);
985 }
986
987 // Find a point to restore the value after the barrier.
Evan Chengf5cd4f02008-10-23 20:43:13 +0000988 MachineBasicBlock::iterator RestorePt =
Lang Hamesb3661582009-11-14 00:02:51 +0000989 findRestorePoint(BarrierMBB, Barrier, LR->end, RefsInMBB);
Lang Hames233a60e2009-11-03 23:52:08 +0000990 if (RestorePt == BarrierMBB->end()) {
David Greene4175f582010-01-05 01:25:47 +0000991 DEBUG(dbgs() << "FAILED (could not find a suitable restore point).\n");
Evan Chengf5cd4f02008-10-23 20:43:13 +0000992 return false;
Lang Hames233a60e2009-11-03 23:52:08 +0000993 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000994
Owen Anderson75fa96b2008-11-19 04:28:29 +0000995 if (DefMI && LIs->isReMaterializable(*LI, ValNo, DefMI))
Lang Hamesb3661582009-11-14 00:02:51 +0000996 if (Rematerialize(LI->reg, ValNo, DefMI, RestorePt, RefsInMBB)) {
David Greene4175f582010-01-05 01:25:47 +0000997 DEBUG(dbgs() << "success (remat).\n");
Lang Hames233a60e2009-11-03 23:52:08 +0000998 return true;
999 }
Owen Anderson75fa96b2008-11-19 04:28:29 +00001000
Evan Chengf5cd4f02008-10-23 20:43:13 +00001001 // Add a spill either before the barrier or after the definition.
Evan Cheng06587492008-10-24 02:05:00 +00001002 MachineBasicBlock *DefMBB = DefMI ? DefMI->getParent() : NULL;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001003 const TargetRegisterClass *RC = MRI->getRegClass(CurrLI->reg);
Lang Hames233a60e2009-11-03 23:52:08 +00001004 SlotIndex SpillIndex;
Evan Cheng06587492008-10-24 02:05:00 +00001005 MachineInstr *SpillMI = NULL;
Evan Cheng985921e2008-10-27 23:29:28 +00001006 int SS = -1;
Lang Hames857c4e02009-06-17 21:01:20 +00001007 if (!ValNo->isDefAccurate()) {
1008 // If we don't know where the def is we must split just before the barrier.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001009 if ((SpillMI = FoldSpill(LI->reg, RC, 0, Barrier,
1010 BarrierMBB, SS, RefsInMBB))) {
1011 SpillIndex = LIs->getInstructionIndex(SpillMI);
1012 } else {
1013 MachineBasicBlock::iterator SpillPt =
Lang Hamesb3661582009-11-14 00:02:51 +00001014 findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB);
Lang Hames233a60e2009-11-03 23:52:08 +00001015 if (SpillPt == BarrierMBB->begin()) {
David Greene4175f582010-01-05 01:25:47 +00001016 DEBUG(dbgs() << "FAILED (could not find a suitable spill point).\n");
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001017 return false; // No gap to insert spill.
Lang Hames233a60e2009-11-03 23:52:08 +00001018 }
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001019 // Add spill.
1020
1021 SS = CreateSpillStackSlot(CurrLI->reg, RC);
Evan Cheng746ad692010-05-06 19:06:44 +00001022 TII->storeRegToStackSlot(*BarrierMBB, SpillPt, CurrLI->reg, true, SS, RC,
1023 TRI);
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001024 SpillMI = prior(SpillPt);
Lang Hamesb3661582009-11-14 00:02:51 +00001025 SpillIndex = LIs->InsertMachineInstrInMaps(SpillMI);
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001026 }
Evan Cheng54898932008-10-29 08:39:34 +00001027 } else if (!IsAvailableInStack(DefMBB, CurrLI->reg, ValNo->def,
Lang Hamesb3661582009-11-14 00:02:51 +00001028 LIs->getZeroIndex(), SpillIndex, SS)) {
Evan Cheng78dfef72008-10-25 00:52:41 +00001029 // If it's already split, just restore the value. There is no need to spill
1030 // the def again.
Lang Hames233a60e2009-11-03 23:52:08 +00001031 if (!DefMI) {
David Greene4175f582010-01-05 01:25:47 +00001032 DEBUG(dbgs() << "FAILED (def is dead).\n");
Evan Chengd0e32c52008-10-29 05:06:14 +00001033 return false; // Def is dead. Do nothing.
Lang Hames233a60e2009-11-03 23:52:08 +00001034 }
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001035
1036 if ((SpillMI = FoldSpill(LI->reg, RC, DefMI, Barrier,
Evan Cheng35ca9202009-10-09 01:17:11 +00001037 BarrierMBB, SS, RefsInMBB))) {
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001038 SpillIndex = LIs->getInstructionIndex(SpillMI);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001039 } else {
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001040 // Check if it's possible to insert a spill after the def MI.
1041 MachineBasicBlock::iterator SpillPt;
1042 if (DefMBB == BarrierMBB) {
1043 // Add spill after the def and the last use before the barrier.
1044 SpillPt = findSpillPoint(BarrierMBB, Barrier, DefMI,
Lang Hamesb3661582009-11-14 00:02:51 +00001045 RefsInMBB);
Lang Hames233a60e2009-11-03 23:52:08 +00001046 if (SpillPt == DefMBB->begin()) {
David Greene4175f582010-01-05 01:25:47 +00001047 DEBUG(dbgs() << "FAILED (could not find a suitable spill point).\n");
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001048 return false; // No gap to insert spill.
Lang Hames233a60e2009-11-03 23:52:08 +00001049 }
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001050 } else {
Chris Lattner7896c9f2009-12-03 00:50:42 +00001051 SpillPt = llvm::next(MachineBasicBlock::iterator(DefMI));
Lang Hames233a60e2009-11-03 23:52:08 +00001052 if (SpillPt == DefMBB->end()) {
David Greene4175f582010-01-05 01:25:47 +00001053 DEBUG(dbgs() << "FAILED (could not find a suitable spill point).\n");
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001054 return false; // No gap to insert spill.
Lang Hames233a60e2009-11-03 23:52:08 +00001055 }
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001056 }
Evan Cheng35ca9202009-10-09 01:17:11 +00001057 // Add spill.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001058 SS = CreateSpillStackSlot(CurrLI->reg, RC);
Evan Cheng746ad692010-05-06 19:06:44 +00001059 TII->storeRegToStackSlot(*DefMBB, SpillPt, CurrLI->reg, false, SS, RC,
1060 TRI);
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001061 SpillMI = prior(SpillPt);
Lang Hamesb3661582009-11-14 00:02:51 +00001062 SpillIndex = LIs->InsertMachineInstrInMaps(SpillMI);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001063 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001064 }
1065
Evan Cheng54898932008-10-29 08:39:34 +00001066 // Remember def instruction index to spill index mapping.
1067 if (DefMI && SpillMI)
1068 Def2SpillMap[ValNo->def] = SpillIndex;
1069
Evan Chengf5cd4f02008-10-23 20:43:13 +00001070 // Add restore.
Owen Andersonc93023a2009-03-04 08:52:31 +00001071 bool FoldedRestore = false;
Lang Hamesb3661582009-11-14 00:02:51 +00001072 SlotIndex RestoreIndex;
Owen Andersonc93023a2009-03-04 08:52:31 +00001073 if (MachineInstr* LMI = FoldRestore(CurrLI->reg, RC, Barrier,
1074 BarrierMBB, SS, RefsInMBB)) {
1075 RestorePt = LMI;
Owen Anderson323c58d2009-03-05 07:19:18 +00001076 RestoreIndex = LIs->getInstructionIndex(RestorePt);
Owen Andersonc93023a2009-03-04 08:52:31 +00001077 FoldedRestore = true;
1078 } else {
Evan Cheng746ad692010-05-06 19:06:44 +00001079 TII->loadRegFromStackSlot(*BarrierMBB, RestorePt, CurrLI->reg, SS, RC, TRI);
Owen Andersonc93023a2009-03-04 08:52:31 +00001080 MachineInstr *LoadMI = prior(RestorePt);
Lang Hamesb3661582009-11-14 00:02:51 +00001081 RestoreIndex = LIs->InsertMachineInstrInMaps(LoadMI);
Owen Andersonc93023a2009-03-04 08:52:31 +00001082 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001083
Evan Chengd0e32c52008-10-29 05:06:14 +00001084 // Update spill stack slot live interval.
Lang Hames233a60e2009-11-03 23:52:08 +00001085 UpdateSpillSlotInterval(ValNo, SpillIndex.getUseIndex().getNextSlot(),
1086 RestoreIndex.getDefIndex());
Evan Chengd0e32c52008-10-29 05:06:14 +00001087
Owen Andersonb4b84362009-01-26 21:57:31 +00001088 ReconstructLiveInterval(CurrLI);
Evan Cheng35ca9202009-10-09 01:17:11 +00001089
Owen Andersonc93023a2009-03-04 08:52:31 +00001090 if (!FoldedRestore) {
Lang Hames233a60e2009-11-03 23:52:08 +00001091 SlotIndex RestoreIdx = LIs->getInstructionIndex(prior(RestorePt));
1092 RestoreIdx = RestoreIdx.getDefIndex();
Lang Hames86511252009-09-04 20:41:11 +00001093 RenumberValno(CurrLI->findDefinedVNInfoForRegInt(RestoreIdx));
Owen Andersonc93023a2009-03-04 08:52:31 +00001094 }
Owen Anderson7d211e22008-12-31 02:00:25 +00001095
Evan Chengae7fa5b2008-10-28 01:48:24 +00001096 ++NumSplits;
David Greene4175f582010-01-05 01:25:47 +00001097 DEBUG(dbgs() << "success.\n");
Evan Chengf5cd4f02008-10-23 20:43:13 +00001098 return true;
1099}
1100
1101/// SplitRegLiveIntervals - Split all register live intervals that cross the
1102/// barrier that's being processed.
1103bool
Owen Anderson956ec272009-01-23 00:23:32 +00001104PreAllocSplitting::SplitRegLiveIntervals(const TargetRegisterClass **RCs,
1105 SmallPtrSet<LiveInterval*, 8>& Split) {
Evan Chengf5cd4f02008-10-23 20:43:13 +00001106 // First find all the virtual registers whose live intervals are intercepted
1107 // by the current barrier.
1108 SmallVector<LiveInterval*, 8> Intervals;
1109 for (const TargetRegisterClass **RC = RCs; *RC; ++RC) {
Evan Cheng4350eb82009-02-06 17:17:30 +00001110 // FIXME: If it's not safe to move any instruction that defines the barrier
1111 // register class, then it means there are some special dependencies which
1112 // codegen is not modelling. Ignore these barriers for now.
1113 if (!TII->isSafeToMoveRegClassDefs(*RC))
Evan Cheng23066282008-10-27 07:14:50 +00001114 continue;
Chris Lattner65569b82010-05-21 17:47:50 +00001115 const std::vector<unsigned> &VRs = MRI->getRegClassVirtRegs(*RC);
Evan Chengf5cd4f02008-10-23 20:43:13 +00001116 for (unsigned i = 0, e = VRs.size(); i != e; ++i) {
1117 unsigned Reg = VRs[i];
1118 if (!LIs->hasInterval(Reg))
1119 continue;
1120 LiveInterval *LI = &LIs->getInterval(Reg);
1121 if (LI->liveAt(BarrierIdx) && !Barrier->readsRegister(Reg))
1122 // Virtual register live interval is intercepted by the barrier. We
1123 // should split and shrink wrap its interval if possible.
1124 Intervals.push_back(LI);
1125 }
1126 }
1127
1128 // Process the affected live intervals.
1129 bool Change = false;
1130 while (!Intervals.empty()) {
Evan Chengae7fa5b2008-10-28 01:48:24 +00001131 if (PreSplitLimit != -1 && (int)NumSplits == PreSplitLimit)
1132 break;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001133 LiveInterval *LI = Intervals.back();
1134 Intervals.pop_back();
Owen Anderson956ec272009-01-23 00:23:32 +00001135 bool result = SplitRegLiveInterval(LI);
1136 if (result) Split.insert(LI);
1137 Change |= result;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001138 }
1139
1140 return Change;
1141}
1142
Owen Anderson45e68552009-01-29 05:28:55 +00001143unsigned PreAllocSplitting::getNumberOfNonSpills(
Owen Anderson32ca8652009-01-24 10:07:43 +00001144 SmallPtrSet<MachineInstr*, 4>& MIs,
Owen Anderson45e68552009-01-29 05:28:55 +00001145 unsigned Reg, int FrameIndex,
1146 bool& FeedsTwoAddr) {
1147 unsigned NonSpills = 0;
Owen Anderson32ca8652009-01-24 10:07:43 +00001148 for (SmallPtrSet<MachineInstr*, 4>::iterator UI = MIs.begin(), UE = MIs.end();
Owen Anderson45e68552009-01-29 05:28:55 +00001149 UI != UE; ++UI) {
Owen Anderson32ca8652009-01-24 10:07:43 +00001150 int StoreFrameIndex;
1151 unsigned StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
Owen Anderson45e68552009-01-29 05:28:55 +00001152 if (StoreVReg != Reg || StoreFrameIndex != FrameIndex)
Dan Gohmanfe601042010-06-22 15:08:57 +00001153 ++NonSpills;
Owen Anderson45e68552009-01-29 05:28:55 +00001154
1155 int DefIdx = (*UI)->findRegisterDefOperandIdx(Reg);
Bob Wilsond9df5012009-04-09 17:16:43 +00001156 if (DefIdx != -1 && (*UI)->isRegTiedToUseOperand(DefIdx))
Owen Anderson45e68552009-01-29 05:28:55 +00001157 FeedsTwoAddr = true;
Owen Anderson32ca8652009-01-24 10:07:43 +00001158 }
1159
Owen Anderson45e68552009-01-29 05:28:55 +00001160 return NonSpills;
Owen Anderson32ca8652009-01-24 10:07:43 +00001161}
1162
Owen Anderson956ec272009-01-23 00:23:32 +00001163/// removeDeadSpills - After doing splitting, filter through all intervals we've
1164/// split, and see if any of the spills are unnecessary. If so, remove them.
1165bool PreAllocSplitting::removeDeadSpills(SmallPtrSet<LiveInterval*, 8>& split) {
1166 bool changed = false;
1167
Owen Anderson4bfc2092009-01-29 05:41:02 +00001168 // Walk over all of the live intervals that were touched by the splitter,
1169 // and see if we can do any DCE and/or folding.
Owen Anderson956ec272009-01-23 00:23:32 +00001170 for (SmallPtrSet<LiveInterval*, 8>::iterator LI = split.begin(),
1171 LE = split.end(); LI != LE; ++LI) {
Owen Anderson9ce499a2009-01-23 03:28:53 +00001172 DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> > VNUseCount;
Owen Anderson956ec272009-01-23 00:23:32 +00001173
Owen Anderson4bfc2092009-01-29 05:41:02 +00001174 // First, collect all the uses of the vreg, and sort them by their
1175 // reaching definition (VNInfo).
Owen Anderson956ec272009-01-23 00:23:32 +00001176 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin((*LI)->reg),
1177 UE = MRI->use_end(); UI != UE; ++UI) {
Lang Hames233a60e2009-11-03 23:52:08 +00001178 SlotIndex index = LIs->getInstructionIndex(&*UI);
1179 index = index.getUseIndex();
Owen Anderson956ec272009-01-23 00:23:32 +00001180
1181 const LiveRange* LR = (*LI)->getLiveRangeContaining(index);
Owen Anderson9ce499a2009-01-23 03:28:53 +00001182 VNUseCount[LR->valno].insert(&*UI);
Owen Anderson956ec272009-01-23 00:23:32 +00001183 }
1184
Owen Anderson4bfc2092009-01-29 05:41:02 +00001185 // Now, take the definitions (VNInfo's) one at a time and try to DCE
1186 // and/or fold them away.
Owen Anderson956ec272009-01-23 00:23:32 +00001187 for (LiveInterval::vni_iterator VI = (*LI)->vni_begin(),
1188 VE = (*LI)->vni_end(); VI != VE; ++VI) {
Owen Anderson45e68552009-01-29 05:28:55 +00001189
1190 if (DeadSplitLimit != -1 && (int)NumDeadSpills == DeadSplitLimit)
1191 return changed;
1192
Owen Anderson956ec272009-01-23 00:23:32 +00001193 VNInfo* CurrVN = *VI;
Owen Anderson4bfc2092009-01-29 05:41:02 +00001194
1195 // We don't currently try to handle definitions with PHI kills, because
1196 // it would involve processing more than one VNInfo at once.
Lang Hames857c4e02009-06-17 21:01:20 +00001197 if (CurrVN->hasPHIKill()) continue;
Owen Anderson956ec272009-01-23 00:23:32 +00001198
Owen Anderson4bfc2092009-01-29 05:41:02 +00001199 // We also don't try to handle the results of PHI joins, since there's
1200 // no defining instruction to analyze.
Lang Hames857c4e02009-06-17 21:01:20 +00001201 if (!CurrVN->isDefAccurate() || CurrVN->isUnused()) continue;
Owen Anderson9ce499a2009-01-23 03:28:53 +00001202
Owen Anderson4bfc2092009-01-29 05:41:02 +00001203 // We're only interested in eliminating cruft introduced by the splitter,
1204 // is of the form load-use or load-use-store. First, check that the
1205 // definition is a load, and remember what stack slot we loaded it from.
Lang Hames857c4e02009-06-17 21:01:20 +00001206 MachineInstr* DefMI = LIs->getInstructionFromIndex(CurrVN->def);
Owen Anderson956ec272009-01-23 00:23:32 +00001207 int FrameIndex;
1208 if (!TII->isLoadFromStackSlot(DefMI, FrameIndex)) continue;
1209
Owen Anderson4bfc2092009-01-29 05:41:02 +00001210 // If the definition has no uses at all, just DCE it.
Owen Anderson9ce499a2009-01-23 03:28:53 +00001211 if (VNUseCount[CurrVN].size() == 0) {
1212 LIs->RemoveMachineInstrFromMaps(DefMI);
1213 (*LI)->removeValNo(CurrVN);
1214 DefMI->eraseFromParent();
Owen Andersonc0f3a032009-01-29 08:22:06 +00001215 VNUseCount.erase(CurrVN);
Dan Gohmanfe601042010-06-22 15:08:57 +00001216 ++NumDeadSpills;
Owen Anderson9ce499a2009-01-23 03:28:53 +00001217 changed = true;
Owen Anderson32ca8652009-01-24 10:07:43 +00001218 continue;
Owen Anderson9ce499a2009-01-23 03:28:53 +00001219 }
Owen Anderson32ca8652009-01-24 10:07:43 +00001220
Owen Anderson4bfc2092009-01-29 05:41:02 +00001221 // Second, get the number of non-store uses of the definition, as well as
1222 // a flag indicating whether it feeds into a later two-address definition.
Owen Anderson45e68552009-01-29 05:28:55 +00001223 bool FeedsTwoAddr = false;
1224 unsigned NonSpillCount = getNumberOfNonSpills(VNUseCount[CurrVN],
1225 (*LI)->reg, FrameIndex,
1226 FeedsTwoAddr);
1227
Owen Anderson4bfc2092009-01-29 05:41:02 +00001228 // If there's one non-store use and it doesn't feed a two-addr, then
1229 // this is a load-use-store case that we can try to fold.
Owen Anderson45e68552009-01-29 05:28:55 +00001230 if (NonSpillCount == 1 && !FeedsTwoAddr) {
Owen Anderson4bfc2092009-01-29 05:41:02 +00001231 // Start by finding the non-store use MachineInstr.
Owen Anderson45e68552009-01-29 05:28:55 +00001232 SmallPtrSet<MachineInstr*, 4>::iterator UI = VNUseCount[CurrVN].begin();
1233 int StoreFrameIndex;
1234 unsigned StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
1235 while (UI != VNUseCount[CurrVN].end() &&
1236 (StoreVReg == (*LI)->reg && StoreFrameIndex == FrameIndex)) {
1237 ++UI;
1238 if (UI != VNUseCount[CurrVN].end())
1239 StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
1240 }
Owen Anderson45e68552009-01-29 05:28:55 +00001241 if (UI == VNUseCount[CurrVN].end()) continue;
1242
1243 MachineInstr* use = *UI;
1244
Owen Anderson4bfc2092009-01-29 05:41:02 +00001245 // Attempt to fold it away!
Owen Anderson45e68552009-01-29 05:28:55 +00001246 int OpIdx = use->findRegisterUseOperandIdx((*LI)->reg, false);
1247 if (OpIdx == -1) continue;
Owen Anderson45e68552009-01-29 05:28:55 +00001248 SmallVector<unsigned, 1> Ops;
1249 Ops.push_back(OpIdx);
Owen Anderson45e68552009-01-29 05:28:55 +00001250 if (!TII->canFoldMemoryOperand(use, Ops)) continue;
1251
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +00001252 MachineInstr* NewMI = TII->foldMemoryOperand(use, Ops, FrameIndex);
Owen Anderson45e68552009-01-29 05:28:55 +00001253
1254 if (!NewMI) continue;
1255
Owen Anderson4bfc2092009-01-29 05:41:02 +00001256 // Update relevant analyses.
Owen Anderson45e68552009-01-29 05:28:55 +00001257 LIs->RemoveMachineInstrFromMaps(DefMI);
1258 LIs->ReplaceMachineInstrInMaps(use, NewMI);
1259 (*LI)->removeValNo(CurrVN);
1260
1261 DefMI->eraseFromParent();
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +00001262 use->eraseFromParent();
Owen Anderson45e68552009-01-29 05:28:55 +00001263 VNUseCount[CurrVN].erase(use);
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +00001264
Owen Anderson4bfc2092009-01-29 05:41:02 +00001265 // Remove deleted instructions. Note that we need to remove them from
1266 // the VNInfo->use map as well, just to be safe.
Owen Anderson45e68552009-01-29 05:28:55 +00001267 for (SmallPtrSet<MachineInstr*, 4>::iterator II =
1268 VNUseCount[CurrVN].begin(), IE = VNUseCount[CurrVN].end();
1269 II != IE; ++II) {
Owen Anderson4bfc2092009-01-29 05:41:02 +00001270 for (DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> >::iterator
Owen Andersonc0f3a032009-01-29 08:22:06 +00001271 VNI = VNUseCount.begin(), VNE = VNUseCount.end(); VNI != VNE;
1272 ++VNI)
1273 if (VNI->first != CurrVN)
1274 VNI->second.erase(*II);
Owen Anderson45e68552009-01-29 05:28:55 +00001275 LIs->RemoveMachineInstrFromMaps(*II);
1276 (*II)->eraseFromParent();
1277 }
Owen Andersonc0f3a032009-01-29 08:22:06 +00001278
1279 VNUseCount.erase(CurrVN);
Owen Anderson45e68552009-01-29 05:28:55 +00001280
1281 for (DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> >::iterator
1282 VI = VNUseCount.begin(), VE = VNUseCount.end(); VI != VE; ++VI)
1283 if (VI->second.erase(use))
1284 VI->second.insert(NewMI);
1285
Dan Gohmanfe601042010-06-22 15:08:57 +00001286 ++NumDeadSpills;
Owen Anderson45e68552009-01-29 05:28:55 +00001287 changed = true;
1288 continue;
1289 }
1290
Owen Anderson4bfc2092009-01-29 05:41:02 +00001291 // If there's more than one non-store instruction, we can't profitably
1292 // fold it, so bail.
Owen Anderson45e68552009-01-29 05:28:55 +00001293 if (NonSpillCount) continue;
Owen Anderson32ca8652009-01-24 10:07:43 +00001294
Owen Anderson4bfc2092009-01-29 05:41:02 +00001295 // Otherwise, this is a load-store case, so DCE them.
Owen Anderson32ca8652009-01-24 10:07:43 +00001296 for (SmallPtrSet<MachineInstr*, 4>::iterator UI =
1297 VNUseCount[CurrVN].begin(), UE = VNUseCount[CurrVN].end();
Lang Hamesf035ce52009-11-12 01:24:08 +00001298 UI != UE; ++UI) {
Owen Anderson32ca8652009-01-24 10:07:43 +00001299 LIs->RemoveMachineInstrFromMaps(*UI);
1300 (*UI)->eraseFromParent();
1301 }
1302
Owen Andersonc0f3a032009-01-29 08:22:06 +00001303 VNUseCount.erase(CurrVN);
1304
Owen Anderson32ca8652009-01-24 10:07:43 +00001305 LIs->RemoveMachineInstrFromMaps(DefMI);
1306 (*LI)->removeValNo(CurrVN);
1307 DefMI->eraseFromParent();
Dan Gohmanfe601042010-06-22 15:08:57 +00001308 ++NumDeadSpills;
Owen Anderson32ca8652009-01-24 10:07:43 +00001309 changed = true;
Owen Anderson956ec272009-01-23 00:23:32 +00001310 }
1311 }
1312
1313 return changed;
1314}
1315
Owen Andersonf1f75b12008-11-04 22:22:41 +00001316bool PreAllocSplitting::createsNewJoin(LiveRange* LR,
1317 MachineBasicBlock* DefMBB,
1318 MachineBasicBlock* BarrierMBB) {
1319 if (DefMBB == BarrierMBB)
1320 return false;
1321
Lang Hames857c4e02009-06-17 21:01:20 +00001322 if (LR->valno->hasPHIKill())
Owen Andersonf1f75b12008-11-04 22:22:41 +00001323 return false;
1324
Lang Hames233a60e2009-11-03 23:52:08 +00001325 SlotIndex MBBEnd = LIs->getMBBEndIdx(BarrierMBB);
Owen Andersonf1f75b12008-11-04 22:22:41 +00001326 if (LR->end < MBBEnd)
1327 return false;
1328
1329 MachineLoopInfo& MLI = getAnalysis<MachineLoopInfo>();
1330 if (MLI.getLoopFor(DefMBB) != MLI.getLoopFor(BarrierMBB))
1331 return true;
1332
1333 MachineDominatorTree& MDT = getAnalysis<MachineDominatorTree>();
1334 SmallPtrSet<MachineBasicBlock*, 4> Visited;
1335 typedef std::pair<MachineBasicBlock*,
1336 MachineBasicBlock::succ_iterator> ItPair;
1337 SmallVector<ItPair, 4> Stack;
1338 Stack.push_back(std::make_pair(BarrierMBB, BarrierMBB->succ_begin()));
1339
1340 while (!Stack.empty()) {
1341 ItPair P = Stack.back();
1342 Stack.pop_back();
1343
1344 MachineBasicBlock* PredMBB = P.first;
1345 MachineBasicBlock::succ_iterator S = P.second;
1346
1347 if (S == PredMBB->succ_end())
1348 continue;
1349 else if (Visited.count(*S)) {
1350 Stack.push_back(std::make_pair(PredMBB, ++S));
1351 continue;
1352 } else
Owen Andersonb214c692008-11-05 00:32:13 +00001353 Stack.push_back(std::make_pair(PredMBB, S+1));
Owen Andersonf1f75b12008-11-04 22:22:41 +00001354
1355 MachineBasicBlock* MBB = *S;
1356 Visited.insert(MBB);
1357
1358 if (MBB == BarrierMBB)
1359 return true;
1360
1361 MachineDomTreeNode* DefMDTN = MDT.getNode(DefMBB);
1362 MachineDomTreeNode* BarrierMDTN = MDT.getNode(BarrierMBB);
1363 MachineDomTreeNode* MDTN = MDT.getNode(MBB)->getIDom();
1364 while (MDTN) {
1365 if (MDTN == DefMDTN)
1366 return true;
1367 else if (MDTN == BarrierMDTN)
1368 break;
1369 MDTN = MDTN->getIDom();
1370 }
1371
1372 MBBEnd = LIs->getMBBEndIdx(MBB);
1373 if (LR->end > MBBEnd)
1374 Stack.push_back(std::make_pair(MBB, MBB->succ_begin()));
1375 }
1376
1377 return false;
1378}
1379
1380
Evan Cheng09e8ca82008-10-20 21:44:59 +00001381bool PreAllocSplitting::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd0e32c52008-10-29 05:06:14 +00001382 CurrMF = &MF;
1383 TM = &MF.getTarget();
Owen Anderson3ef45492009-01-29 22:13:06 +00001384 TRI = TM->getRegisterInfo();
Evan Chengd0e32c52008-10-29 05:06:14 +00001385 TII = TM->getInstrInfo();
1386 MFI = MF.getFrameInfo();
1387 MRI = &MF.getRegInfo();
Lang Hames233a60e2009-11-03 23:52:08 +00001388 SIs = &getAnalysis<SlotIndexes>();
Evan Chengd0e32c52008-10-29 05:06:14 +00001389 LIs = &getAnalysis<LiveIntervals>();
1390 LSs = &getAnalysis<LiveStacks>();
Owen Anderson420dd372009-03-14 21:40:05 +00001391 VRM = &getAnalysis<VirtRegMap>();
Evan Chengf5cd4f02008-10-23 20:43:13 +00001392
1393 bool MadeChange = false;
1394
1395 // Make sure blocks are numbered in order.
1396 MF.RenumberBlocks();
1397
Evan Cheng54898932008-10-29 08:39:34 +00001398 MachineBasicBlock *Entry = MF.begin();
1399 SmallPtrSet<MachineBasicBlock*,16> Visited;
1400
Owen Anderson956ec272009-01-23 00:23:32 +00001401 SmallPtrSet<LiveInterval*, 8> Split;
1402
Evan Cheng54898932008-10-29 08:39:34 +00001403 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
1404 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
1405 DFI != E; ++DFI) {
1406 BarrierMBB = *DFI;
1407 for (MachineBasicBlock::iterator I = BarrierMBB->begin(),
1408 E = BarrierMBB->end(); I != E; ++I) {
1409 Barrier = &*I;
1410 const TargetRegisterClass **BarrierRCs =
1411 Barrier->getDesc().getRegClassBarriers();
1412 if (!BarrierRCs)
1413 continue;
1414 BarrierIdx = LIs->getInstructionIndex(Barrier);
Owen Anderson956ec272009-01-23 00:23:32 +00001415 MadeChange |= SplitRegLiveIntervals(BarrierRCs, Split);
Evan Cheng54898932008-10-29 08:39:34 +00001416 }
1417 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001418
Owen Anderson956ec272009-01-23 00:23:32 +00001419 MadeChange |= removeDeadSpills(Split);
1420
Evan Chengf5cd4f02008-10-23 20:43:13 +00001421 return MadeChange;
Evan Cheng09e8ca82008-10-20 21:44:59 +00001422}