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 | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/ArrayRef.h" |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/BitVector.h" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseMap.h" |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/IndexedMap.h" |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/IntervalMap.h" |
Jakob Stoklund Olesen | 8d0963f | 2010-12-21 01:50:21 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallPtrSet.h" |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/SlotIndexes.h" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 22 | |
| 23 | namespace llvm { |
| 24 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 25 | class ConnectedVNInfoEqClasses; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 26 | class LiveInterval; |
| 27 | class LiveIntervals; |
Jakob Stoklund Olesen | a17768f | 2010-10-14 23:49:52 +0000 | [diff] [blame] | 28 | class LiveRangeEdit; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 29 | class MachineInstr; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 30 | class MachineLoopInfo; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 31 | class MachineRegisterInfo; |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 32 | class TargetInstrInfo; |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 33 | class TargetRegisterInfo; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 34 | class VirtRegMap; |
| 35 | class VNInfo; |
Jakob Stoklund Olesen | 532de3d | 2010-10-22 20:28:21 +0000 | [diff] [blame] | 36 | class raw_ostream; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 37 | |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 38 | /// At some point we should just include MachineDominators.h: |
| 39 | class MachineDominatorTree; |
| 40 | template <class NodeT> class DomTreeNodeBase; |
| 41 | typedef DomTreeNodeBase<MachineBasicBlock> MachineDomTreeNode; |
| 42 | |
Jakob Stoklund Olesen | 8d0963f | 2010-12-21 01:50:21 +0000 | [diff] [blame] | 43 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 44 | /// SplitAnalysis - Analyze a LiveInterval, looking for live range splitting |
| 45 | /// opportunities. |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 46 | class SplitAnalysis { |
Jakob Stoklund Olesen | 08e93b1 | 2010-08-10 17:07:22 +0000 | [diff] [blame] | 47 | public: |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 48 | const MachineFunction &MF; |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 49 | const VirtRegMap &VRM; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 50 | const LiveIntervals &LIS; |
| 51 | const MachineLoopInfo &Loops; |
| 52 | const TargetInstrInfo &TII; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 53 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 54 | // Sorted slot indexes of using instructions. |
| 55 | SmallVector<SlotIndex, 8> UseSlots; |
| 56 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 57 | /// Additional information about basic blocks where the current variable is |
| 58 | /// live. Such a block will look like one of these templates: |
| 59 | /// |
| 60 | /// 1. | o---x | Internal to block. Variable is only live in this block. |
| 61 | /// 2. |---x | Live-in, kill. |
| 62 | /// 3. | o---| Def, live-out. |
| 63 | /// 4. |---x o---| Live-in, kill, def, live-out. |
| 64 | /// 5. |---o---o---| Live-through with uses or defs. |
| 65 | /// 6. |-----------| Live-through without uses. Transparent. |
| 66 | /// |
| 67 | struct BlockInfo { |
| 68 | MachineBasicBlock *MBB; |
| 69 | SlotIndex FirstUse; ///< First instr using current reg. |
| 70 | SlotIndex LastUse; ///< Last instr using current reg. |
| 71 | SlotIndex Kill; ///< Interval end point inside block. |
| 72 | SlotIndex Def; ///< Interval start point inside block. |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 73 | bool LiveThrough; ///< Live in whole block (Templ 5. or 6. above). |
| 74 | bool LiveIn; ///< Current reg is live in. |
| 75 | bool LiveOut; ///< Current reg is live out. |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 78 | private: |
| 79 | // Current live interval. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 80 | const LiveInterval *CurLI; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 81 | |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 82 | /// LastSplitPoint - Last legal split point in each basic block in the current |
| 83 | /// function. The first entry is the first terminator, the second entry is the |
| 84 | /// last valid split point for a variable that is live in to a landing pad |
| 85 | /// successor. |
| 86 | SmallVector<std::pair<SlotIndex, SlotIndex>, 8> LastSplitPoint; |
| 87 | |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 88 | /// UseBlocks - Blocks where CurLI has uses. |
| 89 | SmallVector<BlockInfo, 8> UseBlocks; |
| 90 | |
| 91 | /// ThroughBlocks - Block numbers where CurLI is live through without uses. |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 92 | BitVector ThroughBlocks; |
| 93 | |
| 94 | /// NumThroughBlocks - Number of live-through blocks. |
| 95 | unsigned NumThroughBlocks; |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 96 | |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 97 | SlotIndex computeLastSplitPoint(unsigned Num); |
| 98 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 99 | // Sumarize statistics by counting instructions using CurLI. |
Jakob Stoklund Olesen | abff280 | 2010-07-20 16:12:37 +0000 | [diff] [blame] | 100 | void analyzeUses(); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 101 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 102 | /// calcLiveBlockInfo - Compute per-block information about CurLI. |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 103 | bool calcLiveBlockInfo(); |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 104 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 105 | public: |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 106 | SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis, |
Jakob Stoklund Olesen | f2c6e36 | 2010-07-20 23:50:15 +0000 | [diff] [blame] | 107 | const MachineLoopInfo &mli); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 108 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 109 | /// 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] | 110 | /// split. |
| 111 | void analyze(const LiveInterval *li); |
| 112 | |
| 113 | /// clear - clear all data structures so SplitAnalysis is ready to analyze a |
| 114 | /// new interval. |
| 115 | void clear(); |
| 116 | |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 117 | /// getParent - Return the last analyzed interval. |
| 118 | const LiveInterval &getParent() const { return *CurLI; } |
| 119 | |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 120 | /// getLastSplitPoint - Return that base index of the last valid split point |
| 121 | /// in the basic block numbered Num. |
| 122 | SlotIndex getLastSplitPoint(unsigned Num) { |
| 123 | // Inline the common simple case. |
| 124 | if (LastSplitPoint[Num].first.isValid() && |
| 125 | !LastSplitPoint[Num].second.isValid()) |
| 126 | return LastSplitPoint[Num].first; |
| 127 | return computeLastSplitPoint(Num); |
| 128 | } |
| 129 | |
Jakob Stoklund 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 | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 137 | /// getUseBlocks - Return an array of BlockInfo objects for the basic blocks |
| 138 | /// where CurLI has uses. |
| 139 | ArrayRef<BlockInfo> getUseBlocks() { return UseBlocks; } |
| 140 | |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 141 | /// getNumThroughBlocks - Return the number of through blocks. |
| 142 | unsigned getNumThroughBlocks() const { return NumThroughBlocks; } |
| 143 | |
| 144 | /// isThroughBlock - Return true if CurLI is live through MBB without uses. |
| 145 | bool isThroughBlock(unsigned MBB) const { return ThroughBlocks.test(MBB); } |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 146 | |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 147 | /// getThroughBlocks - Return the set of through blocks. |
| 148 | const BitVector &getThroughBlocks() const { return ThroughBlocks; } |
| 149 | |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 150 | typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet; |
| 151 | |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 152 | /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 153 | /// 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] | 154 | /// passed to SplitEditor::splitSingleBlocks. |
| 155 | bool getMultiUseBlocks(BlockPtrSet &Blocks); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 156 | }; |
| 157 | |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 158 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 159 | /// SplitEditor - Edit machine code and LiveIntervals for live range |
| 160 | /// splitting. |
| 161 | /// |
Jakob Stoklund Olesen | 5eb308b | 2010-08-06 22:17:33 +0000 | [diff] [blame] | 162 | /// - Create a SplitEditor from a SplitAnalysis. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 163 | /// - Start a new live interval with openIntv. |
| 164 | /// - Mark the places where the new interval is entered using enterIntv* |
| 165 | /// - Mark the ranges where the new interval is used with useIntv* |
| 166 | /// - Mark the places where the interval is exited with exitIntv*. |
| 167 | /// - Finish the current interval with closeIntv and repeat from 2. |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 168 | /// - Rewrite instructions with finish(). |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 169 | /// |
| 170 | class SplitEditor { |
Jakob Stoklund Olesen | 0eeca44 | 2011-02-19 00:42:33 +0000 | [diff] [blame] | 171 | SplitAnalysis &SA; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 172 | LiveIntervals &LIS; |
| 173 | VirtRegMap &VRM; |
| 174 | MachineRegisterInfo &MRI; |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 175 | MachineDominatorTree &MDT; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 176 | const TargetInstrInfo &TII; |
| 177 | const TargetRegisterInfo &TRI; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 178 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 179 | /// Edit - The current parent register and new intervals created. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 180 | LiveRangeEdit *Edit; |
Jakob Stoklund Olesen | a17768f | 2010-10-14 23:49:52 +0000 | [diff] [blame] | 181 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 182 | /// Index into Edit of the currently open interval. |
| 183 | /// The index 0 is used for the complement, so the first interval started by |
| 184 | /// openIntv will be 1. |
| 185 | unsigned OpenIdx; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 186 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 187 | typedef IntervalMap<SlotIndex, unsigned> RegAssignMap; |
| 188 | |
| 189 | /// Allocator for the interval map. This will eventually be shared with |
| 190 | /// SlotIndexes and LiveIntervals. |
| 191 | RegAssignMap::Allocator Allocator; |
| 192 | |
| 193 | /// RegAssign - Map of the assigned register indexes. |
| 194 | /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at |
| 195 | /// Idx. |
| 196 | RegAssignMap RegAssign; |
| 197 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 198 | typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*> ValueMap; |
| 199 | |
| 200 | /// Values - keep track of the mapping from parent values to values in the new |
| 201 | /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains: |
| 202 | /// |
| 203 | /// 1. No entry - the value is not mapped to Edit.get(RegIdx). |
| 204 | /// 2. Null - the value is mapped to multiple values in Edit.get(RegIdx). |
| 205 | /// Each value is represented by a minimal live range at its def. |
| 206 | /// 3. A non-null VNInfo - the value is mapped to a single new value. |
| 207 | /// The new value has no live ranges anywhere. |
| 208 | ValueMap Values; |
| 209 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 210 | typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair; |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 211 | typedef IndexedMap<LiveOutPair, MBB2NumberFunctor> LiveOutMap; |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 212 | |
| 213 | // LiveOutCache - Map each basic block where a new register is live out to the |
| 214 | // live-out value and its defining block. |
| 215 | // One of these conditions shall be true: |
| 216 | // |
| 217 | // 1. !LiveOutCache.count(MBB) |
| 218 | // 2. LiveOutCache[MBB].second.getNode() == MBB |
| 219 | // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB] |
| 220 | // |
| 221 | // This is only a cache, the values can be computed as: |
| 222 | // |
| 223 | // VNI = Edit.get(RegIdx)->getVNInfoAt(LIS.getMBBEndIdx(MBB)) |
| 224 | // Node = mbt_[LIS.getMBBFromIndex(VNI->def)] |
| 225 | // |
| 226 | // The cache is also used as a visited set by extendRange(). It can be shared |
| 227 | // by all the new registers because at most one is live out of each block. |
| 228 | LiveOutMap LiveOutCache; |
| 229 | |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 230 | // LiveOutSeen - Indexed by MBB->getNumber(), a bit is set for each valid |
| 231 | // entry in LiveOutCache. |
| 232 | BitVector LiveOutSeen; |
| 233 | |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame^] | 234 | /// LiveInBlock - Info for updateSSA() about a block where a register is |
| 235 | /// live-in. |
| 236 | /// The updateSSA caller provides DomNode and Kill inside MBB, updateSSA() |
| 237 | /// adds the computed live-in value. |
| 238 | struct LiveInBlock { |
| 239 | // Dominator tree node for the block. |
| 240 | // Cleared by updateSSA when the final value has been determined. |
| 241 | MachineDomTreeNode *DomNode; |
| 242 | |
| 243 | // Live-in value filled in by updateSSA once it is known. |
| 244 | VNInfo *Value; |
| 245 | |
| 246 | // Position in block where the live-in range ends, or SlotIndex() if the |
| 247 | // range passes through the block. |
| 248 | SlotIndex Kill; |
| 249 | |
| 250 | LiveInBlock(MachineDomTreeNode *node) : DomNode(node), Value(0) {} |
| 251 | }; |
| 252 | |
| 253 | /// LiveInBlocks - List of live-in blocks used by findReachingDefs() and |
| 254 | /// updateSSA(). This list is usually empty, it exists here to avoid frequent |
| 255 | /// reallocations. |
| 256 | SmallVector<LiveInBlock, 16> LiveInBlocks; |
| 257 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 258 | /// defValue - define a value in RegIdx from ParentVNI at Idx. |
| 259 | /// Idx does not have to be ParentVNI->def, but it must be contained within |
| 260 | /// ParentVNI's live range in ParentLI. The new value is added to the value |
| 261 | /// map. |
| 262 | /// Return the new LI value. |
| 263 | VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx); |
| 264 | |
| 265 | /// markComplexMapped - Mark ParentVNI as complex mapped in RegIdx regardless |
| 266 | /// of the number of defs. |
| 267 | void markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI); |
| 268 | |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 269 | /// defFromParent - Define Reg from ParentVNI at UseIdx using either |
| 270 | /// rematerialization or a COPY from parent. Return the new value. |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 271 | VNInfo *defFromParent(unsigned RegIdx, |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 272 | VNInfo *ParentVNI, |
| 273 | SlotIndex UseIdx, |
| 274 | MachineBasicBlock &MBB, |
| 275 | MachineBasicBlock::iterator I); |
| 276 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 277 | /// extendRange - Extend the live range of Edit.get(RegIdx) so it reaches Idx. |
| 278 | /// Insert PHIDefs as needed to preserve SSA form. |
| 279 | void extendRange(unsigned RegIdx, SlotIndex Idx); |
| 280 | |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame^] | 281 | /// findReachingDefs - Starting from MBB, add blocks to LiveInBlocks until all |
| 282 | /// reaching defs for LI are found. |
| 283 | /// @param LI Live interval whose value is needed. |
| 284 | /// @param MBB Block where LI should be live-in. |
| 285 | /// @param Kill Kill point in MBB. |
| 286 | /// @return Unique value seen, or NULL. |
| 287 | VNInfo *findReachingDefs(LiveInterval *LI, MachineBasicBlock *MBB, |
| 288 | SlotIndex Kill); |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 289 | |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame^] | 290 | /// updateSSA - Compute and insert PHIDefs such that all blocks in |
| 291 | // LiveInBlocks get a known live-in value. Add live ranges to the blocks. |
| 292 | void updateSSA(); |
| 293 | |
| 294 | /// transferValues - Transfer values to the new ranges. |
| 295 | /// Return true if any ranges were skipped. |
| 296 | bool transferValues(); |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 297 | |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 298 | /// extendPHIKillRanges - Extend the ranges of all values killed by original |
| 299 | /// parent PHIDefs. |
| 300 | void extendPHIKillRanges(); |
| 301 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 302 | /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers. |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 303 | void rewriteAssigned(bool ExtendRanges); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 304 | |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 305 | /// deleteRematVictims - Delete defs that are dead after rematerializing. |
| 306 | void deleteRematVictims(); |
| 307 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 308 | public: |
| 309 | /// Create a new SplitEditor for editing the LiveInterval analyzed by SA. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 310 | /// Newly created intervals will be appended to newIntervals. |
Jakob Stoklund Olesen | d68f458 | 2010-10-28 20:34:50 +0000 | [diff] [blame] | 311 | SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&, |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 312 | MachineDominatorTree&); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 313 | |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 314 | /// reset - Prepare for a new split. |
| 315 | void reset(LiveRangeEdit&); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 316 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 317 | /// Create a new virtual register and live interval. |
Jakob Stoklund Olesen | e1b43c3 | 2011-04-12 18:11:31 +0000 | [diff] [blame] | 318 | /// Return the interval index, starting from 1. Interval index 0 is the |
| 319 | /// implicit complement interval. |
| 320 | unsigned openIntv(); |
| 321 | |
| 322 | /// currentIntv - Return the current interval index. |
| 323 | unsigned currentIntv() const { return OpenIdx; } |
| 324 | |
| 325 | /// selectIntv - Select a previously opened interval index. |
| 326 | void selectIntv(unsigned Idx); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 327 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 328 | /// enterIntvBefore - Enter the open interval before the instruction at Idx. |
| 329 | /// If the parent interval is not live before Idx, a COPY is not inserted. |
| 330 | /// Return the beginning of the new live range. |
| 331 | SlotIndex enterIntvBefore(SlotIndex Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 332 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 333 | /// enterIntvAtEnd - Enter the open interval at the end of MBB. |
| 334 | /// Use the open interval from he inserted copy to the MBB end. |
| 335 | /// Return the beginning of the new live range. |
| 336 | SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 337 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 338 | /// useIntv - indicate that all instructions in MBB should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 339 | void useIntv(const MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 340 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 341 | /// useIntv - indicate that all instructions in range should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 342 | void useIntv(SlotIndex Start, SlotIndex End); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 343 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 344 | /// leaveIntvAfter - Leave the open interval after the instruction at Idx. |
| 345 | /// Return the end of the live range. |
| 346 | SlotIndex leaveIntvAfter(SlotIndex Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 347 | |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 348 | /// leaveIntvBefore - Leave the open interval before the instruction at Idx. |
| 349 | /// Return the end of the live range. |
| 350 | SlotIndex leaveIntvBefore(SlotIndex Idx); |
| 351 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 352 | /// leaveIntvAtTop - Leave the interval at the top of MBB. |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 353 | /// Add liveness from the MBB top to the copy. |
| 354 | /// Return the end of the live range. |
| 355 | SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 356 | |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 357 | /// overlapIntv - Indicate that all instructions in range should use the open |
| 358 | /// interval, but also let the complement interval be live. |
| 359 | /// |
| 360 | /// This doubles the register pressure, but is sometimes required to deal with |
| 361 | /// register uses after the last valid split point. |
| 362 | /// |
| 363 | /// The Start index should be a return value from a leaveIntv* call, and End |
| 364 | /// should be in the same basic block. The parent interval must have the same |
| 365 | /// value across the range. |
| 366 | /// |
| 367 | void overlapIntv(SlotIndex Start, SlotIndex End); |
| 368 | |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 369 | /// finish - after all the new live ranges have been created, compute the |
| 370 | /// remaining live range, and rewrite instructions to use the new registers. |
| 371 | void finish(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 372 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 373 | /// dump - print the current interval maping to dbgs(). |
| 374 | void dump() const; |
| 375 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 376 | // ===--- High level methods ---=== |
| 377 | |
Jakob Stoklund Olesen | fd5c513 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 378 | /// splitSingleBlock - Split CurLI into a separate live interval around the |
| 379 | /// uses in a single block. This is intended to be used as part of a larger |
| 380 | /// split, and doesn't call finish(). |
| 381 | void splitSingleBlock(const SplitAnalysis::BlockInfo &BI); |
| 382 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 383 | /// splitSingleBlocks - Split CurLI into a separate live interval inside each |
Jakob Stoklund Olesen | 57d0f2d | 2010-10-05 22:19:33 +0000 | [diff] [blame] | 384 | /// basic block in Blocks. |
| 385 | void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks); |
Jakob Stoklund Olesen | fc412d8 | 2010-08-13 21:18:48 +0000 | [diff] [blame] | 386 | }; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 387 | |
| 388 | } |