blob: a20bafcf2b9d9b3169fda214023efc574f6209f4 [file] [log] [blame]
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001//===---------- SplitKit.cpp - Toolkit for splitting live ranges ----------===//
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 contains the SplitAnalysis class as well as mutator functions for
11// live range splitting.
12//
13//===----------------------------------------------------------------------===//
14
Jakob Stoklund Olesen376dcbd2010-11-03 20:39:23 +000015#define DEBUG_TYPE "regalloc"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000016#include "SplitKit.h"
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +000017#include "LiveRangeEdit.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000018#include "VirtRegMap.h"
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000019#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +000020#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000021#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +000022#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000023#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000025#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000026#include "llvm/Support/Debug.h"
27#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000028#include "llvm/Target/TargetInstrInfo.h"
29#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000030
31using namespace llvm;
32
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000033static cl::opt<bool>
34AllowSplit("spiller-splits-edges",
35 cl::desc("Allow critical edge splitting during spilling"));
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000036
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000037STATISTIC(NumFinished, "Number of splits finished");
38STATISTIC(NumSimple, "Number of splits that were simple");
39
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000040//===----------------------------------------------------------------------===//
41// Split Analysis
42//===----------------------------------------------------------------------===//
43
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000044SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000045 const LiveIntervals &lis,
46 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000047 : MF(vrm.getMachineFunction()),
48 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000049 LIS(lis),
50 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000051 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000052 CurLI(0) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000053
54void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000055 UseSlots.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000056 UsingInstrs.clear();
57 UsingBlocks.clear();
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000058 LiveBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000059 CurLI = 0;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000060}
61
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000062bool SplitAnalysis::canAnalyzeBranch(const MachineBasicBlock *MBB) {
63 MachineBasicBlock *T, *F;
64 SmallVector<MachineOperand, 4> Cond;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000065 return !TII.AnalyzeBranch(const_cast<MachineBasicBlock&>(*MBB), T, F, Cond);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000066}
67
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000068/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000069void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000070 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +000071 for (MachineRegisterInfo::reg_iterator I = MRI.reg_begin(CurLI->reg),
72 E = MRI.reg_end(); I != E; ++I) {
73 MachineOperand &MO = I.getOperand();
74 if (MO.isUse() && MO.isUndef())
75 continue;
76 MachineInstr *MI = MO.getParent();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000077 if (MI->isDebugValue() || !UsingInstrs.insert(MI))
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000078 continue;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000079 UseSlots.push_back(LIS.getInstructionIndex(MI).getDefIndex());
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000080 MachineBasicBlock *MBB = MI->getParent();
Jakob Stoklund Olesen4f5c9d22011-02-09 23:56:18 +000081 UsingBlocks[MBB]++;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000082 }
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000083 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000084 calcLiveBlockInfo();
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000085 DEBUG(dbgs() << " counted "
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000086 << UsingInstrs.size() << " instrs, "
Jakob Stoklund Olesen4f5c9d22011-02-09 23:56:18 +000087 << UsingBlocks.size() << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000088}
89
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000090/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
91/// where CurLI is live.
92void SplitAnalysis::calcLiveBlockInfo() {
93 if (CurLI->empty())
94 return;
95
96 LiveInterval::const_iterator LVI = CurLI->begin();
97 LiveInterval::const_iterator LVE = CurLI->end();
98
99 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
100 UseI = UseSlots.begin();
101 UseE = UseSlots.end();
102
103 // Loop over basic blocks where CurLI is live.
104 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
105 for (;;) {
106 BlockInfo BI;
107 BI.MBB = MFI;
108 SlotIndex Start, Stop;
109 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
110
111 // The last split point is the latest possible insertion point that dominates
112 // all successor blocks. If interference reaches LastSplitPoint, it is not
113 // possible to insert a split or reload that makes CurLI live in the
114 // outgoing bundle.
115 MachineBasicBlock::iterator LSP = LIS.getLastSplitPoint(*CurLI, BI.MBB);
116 if (LSP == BI.MBB->end())
117 BI.LastSplitPoint = Stop;
118 else
119 BI.LastSplitPoint = LIS.getInstructionIndex(LSP);
120
121 // LVI is the first live segment overlapping MBB.
122 BI.LiveIn = LVI->start <= Start;
123 if (!BI.LiveIn)
124 BI.Def = LVI->start;
125
126 // Find the first and last uses in the block.
127 BI.Uses = hasUses(MFI);
128 if (BI.Uses && UseI != UseE) {
129 BI.FirstUse = *UseI;
130 assert(BI.FirstUse >= Start);
131 do ++UseI;
132 while (UseI != UseE && *UseI < Stop);
133 BI.LastUse = UseI[-1];
134 assert(BI.LastUse < Stop);
135 }
136
137 // Look for gaps in the live range.
138 bool hasGap = false;
139 BI.LiveOut = true;
140 while (LVI->end < Stop) {
141 SlotIndex LastStop = LVI->end;
142 if (++LVI == LVE || LVI->start >= Stop) {
143 BI.Kill = LastStop;
144 BI.LiveOut = false;
145 break;
146 }
147 if (LastStop < LVI->start) {
148 hasGap = true;
149 BI.Kill = LastStop;
150 BI.Def = LVI->start;
151 }
152 }
153
154 // Don't set LiveThrough when the block has a gap.
155 BI.LiveThrough = !hasGap && BI.LiveIn && BI.LiveOut;
156 LiveBlocks.push_back(BI);
157
158 // LVI is now at LVE or LVI->end >= Stop.
159 if (LVI == LVE)
160 break;
161
162 // Live segment ends exactly at Stop. Move to the next segment.
163 if (LVI->end == Stop && ++LVI == LVE)
164 break;
165
166 // Pick the next basic block.
167 if (LVI->start < Stop)
168 ++MFI;
169 else
170 MFI = LIS.getMBBFromIndex(LVI->start);
171 }
172}
173
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000174bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
175 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
176 const LiveInterval &Orig = LIS.getInterval(OrigReg);
177 assert(!Orig.empty() && "Splitting empty interval?");
178 LiveInterval::const_iterator I = Orig.find(Idx);
179
180 // Range containing Idx should begin at Idx.
181 if (I != Orig.end() && I->start <= Idx)
182 return I->start == Idx;
183
184 // Range does not contain Idx, previous must end at Idx.
185 return I != Orig.begin() && (--I)->end == Idx;
186}
187
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000188void SplitAnalysis::print(const BlockPtrSet &B, raw_ostream &OS) const {
189 for (BlockPtrSet::const_iterator I = B.begin(), E = B.end(); I != E; ++I) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000190 unsigned count = UsingBlocks.lookup(*I);
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000191 OS << " BB#" << (*I)->getNumber();
192 if (count)
193 OS << '(' << count << ')';
194 }
195}
196
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000197void SplitAnalysis::analyze(const LiveInterval *li) {
198 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000199 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000200 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000201}
202
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000203
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000204//===----------------------------------------------------------------------===//
205// Split Editor
206//===----------------------------------------------------------------------===//
207
208/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000209SplitEditor::SplitEditor(SplitAnalysis &sa,
210 LiveIntervals &lis,
211 VirtRegMap &vrm,
212 MachineDominatorTree &mdt,
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000213 LiveRangeEdit &edit)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000214 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000215 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000216 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000217 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
218 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
219 Edit(edit),
Eric Christopher0f438112011-02-03 06:18:29 +0000220 OpenIdx(0),
221 RegAssign(Allocator)
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000222{
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000223 // We don't need an AliasAnalysis since we will only be performing
224 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000225 Edit.anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000226}
227
Eric Christopher0f438112011-02-03 06:18:29 +0000228void SplitEditor::dump() const {
229 if (RegAssign.empty()) {
230 dbgs() << " empty\n";
231 return;
232 }
233
234 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
235 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
236 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000237}
238
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000239VNInfo *SplitEditor::defValue(unsigned RegIdx,
240 const VNInfo *ParentVNI,
241 SlotIndex Idx) {
242 assert(ParentVNI && "Mapping NULL value");
243 assert(Idx.isValid() && "Invalid SlotIndex");
244 assert(Edit.getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
245 LiveInterval *LI = Edit.get(RegIdx);
246
247 // Create a new value.
248 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
249
250 // Preserve the PHIDef bit.
251 if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
252 VNI->setIsPHIDef(true);
253
254 // Use insert for lookup, so we can add missing values with a second lookup.
255 std::pair<ValueMap::iterator, bool> InsP =
256 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
257
258 // This was the first time (RegIdx, ParentVNI) was mapped.
259 // Keep it as a simple def without any liveness.
260 if (InsP.second)
261 return VNI;
262
263 // If the previous value was a simple mapping, add liveness for it now.
264 if (VNInfo *OldVNI = InsP.first->second) {
265 SlotIndex Def = OldVNI->def;
266 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
267 // No longer a simple mapping.
268 InsP.first->second = 0;
269 }
270
271 // This is a complex mapping, add liveness for VNI
272 SlotIndex Def = VNI->def;
273 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
274
275 return VNI;
276}
277
278void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
279 assert(ParentVNI && "Mapping NULL value");
280 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
281
282 // ParentVNI was either unmapped or already complex mapped. Either way.
283 if (!VNI)
284 return;
285
286 // This was previously a single mapping. Make sure the old def is represented
287 // by a trivial live range.
288 SlotIndex Def = VNI->def;
289 Edit.get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
290 VNI = 0;
291}
292
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000293// extendRange - Extend the live range to reach Idx.
294// Potentially create phi-def values.
295void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
296 assert(Idx.isValid() && "Invalid SlotIndex");
297 MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
298 assert(IdxMBB && "No MBB at Idx");
299 LiveInterval *LI = Edit.get(RegIdx);
300
301 // Is there a def in the same MBB we can extend?
302 if (LI->extendInBlock(LIS.getMBBStartIdx(IdxMBB), Idx))
303 return;
304
305 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
306 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
307 // Perform a search for all predecessor blocks where we know the dominating
308 // VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
309 DEBUG(dbgs() << "\n Reaching defs for BB#" << IdxMBB->getNumber()
310 << " at " << Idx << " in " << *LI << '\n');
311
312 // Blocks where LI should be live-in.
313 SmallVector<MachineDomTreeNode*, 16> LiveIn;
314 LiveIn.push_back(MDT[IdxMBB]);
315
316 // Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
317 for (unsigned i = 0; i != LiveIn.size(); ++i) {
318 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
319 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
320 PE = MBB->pred_end(); PI != PE; ++PI) {
321 MachineBasicBlock *Pred = *PI;
322 // Is this a known live-out block?
323 std::pair<LiveOutMap::iterator,bool> LOIP =
324 LiveOutCache.insert(std::make_pair(Pred, LiveOutPair()));
325 // Yes, we have been here before.
326 if (!LOIP.second)
327 continue;
328
329 // Does Pred provide a live-out value?
330 SlotIndex Start, Last;
331 tie(Start, Last) = LIS.getSlotIndexes()->getMBBRange(Pred);
332 Last = Last.getPrevSlot();
333 if (VNInfo *VNI = LI->extendInBlock(Start, Last)) {
334 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(VNI->def);
335 LiveOutPair &LOP = LOIP.first->second;
336 LOP.first = VNI;
337 LOP.second = MDT[DefMBB];
338 continue;
339 }
340 // No, we need a live-in value for Pred as well
341 if (Pred != IdxMBB)
342 LiveIn.push_back(MDT[Pred]);
343 }
344 }
345
346 // We may need to add phi-def values to preserve the SSA form.
347 VNInfo *IdxVNI = updateSSA(RegIdx, LiveIn, Idx, IdxMBB);
348
349#ifndef NDEBUG
350 // Check the LiveOutCache invariants.
351 for (LiveOutMap::iterator I = LiveOutCache.begin(), E = LiveOutCache.end();
352 I != E; ++I) {
353 assert(I->first && "Null MBB entry in cache");
354 assert(I->second.first && "Null VNInfo in cache");
355 assert(I->second.second && "Null DomTreeNode in cache");
356 if (I->second.second->getBlock() == I->first)
357 continue;
358 for (MachineBasicBlock::pred_iterator PI = I->first->pred_begin(),
359 PE = I->first->pred_end(); PI != PE; ++PI)
360 assert(LiveOutCache.lookup(*PI) == I->second && "Bad invariant");
361 }
362#endif
363
364 // Since we went through the trouble of a full BFS visiting all reaching defs,
365 // the values in LiveIn are now accurate. No more phi-defs are needed
366 // for these blocks, so we can color the live ranges.
367 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) {
368 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
369 SlotIndex Start = LIS.getMBBStartIdx(MBB);
370 VNInfo *VNI = LiveOutCache.lookup(MBB).first;
371
372 // Anything in LiveIn other than IdxMBB is live-through.
373 // In IdxMBB, we should stop at Idx unless the same value is live-out.
374 if (MBB == IdxMBB && IdxVNI != VNI)
375 LI->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI));
376 else
377 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
378 }
379}
380
381VNInfo *SplitEditor::updateSSA(unsigned RegIdx,
382 SmallVectorImpl<MachineDomTreeNode*> &LiveIn,
383 SlotIndex Idx,
384 const MachineBasicBlock *IdxMBB) {
385 // This is essentially the same iterative algorithm that SSAUpdater uses,
386 // except we already have a dominator tree, so we don't have to recompute it.
387 LiveInterval *LI = Edit.get(RegIdx);
388 VNInfo *IdxVNI = 0;
389 unsigned Changes;
390 do {
391 Changes = 0;
392 DEBUG(dbgs() << " Iterating over " << LiveIn.size() << " blocks.\n");
393 // Propagate live-out values down the dominator tree, inserting phi-defs
394 // when necessary. Since LiveIn was created by a BFS, going backwards makes
395 // it more likely for us to visit immediate dominators before their
396 // children.
397 for (unsigned i = LiveIn.size(); i; --i) {
398 MachineDomTreeNode *Node = LiveIn[i-1];
399 MachineBasicBlock *MBB = Node->getBlock();
400 MachineDomTreeNode *IDom = Node->getIDom();
401 LiveOutPair IDomValue;
402 // We need a live-in value to a block with no immediate dominator?
403 // This is probably an unreachable block that has survived somehow.
404 bool needPHI = !IDom;
405
406 // Get the IDom live-out value.
407 if (!needPHI) {
408 LiveOutMap::iterator I = LiveOutCache.find(IDom->getBlock());
409 if (I != LiveOutCache.end())
410 IDomValue = I->second;
411 else
412 // If IDom is outside our set of live-out blocks, there must be new
413 // defs, and we need a phi-def here.
414 needPHI = true;
415 }
416
417 // IDom dominates all of our predecessors, but it may not be the immediate
418 // dominator. Check if any of them have live-out values that are properly
419 // dominated by IDom. If so, we need a phi-def here.
420 if (!needPHI) {
421 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
422 PE = MBB->pred_end(); PI != PE; ++PI) {
423 LiveOutPair Value = LiveOutCache[*PI];
424 if (!Value.first || Value.first == IDomValue.first)
425 continue;
426 // This predecessor is carrying something other than IDomValue.
427 // It could be because IDomValue hasn't propagated yet, or it could be
428 // because MBB is in the dominance frontier of that value.
429 if (MDT.dominates(IDom, Value.second)) {
430 needPHI = true;
431 break;
432 }
433 }
434 }
435
436 // Create a phi-def if required.
437 if (needPHI) {
438 ++Changes;
439 SlotIndex Start = LIS.getMBBStartIdx(MBB);
440 VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
441 VNI->setIsPHIDef(true);
442 DEBUG(dbgs() << " - BB#" << MBB->getNumber()
443 << " phi-def #" << VNI->id << " at " << Start << '\n');
444 // We no longer need LI to be live-in.
445 LiveIn.erase(LiveIn.begin()+(i-1));
446 // Blocks in LiveIn are either IdxMBB, or have a value live-through.
447 if (MBB == IdxMBB)
448 IdxVNI = VNI;
449 // Check if we need to update live-out info.
450 LiveOutMap::iterator I = LiveOutCache.find(MBB);
451 if (I == LiveOutCache.end() || I->second.second == Node) {
452 // We already have a live-out defined in MBB, so this must be IdxMBB.
453 assert(MBB == IdxMBB && "Adding phi-def to known live-out");
454 LI->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
455 } else {
456 // This phi-def is also live-out, so color the whole block.
457 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
458 I->second = LiveOutPair(VNI, Node);
459 }
460 } else if (IDomValue.first) {
461 // No phi-def here. Remember incoming value for IdxMBB.
462 if (MBB == IdxMBB)
463 IdxVNI = IDomValue.first;
464 // Propagate IDomValue if needed:
465 // MBB is live-out and doesn't define its own value.
466 LiveOutMap::iterator I = LiveOutCache.find(MBB);
467 if (I != LiveOutCache.end() && I->second.second != Node &&
468 I->second.first != IDomValue.first) {
469 ++Changes;
470 I->second = IDomValue;
471 DEBUG(dbgs() << " - BB#" << MBB->getNumber()
472 << " idom valno #" << IDomValue.first->id
473 << " from BB#" << IDom->getBlock()->getNumber() << '\n');
474 }
475 }
476 }
477 DEBUG(dbgs() << " - made " << Changes << " changes.\n");
478 } while (Changes);
479
480 assert(IdxVNI && "Didn't find value for Idx");
481 return IdxVNI;
482}
483
Eric Christopher0f438112011-02-03 06:18:29 +0000484VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000485 VNInfo *ParentVNI,
486 SlotIndex UseIdx,
487 MachineBasicBlock &MBB,
488 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000489 MachineInstr *CopyMI = 0;
490 SlotIndex Def;
Eric Christopher0f438112011-02-03 06:18:29 +0000491 LiveInterval *LI = Edit.get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000492
493 // Attempt cheap-as-a-copy rematerialization.
494 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000495 if (Edit.canRematerializeAt(RM, UseIdx, true, LIS)) {
Eric Christopher0f438112011-02-03 06:18:29 +0000496 Def = Edit.rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000497 } else {
498 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000499 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
500 .addReg(Edit.getReg());
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000501 Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex();
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000502 }
503
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000504 // Define the value in Reg.
505 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
506 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000507 return VNI;
508}
509
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000510/// Create a new virtual register and live interval.
511void SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000512 assert(!OpenIdx && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000513
Eric Christopher0f438112011-02-03 06:18:29 +0000514 // Create the complement as index 0.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000515 if (Edit.empty())
Eric Christopher0f438112011-02-03 06:18:29 +0000516 Edit.create(MRI, LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000517
518 // Create the open interval.
519 OpenIdx = Edit.size();
520 Edit.create(MRI, LIS, VRM);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000521}
522
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000523SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000524 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000525 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000526 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000527 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000528 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000529 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000530 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000531 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000532 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000533 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000534 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000535
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000536 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
537 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000538}
539
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000540SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000541 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000542 SlotIndex End = LIS.getMBBEndIdx(&MBB);
543 SlotIndex Last = End.getPrevSlot();
544 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
545 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000546 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000547 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000548 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000549 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000550 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000551 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesencb640472011-02-04 19:33:11 +0000552 LIS.getLastSplitPoint(Edit.getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000553 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000554 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000555 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000556}
557
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000558/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000559void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000560 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000561}
562
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000563void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000564 assert(OpenIdx && "openIntv not called before useIntv");
565 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
566 RegAssign.insert(Start, End, OpenIdx);
567 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000568}
569
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000570SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000571 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000572 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000573
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000574 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000575 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000576 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000577 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000578 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000579 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000580 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000581 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000582
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000583 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
584 assert(MI && "No instruction at index");
585 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
586 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000587 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000588}
589
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000590SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
591 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
592 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
593
594 // The interval must be live into the instruction at Idx.
595 Idx = Idx.getBoundaryIndex();
596 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
597 if (!ParentVNI) {
598 DEBUG(dbgs() << ": not live\n");
599 return Idx.getNextSlot();
600 }
601 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
602
603 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
604 assert(MI && "No instruction at index");
605 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
606 return VNI->def;
607}
608
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000609SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000610 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000611 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000612 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000613
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000614 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000615 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000616 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000617 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000618 }
619
Eric Christopher0f438112011-02-03 06:18:29 +0000620 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000621 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000622 RegAssign.insert(Start, VNI->def, OpenIdx);
623 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000624 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000625}
626
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000627void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
628 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000629 const VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Start);
630 assert(ParentVNI == Edit.getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000631 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000632 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
633 "Range cannot span basic blocks");
634
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000635 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000636 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000637 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
638 RegAssign.insert(Start, End, OpenIdx);
639 DEBUG(dump());
640}
641
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000642/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000643/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000644void SplitEditor::closeIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000645 assert(OpenIdx && "openIntv not called before closeIntv");
646 OpenIdx = 0;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000647}
648
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000649/// transferSimpleValues - Transfer all simply defined values to the new live
650/// ranges.
651/// Values that were rematerialized or that have multiple defs are left alone.
652bool SplitEditor::transferSimpleValues() {
653 bool Skipped = false;
654 RegAssignMap::const_iterator AssignI = RegAssign.begin();
655 for (LiveInterval::const_iterator ParentI = Edit.getParent().begin(),
656 ParentE = Edit.getParent().end(); ParentI != ParentE; ++ParentI) {
657 DEBUG(dbgs() << " blit " << *ParentI << ':');
658 VNInfo *ParentVNI = ParentI->valno;
659 // RegAssign has holes where RegIdx 0 should be used.
660 SlotIndex Start = ParentI->start;
661 AssignI.advanceTo(Start);
662 do {
663 unsigned RegIdx;
664 SlotIndex End = ParentI->end;
665 if (!AssignI.valid()) {
666 RegIdx = 0;
667 } else if (AssignI.start() <= Start) {
668 RegIdx = AssignI.value();
669 if (AssignI.stop() < End) {
670 End = AssignI.stop();
671 ++AssignI;
672 }
673 } else {
674 RegIdx = 0;
675 End = std::min(End, AssignI.start());
676 }
677 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
678 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
679 DEBUG(dbgs() << ':' << VNI->id);
680 Edit.get(RegIdx)->addRange(LiveRange(Start, End, VNI));
681 } else
682 Skipped = true;
683 Start = End;
684 } while (Start != ParentI->end);
685 DEBUG(dbgs() << '\n');
686 }
687 return Skipped;
688}
689
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000690void SplitEditor::extendPHIKillRanges() {
691 // Extend live ranges to be live-out for successor PHI values.
692 for (LiveInterval::const_vni_iterator I = Edit.getParent().vni_begin(),
693 E = Edit.getParent().vni_end(); I != E; ++I) {
694 const VNInfo *PHIVNI = *I;
695 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
696 continue;
697 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
698 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
699 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
700 PE = MBB->pred_end(); PI != PE; ++PI) {
701 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
702 // The predecessor may not have a live-out value. That is OK, like an
703 // undef PHI operand.
704 if (Edit.getParent().liveAt(End)) {
705 assert(RegAssign.lookup(End) == RegIdx &&
706 "Different register assignment in phi predecessor");
707 extendRange(RegIdx, End);
708 }
709 }
710 }
711}
712
Eric Christopher0f438112011-02-03 06:18:29 +0000713/// rewriteAssigned - Rewrite all uses of Edit.getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000714void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Eric Christopher0f438112011-02-03 06:18:29 +0000715 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit.getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000716 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000717 MachineOperand &MO = RI.getOperand();
718 MachineInstr *MI = MO.getParent();
719 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000720 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000721 if (MI->isDebugValue()) {
722 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000723 MO.setReg(0);
724 continue;
725 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000726
727 // <undef> operands don't really read the register, so just assign them to
728 // the complement.
729 if (MO.isUse() && MO.isUndef()) {
730 MO.setReg(Edit.get(0)->reg);
731 continue;
732 }
733
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000734 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000735 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000736
737 // Rewrite to the mapped register at Idx.
738 unsigned RegIdx = RegAssign.lookup(Idx);
739 MO.setReg(Edit.get(RegIdx)->reg);
740 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
741 << Idx << ':' << RegIdx << '\t' << *MI);
742
743 // Extend liveness to Idx.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000744 if (ExtendRanges)
745 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000746 }
747}
748
Eric Christopher0f438112011-02-03 06:18:29 +0000749/// rewriteSplit - Rewrite uses of Intvs[0] according to the ConEQ mapping.
750void SplitEditor::rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs,
751 const ConnectedVNInfoEqClasses &ConEq) {
752 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Intvs[0]->reg),
753 RE = MRI.reg_end(); RI != RE;) {
754 MachineOperand &MO = RI.getOperand();
755 MachineInstr *MI = MO.getParent();
756 ++RI;
757 if (MO.isUse() && MO.isUndef())
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000758 continue;
Eric Christopher0f438112011-02-03 06:18:29 +0000759 // DBG_VALUE instructions should have been eliminated earlier.
760 SlotIndex Idx = LIS.getInstructionIndex(MI);
761 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
762 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
763 << Idx << ':');
764 const VNInfo *VNI = Intvs[0]->getVNInfoAt(Idx);
765 assert(VNI && "Interval not live at use.");
766 MO.setReg(Intvs[ConEq.getEqClass(VNI)]->reg);
767 DEBUG(dbgs() << VNI->id << '\t' << *MI);
Eric Christopher463a2972011-02-03 05:40:54 +0000768 }
Eric Christopher463a2972011-02-03 05:40:54 +0000769}
Jakob Stoklund Olesen2cd21112011-02-03 00:54:23 +0000770
Eric Christopher463a2972011-02-03 05:40:54 +0000771void SplitEditor::finish() {
Eric Christopher0f438112011-02-03 06:18:29 +0000772 assert(OpenIdx == 0 && "Previous LI not closed before rewrite");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000773 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +0000774
Eric Christopher0f438112011-02-03 06:18:29 +0000775 // At this point, the live intervals in Edit contain VNInfos corresponding to
776 // the inserted copies.
777
778 // Add the original defs from the parent interval.
779 for (LiveInterval::const_vni_iterator I = Edit.getParent().vni_begin(),
780 E = Edit.getParent().vni_end(); I != E; ++I) {
781 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000782 if (ParentVNI->isUnused())
783 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000784 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000785 defValue(RegIdx, ParentVNI, ParentVNI->def);
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000786 // Mark rematted values as complex everywhere to force liveness computation.
787 // The new live ranges may be truncated.
788 if (Edit.didRematerialize(ParentVNI))
789 for (unsigned i = 0, e = Edit.size(); i != e; ++i)
790 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +0000791 }
792
793#ifndef NDEBUG
794 // Every new interval must have a def by now, otherwise the split is bogus.
795 for (LiveRangeEdit::iterator I = Edit.begin(), E = Edit.end(); I != E; ++I)
796 assert((*I)->hasAtLeastOneValue() && "Split interval has no value");
797#endif
798
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000799 // Transfer the simply mapped values, check if any are complex.
800 bool Complex = transferSimpleValues();
801 if (Complex)
802 extendPHIKillRanges();
803 else
804 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +0000805
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000806 // Rewrite virtual registers, possibly extending ranges.
807 rewriteAssigned(Complex);
Eric Christopher0f438112011-02-03 06:18:29 +0000808
809 // FIXME: Delete defs that were rematted everywhere.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000810
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000811 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000812 for (LiveRangeEdit::iterator I = Edit.begin(), E = Edit.end(); I != E; ++I)
813 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000814
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000815 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000816 ConnectedVNInfoEqClasses ConEQ(LIS);
817 for (unsigned i = 0, e = Edit.size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000818 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000819 LiveInterval *li = Edit.get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000820 unsigned NumComp = ConEQ.Classify(li);
821 if (NumComp <= 1)
822 continue;
823 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
824 SmallVector<LiveInterval*, 8> dups;
825 dups.push_back(li);
826 for (unsigned i = 1; i != NumComp; ++i)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000827 dups.push_back(&Edit.create(MRI, LIS, VRM));
Eric Christopher0f438112011-02-03 06:18:29 +0000828 rewriteComponents(dups, ConEQ);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000829 ConEQ.Distribute(&dups[0]);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000830 }
831
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000832 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000833 VirtRegAuxInfo vrai(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000834 for (LiveRangeEdit::iterator I = Edit.begin(), E = Edit.end(); I != E; ++I){
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000835 LiveInterval &li = **I;
Jakob Stoklund Olesen9db3ea42010-08-10 18:37:40 +0000836 vrai.CalculateRegClass(li.reg);
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000837 vrai.CalculateWeightAndHint(li);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000838 DEBUG(dbgs() << " new interval " << MRI.getRegClass(li.reg)->getName()
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000839 << ":" << li << '\n');
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000840 }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000841}
842
843
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000844//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000845// Single Block Splitting
846//===----------------------------------------------------------------------===//
847
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000848/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
849/// may be an advantage to split CurLI for the duration of the block.
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000850bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000851 // If CurLI is local to one block, there is no point to splitting it.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000852 if (LiveBlocks.size() <= 1)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000853 return false;
854 // Add blocks with multiple uses.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000855 for (unsigned i = 0, e = LiveBlocks.size(); i != e; ++i) {
856 const BlockInfo &BI = LiveBlocks[i];
857 if (!BI.Uses)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000858 continue;
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000859 unsigned Instrs = UsingBlocks.lookup(BI.MBB);
860 if (Instrs <= 1)
861 continue;
862 if (Instrs == 2 && BI.LiveIn && BI.LiveOut && !BI.LiveThrough)
863 continue;
864 Blocks.insert(BI.MBB);
865 }
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000866 return !Blocks.empty();
867}
868
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000869/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000870/// basic block in Blocks.
871void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000872 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000873
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000874 for (unsigned i = 0, e = SA.LiveBlocks.size(); i != e; ++i) {
875 const SplitAnalysis::BlockInfo &BI = SA.LiveBlocks[i];
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000876 if (!BI.Uses || !Blocks.count(BI.MBB))
877 continue;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000878
879 openIntv();
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000880 SlotIndex SegStart = enterIntvBefore(BI.FirstUse);
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000881 if (!BI.LiveOut || BI.LastUse < BI.LastSplitPoint) {
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000882 useIntv(SegStart, leaveIntvAfter(BI.LastUse));
883 } else {
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000884 // The last use is after the last valid split point.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000885 SlotIndex SegStop = leaveIntvBefore(BI.LastSplitPoint);
886 useIntv(SegStart, SegStop);
887 overlapIntv(SegStop, BI.LastUse);
888 }
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000889 closeIntv();
890 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000891 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000892}