blob: 076f4896cfe86e8902492e1a807150108a605253 [file] [log] [blame]
Evan Cheng09e8ca82008-10-20 21:44:59 +00001//===-- PreAllocSplitting.cpp - Pre-allocation Interval Spltting Pass. ----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the machine instruction level pre-register allocation
11// live interval splitting pass. It finds live interval barriers, i.e.
12// instructions which will kill all physical registers in certain register
13// classes, and split all live intervals which cross the barrier.
14//
15//===----------------------------------------------------------------------===//
16
17#define DEBUG_TYPE "pre-alloc-split"
Owen Anderson420dd372009-03-14 21:40:05 +000018#include "VirtRegMap.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000019#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Evan Chengd0e32c52008-10-29 05:06:14 +000020#include "llvm/CodeGen/LiveStackAnalysis.h"
Owen Andersonf1f75b12008-11-04 22:22:41 +000021#include "llvm/CodeGen/MachineDominators.h"
Evan Chengf5cd4f02008-10-23 20:43:13 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000023#include "llvm/CodeGen/MachineFunctionPass.h"
24#include "llvm/CodeGen/MachineLoopInfo.h"
25#include "llvm/CodeGen/MachineRegisterInfo.h"
26#include "llvm/CodeGen/Passes.h"
27#include "llvm/CodeGen/RegisterCoalescer.h"
Evan Chengf5cd4f02008-10-23 20:43:13 +000028#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000029#include "llvm/Target/TargetMachine.h"
30#include "llvm/Target/TargetOptions.h"
31#include "llvm/Target/TargetRegisterInfo.h"
32#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/Debug.h"
Evan Chengd0e32c52008-10-29 05:06:14 +000034#include "llvm/ADT/DenseMap.h"
Evan Cheng54898932008-10-29 08:39:34 +000035#include "llvm/ADT/DepthFirstIterator.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000036#include "llvm/ADT/SmallPtrSet.h"
Evan Chengf5cd4f02008-10-23 20:43:13 +000037#include "llvm/ADT/Statistic.h"
Evan Cheng09e8ca82008-10-20 21:44:59 +000038using namespace llvm;
39
Evan Chengae7fa5b2008-10-28 01:48:24 +000040static cl::opt<int> PreSplitLimit("pre-split-limit", cl::init(-1), cl::Hidden);
Owen Anderson45e68552009-01-29 05:28:55 +000041static cl::opt<int> DeadSplitLimit("dead-split-limit", cl::init(-1), cl::Hidden);
Owen Anderson323c58d2009-03-05 07:19:18 +000042static cl::opt<int> RestoreFoldLimit("restore-fold-limit", cl::init(-1), cl::Hidden);
Evan Chengae7fa5b2008-10-28 01:48:24 +000043
Owen Anderson45e68552009-01-29 05:28:55 +000044STATISTIC(NumSplits, "Number of intervals split");
Owen Anderson75fa96b2008-11-19 04:28:29 +000045STATISTIC(NumRemats, "Number of intervals split by rematerialization");
Owen Anderson7b9d67c2008-12-02 18:53:47 +000046STATISTIC(NumFolds, "Number of intervals split with spill folding");
Owen Anderson323c58d2009-03-05 07:19:18 +000047STATISTIC(NumRestoreFolds, "Number of intervals split with restore folding");
Owen Anderson2ebf63f2008-12-18 01:27:19 +000048STATISTIC(NumRenumbers, "Number of intervals renumbered into new registers");
Owen Anderson956ec272009-01-23 00:23:32 +000049STATISTIC(NumDeadSpills, "Number of dead spills removed");
Evan Chengf5cd4f02008-10-23 20:43:13 +000050
Evan Cheng09e8ca82008-10-20 21:44:59 +000051namespace {
52 class VISIBILITY_HIDDEN PreAllocSplitting : public MachineFunctionPass {
Evan Chengd0e32c52008-10-29 05:06:14 +000053 MachineFunction *CurrMF;
Evan Chengf5cd4f02008-10-23 20:43:13 +000054 const TargetMachine *TM;
55 const TargetInstrInfo *TII;
Owen Anderson3ef45492009-01-29 22:13:06 +000056 const TargetRegisterInfo* TRI;
Evan Chengf5cd4f02008-10-23 20:43:13 +000057 MachineFrameInfo *MFI;
58 MachineRegisterInfo *MRI;
59 LiveIntervals *LIs;
Evan Chengd0e32c52008-10-29 05:06:14 +000060 LiveStacks *LSs;
Owen Anderson420dd372009-03-14 21:40:05 +000061 VirtRegMap *VRM;
Evan Cheng09e8ca82008-10-20 21:44:59 +000062
Evan Chengf5cd4f02008-10-23 20:43:13 +000063 // Barrier - Current barrier being processed.
64 MachineInstr *Barrier;
65
66 // BarrierMBB - Basic block where the barrier resides in.
67 MachineBasicBlock *BarrierMBB;
68
69 // Barrier - Current barrier index.
70 unsigned BarrierIdx;
71
72 // CurrLI - Current live interval being split.
73 LiveInterval *CurrLI;
74
Evan Chengd0e32c52008-10-29 05:06:14 +000075 // CurrSLI - Current stack slot live interval.
76 LiveInterval *CurrSLI;
77
78 // CurrSValNo - Current val# for the stack slot live interval.
79 VNInfo *CurrSValNo;
80
81 // IntervalSSMap - A map from live interval to spill slots.
82 DenseMap<unsigned, int> IntervalSSMap;
Evan Chengf5cd4f02008-10-23 20:43:13 +000083
Evan Cheng54898932008-10-29 08:39:34 +000084 // Def2SpillMap - A map from a def instruction index to spill index.
85 DenseMap<unsigned, unsigned> Def2SpillMap;
Evan Cheng06587492008-10-24 02:05:00 +000086
Evan Cheng09e8ca82008-10-20 21:44:59 +000087 public:
88 static char ID;
89 PreAllocSplitting() : MachineFunctionPass(&ID) {}
90
91 virtual bool runOnMachineFunction(MachineFunction &MF);
92
93 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
94 AU.addRequired<LiveIntervals>();
95 AU.addPreserved<LiveIntervals>();
Evan Chengd0e32c52008-10-29 05:06:14 +000096 AU.addRequired<LiveStacks>();
97 AU.addPreserved<LiveStacks>();
Evan Cheng09e8ca82008-10-20 21:44:59 +000098 AU.addPreserved<RegisterCoalescer>();
99 if (StrongPHIElim)
100 AU.addPreservedID(StrongPHIEliminationID);
101 else
102 AU.addPreservedID(PHIEliminationID);
Owen Andersonf1f75b12008-11-04 22:22:41 +0000103 AU.addRequired<MachineDominatorTree>();
104 AU.addRequired<MachineLoopInfo>();
Owen Anderson420dd372009-03-14 21:40:05 +0000105 AU.addRequired<VirtRegMap>();
Owen Andersonf1f75b12008-11-04 22:22:41 +0000106 AU.addPreserved<MachineDominatorTree>();
107 AU.addPreserved<MachineLoopInfo>();
Owen Anderson420dd372009-03-14 21:40:05 +0000108 AU.addPreserved<VirtRegMap>();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000109 MachineFunctionPass::getAnalysisUsage(AU);
110 }
111
112 virtual void releaseMemory() {
Evan Chengd0e32c52008-10-29 05:06:14 +0000113 IntervalSSMap.clear();
Evan Cheng54898932008-10-29 08:39:34 +0000114 Def2SpillMap.clear();
Evan Cheng09e8ca82008-10-20 21:44:59 +0000115 }
116
117 virtual const char *getPassName() const {
118 return "Pre-Register Allocaton Live Interval Splitting";
119 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000120
121 /// print - Implement the dump method.
122 virtual void print(std::ostream &O, const Module* M = 0) const {
123 LIs->print(O, M);
124 }
125
126 void print(std::ostream *O, const Module* M = 0) const {
127 if (O) print(*O, M);
128 }
129
130 private:
131 MachineBasicBlock::iterator
132 findNextEmptySlot(MachineBasicBlock*, MachineInstr*,
133 unsigned&);
134
135 MachineBasicBlock::iterator
Evan Cheng1f08cc22008-10-28 05:28:21 +0000136 findSpillPoint(MachineBasicBlock*, MachineInstr*, MachineInstr*,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000137 SmallPtrSet<MachineInstr*, 4>&, unsigned&);
138
139 MachineBasicBlock::iterator
Evan Chengf62ce372008-10-28 00:47:49 +0000140 findRestorePoint(MachineBasicBlock*, MachineInstr*, unsigned,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000141 SmallPtrSet<MachineInstr*, 4>&, unsigned&);
142
Evan Chengd0e32c52008-10-29 05:06:14 +0000143 int CreateSpillStackSlot(unsigned, const TargetRegisterClass *);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000144
Evan Cheng54898932008-10-29 08:39:34 +0000145 bool IsAvailableInStack(MachineBasicBlock*, unsigned, unsigned, unsigned,
146 unsigned&, int&) const;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000147
Evan Chengd0e32c52008-10-29 05:06:14 +0000148 void UpdateSpillSlotInterval(VNInfo*, unsigned, unsigned);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000149
Evan Chengf5cd4f02008-10-23 20:43:13 +0000150 bool SplitRegLiveInterval(LiveInterval*);
151
Owen Anderson956ec272009-01-23 00:23:32 +0000152 bool SplitRegLiveIntervals(const TargetRegisterClass **,
153 SmallPtrSet<LiveInterval*, 8>&);
Owen Andersonf1f75b12008-11-04 22:22:41 +0000154
155 bool createsNewJoin(LiveRange* LR, MachineBasicBlock* DefMBB,
156 MachineBasicBlock* BarrierMBB);
Owen Anderson75fa96b2008-11-19 04:28:29 +0000157 bool Rematerialize(unsigned vreg, VNInfo* ValNo,
158 MachineInstr* DefMI,
159 MachineBasicBlock::iterator RestorePt,
160 unsigned RestoreIdx,
161 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000162 MachineInstr* FoldSpill(unsigned vreg, const TargetRegisterClass* RC,
163 MachineInstr* DefMI,
164 MachineInstr* Barrier,
165 MachineBasicBlock* MBB,
166 int& SS,
167 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Andersonc93023a2009-03-04 08:52:31 +0000168 MachineInstr* FoldRestore(unsigned vreg,
169 const TargetRegisterClass* RC,
170 MachineInstr* Barrier,
171 MachineBasicBlock* MBB,
172 int SS,
173 SmallPtrSet<MachineInstr*, 4>& RefsInMBB);
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000174 void RenumberValno(VNInfo* VN);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000175 void ReconstructLiveInterval(LiveInterval* LI);
Owen Anderson956ec272009-01-23 00:23:32 +0000176 bool removeDeadSpills(SmallPtrSet<LiveInterval*, 8>& split);
Owen Anderson45e68552009-01-29 05:28:55 +0000177 unsigned getNumberOfNonSpills(SmallPtrSet<MachineInstr*, 4>& MIs,
178 unsigned Reg, int FrameIndex, bool& TwoAddr);
Evan Cheng19a72582009-02-02 18:33:18 +0000179 VNInfo* PerformPHIConstruction(MachineBasicBlock::iterator Use,
180 MachineBasicBlock* MBB, LiveInterval* LI,
Owen Anderson200ee7f2009-01-06 07:53:32 +0000181 SmallPtrSet<MachineInstr*, 4>& Visited,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000182 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
183 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
184 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000185 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
186 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
Evan Cheng19a72582009-02-02 18:33:18 +0000187 bool IsTopLevel, bool IsIntraBlock);
188 VNInfo* PerformPHIConstructionFallBack(MachineBasicBlock::iterator Use,
189 MachineBasicBlock* MBB, LiveInterval* LI,
190 SmallPtrSet<MachineInstr*, 4>& Visited,
191 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
192 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
193 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
194 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
195 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
196 bool IsTopLevel, bool IsIntraBlock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000197};
Evan Cheng09e8ca82008-10-20 21:44:59 +0000198} // end anonymous namespace
199
200char PreAllocSplitting::ID = 0;
201
202static RegisterPass<PreAllocSplitting>
203X("pre-alloc-splitting", "Pre-Register Allocation Live Interval Splitting");
204
205const PassInfo *const llvm::PreAllocSplittingID = &X;
206
Evan Chengf5cd4f02008-10-23 20:43:13 +0000207
208/// findNextEmptySlot - Find a gap after the given machine instruction in the
209/// instruction index map. If there isn't one, return end().
210MachineBasicBlock::iterator
211PreAllocSplitting::findNextEmptySlot(MachineBasicBlock *MBB, MachineInstr *MI,
212 unsigned &SpotIndex) {
213 MachineBasicBlock::iterator MII = MI;
214 if (++MII != MBB->end()) {
215 unsigned Index = LIs->findGapBeforeInstr(LIs->getInstructionIndex(MII));
216 if (Index) {
217 SpotIndex = Index;
218 return MII;
219 }
220 }
221 return MBB->end();
222}
223
224/// findSpillPoint - Find a gap as far away from the given MI that's suitable
225/// for spilling the current live interval. The index must be before any
226/// defs and uses of the live interval register in the mbb. Return begin() if
227/// none is found.
228MachineBasicBlock::iterator
229PreAllocSplitting::findSpillPoint(MachineBasicBlock *MBB, MachineInstr *MI,
Evan Cheng1f08cc22008-10-28 05:28:21 +0000230 MachineInstr *DefMI,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000231 SmallPtrSet<MachineInstr*, 4> &RefsInMBB,
232 unsigned &SpillIndex) {
233 MachineBasicBlock::iterator Pt = MBB->begin();
234
Owen Anderson696a1302009-03-31 08:27:09 +0000235 MachineBasicBlock::iterator MII = MI;
236 MachineBasicBlock::iterator EndPt = DefMI
237 ? MachineBasicBlock::iterator(DefMI) : MBB->begin();
Owen Anderson4cafbb52009-02-20 10:02:23 +0000238
Owen Anderson696a1302009-03-31 08:27:09 +0000239 while (MII != EndPt && !RefsInMBB.count(MII) &&
240 MII->getOpcode() != TRI->getCallFrameSetupOpcode())
241 --MII;
242 if (MII == EndPt || RefsInMBB.count(MII)) return Pt;
Owen Anderson4cafbb52009-02-20 10:02:23 +0000243
Owen Anderson696a1302009-03-31 08:27:09 +0000244 while (MII != EndPt && !RefsInMBB.count(MII)) {
245 unsigned Index = LIs->getInstructionIndex(MII);
Owen Anderson3ef45492009-01-29 22:13:06 +0000246
Owen Anderson696a1302009-03-31 08:27:09 +0000247 // We can't insert the spill between the barrier (a call), and its
248 // corresponding call frame setup.
249 if (MII->getOpcode() == TRI->getCallFrameDestroyOpcode()) {
250 while (MII->getOpcode() != TRI->getCallFrameSetupOpcode()) {
Owen Anderson5734c942009-02-05 05:58:41 +0000251 --MII;
Owen Anderson696a1302009-03-31 08:27:09 +0000252 if (MII == EndPt) {
253 return Pt;
Owen Anderson5734c942009-02-05 05:58:41 +0000254 }
Evan Chengf5cd4f02008-10-23 20:43:13 +0000255 }
Owen Anderson696a1302009-03-31 08:27:09 +0000256 continue;
257 } else if (LIs->hasGapBeforeInstr(Index)) {
258 Pt = MII;
259 SpillIndex = LIs->findGapBeforeInstr(Index, true);
Evan Chengf5cd4f02008-10-23 20:43:13 +0000260 }
Owen Anderson696a1302009-03-31 08:27:09 +0000261
262 if (RefsInMBB.count(MII))
263 return Pt;
264
265
266 --MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000267 }
268
269 return Pt;
270}
271
272/// findRestorePoint - Find a gap in the instruction index map that's suitable
273/// for restoring the current live interval value. The index must be before any
274/// uses of the live interval register in the mbb. Return end() if none is
275/// found.
276MachineBasicBlock::iterator
277PreAllocSplitting::findRestorePoint(MachineBasicBlock *MBB, MachineInstr *MI,
Evan Chengf62ce372008-10-28 00:47:49 +0000278 unsigned LastIdx,
Evan Chengf5cd4f02008-10-23 20:43:13 +0000279 SmallPtrSet<MachineInstr*, 4> &RefsInMBB,
280 unsigned &RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000281 // FIXME: Allow spill to be inserted to the beginning of the mbb. Update mbb
282 // begin index accordingly.
Owen Anderson5a92d4e2008-11-18 20:53:59 +0000283 MachineBasicBlock::iterator Pt = MBB->end();
Owen Anderson696a1302009-03-31 08:27:09 +0000284 MachineBasicBlock::iterator EndPt = MBB->getFirstTerminator();
Evan Chengf5cd4f02008-10-23 20:43:13 +0000285
Owen Anderson696a1302009-03-31 08:27:09 +0000286 // We start at the call, so walk forward until we find the call frame teardown
287 // since we can't insert restores before that. Bail if we encounter a use
288 // during this time.
289 MachineBasicBlock::iterator MII = MI;
290 if (MII == EndPt) return Pt;
291
292 while (MII != EndPt && !RefsInMBB.count(MII) &&
293 MII->getOpcode() != TRI->getCallFrameDestroyOpcode())
294 ++MII;
295 if (MII == EndPt || RefsInMBB.count(MII)) return Pt;
296 ++MII;
297
298 // FIXME: Limit the number of instructions to examine to reduce
299 // compile time?
300 while (MII != EndPt) {
301 unsigned Index = LIs->getInstructionIndex(MII);
302 if (Index > LastIdx)
303 break;
304 unsigned Gap = LIs->findGapBeforeInstr(Index);
Owen Anderson3ef45492009-01-29 22:13:06 +0000305
Owen Anderson696a1302009-03-31 08:27:09 +0000306 // We can't insert a restore between the barrier (a call) and its
307 // corresponding call frame teardown.
308 if (MII->getOpcode() == TRI->getCallFrameSetupOpcode()) {
309 do {
310 if (MII == EndPt || RefsInMBB.count(MII)) return Pt;
Owen Anderson5734c942009-02-05 05:58:41 +0000311 ++MII;
Owen Anderson696a1302009-03-31 08:27:09 +0000312 } while (MII->getOpcode() != TRI->getCallFrameDestroyOpcode());
313 } else if (Gap) {
314 Pt = MII;
315 RestoreIndex = Gap;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000316 }
Owen Anderson696a1302009-03-31 08:27:09 +0000317
318 if (RefsInMBB.count(MII))
319 return Pt;
320
321 ++MII;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000322 }
323
324 return Pt;
325}
326
Evan Chengd0e32c52008-10-29 05:06:14 +0000327/// CreateSpillStackSlot - Create a stack slot for the live interval being
328/// split. If the live interval was previously split, just reuse the same
329/// slot.
330int PreAllocSplitting::CreateSpillStackSlot(unsigned Reg,
331 const TargetRegisterClass *RC) {
332 int SS;
333 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
334 if (I != IntervalSSMap.end()) {
335 SS = I->second;
336 } else {
337 SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());
338 IntervalSSMap[Reg] = SS;
Evan Cheng06587492008-10-24 02:05:00 +0000339 }
Evan Chengd0e32c52008-10-29 05:06:14 +0000340
341 // Create live interval for stack slot.
Evan Chengc781a242009-05-03 18:32:42 +0000342 CurrSLI = &LSs->getOrCreateInterval(SS, RC);
Evan Cheng54898932008-10-29 08:39:34 +0000343 if (CurrSLI->hasAtLeastOneValue())
Evan Chengd0e32c52008-10-29 05:06:14 +0000344 CurrSValNo = CurrSLI->getValNumInfo(0);
345 else
Lang Hames857c4e02009-06-17 21:01:20 +0000346 CurrSValNo = CurrSLI->getNextValue(0, 0, false, LSs->getVNInfoAllocator());
Evan Chengd0e32c52008-10-29 05:06:14 +0000347 return SS;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000348}
349
Evan Chengd0e32c52008-10-29 05:06:14 +0000350/// IsAvailableInStack - Return true if register is available in a split stack
351/// slot at the specified index.
352bool
Evan Cheng54898932008-10-29 08:39:34 +0000353PreAllocSplitting::IsAvailableInStack(MachineBasicBlock *DefMBB,
354 unsigned Reg, unsigned DefIndex,
355 unsigned RestoreIndex, unsigned &SpillIndex,
356 int& SS) const {
357 if (!DefMBB)
358 return false;
359
Evan Chengd0e32c52008-10-29 05:06:14 +0000360 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(Reg);
361 if (I == IntervalSSMap.end())
Evan Chengf5cd4f02008-10-23 20:43:13 +0000362 return false;
Evan Cheng54898932008-10-29 08:39:34 +0000363 DenseMap<unsigned, unsigned>::iterator II = Def2SpillMap.find(DefIndex);
364 if (II == Def2SpillMap.end())
365 return false;
366
367 // If last spill of def is in the same mbb as barrier mbb (where restore will
368 // be), make sure it's not below the intended restore index.
369 // FIXME: Undo the previous spill?
370 assert(LIs->getMBBFromIndex(II->second) == DefMBB);
371 if (DefMBB == BarrierMBB && II->second >= RestoreIndex)
372 return false;
373
374 SS = I->second;
375 SpillIndex = II->second;
376 return true;
Evan Chengf5cd4f02008-10-23 20:43:13 +0000377}
378
Evan Chengd0e32c52008-10-29 05:06:14 +0000379/// UpdateSpillSlotInterval - Given the specified val# of the register live
380/// interval being split, and the spill and restore indicies, update the live
381/// interval of the spill stack slot.
382void
383PreAllocSplitting::UpdateSpillSlotInterval(VNInfo *ValNo, unsigned SpillIndex,
384 unsigned RestoreIndex) {
Evan Cheng54898932008-10-29 08:39:34 +0000385 assert(LIs->getMBBFromIndex(RestoreIndex) == BarrierMBB &&
386 "Expect restore in the barrier mbb");
387
388 MachineBasicBlock *MBB = LIs->getMBBFromIndex(SpillIndex);
389 if (MBB == BarrierMBB) {
390 // Intra-block spill + restore. We are done.
Evan Chengd0e32c52008-10-29 05:06:14 +0000391 LiveRange SLR(SpillIndex, RestoreIndex, CurrSValNo);
392 CurrSLI->addRange(SLR);
393 return;
394 }
395
Evan Cheng54898932008-10-29 08:39:34 +0000396 SmallPtrSet<MachineBasicBlock*, 4> Processed;
397 unsigned EndIdx = LIs->getMBBEndIdx(MBB);
398 LiveRange SLR(SpillIndex, EndIdx+1, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000399 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000400 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000401
402 // Start from the spill mbb, figure out the extend of the spill slot's
403 // live interval.
404 SmallVector<MachineBasicBlock*, 4> WorkList;
Evan Cheng54898932008-10-29 08:39:34 +0000405 const LiveRange *LR = CurrLI->getLiveRangeContaining(SpillIndex);
406 if (LR->end > EndIdx)
Evan Chengd0e32c52008-10-29 05:06:14 +0000407 // If live range extend beyond end of mbb, add successors to work list.
408 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
409 SE = MBB->succ_end(); SI != SE; ++SI)
410 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000411
412 while (!WorkList.empty()) {
413 MachineBasicBlock *MBB = WorkList.back();
414 WorkList.pop_back();
Evan Cheng54898932008-10-29 08:39:34 +0000415 if (Processed.count(MBB))
416 continue;
Evan Chengd0e32c52008-10-29 05:06:14 +0000417 unsigned Idx = LIs->getMBBStartIdx(MBB);
418 LR = CurrLI->getLiveRangeContaining(Idx);
Evan Cheng54898932008-10-29 08:39:34 +0000419 if (LR && LR->valno == ValNo) {
420 EndIdx = LIs->getMBBEndIdx(MBB);
421 if (Idx <= RestoreIndex && RestoreIndex < EndIdx) {
Evan Chengd0e32c52008-10-29 05:06:14 +0000422 // Spill slot live interval stops at the restore.
Evan Cheng54898932008-10-29 08:39:34 +0000423 LiveRange SLR(Idx, RestoreIndex, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000424 CurrSLI->addRange(SLR);
Evan Cheng54898932008-10-29 08:39:34 +0000425 } else if (LR->end > EndIdx) {
426 // Live range extends beyond end of mbb, process successors.
427 LiveRange SLR(Idx, EndIdx+1, CurrSValNo);
428 CurrSLI->addRange(SLR);
429 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
430 SE = MBB->succ_end(); SI != SE; ++SI)
431 WorkList.push_back(*SI);
Evan Chengd0e32c52008-10-29 05:06:14 +0000432 } else {
Evan Cheng54898932008-10-29 08:39:34 +0000433 LiveRange SLR(Idx, LR->end, CurrSValNo);
Evan Chengd0e32c52008-10-29 05:06:14 +0000434 CurrSLI->addRange(SLR);
Evan Chengd0e32c52008-10-29 05:06:14 +0000435 }
Evan Cheng54898932008-10-29 08:39:34 +0000436 Processed.insert(MBB);
Evan Chengd0e32c52008-10-29 05:06:14 +0000437 }
438 }
439}
440
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000441/// PerformPHIConstruction - From properly set up use and def lists, use a PHI
442/// construction algorithm to compute the ranges and valnos for an interval.
Evan Cheng19a72582009-02-02 18:33:18 +0000443VNInfo*
444PreAllocSplitting::PerformPHIConstruction(MachineBasicBlock::iterator UseI,
445 MachineBasicBlock* MBB, LiveInterval* LI,
Owen Anderson200ee7f2009-01-06 07:53:32 +0000446 SmallPtrSet<MachineInstr*, 4>& Visited,
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000447 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
448 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
449 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000450 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
451 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
Evan Cheng19a72582009-02-02 18:33:18 +0000452 bool IsTopLevel, bool IsIntraBlock) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000453 // Return memoized result if it's available.
Evan Cheng19a72582009-02-02 18:33:18 +0000454 if (IsTopLevel && Visited.count(UseI) && NewVNs.count(UseI))
455 return NewVNs[UseI];
456 else if (!IsTopLevel && IsIntraBlock && NewVNs.count(UseI))
457 return NewVNs[UseI];
458 else if (!IsIntraBlock && LiveOut.count(MBB))
Owen Anderson7d211e22008-12-31 02:00:25 +0000459 return LiveOut[MBB];
460
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000461 // Check if our block contains any uses or defs.
Owen Anderson7d211e22008-12-31 02:00:25 +0000462 bool ContainsDefs = Defs.count(MBB);
463 bool ContainsUses = Uses.count(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000464
Evan Cheng19a72582009-02-02 18:33:18 +0000465 VNInfo* RetVNI = 0;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000466
467 // Enumerate the cases of use/def contaning blocks.
468 if (!ContainsDefs && !ContainsUses) {
Evan Cheng19a72582009-02-02 18:33:18 +0000469 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs, Uses,
470 NewVNs, LiveOut, Phis,
471 IsTopLevel, IsIntraBlock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000472 } else if (ContainsDefs && !ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000473 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000474
475 // Search for the def in this block. If we don't find it before the
476 // instruction we care about, go to the fallback case. Note that that
Owen Anderson7d211e22008-12-31 02:00:25 +0000477 // should never happen: this cannot be intrablock, so use should
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000478 // always be an end() iterator.
Evan Cheng19a72582009-02-02 18:33:18 +0000479 assert(UseI == MBB->end() && "No use marked in intrablock");
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000480
Evan Cheng19a72582009-02-02 18:33:18 +0000481 MachineBasicBlock::iterator Walker = UseI;
482 --Walker;
483 while (Walker != MBB->begin()) {
484 if (BlockDefs.count(Walker))
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000485 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000486 --Walker;
487 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000488
489 // Once we've found it, extend its VNInfo to our instruction.
Evan Cheng19a72582009-02-02 18:33:18 +0000490 unsigned DefIndex = LIs->getInstructionIndex(Walker);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000491 DefIndex = LiveIntervals::getDefIndex(DefIndex);
Owen Anderson7d211e22008-12-31 02:00:25 +0000492 unsigned EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000493
Evan Cheng19a72582009-02-02 18:33:18 +0000494 RetVNI = NewVNs[Walker];
495 LI->addRange(LiveRange(DefIndex, EndIndex+1, RetVNI));
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000496 } else if (!ContainsDefs && ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000497 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000498
499 // Search for the use in this block that precedes the instruction we care
Evan Cheng19a72582009-02-02 18:33:18 +0000500 // about, going to the fallback case if we don't find it.
501 if (UseI == MBB->begin())
502 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
503 Uses, NewVNs, LiveOut, Phis,
504 IsTopLevel, IsIntraBlock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000505
Evan Cheng19a72582009-02-02 18:33:18 +0000506 MachineBasicBlock::iterator Walker = UseI;
507 --Walker;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000508 bool found = false;
Evan Cheng19a72582009-02-02 18:33:18 +0000509 while (Walker != MBB->begin()) {
510 if (BlockUses.count(Walker)) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000511 found = true;
512 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000513 }
514 --Walker;
515 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000516
517 // Must check begin() too.
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000518 if (!found) {
Evan Cheng19a72582009-02-02 18:33:18 +0000519 if (BlockUses.count(Walker))
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000520 found = true;
521 else
Evan Cheng19a72582009-02-02 18:33:18 +0000522 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
523 Uses, NewVNs, LiveOut, Phis,
524 IsTopLevel, IsIntraBlock);
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000525 }
526
Evan Cheng19a72582009-02-02 18:33:18 +0000527 unsigned UseIndex = LIs->getInstructionIndex(Walker);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000528 UseIndex = LiveIntervals::getUseIndex(UseIndex);
529 unsigned EndIndex = 0;
Evan Cheng19a72582009-02-02 18:33:18 +0000530 if (IsIntraBlock) {
531 EndIndex = LIs->getInstructionIndex(UseI);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000532 EndIndex = LiveIntervals::getUseIndex(EndIndex);
533 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000534 EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000535
536 // Now, recursively phi construct the VNInfo for the use we found,
537 // and then extend it to include the instruction we care about
Evan Cheng19a72582009-02-02 18:33:18 +0000538 RetVNI = PerformPHIConstruction(Walker, MBB, LI, Visited, Defs, Uses,
539 NewVNs, LiveOut, Phis, false, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000540
Evan Cheng19a72582009-02-02 18:33:18 +0000541 LI->addRange(LiveRange(UseIndex, EndIndex+1, RetVNI));
Owen Andersonb4b84362009-01-26 21:57:31 +0000542
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000543 // FIXME: Need to set kills properly for inter-block stuff.
Evan Cheng19a72582009-02-02 18:33:18 +0000544 if (LI->isKill(RetVNI, UseIndex)) LI->removeKill(RetVNI, UseIndex);
545 if (IsIntraBlock)
Lang Hamesffd13262009-07-09 03:57:02 +0000546 LI->addKill(RetVNI, EndIndex, false);
Evan Cheng19a72582009-02-02 18:33:18 +0000547 } else if (ContainsDefs && ContainsUses) {
Owen Anderson7d211e22008-12-31 02:00:25 +0000548 SmallPtrSet<MachineInstr*, 2>& BlockDefs = Defs[MBB];
549 SmallPtrSet<MachineInstr*, 2>& BlockUses = Uses[MBB];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000550
551 // This case is basically a merging of the two preceding case, with the
552 // special note that checking for defs must take precedence over checking
553 // for uses, because of two-address instructions.
554
Evan Cheng19a72582009-02-02 18:33:18 +0000555 if (UseI == MBB->begin())
556 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs, Uses,
557 NewVNs, LiveOut, Phis,
558 IsTopLevel, IsIntraBlock);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000559
Evan Cheng19a72582009-02-02 18:33:18 +0000560 MachineBasicBlock::iterator Walker = UseI;
561 --Walker;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000562 bool foundDef = false;
563 bool foundUse = false;
Evan Cheng19a72582009-02-02 18:33:18 +0000564 while (Walker != MBB->begin()) {
565 if (BlockDefs.count(Walker)) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000566 foundDef = true;
567 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000568 } else if (BlockUses.count(Walker)) {
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000569 foundUse = true;
570 break;
Evan Cheng19a72582009-02-02 18:33:18 +0000571 }
572 --Walker;
573 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000574
575 // Must check begin() too.
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000576 if (!foundDef && !foundUse) {
Evan Cheng19a72582009-02-02 18:33:18 +0000577 if (BlockDefs.count(Walker))
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000578 foundDef = true;
Evan Cheng19a72582009-02-02 18:33:18 +0000579 else if (BlockUses.count(Walker))
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000580 foundUse = true;
581 else
Evan Cheng19a72582009-02-02 18:33:18 +0000582 return PerformPHIConstructionFallBack(UseI, MBB, LI, Visited, Defs,
583 Uses, NewVNs, LiveOut, Phis,
584 IsTopLevel, IsIntraBlock);
Duncan Sands2b7fc1e2008-12-29 08:05:02 +0000585 }
586
Evan Cheng19a72582009-02-02 18:33:18 +0000587 unsigned StartIndex = LIs->getInstructionIndex(Walker);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000588 StartIndex = foundDef ? LiveIntervals::getDefIndex(StartIndex) :
589 LiveIntervals::getUseIndex(StartIndex);
590 unsigned EndIndex = 0;
Evan Cheng19a72582009-02-02 18:33:18 +0000591 if (IsIntraBlock) {
592 EndIndex = LIs->getInstructionIndex(UseI);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000593 EndIndex = LiveIntervals::getUseIndex(EndIndex);
594 } else
Owen Anderson7d211e22008-12-31 02:00:25 +0000595 EndIndex = LIs->getMBBEndIdx(MBB);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000596
597 if (foundDef)
Evan Cheng19a72582009-02-02 18:33:18 +0000598 RetVNI = NewVNs[Walker];
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000599 else
Evan Cheng19a72582009-02-02 18:33:18 +0000600 RetVNI = PerformPHIConstruction(Walker, MBB, LI, Visited, Defs, Uses,
601 NewVNs, LiveOut, Phis, false, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000602
Evan Cheng19a72582009-02-02 18:33:18 +0000603 LI->addRange(LiveRange(StartIndex, EndIndex+1, RetVNI));
Owen Andersonb4b84362009-01-26 21:57:31 +0000604
Evan Cheng19a72582009-02-02 18:33:18 +0000605 if (foundUse && LI->isKill(RetVNI, StartIndex))
606 LI->removeKill(RetVNI, StartIndex);
607 if (IsIntraBlock) {
Lang Hamesffd13262009-07-09 03:57:02 +0000608 LI->addKill(RetVNI, EndIndex, false);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000609 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000610 }
611
612 // Memoize results so we don't have to recompute them.
Evan Cheng19a72582009-02-02 18:33:18 +0000613 if (!IsIntraBlock) LiveOut[MBB] = RetVNI;
Owen Anderson200ee7f2009-01-06 07:53:32 +0000614 else {
Evan Cheng19a72582009-02-02 18:33:18 +0000615 if (!NewVNs.count(UseI))
616 NewVNs[UseI] = RetVNI;
617 Visited.insert(UseI);
Owen Anderson200ee7f2009-01-06 07:53:32 +0000618 }
619
Evan Cheng19a72582009-02-02 18:33:18 +0000620 return RetVNI;
621}
622
623/// PerformPHIConstructionFallBack - PerformPHIConstruction fall back path.
624///
625VNInfo*
626PreAllocSplitting::PerformPHIConstructionFallBack(MachineBasicBlock::iterator UseI,
627 MachineBasicBlock* MBB, LiveInterval* LI,
628 SmallPtrSet<MachineInstr*, 4>& Visited,
629 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Defs,
630 DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> >& Uses,
631 DenseMap<MachineInstr*, VNInfo*>& NewVNs,
632 DenseMap<MachineBasicBlock*, VNInfo*>& LiveOut,
633 DenseMap<MachineBasicBlock*, VNInfo*>& Phis,
634 bool IsTopLevel, bool IsIntraBlock) {
635 // NOTE: Because this is the fallback case from other cases, we do NOT
636 // assume that we are not intrablock here.
637 if (Phis.count(MBB)) return Phis[MBB];
638
639 unsigned StartIndex = LIs->getMBBStartIdx(MBB);
Lang Hames857c4e02009-06-17 21:01:20 +0000640 VNInfo *RetVNI = Phis[MBB] =
641 LI->getNextValue(0, /*FIXME*/ 0, false, LIs->getVNInfoAllocator());
642
Evan Cheng19a72582009-02-02 18:33:18 +0000643 if (!IsIntraBlock) LiveOut[MBB] = RetVNI;
644
645 // If there are no uses or defs between our starting point and the
646 // beginning of the block, then recursive perform phi construction
647 // on our predecessors.
648 DenseMap<MachineBasicBlock*, VNInfo*> IncomingVNs;
649 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
650 PE = MBB->pred_end(); PI != PE; ++PI) {
651 VNInfo* Incoming = PerformPHIConstruction((*PI)->end(), *PI, LI,
652 Visited, Defs, Uses, NewVNs,
653 LiveOut, Phis, false, false);
654 if (Incoming != 0)
655 IncomingVNs[*PI] = Incoming;
656 }
657
Lang Hames857c4e02009-06-17 21:01:20 +0000658 if (MBB->pred_size() == 1 && !RetVNI->hasPHIKill()) {
Owen Anderson5b93f6f2009-02-02 22:42:01 +0000659 VNInfo* OldVN = RetVNI;
660 VNInfo* NewVN = IncomingVNs.begin()->second;
661 VNInfo* MergedVN = LI->MergeValueNumberInto(OldVN, NewVN);
662 if (MergedVN == OldVN) std::swap(OldVN, NewVN);
663
664 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator LOI = LiveOut.begin(),
665 LOE = LiveOut.end(); LOI != LOE; ++LOI)
666 if (LOI->second == OldVN)
667 LOI->second = MergedVN;
668 for (DenseMap<MachineInstr*, VNInfo*>::iterator NVI = NewVNs.begin(),
669 NVE = NewVNs.end(); NVI != NVE; ++NVI)
670 if (NVI->second == OldVN)
671 NVI->second = MergedVN;
672 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator PI = Phis.begin(),
673 PE = Phis.end(); PI != PE; ++PI)
674 if (PI->second == OldVN)
675 PI->second = MergedVN;
676 RetVNI = MergedVN;
Evan Cheng19a72582009-02-02 18:33:18 +0000677 } else {
678 // Otherwise, merge the incoming VNInfos with a phi join. Create a new
679 // VNInfo to represent the joined value.
680 for (DenseMap<MachineBasicBlock*, VNInfo*>::iterator I =
681 IncomingVNs.begin(), E = IncomingVNs.end(); I != E; ++I) {
Lang Hames857c4e02009-06-17 21:01:20 +0000682 I->second->setHasPHIKill(true);
Evan Cheng19a72582009-02-02 18:33:18 +0000683 unsigned KillIndex = LIs->getMBBEndIdx(I->first);
684 if (!LiveInterval::isKill(I->second, KillIndex))
Lang Hamesffd13262009-07-09 03:57:02 +0000685 LI->addKill(I->second, KillIndex, false);
Evan Cheng19a72582009-02-02 18:33:18 +0000686 }
687 }
688
689 unsigned EndIndex = 0;
690 if (IsIntraBlock) {
691 EndIndex = LIs->getInstructionIndex(UseI);
692 EndIndex = LiveIntervals::getUseIndex(EndIndex);
693 } else
694 EndIndex = LIs->getMBBEndIdx(MBB);
695 LI->addRange(LiveRange(StartIndex, EndIndex+1, RetVNI));
696 if (IsIntraBlock)
Lang Hamesffd13262009-07-09 03:57:02 +0000697 LI->addKill(RetVNI, EndIndex, false);
Evan Cheng19a72582009-02-02 18:33:18 +0000698
699 // Memoize results so we don't have to recompute them.
700 if (!IsIntraBlock)
701 LiveOut[MBB] = RetVNI;
702 else {
703 if (!NewVNs.count(UseI))
704 NewVNs[UseI] = RetVNI;
705 Visited.insert(UseI);
706 }
707
708 return RetVNI;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000709}
710
711/// ReconstructLiveInterval - Recompute a live interval from scratch.
712void PreAllocSplitting::ReconstructLiveInterval(LiveInterval* LI) {
713 BumpPtrAllocator& Alloc = LIs->getVNInfoAllocator();
714
715 // Clear the old ranges and valnos;
716 LI->clear();
717
718 // Cache the uses and defs of the register
719 typedef DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> > RegMap;
720 RegMap Defs, Uses;
721
722 // Keep track of the new VNs we're creating.
723 DenseMap<MachineInstr*, VNInfo*> NewVNs;
724 SmallPtrSet<VNInfo*, 2> PhiVNs;
725
726 // Cache defs, and create a new VNInfo for each def.
727 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
728 DE = MRI->def_end(); DI != DE; ++DI) {
729 Defs[(*DI).getParent()].insert(&*DI);
730
731 unsigned DefIdx = LIs->getInstructionIndex(&*DI);
732 DefIdx = LiveIntervals::getDefIndex(DefIdx);
733
Lang Hames857c4e02009-06-17 21:01:20 +0000734 assert(DI->getOpcode() != TargetInstrInfo::PHI &&
735 "Following NewVN isPHIDef flag incorrect. Fix me!");
736 VNInfo* NewVN = LI->getNextValue(DefIdx, 0, true, Alloc);
Owen Anderson200ee7f2009-01-06 07:53:32 +0000737
738 // If the def is a move, set the copy field.
Evan Cheng04ee5a12009-01-20 19:12:24 +0000739 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
740 if (TII->isMoveInstr(*DI, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
741 if (DstReg == LI->reg)
Owen Anderson200ee7f2009-01-06 07:53:32 +0000742 NewVN->copy = &*DI;
743
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000744 NewVNs[&*DI] = NewVN;
745 }
746
747 // Cache uses as a separate pass from actually processing them.
748 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
749 UE = MRI->use_end(); UI != UE; ++UI)
750 Uses[(*UI).getParent()].insert(&*UI);
751
752 // Now, actually process every use and use a phi construction algorithm
753 // to walk from it to its reaching definitions, building VNInfos along
754 // the way.
Owen Anderson7d211e22008-12-31 02:00:25 +0000755 DenseMap<MachineBasicBlock*, VNInfo*> LiveOut;
756 DenseMap<MachineBasicBlock*, VNInfo*> Phis;
Owen Anderson200ee7f2009-01-06 07:53:32 +0000757 SmallPtrSet<MachineInstr*, 4> Visited;
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000758 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(LI->reg),
759 UE = MRI->use_end(); UI != UE; ++UI) {
Owen Anderson200ee7f2009-01-06 07:53:32 +0000760 PerformPHIConstruction(&*UI, UI->getParent(), LI, Visited, Defs,
Owen Anderson7d211e22008-12-31 02:00:25 +0000761 Uses, NewVNs, LiveOut, Phis, true, true);
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000762 }
Owen Andersond4f6fe52008-12-28 23:35:13 +0000763
764 // Add ranges for dead defs
765 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(LI->reg),
766 DE = MRI->def_end(); DI != DE; ++DI) {
767 unsigned DefIdx = LIs->getInstructionIndex(&*DI);
768 DefIdx = LiveIntervals::getDefIndex(DefIdx);
Owen Andersond4f6fe52008-12-28 23:35:13 +0000769
770 if (LI->liveAt(DefIdx)) continue;
771
772 VNInfo* DeadVN = NewVNs[&*DI];
Owen Anderson7d211e22008-12-31 02:00:25 +0000773 LI->addRange(LiveRange(DefIdx, DefIdx+1, DeadVN));
Lang Hamesffd13262009-07-09 03:57:02 +0000774 LI->addKill(DeadVN, DefIdx, false);
Owen Andersond4f6fe52008-12-28 23:35:13 +0000775 }
Owen Anderson60d4f6d2008-12-28 21:48:48 +0000776}
777
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000778/// RenumberValno - Split the given valno out into a new vreg, allowing it to
779/// be allocated to a different register. This function creates a new vreg,
780/// copies the valno and its live ranges over to the new vreg's interval,
781/// removes them from the old interval, and rewrites all uses and defs of
782/// the original reg to the new vreg within those ranges.
783void PreAllocSplitting::RenumberValno(VNInfo* VN) {
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000784 SmallVector<VNInfo*, 4> Stack;
785 SmallVector<VNInfo*, 4> VNsToCopy;
786 Stack.push_back(VN);
787
788 // Walk through and copy the valno we care about, and any other valnos
789 // that are two-address redefinitions of the one we care about. These
790 // will need to be rewritten as well. We also check for safety of the
791 // renumbering here, by making sure that none of the valno involved has
792 // phi kills.
793 while (!Stack.empty()) {
794 VNInfo* OldVN = Stack.back();
795 Stack.pop_back();
796
797 // Bail out if we ever encounter a valno that has a PHI kill. We can't
798 // renumber these.
Lang Hames857c4e02009-06-17 21:01:20 +0000799 if (OldVN->hasPHIKill()) return;
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000800
801 VNsToCopy.push_back(OldVN);
802
803 // Locate two-address redefinitions
Lang Hamesffd13262009-07-09 03:57:02 +0000804 for (VNInfo::KillSet::iterator KI = OldVN->kills.begin(),
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000805 KE = OldVN->kills.end(); KI != KE; ++KI) {
Lang Hamesffd13262009-07-09 03:57:02 +0000806 assert(!KI->isPHIKill && "VN previously reported having no PHI kills.");
807 MachineInstr* MI = LIs->getInstructionFromIndex(KI->killIdx);
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000808 unsigned DefIdx = MI->findRegisterDefOperandIdx(CurrLI->reg);
809 if (DefIdx == ~0U) continue;
Bob Wilsond9df5012009-04-09 17:16:43 +0000810 if (MI->isRegTiedToUseOperand(DefIdx)) {
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000811 VNInfo* NextVN =
Lang Hamesffd13262009-07-09 03:57:02 +0000812 CurrLI->findDefinedVNInfo(LiveIntervals::getDefIndex(KI->killIdx));
Owen Andersonb4b84362009-01-26 21:57:31 +0000813 if (NextVN == OldVN) continue;
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000814 Stack.push_back(NextVN);
815 }
816 }
817 }
818
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000819 // Create the new vreg
820 unsigned NewVReg = MRI->createVirtualRegister(MRI->getRegClass(CurrLI->reg));
821
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000822 // Create the new live interval
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000823 LiveInterval& NewLI = LIs->getOrCreateInterval(NewVReg);
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000824
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000825 for (SmallVector<VNInfo*, 4>::iterator OI = VNsToCopy.begin(), OE =
826 VNsToCopy.end(); OI != OE; ++OI) {
827 VNInfo* OldVN = *OI;
828
829 // Copy the valno over
Lang Hames857c4e02009-06-17 21:01:20 +0000830 VNInfo* NewVN = NewLI.createValueCopy(OldVN, LIs->getVNInfoAllocator());
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000831 NewLI.MergeValueInAsValue(*CurrLI, OldVN, NewVN);
832
833 // Remove the valno from the old interval
834 CurrLI->removeValNo(OldVN);
835 }
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000836
837 // Rewrite defs and uses. This is done in two stages to avoid invalidating
838 // the reg_iterator.
839 SmallVector<std::pair<MachineInstr*, unsigned>, 8> OpsToChange;
840
841 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
842 E = MRI->reg_end(); I != E; ++I) {
843 MachineOperand& MO = I.getOperand();
844 unsigned InstrIdx = LIs->getInstructionIndex(&*I);
845
846 if ((MO.isUse() && NewLI.liveAt(LiveIntervals::getUseIndex(InstrIdx))) ||
847 (MO.isDef() && NewLI.liveAt(LiveIntervals::getDefIndex(InstrIdx))))
848 OpsToChange.push_back(std::make_pair(&*I, I.getOperandNo()));
849 }
850
851 for (SmallVector<std::pair<MachineInstr*, unsigned>, 8>::iterator I =
852 OpsToChange.begin(), E = OpsToChange.end(); I != E; ++I) {
853 MachineInstr* Inst = I->first;
854 unsigned OpIdx = I->second;
855 MachineOperand& MO = Inst->getOperand(OpIdx);
856 MO.setReg(NewVReg);
857 }
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000858
Owen Anderson420dd372009-03-14 21:40:05 +0000859 // Grow the VirtRegMap, since we've created a new vreg.
860 VRM->grow();
861
Owen Anderson45e68552009-01-29 05:28:55 +0000862 // The renumbered vreg shares a stack slot with the old register.
863 if (IntervalSSMap.count(CurrLI->reg))
864 IntervalSSMap[NewVReg] = IntervalSSMap[CurrLI->reg];
865
Owen Anderson2ebf63f2008-12-18 01:27:19 +0000866 NumRenumbers++;
Owen Andersond0b6a0d2008-12-16 21:35:08 +0000867}
868
Owen Anderson6002e992008-12-04 21:20:30 +0000869bool PreAllocSplitting::Rematerialize(unsigned vreg, VNInfo* ValNo,
870 MachineInstr* DefMI,
871 MachineBasicBlock::iterator RestorePt,
872 unsigned RestoreIdx,
873 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
874 MachineBasicBlock& MBB = *RestorePt->getParent();
875
876 MachineBasicBlock::iterator KillPt = BarrierMBB->end();
877 unsigned KillIdx = 0;
Lang Hames857c4e02009-06-17 21:01:20 +0000878 if (!ValNo->isDefAccurate() || DefMI->getParent() == BarrierMBB)
Owen Anderson6002e992008-12-04 21:20:30 +0000879 KillPt = findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, KillIdx);
880 else
881 KillPt = findNextEmptySlot(DefMI->getParent(), DefMI, KillIdx);
882
883 if (KillPt == DefMI->getParent()->end())
884 return false;
885
886 TII->reMaterialize(MBB, RestorePt, vreg, DefMI);
887 LIs->InsertMachineInstrInMaps(prior(RestorePt), RestoreIdx);
888
Owen Andersonb4b84362009-01-26 21:57:31 +0000889 ReconstructLiveInterval(CurrLI);
890 unsigned RematIdx = LIs->getInstructionIndex(prior(RestorePt));
891 RematIdx = LiveIntervals::getDefIndex(RematIdx);
892 RenumberValno(CurrLI->findDefinedVNInfo(RematIdx));
Owen Andersone1762c92009-01-12 03:10:40 +0000893
Owen Anderson75fa96b2008-11-19 04:28:29 +0000894 ++NumSplits;
895 ++NumRemats;
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000896 return true;
897}
898
899MachineInstr* PreAllocSplitting::FoldSpill(unsigned vreg,
900 const TargetRegisterClass* RC,
901 MachineInstr* DefMI,
902 MachineInstr* Barrier,
903 MachineBasicBlock* MBB,
904 int& SS,
905 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
906 MachineBasicBlock::iterator Pt = MBB->begin();
907
908 // Go top down if RefsInMBB is empty.
909 if (RefsInMBB.empty())
910 return 0;
Owen Anderson75fa96b2008-11-19 04:28:29 +0000911
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000912 MachineBasicBlock::iterator FoldPt = Barrier;
913 while (&*FoldPt != DefMI && FoldPt != MBB->begin() &&
914 !RefsInMBB.count(FoldPt))
915 --FoldPt;
916
917 int OpIdx = FoldPt->findRegisterDefOperandIdx(vreg, false);
918 if (OpIdx == -1)
919 return 0;
920
921 SmallVector<unsigned, 1> Ops;
922 Ops.push_back(OpIdx);
923
924 if (!TII->canFoldMemoryOperand(FoldPt, Ops))
925 return 0;
926
927 DenseMap<unsigned, int>::iterator I = IntervalSSMap.find(vreg);
928 if (I != IntervalSSMap.end()) {
929 SS = I->second;
930 } else {
Evan Chengc781a242009-05-03 18:32:42 +0000931 SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment());
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000932 }
933
934 MachineInstr* FMI = TII->foldMemoryOperand(*MBB->getParent(),
935 FoldPt, Ops, SS);
936
937 if (FMI) {
938 LIs->ReplaceMachineInstrInMaps(FoldPt, FMI);
939 FMI = MBB->insert(MBB->erase(FoldPt), FMI);
940 ++NumFolds;
941
942 IntervalSSMap[vreg] = SS;
Evan Chengc781a242009-05-03 18:32:42 +0000943 CurrSLI = &LSs->getOrCreateInterval(SS, RC);
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000944 if (CurrSLI->hasAtLeastOneValue())
945 CurrSValNo = CurrSLI->getValNumInfo(0);
946 else
Lang Hames857c4e02009-06-17 21:01:20 +0000947 CurrSValNo = CurrSLI->getNextValue(0, 0, false, LSs->getVNInfoAllocator());
Owen Anderson7b9d67c2008-12-02 18:53:47 +0000948 }
949
950 return FMI;
Owen Anderson75fa96b2008-11-19 04:28:29 +0000951}
952
Owen Andersonc93023a2009-03-04 08:52:31 +0000953MachineInstr* PreAllocSplitting::FoldRestore(unsigned vreg,
954 const TargetRegisterClass* RC,
955 MachineInstr* Barrier,
956 MachineBasicBlock* MBB,
957 int SS,
958 SmallPtrSet<MachineInstr*, 4>& RefsInMBB) {
Owen Andersona2bfb542009-03-05 08:23:20 +0000959 if ((int)RestoreFoldLimit != -1 && RestoreFoldLimit == (int)NumRestoreFolds)
Owen Anderson323c58d2009-03-05 07:19:18 +0000960 return 0;
961
Owen Andersonc93023a2009-03-04 08:52:31 +0000962 // Go top down if RefsInMBB is empty.
963 if (RefsInMBB.empty())
964 return 0;
965
966 // Can't fold a restore between a call stack setup and teardown.
967 MachineBasicBlock::iterator FoldPt = Barrier;
Owen Anderson323c58d2009-03-05 07:19:18 +0000968
969 // Advance from barrier to call frame teardown.
970 while (FoldPt != MBB->getFirstTerminator() &&
971 FoldPt->getOpcode() != TRI->getCallFrameDestroyOpcode()) {
972 if (RefsInMBB.count(FoldPt))
973 return 0;
Owen Andersonc93023a2009-03-04 08:52:31 +0000974
Owen Anderson323c58d2009-03-05 07:19:18 +0000975 ++FoldPt;
976 }
977
978 if (FoldPt == MBB->getFirstTerminator())
979 return 0;
980 else
981 ++FoldPt;
982
983 // Now find the restore point.
984 while (FoldPt != MBB->getFirstTerminator() && !RefsInMBB.count(FoldPt)) {
Owen Andersonc93023a2009-03-04 08:52:31 +0000985 if (FoldPt->getOpcode() == TRI->getCallFrameSetupOpcode()) {
986 while (FoldPt != MBB->getFirstTerminator() &&
987 FoldPt->getOpcode() != TRI->getCallFrameDestroyOpcode()) {
988 if (RefsInMBB.count(FoldPt))
989 return 0;
990
991 ++FoldPt;
992 }
993
Owen Anderson323c58d2009-03-05 07:19:18 +0000994 if (FoldPt == MBB->getFirstTerminator())
995 return 0;
996 }
997
998 ++FoldPt;
Owen Andersonc93023a2009-03-04 08:52:31 +0000999 }
1000
1001 if (FoldPt == MBB->getFirstTerminator())
1002 return 0;
1003
1004 int OpIdx = FoldPt->findRegisterUseOperandIdx(vreg, true);
1005 if (OpIdx == -1)
1006 return 0;
1007
1008 SmallVector<unsigned, 1> Ops;
1009 Ops.push_back(OpIdx);
1010
1011 if (!TII->canFoldMemoryOperand(FoldPt, Ops))
1012 return 0;
1013
1014 MachineInstr* FMI = TII->foldMemoryOperand(*MBB->getParent(),
1015 FoldPt, Ops, SS);
1016
1017 if (FMI) {
1018 LIs->ReplaceMachineInstrInMaps(FoldPt, FMI);
1019 FMI = MBB->insert(MBB->erase(FoldPt), FMI);
Owen Anderson323c58d2009-03-05 07:19:18 +00001020 ++NumRestoreFolds;
Owen Andersonc93023a2009-03-04 08:52:31 +00001021 }
1022
1023 return FMI;
1024}
1025
Evan Chengf5cd4f02008-10-23 20:43:13 +00001026/// SplitRegLiveInterval - Split (spill and restore) the given live interval
1027/// so it would not cross the barrier that's being processed. Shrink wrap
1028/// (minimize) the live interval to the last uses.
1029bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) {
1030 CurrLI = LI;
1031
1032 // Find live range where current interval cross the barrier.
1033 LiveInterval::iterator LR =
1034 CurrLI->FindLiveRangeContaining(LIs->getUseIndex(BarrierIdx));
1035 VNInfo *ValNo = LR->valno;
1036
Lang Hames857c4e02009-06-17 21:01:20 +00001037 if (ValNo->isUnused()) {
Evan Chengf5cd4f02008-10-23 20:43:13 +00001038 // Defined by a dead def? How can this be?
1039 assert(0 && "Val# is defined by a dead def?");
1040 abort();
1041 }
1042
Lang Hames857c4e02009-06-17 21:01:20 +00001043 MachineInstr *DefMI = ValNo->isDefAccurate()
Evan Cheng06587492008-10-24 02:05:00 +00001044 ? LIs->getInstructionFromIndex(ValNo->def) : NULL;
Evan Cheng06587492008-10-24 02:05:00 +00001045
Owen Andersond3be4622009-01-21 08:18:03 +00001046 // If this would create a new join point, do not split.
1047 if (DefMI && createsNewJoin(LR, DefMI->getParent(), Barrier->getParent()))
1048 return false;
1049
Evan Chengf5cd4f02008-10-23 20:43:13 +00001050 // Find all references in the barrier mbb.
1051 SmallPtrSet<MachineInstr*, 4> RefsInMBB;
1052 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
1053 E = MRI->reg_end(); I != E; ++I) {
1054 MachineInstr *RefMI = &*I;
1055 if (RefMI->getParent() == BarrierMBB)
1056 RefsInMBB.insert(RefMI);
1057 }
1058
1059 // Find a point to restore the value after the barrier.
Evan Chengb964f332009-01-26 18:33:51 +00001060 unsigned RestoreIndex = 0;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001061 MachineBasicBlock::iterator RestorePt =
Evan Chengf62ce372008-10-28 00:47:49 +00001062 findRestorePoint(BarrierMBB, Barrier, LR->end, RefsInMBB, RestoreIndex);
Evan Chengf5cd4f02008-10-23 20:43:13 +00001063 if (RestorePt == BarrierMBB->end())
1064 return false;
1065
Owen Anderson75fa96b2008-11-19 04:28:29 +00001066 if (DefMI && LIs->isReMaterializable(*LI, ValNo, DefMI))
1067 if (Rematerialize(LI->reg, ValNo, DefMI, RestorePt,
1068 RestoreIndex, RefsInMBB))
1069 return true;
1070
Evan Chengf5cd4f02008-10-23 20:43:13 +00001071 // Add a spill either before the barrier or after the definition.
Evan Cheng06587492008-10-24 02:05:00 +00001072 MachineBasicBlock *DefMBB = DefMI ? DefMI->getParent() : NULL;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001073 const TargetRegisterClass *RC = MRI->getRegClass(CurrLI->reg);
Evan Chengf5cd4f02008-10-23 20:43:13 +00001074 unsigned SpillIndex = 0;
Evan Cheng06587492008-10-24 02:05:00 +00001075 MachineInstr *SpillMI = NULL;
Evan Cheng985921e2008-10-27 23:29:28 +00001076 int SS = -1;
Lang Hames857c4e02009-06-17 21:01:20 +00001077 if (!ValNo->isDefAccurate()) {
1078 // If we don't know where the def is we must split just before the barrier.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001079 if ((SpillMI = FoldSpill(LI->reg, RC, 0, Barrier,
1080 BarrierMBB, SS, RefsInMBB))) {
1081 SpillIndex = LIs->getInstructionIndex(SpillMI);
1082 } else {
1083 MachineBasicBlock::iterator SpillPt =
1084 findSpillPoint(BarrierMBB, Barrier, NULL, RefsInMBB, SpillIndex);
1085 if (SpillPt == BarrierMBB->begin())
1086 return false; // No gap to insert spill.
1087 // Add spill.
1088
1089 SS = CreateSpillStackSlot(CurrLI->reg, RC);
1090 TII->storeRegToStackSlot(*BarrierMBB, SpillPt, CurrLI->reg, true, SS, RC);
1091 SpillMI = prior(SpillPt);
1092 LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
1093 }
Evan Cheng54898932008-10-29 08:39:34 +00001094 } else if (!IsAvailableInStack(DefMBB, CurrLI->reg, ValNo->def,
1095 RestoreIndex, SpillIndex, SS)) {
Evan Cheng78dfef72008-10-25 00:52:41 +00001096 // If it's already split, just restore the value. There is no need to spill
1097 // the def again.
Evan Chengd0e32c52008-10-29 05:06:14 +00001098 if (!DefMI)
1099 return false; // Def is dead. Do nothing.
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001100
1101 if ((SpillMI = FoldSpill(LI->reg, RC, DefMI, Barrier,
1102 BarrierMBB, SS, RefsInMBB))) {
1103 SpillIndex = LIs->getInstructionIndex(SpillMI);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001104 } else {
Owen Anderson7b9d67c2008-12-02 18:53:47 +00001105 // Check if it's possible to insert a spill after the def MI.
1106 MachineBasicBlock::iterator SpillPt;
1107 if (DefMBB == BarrierMBB) {
1108 // Add spill after the def and the last use before the barrier.
1109 SpillPt = findSpillPoint(BarrierMBB, Barrier, DefMI,
1110 RefsInMBB, SpillIndex);
1111 if (SpillPt == DefMBB->begin())
1112 return false; // No gap to insert spill.
1113 } else {
1114 SpillPt = findNextEmptySlot(DefMBB, DefMI, SpillIndex);
1115 if (SpillPt == DefMBB->end())
1116 return false; // No gap to insert spill.
1117 }
1118 // Add spill. The store instruction kills the register if def is before
1119 // the barrier in the barrier block.
1120 SS = CreateSpillStackSlot(CurrLI->reg, RC);
1121 TII->storeRegToStackSlot(*DefMBB, SpillPt, CurrLI->reg,
1122 DefMBB == BarrierMBB, SS, RC);
1123 SpillMI = prior(SpillPt);
1124 LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex);
Evan Cheng1f08cc22008-10-28 05:28:21 +00001125 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001126 }
1127
Evan Cheng54898932008-10-29 08:39:34 +00001128 // Remember def instruction index to spill index mapping.
1129 if (DefMI && SpillMI)
1130 Def2SpillMap[ValNo->def] = SpillIndex;
1131
Evan Chengf5cd4f02008-10-23 20:43:13 +00001132 // Add restore.
Owen Andersonc93023a2009-03-04 08:52:31 +00001133 bool FoldedRestore = false;
1134 if (MachineInstr* LMI = FoldRestore(CurrLI->reg, RC, Barrier,
1135 BarrierMBB, SS, RefsInMBB)) {
1136 RestorePt = LMI;
Owen Anderson323c58d2009-03-05 07:19:18 +00001137 RestoreIndex = LIs->getInstructionIndex(RestorePt);
Owen Andersonc93023a2009-03-04 08:52:31 +00001138 FoldedRestore = true;
1139 } else {
1140 TII->loadRegFromStackSlot(*BarrierMBB, RestorePt, CurrLI->reg, SS, RC);
1141 MachineInstr *LoadMI = prior(RestorePt);
1142 LIs->InsertMachineInstrInMaps(LoadMI, RestoreIndex);
1143 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001144
Evan Chengd0e32c52008-10-29 05:06:14 +00001145 // Update spill stack slot live interval.
Evan Cheng54898932008-10-29 08:39:34 +00001146 UpdateSpillSlotInterval(ValNo, LIs->getUseIndex(SpillIndex)+1,
1147 LIs->getDefIndex(RestoreIndex));
Evan Chengd0e32c52008-10-29 05:06:14 +00001148
Owen Andersonb4b84362009-01-26 21:57:31 +00001149 ReconstructLiveInterval(CurrLI);
Owen Andersonc93023a2009-03-04 08:52:31 +00001150
1151 if (!FoldedRestore) {
1152 unsigned RestoreIdx = LIs->getInstructionIndex(prior(RestorePt));
1153 RestoreIdx = LiveIntervals::getDefIndex(RestoreIdx);
1154 RenumberValno(CurrLI->findDefinedVNInfo(RestoreIdx));
1155 }
Owen Anderson7d211e22008-12-31 02:00:25 +00001156
Evan Chengae7fa5b2008-10-28 01:48:24 +00001157 ++NumSplits;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001158 return true;
1159}
1160
1161/// SplitRegLiveIntervals - Split all register live intervals that cross the
1162/// barrier that's being processed.
1163bool
Owen Anderson956ec272009-01-23 00:23:32 +00001164PreAllocSplitting::SplitRegLiveIntervals(const TargetRegisterClass **RCs,
1165 SmallPtrSet<LiveInterval*, 8>& Split) {
Evan Chengf5cd4f02008-10-23 20:43:13 +00001166 // First find all the virtual registers whose live intervals are intercepted
1167 // by the current barrier.
1168 SmallVector<LiveInterval*, 8> Intervals;
1169 for (const TargetRegisterClass **RC = RCs; *RC; ++RC) {
Evan Cheng4350eb82009-02-06 17:17:30 +00001170 // FIXME: If it's not safe to move any instruction that defines the barrier
1171 // register class, then it means there are some special dependencies which
1172 // codegen is not modelling. Ignore these barriers for now.
1173 if (!TII->isSafeToMoveRegClassDefs(*RC))
Evan Cheng23066282008-10-27 07:14:50 +00001174 continue;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001175 std::vector<unsigned> &VRs = MRI->getRegClassVirtRegs(*RC);
1176 for (unsigned i = 0, e = VRs.size(); i != e; ++i) {
1177 unsigned Reg = VRs[i];
1178 if (!LIs->hasInterval(Reg))
1179 continue;
1180 LiveInterval *LI = &LIs->getInterval(Reg);
1181 if (LI->liveAt(BarrierIdx) && !Barrier->readsRegister(Reg))
1182 // Virtual register live interval is intercepted by the barrier. We
1183 // should split and shrink wrap its interval if possible.
1184 Intervals.push_back(LI);
1185 }
1186 }
1187
1188 // Process the affected live intervals.
1189 bool Change = false;
1190 while (!Intervals.empty()) {
Evan Chengae7fa5b2008-10-28 01:48:24 +00001191 if (PreSplitLimit != -1 && (int)NumSplits == PreSplitLimit)
1192 break;
Owen Andersone1762c92009-01-12 03:10:40 +00001193 else if (NumSplits == 4)
1194 Change |= Change;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001195 LiveInterval *LI = Intervals.back();
1196 Intervals.pop_back();
Owen Anderson956ec272009-01-23 00:23:32 +00001197 bool result = SplitRegLiveInterval(LI);
1198 if (result) Split.insert(LI);
1199 Change |= result;
Evan Chengf5cd4f02008-10-23 20:43:13 +00001200 }
1201
1202 return Change;
1203}
1204
Owen Anderson45e68552009-01-29 05:28:55 +00001205unsigned PreAllocSplitting::getNumberOfNonSpills(
Owen Anderson32ca8652009-01-24 10:07:43 +00001206 SmallPtrSet<MachineInstr*, 4>& MIs,
Owen Anderson45e68552009-01-29 05:28:55 +00001207 unsigned Reg, int FrameIndex,
1208 bool& FeedsTwoAddr) {
1209 unsigned NonSpills = 0;
Owen Anderson32ca8652009-01-24 10:07:43 +00001210 for (SmallPtrSet<MachineInstr*, 4>::iterator UI = MIs.begin(), UE = MIs.end();
Owen Anderson45e68552009-01-29 05:28:55 +00001211 UI != UE; ++UI) {
Owen Anderson32ca8652009-01-24 10:07:43 +00001212 int StoreFrameIndex;
1213 unsigned StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
Owen Anderson45e68552009-01-29 05:28:55 +00001214 if (StoreVReg != Reg || StoreFrameIndex != FrameIndex)
1215 NonSpills++;
1216
1217 int DefIdx = (*UI)->findRegisterDefOperandIdx(Reg);
Bob Wilsond9df5012009-04-09 17:16:43 +00001218 if (DefIdx != -1 && (*UI)->isRegTiedToUseOperand(DefIdx))
Owen Anderson45e68552009-01-29 05:28:55 +00001219 FeedsTwoAddr = true;
Owen Anderson32ca8652009-01-24 10:07:43 +00001220 }
1221
Owen Anderson45e68552009-01-29 05:28:55 +00001222 return NonSpills;
Owen Anderson32ca8652009-01-24 10:07:43 +00001223}
1224
Owen Anderson956ec272009-01-23 00:23:32 +00001225/// removeDeadSpills - After doing splitting, filter through all intervals we've
1226/// split, and see if any of the spills are unnecessary. If so, remove them.
1227bool PreAllocSplitting::removeDeadSpills(SmallPtrSet<LiveInterval*, 8>& split) {
1228 bool changed = false;
1229
Owen Anderson4bfc2092009-01-29 05:41:02 +00001230 // Walk over all of the live intervals that were touched by the splitter,
1231 // and see if we can do any DCE and/or folding.
Owen Anderson956ec272009-01-23 00:23:32 +00001232 for (SmallPtrSet<LiveInterval*, 8>::iterator LI = split.begin(),
1233 LE = split.end(); LI != LE; ++LI) {
Owen Anderson9ce499a2009-01-23 03:28:53 +00001234 DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> > VNUseCount;
Owen Anderson956ec272009-01-23 00:23:32 +00001235
Owen Anderson4bfc2092009-01-29 05:41:02 +00001236 // First, collect all the uses of the vreg, and sort them by their
1237 // reaching definition (VNInfo).
Owen Anderson956ec272009-01-23 00:23:32 +00001238 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin((*LI)->reg),
1239 UE = MRI->use_end(); UI != UE; ++UI) {
1240 unsigned index = LIs->getInstructionIndex(&*UI);
1241 index = LiveIntervals::getUseIndex(index);
1242
1243 const LiveRange* LR = (*LI)->getLiveRangeContaining(index);
Owen Anderson9ce499a2009-01-23 03:28:53 +00001244 VNUseCount[LR->valno].insert(&*UI);
Owen Anderson956ec272009-01-23 00:23:32 +00001245 }
1246
Owen Anderson4bfc2092009-01-29 05:41:02 +00001247 // Now, take the definitions (VNInfo's) one at a time and try to DCE
1248 // and/or fold them away.
Owen Anderson956ec272009-01-23 00:23:32 +00001249 for (LiveInterval::vni_iterator VI = (*LI)->vni_begin(),
1250 VE = (*LI)->vni_end(); VI != VE; ++VI) {
Owen Anderson45e68552009-01-29 05:28:55 +00001251
1252 if (DeadSplitLimit != -1 && (int)NumDeadSpills == DeadSplitLimit)
1253 return changed;
1254
Owen Anderson956ec272009-01-23 00:23:32 +00001255 VNInfo* CurrVN = *VI;
Owen Anderson4bfc2092009-01-29 05:41:02 +00001256
1257 // We don't currently try to handle definitions with PHI kills, because
1258 // it would involve processing more than one VNInfo at once.
Lang Hames857c4e02009-06-17 21:01:20 +00001259 if (CurrVN->hasPHIKill()) continue;
Owen Anderson956ec272009-01-23 00:23:32 +00001260
Owen Anderson4bfc2092009-01-29 05:41:02 +00001261 // We also don't try to handle the results of PHI joins, since there's
1262 // no defining instruction to analyze.
Lang Hames857c4e02009-06-17 21:01:20 +00001263 if (!CurrVN->isDefAccurate() || CurrVN->isUnused()) continue;
Owen Anderson9ce499a2009-01-23 03:28:53 +00001264
Owen Anderson4bfc2092009-01-29 05:41:02 +00001265 // We're only interested in eliminating cruft introduced by the splitter,
1266 // is of the form load-use or load-use-store. First, check that the
1267 // definition is a load, and remember what stack slot we loaded it from.
Lang Hames857c4e02009-06-17 21:01:20 +00001268 MachineInstr* DefMI = LIs->getInstructionFromIndex(CurrVN->def);
Owen Anderson956ec272009-01-23 00:23:32 +00001269 int FrameIndex;
1270 if (!TII->isLoadFromStackSlot(DefMI, FrameIndex)) continue;
1271
Owen Anderson4bfc2092009-01-29 05:41:02 +00001272 // If the definition has no uses at all, just DCE it.
Owen Anderson9ce499a2009-01-23 03:28:53 +00001273 if (VNUseCount[CurrVN].size() == 0) {
1274 LIs->RemoveMachineInstrFromMaps(DefMI);
1275 (*LI)->removeValNo(CurrVN);
1276 DefMI->eraseFromParent();
Owen Andersonc0f3a032009-01-29 08:22:06 +00001277 VNUseCount.erase(CurrVN);
Owen Anderson9ce499a2009-01-23 03:28:53 +00001278 NumDeadSpills++;
1279 changed = true;
Owen Anderson32ca8652009-01-24 10:07:43 +00001280 continue;
Owen Anderson9ce499a2009-01-23 03:28:53 +00001281 }
Owen Anderson32ca8652009-01-24 10:07:43 +00001282
Owen Anderson4bfc2092009-01-29 05:41:02 +00001283 // Second, get the number of non-store uses of the definition, as well as
1284 // a flag indicating whether it feeds into a later two-address definition.
Owen Anderson45e68552009-01-29 05:28:55 +00001285 bool FeedsTwoAddr = false;
1286 unsigned NonSpillCount = getNumberOfNonSpills(VNUseCount[CurrVN],
1287 (*LI)->reg, FrameIndex,
1288 FeedsTwoAddr);
1289
Owen Anderson4bfc2092009-01-29 05:41:02 +00001290 // If there's one non-store use and it doesn't feed a two-addr, then
1291 // this is a load-use-store case that we can try to fold.
Owen Anderson45e68552009-01-29 05:28:55 +00001292 if (NonSpillCount == 1 && !FeedsTwoAddr) {
Owen Anderson4bfc2092009-01-29 05:41:02 +00001293 // Start by finding the non-store use MachineInstr.
Owen Anderson45e68552009-01-29 05:28:55 +00001294 SmallPtrSet<MachineInstr*, 4>::iterator UI = VNUseCount[CurrVN].begin();
1295 int StoreFrameIndex;
1296 unsigned StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
1297 while (UI != VNUseCount[CurrVN].end() &&
1298 (StoreVReg == (*LI)->reg && StoreFrameIndex == FrameIndex)) {
1299 ++UI;
1300 if (UI != VNUseCount[CurrVN].end())
1301 StoreVReg = TII->isStoreToStackSlot(*UI, StoreFrameIndex);
1302 }
Owen Anderson45e68552009-01-29 05:28:55 +00001303 if (UI == VNUseCount[CurrVN].end()) continue;
1304
1305 MachineInstr* use = *UI;
1306
Owen Anderson4bfc2092009-01-29 05:41:02 +00001307 // Attempt to fold it away!
Owen Anderson45e68552009-01-29 05:28:55 +00001308 int OpIdx = use->findRegisterUseOperandIdx((*LI)->reg, false);
1309 if (OpIdx == -1) continue;
Owen Anderson45e68552009-01-29 05:28:55 +00001310 SmallVector<unsigned, 1> Ops;
1311 Ops.push_back(OpIdx);
Owen Anderson45e68552009-01-29 05:28:55 +00001312 if (!TII->canFoldMemoryOperand(use, Ops)) continue;
1313
1314 MachineInstr* NewMI =
1315 TII->foldMemoryOperand(*use->getParent()->getParent(),
1316 use, Ops, FrameIndex);
1317
1318 if (!NewMI) continue;
1319
Owen Anderson4bfc2092009-01-29 05:41:02 +00001320 // Update relevant analyses.
Owen Anderson45e68552009-01-29 05:28:55 +00001321 LIs->RemoveMachineInstrFromMaps(DefMI);
1322 LIs->ReplaceMachineInstrInMaps(use, NewMI);
1323 (*LI)->removeValNo(CurrVN);
1324
1325 DefMI->eraseFromParent();
1326 MachineBasicBlock* MBB = use->getParent();
1327 NewMI = MBB->insert(MBB->erase(use), NewMI);
1328 VNUseCount[CurrVN].erase(use);
1329
Owen Anderson4bfc2092009-01-29 05:41:02 +00001330 // Remove deleted instructions. Note that we need to remove them from
1331 // the VNInfo->use map as well, just to be safe.
Owen Anderson45e68552009-01-29 05:28:55 +00001332 for (SmallPtrSet<MachineInstr*, 4>::iterator II =
1333 VNUseCount[CurrVN].begin(), IE = VNUseCount[CurrVN].end();
1334 II != IE; ++II) {
Owen Anderson4bfc2092009-01-29 05:41:02 +00001335 for (DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> >::iterator
Owen Andersonc0f3a032009-01-29 08:22:06 +00001336 VNI = VNUseCount.begin(), VNE = VNUseCount.end(); VNI != VNE;
1337 ++VNI)
1338 if (VNI->first != CurrVN)
1339 VNI->second.erase(*II);
Owen Anderson45e68552009-01-29 05:28:55 +00001340 LIs->RemoveMachineInstrFromMaps(*II);
1341 (*II)->eraseFromParent();
1342 }
Owen Andersonc0f3a032009-01-29 08:22:06 +00001343
1344 VNUseCount.erase(CurrVN);
Owen Anderson45e68552009-01-29 05:28:55 +00001345
1346 for (DenseMap<VNInfo*, SmallPtrSet<MachineInstr*, 4> >::iterator
1347 VI = VNUseCount.begin(), VE = VNUseCount.end(); VI != VE; ++VI)
1348 if (VI->second.erase(use))
1349 VI->second.insert(NewMI);
1350
1351 NumDeadSpills++;
1352 changed = true;
1353 continue;
1354 }
1355
Owen Anderson4bfc2092009-01-29 05:41:02 +00001356 // If there's more than one non-store instruction, we can't profitably
1357 // fold it, so bail.
Owen Anderson45e68552009-01-29 05:28:55 +00001358 if (NonSpillCount) continue;
Owen Anderson32ca8652009-01-24 10:07:43 +00001359
Owen Anderson4bfc2092009-01-29 05:41:02 +00001360 // Otherwise, this is a load-store case, so DCE them.
Owen Anderson32ca8652009-01-24 10:07:43 +00001361 for (SmallPtrSet<MachineInstr*, 4>::iterator UI =
1362 VNUseCount[CurrVN].begin(), UE = VNUseCount[CurrVN].end();
1363 UI != UI; ++UI) {
1364 LIs->RemoveMachineInstrFromMaps(*UI);
1365 (*UI)->eraseFromParent();
1366 }
1367
Owen Andersonc0f3a032009-01-29 08:22:06 +00001368 VNUseCount.erase(CurrVN);
1369
Owen Anderson32ca8652009-01-24 10:07:43 +00001370 LIs->RemoveMachineInstrFromMaps(DefMI);
1371 (*LI)->removeValNo(CurrVN);
1372 DefMI->eraseFromParent();
1373 NumDeadSpills++;
1374 changed = true;
Owen Anderson956ec272009-01-23 00:23:32 +00001375 }
1376 }
1377
1378 return changed;
1379}
1380
Owen Andersonf1f75b12008-11-04 22:22:41 +00001381bool PreAllocSplitting::createsNewJoin(LiveRange* LR,
1382 MachineBasicBlock* DefMBB,
1383 MachineBasicBlock* BarrierMBB) {
1384 if (DefMBB == BarrierMBB)
1385 return false;
1386
Lang Hames857c4e02009-06-17 21:01:20 +00001387 if (LR->valno->hasPHIKill())
Owen Andersonf1f75b12008-11-04 22:22:41 +00001388 return false;
1389
1390 unsigned MBBEnd = LIs->getMBBEndIdx(BarrierMBB);
1391 if (LR->end < MBBEnd)
1392 return false;
1393
1394 MachineLoopInfo& MLI = getAnalysis<MachineLoopInfo>();
1395 if (MLI.getLoopFor(DefMBB) != MLI.getLoopFor(BarrierMBB))
1396 return true;
1397
1398 MachineDominatorTree& MDT = getAnalysis<MachineDominatorTree>();
1399 SmallPtrSet<MachineBasicBlock*, 4> Visited;
1400 typedef std::pair<MachineBasicBlock*,
1401 MachineBasicBlock::succ_iterator> ItPair;
1402 SmallVector<ItPair, 4> Stack;
1403 Stack.push_back(std::make_pair(BarrierMBB, BarrierMBB->succ_begin()));
1404
1405 while (!Stack.empty()) {
1406 ItPair P = Stack.back();
1407 Stack.pop_back();
1408
1409 MachineBasicBlock* PredMBB = P.first;
1410 MachineBasicBlock::succ_iterator S = P.second;
1411
1412 if (S == PredMBB->succ_end())
1413 continue;
1414 else if (Visited.count(*S)) {
1415 Stack.push_back(std::make_pair(PredMBB, ++S));
1416 continue;
1417 } else
Owen Andersonb214c692008-11-05 00:32:13 +00001418 Stack.push_back(std::make_pair(PredMBB, S+1));
Owen Andersonf1f75b12008-11-04 22:22:41 +00001419
1420 MachineBasicBlock* MBB = *S;
1421 Visited.insert(MBB);
1422
1423 if (MBB == BarrierMBB)
1424 return true;
1425
1426 MachineDomTreeNode* DefMDTN = MDT.getNode(DefMBB);
1427 MachineDomTreeNode* BarrierMDTN = MDT.getNode(BarrierMBB);
1428 MachineDomTreeNode* MDTN = MDT.getNode(MBB)->getIDom();
1429 while (MDTN) {
1430 if (MDTN == DefMDTN)
1431 return true;
1432 else if (MDTN == BarrierMDTN)
1433 break;
1434 MDTN = MDTN->getIDom();
1435 }
1436
1437 MBBEnd = LIs->getMBBEndIdx(MBB);
1438 if (LR->end > MBBEnd)
1439 Stack.push_back(std::make_pair(MBB, MBB->succ_begin()));
1440 }
1441
1442 return false;
1443}
1444
1445
Evan Cheng09e8ca82008-10-20 21:44:59 +00001446bool PreAllocSplitting::runOnMachineFunction(MachineFunction &MF) {
Evan Chengd0e32c52008-10-29 05:06:14 +00001447 CurrMF = &MF;
1448 TM = &MF.getTarget();
Owen Anderson3ef45492009-01-29 22:13:06 +00001449 TRI = TM->getRegisterInfo();
Evan Chengd0e32c52008-10-29 05:06:14 +00001450 TII = TM->getInstrInfo();
1451 MFI = MF.getFrameInfo();
1452 MRI = &MF.getRegInfo();
1453 LIs = &getAnalysis<LiveIntervals>();
1454 LSs = &getAnalysis<LiveStacks>();
Owen Anderson420dd372009-03-14 21:40:05 +00001455 VRM = &getAnalysis<VirtRegMap>();
Evan Chengf5cd4f02008-10-23 20:43:13 +00001456
1457 bool MadeChange = false;
1458
1459 // Make sure blocks are numbered in order.
1460 MF.RenumberBlocks();
1461
Evan Cheng54898932008-10-29 08:39:34 +00001462 MachineBasicBlock *Entry = MF.begin();
1463 SmallPtrSet<MachineBasicBlock*,16> Visited;
1464
Owen Anderson956ec272009-01-23 00:23:32 +00001465 SmallPtrSet<LiveInterval*, 8> Split;
1466
Evan Cheng54898932008-10-29 08:39:34 +00001467 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
1468 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
1469 DFI != E; ++DFI) {
1470 BarrierMBB = *DFI;
1471 for (MachineBasicBlock::iterator I = BarrierMBB->begin(),
1472 E = BarrierMBB->end(); I != E; ++I) {
1473 Barrier = &*I;
1474 const TargetRegisterClass **BarrierRCs =
1475 Barrier->getDesc().getRegClassBarriers();
1476 if (!BarrierRCs)
1477 continue;
1478 BarrierIdx = LIs->getInstructionIndex(Barrier);
Owen Anderson956ec272009-01-23 00:23:32 +00001479 MadeChange |= SplitRegLiveIntervals(BarrierRCs, Split);
Evan Cheng54898932008-10-29 08:39:34 +00001480 }
1481 }
Evan Chengf5cd4f02008-10-23 20:43:13 +00001482
Owen Anderson956ec272009-01-23 00:23:32 +00001483 MadeChange |= removeDeadSpills(Split);
1484
Evan Chengf5cd4f02008-10-23 20:43:13 +00001485 return MadeChange;
Evan Cheng09e8ca82008-10-20 21:44:59 +00001486}