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 MachineLoop; |
| 28 | class MachineLoopInfo; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 29 | class MachineRegisterInfo; |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 30 | class TargetInstrInfo; |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 31 | class TargetRegisterInfo; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 32 | class VirtRegMap; |
| 33 | class VNInfo; |
Jakob Stoklund Olesen | 532de3d | 2010-10-22 20:28:21 +0000 | [diff] [blame] | 34 | class raw_ostream; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 35 | |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 36 | /// At some point we should just include MachineDominators.h: |
| 37 | class MachineDominatorTree; |
| 38 | template <class NodeT> class DomTreeNodeBase; |
| 39 | typedef DomTreeNodeBase<MachineBasicBlock> MachineDomTreeNode; |
| 40 | |
Jakob Stoklund Olesen | 8d0963f | 2010-12-21 01:50:21 +0000 | [diff] [blame] | 41 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 42 | /// SplitAnalysis - Analyze a LiveInterval, looking for live range splitting |
| 43 | /// opportunities. |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 44 | class SplitAnalysis { |
Jakob Stoklund Olesen | 08e93b1 | 2010-08-10 17:07:22 +0000 | [diff] [blame] | 45 | public: |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 46 | const MachineFunction &MF; |
| 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 | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 62 | // The number of basic block using CurLI in each loop. |
Jakob Stoklund Olesen | 2dee7a5 | 2010-08-12 23:02:55 +0000 | [diff] [blame] | 63 | typedef DenseMap<const MachineLoop*, unsigned> LoopCountMap; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 64 | LoopCountMap UsingLoops; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 65 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame^] | 66 | /// Additional information about basic blocks where the current variable is |
| 67 | /// live. Such a block will look like one of these templates: |
| 68 | /// |
| 69 | /// 1. | o---x | Internal to block. Variable is only live in this block. |
| 70 | /// 2. |---x | Live-in, kill. |
| 71 | /// 3. | o---| Def, live-out. |
| 72 | /// 4. |---x o---| Live-in, kill, def, live-out. |
| 73 | /// 5. |---o---o---| Live-through with uses or defs. |
| 74 | /// 6. |-----------| Live-through without uses. Transparent. |
| 75 | /// |
| 76 | struct BlockInfo { |
| 77 | MachineBasicBlock *MBB; |
| 78 | SlotIndex FirstUse; ///< First instr using current reg. |
| 79 | SlotIndex LastUse; ///< Last instr using current reg. |
| 80 | SlotIndex Kill; ///< Interval end point inside block. |
| 81 | SlotIndex Def; ///< Interval start point inside block. |
| 82 | /// Last possible point for splitting live ranges. |
| 83 | SlotIndex LastSplitPoint; |
| 84 | bool Uses; ///< Current reg has uses or defs in block. |
| 85 | bool LiveThrough; ///< Live in whole block (Templ 5. or 6. above). |
| 86 | bool LiveIn; ///< Current reg is live in. |
| 87 | bool LiveOut; ///< Current reg is live out. |
| 88 | |
| 89 | // Per-interference pattern scratch data. |
| 90 | bool OverlapEntry; ///< Interference overlaps entering interval. |
| 91 | bool OverlapExit; ///< Interference overlaps exiting interval. |
| 92 | }; |
| 93 | |
| 94 | /// Basic blocks where var is live. This array is parallel to |
| 95 | /// SpillConstraints. |
| 96 | SmallVector<BlockInfo, 8> LiveBlocks; |
| 97 | |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 98 | private: |
| 99 | // Current live interval. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 100 | const LiveInterval *CurLI; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 101 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 102 | // Sumarize statistics by counting instructions using CurLI. |
Jakob Stoklund Olesen | abff280 | 2010-07-20 16:12:37 +0000 | [diff] [blame] | 103 | void analyzeUses(); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 104 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame^] | 105 | /// calcLiveBlockInfo - Compute per-block information about CurLI. |
| 106 | void calcLiveBlockInfo(); |
| 107 | |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 108 | /// canAnalyzeBranch - Return true if MBB ends in a branch that can be |
| 109 | /// analyzed. |
| 110 | bool canAnalyzeBranch(const MachineBasicBlock *MBB); |
| 111 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 112 | public: |
Jakob Stoklund Olesen | f2c6e36 | 2010-07-20 23:50:15 +0000 | [diff] [blame] | 113 | SplitAnalysis(const MachineFunction &mf, const LiveIntervals &lis, |
| 114 | const MachineLoopInfo &mli); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 115 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 116 | /// 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] | 117 | /// split. |
| 118 | void analyze(const LiveInterval *li); |
| 119 | |
| 120 | /// clear - clear all data structures so SplitAnalysis is ready to analyze a |
| 121 | /// new interval. |
| 122 | void clear(); |
| 123 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 124 | /// hasUses - Return true if MBB has any uses of CurLI. |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 125 | bool hasUses(const MachineBasicBlock *MBB) const { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 126 | return UsingBlocks.lookup(MBB); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 129 | typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet; |
Jakob Stoklund Olesen | 2dee7a5 | 2010-08-12 23:02:55 +0000 | [diff] [blame] | 130 | typedef SmallPtrSet<const MachineLoop*, 16> LoopPtrSet; |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 131 | |
Jakob Stoklund Olesen | 532de3d | 2010-10-22 20:28:21 +0000 | [diff] [blame] | 132 | // Print a set of blocks with use counts. |
| 133 | void print(const BlockPtrSet&, raw_ostream&) const; |
| 134 | |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 135 | // Sets of basic blocks surrounding a machine loop. |
| 136 | struct LoopBlocks { |
| 137 | BlockPtrSet Loop; // Blocks in the loop. |
| 138 | BlockPtrSet Preds; // Loop predecessor blocks. |
| 139 | BlockPtrSet Exits; // Loop exit blocks. |
| 140 | |
| 141 | void clear() { |
| 142 | Loop.clear(); |
| 143 | Preds.clear(); |
| 144 | Exits.clear(); |
| 145 | } |
| 146 | }; |
| 147 | |
Jakob Stoklund Olesen | 532de3d | 2010-10-22 20:28:21 +0000 | [diff] [blame] | 148 | // Print loop blocks with use counts. |
| 149 | void print(const LoopBlocks&, raw_ostream&) const; |
| 150 | |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 151 | // Calculate the block sets surrounding the loop. |
| 152 | void getLoopBlocks(const MachineLoop *Loop, LoopBlocks &Blocks); |
| 153 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 154 | /// LoopPeripheralUse - how is a variable used in and around a loop? |
| 155 | /// Peripheral blocks are the loop predecessors and exit blocks. |
| 156 | enum LoopPeripheralUse { |
| 157 | ContainedInLoop, // All uses are inside the loop. |
| 158 | SinglePeripheral, // At most one instruction per peripheral block. |
| 159 | MultiPeripheral, // Multiple instructions in some peripheral blocks. |
| 160 | OutsideLoop // Uses outside loop periphery. |
| 161 | }; |
| 162 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 163 | /// analyzeLoopPeripheralUse - Return an enum describing how CurLI is used in |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 164 | /// and around the Loop. |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 165 | LoopPeripheralUse analyzeLoopPeripheralUse(const LoopBlocks&); |
| 166 | |
| 167 | /// getCriticalExits - It may be necessary to partially break critical edges |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 168 | /// leaving the loop if an exit block has phi uses of CurLI. Collect the exit |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 169 | /// blocks that need special treatment into CriticalExits. |
| 170 | void getCriticalExits(const LoopBlocks &Blocks, BlockPtrSet &CriticalExits); |
| 171 | |
| 172 | /// canSplitCriticalExits - Return true if it is possible to insert new exit |
| 173 | /// blocks before the blocks in CriticalExits. |
| 174 | bool canSplitCriticalExits(const LoopBlocks &Blocks, |
| 175 | BlockPtrSet &CriticalExits); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 176 | |
Jakob Stoklund Olesen | 0960a65 | 2010-10-27 00:39:05 +0000 | [diff] [blame] | 177 | /// getCriticalPreds - Get the set of loop predecessors with critical edges to |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 178 | /// blocks outside the loop that have CurLI live in. We don't have to break |
Jakob Stoklund Olesen | 0960a65 | 2010-10-27 00:39:05 +0000 | [diff] [blame] | 179 | /// these edges, but they do require special treatment. |
| 180 | void getCriticalPreds(const LoopBlocks &Blocks, BlockPtrSet &CriticalPreds); |
| 181 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 182 | /// getSplitLoops - Get the set of loops that have CurLI uses and would be |
Jakob Stoklund Olesen | 521a453 | 2010-12-15 17:41:19 +0000 | [diff] [blame] | 183 | /// profitable to split. |
| 184 | void getSplitLoops(LoopPtrSet&); |
| 185 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 186 | /// getBestSplitLoop - Return the loop where CurLI may best be split to a |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 187 | /// separate register, or NULL. |
| 188 | const MachineLoop *getBestSplitLoop(); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 189 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 190 | /// isBypassLoop - Return true if CurLI is live through Loop and has no uses |
Jakob Stoklund Olesen | 697483a | 2010-12-15 17:49:52 +0000 | [diff] [blame] | 191 | /// inside the loop. Bypass loops are candidates for splitting because it can |
| 192 | /// prevent interference inside the loop. |
| 193 | bool isBypassLoop(const MachineLoop *Loop); |
| 194 | |
| 195 | /// getBypassLoops - Get all the maximal bypass loops. These are the bypass |
| 196 | /// loops whose parent is not a bypass loop. |
| 197 | void getBypassLoops(LoopPtrSet&); |
| 198 | |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 199 | /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 200 | /// 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] | 201 | /// passed to SplitEditor::splitSingleBlocks. |
| 202 | bool getMultiUseBlocks(BlockPtrSet &Blocks); |
Jakob Stoklund Olesen | fc412d8 | 2010-08-13 21:18:48 +0000 | [diff] [blame] | 203 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 204 | /// getBlockForInsideSplit - If CurLI is contained inside a single basic |
| 205 | /// block, and it would pay to subdivide the interval inside that block, |
| 206 | /// 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] | 207 | /// SplitEditor::splitInsideBlock. |
| 208 | const MachineBasicBlock *getBlockForInsideSplit(); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 209 | }; |
| 210 | |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 211 | |
| 212 | /// LiveIntervalMap - Map values from a large LiveInterval into a small |
| 213 | /// interval that is a subset. Insert phi-def values as needed. This class is |
| 214 | /// used by SplitEditor to create new smaller LiveIntervals. |
| 215 | /// |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 216 | /// ParentLI is the larger interval, LI is the subset interval. Every value |
| 217 | /// in LI corresponds to exactly one value in ParentLI, and the live range |
| 218 | /// of the value is contained within the live range of the ParentLI value. |
| 219 | /// 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] | 220 | class LiveIntervalMap { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 221 | LiveIntervals &LIS; |
| 222 | MachineDominatorTree &MDT; |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 223 | |
| 224 | // The parent interval is never changed. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 225 | const LiveInterval &ParentLI; |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 226 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 227 | // The child interval's values are fully contained inside ParentLI values. |
| 228 | LiveInterval *LI; |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 229 | |
| 230 | typedef DenseMap<const VNInfo*, VNInfo*> ValueMap; |
| 231 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 232 | // Map ParentLI values to simple values in LI that are defined at the same |
| 233 | // SlotIndex, or NULL for ParentLI values that have complex LI defs. |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 234 | // Note there is a difference between values mapping to NULL (complex), and |
| 235 | // values not present (unknown/unmapped). |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 236 | ValueMap Values; |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 237 | |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 238 | typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair; |
| 239 | typedef DenseMap<MachineBasicBlock*,LiveOutPair> LiveOutMap; |
| 240 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 241 | // 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] | 242 | // value and its defining block. One of these conditions shall be true: |
| 243 | // |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 244 | // 1. !LiveOutCache.count(MBB) |
| 245 | // 2. LiveOutCache[MBB].second.getNode() == MBB |
| 246 | // 3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB] |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 247 | // |
| 248 | // This is only a cache, the values can be computed as: |
| 249 | // |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 250 | // VNI = LI->getVNInfoAt(LIS.getMBBEndIdx(MBB)) |
| 251 | // Node = mbt_[LIS.getMBBFromIndex(VNI->def)] |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 252 | // |
| 253 | // The cache is also used as a visiteed set by mapValue(). |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 254 | LiveOutMap LiveOutCache; |
Jakob Stoklund Olesen | e1dde7b | 2010-10-28 20:34:52 +0000 | [diff] [blame] | 255 | |
Jakob Stoklund Olesen | d7ca577 | 2011-01-20 17:45:20 +0000 | [diff] [blame] | 256 | // Dump the live-out cache to dbgs(). |
| 257 | void dumpCache(); |
| 258 | |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 259 | public: |
| 260 | LiveIntervalMap(LiveIntervals &lis, |
Jakob Stoklund Olesen | d68f458 | 2010-10-28 20:34:50 +0000 | [diff] [blame] | 261 | MachineDominatorTree &mdt, |
Jakob Stoklund Olesen | 9ca2aeb | 2010-09-13 23:29:09 +0000 | [diff] [blame] | 262 | const LiveInterval &parentli) |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 263 | : LIS(lis), MDT(mdt), ParentLI(parentli), LI(0) {} |
Jakob Stoklund Olesen | 9ca2aeb | 2010-09-13 23:29:09 +0000 | [diff] [blame] | 264 | |
| 265 | /// reset - clear all data structures and start a new live interval. |
| 266 | void reset(LiveInterval *); |
| 267 | |
| 268 | /// getLI - return the current live interval. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 269 | LiveInterval *getLI() const { return LI; } |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 270 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 271 | /// 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] | 272 | /// 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] | 273 | /// ParentVNI's live range in ParentLI. |
| 274 | /// Return the new LI value. |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 275 | VNInfo *defValue(const VNInfo *ParentVNI, SlotIndex Idx); |
| 276 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 277 | /// 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] | 278 | /// assumed that ParentVNI is live at Idx. |
| 279 | /// If ParentVNI has not been defined by defValue, it is assumed that |
| 280 | /// ParentVNI->def dominates Idx. |
| 281 | /// If ParentVNI has been defined by defValue one or more times, a value that |
| 282 | /// 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] | 283 | /// values and adding live ranges to LI. |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 284 | /// If simple is not NULL, *simple will indicate if ParentVNI is a simply |
| 285 | /// mapped value. |
| 286 | VNInfo *mapValue(const VNInfo *ParentVNI, SlotIndex Idx, bool *simple = 0); |
| 287 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 288 | // 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] | 289 | // parentli is assumed to be live at Idx. Extend the live range to include |
| 290 | // Idx. Return the found VNInfo, or NULL. |
Jakob Stoklund Olesen | c95c146 | 2010-10-27 00:39:07 +0000 | [diff] [blame] | 291 | VNInfo *extendTo(const MachineBasicBlock *MBB, SlotIndex Idx); |
Jakob Stoklund Olesen | fc60d77 | 2010-10-05 20:36:25 +0000 | [diff] [blame] | 292 | |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 293 | /// isMapped - Return true is ParentVNI is a known mapped value. It may be a |
| 294 | /// simple 1-1 mapping or a complex mapping to later defs. |
| 295 | bool isMapped(const VNInfo *ParentVNI) const { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 296 | return Values.count(ParentVNI); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | /// isComplexMapped - Return true if ParentVNI has received new definitions |
| 300 | /// with defValue. |
| 301 | bool isComplexMapped(const VNInfo *ParentVNI) const; |
| 302 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 303 | /// markComplexMapped - Mark ParentVNI as complex mapped regardless of the |
| 304 | /// number of definitions. |
| 305 | void markComplexMapped(const VNInfo *ParentVNI) { Values[ParentVNI] = 0; } |
| 306 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 307 | // addSimpleRange - Add a simple range from ParentLI to LI. |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 308 | // ParentVNI must be live in the [Start;End) interval. |
| 309 | void addSimpleRange(SlotIndex Start, SlotIndex End, const VNInfo *ParentVNI); |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 310 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 311 | /// addRange - Add live ranges to LI where [Start;End) intersects ParentLI. |
Jakob Stoklund Olesen | 1407c84 | 2010-08-18 19:00:08 +0000 | [diff] [blame] | 312 | /// All needed values whose def is not inside [Start;End) must be defined |
| 313 | /// beforehand so mapValue will work. |
| 314 | void addRange(SlotIndex Start, SlotIndex End); |
| 315 | }; |
| 316 | |
| 317 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 318 | /// SplitEditor - Edit machine code and LiveIntervals for live range |
| 319 | /// splitting. |
| 320 | /// |
Jakob Stoklund Olesen | 5eb308b | 2010-08-06 22:17:33 +0000 | [diff] [blame] | 321 | /// - Create a SplitEditor from a SplitAnalysis. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 322 | /// - Start a new live interval with openIntv. |
| 323 | /// - Mark the places where the new interval is entered using enterIntv* |
| 324 | /// - Mark the ranges where the new interval is used with useIntv* |
| 325 | /// - Mark the places where the interval is exited with exitIntv*. |
| 326 | /// - Finish the current interval with closeIntv and repeat from 2. |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 327 | /// - Rewrite instructions with finish(). |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 328 | /// |
| 329 | class SplitEditor { |
| 330 | SplitAnalysis &sa_; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 331 | LiveIntervals &LIS; |
| 332 | VirtRegMap &VRM; |
| 333 | MachineRegisterInfo &MRI; |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 334 | MachineDominatorTree &MDT; |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 335 | const TargetInstrInfo &TII; |
| 336 | const TargetRegisterInfo &TRI; |
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 | /// Edit - The current parent register and new intervals created. |
| 339 | LiveRangeEdit &Edit; |
Jakob Stoklund Olesen | a17768f | 2010-10-14 23:49:52 +0000 | [diff] [blame] | 340 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 341 | /// Index into Edit of the currently open interval. |
| 342 | /// The index 0 is used for the complement, so the first interval started by |
| 343 | /// openIntv will be 1. |
| 344 | unsigned OpenIdx; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 345 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 346 | typedef IntervalMap<SlotIndex, unsigned> RegAssignMap; |
| 347 | |
| 348 | /// Allocator for the interval map. This will eventually be shared with |
| 349 | /// SlotIndexes and LiveIntervals. |
| 350 | RegAssignMap::Allocator Allocator; |
| 351 | |
| 352 | /// RegAssign - Map of the assigned register indexes. |
| 353 | /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at |
| 354 | /// Idx. |
| 355 | RegAssignMap RegAssign; |
| 356 | |
| 357 | /// LIMappers - One LiveIntervalMap or each interval in Edit. |
| 358 | SmallVector<LiveIntervalMap, 4> LIMappers; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 359 | |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 360 | /// defFromParent - Define Reg from ParentVNI at UseIdx using either |
| 361 | /// rematerialization or a COPY from parent. Return the new value. |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 362 | VNInfo *defFromParent(unsigned RegIdx, |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 363 | VNInfo *ParentVNI, |
| 364 | SlotIndex UseIdx, |
| 365 | MachineBasicBlock &MBB, |
| 366 | MachineBasicBlock::iterator I); |
| 367 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 368 | /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers. |
| 369 | void rewriteAssigned(); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 370 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 371 | /// rewriteComponents - Rewrite all uses of Intv[0] according to the eq |
| 372 | /// classes in ConEQ. |
| 373 | /// This must be done when Intvs[0] is styill live at all uses, before calling |
| 374 | /// ConEq.Distribute(). |
| 375 | void rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs, |
| 376 | const ConnectedVNInfoEqClasses &ConEq); |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 377 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 378 | public: |
| 379 | /// Create a new SplitEditor for editing the LiveInterval analyzed by SA. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 380 | /// Newly created intervals will be appended to newIntervals. |
Jakob Stoklund Olesen | d68f458 | 2010-10-28 20:34:50 +0000 | [diff] [blame] | 381 | SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&, |
| 382 | MachineDominatorTree&, LiveRangeEdit&); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 383 | |
Jakob Stoklund Olesen | 5eb308b | 2010-08-06 22:17:33 +0000 | [diff] [blame] | 384 | /// getAnalysis - Get the corresponding analysis. |
| 385 | SplitAnalysis &getAnalysis() { return sa_; } |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 386 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 387 | /// Create a new virtual register and live interval. |
| 388 | void openIntv(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 389 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 390 | /// enterIntvBefore - Enter the open interval before the instruction at Idx. |
| 391 | /// If the parent interval is not live before Idx, a COPY is not inserted. |
| 392 | /// Return the beginning of the new live range. |
| 393 | SlotIndex enterIntvBefore(SlotIndex Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 394 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 395 | /// enterIntvAtEnd - Enter the open interval at the end of MBB. |
| 396 | /// Use the open interval from he inserted copy to the MBB end. |
| 397 | /// Return the beginning of the new live range. |
| 398 | SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 399 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 400 | /// useIntv - indicate that all instructions in MBB should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 401 | void useIntv(const MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 402 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 403 | /// useIntv - indicate that all instructions in range should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 404 | void useIntv(SlotIndex Start, SlotIndex End); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 405 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 406 | /// leaveIntvAfter - Leave the open interval after the instruction at Idx. |
| 407 | /// Return the end of the live range. |
| 408 | SlotIndex leaveIntvAfter(SlotIndex Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 409 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 410 | /// leaveIntvAtTop - Leave the interval at the top of MBB. |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 411 | /// Add liveness from the MBB top to the copy. |
| 412 | /// Return the end of the live range. |
| 413 | SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 414 | |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 415 | /// overlapIntv - Indicate that all instructions in range should use the open |
| 416 | /// interval, but also let the complement interval be live. |
| 417 | /// |
| 418 | /// This doubles the register pressure, but is sometimes required to deal with |
| 419 | /// register uses after the last valid split point. |
| 420 | /// |
| 421 | /// The Start index should be a return value from a leaveIntv* call, and End |
| 422 | /// should be in the same basic block. The parent interval must have the same |
| 423 | /// value across the range. |
| 424 | /// |
| 425 | void overlapIntv(SlotIndex Start, SlotIndex End); |
| 426 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 427 | /// closeIntv - Indicate that we are done editing the currently open |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 428 | /// LiveInterval, and ranges can be trimmed. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 429 | void closeIntv(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 430 | |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 431 | /// finish - after all the new live ranges have been created, compute the |
| 432 | /// remaining live range, and rewrite instructions to use the new registers. |
| 433 | void finish(); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 434 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 435 | /// dump - print the current interval maping to dbgs(). |
| 436 | void dump() const; |
| 437 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 438 | // ===--- High level methods ---=== |
| 439 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 440 | /// splitAroundLoop - Split CurLI into a separate live interval inside |
Jakob Stoklund Olesen | 57d0f2d | 2010-10-05 22:19:33 +0000 | [diff] [blame] | 441 | /// the loop. |
| 442 | void splitAroundLoop(const MachineLoop*); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 443 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 444 | /// splitSingleBlocks - Split CurLI into a separate live interval inside each |
Jakob Stoklund Olesen | 57d0f2d | 2010-10-05 22:19:33 +0000 | [diff] [blame] | 445 | /// basic block in Blocks. |
| 446 | void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 447 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 448 | /// splitInsideBlock - Split CurLI into multiple intervals inside MBB. |
Jakob Stoklund Olesen | 57d0f2d | 2010-10-05 22:19:33 +0000 | [diff] [blame] | 449 | void splitInsideBlock(const MachineBasicBlock *); |
Jakob Stoklund Olesen | fc412d8 | 2010-08-13 21:18:48 +0000 | [diff] [blame] | 450 | }; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 451 | |
| 452 | } |