blob: 688e4a5fcfa69897af7d1197f0c39e2166339b34 [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 Olesendb529a82011-04-06 03:57:00 +000015#include "llvm/ADT/ArrayRef.h"
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +000016#include "llvm/ADT/BitVector.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000017#include "llvm/ADT/DenseMap.h"
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +000018#include "llvm/ADT/IndexedMap.h"
Eric Christopher0f438112011-02-03 06:18:29 +000019#include "llvm/ADT/IntervalMap.h"
Jakob Stoklund Olesen8d0963f2010-12-21 01:50:21 +000020#include "llvm/ADT/SmallPtrSet.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000021#include "llvm/CodeGen/SlotIndexes.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000022
23namespace llvm {
24
Eric Christopher0f438112011-02-03 06:18:29 +000025class ConnectedVNInfoEqClasses;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000026class LiveInterval;
27class LiveIntervals;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +000028class LiveRangeEdit;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000029class MachineInstr;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000030class MachineLoopInfo;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000031class MachineRegisterInfo;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000032class TargetInstrInfo;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +000033class TargetRegisterInfo;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000034class VirtRegMap;
35class VNInfo;
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +000036class raw_ostream;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000037
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +000038/// At some point we should just include MachineDominators.h:
39class MachineDominatorTree;
40template <class NodeT> class DomTreeNodeBase;
41typedef DomTreeNodeBase<MachineBasicBlock> MachineDomTreeNode;
42
Jakob Stoklund Olesen8d0963f2010-12-21 01:50:21 +000043
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000044/// SplitAnalysis - Analyze a LiveInterval, looking for live range splitting
45/// opportunities.
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000046class SplitAnalysis {
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +000047public:
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000048 const MachineFunction &MF;
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000049 const VirtRegMap &VRM;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000050 const LiveIntervals &LIS;
51 const MachineLoopInfo &Loops;
52 const TargetInstrInfo &TII;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000053
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000054 // Sorted slot indexes of using instructions.
55 SmallVector<SlotIndex, 8> UseSlots;
56
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000057 /// Additional information about basic blocks where the current variable is
58 /// live. Such a block will look like one of these templates:
59 ///
60 /// 1. | o---x | Internal to block. Variable is only live in this block.
61 /// 2. |---x | Live-in, kill.
62 /// 3. | o---| Def, live-out.
63 /// 4. |---x o---| Live-in, kill, def, live-out.
64 /// 5. |---o---o---| Live-through with uses or defs.
65 /// 6. |-----------| Live-through without uses. Transparent.
66 ///
67 struct BlockInfo {
68 MachineBasicBlock *MBB;
69 SlotIndex FirstUse; ///< First instr using current reg.
70 SlotIndex LastUse; ///< Last instr using current reg.
71 SlotIndex Kill; ///< Interval end point inside block.
72 SlotIndex Def; ///< Interval start point inside block.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000073 bool LiveThrough; ///< Live in whole block (Templ 5. or 6. above).
74 bool LiveIn; ///< Current reg is live in.
75 bool LiveOut; ///< Current reg is live out.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000076 };
77
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000078private:
79 // Current live interval.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000080 const LiveInterval *CurLI;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000081
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000082 /// LastSplitPoint - Last legal split point in each basic block in the current
83 /// function. The first entry is the first terminator, the second entry is the
84 /// last valid split point for a variable that is live in to a landing pad
85 /// successor.
86 SmallVector<std::pair<SlotIndex, SlotIndex>, 8> LastSplitPoint;
87
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000088 /// UseBlocks - Blocks where CurLI has uses.
89 SmallVector<BlockInfo, 8> UseBlocks;
90
91 /// ThroughBlocks - Block numbers where CurLI is live through without uses.
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +000092 BitVector ThroughBlocks;
93
94 /// NumThroughBlocks - Number of live-through blocks.
95 unsigned NumThroughBlocks;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000096
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000097 SlotIndex computeLastSplitPoint(unsigned Num);
98
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000099 // Sumarize statistics by counting instructions using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000100 void analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000101
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000102 /// calcLiveBlockInfo - Compute per-block information about CurLI.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000103 bool calcLiveBlockInfo();
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000104
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000105public:
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +0000106 SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +0000107 const MachineLoopInfo &mli);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000108
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000109 /// analyze - set CurLI to the specified interval, and analyze how it may be
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000110 /// split.
111 void analyze(const LiveInterval *li);
112
113 /// clear - clear all data structures so SplitAnalysis is ready to analyze a
114 /// new interval.
115 void clear();
116
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000117 /// getParent - Return the last analyzed interval.
118 const LiveInterval &getParent() const { return *CurLI; }
119
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +0000120 /// getLastSplitPoint - Return that base index of the last valid split point
121 /// in the basic block numbered Num.
122 SlotIndex getLastSplitPoint(unsigned Num) {
123 // Inline the common simple case.
124 if (LastSplitPoint[Num].first.isValid() &&
125 !LastSplitPoint[Num].second.isValid())
126 return LastSplitPoint[Num].first;
127 return computeLastSplitPoint(Num);
128 }
129
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000130 /// isOriginalEndpoint - Return true if the original live range was killed or
131 /// (re-)defined at Idx. Idx should be the 'def' slot for a normal kill/def,
132 /// and 'use' for an early-clobber def.
133 /// This can be used to recognize code inserted by earlier live range
134 /// splitting.
135 bool isOriginalEndpoint(SlotIndex Idx) const;
136
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000137 /// getUseBlocks - Return an array of BlockInfo objects for the basic blocks
138 /// where CurLI has uses.
139 ArrayRef<BlockInfo> getUseBlocks() { return UseBlocks; }
140
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000141 /// getNumThroughBlocks - Return the number of through blocks.
142 unsigned getNumThroughBlocks() const { return NumThroughBlocks; }
143
144 /// isThroughBlock - Return true if CurLI is live through MBB without uses.
145 bool isThroughBlock(unsigned MBB) const { return ThroughBlocks.test(MBB); }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000146
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000147 /// getThroughBlocks - Return the set of through blocks.
148 const BitVector &getThroughBlocks() const { return ThroughBlocks; }
149
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000150 typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet;
151
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000152 /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000153 /// having CurLI split to a new live interval. Return true if Blocks can be
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000154 /// passed to SplitEditor::splitSingleBlocks.
155 bool getMultiUseBlocks(BlockPtrSet &Blocks);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000156};
157
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000158
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000159/// SplitEditor - Edit machine code and LiveIntervals for live range
160/// splitting.
161///
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000162/// - Create a SplitEditor from a SplitAnalysis.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000163/// - Start a new live interval with openIntv.
164/// - Mark the places where the new interval is entered using enterIntv*
165/// - Mark the ranges where the new interval is used with useIntv*
166/// - Mark the places where the interval is exited with exitIntv*.
167/// - Finish the current interval with closeIntv and repeat from 2.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000168/// - Rewrite instructions with finish().
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000169///
170class SplitEditor {
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000171 SplitAnalysis &SA;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000172 LiveIntervals &LIS;
173 VirtRegMap &VRM;
174 MachineRegisterInfo &MRI;
Eric Christopher0f438112011-02-03 06:18:29 +0000175 MachineDominatorTree &MDT;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000176 const TargetInstrInfo &TII;
177 const TargetRegisterInfo &TRI;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000178
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000179 /// Edit - The current parent register and new intervals created.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000180 LiveRangeEdit *Edit;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000181
Eric Christopher0f438112011-02-03 06:18:29 +0000182 /// Index into Edit of the currently open interval.
183 /// The index 0 is used for the complement, so the first interval started by
184 /// openIntv will be 1.
185 unsigned OpenIdx;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000186
Eric Christopher0f438112011-02-03 06:18:29 +0000187 typedef IntervalMap<SlotIndex, unsigned> RegAssignMap;
188
189 /// Allocator for the interval map. This will eventually be shared with
190 /// SlotIndexes and LiveIntervals.
191 RegAssignMap::Allocator Allocator;
192
193 /// RegAssign - Map of the assigned register indexes.
194 /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at
195 /// Idx.
196 RegAssignMap RegAssign;
197
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000198 typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*> ValueMap;
199
200 /// Values - keep track of the mapping from parent values to values in the new
201 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
202 ///
203 /// 1. No entry - the value is not mapped to Edit.get(RegIdx).
204 /// 2. Null - the value is mapped to multiple values in Edit.get(RegIdx).
205 /// Each value is represented by a minimal live range at its def.
206 /// 3. A non-null VNInfo - the value is mapped to a single new value.
207 /// The new value has no live ranges anywhere.
208 ValueMap Values;
209
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000210 typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000211 typedef IndexedMap<LiveOutPair, MBB2NumberFunctor> LiveOutMap;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000212
213 // LiveOutCache - Map each basic block where a new register is live out to the
214 // live-out value and its defining block.
215 // One of these conditions shall be true:
216 //
217 // 1. !LiveOutCache.count(MBB)
218 // 2. LiveOutCache[MBB].second.getNode() == MBB
219 // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB]
220 //
221 // This is only a cache, the values can be computed as:
222 //
223 // VNI = Edit.get(RegIdx)->getVNInfoAt(LIS.getMBBEndIdx(MBB))
224 // Node = mbt_[LIS.getMBBFromIndex(VNI->def)]
225 //
226 // The cache is also used as a visited set by extendRange(). It can be shared
227 // by all the new registers because at most one is live out of each block.
228 LiveOutMap LiveOutCache;
229
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000230 // LiveOutSeen - Indexed by MBB->getNumber(), a bit is set for each valid
231 // entry in LiveOutCache.
232 BitVector LiveOutSeen;
233
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000234 /// defValue - define a value in RegIdx from ParentVNI at Idx.
235 /// Idx does not have to be ParentVNI->def, but it must be contained within
236 /// ParentVNI's live range in ParentLI. The new value is added to the value
237 /// map.
238 /// Return the new LI value.
239 VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx);
240
241 /// markComplexMapped - Mark ParentVNI as complex mapped in RegIdx regardless
242 /// of the number of defs.
243 void markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI);
244
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000245 /// defFromParent - Define Reg from ParentVNI at UseIdx using either
246 /// rematerialization or a COPY from parent. Return the new value.
Eric Christopher0f438112011-02-03 06:18:29 +0000247 VNInfo *defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000248 VNInfo *ParentVNI,
249 SlotIndex UseIdx,
250 MachineBasicBlock &MBB,
251 MachineBasicBlock::iterator I);
252
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000253 /// extendRange - Extend the live range of Edit.get(RegIdx) so it reaches Idx.
254 /// Insert PHIDefs as needed to preserve SSA form.
255 void extendRange(unsigned RegIdx, SlotIndex Idx);
256
257 /// updateSSA - Insert PHIDefs as necessary and update LiveOutCache such that
258 /// Edit.get(RegIdx) is live-in to all the blocks in LiveIn.
259 /// Return the value that is eventually live-in to IdxMBB.
260 VNInfo *updateSSA(unsigned RegIdx,
261 SmallVectorImpl<MachineDomTreeNode*> &LiveIn,
262 SlotIndex Idx,
263 const MachineBasicBlock *IdxMBB);
264
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000265 /// transferSimpleValues - Transfer simply defined values to the new ranges.
266 /// Return true if any complex ranges were skipped.
267 bool transferSimpleValues();
268
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000269 /// extendPHIKillRanges - Extend the ranges of all values killed by original
270 /// parent PHIDefs.
271 void extendPHIKillRanges();
272
Eric Christopher0f438112011-02-03 06:18:29 +0000273 /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000274 void rewriteAssigned(bool ExtendRanges);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000275
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000276 /// deleteRematVictims - Delete defs that are dead after rematerializing.
277 void deleteRematVictims();
278
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000279public:
280 /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000281 /// Newly created intervals will be appended to newIntervals.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000282 SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000283 MachineDominatorTree&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000284
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000285 /// reset - Prepare for a new split.
286 void reset(LiveRangeEdit&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000287
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000288 /// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000289 /// Return the interval index, starting from 1. Interval index 0 is the
290 /// implicit complement interval.
291 unsigned openIntv();
292
293 /// currentIntv - Return the current interval index.
294 unsigned currentIntv() const { return OpenIdx; }
295
296 /// selectIntv - Select a previously opened interval index.
297 void selectIntv(unsigned Idx);
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 Olesenfd5c5132011-04-12 19:32:53 +0000353 /// splitSingleBlock - Split CurLI into a separate live interval around the
354 /// uses in a single block. This is intended to be used as part of a larger
355 /// split, and doesn't call finish().
356 void splitSingleBlock(const SplitAnalysis::BlockInfo &BI);
357
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000358 /// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000359 /// basic block in Blocks.
360 void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks);
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000361};
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000362
363}