blob: 6f771b65525a6df53b611ccf80ee0edf99ffa77d [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;
46 const LiveIntervals &LIS;
47 const MachineLoopInfo &Loops;
48 const TargetInstrInfo &TII;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000049
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000050 // Instructions using the the current register.
51 typedef SmallPtrSet<const MachineInstr*, 16> InstrPtrSet;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000052 InstrPtrSet UsingInstrs;
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 Olesen07862842011-01-26 00:50:53 +000057 // The number of instructions using CurLI in each basic block.
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000058 typedef DenseMap<const MachineBasicBlock*, unsigned> BlockCountMap;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000059 BlockCountMap UsingBlocks;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000060
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000061 /// Additional information about basic blocks where the current variable is
62 /// live. Such a block will look like one of these templates:
63 ///
64 /// 1. | o---x | Internal to block. Variable is only live in this block.
65 /// 2. |---x | Live-in, kill.
66 /// 3. | o---| Def, live-out.
67 /// 4. |---x o---| Live-in, kill, def, live-out.
68 /// 5. |---o---o---| Live-through with uses or defs.
69 /// 6. |-----------| Live-through without uses. Transparent.
70 ///
71 struct BlockInfo {
72 MachineBasicBlock *MBB;
73 SlotIndex FirstUse; ///< First instr using current reg.
74 SlotIndex LastUse; ///< Last instr using current reg.
75 SlotIndex Kill; ///< Interval end point inside block.
76 SlotIndex Def; ///< Interval start point inside block.
77 /// Last possible point for splitting live ranges.
78 SlotIndex LastSplitPoint;
79 bool Uses; ///< Current reg has uses or defs in block.
80 bool LiveThrough; ///< Live in whole block (Templ 5. or 6. above).
81 bool LiveIn; ///< Current reg is live in.
82 bool LiveOut; ///< Current reg is live out.
83
84 // Per-interference pattern scratch data.
85 bool OverlapEntry; ///< Interference overlaps entering interval.
86 bool OverlapExit; ///< Interference overlaps exiting interval.
87 };
88
89 /// Basic blocks where var is live. This array is parallel to
90 /// SpillConstraints.
91 SmallVector<BlockInfo, 8> LiveBlocks;
92
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000093private:
94 // Current live interval.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000095 const LiveInterval *CurLI;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000096
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000097 // Sumarize statistics by counting instructions using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000098 void analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000099
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000100 /// calcLiveBlockInfo - Compute per-block information about CurLI.
101 void calcLiveBlockInfo();
102
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000103 /// canAnalyzeBranch - Return true if MBB ends in a branch that can be
104 /// analyzed.
105 bool canAnalyzeBranch(const MachineBasicBlock *MBB);
106
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000107public:
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +0000108 SplitAnalysis(const MachineFunction &mf, const LiveIntervals &lis,
109 const MachineLoopInfo &mli);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000110
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000111 /// analyze - set CurLI to the specified interval, and analyze how it may be
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000112 /// split.
113 void analyze(const LiveInterval *li);
114
115 /// clear - clear all data structures so SplitAnalysis is ready to analyze a
116 /// new interval.
117 void clear();
118
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000119 /// getParent - Return the last analyzed interval.
120 const LiveInterval &getParent() const { return *CurLI; }
121
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000122 /// hasUses - Return true if MBB has any uses of CurLI.
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000123 bool hasUses(const MachineBasicBlock *MBB) const {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000124 return UsingBlocks.lookup(MBB);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000125 }
126
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000127 typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet;
128
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000129 // Print a set of blocks with use counts.
130 void print(const BlockPtrSet&, raw_ostream&) const;
131
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000132 /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000133 /// having CurLI split to a new live interval. Return true if Blocks can be
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000134 /// passed to SplitEditor::splitSingleBlocks.
135 bool getMultiUseBlocks(BlockPtrSet &Blocks);
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000136
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000137 /// getBlockForInsideSplit - If CurLI is contained inside a single basic
138 /// block, and it would pay to subdivide the interval inside that block,
139 /// return it. Otherwise return NULL. The returned block can be passed to
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000140 /// SplitEditor::splitInsideBlock.
141 const MachineBasicBlock *getBlockForInsideSplit();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000142};
143
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000144
145/// LiveIntervalMap - Map values from a large LiveInterval into a small
146/// interval that is a subset. Insert phi-def values as needed. This class is
147/// used by SplitEditor to create new smaller LiveIntervals.
148///
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000149/// ParentLI is the larger interval, LI is the subset interval. Every value
150/// in LI corresponds to exactly one value in ParentLI, and the live range
151/// of the value is contained within the live range of the ParentLI value.
152/// Values in ParentLI may map to any number of OpenLI values, including 0.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000153class LiveIntervalMap {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000154 LiveIntervals &LIS;
155 MachineDominatorTree &MDT;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000156
157 // The parent interval is never changed.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000158 const LiveInterval &ParentLI;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000159
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000160 // The child interval's values are fully contained inside ParentLI values.
161 LiveInterval *LI;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000162
163 typedef DenseMap<const VNInfo*, VNInfo*> ValueMap;
164
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000165 // Map ParentLI values to simple values in LI that are defined at the same
166 // SlotIndex, or NULL for ParentLI values that have complex LI defs.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000167 // Note there is a difference between values mapping to NULL (complex), and
168 // values not present (unknown/unmapped).
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000169 ValueMap Values;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000170
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000171 typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair;
172 typedef DenseMap<MachineBasicBlock*,LiveOutPair> LiveOutMap;
173
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000174 // LiveOutCache - Map each basic block where LI is live out to the live-out
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000175 // value and its defining block. One of these conditions shall be true:
176 //
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000177 // 1. !LiveOutCache.count(MBB)
178 // 2. LiveOutCache[MBB].second.getNode() == MBB
179 // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB]
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000180 //
181 // This is only a cache, the values can be computed as:
182 //
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000183 // VNI = LI->getVNInfoAt(LIS.getMBBEndIdx(MBB))
184 // Node = mbt_[LIS.getMBBFromIndex(VNI->def)]
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000185 //
186 // The cache is also used as a visiteed set by mapValue().
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000187 LiveOutMap LiveOutCache;
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000188
Jakob Stoklund Olesend7ca5772011-01-20 17:45:20 +0000189 // Dump the live-out cache to dbgs().
190 void dumpCache();
191
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000192public:
193 LiveIntervalMap(LiveIntervals &lis,
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000194 MachineDominatorTree &mdt,
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000195 const LiveInterval &parentli)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000196 : LIS(lis), MDT(mdt), ParentLI(parentli), LI(0) {}
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000197
198 /// reset - clear all data structures and start a new live interval.
199 void reset(LiveInterval *);
200
201 /// getLI - return the current live interval.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000202 LiveInterval *getLI() const { return LI; }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000203
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000204 /// defValue - define a value in LI from the ParentLI value VNI and Idx.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000205 /// Idx does not have to be ParentVNI->def, but it must be contained within
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000206 /// ParentVNI's live range in ParentLI.
207 /// Return the new LI value.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000208 VNInfo *defValue(const VNInfo *ParentVNI, SlotIndex Idx);
209
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000210 /// mapValue - map ParentVNI to the corresponding LI value at Idx. It is
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000211 /// assumed that ParentVNI is live at Idx.
212 /// If ParentVNI has not been defined by defValue, it is assumed that
213 /// ParentVNI->def dominates Idx.
214 /// If ParentVNI has been defined by defValue one or more times, a value that
215 /// dominates Idx will be returned. This may require creating extra phi-def
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000216 /// values and adding live ranges to LI.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000217 /// If simple is not NULL, *simple will indicate if ParentVNI is a simply
218 /// mapped value.
219 VNInfo *mapValue(const VNInfo *ParentVNI, SlotIndex Idx, bool *simple = 0);
220
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000221 // extendTo - Find the last LI value defined in MBB at or before Idx. The
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000222 // parentli is assumed to be live at Idx. Extend the live range to include
223 // Idx. Return the found VNInfo, or NULL.
Jakob Stoklund Olesenc95c1462010-10-27 00:39:07 +0000224 VNInfo *extendTo(const MachineBasicBlock *MBB, SlotIndex Idx);
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000225
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000226 /// isMapped - Return true is ParentVNI is a known mapped value. It may be a
227 /// simple 1-1 mapping or a complex mapping to later defs.
228 bool isMapped(const VNInfo *ParentVNI) const {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000229 return Values.count(ParentVNI);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000230 }
231
232 /// isComplexMapped - Return true if ParentVNI has received new definitions
233 /// with defValue.
234 bool isComplexMapped(const VNInfo *ParentVNI) const;
235
Eric Christopher0f438112011-02-03 06:18:29 +0000236 /// markComplexMapped - Mark ParentVNI as complex mapped regardless of the
237 /// number of definitions.
238 void markComplexMapped(const VNInfo *ParentVNI) { Values[ParentVNI] = 0; }
239
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000240 // addSimpleRange - Add a simple range from ParentLI to LI.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000241 // ParentVNI must be live in the [Start;End) interval.
242 void addSimpleRange(SlotIndex Start, SlotIndex End, const VNInfo *ParentVNI);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000243
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000244 /// addRange - Add live ranges to LI where [Start;End) intersects ParentLI.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000245 /// All needed values whose def is not inside [Start;End) must be defined
246 /// beforehand so mapValue will work.
247 void addRange(SlotIndex Start, SlotIndex End);
248};
249
250
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000251/// SplitEditor - Edit machine code and LiveIntervals for live range
252/// splitting.
253///
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000254/// - Create a SplitEditor from a SplitAnalysis.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000255/// - Start a new live interval with openIntv.
256/// - Mark the places where the new interval is entered using enterIntv*
257/// - Mark the ranges where the new interval is used with useIntv*
258/// - Mark the places where the interval is exited with exitIntv*.
259/// - Finish the current interval with closeIntv and repeat from 2.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000260/// - Rewrite instructions with finish().
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000261///
262class SplitEditor {
263 SplitAnalysis &sa_;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000264 LiveIntervals &LIS;
265 VirtRegMap &VRM;
266 MachineRegisterInfo &MRI;
Eric Christopher0f438112011-02-03 06:18:29 +0000267 MachineDominatorTree &MDT;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000268 const TargetInstrInfo &TII;
269 const TargetRegisterInfo &TRI;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000270
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000271 /// Edit - The current parent register and new intervals created.
272 LiveRangeEdit &Edit;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000273
Eric Christopher0f438112011-02-03 06:18:29 +0000274 /// Index into Edit of the currently open interval.
275 /// The index 0 is used for the complement, so the first interval started by
276 /// openIntv will be 1.
277 unsigned OpenIdx;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000278
Eric Christopher0f438112011-02-03 06:18:29 +0000279 typedef IntervalMap<SlotIndex, unsigned> RegAssignMap;
280
281 /// Allocator for the interval map. This will eventually be shared with
282 /// SlotIndexes and LiveIntervals.
283 RegAssignMap::Allocator Allocator;
284
285 /// RegAssign - Map of the assigned register indexes.
286 /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at
287 /// Idx.
288 RegAssignMap RegAssign;
289
290 /// LIMappers - One LiveIntervalMap or each interval in Edit.
291 SmallVector<LiveIntervalMap, 4> LIMappers;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000292
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000293 /// defFromParent - Define Reg from ParentVNI at UseIdx using either
294 /// rematerialization or a COPY from parent. Return the new value.
Eric Christopher0f438112011-02-03 06:18:29 +0000295 VNInfo *defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000296 VNInfo *ParentVNI,
297 SlotIndex UseIdx,
298 MachineBasicBlock &MBB,
299 MachineBasicBlock::iterator I);
300
Eric Christopher0f438112011-02-03 06:18:29 +0000301 /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers.
302 void rewriteAssigned();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000303
Eric Christopher0f438112011-02-03 06:18:29 +0000304 /// rewriteComponents - Rewrite all uses of Intv[0] according to the eq
305 /// classes in ConEQ.
306 /// This must be done when Intvs[0] is styill live at all uses, before calling
307 /// ConEq.Distribute().
308 void rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs,
309 const ConnectedVNInfoEqClasses &ConEq);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000310
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000311public:
312 /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000313 /// Newly created intervals will be appended to newIntervals.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000314 SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&,
315 MachineDominatorTree&, LiveRangeEdit&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000316
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000317 /// getAnalysis - Get the corresponding analysis.
318 SplitAnalysis &getAnalysis() { return sa_; }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000319
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000320 /// Create a new virtual register and live interval.
321 void openIntv();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000322
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000323 /// enterIntvBefore - Enter the open interval before the instruction at Idx.
324 /// If the parent interval is not live before Idx, a COPY is not inserted.
325 /// Return the beginning of the new live range.
326 SlotIndex enterIntvBefore(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000327
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000328 /// enterIntvAtEnd - Enter the open interval at the end of MBB.
329 /// Use the open interval from he inserted copy to the MBB end.
330 /// Return the beginning of the new live range.
331 SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000332
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000333 /// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000334 void useIntv(const MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000335
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000336 /// useIntv - indicate that all instructions in range should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000337 void useIntv(SlotIndex Start, SlotIndex End);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000338
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000339 /// leaveIntvAfter - Leave the open interval after the instruction at Idx.
340 /// Return the end of the live range.
341 SlotIndex leaveIntvAfter(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000342
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000343 /// leaveIntvBefore - Leave the open interval before the instruction at Idx.
344 /// Return the end of the live range.
345 SlotIndex leaveIntvBefore(SlotIndex Idx);
346
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000347 /// leaveIntvAtTop - Leave the interval at the top of MBB.
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000348 /// Add liveness from the MBB top to the copy.
349 /// Return the end of the live range.
350 SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000351
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000352 /// overlapIntv - Indicate that all instructions in range should use the open
353 /// interval, but also let the complement interval be live.
354 ///
355 /// This doubles the register pressure, but is sometimes required to deal with
356 /// register uses after the last valid split point.
357 ///
358 /// The Start index should be a return value from a leaveIntv* call, and End
359 /// should be in the same basic block. The parent interval must have the same
360 /// value across the range.
361 ///
362 void overlapIntv(SlotIndex Start, SlotIndex End);
363
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000364 /// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000365 /// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000366 void closeIntv();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000367
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000368 /// finish - after all the new live ranges have been created, compute the
369 /// remaining live range, and rewrite instructions to use the new registers.
370 void finish();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000371
Eric Christopher0f438112011-02-03 06:18:29 +0000372 /// dump - print the current interval maping to dbgs().
373 void dump() const;
374
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000375 // ===--- High level methods ---===
376
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000377 /// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000378 /// basic block in Blocks.
379 void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000380
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000381 /// splitInsideBlock - Split CurLI into multiple intervals inside MBB.
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000382 void splitInsideBlock(const MachineBasicBlock *);
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000383};
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000384
385}