blob: 3f1a03c0ba4f06281fd1c25379f5e28ffc6d8cc3 [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 Olesen13ba2da2011-03-04 00:15:36 +000015#include "llvm/ADT/BitVector.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000016#include "llvm/ADT/DenseMap.h"
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +000017#include "llvm/ADT/IndexedMap.h"
Eric Christopher0f438112011-02-03 06:18:29 +000018#include "llvm/ADT/IntervalMap.h"
Jakob Stoklund Olesen8d0963f2010-12-21 01:50:21 +000019#include "llvm/ADT/SmallPtrSet.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000020#include "llvm/CodeGen/SlotIndexes.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000021
22namespace llvm {
23
Eric Christopher0f438112011-02-03 06:18:29 +000024class ConnectedVNInfoEqClasses;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000025class LiveInterval;
26class LiveIntervals;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +000027class LiveRangeEdit;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000028class MachineInstr;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000029class MachineLoopInfo;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000030class MachineRegisterInfo;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000031class TargetInstrInfo;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +000032class TargetRegisterInfo;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000033class VirtRegMap;
34class VNInfo;
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +000035class raw_ostream;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000036
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +000037/// At some point we should just include MachineDominators.h:
38class MachineDominatorTree;
39template <class NodeT> class DomTreeNodeBase;
40typedef DomTreeNodeBase<MachineBasicBlock> MachineDomTreeNode;
41
Jakob Stoklund Olesen8d0963f2010-12-21 01:50:21 +000042
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000043/// SplitAnalysis - Analyze a LiveInterval, looking for live range splitting
44/// opportunities.
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000045class SplitAnalysis {
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +000046public:
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000047 const MachineFunction &MF;
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000048 const VirtRegMap &VRM;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000049 const LiveIntervals &LIS;
50 const MachineLoopInfo &Loops;
51 const TargetInstrInfo &TII;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000052
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000053 // Instructions using the the current register.
54 typedef SmallPtrSet<const MachineInstr*, 16> InstrPtrSet;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000055 InstrPtrSet UsingInstrs;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000056
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000057 // Sorted slot indexes of using instructions.
58 SmallVector<SlotIndex, 8> UseSlots;
59
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000060 // The number of instructions using CurLI in each basic block.
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000061 typedef DenseMap<const MachineBasicBlock*, unsigned> BlockCountMap;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000062 BlockCountMap UsingBlocks;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000063
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000064 /// Additional information about basic blocks where the current variable is
65 /// live. Such a block will look like one of these templates:
66 ///
67 /// 1. | o---x | Internal to block. Variable is only live in this block.
68 /// 2. |---x | Live-in, kill.
69 /// 3. | o---| Def, live-out.
70 /// 4. |---x o---| Live-in, kill, def, live-out.
71 /// 5. |---o---o---| Live-through with uses or defs.
72 /// 6. |-----------| Live-through without uses. Transparent.
73 ///
74 struct BlockInfo {
75 MachineBasicBlock *MBB;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +000076 SlotIndex Start; ///< Beginining of block.
77 SlotIndex Stop; ///< End of block.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000078 SlotIndex FirstUse; ///< First instr using current reg.
79 SlotIndex LastUse; ///< Last instr using current reg.
80 SlotIndex Kill; ///< Interval end point inside block.
81 SlotIndex Def; ///< Interval start point inside block.
82 /// Last possible point for splitting live ranges.
83 SlotIndex LastSplitPoint;
84 bool Uses; ///< Current reg has uses or defs in block.
85 bool LiveThrough; ///< Live in whole block (Templ 5. or 6. above).
86 bool LiveIn; ///< Current reg is live in.
87 bool LiveOut; ///< Current reg is live out.
88
89 // Per-interference pattern scratch data.
90 bool OverlapEntry; ///< Interference overlaps entering interval.
91 bool OverlapExit; ///< Interference overlaps exiting interval.
92 };
93
94 /// Basic blocks where var is live. This array is parallel to
95 /// SpillConstraints.
96 SmallVector<BlockInfo, 8> LiveBlocks;
97
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000098private:
99 // Current live interval.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000100 const LiveInterval *CurLI;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000101
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000102 // Sumarize statistics by counting instructions using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000103 void analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000104
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000105 /// calcLiveBlockInfo - Compute per-block information about CurLI.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000106 bool calcLiveBlockInfo();
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000107
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000108 /// canAnalyzeBranch - Return true if MBB ends in a branch that can be
109 /// analyzed.
110 bool canAnalyzeBranch(const MachineBasicBlock *MBB);
111
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000112public:
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +0000113 SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +0000114 const MachineLoopInfo &mli);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000115
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000116 /// analyze - set CurLI to the specified interval, and analyze how it may be
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000117 /// split.
118 void analyze(const LiveInterval *li);
119
120 /// clear - clear all data structures so SplitAnalysis is ready to analyze a
121 /// new interval.
122 void clear();
123
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000124 /// getParent - Return the last analyzed interval.
125 const LiveInterval &getParent() const { return *CurLI; }
126
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000127 /// hasUses - Return true if MBB has any uses of CurLI.
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000128 bool hasUses(const MachineBasicBlock *MBB) const {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000129 return UsingBlocks.lookup(MBB);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000130 }
131
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000132 /// isOriginalEndpoint - Return true if the original live range was killed or
133 /// (re-)defined at Idx. Idx should be the 'def' slot for a normal kill/def,
134 /// and 'use' for an early-clobber def.
135 /// This can be used to recognize code inserted by earlier live range
136 /// splitting.
137 bool isOriginalEndpoint(SlotIndex Idx) const;
138
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000139 typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet;
140
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000141 // Print a set of blocks with use counts.
142 void print(const BlockPtrSet&, raw_ostream&) const;
143
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000144 /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000145 /// having CurLI split to a new live interval. Return true if Blocks can be
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000146 /// passed to SplitEditor::splitSingleBlocks.
147 bool getMultiUseBlocks(BlockPtrSet &Blocks);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000148};
149
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000150
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000151/// SplitEditor - Edit machine code and LiveIntervals for live range
152/// splitting.
153///
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000154/// - Create a SplitEditor from a SplitAnalysis.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000155/// - Start a new live interval with openIntv.
156/// - Mark the places where the new interval is entered using enterIntv*
157/// - Mark the ranges where the new interval is used with useIntv*
158/// - Mark the places where the interval is exited with exitIntv*.
159/// - Finish the current interval with closeIntv and repeat from 2.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000160/// - Rewrite instructions with finish().
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000161///
162class SplitEditor {
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000163 SplitAnalysis &SA;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000164 LiveIntervals &LIS;
165 VirtRegMap &VRM;
166 MachineRegisterInfo &MRI;
Eric Christopher0f438112011-02-03 06:18:29 +0000167 MachineDominatorTree &MDT;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000168 const TargetInstrInfo &TII;
169 const TargetRegisterInfo &TRI;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000170
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000171 /// Edit - The current parent register and new intervals created.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000172 LiveRangeEdit *Edit;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000173
Eric Christopher0f438112011-02-03 06:18:29 +0000174 /// Index into Edit of the currently open interval.
175 /// The index 0 is used for the complement, so the first interval started by
176 /// openIntv will be 1.
177 unsigned OpenIdx;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000178
Eric Christopher0f438112011-02-03 06:18:29 +0000179 typedef IntervalMap<SlotIndex, unsigned> RegAssignMap;
180
181 /// Allocator for the interval map. This will eventually be shared with
182 /// SlotIndexes and LiveIntervals.
183 RegAssignMap::Allocator Allocator;
184
185 /// RegAssign - Map of the assigned register indexes.
186 /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at
187 /// Idx.
188 RegAssignMap RegAssign;
189
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000190 typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*> ValueMap;
191
192 /// Values - keep track of the mapping from parent values to values in the new
193 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
194 ///
195 /// 1. No entry - the value is not mapped to Edit.get(RegIdx).
196 /// 2. Null - the value is mapped to multiple values in Edit.get(RegIdx).
197 /// Each value is represented by a minimal live range at its def.
198 /// 3. A non-null VNInfo - the value is mapped to a single new value.
199 /// The new value has no live ranges anywhere.
200 ValueMap Values;
201
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000202 typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000203 typedef IndexedMap<LiveOutPair, MBB2NumberFunctor> LiveOutMap;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000204
205 // LiveOutCache - Map each basic block where a new register is live out to the
206 // live-out value and its defining block.
207 // One of these conditions shall be true:
208 //
209 // 1. !LiveOutCache.count(MBB)
210 // 2. LiveOutCache[MBB].second.getNode() == MBB
211 // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB]
212 //
213 // This is only a cache, the values can be computed as:
214 //
215 // VNI = Edit.get(RegIdx)->getVNInfoAt(LIS.getMBBEndIdx(MBB))
216 // Node = mbt_[LIS.getMBBFromIndex(VNI->def)]
217 //
218 // The cache is also used as a visited set by extendRange(). It can be shared
219 // by all the new registers because at most one is live out of each block.
220 LiveOutMap LiveOutCache;
221
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000222 // LiveOutSeen - Indexed by MBB->getNumber(), a bit is set for each valid
223 // entry in LiveOutCache.
224 BitVector LiveOutSeen;
225
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000226 /// defValue - define a value in RegIdx from ParentVNI at Idx.
227 /// Idx does not have to be ParentVNI->def, but it must be contained within
228 /// ParentVNI's live range in ParentLI. The new value is added to the value
229 /// map.
230 /// Return the new LI value.
231 VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx);
232
233 /// markComplexMapped - Mark ParentVNI as complex mapped in RegIdx regardless
234 /// of the number of defs.
235 void markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI);
236
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000237 /// defFromParent - Define Reg from ParentVNI at UseIdx using either
238 /// rematerialization or a COPY from parent. Return the new value.
Eric Christopher0f438112011-02-03 06:18:29 +0000239 VNInfo *defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000240 VNInfo *ParentVNI,
241 SlotIndex UseIdx,
242 MachineBasicBlock &MBB,
243 MachineBasicBlock::iterator I);
244
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000245 /// extendRange - Extend the live range of Edit.get(RegIdx) so it reaches Idx.
246 /// Insert PHIDefs as needed to preserve SSA form.
247 void extendRange(unsigned RegIdx, SlotIndex Idx);
248
249 /// updateSSA - Insert PHIDefs as necessary and update LiveOutCache such that
250 /// Edit.get(RegIdx) is live-in to all the blocks in LiveIn.
251 /// Return the value that is eventually live-in to IdxMBB.
252 VNInfo *updateSSA(unsigned RegIdx,
253 SmallVectorImpl<MachineDomTreeNode*> &LiveIn,
254 SlotIndex Idx,
255 const MachineBasicBlock *IdxMBB);
256
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000257 /// transferSimpleValues - Transfer simply defined values to the new ranges.
258 /// Return true if any complex ranges were skipped.
259 bool transferSimpleValues();
260
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000261 /// extendPHIKillRanges - Extend the ranges of all values killed by original
262 /// parent PHIDefs.
263 void extendPHIKillRanges();
264
Eric Christopher0f438112011-02-03 06:18:29 +0000265 /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000266 void rewriteAssigned(bool ExtendRanges);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000267
Eric Christopher0f438112011-02-03 06:18:29 +0000268 /// rewriteComponents - Rewrite all uses of Intv[0] according to the eq
269 /// classes in ConEQ.
270 /// This must be done when Intvs[0] is styill live at all uses, before calling
271 /// ConEq.Distribute().
272 void rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs,
273 const ConnectedVNInfoEqClasses &ConEq);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000274
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000275 /// deleteRematVictims - Delete defs that are dead after rematerializing.
276 void deleteRematVictims();
277
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000278public:
279 /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000280 /// Newly created intervals will be appended to newIntervals.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000281 SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000282 MachineDominatorTree&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000283
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000284 /// reset - Prepare for a new split.
285 void reset(LiveRangeEdit&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000286
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000287 /// Create a new virtual register and live interval.
288 void openIntv();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000289
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000290 /// enterIntvBefore - Enter the open interval before the instruction at Idx.
291 /// If the parent interval is not live before Idx, a COPY is not inserted.
292 /// Return the beginning of the new live range.
293 SlotIndex enterIntvBefore(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000294
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000295 /// enterIntvAtEnd - Enter the open interval at the end of MBB.
296 /// Use the open interval from he inserted copy to the MBB end.
297 /// Return the beginning of the new live range.
298 SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000299
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000300 /// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000301 void useIntv(const MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000302
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000303 /// useIntv - indicate that all instructions in range should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000304 void useIntv(SlotIndex Start, SlotIndex End);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000305
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000306 /// leaveIntvAfter - Leave the open interval after the instruction at Idx.
307 /// Return the end of the live range.
308 SlotIndex leaveIntvAfter(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000309
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000310 /// leaveIntvBefore - Leave the open interval before the instruction at Idx.
311 /// Return the end of the live range.
312 SlotIndex leaveIntvBefore(SlotIndex Idx);
313
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000314 /// leaveIntvAtTop - Leave the interval at the top of MBB.
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000315 /// Add liveness from the MBB top to the copy.
316 /// Return the end of the live range.
317 SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000318
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000319 /// overlapIntv - Indicate that all instructions in range should use the open
320 /// interval, but also let the complement interval be live.
321 ///
322 /// This doubles the register pressure, but is sometimes required to deal with
323 /// register uses after the last valid split point.
324 ///
325 /// The Start index should be a return value from a leaveIntv* call, and End
326 /// should be in the same basic block. The parent interval must have the same
327 /// value across the range.
328 ///
329 void overlapIntv(SlotIndex Start, SlotIndex End);
330
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000331 /// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000332 /// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000333 void closeIntv();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000334
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000335 /// finish - after all the new live ranges have been created, compute the
336 /// remaining live range, and rewrite instructions to use the new registers.
337 void finish();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000338
Eric Christopher0f438112011-02-03 06:18:29 +0000339 /// dump - print the current interval maping to dbgs().
340 void dump() const;
341
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000342 // ===--- High level methods ---===
343
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000344 /// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000345 /// basic block in Blocks.
346 void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks);
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000347};
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000348
349}