Jakob Stoklund Olesen | 8dd070e | 2011-01-04 21:10:05 +0000 | [diff] [blame] | 1 | //===-------- SplitKit.h - Toolkit for splitting live ranges ----*- C++ -*-===// |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 2 | // |
| 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 Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/DenseMap.h" |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/IntervalMap.h" |
Jakob Stoklund Olesen | 8d0963f | 2010-12-21 01:50:21 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SmallPtrSet.h" |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/SlotIndexes.h" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 19 | |
| 20 | namespace llvm { |
| 21 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 22 | class ConnectedVNInfoEqClasses; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 23 | class LiveInterval; |
| 24 | class LiveIntervals; |
Jakob Stoklund Olesen | a17768f | 2010-10-14 23:49:52 +0000 | [diff] [blame] | 25 | class LiveRangeEdit; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 26 | class MachineInstr; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 27 | class MachineLoopInfo; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 28 | class MachineRegisterInfo; |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 29 | class TargetInstrInfo; |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 30 | class TargetRegisterInfo; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 31 | class VirtRegMap; |
| 32 | class VNInfo; |
Jakob Stoklund Olesen | 532de3d | 2010-10-22 20:28:21 +0000 | [diff] [blame] | 33 | class raw_ostream; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 34 | |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 35 | /// At some point we should just include MachineDominators.h: |
| 36 | class MachineDominatorTree; |
| 37 | template <class NodeT> class DomTreeNodeBase; |
| 38 | typedef DomTreeNodeBase<MachineBasicBlock> MachineDomTreeNode; |
| 39 | |
Jakob Stoklund Olesen | 8d0963f | 2010-12-21 01:50:21 +0000 | [diff] [blame] | 40 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 41 | /// SplitAnalysis - Analyze a LiveInterval, looking for live range splitting |
| 42 | /// opportunities. |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 43 | class SplitAnalysis { |
Jakob Stoklund Olesen | 08e93b1 | 2010-08-10 17:07:22 +0000 | [diff] [blame] | 44 | public: |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 45 | const MachineFunction &MF; |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 46 | const VirtRegMap &VRM; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 47 | const LiveIntervals &LIS; |
| 48 | const MachineLoopInfo &Loops; |
| 49 | const TargetInstrInfo &TII; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 50 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 51 | // Instructions using the the current register. |
| 52 | typedef SmallPtrSet<const MachineInstr*, 16> InstrPtrSet; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 53 | InstrPtrSet UsingInstrs; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 54 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 55 | // Sorted slot indexes of using instructions. |
| 56 | SmallVector<SlotIndex, 8> UseSlots; |
| 57 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 58 | // The number of instructions using CurLI in each basic block. |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 59 | typedef DenseMap<const MachineBasicBlock*, unsigned> BlockCountMap; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 60 | BlockCountMap UsingBlocks; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 61 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 62 | /// Additional information about basic blocks where the current variable is |
| 63 | /// live. Such a block will look like one of these templates: |
| 64 | /// |
| 65 | /// 1. | o---x | Internal to block. Variable is only live in this block. |
| 66 | /// 2. |---x | Live-in, kill. |
| 67 | /// 3. | o---| Def, live-out. |
| 68 | /// 4. |---x o---| Live-in, kill, def, live-out. |
| 69 | /// 5. |---o---o---| Live-through with uses or defs. |
| 70 | /// 6. |-----------| Live-through without uses. Transparent. |
| 71 | /// |
| 72 | struct BlockInfo { |
| 73 | MachineBasicBlock *MBB; |
Jakob Stoklund Olesen | 36d6186 | 2011-03-03 03:41:29 +0000 | [diff] [blame^] | 74 | SlotIndex Start; ///< Beginining of block. |
| 75 | SlotIndex Stop; ///< End of block. |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 76 | SlotIndex FirstUse; ///< First instr using current reg. |
| 77 | SlotIndex LastUse; ///< Last instr using current reg. |
| 78 | SlotIndex Kill; ///< Interval end point inside block. |
| 79 | SlotIndex Def; ///< Interval start point inside block. |
| 80 | /// Last possible point for splitting live ranges. |
| 81 | SlotIndex LastSplitPoint; |
| 82 | bool Uses; ///< Current reg has uses or defs in block. |
| 83 | bool LiveThrough; ///< Live in whole block (Templ 5. or 6. above). |
| 84 | bool LiveIn; ///< Current reg is live in. |
| 85 | bool LiveOut; ///< Current reg is live out. |
| 86 | |
| 87 | // Per-interference pattern scratch data. |
| 88 | bool OverlapEntry; ///< Interference overlaps entering interval. |
| 89 | bool OverlapExit; ///< Interference overlaps exiting interval. |
| 90 | }; |
| 91 | |
| 92 | /// Basic blocks where var is live. This array is parallel to |
| 93 | /// SpillConstraints. |
| 94 | SmallVector<BlockInfo, 8> LiveBlocks; |
| 95 | |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 96 | private: |
| 97 | // Current live interval. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 98 | const LiveInterval *CurLI; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 99 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 100 | // Sumarize statistics by counting instructions using CurLI. |
Jakob Stoklund Olesen | abff280 | 2010-07-20 16:12:37 +0000 | [diff] [blame] | 101 | void analyzeUses(); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 102 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 103 | /// calcLiveBlockInfo - Compute per-block information about CurLI. |
| 104 | void calcLiveBlockInfo(); |
| 105 | |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 106 | /// canAnalyzeBranch - Return true if MBB ends in a branch that can be |
| 107 | /// analyzed. |
| 108 | bool canAnalyzeBranch(const MachineBasicBlock *MBB); |
| 109 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 110 | public: |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 111 | SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis, |
Jakob Stoklund Olesen | f2c6e36 | 2010-07-20 23:50:15 +0000 | [diff] [blame] | 112 | const MachineLoopInfo &mli); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 113 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 114 | /// analyze - set CurLI to the specified interval, and analyze how it may be |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 115 | /// split. |
| 116 | void analyze(const LiveInterval *li); |
| 117 | |
| 118 | /// clear - clear all data structures so SplitAnalysis is ready to analyze a |
| 119 | /// new interval. |
| 120 | void clear(); |
| 121 | |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 122 | /// getParent - Return the last analyzed interval. |
| 123 | const LiveInterval &getParent() const { return *CurLI; } |
| 124 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 125 | /// hasUses - Return true if MBB has any uses of CurLI. |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 126 | bool hasUses(const MachineBasicBlock *MBB) const { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 127 | return UsingBlocks.lookup(MBB); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Jakob Stoklund Olesen | 06c0f25 | 2011-02-21 23:09:46 +0000 | [diff] [blame] | 130 | /// 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 Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 137 | typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet; |
| 138 | |
Jakob Stoklund Olesen | 532de3d | 2010-10-22 20:28:21 +0000 | [diff] [blame] | 139 | // Print a set of blocks with use counts. |
| 140 | void print(const BlockPtrSet&, raw_ostream&) const; |
| 141 | |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 142 | /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 143 | /// having CurLI split to a new live interval. Return true if Blocks can be |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 144 | /// passed to SplitEditor::splitSingleBlocks. |
| 145 | bool getMultiUseBlocks(BlockPtrSet &Blocks); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 146 | }; |
| 147 | |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 148 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 149 | /// SplitEditor - Edit machine code and LiveIntervals for live range |
| 150 | /// splitting. |
| 151 | /// |
Jakob Stoklund Olesen | 5eb308b | 2010-08-06 22:17:33 +0000 | [diff] [blame] | 152 | /// - Create a SplitEditor from a SplitAnalysis. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 153 | /// - Start a new live interval with openIntv. |
| 154 | /// - Mark the places where the new interval is entered using enterIntv* |
| 155 | /// - Mark the ranges where the new interval is used with useIntv* |
| 156 | /// - Mark the places where the interval is exited with exitIntv*. |
| 157 | /// - Finish the current interval with closeIntv and repeat from 2. |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 158 | /// - Rewrite instructions with finish(). |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 159 | /// |
| 160 | class SplitEditor { |
Jakob Stoklund Olesen | 0eeca44 | 2011-02-19 00:42:33 +0000 | [diff] [blame] | 161 | SplitAnalysis &SA; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 162 | LiveIntervals &LIS; |
| 163 | VirtRegMap &VRM; |
| 164 | MachineRegisterInfo &MRI; |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 165 | MachineDominatorTree &MDT; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 166 | const TargetInstrInfo &TII; |
| 167 | const TargetRegisterInfo &TRI; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 168 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 169 | /// Edit - The current parent register and new intervals created. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 170 | LiveRangeEdit *Edit; |
Jakob Stoklund Olesen | a17768f | 2010-10-14 23:49:52 +0000 | [diff] [blame] | 171 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 172 | /// Index into Edit of the currently open interval. |
| 173 | /// The index 0 is used for the complement, so the first interval started by |
| 174 | /// openIntv will be 1. |
| 175 | unsigned OpenIdx; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 176 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 177 | typedef IntervalMap<SlotIndex, unsigned> RegAssignMap; |
| 178 | |
| 179 | /// Allocator for the interval map. This will eventually be shared with |
| 180 | /// SlotIndexes and LiveIntervals. |
| 181 | RegAssignMap::Allocator Allocator; |
| 182 | |
| 183 | /// RegAssign - Map of the assigned register indexes. |
| 184 | /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at |
| 185 | /// Idx. |
| 186 | RegAssignMap RegAssign; |
| 187 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 188 | typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*> ValueMap; |
| 189 | |
| 190 | /// Values - keep track of the mapping from parent values to values in the new |
| 191 | /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains: |
| 192 | /// |
| 193 | /// 1. No entry - the value is not mapped to Edit.get(RegIdx). |
| 194 | /// 2. Null - the value is mapped to multiple values in Edit.get(RegIdx). |
| 195 | /// Each value is represented by a minimal live range at its def. |
| 196 | /// 3. A non-null VNInfo - the value is mapped to a single new value. |
| 197 | /// The new value has no live ranges anywhere. |
| 198 | ValueMap Values; |
| 199 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 200 | typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair; |
| 201 | typedef DenseMap<MachineBasicBlock*,LiveOutPair> LiveOutMap; |
| 202 | |
| 203 | // LiveOutCache - Map each basic block where a new register is live out to the |
| 204 | // live-out value and its defining block. |
| 205 | // One of these conditions shall be true: |
| 206 | // |
| 207 | // 1. !LiveOutCache.count(MBB) |
| 208 | // 2. LiveOutCache[MBB].second.getNode() == MBB |
| 209 | // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB] |
| 210 | // |
| 211 | // This is only a cache, the values can be computed as: |
| 212 | // |
| 213 | // VNI = Edit.get(RegIdx)->getVNInfoAt(LIS.getMBBEndIdx(MBB)) |
| 214 | // Node = mbt_[LIS.getMBBFromIndex(VNI->def)] |
| 215 | // |
| 216 | // The cache is also used as a visited set by extendRange(). It can be shared |
| 217 | // by all the new registers because at most one is live out of each block. |
| 218 | LiveOutMap LiveOutCache; |
| 219 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 220 | /// defValue - define a value in RegIdx from ParentVNI at Idx. |
| 221 | /// Idx does not have to be ParentVNI->def, but it must be contained within |
| 222 | /// ParentVNI's live range in ParentLI. The new value is added to the value |
| 223 | /// map. |
| 224 | /// Return the new LI value. |
| 225 | VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx); |
| 226 | |
| 227 | /// markComplexMapped - Mark ParentVNI as complex mapped in RegIdx regardless |
| 228 | /// of the number of defs. |
| 229 | void markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI); |
| 230 | |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 231 | /// defFromParent - Define Reg from ParentVNI at UseIdx using either |
| 232 | /// rematerialization or a COPY from parent. Return the new value. |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 233 | VNInfo *defFromParent(unsigned RegIdx, |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 234 | VNInfo *ParentVNI, |
| 235 | SlotIndex UseIdx, |
| 236 | MachineBasicBlock &MBB, |
| 237 | MachineBasicBlock::iterator I); |
| 238 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 239 | /// extendRange - Extend the live range of Edit.get(RegIdx) so it reaches Idx. |
| 240 | /// Insert PHIDefs as needed to preserve SSA form. |
| 241 | void extendRange(unsigned RegIdx, SlotIndex Idx); |
| 242 | |
| 243 | /// updateSSA - Insert PHIDefs as necessary and update LiveOutCache such that |
| 244 | /// Edit.get(RegIdx) is live-in to all the blocks in LiveIn. |
| 245 | /// Return the value that is eventually live-in to IdxMBB. |
| 246 | VNInfo *updateSSA(unsigned RegIdx, |
| 247 | SmallVectorImpl<MachineDomTreeNode*> &LiveIn, |
| 248 | SlotIndex Idx, |
| 249 | const MachineBasicBlock *IdxMBB); |
| 250 | |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 251 | /// transferSimpleValues - Transfer simply defined values to the new ranges. |
| 252 | /// Return true if any complex ranges were skipped. |
| 253 | bool transferSimpleValues(); |
| 254 | |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 255 | /// extendPHIKillRanges - Extend the ranges of all values killed by original |
| 256 | /// parent PHIDefs. |
| 257 | void extendPHIKillRanges(); |
| 258 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 259 | /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers. |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 260 | void rewriteAssigned(bool ExtendRanges); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 261 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 262 | /// rewriteComponents - Rewrite all uses of Intv[0] according to the eq |
| 263 | /// classes in ConEQ. |
| 264 | /// This must be done when Intvs[0] is styill live at all uses, before calling |
| 265 | /// ConEq.Distribute(). |
| 266 | void rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs, |
| 267 | const ConnectedVNInfoEqClasses &ConEq); |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 268 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 269 | public: |
| 270 | /// Create a new SplitEditor for editing the LiveInterval analyzed by SA. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 271 | /// Newly created intervals will be appended to newIntervals. |
Jakob Stoklund Olesen | d68f458 | 2010-10-28 20:34:50 +0000 | [diff] [blame] | 272 | SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&, |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 273 | MachineDominatorTree&); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 274 | |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 275 | /// reset - Prepare for a new split. |
| 276 | void reset(LiveRangeEdit&); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 277 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 278 | /// Create a new virtual register and live interval. |
| 279 | void openIntv(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 280 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 281 | /// enterIntvBefore - Enter the open interval before the instruction at Idx. |
| 282 | /// If the parent interval is not live before Idx, a COPY is not inserted. |
| 283 | /// Return the beginning of the new live range. |
| 284 | SlotIndex enterIntvBefore(SlotIndex Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 285 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 286 | /// enterIntvAtEnd - Enter the open interval at the end of MBB. |
| 287 | /// Use the open interval from he inserted copy to the MBB end. |
| 288 | /// Return the beginning of the new live range. |
| 289 | SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 290 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 291 | /// useIntv - indicate that all instructions in MBB should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 292 | void useIntv(const MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 293 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 294 | /// useIntv - indicate that all instructions in range should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 295 | void useIntv(SlotIndex Start, SlotIndex End); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 296 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 297 | /// leaveIntvAfter - Leave the open interval after the instruction at Idx. |
| 298 | /// Return the end of the live range. |
| 299 | SlotIndex leaveIntvAfter(SlotIndex Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 300 | |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 301 | /// leaveIntvBefore - Leave the open interval before the instruction at Idx. |
| 302 | /// Return the end of the live range. |
| 303 | SlotIndex leaveIntvBefore(SlotIndex Idx); |
| 304 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 305 | /// leaveIntvAtTop - Leave the interval at the top of MBB. |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 306 | /// Add liveness from the MBB top to the copy. |
| 307 | /// Return the end of the live range. |
| 308 | SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 309 | |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 310 | /// overlapIntv - Indicate that all instructions in range should use the open |
| 311 | /// interval, but also let the complement interval be live. |
| 312 | /// |
| 313 | /// This doubles the register pressure, but is sometimes required to deal with |
| 314 | /// register uses after the last valid split point. |
| 315 | /// |
| 316 | /// The Start index should be a return value from a leaveIntv* call, and End |
| 317 | /// should be in the same basic block. The parent interval must have the same |
| 318 | /// value across the range. |
| 319 | /// |
| 320 | void overlapIntv(SlotIndex Start, SlotIndex End); |
| 321 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 322 | /// closeIntv - Indicate that we are done editing the currently open |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 323 | /// LiveInterval, and ranges can be trimmed. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 324 | void closeIntv(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 325 | |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 326 | /// finish - after all the new live ranges have been created, compute the |
| 327 | /// remaining live range, and rewrite instructions to use the new registers. |
| 328 | void finish(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 329 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 330 | /// dump - print the current interval maping to dbgs(). |
| 331 | void dump() const; |
| 332 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 333 | // ===--- High level methods ---=== |
| 334 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 335 | /// splitSingleBlocks - Split CurLI into a separate live interval inside each |
Jakob Stoklund Olesen | 57d0f2d | 2010-10-05 22:19:33 +0000 | [diff] [blame] | 336 | /// basic block in Blocks. |
| 337 | void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks); |
Jakob Stoklund Olesen | fc412d8 | 2010-08-13 21:18:48 +0000 | [diff] [blame] | 338 | }; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 339 | |
| 340 | } |