blob: 6d0e6367d565cfec9195fd2cee5a776adff53a04 [file] [log] [blame]
Jakob Stoklund Olesen8dd070e2011-01-04 21:10:05 +00001//===-------- SplitKit.h - Toolkit for splitting live ranges ----*- C++ -*-===//
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00002//
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 Olesen8ae02632010-07-20 15:41:07 +000015#include "llvm/ADT/DenseMap.h"
Eric Christopher0f438112011-02-03 06:18:29 +000016#include "llvm/ADT/IntervalMap.h"
Jakob Stoklund Olesen8d0963f2010-12-21 01:50:21 +000017#include "llvm/ADT/SmallPtrSet.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000018#include "llvm/CodeGen/SlotIndexes.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000019
20namespace llvm {
21
Eric Christopher0f438112011-02-03 06:18:29 +000022class ConnectedVNInfoEqClasses;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000023class LiveInterval;
24class LiveIntervals;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +000025class LiveRangeEdit;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000026class MachineInstr;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000027class MachineLoopInfo;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000028class MachineRegisterInfo;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000029class TargetInstrInfo;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +000030class TargetRegisterInfo;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000031class VirtRegMap;
32class VNInfo;
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +000033class raw_ostream;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000034
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +000035/// At some point we should just include MachineDominators.h:
36class MachineDominatorTree;
37template <class NodeT> class DomTreeNodeBase;
38typedef DomTreeNodeBase<MachineBasicBlock> MachineDomTreeNode;
39
Jakob Stoklund Olesen8d0963f2010-12-21 01:50:21 +000040
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000041/// SplitAnalysis - Analyze a LiveInterval, looking for live range splitting
42/// opportunities.
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000043class SplitAnalysis {
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +000044public:
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000045 const MachineFunction &MF;
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000046 const VirtRegMap &VRM;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000047 const LiveIntervals &LIS;
48 const MachineLoopInfo &Loops;
49 const TargetInstrInfo &TII;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000050
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000051 // Instructions using the the current register.
52 typedef SmallPtrSet<const MachineInstr*, 16> InstrPtrSet;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000053 InstrPtrSet UsingInstrs;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000054
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000055 // Sorted slot indexes of using instructions.
56 SmallVector<SlotIndex, 8> UseSlots;
57
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000058 // The number of instructions using CurLI in each basic block.
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000059 typedef DenseMap<const MachineBasicBlock*, unsigned> BlockCountMap;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000060 BlockCountMap UsingBlocks;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000061
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000062 /// Additional information about basic blocks where the current variable is
63 /// live. Such a block will look like one of these templates:
64 ///
65 /// 1. | o---x | Internal to block. Variable is only live in this block.
66 /// 2. |---x | Live-in, kill.
67 /// 3. | o---| Def, live-out.
68 /// 4. |---x o---| Live-in, kill, def, live-out.
69 /// 5. |---o---o---| Live-through with uses or defs.
70 /// 6. |-----------| Live-through without uses. Transparent.
71 ///
72 struct BlockInfo {
73 MachineBasicBlock *MBB;
74 SlotIndex FirstUse; ///< First instr using current reg.
75 SlotIndex LastUse; ///< Last instr using current reg.
76 SlotIndex Kill; ///< Interval end point inside block.
77 SlotIndex Def; ///< Interval start point inside block.
78 /// Last possible point for splitting live ranges.
79 SlotIndex LastSplitPoint;
80 bool Uses; ///< Current reg has uses or defs in block.
81 bool LiveThrough; ///< Live in whole block (Templ 5. or 6. above).
82 bool LiveIn; ///< Current reg is live in.
83 bool LiveOut; ///< Current reg is live out.
84
85 // Per-interference pattern scratch data.
86 bool OverlapEntry; ///< Interference overlaps entering interval.
87 bool OverlapExit; ///< Interference overlaps exiting interval.
88 };
89
90 /// Basic blocks where var is live. This array is parallel to
91 /// SpillConstraints.
92 SmallVector<BlockInfo, 8> LiveBlocks;
93
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000094private:
95 // Current live interval.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000096 const LiveInterval *CurLI;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000097
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000098 // Sumarize statistics by counting instructions using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000099 void analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000100
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000101 /// calcLiveBlockInfo - Compute per-block information about CurLI.
102 void calcLiveBlockInfo();
103
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000104 /// canAnalyzeBranch - Return true if MBB ends in a branch that can be
105 /// analyzed.
106 bool canAnalyzeBranch(const MachineBasicBlock *MBB);
107
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000108public:
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +0000109 SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +0000110 const MachineLoopInfo &mli);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000111
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000112 /// analyze - set CurLI to the specified interval, and analyze how it may be
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000113 /// split.
114 void analyze(const LiveInterval *li);
115
116 /// clear - clear all data structures so SplitAnalysis is ready to analyze a
117 /// new interval.
118 void clear();
119
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000120 /// getParent - Return the last analyzed interval.
121 const LiveInterval &getParent() const { return *CurLI; }
122
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000123 /// hasUses - Return true if MBB has any uses of CurLI.
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000124 bool hasUses(const MachineBasicBlock *MBB) const {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000125 return UsingBlocks.lookup(MBB);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000126 }
127
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000128 /// isOriginalEndpoint - Return true if the original live range was killed or
129 /// (re-)defined at Idx. Idx should be the 'def' slot for a normal kill/def,
130 /// and 'use' for an early-clobber def.
131 /// This can be used to recognize code inserted by earlier live range
132 /// splitting.
133 bool isOriginalEndpoint(SlotIndex Idx) const;
134
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000135 typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet;
136
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000137 // Print a set of blocks with use counts.
138 void print(const BlockPtrSet&, raw_ostream&) const;
139
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000140 /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000141 /// having CurLI split to a new live interval. Return true if Blocks can be
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000142 /// passed to SplitEditor::splitSingleBlocks.
143 bool getMultiUseBlocks(BlockPtrSet &Blocks);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000144};
145
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000146
147/// LiveIntervalMap - Map values from a large LiveInterval into a small
148/// interval that is a subset. Insert phi-def values as needed. This class is
149/// used by SplitEditor to create new smaller LiveIntervals.
150///
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000151/// ParentLI is the larger interval, LI is the subset interval. Every value
152/// in LI corresponds to exactly one value in ParentLI, and the live range
153/// of the value is contained within the live range of the ParentLI value.
154/// Values in ParentLI may map to any number of OpenLI values, including 0.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000155class LiveIntervalMap {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000156 LiveIntervals &LIS;
157 MachineDominatorTree &MDT;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000158
159 // The parent interval is never changed.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000160 const LiveInterval &ParentLI;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000161
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000162 // The child interval's values are fully contained inside ParentLI values.
163 LiveInterval *LI;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000164
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000165 typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair;
166 typedef DenseMap<MachineBasicBlock*,LiveOutPair> LiveOutMap;
167
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000168 // LiveOutCache - Map each basic block where LI is live out to the live-out
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000169 // value and its defining block. One of these conditions shall be true:
170 //
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000171 // 1. !LiveOutCache.count(MBB)
172 // 2. LiveOutCache[MBB].second.getNode() == MBB
173 // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB]
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000174 //
175 // This is only a cache, the values can be computed as:
176 //
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000177 // VNI = LI->getVNInfoAt(LIS.getMBBEndIdx(MBB))
178 // Node = mbt_[LIS.getMBBFromIndex(VNI->def)]
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000179 //
180 // The cache is also used as a visiteed set by mapValue().
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000181 LiveOutMap LiveOutCache;
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000182
Jakob Stoklund Olesend7ca5772011-01-20 17:45:20 +0000183 // Dump the live-out cache to dbgs().
184 void dumpCache();
185
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000186public:
187 LiveIntervalMap(LiveIntervals &lis,
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000188 MachineDominatorTree &mdt,
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000189 const LiveInterval &parentli)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000190 : LIS(lis), MDT(mdt), ParentLI(parentli), LI(0) {}
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000191
192 /// reset - clear all data structures and start a new live interval.
193 void reset(LiveInterval *);
194
195 /// getLI - return the current live interval.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000196 LiveInterval *getLI() const { return LI; }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000197
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000198 /// extendRange - Extend the live range of LI so it reaches Idx.
199 /// Insert PHIDefs as needed to preserve SSA form.
200 void extendRange(SlotIndex Idx);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000201};
202
203
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000204/// SplitEditor - Edit machine code and LiveIntervals for live range
205/// splitting.
206///
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000207/// - Create a SplitEditor from a SplitAnalysis.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000208/// - Start a new live interval with openIntv.
209/// - Mark the places where the new interval is entered using enterIntv*
210/// - Mark the ranges where the new interval is used with useIntv*
211/// - Mark the places where the interval is exited with exitIntv*.
212/// - Finish the current interval with closeIntv and repeat from 2.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000213/// - Rewrite instructions with finish().
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000214///
215class SplitEditor {
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000216 SplitAnalysis &SA;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000217 LiveIntervals &LIS;
218 VirtRegMap &VRM;
219 MachineRegisterInfo &MRI;
Eric Christopher0f438112011-02-03 06:18:29 +0000220 MachineDominatorTree &MDT;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000221 const TargetInstrInfo &TII;
222 const TargetRegisterInfo &TRI;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000223
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000224 /// Edit - The current parent register and new intervals created.
225 LiveRangeEdit &Edit;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000226
Eric Christopher0f438112011-02-03 06:18:29 +0000227 /// Index into Edit of the currently open interval.
228 /// The index 0 is used for the complement, so the first interval started by
229 /// openIntv will be 1.
230 unsigned OpenIdx;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000231
Eric Christopher0f438112011-02-03 06:18:29 +0000232 typedef IntervalMap<SlotIndex, unsigned> RegAssignMap;
233
234 /// Allocator for the interval map. This will eventually be shared with
235 /// SlotIndexes and LiveIntervals.
236 RegAssignMap::Allocator Allocator;
237
238 /// RegAssign - Map of the assigned register indexes.
239 /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at
240 /// Idx.
241 RegAssignMap RegAssign;
242
243 /// LIMappers - One LiveIntervalMap or each interval in Edit.
244 SmallVector<LiveIntervalMap, 4> LIMappers;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000245
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000246 typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*> ValueMap;
247
248 /// Values - keep track of the mapping from parent values to values in the new
249 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
250 ///
251 /// 1. No entry - the value is not mapped to Edit.get(RegIdx).
252 /// 2. Null - the value is mapped to multiple values in Edit.get(RegIdx).
253 /// Each value is represented by a minimal live range at its def.
254 /// 3. A non-null VNInfo - the value is mapped to a single new value.
255 /// The new value has no live ranges anywhere.
256 ValueMap Values;
257
258 /// defValue - define a value in RegIdx from ParentVNI at Idx.
259 /// Idx does not have to be ParentVNI->def, but it must be contained within
260 /// ParentVNI's live range in ParentLI. The new value is added to the value
261 /// map.
262 /// Return the new LI value.
263 VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx);
264
265 /// markComplexMapped - Mark ParentVNI as complex mapped in RegIdx regardless
266 /// of the number of defs.
267 void markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI);
268
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000269 /// defFromParent - Define Reg from ParentVNI at UseIdx using either
270 /// rematerialization or a COPY from parent. Return the new value.
Eric Christopher0f438112011-02-03 06:18:29 +0000271 VNInfo *defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000272 VNInfo *ParentVNI,
273 SlotIndex UseIdx,
274 MachineBasicBlock &MBB,
275 MachineBasicBlock::iterator I);
276
Eric Christopher0f438112011-02-03 06:18:29 +0000277 /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers.
278 void rewriteAssigned();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000279
Eric Christopher0f438112011-02-03 06:18:29 +0000280 /// rewriteComponents - Rewrite all uses of Intv[0] according to the eq
281 /// classes in ConEQ.
282 /// This must be done when Intvs[0] is styill live at all uses, before calling
283 /// ConEq.Distribute().
284 void rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs,
285 const ConnectedVNInfoEqClasses &ConEq);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000286
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000287public:
288 /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000289 /// Newly created intervals will be appended to newIntervals.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000290 SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&,
291 MachineDominatorTree&, LiveRangeEdit&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000292
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000293 /// getAnalysis - Get the corresponding analysis.
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000294 SplitAnalysis &getAnalysis() { return SA; }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000295
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000296 /// Create a new virtual register and live interval.
297 void openIntv();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000298
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000299 /// enterIntvBefore - Enter the open interval before the instruction at Idx.
300 /// If the parent interval is not live before Idx, a COPY is not inserted.
301 /// Return the beginning of the new live range.
302 SlotIndex enterIntvBefore(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000303
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000304 /// enterIntvAtEnd - Enter the open interval at the end of MBB.
305 /// Use the open interval from he inserted copy to the MBB end.
306 /// Return the beginning of the new live range.
307 SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000308
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000309 /// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000310 void useIntv(const MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000311
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000312 /// useIntv - indicate that all instructions in range should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000313 void useIntv(SlotIndex Start, SlotIndex End);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000314
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000315 /// leaveIntvAfter - Leave the open interval after the instruction at Idx.
316 /// Return the end of the live range.
317 SlotIndex leaveIntvAfter(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000318
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000319 /// leaveIntvBefore - Leave the open interval before the instruction at Idx.
320 /// Return the end of the live range.
321 SlotIndex leaveIntvBefore(SlotIndex Idx);
322
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000323 /// leaveIntvAtTop - Leave the interval at the top of MBB.
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000324 /// Add liveness from the MBB top to the copy.
325 /// Return the end of the live range.
326 SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000327
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000328 /// overlapIntv - Indicate that all instructions in range should use the open
329 /// interval, but also let the complement interval be live.
330 ///
331 /// This doubles the register pressure, but is sometimes required to deal with
332 /// register uses after the last valid split point.
333 ///
334 /// The Start index should be a return value from a leaveIntv* call, and End
335 /// should be in the same basic block. The parent interval must have the same
336 /// value across the range.
337 ///
338 void overlapIntv(SlotIndex Start, SlotIndex End);
339
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000340 /// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000341 /// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000342 void closeIntv();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000343
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000344 /// finish - after all the new live ranges have been created, compute the
345 /// remaining live range, and rewrite instructions to use the new registers.
346 void finish();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000347
Eric Christopher0f438112011-02-03 06:18:29 +0000348 /// dump - print the current interval maping to dbgs().
349 void dump() const;
350
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000351 // ===--- High level methods ---===
352
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000353 /// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000354 /// basic block in Blocks.
355 void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks);
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000356};
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000357
358}