blob: 6305d0cc23502bfdda271843520c82165ea478cf [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
Sebastian Redl6796e4f2011-04-24 15:46:51 +000015#ifndef LLVM_CODEGEN_SPLITKIT_H
16#define LLVM_CODEGEN_SPLITKIT_H
17
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000018#include "llvm/ADT/ArrayRef.h"
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +000019#include "llvm/ADT/BitVector.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000020#include "llvm/ADT/DenseMap.h"
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +000021#include "llvm/ADT/IndexedMap.h"
Eric Christopher0f438112011-02-03 06:18:29 +000022#include "llvm/ADT/IntervalMap.h"
Jakob Stoklund Olesen8d0963f2010-12-21 01:50:21 +000023#include "llvm/ADT/SmallPtrSet.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000024#include "llvm/CodeGen/SlotIndexes.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000025
26namespace llvm {
27
Eric Christopher0f438112011-02-03 06:18:29 +000028class ConnectedVNInfoEqClasses;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000029class LiveInterval;
30class LiveIntervals;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +000031class LiveRangeEdit;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000032class MachineInstr;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000033class MachineLoopInfo;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000034class MachineRegisterInfo;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000035class TargetInstrInfo;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +000036class TargetRegisterInfo;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000037class VirtRegMap;
38class VNInfo;
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +000039class raw_ostream;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000040
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +000041/// At some point we should just include MachineDominators.h:
42class MachineDominatorTree;
43template <class NodeT> class DomTreeNodeBase;
44typedef DomTreeNodeBase<MachineBasicBlock> MachineDomTreeNode;
45
Jakob Stoklund Olesen8d0963f2010-12-21 01:50:21 +000046
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000047/// SplitAnalysis - Analyze a LiveInterval, looking for live range splitting
48/// opportunities.
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000049class SplitAnalysis {
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +000050public:
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000051 const MachineFunction &MF;
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000052 const VirtRegMap &VRM;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000053 const LiveIntervals &LIS;
54 const MachineLoopInfo &Loops;
55 const TargetInstrInfo &TII;
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 Olesenf0ac26c2011-02-09 22:50:26 +000060 /// Additional information about basic blocks where the current variable is
61 /// live. Such a block will look like one of these templates:
62 ///
63 /// 1. | o---x | Internal to block. Variable is only live in this block.
64 /// 2. |---x | Live-in, kill.
65 /// 3. | o---| Def, live-out.
66 /// 4. |---x o---| Live-in, kill, def, live-out.
67 /// 5. |---o---o---| Live-through with uses or defs.
68 /// 6. |-----------| Live-through without uses. Transparent.
69 ///
70 struct BlockInfo {
71 MachineBasicBlock *MBB;
72 SlotIndex FirstUse; ///< First instr using current reg.
73 SlotIndex LastUse; ///< Last instr using current reg.
74 SlotIndex Kill; ///< Interval end point inside block.
75 SlotIndex Def; ///< Interval start point inside block.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000076 bool LiveThrough; ///< Live in whole block (Templ 5. or 6. above).
77 bool LiveIn; ///< Current reg is live in.
78 bool LiveOut; ///< Current reg is live out.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000079 };
80
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000081private:
82 // Current live interval.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000083 const LiveInterval *CurLI;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000084
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000085 /// LastSplitPoint - Last legal split point in each basic block in the current
86 /// function. The first entry is the first terminator, the second entry is the
87 /// last valid split point for a variable that is live in to a landing pad
88 /// successor.
89 SmallVector<std::pair<SlotIndex, SlotIndex>, 8> LastSplitPoint;
90
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000091 /// UseBlocks - Blocks where CurLI has uses.
92 SmallVector<BlockInfo, 8> UseBlocks;
93
94 /// ThroughBlocks - Block numbers where CurLI is live through without uses.
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +000095 BitVector ThroughBlocks;
96
97 /// NumThroughBlocks - Number of live-through blocks.
98 unsigned NumThroughBlocks;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000099
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000100 /// DidRepairRange - analyze was forced to shrinkToUses().
101 bool DidRepairRange;
102
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +0000103 SlotIndex computeLastSplitPoint(unsigned Num);
104
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000105 // Sumarize statistics by counting instructions using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000106 void analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000107
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000108 /// calcLiveBlockInfo - Compute per-block information about CurLI.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000109 bool calcLiveBlockInfo();
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000110
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000111public:
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +0000112 SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +0000113 const MachineLoopInfo &mli);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000114
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000115 /// analyze - set CurLI to the specified interval, and analyze how it may be
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000116 /// split.
117 void analyze(const LiveInterval *li);
118
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000119 /// didRepairRange() - Returns true if CurLI was invalid and has been repaired
120 /// by analyze(). This really shouldn't happen, but sometimes the coalescer
121 /// can create live ranges that end in mid-air.
122 bool didRepairRange() const { return DidRepairRange; }
123
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000124 /// clear - clear all data structures so SplitAnalysis is ready to analyze a
125 /// new interval.
126 void clear();
127
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000128 /// getParent - Return the last analyzed interval.
129 const LiveInterval &getParent() const { return *CurLI; }
130
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +0000131 /// getLastSplitPoint - Return that base index of the last valid split point
132 /// in the basic block numbered Num.
133 SlotIndex getLastSplitPoint(unsigned Num) {
134 // Inline the common simple case.
135 if (LastSplitPoint[Num].first.isValid() &&
136 !LastSplitPoint[Num].second.isValid())
137 return LastSplitPoint[Num].first;
138 return computeLastSplitPoint(Num);
139 }
140
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000141 /// isOriginalEndpoint - Return true if the original live range was killed or
142 /// (re-)defined at Idx. Idx should be the 'def' slot for a normal kill/def,
143 /// and 'use' for an early-clobber def.
144 /// This can be used to recognize code inserted by earlier live range
145 /// splitting.
146 bool isOriginalEndpoint(SlotIndex Idx) const;
147
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000148 /// getUseBlocks - Return an array of BlockInfo objects for the basic blocks
149 /// where CurLI has uses.
150 ArrayRef<BlockInfo> getUseBlocks() { return UseBlocks; }
151
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000152 /// getNumThroughBlocks - Return the number of through blocks.
153 unsigned getNumThroughBlocks() const { return NumThroughBlocks; }
154
155 /// isThroughBlock - Return true if CurLI is live through MBB without uses.
156 bool isThroughBlock(unsigned MBB) const { return ThroughBlocks.test(MBB); }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000157
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000158 /// getThroughBlocks - Return the set of through blocks.
159 const BitVector &getThroughBlocks() const { return ThroughBlocks; }
160
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +0000161 /// countLiveBlocks - Return the number of blocks where li is live.
162 /// This is guaranteed to return the same number as getNumThroughBlocks() +
163 /// getUseBlocks().size() after calling analyze(li).
164 unsigned countLiveBlocks(const LiveInterval *li) const;
165
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000166 typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet;
167
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000168 /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000169 /// having CurLI split to a new live interval. Return true if Blocks can be
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000170 /// passed to SplitEditor::splitSingleBlocks.
171 bool getMultiUseBlocks(BlockPtrSet &Blocks);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000172};
173
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000174
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000175/// SplitEditor - Edit machine code and LiveIntervals for live range
176/// splitting.
177///
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000178/// - Create a SplitEditor from a SplitAnalysis.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000179/// - Start a new live interval with openIntv.
180/// - Mark the places where the new interval is entered using enterIntv*
181/// - Mark the ranges where the new interval is used with useIntv*
182/// - Mark the places where the interval is exited with exitIntv*.
183/// - Finish the current interval with closeIntv and repeat from 2.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000184/// - Rewrite instructions with finish().
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000185///
186class SplitEditor {
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000187 SplitAnalysis &SA;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000188 LiveIntervals &LIS;
189 VirtRegMap &VRM;
190 MachineRegisterInfo &MRI;
Eric Christopher0f438112011-02-03 06:18:29 +0000191 MachineDominatorTree &MDT;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000192 const TargetInstrInfo &TII;
193 const TargetRegisterInfo &TRI;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000194
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000195 /// Edit - The current parent register and new intervals created.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000196 LiveRangeEdit *Edit;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000197
Eric Christopher0f438112011-02-03 06:18:29 +0000198 /// Index into Edit of the currently open interval.
199 /// The index 0 is used for the complement, so the first interval started by
200 /// openIntv will be 1.
201 unsigned OpenIdx;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000202
Eric Christopher0f438112011-02-03 06:18:29 +0000203 typedef IntervalMap<SlotIndex, unsigned> RegAssignMap;
204
205 /// Allocator for the interval map. This will eventually be shared with
206 /// SlotIndexes and LiveIntervals.
207 RegAssignMap::Allocator Allocator;
208
209 /// RegAssign - Map of the assigned register indexes.
210 /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at
211 /// Idx.
212 RegAssignMap RegAssign;
213
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000214 typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*> ValueMap;
215
216 /// Values - keep track of the mapping from parent values to values in the new
217 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
218 ///
219 /// 1. No entry - the value is not mapped to Edit.get(RegIdx).
220 /// 2. Null - the value is mapped to multiple values in Edit.get(RegIdx).
221 /// Each value is represented by a minimal live range at its def.
222 /// 3. A non-null VNInfo - the value is mapped to a single new value.
223 /// The new value has no live ranges anywhere.
224 ValueMap Values;
225
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000226 typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000227 typedef IndexedMap<LiveOutPair, MBB2NumberFunctor> LiveOutMap;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000228
229 // LiveOutCache - Map each basic block where a new register is live out to the
230 // live-out value and its defining block.
231 // One of these conditions shall be true:
232 //
233 // 1. !LiveOutCache.count(MBB)
234 // 2. LiveOutCache[MBB].second.getNode() == MBB
235 // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB]
236 //
237 // This is only a cache, the values can be computed as:
238 //
239 // VNI = Edit.get(RegIdx)->getVNInfoAt(LIS.getMBBEndIdx(MBB))
240 // Node = mbt_[LIS.getMBBFromIndex(VNI->def)]
241 //
242 // The cache is also used as a visited set by extendRange(). It can be shared
243 // by all the new registers because at most one is live out of each block.
244 LiveOutMap LiveOutCache;
245
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000246 // LiveOutSeen - Indexed by MBB->getNumber(), a bit is set for each valid
247 // entry in LiveOutCache.
248 BitVector LiveOutSeen;
249
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000250 /// LiveInBlock - Info for updateSSA() about a block where a register is
251 /// live-in.
252 /// The updateSSA caller provides DomNode and Kill inside MBB, updateSSA()
253 /// adds the computed live-in value.
254 struct LiveInBlock {
255 // Dominator tree node for the block.
256 // Cleared by updateSSA when the final value has been determined.
257 MachineDomTreeNode *DomNode;
258
259 // Live-in value filled in by updateSSA once it is known.
260 VNInfo *Value;
261
262 // Position in block where the live-in range ends, or SlotIndex() if the
263 // range passes through the block.
264 SlotIndex Kill;
265
266 LiveInBlock(MachineDomTreeNode *node) : DomNode(node), Value(0) {}
267 };
268
269 /// LiveInBlocks - List of live-in blocks used by findReachingDefs() and
270 /// updateSSA(). This list is usually empty, it exists here to avoid frequent
271 /// reallocations.
272 SmallVector<LiveInBlock, 16> LiveInBlocks;
273
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000274 /// defValue - define a value in RegIdx from ParentVNI at Idx.
275 /// Idx does not have to be ParentVNI->def, but it must be contained within
276 /// ParentVNI's live range in ParentLI. The new value is added to the value
277 /// map.
278 /// Return the new LI value.
279 VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx);
280
281 /// markComplexMapped - Mark ParentVNI as complex mapped in RegIdx regardless
282 /// of the number of defs.
283 void markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI);
284
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000285 /// defFromParent - Define Reg from ParentVNI at UseIdx using either
286 /// rematerialization or a COPY from parent. Return the new value.
Eric Christopher0f438112011-02-03 06:18:29 +0000287 VNInfo *defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000288 VNInfo *ParentVNI,
289 SlotIndex UseIdx,
290 MachineBasicBlock &MBB,
291 MachineBasicBlock::iterator I);
292
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000293 /// extendRange - Extend the live range of Edit.get(RegIdx) so it reaches Idx.
294 /// Insert PHIDefs as needed to preserve SSA form.
295 void extendRange(unsigned RegIdx, SlotIndex Idx);
296
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000297 /// findReachingDefs - Starting from MBB, add blocks to LiveInBlocks until all
298 /// reaching defs for LI are found.
299 /// @param LI Live interval whose value is needed.
300 /// @param MBB Block where LI should be live-in.
301 /// @param Kill Kill point in MBB.
302 /// @return Unique value seen, or NULL.
303 VNInfo *findReachingDefs(LiveInterval *LI, MachineBasicBlock *MBB,
304 SlotIndex Kill);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000305
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000306 /// updateSSA - Compute and insert PHIDefs such that all blocks in
307 // LiveInBlocks get a known live-in value. Add live ranges to the blocks.
308 void updateSSA();
309
310 /// transferValues - Transfer values to the new ranges.
311 /// Return true if any ranges were skipped.
312 bool transferValues();
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000313
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000314 /// extendPHIKillRanges - Extend the ranges of all values killed by original
315 /// parent PHIDefs.
316 void extendPHIKillRanges();
317
Eric Christopher0f438112011-02-03 06:18:29 +0000318 /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000319 void rewriteAssigned(bool ExtendRanges);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000320
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000321 /// deleteRematVictims - Delete defs that are dead after rematerializing.
322 void deleteRematVictims();
323
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000324public:
325 /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000326 /// Newly created intervals will be appended to newIntervals.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000327 SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000328 MachineDominatorTree&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000329
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000330 /// reset - Prepare for a new split.
331 void reset(LiveRangeEdit&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000332
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000333 /// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000334 /// Return the interval index, starting from 1. Interval index 0 is the
335 /// implicit complement interval.
336 unsigned openIntv();
337
338 /// currentIntv - Return the current interval index.
339 unsigned currentIntv() const { return OpenIdx; }
340
341 /// selectIntv - Select a previously opened interval index.
342 void selectIntv(unsigned Idx);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000343
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000344 /// enterIntvBefore - Enter the open interval before the instruction at Idx.
345 /// If the parent interval is not live before Idx, a COPY is not inserted.
346 /// Return the beginning of the new live range.
347 SlotIndex enterIntvBefore(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000348
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000349 /// enterIntvAtEnd - Enter the open interval at the end of MBB.
350 /// Use the open interval from he inserted copy to the MBB end.
351 /// Return the beginning of the new live range.
352 SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000353
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000354 /// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000355 void useIntv(const MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000356
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000357 /// useIntv - indicate that all instructions in range should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000358 void useIntv(SlotIndex Start, SlotIndex End);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000359
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000360 /// leaveIntvAfter - Leave the open interval after the instruction at Idx.
361 /// Return the end of the live range.
362 SlotIndex leaveIntvAfter(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000363
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000364 /// leaveIntvBefore - Leave the open interval before the instruction at Idx.
365 /// Return the end of the live range.
366 SlotIndex leaveIntvBefore(SlotIndex Idx);
367
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000368 /// leaveIntvAtTop - Leave the interval at the top of MBB.
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000369 /// Add liveness from the MBB top to the copy.
370 /// Return the end of the live range.
371 SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000372
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000373 /// overlapIntv - Indicate that all instructions in range should use the open
374 /// interval, but also let the complement interval be live.
375 ///
376 /// This doubles the register pressure, but is sometimes required to deal with
377 /// register uses after the last valid split point.
378 ///
379 /// The Start index should be a return value from a leaveIntv* call, and End
380 /// should be in the same basic block. The parent interval must have the same
381 /// value across the range.
382 ///
383 void overlapIntv(SlotIndex Start, SlotIndex End);
384
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000385 /// finish - after all the new live ranges have been created, compute the
386 /// remaining live range, and rewrite instructions to use the new registers.
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000387 /// @param LRMap When not null, this vector will map each live range in Edit
388 /// back to the indices returned by openIntv.
389 /// There may be extra indices created by dead code elimination.
390 void finish(SmallVectorImpl<unsigned> *LRMap = 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000391
Eric Christopher0f438112011-02-03 06:18:29 +0000392 /// dump - print the current interval maping to dbgs().
393 void dump() const;
394
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000395 // ===--- High level methods ---===
396
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000397 /// splitSingleBlock - Split CurLI into a separate live interval around the
398 /// uses in a single block. This is intended to be used as part of a larger
399 /// split, and doesn't call finish().
400 void splitSingleBlock(const SplitAnalysis::BlockInfo &BI);
401
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000402 /// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000403 /// basic block in Blocks.
404 void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks);
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000405};
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000406
407}
Sebastian Redl6796e4f2011-04-24 15:46:51 +0000408
409#endif