blob: 3c8257f1dac1065621fe325b57fd37210489889c [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"
18#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Evan Chengd0e32c52008-10-29 05:06:14 +000019#include "llvm/CodeGen/LiveStackAnalysis.h"
Owen Andersonf1f75b12008-11-04 22:22:41 +000020#include "llvm/CodeGen/MachineDominators.h"
Evan Chengf5cd4f02008-10-23 20:43:13 +000021#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000022#include "llvm/CodeGen/MachineFunctionPass.h"
23#include "llvm/CodeGen/MachineLoopInfo.h"
24#include "llvm/CodeGen/MachineRegisterInfo.h"
25#include "llvm/CodeGen/Passes.h"
26#include "llvm/CodeGen/RegisterCoalescer.h"
Evan Chengf5cd4f02008-10-23 20:43:13 +000027#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000028#include "llvm/Target/TargetMachine.h"
29#include "llvm/Target/TargetOptions.h"
30#include "llvm/Target/TargetRegisterInfo.h"
31#include "llvm/Support/CommandLine.h"
32#include "llvm/Support/Debug.h"
Evan Chengd0e32c52008-10-29 05:06:14 +000033#include "llvm/ADT/DenseMap.h"
Evan Cheng54898932008-10-29 08:39:34 +000034#include "llvm/ADT/DepthFirstIterator.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000035#include "llvm/ADT/SmallPtrSet.h"
Evan Chengf5cd4f02008-10-23 20:43:13 +000036#include "llvm/ADT/Statistic.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000037using namespace llvm;
38
Evan Chengae7fa5b2008-10-28 01:48:24 +000039static cl::opt<int> PreSplitLimit("pre-split-limit", cl::init(-1), cl::Hidden);
40
41STATISTIC(NumSplits, "Number of intervals split");
Owen Anderson75fa96b2008-11-19 04:28:29 +000042STATISTIC(NumRemats, "Number of intervals split by rematerialization");
Owen Anderson7b9d67c2008-12-02 18:53:47 +000043STATISTIC(NumFolds, "Number of intervals split with spill folding");
Owen Anderson2ebf63f2008-12-18 01:27:19 +000044STATISTIC(NumRenumbers, "Number of intervals renumbered into new registers");
Evan Chengf5cd4f02008-10-23 20:43:13 +000045
Evan Cheng09e8ca82008-10-20 21:44:59 +000046namespace {
47 class VISIBILITY_HIDDEN PreAllocSplitting : public MachineFunctionPass {
Evan Chengd0e32c52008-10-29 05:06:14 +000048 MachineFunction *CurrMF;
Evan Chengf5cd4f02008-10-23 20:43:13 +000049 const TargetMachine *TM;
50 const TargetInstrInfo *TII;
51 MachineFrameInfo *MFI;
52 MachineRegisterInfo *MRI;
53 LiveIntervals *LIs;
Evan Chengd0e32c52008-10-29 05:06:14 +000054 LiveStacks *LSs;
Evan Cheng09e8ca82008-10-20 21:44:59 +000055
Evan Chengf5cd4f02008-10-23 20:43:13 +000056 // Barrier - Current barrier being processed.
57 MachineInstr *Barrier;
58
59 // BarrierMBB - Basic block where the barrier resides in.
60 MachineBasicBlock *BarrierMBB;
61
62 // Barrier - Current barrier index.
63 unsigned BarrierIdx;
64
65 // CurrLI - Current live interval being split.
66 LiveInterval *CurrLI;
67
Evan Chengd0e32c52008-10-29 05:06:14 +000068 // CurrSLI - Current stack slot live interval.
69 LiveInterval *CurrSLI;
70
71 // CurrSValNo - Current val# for the stack slot live interval.
72 VNInfo *CurrSValNo;
73
74 // IntervalSSMap - A map from live interval to spill slots.
75 DenseMap<unsigned, int> IntervalSSMap;
Evan Chengf5cd4f02008-10-23 20:43:13 +000076
Evan Cheng54898932008-10-29 08:39:34 +000077 // Def2SpillMap - A map from a def instruction index to spill index.
78 DenseMap<unsigned, unsigned> Def2SpillMap;
Evan Cheng06587492008-10-24 02:05:00 +000079
Evan Cheng09e8ca82008-10-20 21:44:59 +000080 public:
81 static char ID;
82 PreAllocSplitting() : MachineFunctionPass(&ID) {}
83
84 virtual bool runOnMachineFunction(MachineFunction &MF);
85
86 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
87 AU.addRequired<LiveIntervals>();
88 AU.addPreserved<LiveIntervals>();
Evan Chengd0e32c52008-10-29 05:06:14 +000089 AU.addRequired<LiveStacks>();
90 AU.addPreserved<LiveStacks>();
Evan Cheng09e8ca82008-10-20 21:44:59 +000091 AU.addPreserved<RegisterCoalescer>();
92 if (StrongPHIElim)
93 AU.addPreservedID(StrongPHIEliminationID);
94 else
95 AU.addPreservedID(PHIEliminationID);
Owen Andersonf1f75b12008-11-04 22:22:41 +000096 AU.addRequired<MachineDominatorTree>();
97 AU.addRequired<MachineLoopInfo>();
98 AU.addPreserved<MachineDominatorTree>();
99 AU.addPreserved<MachineLoopInfo>();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000100 MachineFunctionPass::getAnalysisUsage(AU);
101 }
102
103 virtual void releaseMemory() {
Evan Chengd0e32c52008-10-29 05:06:14 +0000104 IntervalSSMap.clear();
Evan Cheng54898932008-10-29 08:39:34 +0000105 Def2SpillMap.clear();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000106 }
107
108 virtual const char *getPassName() const {
109 return "Pre-Register Allocaton Live Interval Splitting";
110 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000111
112 /// print - Implement the dump method.
113 virtual void print(std::ostream &O, const Module* M = 0) const {
114 LIs->print(O, M);
115 }
116
117 void print(std::ostream *O, const Module* M = 0) const {
118 if (O) print(*O, M);
119 }
120
121 private:
122 MachineBasicBlock::iterator
123 findNextEmptySlot(MachineBasicBlock*, MachineInstr*,
124 unsigned&);
125
126 MachineBasicBlock::iterator
Evan Cheng1f08cc22008-10-28 05:28:21 +0000127 findSpillPoint(MachineBasicBlock*, MachineInstr*, MachineInstr*,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000128 SmallPtrSet<MachineInstr*, 4>&, unsigned&);
129
130 MachineBasicBlock::iterator
Evan Chengf62ce372008-10-28 00:47:49 +0000131 findRestorePoint(MachineBasicBlock*, MachineInstr*, unsigned,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000132 SmallPtrSet<MachineInstr*, 4>&, unsigned&);
133
Evan Chengd0e32c52008-10-29 05:06:14 +0000134 int CreateSpillStackSlot(unsigned, const TargetRegisterClass *);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000135
Evan Cheng54898932008-10-29 08:39:34 +0000136 bool IsAvailableInStack(MachineBasicBlock*, unsigned, unsigned, unsigned,
137 unsigned&, int&) const;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000138
Evan Chengd0e32c52008-10-29 05:06:14 +0000139 void UpdateSpillSlotInterval(VNInfo*, unsigned, unsigned);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000140
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000141 VNInfo* UpdateRegisterInterval(VNInfo*, unsigned, unsigned);
Evan Chengd0e32c52008-10-29 05:06:14 +0000142
143 bool ShrinkWrapToLastUse(MachineBasicBlock*, VNInfo*,
Evan Cheng06587492008-10-24 02:05:00 +0000144 SmallVector<MachineOperand*, 4>&,
145 SmallPtrSet<MachineInstr*, 4>&);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000146
Evan Chengaaf510c2008-10-26 07:49:03 +0000147 void ShrinkWrapLiveInterval(VNInfo*, MachineBasicBlock*, MachineBasicBlock*,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000148 MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*, 8>&,
Evan Cheng06587492008-10-24 02:05:00 +0000149 DenseMap<MachineBasicBlock*, SmallVector<MachineOperand*, 4> >&,
150 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 4> >&,
151 SmallVector<MachineBasicBlock*, 4>&);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000152
153 bool SplitRegLiveInterval(LiveInterval*);
154
155 bool SplitRegLiveIntervals(const TargetRegisterClass **);
Owen Andersonf1f75b12008-11-04 22:22:41 +0000156
Owen Anderson6002e992008-12-04 21:20:30 +0000157 void RepairLiveInterval(LiveInterval* CurrLI, VNInfo* ValNo,
158 MachineInstr* DefMI, unsigned RestoreIdx);
159
Owen Andersonf1f75b12008-11-04 22:22:41 +0000160 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,
165 unsigned RestoreIdx,
166 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000167 MachineInstr* FoldSpill(unsigned vreg, const TargetRegisterClass* RC,
168 MachineInstr* DefMI,
169 MachineInstr* Barrier,
170 MachineBasicBlock* MBB,
171 int& SS,
172 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000173 void RenumberValno(VNInfo* VN);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000174 void ReconstructLiveInterval(LiveInterval* LI);
175 VNInfo* PerformPHIConstruction(MachineBasicBlock::iterator use,
Owen Anderson7d211e22008-12-31 02:00:25 +0000176 MachineBasicBlock* MBB,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000177 LiveInterval* LI,
Owen Anderson200ee7f2009-01-06 07:53:32 +0000178 SmallPtrSet<MachineInstr*, 4>& Visited,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000179 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
180 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
181 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000182 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
183 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
184 bool toplevel, bool intrablock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000185};
Evan Cheng09e8ca82008-10-20 21:44:59 +0000186} // end anonymous namespace
187
188char PreAllocSplitting::ID = 0;
189
190static RegisterPass<PreAllocSplitting>
191X("pre-alloc-splitting", "Pre-Register Allocation Live Interval Splitting");
192
193const PassInfo *const llvm::PreAllocSplittingID = &X;
194
Evan Chengf5cd4f02008-10-23 20:43:13 +0000195
196/// findNextEmptySlot - Find a gap after the given machine instruction in the
197/// instruction index map. If there isn't one, return end().
198MachineBasicBlock::iterator
199PreAllocSplitting::findNextEmptySlot(MachineBasicBlock *MBB, MachineInstr *MI,
200 unsigned &SpotIndex) {
201 MachineBasicBlock::iterator MII = MI;
202 if (++MII != MBB->end()) {
203 unsigned Index = LIs->findGapBeforeInstr(LIs->getInstructionIndex(MII));
204 if (Index) {
205 SpotIndex = Index;
206 return MII;
207 }
208 }
209 return MBB->end();
210}
211
212/// findSpillPoint - Find a gap as far away from the given MI that's suitable
213/// for spilling the current live interval. The index must be before any
214/// defs and uses of the live interval register in the mbb. Return begin() if
215/// none is found.
216MachineBasicBlock::iterator
217PreAllocSplitting::findSpillPoint(MachineBasicBlock *MBB, MachineInstr *MI,
Evan Cheng1f08cc22008-10-28 05:28:21 +0000218 MachineInstr *DefMI,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000219 SmallPtrSet<MachineInstr*, 4> &RefsInMBB,
220 unsigned &SpillIndex) {
221 MachineBasicBlock::iterator Pt = MBB->begin();
222
223 // Go top down if RefsInMBB is empty.
Evan Cheng1f08cc22008-10-28 05:28:21 +0000224 if (RefsInMBB.empty() && !DefMI) {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000225 MachineBasicBlock::iterator MII = MBB->begin();
226 MachineBasicBlock::iterator EndPt = MI;
227 do {
228 ++MII;
229 unsigned Index = LIs->getInstructionIndex(MII);
230 unsigned Gap = LIs->findGapBeforeInstr(Index);
231 if (Gap) {
232 Pt = MII;
233 SpillIndex = Gap;
234 break;
235 }
236 } while (MII != EndPt);
237 } else {
238 MachineBasicBlock::iterator MII = MI;
Evan Cheng1f08cc22008-10-28 05:28:21 +0000239 MachineBasicBlock::iterator EndPt = DefMI
240 ? MachineBasicBlock::iterator(DefMI) : MBB->begin();
241 while (MII != EndPt && !RefsInMBB.count(MII)) {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000242 unsigned Index = LIs->getInstructionIndex(MII);
243 if (LIs->hasGapBeforeInstr(Index)) {
244 Pt = MII;
245 SpillIndex = LIs->findGapBeforeInstr(Index, true);
246 }
247 --MII;
248 }
249 }
250
251 return Pt;
252}
253
254/// findRestorePoint - Find a gap in the instruction index map that's suitable
255/// for restoring the current live interval value. The index must be before any
256/// uses of the live interval register in the mbb. Return end() if none is
257/// found.
258MachineBasicBlock::iterator
259PreAllocSplitting::findRestorePoint(MachineBasicBlock *MBB, MachineInstr *MI,
Evan Chengf62ce372008-10-28 00:47:49 +0000260 unsigned LastIdx,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000261 SmallPtrSet<MachineInstr*, 4> &RefsInMBB,
262 unsigned &RestoreIndex) {
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();
Evan Chengf62ce372008-10-28 00:47:49 +0000266 unsigned EndIdx = LIs->getMBBEndIdx(MBB);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000267
Evan Chengf62ce372008-10-28 00:47:49 +0000268 // Go bottom up if RefsInMBB is empty and the end of the mbb isn't beyond
269 // the last index in the live range.
270 if (RefsInMBB.empty() && LastIdx >= EndIdx) {
Owen Anderson711fd3d2008-11-13 21:53:14 +0000271 MachineBasicBlock::iterator MII = MBB->getFirstTerminator();
Evan Chengf5cd4f02008-10-23 20:43:13 +0000272 MachineBasicBlock::iterator EndPt = MI;
Evan Cheng54898932008-10-29 08:39:34 +0000273 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000274 do {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000275 unsigned Index = LIs->getInstructionIndex(MII);
Evan Cheng56ab0de2008-10-24 18:46:44 +0000276 unsigned Gap = LIs->findGapBeforeInstr(Index);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000277 if (Gap) {
278 Pt = MII;
279 RestoreIndex = Gap;
280 break;
281 }
Evan Cheng54898932008-10-29 08:39:34 +0000282 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000283 } while (MII != EndPt);
284 } else {
285 MachineBasicBlock::iterator MII = MI;
286 MII = ++MII;
Evan Chengf62ce372008-10-28 00:47:49 +0000287 // FIXME: Limit the number of instructions to examine to reduce
288 // compile time?
Evan Chengf5cd4f02008-10-23 20:43:13 +0000289 while (MII != MBB->end()) {
290 unsigned Index = LIs->getInstructionIndex(MII);
Evan Chengf62ce372008-10-28 00:47:49 +0000291 if (Index > LastIdx)
292 break;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000293 unsigned Gap = LIs->findGapBeforeInstr(Index);
294 if (Gap) {
295 Pt = MII;
296 RestoreIndex = Gap;
297 }
298 if (RefsInMBB.count(MII))
299 break;
300 ++MII;
301 }
302 }
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 {
317 SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());
318 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.
322 CurrSLI = &LSs->getOrCreateInterval(SS);
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
326 CurrSValNo = CurrSLI->getNextValue(~0U, 0, LSs->getVNInfoAllocator());
327 return SS;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000328}
329
Evan Chengd0e32c52008-10-29 05:06:14 +0000330/// IsAvailableInStack - Return true if register is available in a split stack
331/// slot at the specified index.
332bool
Evan Cheng54898932008-10-29 08:39:34 +0000333PreAllocSplitting::IsAvailableInStack(MachineBasicBlock *DefMBB,
334 unsigned Reg, unsigned DefIndex,
335 unsigned RestoreIndex, unsigned &SpillIndex,
336 int& SS) const {
337 if (!DefMBB)
338 return false;
339
Evan Chengd0e32c52008-10-29 05:06:14 +0000340 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
341 if (I == IntervalSSMap.end())
Evan Chengf5cd4f02008-10-23 20:43:13 +0000342 return false;
Evan Cheng54898932008-10-29 08:39:34 +0000343 DenseMap<unsigned, unsigned>::iterator II = Def2SpillMap.find(DefIndex);
344 if (II == Def2SpillMap.end())
345 return false;
346
347 // If last spill of def is in the same mbb as barrier mbb (where restore will
348 // be), make sure it's not below the intended restore index.
349 // FIXME: Undo the previous spill?
350 assert(LIs->getMBBFromIndex(II->second) == DefMBB);
351 if (DefMBB == BarrierMBB && II->second >= RestoreIndex)
352 return false;
353
354 SS = I->second;
355 SpillIndex = II->second;
356 return true;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000357}
358
Evan Chengd0e32c52008-10-29 05:06:14 +0000359/// UpdateSpillSlotInterval - Given the specified val# of the register live
360/// interval being split, and the spill and restore indicies, update the live
361/// interval of the spill stack slot.
362void
363PreAllocSplitting::UpdateSpillSlotInterval(VNInfo *ValNo, unsigned SpillIndex,
364 unsigned RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000365 assert(LIs->getMBBFromIndex(RestoreIndex) == BarrierMBB &&
366 "Expect restore in the barrier mbb");
367
368 MachineBasicBlock *MBB = LIs->getMBBFromIndex(SpillIndex);
369 if (MBB == BarrierMBB) {
370 // Intra-block spill + restore. We are done.
Evan Chengd0e32c52008-10-29 05:06:14 +0000371 LiveRange SLR(SpillIndex, RestoreIndex, CurrSValNo);
372 CurrSLI->addRange(SLR);
373 return;
374 }
375
Evan Cheng54898932008-10-29 08:39:34 +0000376 SmallPtrSet<MachineBasicBlock*, 4> Processed;
377 unsigned EndIdx = LIs->getMBBEndIdx(MBB);
378 LiveRange SLR(SpillIndex, EndIdx+1, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000379 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000380 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000381
382 // Start from the spill mbb, figure out the extend of the spill slot's
383 // live interval.
384 SmallVector<MachineBasicBlock*, 4> WorkList;
Evan Cheng54898932008-10-29 08:39:34 +0000385 const LiveRange *LR = CurrLI->getLiveRangeContaining(SpillIndex);
386 if (LR->end > EndIdx)
Evan Chengd0e32c52008-10-29 05:06:14 +0000387 // If live range extend beyond end of mbb, add successors to work list.
388 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
389 SE = MBB->succ_end(); SI != SE; ++SI)
390 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000391
392 while (!WorkList.empty()) {
393 MachineBasicBlock *MBB = WorkList.back();
394 WorkList.pop_back();
Evan Cheng54898932008-10-29 08:39:34 +0000395 if (Processed.count(MBB))
396 continue;
Evan Chengd0e32c52008-10-29 05:06:14 +0000397 unsigned Idx = LIs->getMBBStartIdx(MBB);
398 LR = CurrLI->getLiveRangeContaining(Idx);
Evan Cheng54898932008-10-29 08:39:34 +0000399 if (LR && LR->valno == ValNo) {
400 EndIdx = LIs->getMBBEndIdx(MBB);
401 if (Idx <= RestoreIndex && RestoreIndex < EndIdx) {
Evan Chengd0e32c52008-10-29 05:06:14 +0000402 // Spill slot live interval stops at the restore.
Evan Cheng54898932008-10-29 08:39:34 +0000403 LiveRange SLR(Idx, RestoreIndex, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000404 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000405 } else if (LR->end > EndIdx) {
406 // Live range extends beyond end of mbb, process successors.
407 LiveRange SLR(Idx, EndIdx+1, CurrSValNo);
408 CurrSLI->addRange(SLR);
409 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
410 SE = MBB->succ_end(); SI != SE; ++SI)
411 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000412 } else {
Evan Cheng54898932008-10-29 08:39:34 +0000413 LiveRange SLR(Idx, LR->end, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000414 CurrSLI->addRange(SLR);
Evan Chengd0e32c52008-10-29 05:06:14 +0000415 }
Evan Cheng54898932008-10-29 08:39:34 +0000416 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000417 }
418 }
419}
420
421/// UpdateRegisterInterval - Given the specified val# of the current live
422/// interval is being split, and the spill and restore indices, update the live
Evan Chengf5cd4f02008-10-23 20:43:13 +0000423/// interval accordingly.
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000424VNInfo*
Evan Chengd0e32c52008-10-29 05:06:14 +0000425PreAllocSplitting::UpdateRegisterInterval(VNInfo *ValNo, unsigned SpillIndex,
426 unsigned RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000427 assert(LIs->getMBBFromIndex(RestoreIndex) == BarrierMBB &&
428 "Expect restore in the barrier mbb");
429
Evan Chengf5cd4f02008-10-23 20:43:13 +0000430 SmallVector<std::pair<unsigned,unsigned>, 4> Before;
431 SmallVector<std::pair<unsigned,unsigned>, 4> After;
432 SmallVector<unsigned, 4> BeforeKills;
433 SmallVector<unsigned, 4> AfterKills;
434 SmallPtrSet<const LiveRange*, 4> Processed;
435
436 // First, let's figure out which parts of the live interval is now defined
437 // by the restore, which are defined by the original definition.
Evan Chengd0e32c52008-10-29 05:06:14 +0000438 const LiveRange *LR = CurrLI->getLiveRangeContaining(RestoreIndex);
439 After.push_back(std::make_pair(RestoreIndex, LR->end));
Evan Cheng06587492008-10-24 02:05:00 +0000440 if (CurrLI->isKill(ValNo, LR->end))
441 AfterKills.push_back(LR->end);
442
Evan Chengd0e32c52008-10-29 05:06:14 +0000443 assert(LR->contains(SpillIndex));
444 if (SpillIndex > LR->start) {
445 Before.push_back(std::make_pair(LR->start, SpillIndex));
446 BeforeKills.push_back(SpillIndex);
Evan Cheng06587492008-10-24 02:05:00 +0000447 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000448 Processed.insert(LR);
449
Evan Chengd0e32c52008-10-29 05:06:14 +0000450 // Start from the restore mbb, figure out what part of the live interval
451 // are defined by the restore.
Evan Chengf5cd4f02008-10-23 20:43:13 +0000452 SmallVector<MachineBasicBlock*, 4> WorkList;
Evan Cheng54898932008-10-29 08:39:34 +0000453 MachineBasicBlock *MBB = BarrierMBB;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000454 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
455 SE = MBB->succ_end(); SI != SE; ++SI)
456 WorkList.push_back(*SI);
457
Owen Anderson75c99c52008-12-07 05:33:18 +0000458 SmallPtrSet<MachineBasicBlock*, 4> ProcessedBlocks;
459 ProcessedBlocks.insert(MBB);
460
Evan Chengf5cd4f02008-10-23 20:43:13 +0000461 while (!WorkList.empty()) {
462 MBB = WorkList.back();
463 WorkList.pop_back();
464 unsigned Idx = LIs->getMBBStartIdx(MBB);
465 LR = CurrLI->getLiveRangeContaining(Idx);
466 if (LR && LR->valno == ValNo && !Processed.count(LR)) {
467 After.push_back(std::make_pair(LR->start, LR->end));
468 if (CurrLI->isKill(ValNo, LR->end))
469 AfterKills.push_back(LR->end);
470 Idx = LIs->getMBBEndIdx(MBB);
471 if (LR->end > Idx) {
Evan Chengd0e32c52008-10-29 05:06:14 +0000472 // Live range extend beyond at least one mbb. Let's see what other
473 // mbbs it reaches.
474 LIs->findReachableMBBs(LR->start, LR->end, WorkList);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000475 }
476 Processed.insert(LR);
477 }
Owen Anderson75c99c52008-12-07 05:33:18 +0000478
479 ProcessedBlocks.insert(MBB);
480 if (LR)
481 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
482 SE = MBB->succ_end(); SI != SE; ++SI)
483 if (!ProcessedBlocks.count(*SI))
484 WorkList.push_back(*SI);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000485 }
486
487 for (LiveInterval::iterator I = CurrLI->begin(), E = CurrLI->end();
488 I != E; ++I) {
489 LiveRange *LR = I;
490 if (LR->valno == ValNo && !Processed.count(LR)) {
491 Before.push_back(std::make_pair(LR->start, LR->end));
492 if (CurrLI->isKill(ValNo, LR->end))
493 BeforeKills.push_back(LR->end);
494 }
495 }
496
497 // Now create new val#s to represent the live ranges defined by the old def
498 // those defined by the restore.
499 unsigned AfterDef = ValNo->def;
500 MachineInstr *AfterCopy = ValNo->copy;
501 bool HasPHIKill = ValNo->hasPHIKill;
502 CurrLI->removeValNo(ValNo);
Evan Cheng06587492008-10-24 02:05:00 +0000503 VNInfo *BValNo = (Before.empty())
504 ? NULL
505 : CurrLI->getNextValue(AfterDef, AfterCopy, LIs->getVNInfoAllocator());
506 if (BValNo)
507 CurrLI->addKills(BValNo, BeforeKills);
508
509 VNInfo *AValNo = (After.empty())
510 ? NULL
Evan Chengd0e32c52008-10-29 05:06:14 +0000511 : CurrLI->getNextValue(RestoreIndex, 0, LIs->getVNInfoAllocator());
Evan Cheng06587492008-10-24 02:05:00 +0000512 if (AValNo) {
513 AValNo->hasPHIKill = HasPHIKill;
514 CurrLI->addKills(AValNo, AfterKills);
515 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000516
517 for (unsigned i = 0, e = Before.size(); i != e; ++i) {
518 unsigned Start = Before[i].first;
519 unsigned End = Before[i].second;
520 CurrLI->addRange(LiveRange(Start, End, BValNo));
521 }
522 for (unsigned i = 0, e = After.size(); i != e; ++i) {
523 unsigned Start = After[i].first;
524 unsigned End = After[i].second;
525 CurrLI->addRange(LiveRange(Start, End, AValNo));
526 }
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000527
528 return AValNo;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000529}
530
531/// ShrinkWrapToLastUse - There are uses of the current live interval in the
532/// given block, shrink wrap the live interval to the last use (i.e. remove
533/// from last use to the end of the mbb). In case mbb is the where the barrier
534/// is, remove from the last use to the barrier.
535bool
Evan Chengd0e32c52008-10-29 05:06:14 +0000536PreAllocSplitting::ShrinkWrapToLastUse(MachineBasicBlock *MBB, VNInfo *ValNo,
Evan Cheng06587492008-10-24 02:05:00 +0000537 SmallVector<MachineOperand*, 4> &Uses,
538 SmallPtrSet<MachineInstr*, 4> &UseMIs) {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000539 MachineOperand *LastMO = 0;
540 MachineInstr *LastMI = 0;
541 if (MBB != BarrierMBB && Uses.size() == 1) {
542 // Single use, no need to traverse the block. We can't assume this for the
543 // barrier bb though since the use is probably below the barrier.
544 LastMO = Uses[0];
545 LastMI = LastMO->getParent();
546 } else {
Evan Cheng2efe3fd2008-10-24 05:53:44 +0000547 MachineBasicBlock::iterator MEE = MBB->begin();
Evan Chengf5cd4f02008-10-23 20:43:13 +0000548 MachineBasicBlock::iterator MII;
Evan Cheng2efe3fd2008-10-24 05:53:44 +0000549 if (MBB == BarrierMBB)
Evan Chengf5cd4f02008-10-23 20:43:13 +0000550 MII = Barrier;
Evan Cheng2efe3fd2008-10-24 05:53:44 +0000551 else
Evan Chengf5cd4f02008-10-23 20:43:13 +0000552 MII = MBB->end();
Evan Chengd0e32c52008-10-29 05:06:14 +0000553 while (MII != MEE) {
554 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000555 MachineInstr *UseMI = &*MII;
556 if (!UseMIs.count(UseMI))
557 continue;
558 for (unsigned i = 0, e = UseMI->getNumOperands(); i != e; ++i) {
559 MachineOperand &MO = UseMI->getOperand(i);
560 if (MO.isReg() && MO.getReg() == CurrLI->reg) {
561 LastMO = &MO;
562 break;
563 }
564 }
565 LastMI = UseMI;
566 break;
567 }
568 }
569
570 // Cut off live range from last use (or beginning of the mbb if there
571 // are no uses in it) to the end of the mbb.
572 unsigned RangeStart, RangeEnd = LIs->getMBBEndIdx(MBB)+1;
573 if (LastMI) {
574 RangeStart = LIs->getUseIndex(LIs->getInstructionIndex(LastMI))+1;
575 assert(!LastMO->isKill() && "Last use already terminates the interval?");
576 LastMO->setIsKill();
577 } else {
578 assert(MBB == BarrierMBB);
579 RangeStart = LIs->getMBBStartIdx(MBB);
580 }
581 if (MBB == BarrierMBB)
Evan Cheng06587492008-10-24 02:05:00 +0000582 RangeEnd = LIs->getUseIndex(BarrierIdx)+1;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000583 CurrLI->removeRange(RangeStart, RangeEnd);
Evan Chengd0e32c52008-10-29 05:06:14 +0000584 if (LastMI)
585 CurrLI->addKill(ValNo, RangeStart);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000586
587 // Return true if the last use becomes a new kill.
588 return LastMI;
589}
590
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000591/// PerformPHIConstruction - From properly set up use and def lists, use a PHI
592/// construction algorithm to compute the ranges and valnos for an interval.
593VNInfo* PreAllocSplitting::PerformPHIConstruction(
594 MachineBasicBlock::iterator use,
Owen Anderson7d211e22008-12-31 02:00:25 +0000595 MachineBasicBlock* MBB,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000596 LiveInterval* LI,
Owen Anderson200ee7f2009-01-06 07:53:32 +0000597 SmallPtrSet<MachineInstr*, 4>& Visited,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000598 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
599 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
600 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000601 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
602 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
603 bool toplevel, bool intrablock) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000604 // Return memoized result if it's available.
Owen Anderson200ee7f2009-01-06 07:53:32 +0000605 if (toplevel && Visited.count(use) && NewVNs.count(use))
606 return NewVNs[use];
607 else if (!toplevel && intrablock && NewVNs.count(use))
Owen Anderson7d211e22008-12-31 02:00:25 +0000608 return NewVNs[use];
609 else if (!intrablock && LiveOut.count(MBB))
610 return LiveOut[MBB];
611
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000612 typedef DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> > RegMap;
613
614 // Check if our block contains any uses or defs.
Owen Anderson7d211e22008-12-31 02:00:25 +0000615 bool ContainsDefs = Defs.count(MBB);
616 bool ContainsUses = Uses.count(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000617
618 VNInfo* ret = 0;
619
620 // Enumerate the cases of use/def contaning blocks.
621 if (!ContainsDefs && !ContainsUses) {
622 Fallback:
623 // NOTE: Because this is the fallback case from other cases, we do NOT
Owen Anderson7d211e22008-12-31 02:00:25 +0000624 // assume that we are not intrablock here.
625 if (Phis.count(MBB)) return Phis[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000626
Owen Anderson7d211e22008-12-31 02:00:25 +0000627 unsigned StartIndex = LIs->getMBBStartIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000628
Owen Anderson7d211e22008-12-31 02:00:25 +0000629 if (MBB->pred_size() == 1) {
630 Phis[MBB] = ret = PerformPHIConstruction((*MBB->pred_begin())->end(),
Owen Anderson200ee7f2009-01-06 07:53:32 +0000631 *(MBB->pred_begin()), LI, Visited,
632 Defs, Uses, NewVNs, LiveOut, Phis,
Owen Anderson7d211e22008-12-31 02:00:25 +0000633 false, false);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000634 unsigned EndIndex = 0;
Owen Anderson7d211e22008-12-31 02:00:25 +0000635 if (intrablock) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000636 EndIndex = LIs->getInstructionIndex(use);
637 EndIndex = LiveIntervals::getUseIndex(EndIndex);
638 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000639 EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000640
Owen Anderson7d211e22008-12-31 02:00:25 +0000641 LI->addRange(LiveRange(StartIndex, EndIndex+1, ret));
Owen Andersone1762c92009-01-12 03:10:40 +0000642 if (intrablock)
643 LI->addKill(ret, EndIndex);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000644 } else {
Owen Anderson7d211e22008-12-31 02:00:25 +0000645 Phis[MBB] = ret = LI->getNextValue(~0U, /*FIXME*/ 0,
646 LIs->getVNInfoAllocator());
647 if (!intrablock) LiveOut[MBB] = ret;
648
649 // If there are no uses or defs between our starting point and the
650 // beginning of the block, then recursive perform phi construction
651 // on our predecessors.
652 DenseMap<MachineBasicBlock*, VNInfo*> IncomingVNs;
653 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
654 PE = MBB->pred_end(); PI != PE; ++PI) {
Owen Anderson200ee7f2009-01-06 07:53:32 +0000655 VNInfo* Incoming = PerformPHIConstruction((*PI)->end(), *PI, LI,
656 Visited, Defs, Uses, NewVNs,
657 LiveOut, Phis, false, false);
Owen Anderson7d211e22008-12-31 02:00:25 +0000658 if (Incoming != 0)
659 IncomingVNs[*PI] = Incoming;
660 }
661
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000662 // Otherwise, merge the incoming VNInfos with a phi join. Create a new
663 // VNInfo to represent the joined value.
664 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator I =
665 IncomingVNs.begin(), E = IncomingVNs.end(); I != E; ++I) {
666 I->second->hasPHIKill = true;
667 unsigned KillIndex = LIs->getMBBEndIdx(I->first);
668 LI->addKill(I->second, KillIndex);
669 }
670
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000671 unsigned EndIndex = 0;
Owen Anderson7d211e22008-12-31 02:00:25 +0000672 if (intrablock) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000673 EndIndex = LIs->getInstructionIndex(use);
674 EndIndex = LiveIntervals::getUseIndex(EndIndex);
675 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000676 EndIndex = LIs->getMBBEndIdx(MBB);
677 LI->addRange(LiveRange(StartIndex, EndIndex+1, ret));
Owen Andersone1762c92009-01-12 03:10:40 +0000678 if (intrablock)
679 LI->addKill(ret, EndIndex);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000680 }
681 } else if (ContainsDefs && !ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000682 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000683
684 // Search for the def in this block. If we don't find it before the
685 // instruction we care about, go to the fallback case. Note that that
Owen Anderson7d211e22008-12-31 02:00:25 +0000686 // should never happen: this cannot be intrablock, so use should
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000687 // always be an end() iterator.
Owen Anderson7d211e22008-12-31 02:00:25 +0000688 assert(use == MBB->end() && "No use marked in intrablock");
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000689
690 MachineBasicBlock::iterator walker = use;
691 --walker;
Owen Anderson7d211e22008-12-31 02:00:25 +0000692 while (walker != MBB->begin())
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000693 if (BlockDefs.count(walker)) {
694 break;
695 } else
696 --walker;
697
698 // Once we've found it, extend its VNInfo to our instruction.
699 unsigned DefIndex = LIs->getInstructionIndex(walker);
700 DefIndex = LiveIntervals::getDefIndex(DefIndex);
Owen Anderson7d211e22008-12-31 02:00:25 +0000701 unsigned EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000702
703 ret = NewVNs[walker];
Owen Anderson7d211e22008-12-31 02:00:25 +0000704 LI->addRange(LiveRange(DefIndex, EndIndex+1, ret));
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000705 } else if (!ContainsDefs && ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000706 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000707
708 // Search for the use in this block that precedes the instruction we care
709 // about, going to the fallback case if we don't find it.
710
Owen Anderson7d211e22008-12-31 02:00:25 +0000711 if (use == MBB->begin())
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000712 goto Fallback;
713
714 MachineBasicBlock::iterator walker = use;
715 --walker;
716 bool found = false;
Owen Anderson7d211e22008-12-31 02:00:25 +0000717 while (walker != MBB->begin())
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000718 if (BlockUses.count(walker)) {
719 found = true;
720 break;
721 } else
722 --walker;
723
724 // Must check begin() too.
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000725 if (!found) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000726 if (BlockUses.count(walker))
727 found = true;
728 else
729 goto Fallback;
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000730 }
731
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000732 unsigned UseIndex = LIs->getInstructionIndex(walker);
733 UseIndex = LiveIntervals::getUseIndex(UseIndex);
734 unsigned EndIndex = 0;
Owen Anderson7d211e22008-12-31 02:00:25 +0000735 if (intrablock) {
736 EndIndex = LIs->getInstructionIndex(use);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000737 EndIndex = LiveIntervals::getUseIndex(EndIndex);
738 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000739 EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000740
741 // Now, recursively phi construct the VNInfo for the use we found,
742 // and then extend it to include the instruction we care about
Owen Anderson200ee7f2009-01-06 07:53:32 +0000743 ret = PerformPHIConstruction(walker, MBB, LI, Visited, Defs, Uses,
Owen Anderson7d211e22008-12-31 02:00:25 +0000744 NewVNs, LiveOut, Phis, false, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000745
746 // FIXME: Need to set kills properly for inter-block stuff.
Owen Andersond4f6fe52008-12-28 23:35:13 +0000747 if (LI->isKill(ret, UseIndex)) LI->removeKill(ret, UseIndex);
Owen Anderson7d211e22008-12-31 02:00:25 +0000748 if (intrablock)
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000749 LI->addKill(ret, EndIndex);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000750
Owen Anderson7d211e22008-12-31 02:00:25 +0000751 LI->addRange(LiveRange(UseIndex, EndIndex+1, ret));
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000752 } else if (ContainsDefs && ContainsUses){
Owen Anderson7d211e22008-12-31 02:00:25 +0000753 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
754 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000755
756 // This case is basically a merging of the two preceding case, with the
757 // special note that checking for defs must take precedence over checking
758 // for uses, because of two-address instructions.
759
Owen Anderson7d211e22008-12-31 02:00:25 +0000760 if (use == MBB->begin())
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000761 goto Fallback;
762
763 MachineBasicBlock::iterator walker = use;
764 --walker;
765 bool foundDef = false;
766 bool foundUse = false;
Owen Anderson7d211e22008-12-31 02:00:25 +0000767 while (walker != MBB->begin())
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000768 if (BlockDefs.count(walker)) {
769 foundDef = true;
770 break;
771 } else if (BlockUses.count(walker)) {
772 foundUse = true;
773 break;
774 } else
775 --walker;
776
777 // Must check begin() too.
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000778 if (!foundDef && !foundUse) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000779 if (BlockDefs.count(walker))
780 foundDef = true;
781 else if (BlockUses.count(walker))
782 foundUse = true;
783 else
784 goto Fallback;
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000785 }
786
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000787 unsigned StartIndex = LIs->getInstructionIndex(walker);
788 StartIndex = foundDef ? LiveIntervals::getDefIndex(StartIndex) :
789 LiveIntervals::getUseIndex(StartIndex);
790 unsigned EndIndex = 0;
Owen Anderson7d211e22008-12-31 02:00:25 +0000791 if (intrablock) {
792 EndIndex = LIs->getInstructionIndex(use);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000793 EndIndex = LiveIntervals::getUseIndex(EndIndex);
794 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000795 EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000796
797 if (foundDef)
798 ret = NewVNs[walker];
799 else
Owen Anderson200ee7f2009-01-06 07:53:32 +0000800 ret = PerformPHIConstruction(walker, MBB, LI, Visited, Defs, Uses,
Owen Anderson7d211e22008-12-31 02:00:25 +0000801 NewVNs, LiveOut, Phis, false, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000802
Owen Andersond4f6fe52008-12-28 23:35:13 +0000803 if (foundUse && LI->isKill(ret, StartIndex))
804 LI->removeKill(ret, StartIndex);
Owen Anderson7d211e22008-12-31 02:00:25 +0000805 if (intrablock) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000806 LI->addKill(ret, EndIndex);
807 }
808
Owen Anderson7d211e22008-12-31 02:00:25 +0000809 LI->addRange(LiveRange(StartIndex, EndIndex+1, ret));
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000810 }
811
812 // Memoize results so we don't have to recompute them.
Owen Anderson7d211e22008-12-31 02:00:25 +0000813 if (!intrablock) LiveOut[MBB] = ret;
Owen Anderson200ee7f2009-01-06 07:53:32 +0000814 else {
Owen Andersone1762c92009-01-12 03:10:40 +0000815 if (!NewVNs.count(use))
816 NewVNs[use] = ret;
Owen Anderson200ee7f2009-01-06 07:53:32 +0000817 Visited.insert(use);
818 }
819
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000820 return ret;
821}
822
823/// ReconstructLiveInterval - Recompute a live interval from scratch.
824void PreAllocSplitting::ReconstructLiveInterval(LiveInterval* LI) {
825 BumpPtrAllocator& Alloc = LIs->getVNInfoAllocator();
826
827 // Clear the old ranges and valnos;
828 LI->clear();
829
830 // Cache the uses and defs of the register
831 typedef DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> > RegMap;
832 RegMap Defs, Uses;
833
834 // Keep track of the new VNs we're creating.
835 DenseMap<MachineInstr*, VNInfo*> NewVNs;
836 SmallPtrSet<VNInfo*, 2> PhiVNs;
837
838 // Cache defs, and create a new VNInfo for each def.
839 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
840 DE = MRI->def_end(); DI != DE; ++DI) {
841 Defs[(*DI).getParent()].insert(&*DI);
842
843 unsigned DefIdx = LIs->getInstructionIndex(&*DI);
844 DefIdx = LiveIntervals::getDefIndex(DefIdx);
845
Owen Anderson200ee7f2009-01-06 07:53:32 +0000846 VNInfo* NewVN = LI->getNextValue(DefIdx, 0, Alloc);
847
848 // If the def is a move, set the copy field.
Evan Cheng04ee5a12009-01-20 19:12:24 +0000849 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
850 if (TII->isMoveInstr(*DI, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
851 if (DstReg == LI->reg)
Owen Anderson200ee7f2009-01-06 07:53:32 +0000852 NewVN->copy = &*DI;
853
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000854 NewVNs[&*DI] = NewVN;
855 }
856
857 // Cache uses as a separate pass from actually processing them.
858 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
859 UE = MRI->use_end(); UI != UE; ++UI)
860 Uses[(*UI).getParent()].insert(&*UI);
861
862 // Now, actually process every use and use a phi construction algorithm
863 // to walk from it to its reaching definitions, building VNInfos along
864 // the way.
Owen Anderson7d211e22008-12-31 02:00:25 +0000865 DenseMap<MachineBasicBlock*, VNInfo*> LiveOut;
866 DenseMap<MachineBasicBlock*, VNInfo*> Phis;
Owen Anderson200ee7f2009-01-06 07:53:32 +0000867 SmallPtrSet<MachineInstr*, 4> Visited;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000868 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
869 UE = MRI->use_end(); UI != UE; ++UI) {
Owen Anderson200ee7f2009-01-06 07:53:32 +0000870 PerformPHIConstruction(&*UI, UI->getParent(), LI, Visited, Defs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000871 Uses, NewVNs, LiveOut, Phis, true, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000872 }
Owen Andersond4f6fe52008-12-28 23:35:13 +0000873
874 // Add ranges for dead defs
875 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
876 DE = MRI->def_end(); DI != DE; ++DI) {
877 unsigned DefIdx = LIs->getInstructionIndex(&*DI);
878 DefIdx = LiveIntervals::getDefIndex(DefIdx);
Owen Andersond4f6fe52008-12-28 23:35:13 +0000879
880 if (LI->liveAt(DefIdx)) continue;
881
882 VNInfo* DeadVN = NewVNs[&*DI];
Owen Anderson7d211e22008-12-31 02:00:25 +0000883 LI->addRange(LiveRange(DefIdx, DefIdx+1, DeadVN));
Owen Andersond4f6fe52008-12-28 23:35:13 +0000884 LI->addKill(DeadVN, DefIdx);
885 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000886}
887
Evan Chengf5cd4f02008-10-23 20:43:13 +0000888/// ShrinkWrapLiveInterval - Recursively traverse the predecessor
889/// chain to find the new 'kills' and shrink wrap the live interval to the
890/// new kill indices.
891void
Evan Chengaaf510c2008-10-26 07:49:03 +0000892PreAllocSplitting::ShrinkWrapLiveInterval(VNInfo *ValNo, MachineBasicBlock *MBB,
893 MachineBasicBlock *SuccMBB, MachineBasicBlock *DefMBB,
Evan Cheng06587492008-10-24 02:05:00 +0000894 SmallPtrSet<MachineBasicBlock*, 8> &Visited,
895 DenseMap<MachineBasicBlock*, SmallVector<MachineOperand*, 4> > &Uses,
896 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 4> > &UseMIs,
897 SmallVector<MachineBasicBlock*, 4> &UseMBBs) {
Evan Chengaaf510c2008-10-26 07:49:03 +0000898 if (Visited.count(MBB))
Evan Chengf5cd4f02008-10-23 20:43:13 +0000899 return;
900
Evan Chengaaf510c2008-10-26 07:49:03 +0000901 // If live interval is live in another successor path, then we can't process
902 // this block. But we may able to do so after all the successors have been
903 // processed.
Evan Chengf62ce372008-10-28 00:47:49 +0000904 if (MBB != BarrierMBB) {
905 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
906 SE = MBB->succ_end(); SI != SE; ++SI) {
907 MachineBasicBlock *SMBB = *SI;
908 if (SMBB == SuccMBB)
909 continue;
910 if (CurrLI->liveAt(LIs->getMBBStartIdx(SMBB)))
911 return;
912 }
Evan Chengaaf510c2008-10-26 07:49:03 +0000913 }
914
915 Visited.insert(MBB);
916
Evan Cheng06587492008-10-24 02:05:00 +0000917 DenseMap<MachineBasicBlock*, SmallVector<MachineOperand*, 4> >::iterator
918 UMII = Uses.find(MBB);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000919 if (UMII != Uses.end()) {
920 // At least one use in this mbb, lets look for the kill.
Evan Cheng06587492008-10-24 02:05:00 +0000921 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 4> >::iterator
922 UMII2 = UseMIs.find(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000923 if (ShrinkWrapToLastUse(MBB, ValNo, UMII->second, UMII2->second))
Evan Chengf5cd4f02008-10-23 20:43:13 +0000924 // Found a kill, shrink wrapping of this path ends here.
925 return;
Evan Cheng06587492008-10-24 02:05:00 +0000926 } else if (MBB == DefMBB) {
Evan Cheng06587492008-10-24 02:05:00 +0000927 // There are no uses after the def.
928 MachineInstr *DefMI = LIs->getInstructionFromIndex(ValNo->def);
Evan Cheng06587492008-10-24 02:05:00 +0000929 if (UseMBBs.empty()) {
930 // The only use must be below barrier in the barrier block. It's safe to
931 // remove the def.
932 LIs->RemoveMachineInstrFromMaps(DefMI);
933 DefMI->eraseFromParent();
934 CurrLI->removeRange(ValNo->def, LIs->getMBBEndIdx(MBB)+1);
935 }
Evan Cheng79d5b5a2008-10-25 23:49:39 +0000936 } else if (MBB == BarrierMBB) {
937 // Remove entire live range from start of mbb to barrier.
938 CurrLI->removeRange(LIs->getMBBStartIdx(MBB),
939 LIs->getUseIndex(BarrierIdx)+1);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000940 } else {
Evan Cheng79d5b5a2008-10-25 23:49:39 +0000941 // Remove entire live range of the mbb out of the live interval.
Evan Cheng06587492008-10-24 02:05:00 +0000942 CurrLI->removeRange(LIs->getMBBStartIdx(MBB), LIs->getMBBEndIdx(MBB)+1);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000943 }
944
945 if (MBB == DefMBB)
946 // Reached the def mbb, stop traversing this path further.
947 return;
948
949 // Traverse the pathes up the predecessor chains further.
950 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
951 PE = MBB->pred_end(); PI != PE; ++PI) {
952 MachineBasicBlock *Pred = *PI;
953 if (Pred == MBB)
954 continue;
955 if (Pred == DefMBB && ValNo->hasPHIKill)
956 // Pred is the def bb and the def reaches other val#s, we must
957 // allow the value to be live out of the bb.
958 continue;
Owen Anderson80fe8732008-11-11 22:11:27 +0000959 if (!CurrLI->liveAt(LIs->getMBBEndIdx(Pred)-1))
960 return;
Evan Chengaaf510c2008-10-26 07:49:03 +0000961 ShrinkWrapLiveInterval(ValNo, Pred, MBB, DefMBB, Visited,
962 Uses, UseMIs, UseMBBs);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000963 }
964
965 return;
966}
967
Owen Anderson75fa96b2008-11-19 04:28:29 +0000968
Owen Anderson6002e992008-12-04 21:20:30 +0000969void PreAllocSplitting::RepairLiveInterval(LiveInterval* CurrLI,
970 VNInfo* ValNo,
971 MachineInstr* DefMI,
972 unsigned RestoreIdx) {
Owen Anderson75fa96b2008-11-19 04:28:29 +0000973 // Shrink wrap the live interval by walking up the CFG and find the
974 // new kills.
975 // Now let's find all the uses of the val#.
976 DenseMap<MachineBasicBlock*, SmallVector<MachineOperand*, 4> > Uses;
977 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 4> > UseMIs;
978 SmallPtrSet<MachineBasicBlock*, 4> Seen;
979 SmallVector<MachineBasicBlock*, 4> UseMBBs;
980 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(CurrLI->reg),
981 UE = MRI->use_end(); UI != UE; ++UI) {
982 MachineOperand &UseMO = UI.getOperand();
983 MachineInstr *UseMI = UseMO.getParent();
984 unsigned UseIdx = LIs->getInstructionIndex(UseMI);
985 LiveInterval::iterator ULR = CurrLI->FindLiveRangeContaining(UseIdx);
986 if (ULR->valno != ValNo)
987 continue;
988 MachineBasicBlock *UseMBB = UseMI->getParent();
989 // Remember which other mbb's use this val#.
990 if (Seen.insert(UseMBB) && UseMBB != BarrierMBB)
991 UseMBBs.push_back(UseMBB);
992 DenseMap<MachineBasicBlock*, SmallVector<MachineOperand*, 4> >::iterator
993 UMII = Uses.find(UseMBB);
994 if (UMII != Uses.end()) {
995 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 4> >::iterator
996 UMII2 = UseMIs.find(UseMBB);
997 UMII->second.push_back(&UseMO);
998 UMII2->second.insert(UseMI);
999 } else {
1000 SmallVector<MachineOperand*, 4> Ops;
1001 Ops.push_back(&UseMO);
1002 Uses.insert(std::make_pair(UseMBB, Ops));
1003 SmallPtrSet<MachineInstr*, 4> MIs;
1004 MIs.insert(UseMI);
1005 UseMIs.insert(std::make_pair(UseMBB, MIs));
1006 }
1007 }
1008
1009 // Walk up the predecessor chains.
1010 SmallPtrSet<MachineBasicBlock*, 8> Visited;
1011 ShrinkWrapLiveInterval(ValNo, BarrierMBB, NULL, DefMI->getParent(), Visited,
1012 Uses, UseMIs, UseMBBs);
1013
Owen Anderson75fa96b2008-11-19 04:28:29 +00001014 // Remove live range from barrier to the restore. FIXME: Find a better
1015 // point to re-start the live interval.
Owen Anderson2ebf63f2008-12-18 01:27:19 +00001016 VNInfo* AfterValNo = UpdateRegisterInterval(ValNo,
1017 LIs->getUseIndex(BarrierIdx)+1,
1018 LIs->getDefIndex(RestoreIdx));
1019
1020 // Attempt to renumber the new valno into a new vreg.
1021 RenumberValno(AfterValNo);
Owen Anderson6002e992008-12-04 21:20:30 +00001022}
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001023
1024/// RenumberValno - Split the given valno out into a new vreg, allowing it to
1025/// be allocated to a different register. This function creates a new vreg,
1026/// copies the valno and its live ranges over to the new vreg's interval,
1027/// removes them from the old interval, and rewrites all uses and defs of
1028/// the original reg to the new vreg within those ranges.
1029void PreAllocSplitting::RenumberValno(VNInfo* VN) {
Owen Anderson2ebf63f2008-12-18 01:27:19 +00001030 SmallVector<VNInfo*, 4> Stack;
1031 SmallVector<VNInfo*, 4> VNsToCopy;
1032 Stack.push_back(VN);
1033
1034 // Walk through and copy the valno we care about, and any other valnos
1035 // that are two-address redefinitions of the one we care about. These
1036 // will need to be rewritten as well. We also check for safety of the
1037 // renumbering here, by making sure that none of the valno involved has
1038 // phi kills.
1039 while (!Stack.empty()) {
1040 VNInfo* OldVN = Stack.back();
1041 Stack.pop_back();
1042
1043 // Bail out if we ever encounter a valno that has a PHI kill. We can't
1044 // renumber these.
1045 if (OldVN->hasPHIKill) return;
1046
1047 VNsToCopy.push_back(OldVN);
1048
1049 // Locate two-address redefinitions
1050 for (SmallVector<unsigned, 4>::iterator KI = OldVN->kills.begin(),
1051 KE = OldVN->kills.end(); KI != KE; ++KI) {
1052 MachineInstr* MI = LIs->getInstructionFromIndex(*KI);
1053 //if (!MI) continue;
1054 unsigned DefIdx = MI->findRegisterDefOperandIdx(CurrLI->reg);
1055 if (DefIdx == ~0U) continue;
1056 if (MI->isRegReDefinedByTwoAddr(DefIdx)) {
1057 VNInfo* NextVN =
1058 CurrLI->findDefinedVNInfo(LiveIntervals::getDefIndex(*KI));
1059 Stack.push_back(NextVN);
1060 }
1061 }
1062 }
1063
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001064 // Create the new vreg
1065 unsigned NewVReg = MRI->createVirtualRegister(MRI->getRegClass(CurrLI->reg));
1066
Owen Anderson2ebf63f2008-12-18 01:27:19 +00001067 // Create the new live interval
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001068 LiveInterval& NewLI = LIs->getOrCreateInterval(NewVReg);
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001069
Owen Anderson2ebf63f2008-12-18 01:27:19 +00001070 for (SmallVector<VNInfo*, 4>::iterator OI = VNsToCopy.begin(), OE =
1071 VNsToCopy.end(); OI != OE; ++OI) {
1072 VNInfo* OldVN = *OI;
1073
1074 // Copy the valno over
1075 VNInfo* NewVN = NewLI.getNextValue(OldVN->def, OldVN->copy,
1076 LIs->getVNInfoAllocator());
1077 NewLI.copyValNumInfo(NewVN, OldVN);
1078 NewLI.MergeValueInAsValue(*CurrLI, OldVN, NewVN);
1079
1080 // Remove the valno from the old interval
1081 CurrLI->removeValNo(OldVN);
1082 }
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001083
1084 // Rewrite defs and uses. This is done in two stages to avoid invalidating
1085 // the reg_iterator.
1086 SmallVector<std::pair<MachineInstr*, unsigned>, 8> OpsToChange;
1087
1088 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
1089 E = MRI->reg_end(); I != E; ++I) {
1090 MachineOperand& MO = I.getOperand();
1091 unsigned InstrIdx = LIs->getInstructionIndex(&*I);
1092
1093 if ((MO.isUse() && NewLI.liveAt(LiveIntervals::getUseIndex(InstrIdx))) ||
1094 (MO.isDef() && NewLI.liveAt(LiveIntervals::getDefIndex(InstrIdx))))
1095 OpsToChange.push_back(std::make_pair(&*I, I.getOperandNo()));
1096 }
1097
1098 for (SmallVector<std::pair<MachineInstr*, unsigned>, 8>::iterator I =
1099 OpsToChange.begin(), E = OpsToChange.end(); I != E; ++I) {
1100 MachineInstr* Inst = I->first;
1101 unsigned OpIdx = I->second;
1102 MachineOperand& MO = Inst->getOperand(OpIdx);
1103 MO.setReg(NewVReg);
1104 }
Owen Anderson2ebf63f2008-12-18 01:27:19 +00001105
1106 NumRenumbers++;
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001107}
1108
Owen Anderson6002e992008-12-04 21:20:30 +00001109bool PreAllocSplitting::Rematerialize(unsigned vreg, VNInfo* ValNo,
1110 MachineInstr* DefMI,
1111 MachineBasicBlock::iterator RestorePt,
1112 unsigned RestoreIdx,
1113 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
1114 MachineBasicBlock& MBB = *RestorePt->getParent();
1115
1116 MachineBasicBlock::iterator KillPt = BarrierMBB->end();
1117 unsigned KillIdx = 0;
1118 if (ValNo->def == ~0U || DefMI->getParent() == BarrierMBB)
1119 KillPt = findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, KillIdx);
1120 else
1121 KillPt = findNextEmptySlot(DefMI->getParent(), DefMI, KillIdx);
1122
1123 if (KillPt == DefMI->getParent()->end())
1124 return false;
1125
1126 TII->reMaterialize(MBB, RestorePt, vreg, DefMI);
1127 LIs->InsertMachineInstrInMaps(prior(RestorePt), RestoreIdx);
1128
1129 if (KillPt->getParent() == BarrierMBB) {
Owen Anderson6cf7c392009-01-21 00:13:28 +00001130 VNInfo* After = UpdateRegisterInterval(ValNo, LIs->getUseIndex(KillIdx)+1,
Owen Anderson6002e992008-12-04 21:20:30 +00001131 LIs->getDefIndex(RestoreIdx));
Owen Andersone1762c92009-01-12 03:10:40 +00001132
Owen Anderson6cf7c392009-01-21 00:13:28 +00001133 RenumberValno(After);
1134
Owen Anderson6002e992008-12-04 21:20:30 +00001135 ++NumSplits;
1136 ++NumRemats;
1137 return true;
1138 }
1139
1140 RepairLiveInterval(CurrLI, ValNo, DefMI, RestoreIdx);
Owen Andersone1762c92009-01-12 03:10:40 +00001141
Owen Anderson75fa96b2008-11-19 04:28:29 +00001142 ++NumSplits;
1143 ++NumRemats;
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001144 return true;
1145}
1146
1147MachineInstr* PreAllocSplitting::FoldSpill(unsigned vreg,
1148 const TargetRegisterClass* RC,
1149 MachineInstr* DefMI,
1150 MachineInstr* Barrier,
1151 MachineBasicBlock* MBB,
1152 int& SS,
1153 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
1154 MachineBasicBlock::iterator Pt = MBB->begin();
1155
1156 // Go top down if RefsInMBB is empty.
1157 if (RefsInMBB.empty())
1158 return 0;
Owen Anderson75fa96b2008-11-19 04:28:29 +00001159
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001160 MachineBasicBlock::iterator FoldPt = Barrier;
1161 while (&*FoldPt != DefMI && FoldPt != MBB->begin() &&
1162 !RefsInMBB.count(FoldPt))
1163 --FoldPt;
1164
1165 int OpIdx = FoldPt->findRegisterDefOperandIdx(vreg, false);
1166 if (OpIdx == -1)
1167 return 0;
1168
1169 SmallVector<unsigned, 1> Ops;
1170 Ops.push_back(OpIdx);
1171
1172 if (!TII->canFoldMemoryOperand(FoldPt, Ops))
1173 return 0;
1174
1175 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(vreg);
1176 if (I != IntervalSSMap.end()) {
1177 SS = I->second;
1178 } else {
1179 SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());
1180
1181 }
1182
1183 MachineInstr* FMI = TII->foldMemoryOperand(*MBB->getParent(),
1184 FoldPt, Ops, SS);
1185
1186 if (FMI) {
1187 LIs->ReplaceMachineInstrInMaps(FoldPt, FMI);
1188 FMI = MBB->insert(MBB->erase(FoldPt), FMI);
1189 ++NumFolds;
1190
1191 IntervalSSMap[vreg] = SS;
1192 CurrSLI = &LSs->getOrCreateInterval(SS);
1193 if (CurrSLI->hasAtLeastOneValue())
1194 CurrSValNo = CurrSLI->getValNumInfo(0);
1195 else
1196 CurrSValNo = CurrSLI->getNextValue(~0U, 0, LSs->getVNInfoAllocator());
1197 }
1198
1199 return FMI;
Owen Anderson75fa96b2008-11-19 04:28:29 +00001200}
1201
Evan Chengf5cd4f02008-10-23 20:43:13 +00001202/// SplitRegLiveInterval - Split (spill and restore) the given live interval
1203/// so it would not cross the barrier that's being processed. Shrink wrap
1204/// (minimize) the live interval to the last uses.
1205bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) {
1206 CurrLI = LI;
1207
1208 // Find live range where current interval cross the barrier.
1209 LiveInterval::iterator LR =
1210 CurrLI->FindLiveRangeContaining(LIs->getUseIndex(BarrierIdx));
1211 VNInfo *ValNo = LR->valno;
1212
1213 if (ValNo->def == ~1U) {
1214 // Defined by a dead def? How can this be?
1215 assert(0 && "Val# is defined by a dead def?");
1216 abort();
1217 }
1218
Evan Cheng06587492008-10-24 02:05:00 +00001219 MachineInstr *DefMI = (ValNo->def != ~0U)
1220 ? LIs->getInstructionFromIndex(ValNo->def) : NULL;
Evan Cheng06587492008-10-24 02:05:00 +00001221
Evan Chengf5cd4f02008-10-23 20:43:13 +00001222 // Find all references in the barrier mbb.
1223 SmallPtrSet<MachineInstr*, 4> RefsInMBB;
1224 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
1225 E = MRI->reg_end(); I != E; ++I) {
1226 MachineInstr *RefMI = &*I;
1227 if (RefMI->getParent() == BarrierMBB)
1228 RefsInMBB.insert(RefMI);
1229 }
1230
1231 // Find a point to restore the value after the barrier.
1232 unsigned RestoreIndex;
1233 MachineBasicBlock::iterator RestorePt =
Evan Chengf62ce372008-10-28 00:47:49 +00001234 findRestorePoint(BarrierMBB, Barrier, LR->end, RefsInMBB, RestoreIndex);
Evan Chengf5cd4f02008-10-23 20:43:13 +00001235 if (RestorePt == BarrierMBB->end())
1236 return false;
1237
Owen Anderson75fa96b2008-11-19 04:28:29 +00001238 if (DefMI && LIs->isReMaterializable(*LI, ValNo, DefMI))
1239 if (Rematerialize(LI->reg, ValNo, DefMI, RestorePt,
1240 RestoreIndex, RefsInMBB))
1241 return true;
1242
Evan Chengf5cd4f02008-10-23 20:43:13 +00001243 // Add a spill either before the barrier or after the definition.
Evan Cheng06587492008-10-24 02:05:00 +00001244 MachineBasicBlock *DefMBB = DefMI ? DefMI->getParent() : NULL;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001245 const TargetRegisterClass *RC = MRI->getRegClass(CurrLI->reg);
Evan Chengf5cd4f02008-10-23 20:43:13 +00001246 unsigned SpillIndex = 0;
Evan Cheng06587492008-10-24 02:05:00 +00001247 MachineInstr *SpillMI = NULL;
Evan Cheng985921e2008-10-27 23:29:28 +00001248 int SS = -1;
Evan Cheng78dfef72008-10-25 00:52:41 +00001249 if (ValNo->def == ~0U) {
Evan Chengf5cd4f02008-10-23 20:43:13 +00001250 // If it's defined by a phi, we must split just before the barrier.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001251 if ((SpillMI = FoldSpill(LI->reg, RC, 0, Barrier,
1252 BarrierMBB, SS, RefsInMBB))) {
1253 SpillIndex = LIs->getInstructionIndex(SpillMI);
1254 } else {
1255 MachineBasicBlock::iterator SpillPt =
1256 findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, SpillIndex);
1257 if (SpillPt == BarrierMBB->begin())
1258 return false; // No gap to insert spill.
1259 // Add spill.
1260
1261 SS = CreateSpillStackSlot(CurrLI->reg, RC);
1262 TII->storeRegToStackSlot(*BarrierMBB, SpillPt, CurrLI->reg, true, SS, RC);
1263 SpillMI = prior(SpillPt);
1264 LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
1265 }
Evan Cheng54898932008-10-29 08:39:34 +00001266 } else if (!IsAvailableInStack(DefMBB, CurrLI->reg, ValNo->def,
1267 RestoreIndex, SpillIndex, SS)) {
Evan Cheng78dfef72008-10-25 00:52:41 +00001268 // If it's already split, just restore the value. There is no need to spill
1269 // the def again.
Evan Chengd0e32c52008-10-29 05:06:14 +00001270 if (!DefMI)
1271 return false; // Def is dead. Do nothing.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001272
1273 if ((SpillMI = FoldSpill(LI->reg, RC, DefMI, Barrier,
1274 BarrierMBB, SS, RefsInMBB))) {
1275 SpillIndex = LIs->getInstructionIndex(SpillMI);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001276 } else {
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001277 // Check if it's possible to insert a spill after the def MI.
1278 MachineBasicBlock::iterator SpillPt;
1279 if (DefMBB == BarrierMBB) {
1280 // Add spill after the def and the last use before the barrier.
1281 SpillPt = findSpillPoint(BarrierMBB, Barrier, DefMI,
1282 RefsInMBB, SpillIndex);
1283 if (SpillPt == DefMBB->begin())
1284 return false; // No gap to insert spill.
1285 } else {
1286 SpillPt = findNextEmptySlot(DefMBB, DefMI, SpillIndex);
1287 if (SpillPt == DefMBB->end())
1288 return false; // No gap to insert spill.
1289 }
1290 // Add spill. The store instruction kills the register if def is before
1291 // the barrier in the barrier block.
1292 SS = CreateSpillStackSlot(CurrLI->reg, RC);
1293 TII->storeRegToStackSlot(*DefMBB, SpillPt, CurrLI->reg,
1294 DefMBB == BarrierMBB, SS, RC);
1295 SpillMI = prior(SpillPt);
1296 LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001297 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001298 }
1299
Evan Cheng54898932008-10-29 08:39:34 +00001300 // Remember def instruction index to spill index mapping.
1301 if (DefMI && SpillMI)
1302 Def2SpillMap[ValNo->def] = SpillIndex;
1303
Evan Chengf5cd4f02008-10-23 20:43:13 +00001304 // Add restore.
Evan Chengf5cd4f02008-10-23 20:43:13 +00001305 TII->loadRegFromStackSlot(*BarrierMBB, RestorePt, CurrLI->reg, SS, RC);
1306 MachineInstr *LoadMI = prior(RestorePt);
1307 LIs->InsertMachineInstrInMaps(LoadMI, RestoreIndex);
1308
1309 // If live interval is spilled in the same block as the barrier, just
1310 // create a hole in the interval.
1311 if (!DefMBB ||
Evan Cheng78dfef72008-10-25 00:52:41 +00001312 (SpillMI && SpillMI->getParent() == BarrierMBB)) {
Evan Chengd0e32c52008-10-29 05:06:14 +00001313 // Update spill stack slot live interval.
1314 UpdateSpillSlotInterval(ValNo, LIs->getUseIndex(SpillIndex)+1,
1315 LIs->getDefIndex(RestoreIndex));
Evan Chengf5cd4f02008-10-23 20:43:13 +00001316
Owen Anderson6cf7c392009-01-21 00:13:28 +00001317 VNInfo* After = UpdateRegisterInterval(ValNo,
1318 LIs->getUseIndex(SpillIndex)+1,
Evan Chengd0e32c52008-10-29 05:06:14 +00001319 LIs->getDefIndex(RestoreIndex));
Owen Anderson6cf7c392009-01-21 00:13:28 +00001320 RenumberValno(After);
1321
Evan Chengae7fa5b2008-10-28 01:48:24 +00001322 ++NumSplits;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001323 return true;
1324 }
1325
Evan Chengd0e32c52008-10-29 05:06:14 +00001326 // Update spill stack slot live interval.
Evan Cheng54898932008-10-29 08:39:34 +00001327 UpdateSpillSlotInterval(ValNo, LIs->getUseIndex(SpillIndex)+1,
1328 LIs->getDefIndex(RestoreIndex));
Evan Chengd0e32c52008-10-29 05:06:14 +00001329
Owen Anderson6002e992008-12-04 21:20:30 +00001330 RepairLiveInterval(CurrLI, ValNo, DefMI, RestoreIndex);
Owen Anderson7d211e22008-12-31 02:00:25 +00001331
Evan Chengae7fa5b2008-10-28 01:48:24 +00001332 ++NumSplits;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001333 return true;
1334}
1335
1336/// SplitRegLiveIntervals - Split all register live intervals that cross the
1337/// barrier that's being processed.
1338bool
1339PreAllocSplitting::SplitRegLiveIntervals(const TargetRegisterClass **RCs) {
1340 // First find all the virtual registers whose live intervals are intercepted
1341 // by the current barrier.
1342 SmallVector<LiveInterval*, 8> Intervals;
1343 for (const TargetRegisterClass **RC = RCs; *RC; ++RC) {
Evan Cheng23066282008-10-27 07:14:50 +00001344 if (TII->IgnoreRegisterClassBarriers(*RC))
1345 continue;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001346 std::vector<unsigned> &VRs = MRI->getRegClassVirtRegs(*RC);
1347 for (unsigned i = 0, e = VRs.size(); i != e; ++i) {
1348 unsigned Reg = VRs[i];
1349 if (!LIs->hasInterval(Reg))
1350 continue;
1351 LiveInterval *LI = &LIs->getInterval(Reg);
1352 if (LI->liveAt(BarrierIdx) && !Barrier->readsRegister(Reg))
1353 // Virtual register live interval is intercepted by the barrier. We
1354 // should split and shrink wrap its interval if possible.
1355 Intervals.push_back(LI);
1356 }
1357 }
1358
1359 // Process the affected live intervals.
1360 bool Change = false;
1361 while (!Intervals.empty()) {
Evan Chengae7fa5b2008-10-28 01:48:24 +00001362 if (PreSplitLimit != -1 && (int)NumSplits == PreSplitLimit)
1363 break;
Owen Andersone1762c92009-01-12 03:10:40 +00001364 else if (NumSplits == 4)
1365 Change |= Change;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001366 LiveInterval *LI = Intervals.back();
1367 Intervals.pop_back();
1368 Change |= SplitRegLiveInterval(LI);
1369 }
1370
1371 return Change;
1372}
1373
Owen Andersonf1f75b12008-11-04 22:22:41 +00001374bool PreAllocSplitting::createsNewJoin(LiveRange* LR,
1375 MachineBasicBlock* DefMBB,
1376 MachineBasicBlock* BarrierMBB) {
1377 if (DefMBB == BarrierMBB)
1378 return false;
1379
1380 if (LR->valno->hasPHIKill)
1381 return false;
1382
1383 unsigned MBBEnd = LIs->getMBBEndIdx(BarrierMBB);
1384 if (LR->end < MBBEnd)
1385 return false;
1386
1387 MachineLoopInfo& MLI = getAnalysis<MachineLoopInfo>();
1388 if (MLI.getLoopFor(DefMBB) != MLI.getLoopFor(BarrierMBB))
1389 return true;
1390
1391 MachineDominatorTree& MDT = getAnalysis<MachineDominatorTree>();
1392 SmallPtrSet<MachineBasicBlock*, 4> Visited;
1393 typedef std::pair<MachineBasicBlock*,
1394 MachineBasicBlock::succ_iterator> ItPair;
1395 SmallVector<ItPair, 4> Stack;
1396 Stack.push_back(std::make_pair(BarrierMBB, BarrierMBB->succ_begin()));
1397
1398 while (!Stack.empty()) {
1399 ItPair P = Stack.back();
1400 Stack.pop_back();
1401
1402 MachineBasicBlock* PredMBB = P.first;
1403 MachineBasicBlock::succ_iterator S = P.second;
1404
1405 if (S == PredMBB->succ_end())
1406 continue;
1407 else if (Visited.count(*S)) {
1408 Stack.push_back(std::make_pair(PredMBB, ++S));
1409 continue;
1410 } else
Owen Andersonb214c692008-11-05 00:32:13 +00001411 Stack.push_back(std::make_pair(PredMBB, S+1));
Owen Andersonf1f75b12008-11-04 22:22:41 +00001412
1413 MachineBasicBlock* MBB = *S;
1414 Visited.insert(MBB);
1415
1416 if (MBB == BarrierMBB)
1417 return true;
1418
1419 MachineDomTreeNode* DefMDTN = MDT.getNode(DefMBB);
1420 MachineDomTreeNode* BarrierMDTN = MDT.getNode(BarrierMBB);
1421 MachineDomTreeNode* MDTN = MDT.getNode(MBB)->getIDom();
1422 while (MDTN) {
1423 if (MDTN == DefMDTN)
1424 return true;
1425 else if (MDTN == BarrierMDTN)
1426 break;
1427 MDTN = MDTN->getIDom();
1428 }
1429
1430 MBBEnd = LIs->getMBBEndIdx(MBB);
1431 if (LR->end > MBBEnd)
1432 Stack.push_back(std::make_pair(MBB, MBB->succ_begin()));
1433 }
1434
1435 return false;
1436}
1437
1438
Evan Cheng09e8ca82008-10-20 21:44:59 +00001439bool PreAllocSplitting::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd0e32c52008-10-29 05:06:14 +00001440 CurrMF = &MF;
1441 TM = &MF.getTarget();
1442 TII = TM->getInstrInfo();
1443 MFI = MF.getFrameInfo();
1444 MRI = &MF.getRegInfo();
1445 LIs = &getAnalysis<LiveIntervals>();
1446 LSs = &getAnalysis<LiveStacks>();
Evan Chengf5cd4f02008-10-23 20:43:13 +00001447
1448 bool MadeChange = false;
1449
1450 // Make sure blocks are numbered in order.
1451 MF.RenumberBlocks();
1452
Evan Cheng54898932008-10-29 08:39:34 +00001453 MachineBasicBlock *Entry = MF.begin();
1454 SmallPtrSet<MachineBasicBlock*,16> Visited;
1455
1456 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
1457 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
1458 DFI != E; ++DFI) {
1459 BarrierMBB = *DFI;
1460 for (MachineBasicBlock::iterator I = BarrierMBB->begin(),
1461 E = BarrierMBB->end(); I != E; ++I) {
1462 Barrier = &*I;
1463 const TargetRegisterClass **BarrierRCs =
1464 Barrier->getDesc().getRegClassBarriers();
1465 if (!BarrierRCs)
1466 continue;
1467 BarrierIdx = LIs->getInstructionIndex(Barrier);
1468 MadeChange |= SplitRegLiveIntervals(BarrierRCs);
1469 }
1470 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001471
1472 return MadeChange;
Evan Cheng09e8ca82008-10-20 21:44:59 +00001473}