blob: 99fdb840cc74136e263a130c922bf3e8738314d6 [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);
Owen Anderson45e68552009-01-29 05:28:55 +000040static cl::opt<int> DeadSplitLimit("dead-split-limit", cl::init(-1), cl::Hidden);
Evan Chengae7fa5b2008-10-28 01:48:24 +000041
Owen Anderson45e68552009-01-29 05:28:55 +000042STATISTIC(NumSplits, "Number of intervals split");
Owen Anderson75fa96b2008-11-19 04:28:29 +000043STATISTIC(NumRemats, "Number of intervals split by rematerialization");
Owen Anderson7b9d67c2008-12-02 18:53:47 +000044STATISTIC(NumFolds, "Number of intervals split with spill folding");
Owen Anderson2ebf63f2008-12-18 01:27:19 +000045STATISTIC(NumRenumbers, "Number of intervals renumbered into new registers");
Owen Anderson956ec272009-01-23 00:23:32 +000046STATISTIC(NumDeadSpills, "Number of dead spills removed");
Evan Chengf5cd4f02008-10-23 20:43:13 +000047
Evan Cheng09e8ca82008-10-20 21:44:59 +000048namespace {
49 class VISIBILITY_HIDDEN PreAllocSplitting : public MachineFunctionPass {
Evan Chengd0e32c52008-10-29 05:06:14 +000050 MachineFunction *CurrMF;
Evan Chengf5cd4f02008-10-23 20:43:13 +000051 const TargetMachine *TM;
52 const TargetInstrInfo *TII;
Owen Anderson3ef45492009-01-29 22:13:06 +000053 const TargetRegisterInfo* TRI;
Evan Chengf5cd4f02008-10-23 20:43:13 +000054 MachineFrameInfo *MFI;
55 MachineRegisterInfo *MRI;
56 LiveIntervals *LIs;
Evan Chengd0e32c52008-10-29 05:06:14 +000057 LiveStacks *LSs;
Evan Cheng09e8ca82008-10-20 21:44:59 +000058
Evan Chengf5cd4f02008-10-23 20:43:13 +000059 // Barrier - Current barrier being processed.
60 MachineInstr *Barrier;
61
62 // BarrierMBB - Basic block where the barrier resides in.
63 MachineBasicBlock *BarrierMBB;
64
65 // Barrier - Current barrier index.
66 unsigned BarrierIdx;
67
68 // CurrLI - Current live interval being split.
69 LiveInterval *CurrLI;
70
Evan Chengd0e32c52008-10-29 05:06:14 +000071 // CurrSLI - Current stack slot live interval.
72 LiveInterval *CurrSLI;
73
74 // CurrSValNo - Current val# for the stack slot live interval.
75 VNInfo *CurrSValNo;
76
77 // IntervalSSMap - A map from live interval to spill slots.
78 DenseMap<unsigned, int> IntervalSSMap;
Evan Chengf5cd4f02008-10-23 20:43:13 +000079
Evan Cheng54898932008-10-29 08:39:34 +000080 // Def2SpillMap - A map from a def instruction index to spill index.
81 DenseMap<unsigned, unsigned> Def2SpillMap;
Evan Cheng06587492008-10-24 02:05:00 +000082
Evan Cheng09e8ca82008-10-20 21:44:59 +000083 public:
84 static char ID;
85 PreAllocSplitting() : MachineFunctionPass(&ID) {}
86
87 virtual bool runOnMachineFunction(MachineFunction &MF);
88
89 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
90 AU.addRequired<LiveIntervals>();
91 AU.addPreserved<LiveIntervals>();
Evan Chengd0e32c52008-10-29 05:06:14 +000092 AU.addRequired<LiveStacks>();
93 AU.addPreserved<LiveStacks>();
Evan Cheng09e8ca82008-10-20 21:44:59 +000094 AU.addPreserved<RegisterCoalescer>();
95 if (StrongPHIElim)
96 AU.addPreservedID(StrongPHIEliminationID);
97 else
98 AU.addPreservedID(PHIEliminationID);
Owen Andersonf1f75b12008-11-04 22:22:41 +000099 AU.addRequired<MachineDominatorTree>();
100 AU.addRequired<MachineLoopInfo>();
101 AU.addPreserved<MachineDominatorTree>();
102 AU.addPreserved<MachineLoopInfo>();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000103 MachineFunctionPass::getAnalysisUsage(AU);
104 }
105
106 virtual void releaseMemory() {
Evan Chengd0e32c52008-10-29 05:06:14 +0000107 IntervalSSMap.clear();
Evan Cheng54898932008-10-29 08:39:34 +0000108 Def2SpillMap.clear();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000109 }
110
111 virtual const char *getPassName() const {
112 return "Pre-Register Allocaton Live Interval Splitting";
113 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000114
115 /// print - Implement the dump method.
116 virtual void print(std::ostream &O, const Module* M = 0) const {
117 LIs->print(O, M);
118 }
119
120 void print(std::ostream *O, const Module* M = 0) const {
121 if (O) print(*O, M);
122 }
123
124 private:
125 MachineBasicBlock::iterator
126 findNextEmptySlot(MachineBasicBlock*, MachineInstr*,
127 unsigned&);
128
129 MachineBasicBlock::iterator
Evan Cheng1f08cc22008-10-28 05:28:21 +0000130 findSpillPoint(MachineBasicBlock*, MachineInstr*, MachineInstr*,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000131 SmallPtrSet<MachineInstr*, 4>&, unsigned&);
132
133 MachineBasicBlock::iterator
Evan Chengf62ce372008-10-28 00:47:49 +0000134 findRestorePoint(MachineBasicBlock*, MachineInstr*, unsigned,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000135 SmallPtrSet<MachineInstr*, 4>&, unsigned&);
136
Evan Chengd0e32c52008-10-29 05:06:14 +0000137 int CreateSpillStackSlot(unsigned, const TargetRegisterClass *);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000138
Evan Cheng54898932008-10-29 08:39:34 +0000139 bool IsAvailableInStack(MachineBasicBlock*, unsigned, unsigned, unsigned,
140 unsigned&, int&) const;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000141
Evan Chengd0e32c52008-10-29 05:06:14 +0000142 void UpdateSpillSlotInterval(VNInfo*, unsigned, unsigned);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000143
Evan Chengf5cd4f02008-10-23 20:43:13 +0000144 bool SplitRegLiveInterval(LiveInterval*);
145
Owen Anderson956ec272009-01-23 00:23:32 +0000146 bool SplitRegLiveIntervals(const TargetRegisterClass **,
147 SmallPtrSet<LiveInterval*, 8>&);
Owen Andersonf1f75b12008-11-04 22:22:41 +0000148
149 bool createsNewJoin(LiveRange* LR, MachineBasicBlock* DefMBB,
150 MachineBasicBlock* BarrierMBB);
Owen Anderson75fa96b2008-11-19 04:28:29 +0000151 bool Rematerialize(unsigned vreg, VNInfo* ValNo,
152 MachineInstr* DefMI,
153 MachineBasicBlock::iterator RestorePt,
154 unsigned RestoreIdx,
155 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000156 MachineInstr* FoldSpill(unsigned vreg, const TargetRegisterClass* RC,
157 MachineInstr* DefMI,
158 MachineInstr* Barrier,
159 MachineBasicBlock* MBB,
160 int& SS,
161 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000162 void RenumberValno(VNInfo* VN);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000163 void ReconstructLiveInterval(LiveInterval* LI);
Owen Anderson956ec272009-01-23 00:23:32 +0000164 bool removeDeadSpills(SmallPtrSet<LiveInterval*, 8>& split);
Owen Anderson45e68552009-01-29 05:28:55 +0000165 unsigned getNumberOfNonSpills(SmallPtrSet<MachineInstr*, 4>& MIs,
166 unsigned Reg, int FrameIndex, bool& TwoAddr);
Evan Cheng19a72582009-02-02 18:33:18 +0000167 VNInfo* PerformPHIConstruction(MachineBasicBlock::iterator Use,
168 MachineBasicBlock* MBB, LiveInterval* LI,
Owen Anderson200ee7f2009-01-06 07:53:32 +0000169 SmallPtrSet<MachineInstr*, 4>& Visited,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000170 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
171 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
172 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000173 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
174 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
Evan Cheng19a72582009-02-02 18:33:18 +0000175 bool IsTopLevel, bool IsIntraBlock);
176 VNInfo* PerformPHIConstructionFallBack(MachineBasicBlock::iterator Use,
177 MachineBasicBlock* MBB, LiveInterval* LI,
178 SmallPtrSet<MachineInstr*, 4>& Visited,
179 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
180 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
181 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
182 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
183 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
184 bool IsTopLevel, bool IsIntraBlock);
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;
Owen Anderson3ef45492009-01-29 22:13:06 +0000235
236 // We can't insert the spill between the barrier (a call), and its
237 // corresponding call frame setup.
238 } else if (prior(MII)->getOpcode() == TRI->getCallFrameSetupOpcode() &&
239 MII == MachineBasicBlock::iterator(MI))
240 break;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000241 } while (MII != EndPt);
242 } else {
243 MachineBasicBlock::iterator MII = MI;
Evan Cheng1f08cc22008-10-28 05:28:21 +0000244 MachineBasicBlock::iterator EndPt = DefMI
245 ? MachineBasicBlock::iterator(DefMI) : MBB->begin();
Owen Anderson3ef45492009-01-29 22:13:06 +0000246
247 // We can't insert the spill between the barrier (a call), and its
248 // corresponding call frame setup.
249 if (prior(MII)->getOpcode() == TRI->getCallFrameSetupOpcode()) --MII;
Evan Cheng1f08cc22008-10-28 05:28:21 +0000250 while (MII != EndPt && !RefsInMBB.count(MII)) {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000251 unsigned Index = LIs->getInstructionIndex(MII);
252 if (LIs->hasGapBeforeInstr(Index)) {
253 Pt = MII;
254 SpillIndex = LIs->findGapBeforeInstr(Index, true);
255 }
256 --MII;
257 }
258 }
259
260 return Pt;
261}
262
263/// findRestorePoint - Find a gap in the instruction index map that's suitable
264/// for restoring the current live interval value. The index must be before any
265/// uses of the live interval register in the mbb. Return end() if none is
266/// found.
267MachineBasicBlock::iterator
268PreAllocSplitting::findRestorePoint(MachineBasicBlock *MBB, MachineInstr *MI,
Evan Chengf62ce372008-10-28 00:47:49 +0000269 unsigned LastIdx,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000270 SmallPtrSet<MachineInstr*, 4> &RefsInMBB,
271 unsigned &RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000272 // FIXME: Allow spill to be inserted to the beginning of the mbb. Update mbb
273 // begin index accordingly.
Owen Anderson5a92d4e2008-11-18 20:53:59 +0000274 MachineBasicBlock::iterator Pt = MBB->end();
Evan Chengf62ce372008-10-28 00:47:49 +0000275 unsigned EndIdx = LIs->getMBBEndIdx(MBB);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000276
Evan Chengf62ce372008-10-28 00:47:49 +0000277 // Go bottom up if RefsInMBB is empty and the end of the mbb isn't beyond
278 // the last index in the live range.
279 if (RefsInMBB.empty() && LastIdx >= EndIdx) {
Owen Anderson711fd3d2008-11-13 21:53:14 +0000280 MachineBasicBlock::iterator MII = MBB->getFirstTerminator();
Evan Chengf5cd4f02008-10-23 20:43:13 +0000281 MachineBasicBlock::iterator EndPt = MI;
Evan Cheng54898932008-10-29 08:39:34 +0000282 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000283 do {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000284 unsigned Index = LIs->getInstructionIndex(MII);
Evan Cheng56ab0de2008-10-24 18:46:44 +0000285 unsigned Gap = LIs->findGapBeforeInstr(Index);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000286 if (Gap) {
287 Pt = MII;
288 RestoreIndex = Gap;
289 break;
Owen Anderson3ef45492009-01-29 22:13:06 +0000290
291 // We can't insert a restore between the barrier (a call) and its
292 // corresponding call frame teardown.
293 } else if (MII->getOpcode() == TRI->getCallFrameDestroyOpcode() &&
294 prior(MII) == MachineBasicBlock::iterator(MI))
295 break;
Evan Cheng54898932008-10-29 08:39:34 +0000296 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000297 } while (MII != EndPt);
298 } else {
299 MachineBasicBlock::iterator MII = MI;
300 MII = ++MII;
Owen Anderson3ef45492009-01-29 22:13:06 +0000301 // We can't insert a restore between the barrier (a call) and its
302 // corresponding call frame teardown.
303 if (MII->getOpcode() == TRI->getCallFrameDestroyOpcode())
304 ++MII;
305
Evan Chengf62ce372008-10-28 00:47:49 +0000306 // FIXME: Limit the number of instructions to examine to reduce
307 // compile time?
Owen Andersonc0f3a032009-01-29 08:22:06 +0000308 while (MII != MBB->getFirstTerminator()) {
Evan Chengf5cd4f02008-10-23 20:43:13 +0000309 unsigned Index = LIs->getInstructionIndex(MII);
Evan Chengf62ce372008-10-28 00:47:49 +0000310 if (Index > LastIdx)
311 break;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000312 unsigned Gap = LIs->findGapBeforeInstr(Index);
313 if (Gap) {
314 Pt = MII;
315 RestoreIndex = Gap;
316 }
317 if (RefsInMBB.count(MII))
318 break;
319 ++MII;
320 }
321 }
322
323 return Pt;
324}
325
Evan Chengd0e32c52008-10-29 05:06:14 +0000326/// CreateSpillStackSlot - Create a stack slot for the live interval being
327/// split. If the live interval was previously split, just reuse the same
328/// slot.
329int PreAllocSplitting::CreateSpillStackSlot(unsigned Reg,
330 const TargetRegisterClass *RC) {
331 int SS;
332 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
333 if (I != IntervalSSMap.end()) {
334 SS = I->second;
335 } else {
336 SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());
337 IntervalSSMap[Reg] = SS;
Evan Cheng06587492008-10-24 02:05:00 +0000338 }
Evan Chengd0e32c52008-10-29 05:06:14 +0000339
340 // Create live interval for stack slot.
341 CurrSLI = &LSs->getOrCreateInterval(SS);
Evan Cheng54898932008-10-29 08:39:34 +0000342 if (CurrSLI->hasAtLeastOneValue())
Evan Chengd0e32c52008-10-29 05:06:14 +0000343 CurrSValNo = CurrSLI->getValNumInfo(0);
344 else
345 CurrSValNo = CurrSLI->getNextValue(~0U, 0, LSs->getVNInfoAllocator());
346 return SS;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000347}
348
Evan Chengd0e32c52008-10-29 05:06:14 +0000349/// IsAvailableInStack - Return true if register is available in a split stack
350/// slot at the specified index.
351bool
Evan Cheng54898932008-10-29 08:39:34 +0000352PreAllocSplitting::IsAvailableInStack(MachineBasicBlock *DefMBB,
353 unsigned Reg, unsigned DefIndex,
354 unsigned RestoreIndex, unsigned &SpillIndex,
355 int& SS) const {
356 if (!DefMBB)
357 return false;
358
Evan Chengd0e32c52008-10-29 05:06:14 +0000359 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
360 if (I == IntervalSSMap.end())
Evan Chengf5cd4f02008-10-23 20:43:13 +0000361 return false;
Evan Cheng54898932008-10-29 08:39:34 +0000362 DenseMap<unsigned, unsigned>::iterator II = Def2SpillMap.find(DefIndex);
363 if (II == Def2SpillMap.end())
364 return false;
365
366 // If last spill of def is in the same mbb as barrier mbb (where restore will
367 // be), make sure it's not below the intended restore index.
368 // FIXME: Undo the previous spill?
369 assert(LIs->getMBBFromIndex(II->second) == DefMBB);
370 if (DefMBB == BarrierMBB && II->second >= RestoreIndex)
371 return false;
372
373 SS = I->second;
374 SpillIndex = II->second;
375 return true;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000376}
377
Evan Chengd0e32c52008-10-29 05:06:14 +0000378/// UpdateSpillSlotInterval - Given the specified val# of the register live
379/// interval being split, and the spill and restore indicies, update the live
380/// interval of the spill stack slot.
381void
382PreAllocSplitting::UpdateSpillSlotInterval(VNInfo *ValNo, unsigned SpillIndex,
383 unsigned RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000384 assert(LIs->getMBBFromIndex(RestoreIndex) == BarrierMBB &&
385 "Expect restore in the barrier mbb");
386
387 MachineBasicBlock *MBB = LIs->getMBBFromIndex(SpillIndex);
388 if (MBB == BarrierMBB) {
389 // Intra-block spill + restore. We are done.
Evan Chengd0e32c52008-10-29 05:06:14 +0000390 LiveRange SLR(SpillIndex, RestoreIndex, CurrSValNo);
391 CurrSLI->addRange(SLR);
392 return;
393 }
394
Evan Cheng54898932008-10-29 08:39:34 +0000395 SmallPtrSet<MachineBasicBlock*, 4> Processed;
396 unsigned EndIdx = LIs->getMBBEndIdx(MBB);
397 LiveRange SLR(SpillIndex, EndIdx+1, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000398 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000399 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000400
401 // Start from the spill mbb, figure out the extend of the spill slot's
402 // live interval.
403 SmallVector<MachineBasicBlock*, 4> WorkList;
Evan Cheng54898932008-10-29 08:39:34 +0000404 const LiveRange *LR = CurrLI->getLiveRangeContaining(SpillIndex);
405 if (LR->end > EndIdx)
Evan Chengd0e32c52008-10-29 05:06:14 +0000406 // If live range extend beyond end of mbb, add successors to work list.
407 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
408 SE = MBB->succ_end(); SI != SE; ++SI)
409 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000410
411 while (!WorkList.empty()) {
412 MachineBasicBlock *MBB = WorkList.back();
413 WorkList.pop_back();
Evan Cheng54898932008-10-29 08:39:34 +0000414 if (Processed.count(MBB))
415 continue;
Evan Chengd0e32c52008-10-29 05:06:14 +0000416 unsigned Idx = LIs->getMBBStartIdx(MBB);
417 LR = CurrLI->getLiveRangeContaining(Idx);
Evan Cheng54898932008-10-29 08:39:34 +0000418 if (LR && LR->valno == ValNo) {
419 EndIdx = LIs->getMBBEndIdx(MBB);
420 if (Idx <= RestoreIndex && RestoreIndex < EndIdx) {
Evan Chengd0e32c52008-10-29 05:06:14 +0000421 // Spill slot live interval stops at the restore.
Evan Cheng54898932008-10-29 08:39:34 +0000422 LiveRange SLR(Idx, RestoreIndex, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000423 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000424 } else if (LR->end > EndIdx) {
425 // Live range extends beyond end of mbb, process successors.
426 LiveRange SLR(Idx, EndIdx+1, CurrSValNo);
427 CurrSLI->addRange(SLR);
428 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
429 SE = MBB->succ_end(); SI != SE; ++SI)
430 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000431 } else {
Evan Cheng54898932008-10-29 08:39:34 +0000432 LiveRange SLR(Idx, LR->end, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000433 CurrSLI->addRange(SLR);
Evan Chengd0e32c52008-10-29 05:06:14 +0000434 }
Evan Cheng54898932008-10-29 08:39:34 +0000435 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000436 }
437 }
438}
439
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000440/// PerformPHIConstruction - From properly set up use and def lists, use a PHI
441/// construction algorithm to compute the ranges and valnos for an interval.
Evan Cheng19a72582009-02-02 18:33:18 +0000442VNInfo*
443PreAllocSplitting::PerformPHIConstruction(MachineBasicBlock::iterator UseI,
444 MachineBasicBlock* MBB, LiveInterval* LI,
Owen Anderson200ee7f2009-01-06 07:53:32 +0000445 SmallPtrSet<MachineInstr*, 4>& Visited,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000446 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
447 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
448 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000449 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
450 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
Evan Cheng19a72582009-02-02 18:33:18 +0000451 bool IsTopLevel, bool IsIntraBlock) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000452 // Return memoized result if it's available.
Evan Cheng19a72582009-02-02 18:33:18 +0000453 if (IsTopLevel && Visited.count(UseI) && NewVNs.count(UseI))
454 return NewVNs[UseI];
455 else if (!IsTopLevel && IsIntraBlock && NewVNs.count(UseI))
456 return NewVNs[UseI];
457 else if (!IsIntraBlock && LiveOut.count(MBB))
Owen Anderson7d211e22008-12-31 02:00:25 +0000458 return LiveOut[MBB];
459
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000460 // Check if our block contains any uses or defs.
Owen Anderson7d211e22008-12-31 02:00:25 +0000461 bool ContainsDefs = Defs.count(MBB);
462 bool ContainsUses = Uses.count(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000463
Evan Cheng19a72582009-02-02 18:33:18 +0000464 VNInfo* RetVNI = 0;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000465
466 // Enumerate the cases of use/def contaning blocks.
467 if (!ContainsDefs && !ContainsUses) {
Evan Cheng19a72582009-02-02 18:33:18 +0000468 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs, Uses,
469 NewVNs, LiveOut, Phis,
470 IsTopLevel, IsIntraBlock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000471 } else if (ContainsDefs && !ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000472 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000473
474 // Search for the def in this block. If we don't find it before the
475 // instruction we care about, go to the fallback case. Note that that
Owen Anderson7d211e22008-12-31 02:00:25 +0000476 // should never happen: this cannot be intrablock, so use should
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000477 // always be an end() iterator.
Evan Cheng19a72582009-02-02 18:33:18 +0000478 assert(UseI == MBB->end() && "No use marked in intrablock");
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000479
Evan Cheng19a72582009-02-02 18:33:18 +0000480 MachineBasicBlock::iterator Walker = UseI;
481 --Walker;
482 while (Walker != MBB->begin()) {
483 if (BlockDefs.count(Walker))
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000484 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000485 --Walker;
486 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000487
488 // Once we've found it, extend its VNInfo to our instruction.
Evan Cheng19a72582009-02-02 18:33:18 +0000489 unsigned DefIndex = LIs->getInstructionIndex(Walker);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000490 DefIndex = LiveIntervals::getDefIndex(DefIndex);
Owen Anderson7d211e22008-12-31 02:00:25 +0000491 unsigned EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000492
Evan Cheng19a72582009-02-02 18:33:18 +0000493 RetVNI = NewVNs[Walker];
494 LI->addRange(LiveRange(DefIndex, EndIndex+1, RetVNI));
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000495 } else if (!ContainsDefs && ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000496 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000497
498 // Search for the use in this block that precedes the instruction we care
Evan Cheng19a72582009-02-02 18:33:18 +0000499 // about, going to the fallback case if we don't find it.
500 if (UseI == MBB->begin())
501 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
502 Uses, NewVNs, LiveOut, Phis,
503 IsTopLevel, IsIntraBlock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000504
Evan Cheng19a72582009-02-02 18:33:18 +0000505 MachineBasicBlock::iterator Walker = UseI;
506 --Walker;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000507 bool found = false;
Evan Cheng19a72582009-02-02 18:33:18 +0000508 while (Walker != MBB->begin()) {
509 if (BlockUses.count(Walker)) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000510 found = true;
511 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000512 }
513 --Walker;
514 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000515
516 // Must check begin() too.
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000517 if (!found) {
Evan Cheng19a72582009-02-02 18:33:18 +0000518 if (BlockUses.count(Walker))
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000519 found = true;
520 else
Evan Cheng19a72582009-02-02 18:33:18 +0000521 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
522 Uses, NewVNs, LiveOut, Phis,
523 IsTopLevel, IsIntraBlock);
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000524 }
525
Evan Cheng19a72582009-02-02 18:33:18 +0000526 unsigned UseIndex = LIs->getInstructionIndex(Walker);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000527 UseIndex = LiveIntervals::getUseIndex(UseIndex);
528 unsigned EndIndex = 0;
Evan Cheng19a72582009-02-02 18:33:18 +0000529 if (IsIntraBlock) {
530 EndIndex = LIs->getInstructionIndex(UseI);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000531 EndIndex = LiveIntervals::getUseIndex(EndIndex);
532 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000533 EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000534
535 // Now, recursively phi construct the VNInfo for the use we found,
536 // and then extend it to include the instruction we care about
Evan Cheng19a72582009-02-02 18:33:18 +0000537 RetVNI = PerformPHIConstruction(Walker, MBB, LI, Visited, Defs, Uses,
538 NewVNs, LiveOut, Phis, false, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000539
Evan Cheng19a72582009-02-02 18:33:18 +0000540 LI->addRange(LiveRange(UseIndex, EndIndex+1, RetVNI));
Owen Andersonb4b84362009-01-26 21:57:31 +0000541
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000542 // FIXME: Need to set kills properly for inter-block stuff.
Evan Cheng19a72582009-02-02 18:33:18 +0000543 if (LI->isKill(RetVNI, UseIndex)) LI->removeKill(RetVNI, UseIndex);
544 if (IsIntraBlock)
545 LI->addKill(RetVNI, EndIndex);
546 } else if (ContainsDefs && ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000547 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
548 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000549
550 // This case is basically a merging of the two preceding case, with the
551 // special note that checking for defs must take precedence over checking
552 // for uses, because of two-address instructions.
553
Evan Cheng19a72582009-02-02 18:33:18 +0000554 if (UseI == MBB->begin())
555 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs, Uses,
556 NewVNs, LiveOut, Phis,
557 IsTopLevel, IsIntraBlock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000558
Evan Cheng19a72582009-02-02 18:33:18 +0000559 MachineBasicBlock::iterator Walker = UseI;
560 --Walker;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000561 bool foundDef = false;
562 bool foundUse = false;
Evan Cheng19a72582009-02-02 18:33:18 +0000563 while (Walker != MBB->begin()) {
564 if (BlockDefs.count(Walker)) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000565 foundDef = true;
566 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000567 } else if (BlockUses.count(Walker)) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000568 foundUse = true;
569 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000570 }
571 --Walker;
572 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000573
574 // Must check begin() too.
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000575 if (!foundDef && !foundUse) {
Evan Cheng19a72582009-02-02 18:33:18 +0000576 if (BlockDefs.count(Walker))
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000577 foundDef = true;
Evan Cheng19a72582009-02-02 18:33:18 +0000578 else if (BlockUses.count(Walker))
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000579 foundUse = true;
580 else
Evan Cheng19a72582009-02-02 18:33:18 +0000581 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
582 Uses, NewVNs, LiveOut, Phis,
583 IsTopLevel, IsIntraBlock);
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000584 }
585
Evan Cheng19a72582009-02-02 18:33:18 +0000586 unsigned StartIndex = LIs->getInstructionIndex(Walker);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000587 StartIndex = foundDef ? LiveIntervals::getDefIndex(StartIndex) :
588 LiveIntervals::getUseIndex(StartIndex);
589 unsigned EndIndex = 0;
Evan Cheng19a72582009-02-02 18:33:18 +0000590 if (IsIntraBlock) {
591 EndIndex = LIs->getInstructionIndex(UseI);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000592 EndIndex = LiveIntervals::getUseIndex(EndIndex);
593 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000594 EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000595
596 if (foundDef)
Evan Cheng19a72582009-02-02 18:33:18 +0000597 RetVNI = NewVNs[Walker];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000598 else
Evan Cheng19a72582009-02-02 18:33:18 +0000599 RetVNI = PerformPHIConstruction(Walker, MBB, LI, Visited, Defs, Uses,
600 NewVNs, LiveOut, Phis, false, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000601
Evan Cheng19a72582009-02-02 18:33:18 +0000602 LI->addRange(LiveRange(StartIndex, EndIndex+1, RetVNI));
Owen Andersonb4b84362009-01-26 21:57:31 +0000603
Evan Cheng19a72582009-02-02 18:33:18 +0000604 if (foundUse && LI->isKill(RetVNI, StartIndex))
605 LI->removeKill(RetVNI, StartIndex);
606 if (IsIntraBlock) {
607 LI->addKill(RetVNI, EndIndex);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000608 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000609 }
610
611 // Memoize results so we don't have to recompute them.
Evan Cheng19a72582009-02-02 18:33:18 +0000612 if (!IsIntraBlock) LiveOut[MBB] = RetVNI;
Owen Anderson200ee7f2009-01-06 07:53:32 +0000613 else {
Evan Cheng19a72582009-02-02 18:33:18 +0000614 if (!NewVNs.count(UseI))
615 NewVNs[UseI] = RetVNI;
616 Visited.insert(UseI);
Owen Anderson200ee7f2009-01-06 07:53:32 +0000617 }
618
Evan Cheng19a72582009-02-02 18:33:18 +0000619 return RetVNI;
620}
621
622/// PerformPHIConstructionFallBack - PerformPHIConstruction fall back path.
623///
624VNInfo*
625PreAllocSplitting::PerformPHIConstructionFallBack(MachineBasicBlock::iterator UseI,
626 MachineBasicBlock* MBB, LiveInterval* LI,
627 SmallPtrSet<MachineInstr*, 4>& Visited,
628 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
629 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
630 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
631 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
632 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
633 bool IsTopLevel, bool IsIntraBlock) {
634 // NOTE: Because this is the fallback case from other cases, we do NOT
635 // assume that we are not intrablock here.
636 if (Phis.count(MBB)) return Phis[MBB];
637
638 unsigned StartIndex = LIs->getMBBStartIdx(MBB);
639 VNInfo *RetVNI = Phis[MBB] = LI->getNextValue(~0U, /*FIXME*/ 0,
640 LIs->getVNInfoAllocator());
641 if (!IsIntraBlock) LiveOut[MBB] = RetVNI;
642
643 // If there are no uses or defs between our starting point and the
644 // beginning of the block, then recursive perform phi construction
645 // on our predecessors.
646 DenseMap<MachineBasicBlock*, VNInfo*> IncomingVNs;
647 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
648 PE = MBB->pred_end(); PI != PE; ++PI) {
649 VNInfo* Incoming = PerformPHIConstruction((*PI)->end(), *PI, LI,
650 Visited, Defs, Uses, NewVNs,
651 LiveOut, Phis, false, false);
652 if (Incoming != 0)
653 IncomingVNs[*PI] = Incoming;
654 }
655
656 if (MBB->pred_size() == 1 && !RetVNI->hasPHIKill) {
Owen Anderson5b93f6f2009-02-02 22:42:01 +0000657 VNInfo* OldVN = RetVNI;
658 VNInfo* NewVN = IncomingVNs.begin()->second;
659 VNInfo* MergedVN = LI->MergeValueNumberInto(OldVN, NewVN);
660 if (MergedVN == OldVN) std::swap(OldVN, NewVN);
661
662 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator LOI = LiveOut.begin(),
663 LOE = LiveOut.end(); LOI != LOE; ++LOI)
664 if (LOI->second == OldVN)
665 LOI->second = MergedVN;
666 for (DenseMap<MachineInstr*, VNInfo*>::iterator NVI = NewVNs.begin(),
667 NVE = NewVNs.end(); NVI != NVE; ++NVI)
668 if (NVI->second == OldVN)
669 NVI->second = MergedVN;
670 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator PI = Phis.begin(),
671 PE = Phis.end(); PI != PE; ++PI)
672 if (PI->second == OldVN)
673 PI->second = MergedVN;
674 RetVNI = MergedVN;
Evan Cheng19a72582009-02-02 18:33:18 +0000675 } else {
676 // Otherwise, merge the incoming VNInfos with a phi join. Create a new
677 // VNInfo to represent the joined value.
678 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator I =
679 IncomingVNs.begin(), E = IncomingVNs.end(); I != E; ++I) {
680 I->second->hasPHIKill = true;
681 unsigned KillIndex = LIs->getMBBEndIdx(I->first);
682 if (!LiveInterval::isKill(I->second, KillIndex))
683 LI->addKill(I->second, KillIndex);
684 }
685 }
686
687 unsigned EndIndex = 0;
688 if (IsIntraBlock) {
689 EndIndex = LIs->getInstructionIndex(UseI);
690 EndIndex = LiveIntervals::getUseIndex(EndIndex);
691 } else
692 EndIndex = LIs->getMBBEndIdx(MBB);
693 LI->addRange(LiveRange(StartIndex, EndIndex+1, RetVNI));
694 if (IsIntraBlock)
695 LI->addKill(RetVNI, EndIndex);
696
697 // Memoize results so we don't have to recompute them.
698 if (!IsIntraBlock)
699 LiveOut[MBB] = RetVNI;
700 else {
701 if (!NewVNs.count(UseI))
702 NewVNs[UseI] = RetVNI;
703 Visited.insert(UseI);
704 }
705
706 return RetVNI;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000707}
708
709/// ReconstructLiveInterval - Recompute a live interval from scratch.
710void PreAllocSplitting::ReconstructLiveInterval(LiveInterval* LI) {
711 BumpPtrAllocator& Alloc = LIs->getVNInfoAllocator();
712
713 // Clear the old ranges and valnos;
714 LI->clear();
715
716 // Cache the uses and defs of the register
717 typedef DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> > RegMap;
718 RegMap Defs, Uses;
719
720 // Keep track of the new VNs we're creating.
721 DenseMap<MachineInstr*, VNInfo*> NewVNs;
722 SmallPtrSet<VNInfo*, 2> PhiVNs;
723
724 // Cache defs, and create a new VNInfo for each def.
725 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
726 DE = MRI->def_end(); DI != DE; ++DI) {
727 Defs[(*DI).getParent()].insert(&*DI);
728
729 unsigned DefIdx = LIs->getInstructionIndex(&*DI);
730 DefIdx = LiveIntervals::getDefIndex(DefIdx);
731
Owen Anderson200ee7f2009-01-06 07:53:32 +0000732 VNInfo* NewVN = LI->getNextValue(DefIdx, 0, Alloc);
733
734 // If the def is a move, set the copy field.
Evan Cheng04ee5a12009-01-20 19:12:24 +0000735 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
736 if (TII->isMoveInstr(*DI, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
737 if (DstReg == LI->reg)
Owen Anderson200ee7f2009-01-06 07:53:32 +0000738 NewVN->copy = &*DI;
739
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000740 NewVNs[&*DI] = NewVN;
741 }
742
743 // Cache uses as a separate pass from actually processing them.
744 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
745 UE = MRI->use_end(); UI != UE; ++UI)
746 Uses[(*UI).getParent()].insert(&*UI);
747
748 // Now, actually process every use and use a phi construction algorithm
749 // to walk from it to its reaching definitions, building VNInfos along
750 // the way.
Owen Anderson7d211e22008-12-31 02:00:25 +0000751 DenseMap<MachineBasicBlock*, VNInfo*> LiveOut;
752 DenseMap<MachineBasicBlock*, VNInfo*> Phis;
Owen Anderson200ee7f2009-01-06 07:53:32 +0000753 SmallPtrSet<MachineInstr*, 4> Visited;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000754 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
755 UE = MRI->use_end(); UI != UE; ++UI) {
Owen Anderson200ee7f2009-01-06 07:53:32 +0000756 PerformPHIConstruction(&*UI, UI->getParent(), LI, Visited, Defs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000757 Uses, NewVNs, LiveOut, Phis, true, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000758 }
Owen Andersond4f6fe52008-12-28 23:35:13 +0000759
760 // Add ranges for dead defs
761 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
762 DE = MRI->def_end(); DI != DE; ++DI) {
763 unsigned DefIdx = LIs->getInstructionIndex(&*DI);
764 DefIdx = LiveIntervals::getDefIndex(DefIdx);
Owen Andersond4f6fe52008-12-28 23:35:13 +0000765
766 if (LI->liveAt(DefIdx)) continue;
767
768 VNInfo* DeadVN = NewVNs[&*DI];
Owen Anderson7d211e22008-12-31 02:00:25 +0000769 LI->addRange(LiveRange(DefIdx, DefIdx+1, DeadVN));
Owen Andersond4f6fe52008-12-28 23:35:13 +0000770 LI->addKill(DeadVN, DefIdx);
771 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000772}
773
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000774/// RenumberValno - Split the given valno out into a new vreg, allowing it to
775/// be allocated to a different register. This function creates a new vreg,
776/// copies the valno and its live ranges over to the new vreg's interval,
777/// removes them from the old interval, and rewrites all uses and defs of
778/// the original reg to the new vreg within those ranges.
779void PreAllocSplitting::RenumberValno(VNInfo* VN) {
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000780 SmallVector<VNInfo*, 4> Stack;
781 SmallVector<VNInfo*, 4> VNsToCopy;
782 Stack.push_back(VN);
783
784 // Walk through and copy the valno we care about, and any other valnos
785 // that are two-address redefinitions of the one we care about. These
786 // will need to be rewritten as well. We also check for safety of the
787 // renumbering here, by making sure that none of the valno involved has
788 // phi kills.
789 while (!Stack.empty()) {
790 VNInfo* OldVN = Stack.back();
791 Stack.pop_back();
792
793 // Bail out if we ever encounter a valno that has a PHI kill. We can't
794 // renumber these.
795 if (OldVN->hasPHIKill) return;
796
797 VNsToCopy.push_back(OldVN);
798
799 // Locate two-address redefinitions
800 for (SmallVector<unsigned, 4>::iterator KI = OldVN->kills.begin(),
801 KE = OldVN->kills.end(); KI != KE; ++KI) {
802 MachineInstr* MI = LIs->getInstructionFromIndex(*KI);
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000803 unsigned DefIdx = MI->findRegisterDefOperandIdx(CurrLI->reg);
804 if (DefIdx == ~0U) continue;
805 if (MI->isRegReDefinedByTwoAddr(DefIdx)) {
806 VNInfo* NextVN =
807 CurrLI->findDefinedVNInfo(LiveIntervals::getDefIndex(*KI));
Owen Andersonb4b84362009-01-26 21:57:31 +0000808 if (NextVN == OldVN) continue;
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000809 Stack.push_back(NextVN);
810 }
811 }
812 }
813
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000814 // Create the new vreg
815 unsigned NewVReg = MRI->createVirtualRegister(MRI->getRegClass(CurrLI->reg));
816
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000817 // Create the new live interval
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000818 LiveInterval& NewLI = LIs->getOrCreateInterval(NewVReg);
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000819
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000820 for (SmallVector<VNInfo*, 4>::iterator OI = VNsToCopy.begin(), OE =
821 VNsToCopy.end(); OI != OE; ++OI) {
822 VNInfo* OldVN = *OI;
823
824 // Copy the valno over
825 VNInfo* NewVN = NewLI.getNextValue(OldVN->def, OldVN->copy,
826 LIs->getVNInfoAllocator());
827 NewLI.copyValNumInfo(NewVN, OldVN);
828 NewLI.MergeValueInAsValue(*CurrLI, OldVN, NewVN);
829
830 // Remove the valno from the old interval
831 CurrLI->removeValNo(OldVN);
832 }
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000833
834 // Rewrite defs and uses. This is done in two stages to avoid invalidating
835 // the reg_iterator.
836 SmallVector<std::pair<MachineInstr*, unsigned>, 8> OpsToChange;
837
838 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
839 E = MRI->reg_end(); I != E; ++I) {
840 MachineOperand& MO = I.getOperand();
841 unsigned InstrIdx = LIs->getInstructionIndex(&*I);
842
843 if ((MO.isUse() && NewLI.liveAt(LiveIntervals::getUseIndex(InstrIdx))) ||
844 (MO.isDef() && NewLI.liveAt(LiveIntervals::getDefIndex(InstrIdx))))
845 OpsToChange.push_back(std::make_pair(&*I, I.getOperandNo()));
846 }
847
848 for (SmallVector<std::pair<MachineInstr*, unsigned>, 8>::iterator I =
849 OpsToChange.begin(), E = OpsToChange.end(); I != E; ++I) {
850 MachineInstr* Inst = I->first;
851 unsigned OpIdx = I->second;
852 MachineOperand& MO = Inst->getOperand(OpIdx);
853 MO.setReg(NewVReg);
854 }
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000855
Owen Anderson45e68552009-01-29 05:28:55 +0000856 // The renumbered vreg shares a stack slot with the old register.
857 if (IntervalSSMap.count(CurrLI->reg))
858 IntervalSSMap[NewVReg] = IntervalSSMap[CurrLI->reg];
859
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000860 NumRenumbers++;
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000861}
862
Owen Anderson6002e992008-12-04 21:20:30 +0000863bool PreAllocSplitting::Rematerialize(unsigned vreg, VNInfo* ValNo,
864 MachineInstr* DefMI,
865 MachineBasicBlock::iterator RestorePt,
866 unsigned RestoreIdx,
867 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
868 MachineBasicBlock& MBB = *RestorePt->getParent();
869
870 MachineBasicBlock::iterator KillPt = BarrierMBB->end();
871 unsigned KillIdx = 0;
872 if (ValNo->def == ~0U || DefMI->getParent() == BarrierMBB)
873 KillPt = findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, KillIdx);
874 else
875 KillPt = findNextEmptySlot(DefMI->getParent(), DefMI, KillIdx);
876
877 if (KillPt == DefMI->getParent()->end())
878 return false;
879
880 TII->reMaterialize(MBB, RestorePt, vreg, DefMI);
881 LIs->InsertMachineInstrInMaps(prior(RestorePt), RestoreIdx);
882
Owen Andersonb4b84362009-01-26 21:57:31 +0000883 ReconstructLiveInterval(CurrLI);
884 unsigned RematIdx = LIs->getInstructionIndex(prior(RestorePt));
885 RematIdx = LiveIntervals::getDefIndex(RematIdx);
886 RenumberValno(CurrLI->findDefinedVNInfo(RematIdx));
Owen Andersone1762c92009-01-12 03:10:40 +0000887
Owen Anderson75fa96b2008-11-19 04:28:29 +0000888 ++NumSplits;
889 ++NumRemats;
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000890 return true;
891}
892
893MachineInstr* PreAllocSplitting::FoldSpill(unsigned vreg,
894 const TargetRegisterClass* RC,
895 MachineInstr* DefMI,
896 MachineInstr* Barrier,
897 MachineBasicBlock* MBB,
898 int& SS,
899 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
900 MachineBasicBlock::iterator Pt = MBB->begin();
901
902 // Go top down if RefsInMBB is empty.
903 if (RefsInMBB.empty())
904 return 0;
Owen Anderson75fa96b2008-11-19 04:28:29 +0000905
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000906 MachineBasicBlock::iterator FoldPt = Barrier;
907 while (&*FoldPt != DefMI && FoldPt != MBB->begin() &&
908 !RefsInMBB.count(FoldPt))
909 --FoldPt;
910
911 int OpIdx = FoldPt->findRegisterDefOperandIdx(vreg, false);
912 if (OpIdx == -1)
913 return 0;
914
915 SmallVector<unsigned, 1> Ops;
916 Ops.push_back(OpIdx);
917
918 if (!TII->canFoldMemoryOperand(FoldPt, Ops))
919 return 0;
920
921 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(vreg);
922 if (I != IntervalSSMap.end()) {
923 SS = I->second;
924 } else {
925 SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());
926
927 }
928
929 MachineInstr* FMI = TII->foldMemoryOperand(*MBB->getParent(),
930 FoldPt, Ops, SS);
931
932 if (FMI) {
933 LIs->ReplaceMachineInstrInMaps(FoldPt, FMI);
934 FMI = MBB->insert(MBB->erase(FoldPt), FMI);
935 ++NumFolds;
936
937 IntervalSSMap[vreg] = SS;
938 CurrSLI = &LSs->getOrCreateInterval(SS);
939 if (CurrSLI->hasAtLeastOneValue())
940 CurrSValNo = CurrSLI->getValNumInfo(0);
941 else
942 CurrSValNo = CurrSLI->getNextValue(~0U, 0, LSs->getVNInfoAllocator());
943 }
944
945 return FMI;
Owen Anderson75fa96b2008-11-19 04:28:29 +0000946}
947
Evan Chengf5cd4f02008-10-23 20:43:13 +0000948/// SplitRegLiveInterval - Split (spill and restore) the given live interval
949/// so it would not cross the barrier that's being processed. Shrink wrap
950/// (minimize) the live interval to the last uses.
951bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) {
952 CurrLI = LI;
953
954 // Find live range where current interval cross the barrier.
955 LiveInterval::iterator LR =
956 CurrLI->FindLiveRangeContaining(LIs->getUseIndex(BarrierIdx));
957 VNInfo *ValNo = LR->valno;
958
959 if (ValNo->def == ~1U) {
960 // Defined by a dead def? How can this be?
961 assert(0 && "Val# is defined by a dead def?");
962 abort();
963 }
964
Evan Cheng06587492008-10-24 02:05:00 +0000965 MachineInstr *DefMI = (ValNo->def != ~0U)
966 ? LIs->getInstructionFromIndex(ValNo->def) : NULL;
Evan Cheng06587492008-10-24 02:05:00 +0000967
Owen Andersond3be4622009-01-21 08:18:03 +0000968 // If this would create a new join point, do not split.
969 if (DefMI && createsNewJoin(LR, DefMI->getParent(), Barrier->getParent()))
970 return false;
971
Evan Chengf5cd4f02008-10-23 20:43:13 +0000972 // Find all references in the barrier mbb.
973 SmallPtrSet<MachineInstr*, 4> RefsInMBB;
974 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
975 E = MRI->reg_end(); I != E; ++I) {
976 MachineInstr *RefMI = &*I;
977 if (RefMI->getParent() == BarrierMBB)
978 RefsInMBB.insert(RefMI);
979 }
980
981 // Find a point to restore the value after the barrier.
Evan Chengb964f332009-01-26 18:33:51 +0000982 unsigned RestoreIndex = 0;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000983 MachineBasicBlock::iterator RestorePt =
Evan Chengf62ce372008-10-28 00:47:49 +0000984 findRestorePoint(BarrierMBB, Barrier, LR->end, RefsInMBB, RestoreIndex);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000985 if (RestorePt == BarrierMBB->end())
986 return false;
987
Owen Anderson75fa96b2008-11-19 04:28:29 +0000988 if (DefMI && LIs->isReMaterializable(*LI, ValNo, DefMI))
989 if (Rematerialize(LI->reg, ValNo, DefMI, RestorePt,
990 RestoreIndex, RefsInMBB))
991 return true;
992
Evan Chengf5cd4f02008-10-23 20:43:13 +0000993 // Add a spill either before the barrier or after the definition.
Evan Cheng06587492008-10-24 02:05:00 +0000994 MachineBasicBlock *DefMBB = DefMI ? DefMI->getParent() : NULL;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000995 const TargetRegisterClass *RC = MRI->getRegClass(CurrLI->reg);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000996 unsigned SpillIndex = 0;
Evan Cheng06587492008-10-24 02:05:00 +0000997 MachineInstr *SpillMI = NULL;
Evan Cheng985921e2008-10-27 23:29:28 +0000998 int SS = -1;
Evan Cheng78dfef72008-10-25 00:52:41 +0000999 if (ValNo->def == ~0U) {
Evan Chengf5cd4f02008-10-23 20:43:13 +00001000 // If it's defined by a phi, we must split just before the barrier.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001001 if ((SpillMI = FoldSpill(LI->reg, RC, 0, Barrier,
1002 BarrierMBB, SS, RefsInMBB))) {
1003 SpillIndex = LIs->getInstructionIndex(SpillMI);
1004 } else {
1005 MachineBasicBlock::iterator SpillPt =
1006 findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, SpillIndex);
1007 if (SpillPt == BarrierMBB->begin())
1008 return false; // No gap to insert spill.
1009 // Add spill.
1010
1011 SS = CreateSpillStackSlot(CurrLI->reg, RC);
1012 TII->storeRegToStackSlot(*BarrierMBB, SpillPt, CurrLI->reg, true, SS, RC);
1013 SpillMI = prior(SpillPt);
1014 LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
1015 }
Evan Cheng54898932008-10-29 08:39:34 +00001016 } else if (!IsAvailableInStack(DefMBB, CurrLI->reg, ValNo->def,
1017 RestoreIndex, SpillIndex, SS)) {
Evan Cheng78dfef72008-10-25 00:52:41 +00001018 // If it's already split, just restore the value. There is no need to spill
1019 // the def again.
Evan Chengd0e32c52008-10-29 05:06:14 +00001020 if (!DefMI)
1021 return false; // Def is dead. Do nothing.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001022
1023 if ((SpillMI = FoldSpill(LI->reg, RC, DefMI, Barrier,
1024 BarrierMBB, SS, RefsInMBB))) {
1025 SpillIndex = LIs->getInstructionIndex(SpillMI);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001026 } else {
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001027 // Check if it's possible to insert a spill after the def MI.
1028 MachineBasicBlock::iterator SpillPt;
1029 if (DefMBB == BarrierMBB) {
1030 // Add spill after the def and the last use before the barrier.
1031 SpillPt = findSpillPoint(BarrierMBB, Barrier, DefMI,
1032 RefsInMBB, SpillIndex);
1033 if (SpillPt == DefMBB->begin())
1034 return false; // No gap to insert spill.
1035 } else {
1036 SpillPt = findNextEmptySlot(DefMBB, DefMI, SpillIndex);
1037 if (SpillPt == DefMBB->end())
1038 return false; // No gap to insert spill.
1039 }
1040 // Add spill. The store instruction kills the register if def is before
1041 // the barrier in the barrier block.
1042 SS = CreateSpillStackSlot(CurrLI->reg, RC);
1043 TII->storeRegToStackSlot(*DefMBB, SpillPt, CurrLI->reg,
1044 DefMBB == BarrierMBB, SS, RC);
1045 SpillMI = prior(SpillPt);
1046 LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001047 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001048 }
1049
Evan Cheng54898932008-10-29 08:39:34 +00001050 // Remember def instruction index to spill index mapping.
1051 if (DefMI && SpillMI)
1052 Def2SpillMap[ValNo->def] = SpillIndex;
1053
Evan Chengf5cd4f02008-10-23 20:43:13 +00001054 // Add restore.
Evan Chengf5cd4f02008-10-23 20:43:13 +00001055 TII->loadRegFromStackSlot(*BarrierMBB, RestorePt, CurrLI->reg, SS, RC);
1056 MachineInstr *LoadMI = prior(RestorePt);
1057 LIs->InsertMachineInstrInMaps(LoadMI, RestoreIndex);
1058
Evan Chengd0e32c52008-10-29 05:06:14 +00001059 // Update spill stack slot live interval.
Evan Cheng54898932008-10-29 08:39:34 +00001060 UpdateSpillSlotInterval(ValNo, LIs->getUseIndex(SpillIndex)+1,
1061 LIs->getDefIndex(RestoreIndex));
Evan Chengd0e32c52008-10-29 05:06:14 +00001062
Owen Andersonb4b84362009-01-26 21:57:31 +00001063 ReconstructLiveInterval(CurrLI);
1064 unsigned RestoreIdx = LIs->getInstructionIndex(prior(RestorePt));
1065 RestoreIdx = LiveIntervals::getDefIndex(RestoreIdx);
1066 RenumberValno(CurrLI->findDefinedVNInfo(RestoreIdx));
Owen Anderson7d211e22008-12-31 02:00:25 +00001067
Evan Chengae7fa5b2008-10-28 01:48:24 +00001068 ++NumSplits;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001069 return true;
1070}
1071
1072/// SplitRegLiveIntervals - Split all register live intervals that cross the
1073/// barrier that's being processed.
1074bool
Owen Anderson956ec272009-01-23 00:23:32 +00001075PreAllocSplitting::SplitRegLiveIntervals(const TargetRegisterClass **RCs,
1076 SmallPtrSet<LiveInterval*, 8>& Split) {
Evan Chengf5cd4f02008-10-23 20:43:13 +00001077 // First find all the virtual registers whose live intervals are intercepted
1078 // by the current barrier.
1079 SmallVector<LiveInterval*, 8> Intervals;
1080 for (const TargetRegisterClass **RC = RCs; *RC; ++RC) {
Evan Cheng23066282008-10-27 07:14:50 +00001081 if (TII->IgnoreRegisterClassBarriers(*RC))
1082 continue;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001083 std::vector<unsigned> &VRs = MRI->getRegClassVirtRegs(*RC);
1084 for (unsigned i = 0, e = VRs.size(); i != e; ++i) {
1085 unsigned Reg = VRs[i];
1086 if (!LIs->hasInterval(Reg))
1087 continue;
1088 LiveInterval *LI = &LIs->getInterval(Reg);
1089 if (LI->liveAt(BarrierIdx) && !Barrier->readsRegister(Reg))
1090 // Virtual register live interval is intercepted by the barrier. We
1091 // should split and shrink wrap its interval if possible.
1092 Intervals.push_back(LI);
1093 }
1094 }
1095
1096 // Process the affected live intervals.
1097 bool Change = false;
1098 while (!Intervals.empty()) {
Evan Chengae7fa5b2008-10-28 01:48:24 +00001099 if (PreSplitLimit != -1 && (int)NumSplits == PreSplitLimit)
1100 break;
Owen Andersone1762c92009-01-12 03:10:40 +00001101 else if (NumSplits == 4)
1102 Change |= Change;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001103 LiveInterval *LI = Intervals.back();
1104 Intervals.pop_back();
Owen Anderson956ec272009-01-23 00:23:32 +00001105 bool result = SplitRegLiveInterval(LI);
1106 if (result) Split.insert(LI);
1107 Change |= result;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001108 }
1109
1110 return Change;
1111}
1112
Owen Anderson45e68552009-01-29 05:28:55 +00001113unsigned PreAllocSplitting::getNumberOfNonSpills(
Owen Anderson32ca8652009-01-24 10:07:43 +00001114 SmallPtrSet<MachineInstr*, 4>& MIs,
Owen Anderson45e68552009-01-29 05:28:55 +00001115 unsigned Reg, int FrameIndex,
1116 bool& FeedsTwoAddr) {
1117 unsigned NonSpills = 0;
Owen Anderson32ca8652009-01-24 10:07:43 +00001118 for (SmallPtrSet<MachineInstr*, 4>::iterator UI = MIs.begin(), UE = MIs.end();
Owen Anderson45e68552009-01-29 05:28:55 +00001119 UI != UE; ++UI) {
Owen Anderson32ca8652009-01-24 10:07:43 +00001120 int StoreFrameIndex;
1121 unsigned StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
Owen Anderson45e68552009-01-29 05:28:55 +00001122 if (StoreVReg != Reg || StoreFrameIndex != FrameIndex)
1123 NonSpills++;
1124
1125 int DefIdx = (*UI)->findRegisterDefOperandIdx(Reg);
1126 if (DefIdx != -1 && (*UI)->isRegReDefinedByTwoAddr(DefIdx))
1127 FeedsTwoAddr = true;
Owen Anderson32ca8652009-01-24 10:07:43 +00001128 }
1129
Owen Anderson45e68552009-01-29 05:28:55 +00001130 return NonSpills;
Owen Anderson32ca8652009-01-24 10:07:43 +00001131}
1132
Owen Anderson956ec272009-01-23 00:23:32 +00001133/// removeDeadSpills - After doing splitting, filter through all intervals we've
1134/// split, and see if any of the spills are unnecessary. If so, remove them.
1135bool PreAllocSplitting::removeDeadSpills(SmallPtrSet<LiveInterval*, 8>& split) {
1136 bool changed = false;
1137
Owen Anderson4bfc2092009-01-29 05:41:02 +00001138 // Walk over all of the live intervals that were touched by the splitter,
1139 // and see if we can do any DCE and/or folding.
Owen Anderson956ec272009-01-23 00:23:32 +00001140 for (SmallPtrSet<LiveInterval*, 8>::iterator LI = split.begin(),
1141 LE = split.end(); LI != LE; ++LI) {
Owen Anderson9ce499a2009-01-23 03:28:53 +00001142 DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> > VNUseCount;
Owen Anderson956ec272009-01-23 00:23:32 +00001143
Owen Anderson4bfc2092009-01-29 05:41:02 +00001144 // First, collect all the uses of the vreg, and sort them by their
1145 // reaching definition (VNInfo).
Owen Anderson956ec272009-01-23 00:23:32 +00001146 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin((*LI)->reg),
1147 UE = MRI->use_end(); UI != UE; ++UI) {
1148 unsigned index = LIs->getInstructionIndex(&*UI);
1149 index = LiveIntervals::getUseIndex(index);
1150
1151 const LiveRange* LR = (*LI)->getLiveRangeContaining(index);
Owen Anderson9ce499a2009-01-23 03:28:53 +00001152 VNUseCount[LR->valno].insert(&*UI);
Owen Anderson956ec272009-01-23 00:23:32 +00001153 }
1154
Owen Anderson4bfc2092009-01-29 05:41:02 +00001155 // Now, take the definitions (VNInfo's) one at a time and try to DCE
1156 // and/or fold them away.
Owen Anderson956ec272009-01-23 00:23:32 +00001157 for (LiveInterval::vni_iterator VI = (*LI)->vni_begin(),
1158 VE = (*LI)->vni_end(); VI != VE; ++VI) {
Owen Anderson45e68552009-01-29 05:28:55 +00001159
1160 if (DeadSplitLimit != -1 && (int)NumDeadSpills == DeadSplitLimit)
1161 return changed;
1162
Owen Anderson956ec272009-01-23 00:23:32 +00001163 VNInfo* CurrVN = *VI;
Owen Anderson4bfc2092009-01-29 05:41:02 +00001164
1165 // We don't currently try to handle definitions with PHI kills, because
1166 // it would involve processing more than one VNInfo at once.
Owen Anderson956ec272009-01-23 00:23:32 +00001167 if (CurrVN->hasPHIKill) continue;
Owen Anderson956ec272009-01-23 00:23:32 +00001168
Owen Anderson4bfc2092009-01-29 05:41:02 +00001169 // We also don't try to handle the results of PHI joins, since there's
1170 // no defining instruction to analyze.
Owen Anderson956ec272009-01-23 00:23:32 +00001171 unsigned DefIdx = CurrVN->def;
1172 if (DefIdx == ~0U || DefIdx == ~1U) continue;
Owen Anderson9ce499a2009-01-23 03:28:53 +00001173
Owen Anderson4bfc2092009-01-29 05:41:02 +00001174 // We're only interested in eliminating cruft introduced by the splitter,
1175 // is of the form load-use or load-use-store. First, check that the
1176 // definition is a load, and remember what stack slot we loaded it from.
Owen Anderson956ec272009-01-23 00:23:32 +00001177 MachineInstr* DefMI = LIs->getInstructionFromIndex(DefIdx);
1178 int FrameIndex;
1179 if (!TII->isLoadFromStackSlot(DefMI, FrameIndex)) continue;
1180
Owen Anderson4bfc2092009-01-29 05:41:02 +00001181 // If the definition has no uses at all, just DCE it.
Owen Anderson9ce499a2009-01-23 03:28:53 +00001182 if (VNUseCount[CurrVN].size() == 0) {
1183 LIs->RemoveMachineInstrFromMaps(DefMI);
1184 (*LI)->removeValNo(CurrVN);
1185 DefMI->eraseFromParent();
Owen Andersonc0f3a032009-01-29 08:22:06 +00001186 VNUseCount.erase(CurrVN);
Owen Anderson9ce499a2009-01-23 03:28:53 +00001187 NumDeadSpills++;
1188 changed = true;
Owen Anderson32ca8652009-01-24 10:07:43 +00001189 continue;
Owen Anderson9ce499a2009-01-23 03:28:53 +00001190 }
Owen Anderson32ca8652009-01-24 10:07:43 +00001191
Owen Anderson4bfc2092009-01-29 05:41:02 +00001192 // Second, get the number of non-store uses of the definition, as well as
1193 // a flag indicating whether it feeds into a later two-address definition.
Owen Anderson45e68552009-01-29 05:28:55 +00001194 bool FeedsTwoAddr = false;
1195 unsigned NonSpillCount = getNumberOfNonSpills(VNUseCount[CurrVN],
1196 (*LI)->reg, FrameIndex,
1197 FeedsTwoAddr);
1198
Owen Anderson4bfc2092009-01-29 05:41:02 +00001199 // If there's one non-store use and it doesn't feed a two-addr, then
1200 // this is a load-use-store case that we can try to fold.
Owen Anderson45e68552009-01-29 05:28:55 +00001201 if (NonSpillCount == 1 && !FeedsTwoAddr) {
Owen Anderson4bfc2092009-01-29 05:41:02 +00001202 // Start by finding the non-store use MachineInstr.
Owen Anderson45e68552009-01-29 05:28:55 +00001203 SmallPtrSet<MachineInstr*, 4>::iterator UI = VNUseCount[CurrVN].begin();
1204 int StoreFrameIndex;
1205 unsigned StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
1206 while (UI != VNUseCount[CurrVN].end() &&
1207 (StoreVReg == (*LI)->reg && StoreFrameIndex == FrameIndex)) {
1208 ++UI;
1209 if (UI != VNUseCount[CurrVN].end())
1210 StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
1211 }
Owen Anderson45e68552009-01-29 05:28:55 +00001212 if (UI == VNUseCount[CurrVN].end()) continue;
1213
1214 MachineInstr* use = *UI;
1215
Owen Anderson4bfc2092009-01-29 05:41:02 +00001216 // Attempt to fold it away!
Owen Anderson45e68552009-01-29 05:28:55 +00001217 int OpIdx = use->findRegisterUseOperandIdx((*LI)->reg, false);
1218 if (OpIdx == -1) continue;
Owen Anderson45e68552009-01-29 05:28:55 +00001219 SmallVector<unsigned, 1> Ops;
1220 Ops.push_back(OpIdx);
Owen Anderson45e68552009-01-29 05:28:55 +00001221 if (!TII->canFoldMemoryOperand(use, Ops)) continue;
1222
1223 MachineInstr* NewMI =
1224 TII->foldMemoryOperand(*use->getParent()->getParent(),
1225 use, Ops, FrameIndex);
1226
1227 if (!NewMI) continue;
1228
Owen Anderson4bfc2092009-01-29 05:41:02 +00001229 // Update relevant analyses.
Owen Anderson45e68552009-01-29 05:28:55 +00001230 LIs->RemoveMachineInstrFromMaps(DefMI);
1231 LIs->ReplaceMachineInstrInMaps(use, NewMI);
1232 (*LI)->removeValNo(CurrVN);
1233
1234 DefMI->eraseFromParent();
1235 MachineBasicBlock* MBB = use->getParent();
1236 NewMI = MBB->insert(MBB->erase(use), NewMI);
1237 VNUseCount[CurrVN].erase(use);
1238
Owen Anderson4bfc2092009-01-29 05:41:02 +00001239 // Remove deleted instructions. Note that we need to remove them from
1240 // the VNInfo->use map as well, just to be safe.
Owen Anderson45e68552009-01-29 05:28:55 +00001241 for (SmallPtrSet<MachineInstr*, 4>::iterator II =
1242 VNUseCount[CurrVN].begin(), IE = VNUseCount[CurrVN].end();
1243 II != IE; ++II) {
Owen Anderson4bfc2092009-01-29 05:41:02 +00001244 for (DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> >::iterator
Owen Andersonc0f3a032009-01-29 08:22:06 +00001245 VNI = VNUseCount.begin(), VNE = VNUseCount.end(); VNI != VNE;
1246 ++VNI)
1247 if (VNI->first != CurrVN)
1248 VNI->second.erase(*II);
Owen Anderson45e68552009-01-29 05:28:55 +00001249 LIs->RemoveMachineInstrFromMaps(*II);
1250 (*II)->eraseFromParent();
1251 }
Owen Andersonc0f3a032009-01-29 08:22:06 +00001252
1253 VNUseCount.erase(CurrVN);
Owen Anderson45e68552009-01-29 05:28:55 +00001254
1255 for (DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> >::iterator
1256 VI = VNUseCount.begin(), VE = VNUseCount.end(); VI != VE; ++VI)
1257 if (VI->second.erase(use))
1258 VI->second.insert(NewMI);
1259
1260 NumDeadSpills++;
1261 changed = true;
1262 continue;
1263 }
1264
Owen Anderson4bfc2092009-01-29 05:41:02 +00001265 // If there's more than one non-store instruction, we can't profitably
1266 // fold it, so bail.
Owen Anderson45e68552009-01-29 05:28:55 +00001267 if (NonSpillCount) continue;
Owen Anderson32ca8652009-01-24 10:07:43 +00001268
Owen Anderson4bfc2092009-01-29 05:41:02 +00001269 // Otherwise, this is a load-store case, so DCE them.
Owen Anderson32ca8652009-01-24 10:07:43 +00001270 for (SmallPtrSet<MachineInstr*, 4>::iterator UI =
1271 VNUseCount[CurrVN].begin(), UE = VNUseCount[CurrVN].end();
1272 UI != UI; ++UI) {
1273 LIs->RemoveMachineInstrFromMaps(*UI);
1274 (*UI)->eraseFromParent();
1275 }
1276
Owen Andersonc0f3a032009-01-29 08:22:06 +00001277 VNUseCount.erase(CurrVN);
1278
Owen Anderson32ca8652009-01-24 10:07:43 +00001279 LIs->RemoveMachineInstrFromMaps(DefMI);
1280 (*LI)->removeValNo(CurrVN);
1281 DefMI->eraseFromParent();
1282 NumDeadSpills++;
1283 changed = true;
Owen Anderson956ec272009-01-23 00:23:32 +00001284 }
1285 }
1286
1287 return changed;
1288}
1289
Owen Andersonf1f75b12008-11-04 22:22:41 +00001290bool PreAllocSplitting::createsNewJoin(LiveRange* LR,
1291 MachineBasicBlock* DefMBB,
1292 MachineBasicBlock* BarrierMBB) {
1293 if (DefMBB == BarrierMBB)
1294 return false;
1295
1296 if (LR->valno->hasPHIKill)
1297 return false;
1298
1299 unsigned MBBEnd = LIs->getMBBEndIdx(BarrierMBB);
1300 if (LR->end < MBBEnd)
1301 return false;
1302
1303 MachineLoopInfo& MLI = getAnalysis<MachineLoopInfo>();
1304 if (MLI.getLoopFor(DefMBB) != MLI.getLoopFor(BarrierMBB))
1305 return true;
1306
1307 MachineDominatorTree& MDT = getAnalysis<MachineDominatorTree>();
1308 SmallPtrSet<MachineBasicBlock*, 4> Visited;
1309 typedef std::pair<MachineBasicBlock*,
1310 MachineBasicBlock::succ_iterator> ItPair;
1311 SmallVector<ItPair, 4> Stack;
1312 Stack.push_back(std::make_pair(BarrierMBB, BarrierMBB->succ_begin()));
1313
1314 while (!Stack.empty()) {
1315 ItPair P = Stack.back();
1316 Stack.pop_back();
1317
1318 MachineBasicBlock* PredMBB = P.first;
1319 MachineBasicBlock::succ_iterator S = P.second;
1320
1321 if (S == PredMBB->succ_end())
1322 continue;
1323 else if (Visited.count(*S)) {
1324 Stack.push_back(std::make_pair(PredMBB, ++S));
1325 continue;
1326 } else
Owen Andersonb214c692008-11-05 00:32:13 +00001327 Stack.push_back(std::make_pair(PredMBB, S+1));
Owen Andersonf1f75b12008-11-04 22:22:41 +00001328
1329 MachineBasicBlock* MBB = *S;
1330 Visited.insert(MBB);
1331
1332 if (MBB == BarrierMBB)
1333 return true;
1334
1335 MachineDomTreeNode* DefMDTN = MDT.getNode(DefMBB);
1336 MachineDomTreeNode* BarrierMDTN = MDT.getNode(BarrierMBB);
1337 MachineDomTreeNode* MDTN = MDT.getNode(MBB)->getIDom();
1338 while (MDTN) {
1339 if (MDTN == DefMDTN)
1340 return true;
1341 else if (MDTN == BarrierMDTN)
1342 break;
1343 MDTN = MDTN->getIDom();
1344 }
1345
1346 MBBEnd = LIs->getMBBEndIdx(MBB);
1347 if (LR->end > MBBEnd)
1348 Stack.push_back(std::make_pair(MBB, MBB->succ_begin()));
1349 }
1350
1351 return false;
1352}
1353
1354
Evan Cheng09e8ca82008-10-20 21:44:59 +00001355bool PreAllocSplitting::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd0e32c52008-10-29 05:06:14 +00001356 CurrMF = &MF;
1357 TM = &MF.getTarget();
Owen Anderson3ef45492009-01-29 22:13:06 +00001358 TRI = TM->getRegisterInfo();
Evan Chengd0e32c52008-10-29 05:06:14 +00001359 TII = TM->getInstrInfo();
1360 MFI = MF.getFrameInfo();
1361 MRI = &MF.getRegInfo();
1362 LIs = &getAnalysis<LiveIntervals>();
1363 LSs = &getAnalysis<LiveStacks>();
Evan Chengf5cd4f02008-10-23 20:43:13 +00001364
1365 bool MadeChange = false;
1366
1367 // Make sure blocks are numbered in order.
1368 MF.RenumberBlocks();
1369
Evan Cheng54898932008-10-29 08:39:34 +00001370 MachineBasicBlock *Entry = MF.begin();
1371 SmallPtrSet<MachineBasicBlock*,16> Visited;
1372
Owen Anderson956ec272009-01-23 00:23:32 +00001373 SmallPtrSet<LiveInterval*, 8> Split;
1374
Evan Cheng54898932008-10-29 08:39:34 +00001375 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
1376 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
1377 DFI != E; ++DFI) {
1378 BarrierMBB = *DFI;
1379 for (MachineBasicBlock::iterator I = BarrierMBB->begin(),
1380 E = BarrierMBB->end(); I != E; ++I) {
1381 Barrier = &*I;
1382 const TargetRegisterClass **BarrierRCs =
1383 Barrier->getDesc().getRegClassBarriers();
1384 if (!BarrierRCs)
1385 continue;
1386 BarrierIdx = LIs->getInstructionIndex(Barrier);
Owen Anderson956ec272009-01-23 00:23:32 +00001387 MadeChange |= SplitRegLiveIntervals(BarrierRCs, Split);
Evan Cheng54898932008-10-29 08:39:34 +00001388 }
1389 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001390
Owen Anderson956ec272009-01-23 00:23:32 +00001391 MadeChange |= removeDeadSpills(Split);
1392
Evan Chengf5cd4f02008-10-23 20:43:13 +00001393 return MadeChange;
Evan Cheng09e8ca82008-10-20 21:44:59 +00001394}