blob: 0880f6229747d919982493f1210f6272a25b75f5 [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,
176 LiveInterval* LI,
177 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
178 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
179 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
180 DenseMap<MachineBasicBlock*, VNInfo*>& Visited,
181 bool toplevel = false);
182};
Evan Cheng09e8ca82008-10-20 21:44:59 +0000183} // end anonymous namespace
184
185char PreAllocSplitting::ID = 0;
186
187static RegisterPass<PreAllocSplitting>
188X("pre-alloc-splitting", "Pre-Register Allocation Live Interval Splitting");
189
190const PassInfo *const llvm::PreAllocSplittingID = &X;
191
Evan Chengf5cd4f02008-10-23 20:43:13 +0000192
193/// findNextEmptySlot - Find a gap after the given machine instruction in the
194/// instruction index map. If there isn't one, return end().
195MachineBasicBlock::iterator
196PreAllocSplitting::findNextEmptySlot(MachineBasicBlock *MBB, MachineInstr *MI,
197 unsigned &SpotIndex) {
198 MachineBasicBlock::iterator MII = MI;
199 if (++MII != MBB->end()) {
200 unsigned Index = LIs->findGapBeforeInstr(LIs->getInstructionIndex(MII));
201 if (Index) {
202 SpotIndex = Index;
203 return MII;
204 }
205 }
206 return MBB->end();
207}
208
209/// findSpillPoint - Find a gap as far away from the given MI that's suitable
210/// for spilling the current live interval. The index must be before any
211/// defs and uses of the live interval register in the mbb. Return begin() if
212/// none is found.
213MachineBasicBlock::iterator
214PreAllocSplitting::findSpillPoint(MachineBasicBlock *MBB, MachineInstr *MI,
Evan Cheng1f08cc22008-10-28 05:28:21 +0000215 MachineInstr *DefMI,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000216 SmallPtrSet<MachineInstr*, 4> &RefsInMBB,
217 unsigned &SpillIndex) {
218 MachineBasicBlock::iterator Pt = MBB->begin();
219
220 // Go top down if RefsInMBB is empty.
Evan Cheng1f08cc22008-10-28 05:28:21 +0000221 if (RefsInMBB.empty() && !DefMI) {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000222 MachineBasicBlock::iterator MII = MBB->begin();
223 MachineBasicBlock::iterator EndPt = MI;
224 do {
225 ++MII;
226 unsigned Index = LIs->getInstructionIndex(MII);
227 unsigned Gap = LIs->findGapBeforeInstr(Index);
228 if (Gap) {
229 Pt = MII;
230 SpillIndex = Gap;
231 break;
232 }
233 } while (MII != EndPt);
234 } else {
235 MachineBasicBlock::iterator MII = MI;
Evan Cheng1f08cc22008-10-28 05:28:21 +0000236 MachineBasicBlock::iterator EndPt = DefMI
237 ? MachineBasicBlock::iterator(DefMI) : MBB->begin();
238 while (MII != EndPt && !RefsInMBB.count(MII)) {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000239 unsigned Index = LIs->getInstructionIndex(MII);
240 if (LIs->hasGapBeforeInstr(Index)) {
241 Pt = MII;
242 SpillIndex = LIs->findGapBeforeInstr(Index, true);
243 }
244 --MII;
245 }
246 }
247
248 return Pt;
249}
250
251/// findRestorePoint - Find a gap in the instruction index map that's suitable
252/// for restoring the current live interval value. The index must be before any
253/// uses of the live interval register in the mbb. Return end() if none is
254/// found.
255MachineBasicBlock::iterator
256PreAllocSplitting::findRestorePoint(MachineBasicBlock *MBB, MachineInstr *MI,
Evan Chengf62ce372008-10-28 00:47:49 +0000257 unsigned LastIdx,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000258 SmallPtrSet<MachineInstr*, 4> &RefsInMBB,
259 unsigned &RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000260 // FIXME: Allow spill to be inserted to the beginning of the mbb. Update mbb
261 // begin index accordingly.
Owen Anderson5a92d4e2008-11-18 20:53:59 +0000262 MachineBasicBlock::iterator Pt = MBB->end();
Evan Chengf62ce372008-10-28 00:47:49 +0000263 unsigned EndIdx = LIs->getMBBEndIdx(MBB);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000264
Evan Chengf62ce372008-10-28 00:47:49 +0000265 // Go bottom up if RefsInMBB is empty and the end of the mbb isn't beyond
266 // the last index in the live range.
267 if (RefsInMBB.empty() && LastIdx >= EndIdx) {
Owen Anderson711fd3d2008-11-13 21:53:14 +0000268 MachineBasicBlock::iterator MII = MBB->getFirstTerminator();
Evan Chengf5cd4f02008-10-23 20:43:13 +0000269 MachineBasicBlock::iterator EndPt = MI;
Evan Cheng54898932008-10-29 08:39:34 +0000270 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000271 do {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000272 unsigned Index = LIs->getInstructionIndex(MII);
Evan Cheng56ab0de2008-10-24 18:46:44 +0000273 unsigned Gap = LIs->findGapBeforeInstr(Index);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000274 if (Gap) {
275 Pt = MII;
276 RestoreIndex = Gap;
277 break;
278 }
Evan Cheng54898932008-10-29 08:39:34 +0000279 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000280 } while (MII != EndPt);
281 } else {
282 MachineBasicBlock::iterator MII = MI;
283 MII = ++MII;
Evan Chengf62ce372008-10-28 00:47:49 +0000284 // FIXME: Limit the number of instructions to examine to reduce
285 // compile time?
Evan Chengf5cd4f02008-10-23 20:43:13 +0000286 while (MII != MBB->end()) {
287 unsigned Index = LIs->getInstructionIndex(MII);
Evan Chengf62ce372008-10-28 00:47:49 +0000288 if (Index > LastIdx)
289 break;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000290 unsigned Gap = LIs->findGapBeforeInstr(Index);
291 if (Gap) {
292 Pt = MII;
293 RestoreIndex = Gap;
294 }
295 if (RefsInMBB.count(MII))
296 break;
297 ++MII;
298 }
299 }
300
301 return Pt;
302}
303
Evan Chengd0e32c52008-10-29 05:06:14 +0000304/// CreateSpillStackSlot - Create a stack slot for the live interval being
305/// split. If the live interval was previously split, just reuse the same
306/// slot.
307int PreAllocSplitting::CreateSpillStackSlot(unsigned Reg,
308 const TargetRegisterClass *RC) {
309 int SS;
310 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
311 if (I != IntervalSSMap.end()) {
312 SS = I->second;
313 } else {
314 SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());
315 IntervalSSMap[Reg] = SS;
Evan Cheng06587492008-10-24 02:05:00 +0000316 }
Evan Chengd0e32c52008-10-29 05:06:14 +0000317
318 // Create live interval for stack slot.
319 CurrSLI = &LSs->getOrCreateInterval(SS);
Evan Cheng54898932008-10-29 08:39:34 +0000320 if (CurrSLI->hasAtLeastOneValue())
Evan Chengd0e32c52008-10-29 05:06:14 +0000321 CurrSValNo = CurrSLI->getValNumInfo(0);
322 else
323 CurrSValNo = CurrSLI->getNextValue(~0U, 0, LSs->getVNInfoAllocator());
324 return SS;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000325}
326
Evan Chengd0e32c52008-10-29 05:06:14 +0000327/// IsAvailableInStack - Return true if register is available in a split stack
328/// slot at the specified index.
329bool
Evan Cheng54898932008-10-29 08:39:34 +0000330PreAllocSplitting::IsAvailableInStack(MachineBasicBlock *DefMBB,
331 unsigned Reg, unsigned DefIndex,
332 unsigned RestoreIndex, unsigned &SpillIndex,
333 int& SS) const {
334 if (!DefMBB)
335 return false;
336
Evan Chengd0e32c52008-10-29 05:06:14 +0000337 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
338 if (I == IntervalSSMap.end())
Evan Chengf5cd4f02008-10-23 20:43:13 +0000339 return false;
Evan Cheng54898932008-10-29 08:39:34 +0000340 DenseMap<unsigned, unsigned>::iterator II = Def2SpillMap.find(DefIndex);
341 if (II == Def2SpillMap.end())
342 return false;
343
344 // If last spill of def is in the same mbb as barrier mbb (where restore will
345 // be), make sure it's not below the intended restore index.
346 // FIXME: Undo the previous spill?
347 assert(LIs->getMBBFromIndex(II->second) == DefMBB);
348 if (DefMBB == BarrierMBB && II->second >= RestoreIndex)
349 return false;
350
351 SS = I->second;
352 SpillIndex = II->second;
353 return true;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000354}
355
Evan Chengd0e32c52008-10-29 05:06:14 +0000356/// UpdateSpillSlotInterval - Given the specified val# of the register live
357/// interval being split, and the spill and restore indicies, update the live
358/// interval of the spill stack slot.
359void
360PreAllocSplitting::UpdateSpillSlotInterval(VNInfo *ValNo, unsigned SpillIndex,
361 unsigned RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000362 assert(LIs->getMBBFromIndex(RestoreIndex) == BarrierMBB &&
363 "Expect restore in the barrier mbb");
364
365 MachineBasicBlock *MBB = LIs->getMBBFromIndex(SpillIndex);
366 if (MBB == BarrierMBB) {
367 // Intra-block spill + restore. We are done.
Evan Chengd0e32c52008-10-29 05:06:14 +0000368 LiveRange SLR(SpillIndex, RestoreIndex, CurrSValNo);
369 CurrSLI->addRange(SLR);
370 return;
371 }
372
Evan Cheng54898932008-10-29 08:39:34 +0000373 SmallPtrSet<MachineBasicBlock*, 4> Processed;
374 unsigned EndIdx = LIs->getMBBEndIdx(MBB);
375 LiveRange SLR(SpillIndex, EndIdx+1, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000376 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000377 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000378
379 // Start from the spill mbb, figure out the extend of the spill slot's
380 // live interval.
381 SmallVector<MachineBasicBlock*, 4> WorkList;
Evan Cheng54898932008-10-29 08:39:34 +0000382 const LiveRange *LR = CurrLI->getLiveRangeContaining(SpillIndex);
383 if (LR->end > EndIdx)
Evan Chengd0e32c52008-10-29 05:06:14 +0000384 // If live range extend beyond end of mbb, add successors to work list.
385 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
386 SE = MBB->succ_end(); SI != SE; ++SI)
387 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000388
389 while (!WorkList.empty()) {
390 MachineBasicBlock *MBB = WorkList.back();
391 WorkList.pop_back();
Evan Cheng54898932008-10-29 08:39:34 +0000392 if (Processed.count(MBB))
393 continue;
Evan Chengd0e32c52008-10-29 05:06:14 +0000394 unsigned Idx = LIs->getMBBStartIdx(MBB);
395 LR = CurrLI->getLiveRangeContaining(Idx);
Evan Cheng54898932008-10-29 08:39:34 +0000396 if (LR && LR->valno == ValNo) {
397 EndIdx = LIs->getMBBEndIdx(MBB);
398 if (Idx <= RestoreIndex && RestoreIndex < EndIdx) {
Evan Chengd0e32c52008-10-29 05:06:14 +0000399 // Spill slot live interval stops at the restore.
Evan Cheng54898932008-10-29 08:39:34 +0000400 LiveRange SLR(Idx, RestoreIndex, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000401 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000402 } else if (LR->end > EndIdx) {
403 // Live range extends beyond end of mbb, process successors.
404 LiveRange SLR(Idx, EndIdx+1, CurrSValNo);
405 CurrSLI->addRange(SLR);
406 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
407 SE = MBB->succ_end(); SI != SE; ++SI)
408 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000409 } else {
Evan Cheng54898932008-10-29 08:39:34 +0000410 LiveRange SLR(Idx, LR->end, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000411 CurrSLI->addRange(SLR);
Evan Chengd0e32c52008-10-29 05:06:14 +0000412 }
Evan Cheng54898932008-10-29 08:39:34 +0000413 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000414 }
415 }
416}
417
418/// UpdateRegisterInterval - Given the specified val# of the current live
419/// interval is being split, and the spill and restore indices, update the live
Evan Chengf5cd4f02008-10-23 20:43:13 +0000420/// interval accordingly.
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000421VNInfo*
Evan Chengd0e32c52008-10-29 05:06:14 +0000422PreAllocSplitting::UpdateRegisterInterval(VNInfo *ValNo, unsigned SpillIndex,
423 unsigned RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000424 assert(LIs->getMBBFromIndex(RestoreIndex) == BarrierMBB &&
425 "Expect restore in the barrier mbb");
426
Evan Chengf5cd4f02008-10-23 20:43:13 +0000427 SmallVector<std::pair<unsigned,unsigned>, 4> Before;
428 SmallVector<std::pair<unsigned,unsigned>, 4> After;
429 SmallVector<unsigned, 4> BeforeKills;
430 SmallVector<unsigned, 4> AfterKills;
431 SmallPtrSet<const LiveRange*, 4> Processed;
432
433 // First, let's figure out which parts of the live interval is now defined
434 // by the restore, which are defined by the original definition.
Evan Chengd0e32c52008-10-29 05:06:14 +0000435 const LiveRange *LR = CurrLI->getLiveRangeContaining(RestoreIndex);
436 After.push_back(std::make_pair(RestoreIndex, LR->end));
Evan Cheng06587492008-10-24 02:05:00 +0000437 if (CurrLI->isKill(ValNo, LR->end))
438 AfterKills.push_back(LR->end);
439
Evan Chengd0e32c52008-10-29 05:06:14 +0000440 assert(LR->contains(SpillIndex));
441 if (SpillIndex > LR->start) {
442 Before.push_back(std::make_pair(LR->start, SpillIndex));
443 BeforeKills.push_back(SpillIndex);
Evan Cheng06587492008-10-24 02:05:00 +0000444 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000445 Processed.insert(LR);
446
Evan Chengd0e32c52008-10-29 05:06:14 +0000447 // Start from the restore mbb, figure out what part of the live interval
448 // are defined by the restore.
Evan Chengf5cd4f02008-10-23 20:43:13 +0000449 SmallVector<MachineBasicBlock*, 4> WorkList;
Evan Cheng54898932008-10-29 08:39:34 +0000450 MachineBasicBlock *MBB = BarrierMBB;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000451 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
452 SE = MBB->succ_end(); SI != SE; ++SI)
453 WorkList.push_back(*SI);
454
Owen Anderson75c99c52008-12-07 05:33:18 +0000455 SmallPtrSet<MachineBasicBlock*, 4> ProcessedBlocks;
456 ProcessedBlocks.insert(MBB);
457
Evan Chengf5cd4f02008-10-23 20:43:13 +0000458 while (!WorkList.empty()) {
459 MBB = WorkList.back();
460 WorkList.pop_back();
461 unsigned Idx = LIs->getMBBStartIdx(MBB);
462 LR = CurrLI->getLiveRangeContaining(Idx);
463 if (LR && LR->valno == ValNo && !Processed.count(LR)) {
464 After.push_back(std::make_pair(LR->start, LR->end));
465 if (CurrLI->isKill(ValNo, LR->end))
466 AfterKills.push_back(LR->end);
467 Idx = LIs->getMBBEndIdx(MBB);
468 if (LR->end > Idx) {
Evan Chengd0e32c52008-10-29 05:06:14 +0000469 // Live range extend beyond at least one mbb. Let's see what other
470 // mbbs it reaches.
471 LIs->findReachableMBBs(LR->start, LR->end, WorkList);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000472 }
473 Processed.insert(LR);
474 }
Owen Anderson75c99c52008-12-07 05:33:18 +0000475
476 ProcessedBlocks.insert(MBB);
477 if (LR)
478 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
479 SE = MBB->succ_end(); SI != SE; ++SI)
480 if (!ProcessedBlocks.count(*SI))
481 WorkList.push_back(*SI);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000482 }
483
484 for (LiveInterval::iterator I = CurrLI->begin(), E = CurrLI->end();
485 I != E; ++I) {
486 LiveRange *LR = I;
487 if (LR->valno == ValNo && !Processed.count(LR)) {
488 Before.push_back(std::make_pair(LR->start, LR->end));
489 if (CurrLI->isKill(ValNo, LR->end))
490 BeforeKills.push_back(LR->end);
491 }
492 }
493
494 // Now create new val#s to represent the live ranges defined by the old def
495 // those defined by the restore.
496 unsigned AfterDef = ValNo->def;
497 MachineInstr *AfterCopy = ValNo->copy;
498 bool HasPHIKill = ValNo->hasPHIKill;
499 CurrLI->removeValNo(ValNo);
Evan Cheng06587492008-10-24 02:05:00 +0000500 VNInfo *BValNo = (Before.empty())
501 ? NULL
502 : CurrLI->getNextValue(AfterDef, AfterCopy, LIs->getVNInfoAllocator());
503 if (BValNo)
504 CurrLI->addKills(BValNo, BeforeKills);
505
506 VNInfo *AValNo = (After.empty())
507 ? NULL
Evan Chengd0e32c52008-10-29 05:06:14 +0000508 : CurrLI->getNextValue(RestoreIndex, 0, LIs->getVNInfoAllocator());
Evan Cheng06587492008-10-24 02:05:00 +0000509 if (AValNo) {
510 AValNo->hasPHIKill = HasPHIKill;
511 CurrLI->addKills(AValNo, AfterKills);
512 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000513
514 for (unsigned i = 0, e = Before.size(); i != e; ++i) {
515 unsigned Start = Before[i].first;
516 unsigned End = Before[i].second;
517 CurrLI->addRange(LiveRange(Start, End, BValNo));
518 }
519 for (unsigned i = 0, e = After.size(); i != e; ++i) {
520 unsigned Start = After[i].first;
521 unsigned End = After[i].second;
522 CurrLI->addRange(LiveRange(Start, End, AValNo));
523 }
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000524
525 return AValNo;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000526}
527
528/// ShrinkWrapToLastUse - There are uses of the current live interval in the
529/// given block, shrink wrap the live interval to the last use (i.e. remove
530/// from last use to the end of the mbb). In case mbb is the where the barrier
531/// is, remove from the last use to the barrier.
532bool
Evan Chengd0e32c52008-10-29 05:06:14 +0000533PreAllocSplitting::ShrinkWrapToLastUse(MachineBasicBlock *MBB, VNInfo *ValNo,
Evan Cheng06587492008-10-24 02:05:00 +0000534 SmallVector<MachineOperand*, 4> &Uses,
535 SmallPtrSet<MachineInstr*, 4> &UseMIs) {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000536 MachineOperand *LastMO = 0;
537 MachineInstr *LastMI = 0;
538 if (MBB != BarrierMBB && Uses.size() == 1) {
539 // Single use, no need to traverse the block. We can't assume this for the
540 // barrier bb though since the use is probably below the barrier.
541 LastMO = Uses[0];
542 LastMI = LastMO->getParent();
543 } else {
Evan Cheng2efe3fd2008-10-24 05:53:44 +0000544 MachineBasicBlock::iterator MEE = MBB->begin();
Evan Chengf5cd4f02008-10-23 20:43:13 +0000545 MachineBasicBlock::iterator MII;
Evan Cheng2efe3fd2008-10-24 05:53:44 +0000546 if (MBB == BarrierMBB)
Evan Chengf5cd4f02008-10-23 20:43:13 +0000547 MII = Barrier;
Evan Cheng2efe3fd2008-10-24 05:53:44 +0000548 else
Evan Chengf5cd4f02008-10-23 20:43:13 +0000549 MII = MBB->end();
Evan Chengd0e32c52008-10-29 05:06:14 +0000550 while (MII != MEE) {
551 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000552 MachineInstr *UseMI = &*MII;
553 if (!UseMIs.count(UseMI))
554 continue;
555 for (unsigned i = 0, e = UseMI->getNumOperands(); i != e; ++i) {
556 MachineOperand &MO = UseMI->getOperand(i);
557 if (MO.isReg() && MO.getReg() == CurrLI->reg) {
558 LastMO = &MO;
559 break;
560 }
561 }
562 LastMI = UseMI;
563 break;
564 }
565 }
566
567 // Cut off live range from last use (or beginning of the mbb if there
568 // are no uses in it) to the end of the mbb.
569 unsigned RangeStart, RangeEnd = LIs->getMBBEndIdx(MBB)+1;
570 if (LastMI) {
571 RangeStart = LIs->getUseIndex(LIs->getInstructionIndex(LastMI))+1;
572 assert(!LastMO->isKill() && "Last use already terminates the interval?");
573 LastMO->setIsKill();
574 } else {
575 assert(MBB == BarrierMBB);
576 RangeStart = LIs->getMBBStartIdx(MBB);
577 }
578 if (MBB == BarrierMBB)
Evan Cheng06587492008-10-24 02:05:00 +0000579 RangeEnd = LIs->getUseIndex(BarrierIdx)+1;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000580 CurrLI->removeRange(RangeStart, RangeEnd);
Evan Chengd0e32c52008-10-29 05:06:14 +0000581 if (LastMI)
582 CurrLI->addKill(ValNo, RangeStart);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000583
584 // Return true if the last use becomes a new kill.
585 return LastMI;
586}
587
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000588/// PerformPHIConstruction - From properly set up use and def lists, use a PHI
589/// construction algorithm to compute the ranges and valnos for an interval.
590VNInfo* PreAllocSplitting::PerformPHIConstruction(
591 MachineBasicBlock::iterator use,
592 LiveInterval* LI,
593 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
594 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
595 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
596 DenseMap<MachineBasicBlock*, VNInfo*>& Visited,
597 bool toplevel) {
598 // Return memoized result if it's available.
599 if (Visited.count(use->getParent()))
600 return Visited[use->getParent()];
601
602 typedef DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> > RegMap;
603
604 // Check if our block contains any uses or defs.
605 bool ContainsDefs = Defs.count(use->getParent());
606 bool ContainsUses = Uses.count(use->getParent());
607
608 VNInfo* ret = 0;
609
610 // Enumerate the cases of use/def contaning blocks.
611 if (!ContainsDefs && !ContainsUses) {
612 Fallback:
613 // NOTE: Because this is the fallback case from other cases, we do NOT
614 // assume that we are not at toplevel here.
615
616 // If there are no uses or defs between our starting point and the beginning
617 // of the block, then recursive perform phi construction on our predecessors
618 MachineBasicBlock* MBB = use->getParent();
619 DenseMap<MachineBasicBlock*, VNInfo*> IncomingVNs;
620 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
621 PE = MBB->pred_end(); PI != PE; ++PI) {
622 VNInfo* Incoming = PerformPHIConstruction((*PI)->end(), LI, Defs, Uses,
623 NewVNs, Visited, false);
624 IncomingVNs[*PI] = Incoming;
625 }
626
627 // If only one VNInfo came back from our predecessors, just use that one...
628 if (IncomingVNs.size() == 1) {
629 ret = IncomingVNs.begin()->second;
630 unsigned StartIndex = LIs->getMBBStartIdx(use->getParent());
631 unsigned EndIndex = 0;
632 if (toplevel) {
633 EndIndex = LIs->getInstructionIndex(use);
634 EndIndex = LiveIntervals::getUseIndex(EndIndex);
635 } else
636 EndIndex = LIs->getMBBEndIdx(use->getParent());
637
638 LI->addRange(LiveRange(StartIndex, EndIndex, ret));
639 } else {
640 // Otherwise, merge the incoming VNInfos with a phi join. Create a new
641 // VNInfo to represent the joined value.
642 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator I =
643 IncomingVNs.begin(), E = IncomingVNs.end(); I != E; ++I) {
644 I->second->hasPHIKill = true;
645 unsigned KillIndex = LIs->getMBBEndIdx(I->first);
646 LI->addKill(I->second, KillIndex);
647 }
648
649 unsigned StartIndex = LIs->getMBBStartIdx(use->getParent());
650 unsigned EndIndex = 0;
651 if (toplevel) {
652 EndIndex = LIs->getInstructionIndex(use);
653 EndIndex = LiveIntervals::getUseIndex(EndIndex);
654 } else
655 EndIndex = LIs->getMBBEndIdx(use->getParent());
656 ret = LI->getNextValue(StartIndex, /*FIXME*/ 0,
657 LIs->getVNInfoAllocator());
658 LI->addRange(LiveRange(StartIndex, EndIndex, ret));
659 }
660 } else if (ContainsDefs && !ContainsUses) {
661 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[use->getParent()];
662
663 // Search for the def in this block. If we don't find it before the
664 // instruction we care about, go to the fallback case. Note that that
665 // should never happen: this cannot be a toplevel block, so use should
666 // always be an end() iterator.
667 assert(use == use->getParent()->end() && "No use marked in toplevel block");
668
669 MachineBasicBlock::iterator walker = use;
670 --walker;
671 while (walker != use->getParent()->begin())
672 if (BlockDefs.count(walker)) {
673 break;
674 } else
675 --walker;
676
677 // Once we've found it, extend its VNInfo to our instruction.
678 unsigned DefIndex = LIs->getInstructionIndex(walker);
679 DefIndex = LiveIntervals::getDefIndex(DefIndex);
680 unsigned EndIndex = LIs->getMBBEndIdx(use->getParent());
681
682 ret = NewVNs[walker];
683 LI->addRange(LiveRange(DefIndex, EndIndex, ret));
684 } else if (!ContainsDefs && ContainsUses) {
685 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[use->getParent()];
686
687 // Search for the use in this block that precedes the instruction we care
688 // about, going to the fallback case if we don't find it.
689
690 if (use == use->getParent()->begin())
691 goto Fallback;
692
693 MachineBasicBlock::iterator walker = use;
694 --walker;
695 bool found = false;
696 while (walker != use->getParent()->begin())
697 if (BlockUses.count(walker)) {
698 found = true;
699 break;
700 } else
701 --walker;
702
703 // Must check begin() too.
704 if (!found)
705 if (BlockUses.count(walker))
706 found = true;
707 else
708 goto Fallback;
709
710 unsigned UseIndex = LIs->getInstructionIndex(walker);
711 UseIndex = LiveIntervals::getUseIndex(UseIndex);
712 unsigned EndIndex = 0;
713 if (toplevel) {
714 EndIndex = LIs->getInstructionIndex(walker);
715 EndIndex = LiveIntervals::getUseIndex(EndIndex);
716 } else
717 EndIndex = LIs->getMBBEndIdx(use->getParent());
718
719 // Now, recursively phi construct the VNInfo for the use we found,
720 // and then extend it to include the instruction we care about
721 ret = PerformPHIConstruction(walker, LI, Defs, Uses,
722 NewVNs, Visited, false);
723
724 // FIXME: Need to set kills properly for inter-block stuff.
725 if (toplevel) {
726 if (LI->isKill(ret, UseIndex)) LI->removeKill(ret, UseIndex);
727 LI->addKill(ret, EndIndex);
728 }
729
730 LI->addRange(LiveRange(UseIndex, EndIndex, ret));
731 } else if (ContainsDefs && ContainsUses){
732 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[use->getParent()];
733 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[use->getParent()];
734
735 // This case is basically a merging of the two preceding case, with the
736 // special note that checking for defs must take precedence over checking
737 // for uses, because of two-address instructions.
738
739 if (use == use->getParent()->begin())
740 goto Fallback;
741
742 MachineBasicBlock::iterator walker = use;
743 --walker;
744 bool foundDef = false;
745 bool foundUse = false;
746 while (walker != use->getParent()->begin())
747 if (BlockDefs.count(walker)) {
748 foundDef = true;
749 break;
750 } else if (BlockUses.count(walker)) {
751 foundUse = true;
752 break;
753 } else
754 --walker;
755
756 // Must check begin() too.
757 if (!foundDef && !foundUse)
758 if (BlockDefs.count(walker))
759 foundDef = true;
760 else if (BlockUses.count(walker))
761 foundUse = true;
762 else
763 goto Fallback;
764
765 unsigned StartIndex = LIs->getInstructionIndex(walker);
766 StartIndex = foundDef ? LiveIntervals::getDefIndex(StartIndex) :
767 LiveIntervals::getUseIndex(StartIndex);
768 unsigned EndIndex = 0;
769 if (toplevel) {
770 EndIndex = LIs->getInstructionIndex(walker);
771 EndIndex = LiveIntervals::getUseIndex(EndIndex);
772 } else
773 EndIndex = LIs->getMBBEndIdx(use->getParent());
774
775 if (foundDef)
776 ret = NewVNs[walker];
777 else
778 ret = PerformPHIConstruction(walker, LI, Defs, Uses,
779 NewVNs, Visited, false);
780
781 // FIXME: Need to set kills properly for inter-block stuff.
782 if (toplevel) {
783 if (foundUse && LI->isKill(ret, StartIndex))
784 LI->removeKill(ret, StartIndex);
785 LI->addKill(ret, EndIndex);
786 }
787
788 LI->addRange(LiveRange(StartIndex, EndIndex, ret));
789 }
790
791 // Memoize results so we don't have to recompute them.
792 if (!toplevel) Visited[use->getParent()] = ret;
793
794 return ret;
795}
796
797/// ReconstructLiveInterval - Recompute a live interval from scratch.
798void PreAllocSplitting::ReconstructLiveInterval(LiveInterval* LI) {
799 BumpPtrAllocator& Alloc = LIs->getVNInfoAllocator();
800
801 // Clear the old ranges and valnos;
802 LI->clear();
803
804 // Cache the uses and defs of the register
805 typedef DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> > RegMap;
806 RegMap Defs, Uses;
807
808 // Keep track of the new VNs we're creating.
809 DenseMap<MachineInstr*, VNInfo*> NewVNs;
810 SmallPtrSet<VNInfo*, 2> PhiVNs;
811
812 // Cache defs, and create a new VNInfo for each def.
813 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
814 DE = MRI->def_end(); DI != DE; ++DI) {
815 Defs[(*DI).getParent()].insert(&*DI);
816
817 unsigned DefIdx = LIs->getInstructionIndex(&*DI);
818 DefIdx = LiveIntervals::getDefIndex(DefIdx);
819
820 VNInfo* NewVN = LI->getNextValue(DefIdx, /*FIXME*/ 0, Alloc);
821 NewVNs[&*DI] = NewVN;
822 }
823
824 // Cache uses as a separate pass from actually processing them.
825 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
826 UE = MRI->use_end(); UI != UE; ++UI)
827 Uses[(*UI).getParent()].insert(&*UI);
828
829 // Now, actually process every use and use a phi construction algorithm
830 // to walk from it to its reaching definitions, building VNInfos along
831 // the way.
832 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
833 UE = MRI->use_end(); UI != UE; ++UI) {
834 DenseMap<MachineBasicBlock*, VNInfo*> Visited;
835 PerformPHIConstruction(&*UI, LI, Defs, Uses, NewVNs, Visited, true);
836 }
837}
838
Evan Chengf5cd4f02008-10-23 20:43:13 +0000839/// ShrinkWrapLiveInterval - Recursively traverse the predecessor
840/// chain to find the new 'kills' and shrink wrap the live interval to the
841/// new kill indices.
842void
Evan Chengaaf510c2008-10-26 07:49:03 +0000843PreAllocSplitting::ShrinkWrapLiveInterval(VNInfo *ValNo, MachineBasicBlock *MBB,
844 MachineBasicBlock *SuccMBB, MachineBasicBlock *DefMBB,
Evan Cheng06587492008-10-24 02:05:00 +0000845 SmallPtrSet<MachineBasicBlock*, 8> &Visited,
846 DenseMap<MachineBasicBlock*, SmallVector<MachineOperand*, 4> > &Uses,
847 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 4> > &UseMIs,
848 SmallVector<MachineBasicBlock*, 4> &UseMBBs) {
Evan Chengaaf510c2008-10-26 07:49:03 +0000849 if (Visited.count(MBB))
Evan Chengf5cd4f02008-10-23 20:43:13 +0000850 return;
851
Evan Chengaaf510c2008-10-26 07:49:03 +0000852 // If live interval is live in another successor path, then we can't process
853 // this block. But we may able to do so after all the successors have been
854 // processed.
Evan Chengf62ce372008-10-28 00:47:49 +0000855 if (MBB != BarrierMBB) {
856 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
857 SE = MBB->succ_end(); SI != SE; ++SI) {
858 MachineBasicBlock *SMBB = *SI;
859 if (SMBB == SuccMBB)
860 continue;
861 if (CurrLI->liveAt(LIs->getMBBStartIdx(SMBB)))
862 return;
863 }
Evan Chengaaf510c2008-10-26 07:49:03 +0000864 }
865
866 Visited.insert(MBB);
867
Evan Cheng06587492008-10-24 02:05:00 +0000868 DenseMap<MachineBasicBlock*, SmallVector<MachineOperand*, 4> >::iterator
869 UMII = Uses.find(MBB);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000870 if (UMII != Uses.end()) {
871 // At least one use in this mbb, lets look for the kill.
Evan Cheng06587492008-10-24 02:05:00 +0000872 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 4> >::iterator
873 UMII2 = UseMIs.find(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000874 if (ShrinkWrapToLastUse(MBB, ValNo, UMII->second, UMII2->second))
Evan Chengf5cd4f02008-10-23 20:43:13 +0000875 // Found a kill, shrink wrapping of this path ends here.
876 return;
Evan Cheng06587492008-10-24 02:05:00 +0000877 } else if (MBB == DefMBB) {
Evan Cheng06587492008-10-24 02:05:00 +0000878 // There are no uses after the def.
879 MachineInstr *DefMI = LIs->getInstructionFromIndex(ValNo->def);
Evan Cheng06587492008-10-24 02:05:00 +0000880 if (UseMBBs.empty()) {
881 // The only use must be below barrier in the barrier block. It's safe to
882 // remove the def.
883 LIs->RemoveMachineInstrFromMaps(DefMI);
884 DefMI->eraseFromParent();
885 CurrLI->removeRange(ValNo->def, LIs->getMBBEndIdx(MBB)+1);
886 }
Evan Cheng79d5b5a2008-10-25 23:49:39 +0000887 } else if (MBB == BarrierMBB) {
888 // Remove entire live range from start of mbb to barrier.
889 CurrLI->removeRange(LIs->getMBBStartIdx(MBB),
890 LIs->getUseIndex(BarrierIdx)+1);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000891 } else {
Evan Cheng79d5b5a2008-10-25 23:49:39 +0000892 // Remove entire live range of the mbb out of the live interval.
Evan Cheng06587492008-10-24 02:05:00 +0000893 CurrLI->removeRange(LIs->getMBBStartIdx(MBB), LIs->getMBBEndIdx(MBB)+1);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000894 }
895
896 if (MBB == DefMBB)
897 // Reached the def mbb, stop traversing this path further.
898 return;
899
900 // Traverse the pathes up the predecessor chains further.
901 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
902 PE = MBB->pred_end(); PI != PE; ++PI) {
903 MachineBasicBlock *Pred = *PI;
904 if (Pred == MBB)
905 continue;
906 if (Pred == DefMBB && ValNo->hasPHIKill)
907 // Pred is the def bb and the def reaches other val#s, we must
908 // allow the value to be live out of the bb.
909 continue;
Owen Anderson80fe8732008-11-11 22:11:27 +0000910 if (!CurrLI->liveAt(LIs->getMBBEndIdx(Pred)-1))
911 return;
Evan Chengaaf510c2008-10-26 07:49:03 +0000912 ShrinkWrapLiveInterval(ValNo, Pred, MBB, DefMBB, Visited,
913 Uses, UseMIs, UseMBBs);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000914 }
915
916 return;
917}
918
Owen Anderson75fa96b2008-11-19 04:28:29 +0000919
Owen Anderson6002e992008-12-04 21:20:30 +0000920void PreAllocSplitting::RepairLiveInterval(LiveInterval* CurrLI,
921 VNInfo* ValNo,
922 MachineInstr* DefMI,
923 unsigned RestoreIdx) {
Owen Anderson75fa96b2008-11-19 04:28:29 +0000924 // Shrink wrap the live interval by walking up the CFG and find the
925 // new kills.
926 // Now let's find all the uses of the val#.
927 DenseMap<MachineBasicBlock*, SmallVector<MachineOperand*, 4> > Uses;
928 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 4> > UseMIs;
929 SmallPtrSet<MachineBasicBlock*, 4> Seen;
930 SmallVector<MachineBasicBlock*, 4> UseMBBs;
931 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(CurrLI->reg),
932 UE = MRI->use_end(); UI != UE; ++UI) {
933 MachineOperand &UseMO = UI.getOperand();
934 MachineInstr *UseMI = UseMO.getParent();
935 unsigned UseIdx = LIs->getInstructionIndex(UseMI);
936 LiveInterval::iterator ULR = CurrLI->FindLiveRangeContaining(UseIdx);
937 if (ULR->valno != ValNo)
938 continue;
939 MachineBasicBlock *UseMBB = UseMI->getParent();
940 // Remember which other mbb's use this val#.
941 if (Seen.insert(UseMBB) && UseMBB != BarrierMBB)
942 UseMBBs.push_back(UseMBB);
943 DenseMap<MachineBasicBlock*, SmallVector<MachineOperand*, 4> >::iterator
944 UMII = Uses.find(UseMBB);
945 if (UMII != Uses.end()) {
946 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 4> >::iterator
947 UMII2 = UseMIs.find(UseMBB);
948 UMII->second.push_back(&UseMO);
949 UMII2->second.insert(UseMI);
950 } else {
951 SmallVector<MachineOperand*, 4> Ops;
952 Ops.push_back(&UseMO);
953 Uses.insert(std::make_pair(UseMBB, Ops));
954 SmallPtrSet<MachineInstr*, 4> MIs;
955 MIs.insert(UseMI);
956 UseMIs.insert(std::make_pair(UseMBB, MIs));
957 }
958 }
959
960 // Walk up the predecessor chains.
961 SmallPtrSet<MachineBasicBlock*, 8> Visited;
962 ShrinkWrapLiveInterval(ValNo, BarrierMBB, NULL, DefMI->getParent(), Visited,
963 Uses, UseMIs, UseMBBs);
964
Owen Anderson75fa96b2008-11-19 04:28:29 +0000965 // Remove live range from barrier to the restore. FIXME: Find a better
966 // point to re-start the live interval.
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000967 VNInfo* AfterValNo = UpdateRegisterInterval(ValNo,
968 LIs->getUseIndex(BarrierIdx)+1,
969 LIs->getDefIndex(RestoreIdx));
970
971 // Attempt to renumber the new valno into a new vreg.
972 RenumberValno(AfterValNo);
Owen Anderson6002e992008-12-04 21:20:30 +0000973}
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000974
975/// RenumberValno - Split the given valno out into a new vreg, allowing it to
976/// be allocated to a different register. This function creates a new vreg,
977/// copies the valno and its live ranges over to the new vreg's interval,
978/// removes them from the old interval, and rewrites all uses and defs of
979/// the original reg to the new vreg within those ranges.
980void PreAllocSplitting::RenumberValno(VNInfo* VN) {
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000981 SmallVector<VNInfo*, 4> Stack;
982 SmallVector<VNInfo*, 4> VNsToCopy;
983 Stack.push_back(VN);
984
985 // Walk through and copy the valno we care about, and any other valnos
986 // that are two-address redefinitions of the one we care about. These
987 // will need to be rewritten as well. We also check for safety of the
988 // renumbering here, by making sure that none of the valno involved has
989 // phi kills.
990 while (!Stack.empty()) {
991 VNInfo* OldVN = Stack.back();
992 Stack.pop_back();
993
994 // Bail out if we ever encounter a valno that has a PHI kill. We can't
995 // renumber these.
996 if (OldVN->hasPHIKill) return;
997
998 VNsToCopy.push_back(OldVN);
999
1000 // Locate two-address redefinitions
1001 for (SmallVector<unsigned, 4>::iterator KI = OldVN->kills.begin(),
1002 KE = OldVN->kills.end(); KI != KE; ++KI) {
1003 MachineInstr* MI = LIs->getInstructionFromIndex(*KI);
1004 //if (!MI) continue;
1005 unsigned DefIdx = MI->findRegisterDefOperandIdx(CurrLI->reg);
1006 if (DefIdx == ~0U) continue;
1007 if (MI->isRegReDefinedByTwoAddr(DefIdx)) {
1008 VNInfo* NextVN =
1009 CurrLI->findDefinedVNInfo(LiveIntervals::getDefIndex(*KI));
1010 Stack.push_back(NextVN);
1011 }
1012 }
1013 }
1014
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001015 // Create the new vreg
1016 unsigned NewVReg = MRI->createVirtualRegister(MRI->getRegClass(CurrLI->reg));
1017
Owen Anderson2ebf63f2008-12-18 01:27:19 +00001018 // Create the new live interval
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001019 LiveInterval& NewLI = LIs->getOrCreateInterval(NewVReg);
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001020
Owen Anderson2ebf63f2008-12-18 01:27:19 +00001021 for (SmallVector<VNInfo*, 4>::iterator OI = VNsToCopy.begin(), OE =
1022 VNsToCopy.end(); OI != OE; ++OI) {
1023 VNInfo* OldVN = *OI;
1024
1025 // Copy the valno over
1026 VNInfo* NewVN = NewLI.getNextValue(OldVN->def, OldVN->copy,
1027 LIs->getVNInfoAllocator());
1028 NewLI.copyValNumInfo(NewVN, OldVN);
1029 NewLI.MergeValueInAsValue(*CurrLI, OldVN, NewVN);
1030
1031 // Remove the valno from the old interval
1032 CurrLI->removeValNo(OldVN);
1033 }
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001034
1035 // Rewrite defs and uses. This is done in two stages to avoid invalidating
1036 // the reg_iterator.
1037 SmallVector<std::pair<MachineInstr*, unsigned>, 8> OpsToChange;
1038
1039 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
1040 E = MRI->reg_end(); I != E; ++I) {
1041 MachineOperand& MO = I.getOperand();
1042 unsigned InstrIdx = LIs->getInstructionIndex(&*I);
1043
1044 if ((MO.isUse() && NewLI.liveAt(LiveIntervals::getUseIndex(InstrIdx))) ||
1045 (MO.isDef() && NewLI.liveAt(LiveIntervals::getDefIndex(InstrIdx))))
1046 OpsToChange.push_back(std::make_pair(&*I, I.getOperandNo()));
1047 }
1048
1049 for (SmallVector<std::pair<MachineInstr*, unsigned>, 8>::iterator I =
1050 OpsToChange.begin(), E = OpsToChange.end(); I != E; ++I) {
1051 MachineInstr* Inst = I->first;
1052 unsigned OpIdx = I->second;
1053 MachineOperand& MO = Inst->getOperand(OpIdx);
1054 MO.setReg(NewVReg);
1055 }
Owen Anderson2ebf63f2008-12-18 01:27:19 +00001056
1057 NumRenumbers++;
Owen Andersond0b6a0d2008-12-16 21:35:08 +00001058}
1059
Owen Anderson6002e992008-12-04 21:20:30 +00001060bool PreAllocSplitting::Rematerialize(unsigned vreg, VNInfo* ValNo,
1061 MachineInstr* DefMI,
1062 MachineBasicBlock::iterator RestorePt,
1063 unsigned RestoreIdx,
1064 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
1065 MachineBasicBlock& MBB = *RestorePt->getParent();
1066
1067 MachineBasicBlock::iterator KillPt = BarrierMBB->end();
1068 unsigned KillIdx = 0;
1069 if (ValNo->def == ~0U || DefMI->getParent() == BarrierMBB)
1070 KillPt = findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, KillIdx);
1071 else
1072 KillPt = findNextEmptySlot(DefMI->getParent(), DefMI, KillIdx);
1073
1074 if (KillPt == DefMI->getParent()->end())
1075 return false;
1076
1077 TII->reMaterialize(MBB, RestorePt, vreg, DefMI);
1078 LIs->InsertMachineInstrInMaps(prior(RestorePt), RestoreIdx);
1079
1080 if (KillPt->getParent() == BarrierMBB) {
1081 UpdateRegisterInterval(ValNo, LIs->getUseIndex(KillIdx)+1,
1082 LIs->getDefIndex(RestoreIdx));
1083
1084 ++NumSplits;
1085 ++NumRemats;
1086 return true;
1087 }
1088
1089 RepairLiveInterval(CurrLI, ValNo, DefMI, RestoreIdx);
Owen Anderson75fa96b2008-11-19 04:28:29 +00001090
1091 ++NumSplits;
1092 ++NumRemats;
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001093 return true;
1094}
1095
1096MachineInstr* PreAllocSplitting::FoldSpill(unsigned vreg,
1097 const TargetRegisterClass* RC,
1098 MachineInstr* DefMI,
1099 MachineInstr* Barrier,
1100 MachineBasicBlock* MBB,
1101 int& SS,
1102 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
1103 MachineBasicBlock::iterator Pt = MBB->begin();
1104
1105 // Go top down if RefsInMBB is empty.
1106 if (RefsInMBB.empty())
1107 return 0;
Owen Anderson75fa96b2008-11-19 04:28:29 +00001108
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001109 MachineBasicBlock::iterator FoldPt = Barrier;
1110 while (&*FoldPt != DefMI && FoldPt != MBB->begin() &&
1111 !RefsInMBB.count(FoldPt))
1112 --FoldPt;
1113
1114 int OpIdx = FoldPt->findRegisterDefOperandIdx(vreg, false);
1115 if (OpIdx == -1)
1116 return 0;
1117
1118 SmallVector<unsigned, 1> Ops;
1119 Ops.push_back(OpIdx);
1120
1121 if (!TII->canFoldMemoryOperand(FoldPt, Ops))
1122 return 0;
1123
1124 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(vreg);
1125 if (I != IntervalSSMap.end()) {
1126 SS = I->second;
1127 } else {
1128 SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());
1129
1130 }
1131
1132 MachineInstr* FMI = TII->foldMemoryOperand(*MBB->getParent(),
1133 FoldPt, Ops, SS);
1134
1135 if (FMI) {
1136 LIs->ReplaceMachineInstrInMaps(FoldPt, FMI);
1137 FMI = MBB->insert(MBB->erase(FoldPt), FMI);
1138 ++NumFolds;
1139
1140 IntervalSSMap[vreg] = SS;
1141 CurrSLI = &LSs->getOrCreateInterval(SS);
1142 if (CurrSLI->hasAtLeastOneValue())
1143 CurrSValNo = CurrSLI->getValNumInfo(0);
1144 else
1145 CurrSValNo = CurrSLI->getNextValue(~0U, 0, LSs->getVNInfoAllocator());
1146 }
1147
1148 return FMI;
Owen Anderson75fa96b2008-11-19 04:28:29 +00001149}
1150
Evan Chengf5cd4f02008-10-23 20:43:13 +00001151/// SplitRegLiveInterval - Split (spill and restore) the given live interval
1152/// so it would not cross the barrier that's being processed. Shrink wrap
1153/// (minimize) the live interval to the last uses.
1154bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) {
1155 CurrLI = LI;
1156
1157 // Find live range where current interval cross the barrier.
1158 LiveInterval::iterator LR =
1159 CurrLI->FindLiveRangeContaining(LIs->getUseIndex(BarrierIdx));
1160 VNInfo *ValNo = LR->valno;
1161
1162 if (ValNo->def == ~1U) {
1163 // Defined by a dead def? How can this be?
1164 assert(0 && "Val# is defined by a dead def?");
1165 abort();
1166 }
1167
Evan Cheng06587492008-10-24 02:05:00 +00001168 MachineInstr *DefMI = (ValNo->def != ~0U)
1169 ? LIs->getInstructionFromIndex(ValNo->def) : NULL;
Evan Cheng06587492008-10-24 02:05:00 +00001170
Owen Andersonb214c692008-11-05 00:32:13 +00001171 // If this would create a new join point, do not split.
1172 if (DefMI && createsNewJoin(LR, DefMI->getParent(), Barrier->getParent()))
1173 return false;
1174
Evan Chengf5cd4f02008-10-23 20:43:13 +00001175 // Find all references in the barrier mbb.
1176 SmallPtrSet<MachineInstr*, 4> RefsInMBB;
1177 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
1178 E = MRI->reg_end(); I != E; ++I) {
1179 MachineInstr *RefMI = &*I;
1180 if (RefMI->getParent() == BarrierMBB)
1181 RefsInMBB.insert(RefMI);
1182 }
1183
1184 // Find a point to restore the value after the barrier.
1185 unsigned RestoreIndex;
1186 MachineBasicBlock::iterator RestorePt =
Evan Chengf62ce372008-10-28 00:47:49 +00001187 findRestorePoint(BarrierMBB, Barrier, LR->end, RefsInMBB, RestoreIndex);
Evan Chengf5cd4f02008-10-23 20:43:13 +00001188 if (RestorePt == BarrierMBB->end())
1189 return false;
1190
Owen Anderson75fa96b2008-11-19 04:28:29 +00001191 if (DefMI && LIs->isReMaterializable(*LI, ValNo, DefMI))
1192 if (Rematerialize(LI->reg, ValNo, DefMI, RestorePt,
1193 RestoreIndex, RefsInMBB))
1194 return true;
1195
Evan Chengf5cd4f02008-10-23 20:43:13 +00001196 // Add a spill either before the barrier or after the definition.
Evan Cheng06587492008-10-24 02:05:00 +00001197 MachineBasicBlock *DefMBB = DefMI ? DefMI->getParent() : NULL;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001198 const TargetRegisterClass *RC = MRI->getRegClass(CurrLI->reg);
Evan Chengf5cd4f02008-10-23 20:43:13 +00001199 unsigned SpillIndex = 0;
Evan Cheng06587492008-10-24 02:05:00 +00001200 MachineInstr *SpillMI = NULL;
Evan Cheng985921e2008-10-27 23:29:28 +00001201 int SS = -1;
Evan Cheng78dfef72008-10-25 00:52:41 +00001202 if (ValNo->def == ~0U) {
Evan Chengf5cd4f02008-10-23 20:43:13 +00001203 // If it's defined by a phi, we must split just before the barrier.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001204 if ((SpillMI = FoldSpill(LI->reg, RC, 0, Barrier,
1205 BarrierMBB, SS, RefsInMBB))) {
1206 SpillIndex = LIs->getInstructionIndex(SpillMI);
1207 } else {
1208 MachineBasicBlock::iterator SpillPt =
1209 findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, SpillIndex);
1210 if (SpillPt == BarrierMBB->begin())
1211 return false; // No gap to insert spill.
1212 // Add spill.
1213
1214 SS = CreateSpillStackSlot(CurrLI->reg, RC);
1215 TII->storeRegToStackSlot(*BarrierMBB, SpillPt, CurrLI->reg, true, SS, RC);
1216 SpillMI = prior(SpillPt);
1217 LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
1218 }
Evan Cheng54898932008-10-29 08:39:34 +00001219 } else if (!IsAvailableInStack(DefMBB, CurrLI->reg, ValNo->def,
1220 RestoreIndex, SpillIndex, SS)) {
Evan Cheng78dfef72008-10-25 00:52:41 +00001221 // If it's already split, just restore the value. There is no need to spill
1222 // the def again.
Evan Chengd0e32c52008-10-29 05:06:14 +00001223 if (!DefMI)
1224 return false; // Def is dead. Do nothing.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001225
1226 if ((SpillMI = FoldSpill(LI->reg, RC, DefMI, Barrier,
1227 BarrierMBB, SS, RefsInMBB))) {
1228 SpillIndex = LIs->getInstructionIndex(SpillMI);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001229 } else {
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001230 // Check if it's possible to insert a spill after the def MI.
1231 MachineBasicBlock::iterator SpillPt;
1232 if (DefMBB == BarrierMBB) {
1233 // Add spill after the def and the last use before the barrier.
1234 SpillPt = findSpillPoint(BarrierMBB, Barrier, DefMI,
1235 RefsInMBB, SpillIndex);
1236 if (SpillPt == DefMBB->begin())
1237 return false; // No gap to insert spill.
1238 } else {
1239 SpillPt = findNextEmptySlot(DefMBB, DefMI, SpillIndex);
1240 if (SpillPt == DefMBB->end())
1241 return false; // No gap to insert spill.
1242 }
1243 // Add spill. The store instruction kills the register if def is before
1244 // the barrier in the barrier block.
1245 SS = CreateSpillStackSlot(CurrLI->reg, RC);
1246 TII->storeRegToStackSlot(*DefMBB, SpillPt, CurrLI->reg,
1247 DefMBB == BarrierMBB, SS, RC);
1248 SpillMI = prior(SpillPt);
1249 LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001250 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001251 }
1252
Evan Cheng54898932008-10-29 08:39:34 +00001253 // Remember def instruction index to spill index mapping.
1254 if (DefMI && SpillMI)
1255 Def2SpillMap[ValNo->def] = SpillIndex;
1256
Evan Chengf5cd4f02008-10-23 20:43:13 +00001257 // Add restore.
Evan Chengf5cd4f02008-10-23 20:43:13 +00001258 TII->loadRegFromStackSlot(*BarrierMBB, RestorePt, CurrLI->reg, SS, RC);
1259 MachineInstr *LoadMI = prior(RestorePt);
1260 LIs->InsertMachineInstrInMaps(LoadMI, RestoreIndex);
1261
1262 // If live interval is spilled in the same block as the barrier, just
1263 // create a hole in the interval.
1264 if (!DefMBB ||
Evan Cheng78dfef72008-10-25 00:52:41 +00001265 (SpillMI && SpillMI->getParent() == BarrierMBB)) {
Evan Chengd0e32c52008-10-29 05:06:14 +00001266 // Update spill stack slot live interval.
1267 UpdateSpillSlotInterval(ValNo, LIs->getUseIndex(SpillIndex)+1,
1268 LIs->getDefIndex(RestoreIndex));
Evan Chengf5cd4f02008-10-23 20:43:13 +00001269
Evan Chengd0e32c52008-10-29 05:06:14 +00001270 UpdateRegisterInterval(ValNo, LIs->getUseIndex(SpillIndex)+1,
1271 LIs->getDefIndex(RestoreIndex));
Evan Chengf5cd4f02008-10-23 20:43:13 +00001272
Evan Chengae7fa5b2008-10-28 01:48:24 +00001273 ++NumSplits;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001274 return true;
1275 }
1276
Evan Chengd0e32c52008-10-29 05:06:14 +00001277 // Update spill stack slot live interval.
Evan Cheng54898932008-10-29 08:39:34 +00001278 UpdateSpillSlotInterval(ValNo, LIs->getUseIndex(SpillIndex)+1,
1279 LIs->getDefIndex(RestoreIndex));
Evan Chengd0e32c52008-10-29 05:06:14 +00001280
Owen Anderson6002e992008-12-04 21:20:30 +00001281 RepairLiveInterval(CurrLI, ValNo, DefMI, RestoreIndex);
Evan Chengf5cd4f02008-10-23 20:43:13 +00001282
Evan Chengae7fa5b2008-10-28 01:48:24 +00001283 ++NumSplits;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001284 return true;
1285}
1286
1287/// SplitRegLiveIntervals - Split all register live intervals that cross the
1288/// barrier that's being processed.
1289bool
1290PreAllocSplitting::SplitRegLiveIntervals(const TargetRegisterClass **RCs) {
1291 // First find all the virtual registers whose live intervals are intercepted
1292 // by the current barrier.
1293 SmallVector<LiveInterval*, 8> Intervals;
1294 for (const TargetRegisterClass **RC = RCs; *RC; ++RC) {
Evan Cheng23066282008-10-27 07:14:50 +00001295 if (TII->IgnoreRegisterClassBarriers(*RC))
1296 continue;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001297 std::vector<unsigned> &VRs = MRI->getRegClassVirtRegs(*RC);
1298 for (unsigned i = 0, e = VRs.size(); i != e; ++i) {
1299 unsigned Reg = VRs[i];
1300 if (!LIs->hasInterval(Reg))
1301 continue;
1302 LiveInterval *LI = &LIs->getInterval(Reg);
1303 if (LI->liveAt(BarrierIdx) && !Barrier->readsRegister(Reg))
1304 // Virtual register live interval is intercepted by the barrier. We
1305 // should split and shrink wrap its interval if possible.
1306 Intervals.push_back(LI);
1307 }
1308 }
1309
1310 // Process the affected live intervals.
1311 bool Change = false;
1312 while (!Intervals.empty()) {
Evan Chengae7fa5b2008-10-28 01:48:24 +00001313 if (PreSplitLimit != -1 && (int)NumSplits == PreSplitLimit)
1314 break;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001315 LiveInterval *LI = Intervals.back();
1316 Intervals.pop_back();
1317 Change |= SplitRegLiveInterval(LI);
1318 }
1319
1320 return Change;
1321}
1322
Owen Andersonf1f75b12008-11-04 22:22:41 +00001323bool PreAllocSplitting::createsNewJoin(LiveRange* LR,
1324 MachineBasicBlock* DefMBB,
1325 MachineBasicBlock* BarrierMBB) {
1326 if (DefMBB == BarrierMBB)
1327 return false;
1328
1329 if (LR->valno->hasPHIKill)
1330 return false;
1331
1332 unsigned MBBEnd = LIs->getMBBEndIdx(BarrierMBB);
1333 if (LR->end < MBBEnd)
1334 return false;
1335
1336 MachineLoopInfo& MLI = getAnalysis<MachineLoopInfo>();
1337 if (MLI.getLoopFor(DefMBB) != MLI.getLoopFor(BarrierMBB))
1338 return true;
1339
1340 MachineDominatorTree& MDT = getAnalysis<MachineDominatorTree>();
1341 SmallPtrSet<MachineBasicBlock*, 4> Visited;
1342 typedef std::pair<MachineBasicBlock*,
1343 MachineBasicBlock::succ_iterator> ItPair;
1344 SmallVector<ItPair, 4> Stack;
1345 Stack.push_back(std::make_pair(BarrierMBB, BarrierMBB->succ_begin()));
1346
1347 while (!Stack.empty()) {
1348 ItPair P = Stack.back();
1349 Stack.pop_back();
1350
1351 MachineBasicBlock* PredMBB = P.first;
1352 MachineBasicBlock::succ_iterator S = P.second;
1353
1354 if (S == PredMBB->succ_end())
1355 continue;
1356 else if (Visited.count(*S)) {
1357 Stack.push_back(std::make_pair(PredMBB, ++S));
1358 continue;
1359 } else
Owen Andersonb214c692008-11-05 00:32:13 +00001360 Stack.push_back(std::make_pair(PredMBB, S+1));
Owen Andersonf1f75b12008-11-04 22:22:41 +00001361
1362 MachineBasicBlock* MBB = *S;
1363 Visited.insert(MBB);
1364
1365 if (MBB == BarrierMBB)
1366 return true;
1367
1368 MachineDomTreeNode* DefMDTN = MDT.getNode(DefMBB);
1369 MachineDomTreeNode* BarrierMDTN = MDT.getNode(BarrierMBB);
1370 MachineDomTreeNode* MDTN = MDT.getNode(MBB)->getIDom();
1371 while (MDTN) {
1372 if (MDTN == DefMDTN)
1373 return true;
1374 else if (MDTN == BarrierMDTN)
1375 break;
1376 MDTN = MDTN->getIDom();
1377 }
1378
1379 MBBEnd = LIs->getMBBEndIdx(MBB);
1380 if (LR->end > MBBEnd)
1381 Stack.push_back(std::make_pair(MBB, MBB->succ_begin()));
1382 }
1383
1384 return false;
1385}
1386
1387
Evan Cheng09e8ca82008-10-20 21:44:59 +00001388bool PreAllocSplitting::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd0e32c52008-10-29 05:06:14 +00001389 CurrMF = &MF;
1390 TM = &MF.getTarget();
1391 TII = TM->getInstrInfo();
1392 MFI = MF.getFrameInfo();
1393 MRI = &MF.getRegInfo();
1394 LIs = &getAnalysis<LiveIntervals>();
1395 LSs = &getAnalysis<LiveStacks>();
Evan Chengf5cd4f02008-10-23 20:43:13 +00001396
1397 bool MadeChange = false;
1398
1399 // Make sure blocks are numbered in order.
1400 MF.RenumberBlocks();
1401
Evan Cheng54898932008-10-29 08:39:34 +00001402 MachineBasicBlock *Entry = MF.begin();
1403 SmallPtrSet<MachineBasicBlock*,16> Visited;
1404
1405 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
1406 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
1407 DFI != E; ++DFI) {
1408 BarrierMBB = *DFI;
1409 for (MachineBasicBlock::iterator I = BarrierMBB->begin(),
1410 E = BarrierMBB->end(); I != E; ++I) {
1411 Barrier = &*I;
1412 const TargetRegisterClass **BarrierRCs =
1413 Barrier->getDesc().getRegClassBarriers();
1414 if (!BarrierRCs)
1415 continue;
1416 BarrierIdx = LIs->getInstructionIndex(Barrier);
1417 MadeChange |= SplitRegLiveIntervals(BarrierRCs);
1418 }
1419 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001420
1421 return MadeChange;
Evan Cheng09e8ca82008-10-20 21:44:59 +00001422}