Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 1 | //===-- InterferenceCache.h - Caching per-block interference ---*- C++ -*--===// |
| 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 | // |
Jakob Stoklund Olesen | 042888d | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 10 | // InterferenceCache remembers per-block interference from LiveIntervalUnions, |
| 11 | // fixed RegUnit interference, and register masks. |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef LLVM_CODEGEN_INTERFERENCECACHE |
| 16 | #define LLVM_CODEGEN_INTERFERENCECACHE |
| 17 | |
| 18 | #include "LiveIntervalUnion.h" |
| 19 | |
| 20 | namespace llvm { |
| 21 | |
Jakob Stoklund Olesen | 6ef7da0 | 2012-02-10 18:58:34 +0000 | [diff] [blame] | 22 | class LiveIntervals; |
| 23 | |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 24 | class InterferenceCache { |
| 25 | const TargetRegisterInfo *TRI; |
| 26 | LiveIntervalUnion *LIUArray; |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 27 | MachineFunction *MF; |
| 28 | |
| 29 | /// BlockInterference - information about the interference in a single basic |
| 30 | /// block. |
| 31 | struct BlockInterference { |
| 32 | BlockInterference() : Tag(0) {} |
| 33 | unsigned Tag; |
| 34 | SlotIndex First; |
| 35 | SlotIndex Last; |
| 36 | }; |
| 37 | |
| 38 | /// Entry - A cache entry containing interference information for all aliases |
| 39 | /// of PhysReg in all basic blocks. |
| 40 | class Entry { |
| 41 | /// PhysReg - The register currently represented. |
| 42 | unsigned PhysReg; |
| 43 | |
| 44 | /// Tag - Cache tag is changed when any of the underlying LiveIntervalUnions |
| 45 | /// change. |
| 46 | unsigned Tag; |
| 47 | |
Jakob Stoklund Olesen | f1c7098 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 48 | /// RefCount - The total number of Cursor instances referring to this Entry. |
| 49 | unsigned RefCount; |
| 50 | |
Jakob Stoklund Olesen | 9d29cba | 2011-04-09 02:59:05 +0000 | [diff] [blame] | 51 | /// MF - The current function. |
| 52 | MachineFunction *MF; |
| 53 | |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 54 | /// Indexes - Mapping block numbers to SlotIndex ranges. |
| 55 | SlotIndexes *Indexes; |
| 56 | |
Jakob Stoklund Olesen | 6ef7da0 | 2012-02-10 18:58:34 +0000 | [diff] [blame] | 57 | /// LIS - Used for accessing register mask interference maps. |
| 58 | LiveIntervals *LIS; |
| 59 | |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 60 | /// PrevPos - The previous position the iterators were moved to. |
| 61 | SlotIndex PrevPos; |
| 62 | |
Jakob Stoklund Olesen | 042888d | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 63 | /// RegUnitInfo - Information tracked about each RegUnit in PhysReg. |
| 64 | /// When PrevPos is set, the iterators are valid as if advanceTo(PrevPos) |
| 65 | /// had just been called. |
| 66 | struct RegUnitInfo { |
| 67 | /// Iterator pointing into the LiveIntervalUnion containing virtual |
| 68 | /// register interference. |
| 69 | LiveIntervalUnion::SegmentIter VirtI; |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 70 | |
Jakob Stoklund Olesen | 042888d | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 71 | /// Tag of the LIU last time we looked. |
| 72 | unsigned VirtTag; |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 73 | |
Jakob Stoklund Olesen | 042888d | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 74 | /// Fixed interference in RegUnit. |
| 75 | LiveInterval *Fixed; |
| 76 | |
| 77 | /// Iterator pointing into the fixed RegUnit interference. |
| 78 | LiveInterval::iterator FixedI; |
| 79 | |
| 80 | RegUnitInfo(LiveIntervalUnion &LIU) : VirtTag(LIU.getTag()), Fixed(0) { |
| 81 | VirtI.setMap(LIU.getMap()); |
| 82 | } |
| 83 | }; |
| 84 | |
| 85 | /// Info for each RegUnit in PhysReg. It is very rare ofr a PHysReg to have |
| 86 | /// more than 4 RegUnits. |
| 87 | SmallVector<RegUnitInfo, 4> RegUnits; |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 88 | |
| 89 | /// Blocks - Interference for each block in the function. |
| 90 | SmallVector<BlockInterference, 8> Blocks; |
| 91 | |
| 92 | /// update - Recompute Blocks[MBBNum] |
| 93 | void update(unsigned MBBNum); |
| 94 | |
| 95 | public: |
Jakob Stoklund Olesen | 6ef7da0 | 2012-02-10 18:58:34 +0000 | [diff] [blame] | 96 | Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0), LIS(0) {} |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 97 | |
Jakob Stoklund Olesen | 6ef7da0 | 2012-02-10 18:58:34 +0000 | [diff] [blame] | 98 | void clear(MachineFunction *mf, SlotIndexes *indexes, LiveIntervals *lis) { |
Jakob Stoklund Olesen | f1c7098 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 99 | assert(!hasRefs() && "Cannot clear cache entry with references"); |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 100 | PhysReg = 0; |
Jakob Stoklund Olesen | 9d29cba | 2011-04-09 02:59:05 +0000 | [diff] [blame] | 101 | MF = mf; |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 102 | Indexes = indexes; |
Jakob Stoklund Olesen | 6ef7da0 | 2012-02-10 18:58:34 +0000 | [diff] [blame] | 103 | LIS = lis; |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | unsigned getPhysReg() const { return PhysReg; } |
| 107 | |
Jakob Stoklund Olesen | f1c7098 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 108 | void addRef(int Delta) { RefCount += Delta; } |
| 109 | |
| 110 | bool hasRefs() const { return RefCount > 0; } |
| 111 | |
Jakob Stoklund Olesen | 042888d | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 112 | void revalidate(LiveIntervalUnion *LIUArray, const TargetRegisterInfo *TRI); |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 113 | |
| 114 | /// valid - Return true if this is a valid entry for physReg. |
| 115 | bool valid(LiveIntervalUnion *LIUArray, const TargetRegisterInfo *TRI); |
| 116 | |
| 117 | /// reset - Initialize entry to represent physReg's aliases. |
| 118 | void reset(unsigned physReg, |
| 119 | LiveIntervalUnion *LIUArray, |
| 120 | const TargetRegisterInfo *TRI, |
| 121 | const MachineFunction *MF); |
| 122 | |
| 123 | /// get - Return an up to date BlockInterference. |
| 124 | BlockInterference *get(unsigned MBBNum) { |
| 125 | if (Blocks[MBBNum].Tag != Tag) |
| 126 | update(MBBNum); |
| 127 | return &Blocks[MBBNum]; |
| 128 | } |
| 129 | }; |
| 130 | |
| 131 | // We don't keep a cache entry for every physical register, that would use too |
| 132 | // much memory. Instead, a fixed number of cache entries are used in a round- |
| 133 | // robin manner. |
| 134 | enum { CacheEntries = 32 }; |
| 135 | |
| 136 | // Point to an entry for each physreg. The entry pointed to may not be up to |
| 137 | // date, and it may have been reused for a different physreg. |
| 138 | SmallVector<unsigned char, 2> PhysRegEntries; |
| 139 | |
| 140 | // Next round-robin entry to be picked. |
| 141 | unsigned RoundRobin; |
| 142 | |
| 143 | // The actual cache entries. |
| 144 | Entry Entries[CacheEntries]; |
| 145 | |
| 146 | // get - Get a valid entry for PhysReg. |
| 147 | Entry *get(unsigned PhysReg); |
| 148 | |
| 149 | public: |
Jakob Stoklund Olesen | 3bf7a1c | 2012-02-10 18:52:15 +0000 | [diff] [blame] | 150 | InterferenceCache() : TRI(0), LIUArray(0), MF(0), RoundRobin(0) {} |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 151 | |
| 152 | /// init - Prepare cache for a new function. |
Jakob Stoklund Olesen | 6ef7da0 | 2012-02-10 18:58:34 +0000 | [diff] [blame] | 153 | void init(MachineFunction*, LiveIntervalUnion*, SlotIndexes*, LiveIntervals*, |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 154 | const TargetRegisterInfo *); |
| 155 | |
Jakob Stoklund Olesen | f1c7098 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 156 | /// getMaxCursors - Return the maximum number of concurrent cursors that can |
| 157 | /// be supported. |
| 158 | unsigned getMaxCursors() const { return CacheEntries; } |
| 159 | |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 160 | /// Cursor - The primary query interface for the block interference cache. |
| 161 | class Cursor { |
| 162 | Entry *CacheEntry; |
| 163 | BlockInterference *Current; |
Jakob Stoklund Olesen | c7931fd | 2011-07-23 03:10:17 +0000 | [diff] [blame] | 164 | static BlockInterference NoInterference; |
Jakob Stoklund Olesen | f1c7098 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 165 | |
| 166 | void setEntry(Entry *E) { |
| 167 | Current = 0; |
| 168 | // Update reference counts. Nothing happens when RefCount reaches 0, so |
| 169 | // we don't have to check for E == CacheEntry etc. |
| 170 | if (CacheEntry) |
| 171 | CacheEntry->addRef(-1); |
| 172 | CacheEntry = E; |
| 173 | if (CacheEntry) |
| 174 | CacheEntry->addRef(+1); |
| 175 | } |
| 176 | |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 177 | public: |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 178 | /// Cursor - Create a dangling cursor. |
| 179 | Cursor() : CacheEntry(0), Current(0) {} |
Jakob Stoklund Olesen | f1c7098 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 180 | ~Cursor() { setEntry(0); } |
| 181 | |
| 182 | Cursor(const Cursor &O) : CacheEntry(0), Current(0) { |
| 183 | setEntry(O.CacheEntry); |
| 184 | } |
| 185 | |
| 186 | Cursor &operator=(const Cursor &O) { |
| 187 | setEntry(O.CacheEntry); |
| 188 | return *this; |
| 189 | } |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 190 | |
| 191 | /// setPhysReg - Point this cursor to PhysReg's interference. |
| 192 | void setPhysReg(InterferenceCache &Cache, unsigned PhysReg) { |
Jakob Stoklund Olesen | f1c7098 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 193 | // Release reference before getting a new one. That guarantees we can |
| 194 | // actually have CacheEntries live cursors. |
| 195 | setEntry(0); |
| 196 | if (PhysReg) |
| 197 | setEntry(Cache.get(PhysReg)); |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 198 | } |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 199 | |
| 200 | /// moveTo - Move cursor to basic block MBBNum. |
| 201 | void moveToBlock(unsigned MBBNum) { |
Jakob Stoklund Olesen | c7931fd | 2011-07-23 03:10:17 +0000 | [diff] [blame] | 202 | Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference; |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | /// hasInterference - Return true if the current block has any interference. |
| 206 | bool hasInterference() { |
| 207 | return Current->First.isValid(); |
| 208 | } |
| 209 | |
| 210 | /// first - Return the starting index of the first interfering range in the |
| 211 | /// current block. |
| 212 | SlotIndex first() { |
| 213 | return Current->First; |
| 214 | } |
| 215 | |
| 216 | /// last - Return the ending index of the last interfering range in the |
| 217 | /// current block. |
| 218 | SlotIndex last() { |
| 219 | return Current->Last; |
| 220 | } |
| 221 | }; |
| 222 | |
| 223 | friend class Cursor; |
| 224 | }; |
| 225 | |
| 226 | } // namespace llvm |
| 227 | |
| 228 | #endif |