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; |
| 74 | SlotIndex FirstUse; ///< First instr using current reg. |
| 75 | SlotIndex LastUse; ///< Last instr using current reg. |
| 76 | SlotIndex Kill; ///< Interval end point inside block. |
| 77 | SlotIndex Def; ///< Interval start point inside block. |
| 78 | /// Last possible point for splitting live ranges. |
| 79 | SlotIndex LastSplitPoint; |
| 80 | bool Uses; ///< Current reg has uses or defs in block. |
| 81 | bool LiveThrough; ///< Live in whole block (Templ 5. or 6. above). |
| 82 | bool LiveIn; ///< Current reg is live in. |
| 83 | bool LiveOut; ///< Current reg is live out. |
| 84 | |
| 85 | // Per-interference pattern scratch data. |
| 86 | bool OverlapEntry; ///< Interference overlaps entering interval. |
| 87 | bool OverlapExit; ///< Interference overlaps exiting interval. |
| 88 | }; |
| 89 | |
| 90 | /// Basic blocks where var is live. This array is parallel to |
| 91 | /// SpillConstraints. |
| 92 | SmallVector<BlockInfo, 8> LiveBlocks; |
| 93 | |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 94 | private: |
| 95 | // Current live interval. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 96 | const LiveInterval *CurLI; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 97 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 98 | // Sumarize statistics by counting instructions using CurLI. |
Jakob Stoklund Olesen | abff280 | 2010-07-20 16:12:37 +0000 | [diff] [blame] | 99 | void analyzeUses(); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 100 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 101 | /// calcLiveBlockInfo - Compute per-block information about CurLI. |
| 102 | void calcLiveBlockInfo(); |
| 103 | |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 104 | /// canAnalyzeBranch - Return true if MBB ends in a branch that can be |
| 105 | /// analyzed. |
| 106 | bool canAnalyzeBranch(const MachineBasicBlock *MBB); |
| 107 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 108 | public: |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 109 | SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis, |
Jakob Stoklund Olesen | f2c6e36 | 2010-07-20 23:50:15 +0000 | [diff] [blame] | 110 | const MachineLoopInfo &mli); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 111 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 112 | /// 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] | 113 | /// split. |
| 114 | void analyze(const LiveInterval *li); |
| 115 | |
| 116 | /// clear - clear all data structures so SplitAnalysis is ready to analyze a |
| 117 | /// new interval. |
| 118 | void clear(); |
| 119 | |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 120 | /// getParent - Return the last analyzed interval. |
| 121 | const LiveInterval &getParent() const { return *CurLI; } |
| 122 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 123 | /// hasUses - Return true if MBB has any uses of CurLI. |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 124 | bool hasUses(const MachineBasicBlock *MBB) const { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 125 | return UsingBlocks.lookup(MBB); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Jakob Stoklund Olesen | 06c0f25 | 2011-02-21 23:09:46 +0000 | [diff] [blame] | 128 | /// isOriginalEndpoint - Return true if the original live range was killed or |
| 129 | /// (re-)defined at Idx. Idx should be the 'def' slot for a normal kill/def, |
| 130 | /// and 'use' for an early-clobber def. |
| 131 | /// This can be used to recognize code inserted by earlier live range |
| 132 | /// splitting. |
| 133 | bool isOriginalEndpoint(SlotIndex Idx) const; |
| 134 | |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 135 | typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet; |
| 136 | |
Jakob Stoklund Olesen | 532de3d | 2010-10-22 20:28:21 +0000 | [diff] [blame] | 137 | // Print a set of blocks with use counts. |
| 138 | void print(const BlockPtrSet&, raw_ostream&) const; |
| 139 | |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 140 | /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 141 | /// 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] | 142 | /// passed to SplitEditor::splitSingleBlocks. |
| 143 | bool getMultiUseBlocks(BlockPtrSet &Blocks); |
Jakob Stoklund Olesen | fc412d8 | 2010-08-13 21:18:48 +0000 | [diff] [blame] | 144 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 145 | /// getBlockForInsideSplit - If CurLI is contained inside a single basic |
| 146 | /// block, and it would pay to subdivide the interval inside that block, |
| 147 | /// return it. Otherwise return NULL. The returned block can be passed to |
Jakob Stoklund Olesen | fc412d8 | 2010-08-13 21:18:48 +0000 | [diff] [blame] | 148 | /// SplitEditor::splitInsideBlock. |
| 149 | const MachineBasicBlock *getBlockForInsideSplit(); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 150 | }; |
| 151 | |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 152 | |
| 153 | /// LiveIntervalMap - Map values from a large LiveInterval into a small |
| 154 | /// interval that is a subset. Insert phi-def values as needed. This class is |
| 155 | /// used by SplitEditor to create new smaller LiveIntervals. |
| 156 | /// |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 157 | /// ParentLI is the larger interval, LI is the subset interval. Every value |
| 158 | /// in LI corresponds to exactly one value in ParentLI, and the live range |
| 159 | /// of the value is contained within the live range of the ParentLI value. |
| 160 | /// Values in ParentLI may map to any number of OpenLI values, including 0. |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 161 | class LiveIntervalMap { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 162 | LiveIntervals &LIS; |
| 163 | MachineDominatorTree &MDT; |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 164 | |
| 165 | // The parent interval is never changed. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 166 | const LiveInterval &ParentLI; |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 167 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 168 | // The child interval's values are fully contained inside ParentLI values. |
| 169 | LiveInterval *LI; |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 170 | |
| 171 | typedef DenseMap<const VNInfo*, VNInfo*> ValueMap; |
| 172 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 173 | // Map ParentLI values to simple values in LI that are defined at the same |
| 174 | // SlotIndex, or NULL for ParentLI values that have complex LI defs. |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 175 | // Note there is a difference between values mapping to NULL (complex), and |
| 176 | // values not present (unknown/unmapped). |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 177 | ValueMap Values; |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 178 | |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 179 | typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair; |
| 180 | typedef DenseMap<MachineBasicBlock*,LiveOutPair> LiveOutMap; |
| 181 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 182 | // LiveOutCache - Map each basic block where LI is live out to the live-out |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 183 | // value and its defining block. One of these conditions shall be true: |
| 184 | // |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 185 | // 1. !LiveOutCache.count(MBB) |
| 186 | // 2. LiveOutCache[MBB].second.getNode() == MBB |
| 187 | // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB] |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 188 | // |
| 189 | // This is only a cache, the values can be computed as: |
| 190 | // |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 191 | // VNI = LI->getVNInfoAt(LIS.getMBBEndIdx(MBB)) |
| 192 | // Node = mbt_[LIS.getMBBFromIndex(VNI->def)] |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 193 | // |
| 194 | // The cache is also used as a visiteed set by mapValue(). |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 195 | LiveOutMap LiveOutCache; |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 196 | |
Jakob Stoklund Olesen | d7ca577 | 2011-01-20 17:45:20 +0000 | [diff] [blame] | 197 | // Dump the live-out cache to dbgs(). |
| 198 | void dumpCache(); |
| 199 | |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 200 | public: |
| 201 | LiveIntervalMap(LiveIntervals &lis, |
Jakob Stoklund Olesen | d68f458 | 2010-10-28 20:34:50 +0000 | [diff] [blame] | 202 | MachineDominatorTree &mdt, |
Jakob Stoklund Olesen | 9ca2aeb | 2010-09-13 23:29:09 +0000 | [diff] [blame] | 203 | const LiveInterval &parentli) |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 204 | : LIS(lis), MDT(mdt), ParentLI(parentli), LI(0) {} |
Jakob Stoklund Olesen | 9ca2aeb | 2010-09-13 23:29:09 +0000 | [diff] [blame] | 205 | |
| 206 | /// reset - clear all data structures and start a new live interval. |
| 207 | void reset(LiveInterval *); |
| 208 | |
| 209 | /// getLI - return the current live interval. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 210 | LiveInterval *getLI() const { return LI; } |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 211 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 212 | /// defValue - define a value in LI from the ParentLI value VNI and Idx. |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 213 | /// Idx does not have to be ParentVNI->def, but it must be contained within |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 214 | /// ParentVNI's live range in ParentLI. |
| 215 | /// Return the new LI value. |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 216 | VNInfo *defValue(const VNInfo *ParentVNI, SlotIndex Idx); |
| 217 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 218 | /// mapValue - map ParentVNI to the corresponding LI value at Idx. It is |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 219 | /// assumed that ParentVNI is live at Idx. |
| 220 | /// If ParentVNI has not been defined by defValue, it is assumed that |
| 221 | /// ParentVNI->def dominates Idx. |
| 222 | /// If ParentVNI has been defined by defValue one or more times, a value that |
| 223 | /// dominates Idx will be returned. This may require creating extra phi-def |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 224 | /// values and adding live ranges to LI. |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 225 | /// If simple is not NULL, *simple will indicate if ParentVNI is a simply |
| 226 | /// mapped value. |
| 227 | VNInfo *mapValue(const VNInfo *ParentVNI, SlotIndex Idx, bool *simple = 0); |
| 228 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 229 | // extendTo - Find the last LI value defined in MBB at or before Idx. The |
Jakob Stoklund Olesen | fc60d77 | 2010-10-05 20:36:25 +0000 | [diff] [blame] | 230 | // parentli is assumed to be live at Idx. Extend the live range to include |
| 231 | // Idx. Return the found VNInfo, or NULL. |
Jakob Stoklund Olesen | c95c146 | 2010-10-27 00:39:07 +0000 | [diff] [blame] | 232 | VNInfo *extendTo(const MachineBasicBlock *MBB, SlotIndex Idx); |
Jakob Stoklund Olesen | fc60d77 | 2010-10-05 20:36:25 +0000 | [diff] [blame] | 233 | |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 234 | /// isMapped - Return true is ParentVNI is a known mapped value. It may be a |
| 235 | /// simple 1-1 mapping or a complex mapping to later defs. |
| 236 | bool isMapped(const VNInfo *ParentVNI) const { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 237 | return Values.count(ParentVNI); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | /// isComplexMapped - Return true if ParentVNI has received new definitions |
| 241 | /// with defValue. |
| 242 | bool isComplexMapped(const VNInfo *ParentVNI) const; |
| 243 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 244 | /// markComplexMapped - Mark ParentVNI as complex mapped regardless of the |
| 245 | /// number of definitions. |
| 246 | void markComplexMapped(const VNInfo *ParentVNI) { Values[ParentVNI] = 0; } |
| 247 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 248 | // addSimpleRange - Add a simple range from ParentLI to LI. |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 249 | // ParentVNI must be live in the [Start;End) interval. |
| 250 | void addSimpleRange(SlotIndex Start, SlotIndex End, const VNInfo *ParentVNI); |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 251 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 252 | /// addRange - Add live ranges to LI where [Start;End) intersects ParentLI. |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 253 | /// All needed values whose def is not inside [Start;End) must be defined |
| 254 | /// beforehand so mapValue will work. |
| 255 | void addRange(SlotIndex Start, SlotIndex End); |
| 256 | }; |
| 257 | |
| 258 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 259 | /// SplitEditor - Edit machine code and LiveIntervals for live range |
| 260 | /// splitting. |
| 261 | /// |
Jakob Stoklund Olesen | 5eb308b | 2010-08-06 22:17:33 +0000 | [diff] [blame] | 262 | /// - Create a SplitEditor from a SplitAnalysis. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 263 | /// - Start a new live interval with openIntv. |
| 264 | /// - Mark the places where the new interval is entered using enterIntv* |
| 265 | /// - Mark the ranges where the new interval is used with useIntv* |
| 266 | /// - Mark the places where the interval is exited with exitIntv*. |
| 267 | /// - Finish the current interval with closeIntv and repeat from 2. |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 268 | /// - Rewrite instructions with finish(). |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 269 | /// |
| 270 | class SplitEditor { |
Jakob Stoklund Olesen | 0eeca44 | 2011-02-19 00:42:33 +0000 | [diff] [blame] | 271 | SplitAnalysis &SA; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 272 | LiveIntervals &LIS; |
| 273 | VirtRegMap &VRM; |
| 274 | MachineRegisterInfo &MRI; |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 275 | MachineDominatorTree &MDT; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 276 | const TargetInstrInfo &TII; |
| 277 | const TargetRegisterInfo &TRI; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 278 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 279 | /// Edit - The current parent register and new intervals created. |
| 280 | LiveRangeEdit &Edit; |
Jakob Stoklund Olesen | a17768f | 2010-10-14 23:49:52 +0000 | [diff] [blame] | 281 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 282 | /// Index into Edit of the currently open interval. |
| 283 | /// The index 0 is used for the complement, so the first interval started by |
| 284 | /// openIntv will be 1. |
| 285 | unsigned OpenIdx; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 286 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 287 | typedef IntervalMap<SlotIndex, unsigned> RegAssignMap; |
| 288 | |
| 289 | /// Allocator for the interval map. This will eventually be shared with |
| 290 | /// SlotIndexes and LiveIntervals. |
| 291 | RegAssignMap::Allocator Allocator; |
| 292 | |
| 293 | /// RegAssign - Map of the assigned register indexes. |
| 294 | /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at |
| 295 | /// Idx. |
| 296 | RegAssignMap RegAssign; |
| 297 | |
| 298 | /// LIMappers - One LiveIntervalMap or each interval in Edit. |
| 299 | SmallVector<LiveIntervalMap, 4> LIMappers; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 300 | |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 301 | /// defFromParent - Define Reg from ParentVNI at UseIdx using either |
| 302 | /// rematerialization or a COPY from parent. Return the new value. |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 303 | VNInfo *defFromParent(unsigned RegIdx, |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 304 | VNInfo *ParentVNI, |
| 305 | SlotIndex UseIdx, |
| 306 | MachineBasicBlock &MBB, |
| 307 | MachineBasicBlock::iterator I); |
| 308 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 309 | /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers. |
| 310 | void rewriteAssigned(); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 311 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 312 | /// rewriteComponents - Rewrite all uses of Intv[0] according to the eq |
| 313 | /// classes in ConEQ. |
| 314 | /// This must be done when Intvs[0] is styill live at all uses, before calling |
| 315 | /// ConEq.Distribute(). |
| 316 | void rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs, |
| 317 | const ConnectedVNInfoEqClasses &ConEq); |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 318 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 319 | public: |
| 320 | /// Create a new SplitEditor for editing the LiveInterval analyzed by SA. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 321 | /// Newly created intervals will be appended to newIntervals. |
Jakob Stoklund Olesen | d68f458 | 2010-10-28 20:34:50 +0000 | [diff] [blame] | 322 | SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&, |
| 323 | MachineDominatorTree&, LiveRangeEdit&); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 324 | |
Jakob Stoklund Olesen | 5eb308b | 2010-08-06 22:17:33 +0000 | [diff] [blame] | 325 | /// getAnalysis - Get the corresponding analysis. |
Jakob Stoklund Olesen | 0eeca44 | 2011-02-19 00:42:33 +0000 | [diff] [blame] | 326 | SplitAnalysis &getAnalysis() { return SA; } |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 327 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 328 | /// Create a new virtual register and live interval. |
| 329 | void openIntv(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 330 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 331 | /// enterIntvBefore - Enter the open interval before the instruction at Idx. |
| 332 | /// If the parent interval is not live before Idx, a COPY is not inserted. |
| 333 | /// Return the beginning of the new live range. |
| 334 | SlotIndex enterIntvBefore(SlotIndex Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 335 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 336 | /// enterIntvAtEnd - Enter the open interval at the end of MBB. |
| 337 | /// Use the open interval from he inserted copy to the MBB end. |
| 338 | /// Return the beginning of the new live range. |
| 339 | SlotIndex enterIntvAtEnd(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 MBB should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 342 | void useIntv(const MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 343 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 344 | /// useIntv - indicate that all instructions in range should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 345 | void useIntv(SlotIndex Start, SlotIndex End); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 346 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 347 | /// leaveIntvAfter - Leave the open interval after the instruction at Idx. |
| 348 | /// Return the end of the live range. |
| 349 | SlotIndex leaveIntvAfter(SlotIndex Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 350 | |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 351 | /// leaveIntvBefore - Leave the open interval before the instruction at Idx. |
| 352 | /// Return the end of the live range. |
| 353 | SlotIndex leaveIntvBefore(SlotIndex Idx); |
| 354 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 355 | /// leaveIntvAtTop - Leave the interval at the top of MBB. |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 356 | /// Add liveness from the MBB top to the copy. |
| 357 | /// Return the end of the live range. |
| 358 | SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 359 | |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 360 | /// overlapIntv - Indicate that all instructions in range should use the open |
| 361 | /// interval, but also let the complement interval be live. |
| 362 | /// |
| 363 | /// This doubles the register pressure, but is sometimes required to deal with |
| 364 | /// register uses after the last valid split point. |
| 365 | /// |
| 366 | /// The Start index should be a return value from a leaveIntv* call, and End |
| 367 | /// should be in the same basic block. The parent interval must have the same |
| 368 | /// value across the range. |
| 369 | /// |
| 370 | void overlapIntv(SlotIndex Start, SlotIndex End); |
| 371 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 372 | /// closeIntv - Indicate that we are done editing the currently open |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 373 | /// LiveInterval, and ranges can be trimmed. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 374 | void closeIntv(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 375 | |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 376 | /// finish - after all the new live ranges have been created, compute the |
| 377 | /// remaining live range, and rewrite instructions to use the new registers. |
| 378 | void finish(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 379 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 380 | /// dump - print the current interval maping to dbgs(). |
| 381 | void dump() const; |
| 382 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 383 | // ===--- High level methods ---=== |
| 384 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 385 | /// splitSingleBlocks - Split CurLI into a separate live interval inside each |
Jakob Stoklund Olesen | 57d0f2d | 2010-10-05 22:19:33 +0000 | [diff] [blame] | 386 | /// basic block in Blocks. |
| 387 | void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 388 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 389 | /// splitInsideBlock - Split CurLI into multiple intervals inside MBB. |
Jakob Stoklund Olesen | 57d0f2d | 2010-10-05 22:19:33 +0000 | [diff] [blame] | 390 | void splitInsideBlock(const MachineBasicBlock *); |
Jakob Stoklund Olesen | fc412d8 | 2010-08-13 21:18:48 +0000 | [diff] [blame] | 391 | }; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 392 | |
| 393 | } |