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