blob: 8bed2a0fb67482d24674f3551bb362d9ed8153ac [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.
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +000066 /// 4. |---x o---| Live-in, kill, def, live-out. Counted by NumGapBlocks.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000067 /// 5. |---o---o---| Live-through with uses or defs.
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +000068 /// 6. |-----------| Live-through without uses. Counted by NumThroughBlocks.
69 ///
70 /// Two BlockInfo entries are created for template 4. One for the live-in
71 /// segment, and one for the live-out segment. These entries look as if the
72 /// block were split in the middle where the live range isn't live.
73 ///
74 /// Live-through blocks without any uses don't get BlockInfo entries. They
75 /// are simply listed in ThroughBlocks instead.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000076 ///
77 struct BlockInfo {
78 MachineBasicBlock *MBB;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +000079 SlotIndex FirstInstr; ///< First instr accessing current reg.
80 SlotIndex LastInstr; ///< Last instr accessing current reg.
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +000081 SlotIndex FirstDef; ///< First non-phi valno->def, or SlotIndex().
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000082 bool LiveIn; ///< Current reg is live in.
83 bool LiveOut; ///< Current reg is live out.
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +000084
85 /// isOneInstr - Returns true when this BlockInfo describes a single
86 /// instruction.
87 bool isOneInstr() const {
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +000088 return SlotIndex::isSameInstr(FirstInstr, LastInstr);
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +000089 }
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000090 };
91
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000092private:
93 // Current live interval.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000094 const LiveInterval *CurLI;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +000095
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000096 /// LastSplitPoint - Last legal split point in each basic block in the current
97 /// function. The first entry is the first terminator, the second entry is the
98 /// last valid split point for a variable that is live in to a landing pad
99 /// successor.
100 SmallVector<std::pair<SlotIndex, SlotIndex>, 8> LastSplitPoint;
101
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000102 /// UseBlocks - Blocks where CurLI has uses.
103 SmallVector<BlockInfo, 8> UseBlocks;
104
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000105 /// NumGapBlocks - Number of duplicate entries in UseBlocks for blocks where
106 /// the live range has a gap.
107 unsigned NumGapBlocks;
108
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000109 /// ThroughBlocks - Block numbers where CurLI is live through without uses.
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000110 BitVector ThroughBlocks;
111
112 /// NumThroughBlocks - Number of live-through blocks.
113 unsigned NumThroughBlocks;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000114
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000115 /// DidRepairRange - analyze was forced to shrinkToUses().
116 bool DidRepairRange;
117
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +0000118 SlotIndex computeLastSplitPoint(unsigned Num);
119
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000120 // Sumarize statistics by counting instructions using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000121 void analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000122
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000123 /// calcLiveBlockInfo - Compute per-block information about CurLI.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000124 bool calcLiveBlockInfo();
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000125
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000126public:
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +0000127 SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +0000128 const MachineLoopInfo &mli);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000129
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000130 /// analyze - set CurLI to the specified interval, and analyze how it may be
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000131 /// split.
132 void analyze(const LiveInterval *li);
133
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000134 /// didRepairRange() - Returns true if CurLI was invalid and has been repaired
135 /// by analyze(). This really shouldn't happen, but sometimes the coalescer
136 /// can create live ranges that end in mid-air.
137 bool didRepairRange() const { return DidRepairRange; }
138
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000139 /// clear - clear all data structures so SplitAnalysis is ready to analyze a
140 /// new interval.
141 void clear();
142
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000143 /// getParent - Return the last analyzed interval.
144 const LiveInterval &getParent() const { return *CurLI; }
145
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +0000146 /// getLastSplitPoint - Return that base index of the last valid split point
147 /// in the basic block numbered Num.
148 SlotIndex getLastSplitPoint(unsigned Num) {
149 // Inline the common simple case.
150 if (LastSplitPoint[Num].first.isValid() &&
151 !LastSplitPoint[Num].second.isValid())
152 return LastSplitPoint[Num].first;
153 return computeLastSplitPoint(Num);
154 }
155
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000156 /// isOriginalEndpoint - Return true if the original live range was killed or
157 /// (re-)defined at Idx. Idx should be the 'def' slot for a normal kill/def,
158 /// and 'use' for an early-clobber def.
159 /// This can be used to recognize code inserted by earlier live range
160 /// splitting.
161 bool isOriginalEndpoint(SlotIndex Idx) const;
162
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000163 /// getUseBlocks - Return an array of BlockInfo objects for the basic blocks
164 /// where CurLI has uses.
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +0000165 ArrayRef<BlockInfo> getUseBlocks() const { return UseBlocks; }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000166
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000167 /// getNumThroughBlocks - Return the number of through blocks.
168 unsigned getNumThroughBlocks() const { return NumThroughBlocks; }
169
170 /// isThroughBlock - Return true if CurLI is live through MBB without uses.
171 bool isThroughBlock(unsigned MBB) const { return ThroughBlocks.test(MBB); }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000172
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000173 /// getThroughBlocks - Return the set of through blocks.
174 const BitVector &getThroughBlocks() const { return ThroughBlocks; }
175
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +0000176 /// getNumLiveBlocks - Return the number of blocks where CurLI is live.
177 unsigned getNumLiveBlocks() const {
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000178 return getUseBlocks().size() - NumGapBlocks + getNumThroughBlocks();
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +0000179 }
180
181 /// countLiveBlocks - Return the number of blocks where li is live. This is
182 /// guaranteed to return the same number as getNumLiveBlocks() after calling
183 /// analyze(li).
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +0000184 unsigned countLiveBlocks(const LiveInterval *li) const;
185
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000186 typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet;
187
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000188 /// shouldSplitSingleBlock - Returns true if it would help to create a local
189 /// live range for the instructions in BI. There is normally no benefit to
190 /// creating a live range for a single instruction, but it does enable
191 /// register class inflation if the instruction has a restricted register
192 /// class.
193 ///
194 /// @param BI The block to be isolated.
195 /// @param SingleInstrs True when single instructions should be isolated.
196 bool shouldSplitSingleBlock(const BlockInfo &BI, bool SingleInstrs) const;
197
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000198 /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000199 /// having CurLI split to a new live interval. Return true if Blocks can be
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000200 /// passed to SplitEditor::splitSingleBlocks.
201 bool getMultiUseBlocks(BlockPtrSet &Blocks);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000202};
203
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000204
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000205/// SplitEditor - Edit machine code and LiveIntervals for live range
206/// splitting.
207///
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000208/// - Create a SplitEditor from a SplitAnalysis.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000209/// - Start a new live interval with openIntv.
210/// - Mark the places where the new interval is entered using enterIntv*
211/// - Mark the ranges where the new interval is used with useIntv*
212/// - Mark the places where the interval is exited with exitIntv*.
213/// - Finish the current interval with closeIntv and repeat from 2.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000214/// - Rewrite instructions with finish().
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000215///
216class SplitEditor {
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000217 SplitAnalysis &SA;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000218 LiveIntervals &LIS;
219 VirtRegMap &VRM;
220 MachineRegisterInfo &MRI;
Eric Christopher0f438112011-02-03 06:18:29 +0000221 MachineDominatorTree &MDT;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000222 const TargetInstrInfo &TII;
223 const TargetRegisterInfo &TRI;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000224
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000225 /// Edit - The current parent register and new intervals created.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000226 LiveRangeEdit *Edit;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000227
Eric Christopher0f438112011-02-03 06:18:29 +0000228 /// Index into Edit of the currently open interval.
229 /// The index 0 is used for the complement, so the first interval started by
230 /// openIntv will be 1.
231 unsigned OpenIdx;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000232
Eric Christopher0f438112011-02-03 06:18:29 +0000233 typedef IntervalMap<SlotIndex, unsigned> RegAssignMap;
234
235 /// Allocator for the interval map. This will eventually be shared with
236 /// SlotIndexes and LiveIntervals.
237 RegAssignMap::Allocator Allocator;
238
239 /// RegAssign - Map of the assigned register indexes.
240 /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at
241 /// Idx.
242 RegAssignMap RegAssign;
243
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000244 typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*> ValueMap;
245
246 /// Values - keep track of the mapping from parent values to values in the new
247 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
248 ///
249 /// 1. No entry - the value is not mapped to Edit.get(RegIdx).
250 /// 2. Null - the value is mapped to multiple values in Edit.get(RegIdx).
251 /// Each value is represented by a minimal live range at its def.
252 /// 3. A non-null VNInfo - the value is mapped to a single new value.
253 /// The new value has no live ranges anywhere.
254 ValueMap Values;
255
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000256 typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000257 typedef IndexedMap<LiveOutPair, MBB2NumberFunctor> LiveOutMap;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000258
259 // LiveOutCache - Map each basic block where a new register is live out to the
260 // live-out value and its defining block.
261 // One of these conditions shall be true:
262 //
263 // 1. !LiveOutCache.count(MBB)
264 // 2. LiveOutCache[MBB].second.getNode() == MBB
265 // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB]
266 //
267 // This is only a cache, the values can be computed as:
268 //
269 // VNI = Edit.get(RegIdx)->getVNInfoAt(LIS.getMBBEndIdx(MBB))
270 // Node = mbt_[LIS.getMBBFromIndex(VNI->def)]
271 //
272 // The cache is also used as a visited set by extendRange(). It can be shared
273 // by all the new registers because at most one is live out of each block.
274 LiveOutMap LiveOutCache;
275
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000276 // LiveOutSeen - Indexed by MBB->getNumber(), a bit is set for each valid
277 // entry in LiveOutCache.
278 BitVector LiveOutSeen;
279
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000280 /// LiveInBlock - Info for updateSSA() about a block where a register is
281 /// live-in.
282 /// The updateSSA caller provides DomNode and Kill inside MBB, updateSSA()
283 /// adds the computed live-in value.
284 struct LiveInBlock {
285 // Dominator tree node for the block.
286 // Cleared by updateSSA when the final value has been determined.
287 MachineDomTreeNode *DomNode;
288
289 // Live-in value filled in by updateSSA once it is known.
290 VNInfo *Value;
291
292 // Position in block where the live-in range ends, or SlotIndex() if the
293 // range passes through the block.
294 SlotIndex Kill;
295
296 LiveInBlock(MachineDomTreeNode *node) : DomNode(node), Value(0) {}
297 };
298
299 /// LiveInBlocks - List of live-in blocks used by findReachingDefs() and
300 /// updateSSA(). This list is usually empty, it exists here to avoid frequent
301 /// reallocations.
302 SmallVector<LiveInBlock, 16> LiveInBlocks;
303
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000304 /// defValue - define a value in RegIdx from ParentVNI at Idx.
305 /// Idx does not have to be ParentVNI->def, but it must be contained within
306 /// ParentVNI's live range in ParentLI. The new value is added to the value
307 /// map.
308 /// Return the new LI value.
309 VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx);
310
311 /// markComplexMapped - Mark ParentVNI as complex mapped in RegIdx regardless
312 /// of the number of defs.
313 void markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI);
314
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000315 /// defFromParent - Define Reg from ParentVNI at UseIdx using either
316 /// rematerialization or a COPY from parent. Return the new value.
Eric Christopher0f438112011-02-03 06:18:29 +0000317 VNInfo *defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000318 VNInfo *ParentVNI,
319 SlotIndex UseIdx,
320 MachineBasicBlock &MBB,
321 MachineBasicBlock::iterator I);
322
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000323 /// extendRange - Extend the live range of Edit.get(RegIdx) so it reaches Idx.
324 /// Insert PHIDefs as needed to preserve SSA form.
325 void extendRange(unsigned RegIdx, SlotIndex Idx);
326
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000327 /// findReachingDefs - Starting from MBB, add blocks to LiveInBlocks until all
328 /// reaching defs for LI are found.
329 /// @param LI Live interval whose value is needed.
330 /// @param MBB Block where LI should be live-in.
331 /// @param Kill Kill point in MBB.
332 /// @return Unique value seen, or NULL.
333 VNInfo *findReachingDefs(LiveInterval *LI, MachineBasicBlock *MBB,
334 SlotIndex Kill);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000335
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000336 /// updateSSA - Compute and insert PHIDefs such that all blocks in
337 // LiveInBlocks get a known live-in value. Add live ranges to the blocks.
338 void updateSSA();
339
340 /// transferValues - Transfer values to the new ranges.
341 /// Return true if any ranges were skipped.
342 bool transferValues();
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000343
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000344 /// extendPHIKillRanges - Extend the ranges of all values killed by original
345 /// parent PHIDefs.
346 void extendPHIKillRanges();
347
Eric Christopher0f438112011-02-03 06:18:29 +0000348 /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000349 void rewriteAssigned(bool ExtendRanges);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000350
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000351 /// deleteRematVictims - Delete defs that are dead after rematerializing.
352 void deleteRematVictims();
353
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000354public:
355 /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000356 /// Newly created intervals will be appended to newIntervals.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000357 SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000358 MachineDominatorTree&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000359
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000360 /// reset - Prepare for a new split.
361 void reset(LiveRangeEdit&);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000362
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000363 /// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000364 /// Return the interval index, starting from 1. Interval index 0 is the
365 /// implicit complement interval.
366 unsigned openIntv();
367
368 /// currentIntv - Return the current interval index.
369 unsigned currentIntv() const { return OpenIdx; }
370
371 /// selectIntv - Select a previously opened interval index.
372 void selectIntv(unsigned Idx);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000373
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000374 /// enterIntvBefore - Enter the open interval before the instruction at Idx.
375 /// If the parent interval is not live before Idx, a COPY is not inserted.
376 /// Return the beginning of the new live range.
377 SlotIndex enterIntvBefore(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000378
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000379 /// enterIntvAfter - Enter the open interval after the instruction at Idx.
380 /// Return the beginning of the new live range.
381 SlotIndex enterIntvAfter(SlotIndex Idx);
382
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000383 /// enterIntvAtEnd - Enter the open interval at the end of MBB.
384 /// Use the open interval from he inserted copy to the MBB end.
385 /// Return the beginning of the new live range.
386 SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000387
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000388 /// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000389 void useIntv(const MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000390
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000391 /// useIntv - indicate that all instructions in range should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000392 void useIntv(SlotIndex Start, SlotIndex End);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000393
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000394 /// leaveIntvAfter - Leave the open interval after the instruction at Idx.
395 /// Return the end of the live range.
396 SlotIndex leaveIntvAfter(SlotIndex Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000397
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000398 /// leaveIntvBefore - Leave the open interval before the instruction at Idx.
399 /// Return the end of the live range.
400 SlotIndex leaveIntvBefore(SlotIndex Idx);
401
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000402 /// leaveIntvAtTop - Leave the interval at the top of MBB.
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000403 /// Add liveness from the MBB top to the copy.
404 /// Return the end of the live range.
405 SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000406
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000407 /// overlapIntv - Indicate that all instructions in range should use the open
408 /// interval, but also let the complement interval be live.
409 ///
410 /// This doubles the register pressure, but is sometimes required to deal with
411 /// register uses after the last valid split point.
412 ///
413 /// The Start index should be a return value from a leaveIntv* call, and End
414 /// should be in the same basic block. The parent interval must have the same
415 /// value across the range.
416 ///
417 void overlapIntv(SlotIndex Start, SlotIndex End);
418
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000419 /// finish - after all the new live ranges have been created, compute the
420 /// remaining live range, and rewrite instructions to use the new registers.
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000421 /// @param LRMap When not null, this vector will map each live range in Edit
422 /// back to the indices returned by openIntv.
423 /// There may be extra indices created by dead code elimination.
424 void finish(SmallVectorImpl<unsigned> *LRMap = 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000425
Eric Christopher0f438112011-02-03 06:18:29 +0000426 /// dump - print the current interval maping to dbgs().
427 void dump() const;
428
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000429 // ===--- High level methods ---===
430
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000431 /// splitSingleBlock - Split CurLI into a separate live interval around the
432 /// uses in a single block. This is intended to be used as part of a larger
433 /// split, and doesn't call finish().
434 void splitSingleBlock(const SplitAnalysis::BlockInfo &BI);
435
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000436 /// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000437 /// basic block in Blocks.
438 void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000439
440 /// splitLiveThroughBlock - Split CurLI in the given block such that it
441 /// enters the block in IntvIn and leaves it in IntvOut. There may be uses in
442 /// the block, but they will be ignored when placing split points.
443 ///
444 /// @param MBBNum Block number.
445 /// @param IntvIn Interval index entering the block.
446 /// @param LeaveBefore When set, leave IntvIn before this point.
447 /// @param IntvOut Interval index leaving the block.
448 /// @param EnterAfter When set, enter IntvOut after this point.
449 void splitLiveThroughBlock(unsigned MBBNum,
450 unsigned IntvIn, SlotIndex LeaveBefore,
451 unsigned IntvOut, SlotIndex EnterAfter);
452
453 /// splitRegInBlock - Split CurLI in the given block such that it enters the
454 /// block in IntvIn and leaves it on the stack (or not at all). Split points
455 /// are placed in a way that avoids putting uses in the stack interval. This
456 /// may require creating a local interval when there is interference.
457 ///
458 /// @param BI Block descriptor.
459 /// @param IntvIn Interval index entering the block. Not 0.
460 /// @param LeaveBefore When set, leave IntvIn before this point.
461 void splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
462 unsigned IntvIn, SlotIndex LeaveBefore);
463
464 /// splitRegOutBlock - Split CurLI in the given block such that it enters the
465 /// block on the stack (or isn't live-in at all) and leaves it in IntvOut.
466 /// Split points are placed to avoid interference and such that the uses are
467 /// not in the stack interval. This may require creating a local interval
468 /// when there is interference.
469 ///
470 /// @param BI Block descriptor.
471 /// @param IntvOut Interval index leaving the block.
472 /// @param EnterAfter When set, enter IntvOut after this point.
473 void splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
474 unsigned IntvOut, SlotIndex EnterAfter);
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000475};
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000476
477}
Sebastian Redl6796e4f2011-04-24 15:46:51 +0000478
479#endif