Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ART_COMPILER_OPTIMIZING_SSA_LIVENESS_ANALYSIS_H_ |
| 18 | #define ART_COMPILER_OPTIMIZING_SSA_LIVENESS_ANALYSIS_H_ |
| 19 | |
| 20 | #include "nodes.h" |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 21 | #include <iostream> |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 22 | |
| 23 | namespace art { |
| 24 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 25 | class CodeGenerator; |
Nicolas Geoffray | fbda5f3 | 2015-04-29 14:16:00 +0100 | [diff] [blame] | 26 | class SsaLivenessAnalysis; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 27 | |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 28 | static constexpr int kNoRegister = -1; |
| 29 | |
Vladimir Marko | 5233f93 | 2015-09-29 19:01:15 +0100 | [diff] [blame] | 30 | class BlockInfo : public ArenaObject<kArenaAllocSsaLiveness> { |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 31 | public: |
| 32 | BlockInfo(ArenaAllocator* allocator, const HBasicBlock& block, size_t number_of_ssa_values) |
| 33 | : block_(block), |
Vladimir Marko | f6a35de | 2016-03-21 12:01:50 +0000 | [diff] [blame] | 34 | live_in_(allocator, number_of_ssa_values, false, kArenaAllocSsaLiveness), |
| 35 | live_out_(allocator, number_of_ssa_values, false, kArenaAllocSsaLiveness), |
| 36 | kill_(allocator, number_of_ssa_values, false, kArenaAllocSsaLiveness) { |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 37 | UNUSED(block_); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 38 | live_in_.ClearAllBits(); |
| 39 | live_out_.ClearAllBits(); |
| 40 | kill_.ClearAllBits(); |
| 41 | } |
| 42 | |
| 43 | private: |
| 44 | const HBasicBlock& block_; |
| 45 | ArenaBitVector live_in_; |
| 46 | ArenaBitVector live_out_; |
| 47 | ArenaBitVector kill_; |
| 48 | |
| 49 | friend class SsaLivenessAnalysis; |
| 50 | |
| 51 | DISALLOW_COPY_AND_ASSIGN(BlockInfo); |
| 52 | }; |
| 53 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 54 | /** |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 55 | * A live range contains the start and end of a range where an instruction or a temporary |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 56 | * is live. |
| 57 | */ |
Vladimir Marko | 5233f93 | 2015-09-29 19:01:15 +0100 | [diff] [blame] | 58 | class LiveRange FINAL : public ArenaObject<kArenaAllocSsaLiveness> { |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 59 | public: |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 60 | LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) { |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 61 | DCHECK_LT(start, end); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 62 | DCHECK(next_ == nullptr || next_->GetStart() > GetEnd()); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | size_t GetStart() const { return start_; } |
| 66 | size_t GetEnd() const { return end_; } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 67 | LiveRange* GetNext() const { return next_; } |
| 68 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 69 | bool IntersectsWith(const LiveRange& other) const { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 70 | return (start_ >= other.start_ && start_ < other.end_) |
| 71 | || (other.start_ >= start_ && other.start_ < end_); |
| 72 | } |
| 73 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 74 | bool IsBefore(const LiveRange& other) const { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 75 | return end_ <= other.start_; |
| 76 | } |
| 77 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 78 | void Dump(std::ostream& stream) const { |
David Brazdil | c7a2485 | 2015-05-15 16:44:05 +0100 | [diff] [blame] | 79 | stream << "[" << start_ << "," << end_ << ")"; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 80 | } |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 81 | |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 82 | LiveRange* Dup(ArenaAllocator* allocator) const { |
| 83 | return new (allocator) LiveRange( |
| 84 | start_, end_, next_ == nullptr ? nullptr : next_->Dup(allocator)); |
| 85 | } |
| 86 | |
| 87 | LiveRange* GetLastRange() { |
| 88 | return next_ == nullptr ? this : next_->GetLastRange(); |
| 89 | } |
| 90 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 91 | private: |
| 92 | size_t start_; |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 93 | size_t end_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 94 | LiveRange* next_; |
| 95 | |
| 96 | friend class LiveInterval; |
| 97 | |
| 98 | DISALLOW_COPY_AND_ASSIGN(LiveRange); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 99 | }; |
| 100 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 101 | /** |
| 102 | * A use position represents a live interval use at a given position. |
| 103 | */ |
Vladimir Marko | 5233f93 | 2015-09-29 19:01:15 +0100 | [diff] [blame] | 104 | class UsePosition : public ArenaObject<kArenaAllocSsaLiveness> { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 105 | public: |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 106 | UsePosition(HInstruction* user, |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 107 | HEnvironment* environment, |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 108 | size_t input_index, |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 109 | size_t position, |
| 110 | UsePosition* next) |
| 111 | : user_(user), |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 112 | environment_(environment), |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 113 | input_index_(input_index), |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 114 | position_(position), |
| 115 | next_(next) { |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 116 | DCHECK(environment == nullptr || user == nullptr); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 117 | DCHECK(next_ == nullptr || next->GetPosition() >= GetPosition()); |
| 118 | } |
| 119 | |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 120 | static constexpr size_t kNoInput = -1; |
| 121 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 122 | size_t GetPosition() const { return position_; } |
| 123 | |
| 124 | UsePosition* GetNext() const { return next_; } |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 125 | void SetNext(UsePosition* next) { next_ = next; } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 126 | |
| 127 | HInstruction* GetUser() const { return user_; } |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 128 | HEnvironment* GetEnvironment() const { return environment_; } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 129 | |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 130 | bool GetIsEnvironment() const { return environment_ != nullptr; } |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 131 | bool IsSynthesized() const { return user_ == nullptr; } |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 132 | |
| 133 | size_t GetInputIndex() const { return input_index_; } |
| 134 | |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 135 | void Dump(std::ostream& stream) const { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 136 | stream << position_; |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | HLoopInformation* GetLoopInformation() const { |
| 140 | return user_->GetBlock()->GetLoopInformation(); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 141 | } |
| 142 | |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 143 | UsePosition* Dup(ArenaAllocator* allocator) const { |
| 144 | return new (allocator) UsePosition( |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 145 | user_, environment_, input_index_, position_, |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 146 | next_ == nullptr ? nullptr : next_->Dup(allocator)); |
| 147 | } |
| 148 | |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 149 | bool RequiresRegister() const { |
| 150 | if (GetIsEnvironment()) return false; |
| 151 | if (IsSynthesized()) return false; |
| 152 | Location location = GetUser()->GetLocations()->InAt(GetInputIndex()); |
Matthew Gharrity | d9ffd0d | 2016-06-22 10:27:55 -0700 | [diff] [blame] | 153 | return location.IsUnallocated() && location.RequiresRegisterKind(); |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 154 | } |
| 155 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 156 | private: |
| 157 | HInstruction* const user_; |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 158 | HEnvironment* const environment_; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 159 | const size_t input_index_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 160 | const size_t position_; |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 161 | UsePosition* next_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 162 | |
| 163 | DISALLOW_COPY_AND_ASSIGN(UsePosition); |
| 164 | }; |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 165 | |
Vladimir Marko | 5233f93 | 2015-09-29 19:01:15 +0100 | [diff] [blame] | 166 | class SafepointPosition : public ArenaObject<kArenaAllocSsaLiveness> { |
Nicolas Geoffray | 5588e58 | 2015-04-14 14:10:59 +0100 | [diff] [blame] | 167 | public: |
| 168 | explicit SafepointPosition(HInstruction* instruction) |
| 169 | : instruction_(instruction), |
| 170 | next_(nullptr) {} |
| 171 | |
| 172 | void SetNext(SafepointPosition* next) { |
| 173 | next_ = next; |
| 174 | } |
| 175 | |
| 176 | size_t GetPosition() const { |
| 177 | return instruction_->GetLifetimePosition(); |
| 178 | } |
| 179 | |
| 180 | SafepointPosition* GetNext() const { |
| 181 | return next_; |
| 182 | } |
| 183 | |
| 184 | LocationSummary* GetLocations() const { |
| 185 | return instruction_->GetLocations(); |
| 186 | } |
| 187 | |
| 188 | HInstruction* GetInstruction() const { |
| 189 | return instruction_; |
| 190 | } |
| 191 | |
| 192 | private: |
| 193 | HInstruction* const instruction_; |
| 194 | SafepointPosition* next_; |
| 195 | |
| 196 | DISALLOW_COPY_AND_ASSIGN(SafepointPosition); |
| 197 | }; |
| 198 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 199 | /** |
| 200 | * An interval is a list of disjoint live ranges where an instruction is live. |
| 201 | * Each instruction that has uses gets an interval. |
| 202 | */ |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 203 | class LiveInterval : public ArenaObject<kArenaAllocSsaLiveness> { |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 204 | public: |
Mingyao Yang | 296bd60 | 2014-10-06 16:47:28 -0700 | [diff] [blame] | 205 | static LiveInterval* MakeInterval(ArenaAllocator* allocator, |
| 206 | Primitive::Type type, |
| 207 | HInstruction* instruction = nullptr) { |
| 208 | return new (allocator) LiveInterval(allocator, type, instruction); |
| 209 | } |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 210 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 211 | static LiveInterval* MakeFixedInterval(ArenaAllocator* allocator, int reg, Primitive::Type type) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 212 | return new (allocator) LiveInterval(allocator, type, nullptr, true, reg, false); |
| 213 | } |
| 214 | |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 215 | static LiveInterval* MakeTempInterval(ArenaAllocator* allocator, Primitive::Type type) { |
| 216 | return new (allocator) LiveInterval(allocator, type, nullptr, false, kNoRegister, true); |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | bool IsFixed() const { return is_fixed_; } |
Mingyao Yang | 296bd60 | 2014-10-06 16:47:28 -0700 | [diff] [blame] | 220 | bool IsTemp() const { return is_temp_; } |
Mingyao Yang | 296bd60 | 2014-10-06 16:47:28 -0700 | [diff] [blame] | 221 | // This interval is the result of a split. |
| 222 | bool IsSplit() const { return parent_ != this; } |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 223 | |
Nicolas Geoffray | f01d344 | 2015-03-27 17:15:49 +0000 | [diff] [blame] | 224 | void AddTempUse(HInstruction* instruction, size_t temp_index) { |
| 225 | DCHECK(IsTemp()); |
| 226 | DCHECK(first_use_ == nullptr) << "A temporary can only have one user"; |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 227 | DCHECK(first_env_use_ == nullptr) << "A temporary cannot have environment user"; |
Nicolas Geoffray | f01d344 | 2015-03-27 17:15:49 +0000 | [diff] [blame] | 228 | size_t position = instruction->GetLifetimePosition(); |
| 229 | first_use_ = new (allocator_) UsePosition( |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 230 | instruction, /* environment */ nullptr, temp_index, position, first_use_); |
Nicolas Geoffray | f01d344 | 2015-03-27 17:15:49 +0000 | [diff] [blame] | 231 | AddRange(position, position + 1); |
| 232 | } |
| 233 | |
David Brazdil | b3e773e | 2016-01-26 11:28:37 +0000 | [diff] [blame] | 234 | // Record use of an input. The use will be recorded as an environment use if |
| 235 | // `environment` is not null and as register use otherwise. If `actual_user` |
| 236 | // is specified, the use will be recorded at `actual_user`'s lifetime position. |
Nicolas Geoffray | d8126be | 2015-03-27 10:22:41 +0000 | [diff] [blame] | 237 | void AddUse(HInstruction* instruction, |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 238 | HEnvironment* environment, |
Nicolas Geoffray | d8126be | 2015-03-27 10:22:41 +0000 | [diff] [blame] | 239 | size_t input_index, |
David Brazdil | b3e773e | 2016-01-26 11:28:37 +0000 | [diff] [blame] | 240 | HInstruction* actual_user = nullptr, |
Nicolas Geoffray | d8126be | 2015-03-27 10:22:41 +0000 | [diff] [blame] | 241 | bool keep_alive = false) { |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 242 | bool is_environment = (environment != nullptr); |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 243 | LocationSummary* locations = instruction->GetLocations(); |
David Brazdil | b3e773e | 2016-01-26 11:28:37 +0000 | [diff] [blame] | 244 | if (actual_user == nullptr) { |
| 245 | actual_user = instruction; |
| 246 | } |
| 247 | |
| 248 | // Set the use within the instruction. |
| 249 | size_t position = actual_user->GetLifetimePosition() + 1; |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 250 | if (!is_environment) { |
| 251 | if (locations->IsFixedInput(input_index) || locations->OutputUsesSameAs(input_index)) { |
| 252 | // For fixed inputs and output same as input, the register allocator |
| 253 | // requires to have inputs die at the instruction, so that input moves use the |
| 254 | // location of the input just before that instruction (and not potential moves due |
| 255 | // to splitting). |
David Brazdil | b3e773e | 2016-01-26 11:28:37 +0000 | [diff] [blame] | 256 | DCHECK_EQ(instruction, actual_user); |
| 257 | position = actual_user->GetLifetimePosition(); |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 258 | } else if (!locations->InAt(input_index).IsValid()) { |
| 259 | return; |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 260 | } |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 261 | } |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 262 | |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 263 | if (!is_environment && instruction->IsInLoop()) { |
| 264 | AddBackEdgeUses(*instruction->GetBlock()); |
| 265 | } |
| 266 | |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 267 | if ((first_use_ != nullptr) |
David Brazdil | b3e773e | 2016-01-26 11:28:37 +0000 | [diff] [blame] | 268 | && (first_use_->GetUser() == actual_user) |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 269 | && (first_use_->GetPosition() < position)) { |
| 270 | // The user uses the instruction multiple times, and one use dies before the other. |
| 271 | // We update the use list so that the latter is first. |
Nicolas Geoffray | d8126be | 2015-03-27 10:22:41 +0000 | [diff] [blame] | 272 | DCHECK(!is_environment); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 273 | UsePosition* cursor = first_use_; |
| 274 | while ((cursor->GetNext() != nullptr) && (cursor->GetNext()->GetPosition() < position)) { |
| 275 | cursor = cursor->GetNext(); |
| 276 | } |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 277 | DCHECK(first_use_->GetPosition() + 1 == position); |
| 278 | UsePosition* new_use = new (allocator_) UsePosition( |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 279 | instruction, nullptr /* environment */, input_index, position, cursor->GetNext()); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 280 | cursor->SetNext(new_use); |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 281 | if (first_range_->GetEnd() == first_use_->GetPosition()) { |
| 282 | first_range_->end_ = position; |
| 283 | } |
| 284 | return; |
| 285 | } |
| 286 | |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 287 | if (is_environment) { |
| 288 | first_env_use_ = new (allocator_) UsePosition( |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 289 | nullptr /* instruction */, environment, input_index, position, first_env_use_); |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 290 | } else { |
| 291 | first_use_ = new (allocator_) UsePosition( |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 292 | instruction, nullptr /* environment */, input_index, position, first_use_); |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 293 | } |
Nicolas Geoffray | d8126be | 2015-03-27 10:22:41 +0000 | [diff] [blame] | 294 | |
| 295 | if (is_environment && !keep_alive) { |
| 296 | // If this environment use does not keep the instruction live, it does not |
| 297 | // affect the live range of that instruction. |
| 298 | return; |
| 299 | } |
| 300 | |
Nicolas Geoffray | 8ddb00c | 2014-09-29 12:00:40 +0100 | [diff] [blame] | 301 | size_t start_block_position = instruction->GetBlock()->GetLifetimeStart(); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 302 | if (first_range_ == nullptr) { |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 303 | // First time we see a use of that interval. |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 304 | first_range_ = last_range_ = range_search_start_ = |
| 305 | new (allocator_) LiveRange(start_block_position, position, nullptr); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 306 | } else if (first_range_->GetStart() == start_block_position) { |
Nicolas Geoffray | 8ddb00c | 2014-09-29 12:00:40 +0100 | [diff] [blame] | 307 | // There is a use later in the same block or in a following block. |
| 308 | // Note that in such a case, `AddRange` for the whole blocks has been called |
| 309 | // before arriving in this method, and this is the reason the start of |
| 310 | // `first_range_` is before the given `position`. |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 311 | DCHECK_LE(position, first_range_->GetEnd()); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 312 | } else { |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 313 | DCHECK(first_range_->GetStart() > position); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 314 | // There is a hole in the interval. Create a new range. |
Nicolas Geoffray | 8ddb00c | 2014-09-29 12:00:40 +0100 | [diff] [blame] | 315 | // Note that the start of `first_range_` can be equal to `end`: two blocks |
| 316 | // having adjacent lifetime positions are not necessarily |
| 317 | // predecessor/successor. When two blocks are predecessor/successor, the |
| 318 | // liveness algorithm has called `AddRange` before arriving in this method, |
| 319 | // and the check line 205 would succeed. |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 320 | first_range_ = range_search_start_ = |
| 321 | new (allocator_) LiveRange(start_block_position, position, first_range_); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 322 | } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 323 | } |
| 324 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 325 | void AddPhiUse(HInstruction* instruction, size_t input_index, HBasicBlock* block) { |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 326 | DCHECK(instruction->IsPhi()); |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 327 | if (block->IsInLoop()) { |
| 328 | AddBackEdgeUses(*block); |
| 329 | } |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 330 | first_use_ = new (allocator_) UsePosition( |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 331 | instruction, /* environment */ nullptr, input_index, block->GetLifetimeEnd(), first_use_); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 332 | } |
| 333 | |
Mingyao Yang | 01b47b0 | 2017-02-03 12:09:57 -0800 | [diff] [blame^] | 334 | ALWAYS_INLINE void AddRange(size_t start, size_t end) { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 335 | if (first_range_ == nullptr) { |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 336 | first_range_ = last_range_ = range_search_start_ = |
| 337 | new (allocator_) LiveRange(start, end, first_range_); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 338 | } else if (first_range_->GetStart() == end) { |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 339 | // There is a use in the following block. |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 340 | first_range_->start_ = start; |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 341 | } else if (first_range_->GetStart() == start && first_range_->GetEnd() == end) { |
| 342 | DCHECK(is_fixed_); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 343 | } else { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 344 | DCHECK_GT(first_range_->GetStart(), end); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 345 | // There is a hole in the interval. Create a new range. |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 346 | first_range_ = range_search_start_ = new (allocator_) LiveRange(start, end, first_range_); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 347 | } |
| 348 | } |
| 349 | |
| 350 | void AddLoopRange(size_t start, size_t end) { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 351 | DCHECK(first_range_ != nullptr); |
Nicolas Geoffray | aedc328 | 2015-01-23 18:01:51 +0000 | [diff] [blame] | 352 | DCHECK_LE(start, first_range_->GetStart()); |
| 353 | // Find the range that covers the positions after the loop. |
| 354 | LiveRange* after_loop = first_range_; |
| 355 | LiveRange* last_in_loop = nullptr; |
| 356 | while (after_loop != nullptr && after_loop->GetEnd() < end) { |
| 357 | DCHECK_LE(start, after_loop->GetStart()); |
| 358 | last_in_loop = after_loop; |
| 359 | after_loop = after_loop->GetNext(); |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 360 | } |
Nicolas Geoffray | aedc328 | 2015-01-23 18:01:51 +0000 | [diff] [blame] | 361 | if (after_loop == nullptr) { |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 362 | // Uses are only in the loop. |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 363 | first_range_ = last_range_ = range_search_start_ = |
| 364 | new (allocator_) LiveRange(start, end, nullptr); |
Nicolas Geoffray | aedc328 | 2015-01-23 18:01:51 +0000 | [diff] [blame] | 365 | } else if (after_loop->GetStart() <= end) { |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 366 | first_range_ = range_search_start_ = after_loop; |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 367 | // There are uses after the loop. |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 368 | first_range_->start_ = start; |
Nicolas Geoffray | aedc328 | 2015-01-23 18:01:51 +0000 | [diff] [blame] | 369 | } else { |
| 370 | // The use after the loop is after a lifetime hole. |
| 371 | DCHECK(last_in_loop != nullptr); |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 372 | first_range_ = range_search_start_ = last_in_loop; |
Nicolas Geoffray | aedc328 | 2015-01-23 18:01:51 +0000 | [diff] [blame] | 373 | first_range_->start_ = start; |
| 374 | first_range_->end_ = end; |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 378 | bool HasSpillSlot() const { return spill_slot_ != kNoSpillSlot; } |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 379 | void SetSpillSlot(int slot) { |
| 380 | DCHECK(!is_fixed_); |
| 381 | DCHECK(!is_temp_); |
| 382 | spill_slot_ = slot; |
| 383 | } |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 384 | int GetSpillSlot() const { return spill_slot_; } |
| 385 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 386 | void SetFrom(size_t from) { |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 387 | if (first_range_ != nullptr) { |
| 388 | first_range_->start_ = from; |
| 389 | } else { |
| 390 | // Instruction without uses. |
Nicolas Geoffray | 94015b9 | 2015-06-04 18:21:04 +0100 | [diff] [blame] | 391 | DCHECK(first_use_ == nullptr); |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 392 | DCHECK(from == defined_by_->GetLifetimePosition()); |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 393 | first_range_ = last_range_ = range_search_start_ = |
| 394 | new (allocator_) LiveRange(from, from + 2, nullptr); |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 395 | } |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 396 | } |
| 397 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 398 | LiveInterval* GetParent() const { return parent_; } |
| 399 | |
Nicolas Geoffray | 1ba1981 | 2015-04-21 09:12:40 +0100 | [diff] [blame] | 400 | // Returns whether this interval is the parent interval, that is, the interval |
| 401 | // that starts where the HInstruction is defined. |
| 402 | bool IsParent() const { return parent_ == this; } |
| 403 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 404 | LiveRange* GetFirstRange() const { return first_range_; } |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 405 | LiveRange* GetLastRange() const { return last_range_; } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 406 | |
| 407 | int GetRegister() const { return register_; } |
| 408 | void SetRegister(int reg) { register_ = reg; } |
| 409 | void ClearRegister() { register_ = kNoRegister; } |
| 410 | bool HasRegister() const { return register_ != kNoRegister; } |
| 411 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 412 | bool IsDeadAt(size_t position) const { |
David Brazdil | 241a486 | 2015-04-16 17:59:03 +0100 | [diff] [blame] | 413 | return GetEnd() <= position; |
| 414 | } |
| 415 | |
| 416 | bool IsDefinedAt(size_t position) const { |
| 417 | return GetStart() <= position && !IsDeadAt(position); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 418 | } |
| 419 | |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 420 | // Returns true if the interval contains a LiveRange covering `position`. |
| 421 | // The range at or immediately after the current position of linear scan |
| 422 | // is cached for better performance. If `position` can be smaller than |
| 423 | // that, CoversSlow should be used instead. |
David Brazdil | 5b8e6a5 | 2015-02-25 16:17:05 +0000 | [diff] [blame] | 424 | bool Covers(size_t position) { |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 425 | LiveRange* candidate = FindRangeAtOrAfter(position, range_search_start_); |
| 426 | range_search_start_ = candidate; |
| 427 | return (candidate != nullptr && candidate->GetStart() <= position); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 428 | } |
| 429 | |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 430 | // Same as Covers but always tests all ranges. |
| 431 | bool CoversSlow(size_t position) const { |
| 432 | LiveRange* candidate = FindRangeAtOrAfter(position, first_range_); |
| 433 | return candidate != nullptr && candidate->GetStart() <= position; |
| 434 | } |
| 435 | |
| 436 | // Returns the first intersection of this interval with `current`, which |
| 437 | // must be the interval currently being allocated by linear scan. |
| 438 | size_t FirstIntersectionWith(LiveInterval* current) const { |
| 439 | // Find the first range after the start of `current`. We use the search |
| 440 | // cache to improve performance. |
| 441 | DCHECK(GetStart() <= current->GetStart() || IsFixed()); |
| 442 | LiveRange* other_range = current->first_range_; |
| 443 | LiveRange* my_range = FindRangeAtOrAfter(other_range->GetStart(), range_search_start_); |
| 444 | if (my_range == nullptr) { |
| 445 | return kNoLifetime; |
| 446 | } |
| 447 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 448 | // Advance both intervals and find the first matching range start in |
| 449 | // this interval. |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 450 | do { |
David Brazdil | 714e14f | 2015-02-25 11:57:05 +0000 | [diff] [blame] | 451 | if (my_range->IsBefore(*other_range)) { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 452 | my_range = my_range->GetNext(); |
| 453 | if (my_range == nullptr) { |
| 454 | return kNoLifetime; |
| 455 | } |
David Brazdil | 714e14f | 2015-02-25 11:57:05 +0000 | [diff] [blame] | 456 | } else if (other_range->IsBefore(*my_range)) { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 457 | other_range = other_range->GetNext(); |
| 458 | if (other_range == nullptr) { |
| 459 | return kNoLifetime; |
| 460 | } |
David Brazdil | 714e14f | 2015-02-25 11:57:05 +0000 | [diff] [blame] | 461 | } else { |
| 462 | DCHECK(my_range->IntersectsWith(*other_range)); |
| 463 | return std::max(my_range->GetStart(), other_range->GetStart()); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 464 | } |
| 465 | } while (true); |
| 466 | } |
| 467 | |
| 468 | size_t GetStart() const { |
| 469 | return first_range_->GetStart(); |
| 470 | } |
| 471 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 472 | size_t GetEnd() const { |
| 473 | return last_range_->GetEnd(); |
| 474 | } |
| 475 | |
Matthew Gharrity | d9ffd0d | 2016-06-22 10:27:55 -0700 | [diff] [blame] | 476 | size_t GetLength() const { |
| 477 | return GetEnd() - GetStart(); |
| 478 | } |
| 479 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 480 | size_t FirstRegisterUseAfter(size_t position) const { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 481 | if (is_temp_) { |
| 482 | return position == GetStart() ? position : kNoLifetime; |
| 483 | } |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 484 | |
| 485 | if (IsDefiningPosition(position) && DefinitionRequiresRegister()) { |
| 486 | return position; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 487 | } |
| 488 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 489 | UsePosition* use = first_use_; |
Nicolas Geoffray | de025a7 | 2014-06-19 17:06:46 +0100 | [diff] [blame] | 490 | size_t end = GetEnd(); |
| 491 | while (use != nullptr && use->GetPosition() <= end) { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 492 | size_t use_position = use->GetPosition(); |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 493 | if (use_position > position) { |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 494 | if (use->RequiresRegister()) { |
Nicolas Geoffray | c8147a7 | 2014-10-21 16:06:20 +0100 | [diff] [blame] | 495 | return use_position; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 496 | } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 497 | } |
| 498 | use = use->GetNext(); |
| 499 | } |
| 500 | return kNoLifetime; |
| 501 | } |
| 502 | |
Matthew Gharrity | d9ffd0d | 2016-06-22 10:27:55 -0700 | [diff] [blame] | 503 | // Returns the location of the first register use for this live interval, |
| 504 | // including a register definition if applicable. |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 505 | size_t FirstRegisterUse() const { |
| 506 | return FirstRegisterUseAfter(GetStart()); |
| 507 | } |
| 508 | |
Matthew Gharrity | d9ffd0d | 2016-06-22 10:27:55 -0700 | [diff] [blame] | 509 | // Whether the interval requires a register rather than a stack location. |
| 510 | // If needed for performance, this could be cached. |
Matthew Gharrity | 2ccae4a | 2016-08-12 16:10:45 +0000 | [diff] [blame] | 511 | bool RequiresRegister() const { |
| 512 | return !HasRegister() && FirstRegisterUse() != kNoLifetime; |
| 513 | } |
Matthew Gharrity | d9ffd0d | 2016-06-22 10:27:55 -0700 | [diff] [blame] | 514 | |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 515 | size_t FirstUseAfter(size_t position) const { |
| 516 | if (is_temp_) { |
| 517 | return position == GetStart() ? position : kNoLifetime; |
| 518 | } |
| 519 | |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 520 | if (IsDefiningPosition(position)) { |
| 521 | DCHECK(defined_by_->GetLocations()->Out().IsValid()); |
| 522 | return position; |
Nicolas Geoffray | 1ba1981 | 2015-04-21 09:12:40 +0100 | [diff] [blame] | 523 | } |
| 524 | |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 525 | UsePosition* use = first_use_; |
| 526 | size_t end = GetEnd(); |
| 527 | while (use != nullptr && use->GetPosition() <= end) { |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 528 | size_t use_position = use->GetPosition(); |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 529 | if (use_position > position) { |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 530 | return use_position; |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 531 | } |
| 532 | use = use->GetNext(); |
| 533 | } |
| 534 | return kNoLifetime; |
| 535 | } |
| 536 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 537 | UsePosition* GetFirstUse() const { |
| 538 | return first_use_; |
| 539 | } |
| 540 | |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 541 | UsePosition* GetFirstEnvironmentUse() const { |
| 542 | return first_env_use_; |
| 543 | } |
| 544 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 545 | Primitive::Type GetType() const { |
| 546 | return type_; |
| 547 | } |
| 548 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 549 | HInstruction* GetDefinedBy() const { |
| 550 | return defined_by_; |
| 551 | } |
| 552 | |
Nicolas Geoffray | 8826f67 | 2015-04-17 09:15:11 +0100 | [diff] [blame] | 553 | bool HasWillCallSafepoint() const { |
| 554 | for (SafepointPosition* safepoint = first_safepoint_; |
| 555 | safepoint != nullptr; |
| 556 | safepoint = safepoint->GetNext()) { |
| 557 | if (safepoint->GetLocations()->WillCall()) return true; |
| 558 | } |
| 559 | return false; |
| 560 | } |
| 561 | |
Nicolas Geoffray | 43af728 | 2015-04-16 13:01:01 +0100 | [diff] [blame] | 562 | SafepointPosition* FindSafepointJustBefore(size_t position) const { |
| 563 | for (SafepointPosition* safepoint = first_safepoint_, *previous = nullptr; |
| 564 | safepoint != nullptr; |
| 565 | previous = safepoint, safepoint = safepoint->GetNext()) { |
| 566 | if (safepoint->GetPosition() >= position) return previous; |
| 567 | } |
| 568 | return last_safepoint_; |
| 569 | } |
| 570 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 571 | /** |
| 572 | * Split this interval at `position`. This interval is changed to: |
| 573 | * [start ... position). |
| 574 | * |
| 575 | * The new interval covers: |
| 576 | * [position ... end) |
| 577 | */ |
| 578 | LiveInterval* SplitAt(size_t position) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 579 | DCHECK(!is_temp_); |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 580 | DCHECK(!is_fixed_); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 581 | DCHECK_GT(position, GetStart()); |
| 582 | |
David Brazdil | 241a486 | 2015-04-16 17:59:03 +0100 | [diff] [blame] | 583 | if (GetEnd() <= position) { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 584 | // This range dies before `position`, no need to split. |
| 585 | return nullptr; |
| 586 | } |
| 587 | |
| 588 | LiveInterval* new_interval = new (allocator_) LiveInterval(allocator_, type_); |
Nicolas Geoffray | 43af728 | 2015-04-16 13:01:01 +0100 | [diff] [blame] | 589 | SafepointPosition* new_last_safepoint = FindSafepointJustBefore(position); |
| 590 | if (new_last_safepoint == nullptr) { |
| 591 | new_interval->first_safepoint_ = first_safepoint_; |
| 592 | new_interval->last_safepoint_ = last_safepoint_; |
| 593 | first_safepoint_ = last_safepoint_ = nullptr; |
| 594 | } else if (last_safepoint_ != new_last_safepoint) { |
| 595 | new_interval->last_safepoint_ = last_safepoint_; |
| 596 | new_interval->first_safepoint_ = new_last_safepoint->GetNext(); |
| 597 | DCHECK(new_interval->first_safepoint_ != nullptr); |
| 598 | last_safepoint_ = new_last_safepoint; |
| 599 | last_safepoint_->SetNext(nullptr); |
| 600 | } |
| 601 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 602 | new_interval->next_sibling_ = next_sibling_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 603 | next_sibling_ = new_interval; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 604 | new_interval->parent_ = parent_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 605 | |
| 606 | new_interval->first_use_ = first_use_; |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 607 | new_interval->first_env_use_ = first_env_use_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 608 | LiveRange* current = first_range_; |
| 609 | LiveRange* previous = nullptr; |
| 610 | // Iterate over the ranges, and either find a range that covers this position, or |
Nicolas Geoffray | dd8f887 | 2015-01-15 15:37:37 +0000 | [diff] [blame] | 611 | // two ranges in between this position (that is, the position is in a lifetime hole). |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 612 | do { |
| 613 | if (position >= current->GetEnd()) { |
| 614 | // Move to next range. |
| 615 | previous = current; |
| 616 | current = current->next_; |
| 617 | } else if (position <= current->GetStart()) { |
| 618 | // If the previous range did not cover this position, we know position is in |
| 619 | // a lifetime hole. We can just break the first_range_ and last_range_ links |
| 620 | // and return the new interval. |
| 621 | DCHECK(previous != nullptr); |
| 622 | DCHECK(current != first_range_); |
| 623 | new_interval->last_range_ = last_range_; |
| 624 | last_range_ = previous; |
| 625 | previous->next_ = nullptr; |
| 626 | new_interval->first_range_ = current; |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 627 | if (range_search_start_ != nullptr && range_search_start_->GetEnd() >= current->GetEnd()) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 628 | // Search start point is inside `new_interval`. Change it to null |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 629 | // (i.e. the end of the interval) in the original interval. |
| 630 | range_search_start_ = nullptr; |
| 631 | } |
| 632 | new_interval->range_search_start_ = new_interval->first_range_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 633 | return new_interval; |
| 634 | } else { |
| 635 | // This range covers position. We create a new last_range_ for this interval |
| 636 | // that covers last_range_->Start() and position. We also shorten the current |
| 637 | // range and make it the first range of the new interval. |
| 638 | DCHECK(position < current->GetEnd() && position > current->GetStart()); |
| 639 | new_interval->last_range_ = last_range_; |
| 640 | last_range_ = new (allocator_) LiveRange(current->start_, position, nullptr); |
| 641 | if (previous != nullptr) { |
| 642 | previous->next_ = last_range_; |
| 643 | } else { |
| 644 | first_range_ = last_range_; |
| 645 | } |
| 646 | new_interval->first_range_ = current; |
| 647 | current->start_ = position; |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 648 | if (range_search_start_ != nullptr && range_search_start_->GetEnd() >= current->GetEnd()) { |
| 649 | // Search start point is inside `new_interval`. Change it to `last_range` |
| 650 | // in the original interval. This is conservative but always correct. |
| 651 | range_search_start_ = last_range_; |
| 652 | } |
| 653 | new_interval->range_search_start_ = new_interval->first_range_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 654 | return new_interval; |
| 655 | } |
| 656 | } while (current != nullptr); |
| 657 | |
| 658 | LOG(FATAL) << "Unreachable"; |
| 659 | return nullptr; |
| 660 | } |
| 661 | |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 662 | bool StartsBeforeOrAt(LiveInterval* other) const { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 663 | return GetStart() <= other->GetStart(); |
| 664 | } |
| 665 | |
| 666 | bool StartsAfter(LiveInterval* other) const { |
Nicolas Geoffray | 7690562 | 2014-09-25 14:39:26 +0100 | [diff] [blame] | 667 | return GetStart() > other->GetStart(); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | void Dump(std::ostream& stream) const { |
| 671 | stream << "ranges: { "; |
| 672 | LiveRange* current = first_range_; |
Nicolas Geoffray | aedc328 | 2015-01-23 18:01:51 +0000 | [diff] [blame] | 673 | while (current != nullptr) { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 674 | current->Dump(stream); |
| 675 | stream << " "; |
Nicolas Geoffray | aedc328 | 2015-01-23 18:01:51 +0000 | [diff] [blame] | 676 | current = current->GetNext(); |
| 677 | } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 678 | stream << "}, uses: { "; |
| 679 | UsePosition* use = first_use_; |
| 680 | if (use != nullptr) { |
| 681 | do { |
| 682 | use->Dump(stream); |
| 683 | stream << " "; |
| 684 | } while ((use = use->GetNext()) != nullptr); |
| 685 | } |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 686 | stream << "}, { "; |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 687 | use = first_env_use_; |
| 688 | if (use != nullptr) { |
| 689 | do { |
| 690 | use->Dump(stream); |
| 691 | stream << " "; |
| 692 | } while ((use = use->GetNext()) != nullptr); |
| 693 | } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 694 | stream << "}"; |
Mingyao Yang | 296bd60 | 2014-10-06 16:47:28 -0700 | [diff] [blame] | 695 | stream << " is_fixed: " << is_fixed_ << ", is_split: " << IsSplit(); |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 696 | stream << " is_low: " << IsLowInterval(); |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 697 | stream << " is_high: " << IsHighInterval(); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 698 | } |
| 699 | |
Matthew Gharrity | d9ffd0d | 2016-06-22 10:27:55 -0700 | [diff] [blame] | 700 | // Same as Dump, but adds context such as the instruction defining this interval, and |
| 701 | // the register currently assigned to this interval. |
| 702 | void DumpWithContext(std::ostream& stream, const CodeGenerator& codegen) const; |
| 703 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 704 | LiveInterval* GetNextSibling() const { return next_sibling_; } |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 705 | LiveInterval* GetLastSibling() { |
| 706 | LiveInterval* result = this; |
| 707 | while (result->next_sibling_ != nullptr) { |
| 708 | result = result->next_sibling_; |
| 709 | } |
| 710 | return result; |
| 711 | } |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 712 | |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 713 | // Returns the first register hint that is at least free before |
| 714 | // the value contained in `free_until`. If none is found, returns |
| 715 | // `kNoRegister`. |
Nicolas Geoffray | fbda5f3 | 2015-04-29 14:16:00 +0100 | [diff] [blame] | 716 | int FindFirstRegisterHint(size_t* free_until, const SsaLivenessAnalysis& liveness) const; |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 717 | |
| 718 | // If there is enough at the definition site to find a register (for example |
| 719 | // it uses the same input as the first input), returns the register as a hint. |
| 720 | // Returns kNoRegister otherwise. |
| 721 | int FindHintAtDefinition() const; |
| 722 | |
| 723 | // Returns whether the interval needs two (Dex virtual register size `kVRegSize`) |
| 724 | // slots for spilling. |
| 725 | bool NeedsTwoSpillSlots() const; |
| 726 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 727 | bool IsFloatingPoint() const { |
| 728 | return type_ == Primitive::kPrimFloat || type_ == Primitive::kPrimDouble; |
| 729 | } |
| 730 | |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 731 | // Converts the location of the interval to a `Location` object. |
| 732 | Location ToLocation() const; |
| 733 | |
| 734 | // Returns the location of the interval following its siblings at `position`. |
David Brazdil | 5b8e6a5 | 2015-02-25 16:17:05 +0000 | [diff] [blame] | 735 | Location GetLocationAt(size_t position); |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 736 | |
David Brazdil | 241a486 | 2015-04-16 17:59:03 +0100 | [diff] [blame] | 737 | // Finds the sibling that is defined at `position`. |
| 738 | LiveInterval* GetSiblingAt(size_t position); |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 739 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 740 | // Returns whether `other` and `this` share the same kind of register. |
| 741 | bool SameRegisterKind(Location other) const; |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 742 | bool SameRegisterKind(const LiveInterval& other) const { |
| 743 | return IsFloatingPoint() == other.IsFloatingPoint(); |
| 744 | } |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 745 | |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 746 | bool HasHighInterval() const { |
Nicolas Geoffray | 3747b48 | 2015-01-19 17:17:16 +0000 | [diff] [blame] | 747 | return IsLowInterval(); |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | bool HasLowInterval() const { |
| 751 | return IsHighInterval(); |
| 752 | } |
| 753 | |
| 754 | LiveInterval* GetLowInterval() const { |
| 755 | DCHECK(HasLowInterval()); |
| 756 | return high_or_low_interval_; |
| 757 | } |
| 758 | |
| 759 | LiveInterval* GetHighInterval() const { |
| 760 | DCHECK(HasHighInterval()); |
| 761 | return high_or_low_interval_; |
| 762 | } |
| 763 | |
| 764 | bool IsHighInterval() const { |
| 765 | return GetParent()->is_high_interval_; |
| 766 | } |
| 767 | |
| 768 | bool IsLowInterval() const { |
| 769 | return !IsHighInterval() && (GetParent()->high_or_low_interval_ != nullptr); |
| 770 | } |
| 771 | |
| 772 | void SetLowInterval(LiveInterval* low) { |
| 773 | DCHECK(IsHighInterval()); |
| 774 | high_or_low_interval_ = low; |
| 775 | } |
| 776 | |
| 777 | void SetHighInterval(LiveInterval* high) { |
| 778 | DCHECK(IsLowInterval()); |
| 779 | high_or_low_interval_ = high; |
| 780 | } |
| 781 | |
| 782 | void AddHighInterval(bool is_temp = false) { |
Nicolas Geoffray | 1ba1981 | 2015-04-21 09:12:40 +0100 | [diff] [blame] | 783 | DCHECK(IsParent()); |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 784 | DCHECK(!HasHighInterval()); |
| 785 | DCHECK(!HasLowInterval()); |
| 786 | high_or_low_interval_ = new (allocator_) LiveInterval( |
Vladimir Marko | 70e9746 | 2016-08-09 11:04:26 +0100 | [diff] [blame] | 787 | allocator_, type_, defined_by_, false, kNoRegister, is_temp, true); |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 788 | high_or_low_interval_->high_or_low_interval_ = this; |
| 789 | if (first_range_ != nullptr) { |
| 790 | high_or_low_interval_->first_range_ = first_range_->Dup(allocator_); |
David Brazdil | c08675c | 2015-04-17 15:49:51 +0100 | [diff] [blame] | 791 | high_or_low_interval_->last_range_ = high_or_low_interval_->first_range_->GetLastRange(); |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 792 | high_or_low_interval_->range_search_start_ = high_or_low_interval_->first_range_; |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 793 | } |
| 794 | if (first_use_ != nullptr) { |
| 795 | high_or_low_interval_->first_use_ = first_use_->Dup(allocator_); |
| 796 | } |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 797 | |
| 798 | if (first_env_use_ != nullptr) { |
| 799 | high_or_low_interval_->first_env_use_ = first_env_use_->Dup(allocator_); |
| 800 | } |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 801 | } |
| 802 | |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 803 | // Returns whether an interval, when it is non-split, is using |
| 804 | // the same register of one of its input. |
| 805 | bool IsUsingInputRegister() const { |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 806 | CHECK(kIsDebugBuild) << "Function should be used only for DCHECKs"; |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 807 | if (defined_by_ != nullptr && !IsSplit()) { |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 808 | for (const HInstruction* input : defined_by_->GetInputs()) { |
| 809 | LiveInterval* interval = input->GetLiveInterval(); |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 810 | |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 811 | // Find the interval that covers `defined_by`_. Calls to this function |
| 812 | // are made outside the linear scan, hence we need to use CoversSlow. |
| 813 | while (interval != nullptr && !interval->CoversSlow(defined_by_->GetLifetimePosition())) { |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 814 | interval = interval->GetNextSibling(); |
| 815 | } |
| 816 | |
| 817 | // Check if both intervals have the same register of the same kind. |
| 818 | if (interval != nullptr |
| 819 | && interval->SameRegisterKind(*this) |
| 820 | && interval->GetRegister() == GetRegister()) { |
| 821 | return true; |
| 822 | } |
| 823 | } |
| 824 | } |
| 825 | return false; |
| 826 | } |
| 827 | |
| 828 | // Returns whether an interval, when it is non-split, can safely use |
| 829 | // the same register of one of its input. Note that this method requires |
| 830 | // IsUsingInputRegister() to be true. |
| 831 | bool CanUseInputRegister() const { |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 832 | CHECK(kIsDebugBuild) << "Function should be used only for DCHECKs"; |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 833 | DCHECK(IsUsingInputRegister()); |
| 834 | if (defined_by_ != nullptr && !IsSplit()) { |
| 835 | LocationSummary* locations = defined_by_->GetLocations(); |
| 836 | if (locations->OutputCanOverlapWithInputs()) { |
| 837 | return false; |
| 838 | } |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 839 | for (const HInstruction* input : defined_by_->GetInputs()) { |
| 840 | LiveInterval* interval = input->GetLiveInterval(); |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 841 | |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 842 | // Find the interval that covers `defined_by`_. Calls to this function |
| 843 | // are made outside the linear scan, hence we need to use CoversSlow. |
| 844 | while (interval != nullptr && !interval->CoversSlow(defined_by_->GetLifetimePosition())) { |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 845 | interval = interval->GetNextSibling(); |
| 846 | } |
| 847 | |
| 848 | if (interval != nullptr |
| 849 | && interval->SameRegisterKind(*this) |
| 850 | && interval->GetRegister() == GetRegister()) { |
| 851 | // We found the input that has the same register. Check if it is live after |
| 852 | // `defined_by`_. |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 853 | return !interval->CoversSlow(defined_by_->GetLifetimePosition() + 1); |
Nicolas Geoffray | 829280c | 2015-01-28 10:20:37 +0000 | [diff] [blame] | 854 | } |
| 855 | } |
| 856 | } |
| 857 | LOG(FATAL) << "Unreachable"; |
| 858 | UNREACHABLE(); |
| 859 | } |
| 860 | |
Nicolas Geoffray | 5588e58 | 2015-04-14 14:10:59 +0100 | [diff] [blame] | 861 | void AddSafepoint(HInstruction* instruction) { |
| 862 | SafepointPosition* safepoint = new (allocator_) SafepointPosition(instruction); |
| 863 | if (first_safepoint_ == nullptr) { |
| 864 | first_safepoint_ = last_safepoint_ = safepoint; |
| 865 | } else { |
| 866 | DCHECK_LT(last_safepoint_->GetPosition(), safepoint->GetPosition()); |
| 867 | last_safepoint_->SetNext(safepoint); |
| 868 | last_safepoint_ = safepoint; |
| 869 | } |
| 870 | } |
| 871 | |
| 872 | SafepointPosition* GetFirstSafepoint() const { |
Nicolas Geoffray | 5588e58 | 2015-04-14 14:10:59 +0100 | [diff] [blame] | 873 | return first_safepoint_; |
| 874 | } |
| 875 | |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 876 | // Resets the starting point for range-searching queries to the first range. |
| 877 | // Intervals must be reset prior to starting a new linear scan over them. |
| 878 | void ResetSearchCache() { |
| 879 | range_search_start_ = first_range_; |
| 880 | } |
| 881 | |
Matthew Gharrity | d9ffd0d | 2016-06-22 10:27:55 -0700 | [diff] [blame] | 882 | bool DefinitionRequiresRegister() const { |
| 883 | DCHECK(IsParent()); |
| 884 | LocationSummary* locations = defined_by_->GetLocations(); |
| 885 | Location location = locations->Out(); |
| 886 | // This interval is the first interval of the instruction. If the output |
| 887 | // of the instruction requires a register, we return the position of that instruction |
| 888 | // as the first register use. |
| 889 | if (location.IsUnallocated()) { |
| 890 | if ((location.GetPolicy() == Location::kRequiresRegister) |
| 891 | || (location.GetPolicy() == Location::kSameAsFirstInput |
| 892 | && (locations->InAt(0).IsRegister() |
| 893 | || locations->InAt(0).IsRegisterPair() |
| 894 | || locations->InAt(0).GetPolicy() == Location::kRequiresRegister))) { |
| 895 | return true; |
| 896 | } else if ((location.GetPolicy() == Location::kRequiresFpuRegister) |
| 897 | || (location.GetPolicy() == Location::kSameAsFirstInput |
| 898 | && (locations->InAt(0).IsFpuRegister() |
| 899 | || locations->InAt(0).IsFpuRegisterPair() |
| 900 | || locations->InAt(0).GetPolicy() == Location::kRequiresFpuRegister))) { |
| 901 | return true; |
| 902 | } |
| 903 | } else if (location.IsRegister() || location.IsRegisterPair()) { |
| 904 | return true; |
| 905 | } |
| 906 | return false; |
| 907 | } |
| 908 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 909 | private: |
Mingyao Yang | 296bd60 | 2014-10-06 16:47:28 -0700 | [diff] [blame] | 910 | LiveInterval(ArenaAllocator* allocator, |
| 911 | Primitive::Type type, |
| 912 | HInstruction* defined_by = nullptr, |
| 913 | bool is_fixed = false, |
| 914 | int reg = kNoRegister, |
| 915 | bool is_temp = false, |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 916 | bool is_high_interval = false) |
Mingyao Yang | 296bd60 | 2014-10-06 16:47:28 -0700 | [diff] [blame] | 917 | : allocator_(allocator), |
| 918 | first_range_(nullptr), |
| 919 | last_range_(nullptr), |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 920 | range_search_start_(nullptr), |
Nicolas Geoffray | 5588e58 | 2015-04-14 14:10:59 +0100 | [diff] [blame] | 921 | first_safepoint_(nullptr), |
| 922 | last_safepoint_(nullptr), |
Mingyao Yang | 296bd60 | 2014-10-06 16:47:28 -0700 | [diff] [blame] | 923 | first_use_(nullptr), |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 924 | first_env_use_(nullptr), |
Mingyao Yang | 296bd60 | 2014-10-06 16:47:28 -0700 | [diff] [blame] | 925 | type_(type), |
| 926 | next_sibling_(nullptr), |
| 927 | parent_(this), |
| 928 | register_(reg), |
| 929 | spill_slot_(kNoSpillSlot), |
| 930 | is_fixed_(is_fixed), |
| 931 | is_temp_(is_temp), |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 932 | is_high_interval_(is_high_interval), |
| 933 | high_or_low_interval_(nullptr), |
Mingyao Yang | 296bd60 | 2014-10-06 16:47:28 -0700 | [diff] [blame] | 934 | defined_by_(defined_by) {} |
| 935 | |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 936 | // Searches for a LiveRange that either covers the given position or is the |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 937 | // first next LiveRange. Returns null if no such LiveRange exists. Ranges |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 938 | // known to end before `position` can be skipped with `search_start`. |
| 939 | LiveRange* FindRangeAtOrAfter(size_t position, LiveRange* search_start) const { |
David Brazdil | 5b8e6a5 | 2015-02-25 16:17:05 +0000 | [diff] [blame] | 940 | if (kIsDebugBuild) { |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 941 | if (search_start != first_range_) { |
| 942 | // If we are not searching the entire list of ranges, make sure we do |
| 943 | // not skip the range we are searching for. |
| 944 | if (search_start == nullptr) { |
| 945 | DCHECK(IsDeadAt(position)); |
| 946 | } else if (search_start->GetStart() > position) { |
| 947 | DCHECK_EQ(search_start, FindRangeAtOrAfter(position, first_range_)); |
| 948 | } |
David Brazdil | 5b8e6a5 | 2015-02-25 16:17:05 +0000 | [diff] [blame] | 949 | } |
| 950 | } |
| 951 | |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 952 | LiveRange* range; |
| 953 | for (range = search_start; |
| 954 | range != nullptr && range->GetEnd() <= position; |
| 955 | range = range->GetNext()) { |
| 956 | continue; |
David Brazdil | 5b8e6a5 | 2015-02-25 16:17:05 +0000 | [diff] [blame] | 957 | } |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 958 | return range; |
David Brazdil | 5b8e6a5 | 2015-02-25 16:17:05 +0000 | [diff] [blame] | 959 | } |
| 960 | |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 961 | bool IsDefiningPosition(size_t position) const { |
| 962 | return IsParent() && (position == GetStart()); |
| 963 | } |
| 964 | |
| 965 | bool HasSynthesizeUseAt(size_t position) const { |
| 966 | UsePosition* use = first_use_; |
| 967 | while (use != nullptr) { |
| 968 | size_t use_position = use->GetPosition(); |
| 969 | if ((use_position == position) && use->IsSynthesized()) { |
| 970 | return true; |
| 971 | } |
| 972 | if (use_position > position) break; |
| 973 | use = use->GetNext(); |
| 974 | } |
| 975 | return false; |
| 976 | } |
| 977 | |
| 978 | void AddBackEdgeUses(const HBasicBlock& block_at_use) { |
| 979 | DCHECK(block_at_use.IsInLoop()); |
David Brazdil | 07b3510 | 2016-04-27 15:33:22 +0100 | [diff] [blame] | 980 | if (block_at_use.GetGraph()->HasIrreducibleLoops()) { |
| 981 | // Linear order may not be well formed when irreducible loops are present, |
| 982 | // i.e. loop blocks may not be adjacent and a back edge may not be last, |
| 983 | // which violates assumptions made in this method. |
| 984 | return; |
| 985 | } |
| 986 | |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 987 | // Add synthesized uses at the back edge of loops to help the register allocator. |
| 988 | // Note that this method is called in decreasing liveness order, to faciliate adding |
| 989 | // uses at the head of the `first_use_` linked list. Because below |
| 990 | // we iterate from inner-most to outer-most, which is in increasing liveness order, |
| 991 | // we need to take extra care of how the `first_use_` linked list is being updated. |
| 992 | UsePosition* first_in_new_list = nullptr; |
| 993 | UsePosition* last_in_new_list = nullptr; |
| 994 | for (HLoopInformationOutwardIterator it(block_at_use); |
| 995 | !it.Done(); |
| 996 | it.Advance()) { |
| 997 | HLoopInformation* current = it.Current(); |
| 998 | if (GetDefinedBy()->GetLifetimePosition() >= current->GetHeader()->GetLifetimeStart()) { |
| 999 | // This interval is defined in the loop. We can stop going outward. |
| 1000 | break; |
| 1001 | } |
| 1002 | |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 1003 | // We're only adding a synthesized use at the last back edge. Adding syntehsized uses on |
| 1004 | // all back edges is not necessary: anything used in the loop will have its use at the |
| 1005 | // last back edge. If we want branches in a loop to have better register allocation than |
| 1006 | // another branch, then it is the linear order we should change. |
| 1007 | size_t back_edge_use_position = current->GetLifetimeEnd(); |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 1008 | if ((first_use_ != nullptr) && (first_use_->GetPosition() <= back_edge_use_position)) { |
| 1009 | // There was a use already seen in this loop. Therefore the previous call to `AddUse` |
| 1010 | // already inserted the backedge use. We can stop going outward. |
David Brazdil | 07b3510 | 2016-04-27 15:33:22 +0100 | [diff] [blame] | 1011 | DCHECK(HasSynthesizeUseAt(back_edge_use_position)); |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 1012 | break; |
| 1013 | } |
| 1014 | |
David Brazdil | 07b3510 | 2016-04-27 15:33:22 +0100 | [diff] [blame] | 1015 | DCHECK(last_in_new_list == nullptr || |
| 1016 | back_edge_use_position > last_in_new_list->GetPosition()); |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 1017 | |
| 1018 | UsePosition* new_use = new (allocator_) UsePosition( |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 1019 | /* user */ nullptr, |
| 1020 | /* environment */ nullptr, |
| 1021 | UsePosition::kNoInput, |
| 1022 | back_edge_use_position, |
| 1023 | /* next */ nullptr); |
Nicolas Geoffray | 5790260 | 2015-04-21 14:28:41 +0100 | [diff] [blame] | 1024 | |
| 1025 | if (last_in_new_list != nullptr) { |
| 1026 | // Going outward. The latest created use needs to point to the new use. |
| 1027 | last_in_new_list->SetNext(new_use); |
| 1028 | } else { |
| 1029 | // This is the inner-most loop. |
| 1030 | DCHECK_EQ(current, block_at_use.GetLoopInformation()); |
| 1031 | first_in_new_list = new_use; |
| 1032 | } |
| 1033 | last_in_new_list = new_use; |
| 1034 | } |
| 1035 | // Link the newly created linked list with `first_use_`. |
| 1036 | if (last_in_new_list != nullptr) { |
| 1037 | last_in_new_list->SetNext(first_use_); |
| 1038 | first_use_ = first_in_new_list; |
| 1039 | } |
| 1040 | } |
| 1041 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1042 | ArenaAllocator* const allocator_; |
| 1043 | |
| 1044 | // Ranges of this interval. We need a quick access to the last range to test |
| 1045 | // for liveness (see `IsDeadAt`). |
| 1046 | LiveRange* first_range_; |
| 1047 | LiveRange* last_range_; |
| 1048 | |
David Brazdil | 3fc992f | 2015-04-16 18:31:55 +0100 | [diff] [blame] | 1049 | // The first range at or after the current position of a linear scan. It is |
| 1050 | // used to optimize range-searching queries. |
| 1051 | LiveRange* range_search_start_; |
| 1052 | |
Nicolas Geoffray | 43af728 | 2015-04-16 13:01:01 +0100 | [diff] [blame] | 1053 | // Safepoints where this interval is live. |
Nicolas Geoffray | 5588e58 | 2015-04-14 14:10:59 +0100 | [diff] [blame] | 1054 | SafepointPosition* first_safepoint_; |
| 1055 | SafepointPosition* last_safepoint_; |
| 1056 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1057 | // Uses of this interval. Note that this linked list is shared amongst siblings. |
| 1058 | UsePosition* first_use_; |
Nicolas Geoffray | 4ed947a | 2015-04-27 16:58:06 +0100 | [diff] [blame] | 1059 | UsePosition* first_env_use_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1060 | |
| 1061 | // The instruction type this interval corresponds to. |
| 1062 | const Primitive::Type type_; |
| 1063 | |
| 1064 | // Live interval that is the result of a split. |
| 1065 | LiveInterval* next_sibling_; |
| 1066 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1067 | // The first interval from which split intervals come from. |
| 1068 | LiveInterval* parent_; |
| 1069 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1070 | // The register allocated to this interval. |
| 1071 | int register_; |
| 1072 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1073 | // The spill slot allocated to this interval. |
| 1074 | int spill_slot_; |
| 1075 | |
| 1076 | // Whether the interval is for a fixed register. |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1077 | const bool is_fixed_; |
| 1078 | |
| 1079 | // Whether the interval is for a temporary. |
| 1080 | const bool is_temp_; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1081 | |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 1082 | // Whether this interval is a synthesized interval for register pair. |
| 1083 | const bool is_high_interval_; |
| 1084 | |
| 1085 | // If this interval needs a register pair, the high or low equivalent. |
| 1086 | // `is_high_interval_` tells whether this holds the low or the high. |
| 1087 | LiveInterval* high_or_low_interval_; |
| 1088 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1089 | // The instruction represented by this interval. |
| 1090 | HInstruction* const defined_by_; |
| 1091 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1092 | static constexpr int kNoRegister = -1; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1093 | static constexpr int kNoSpillSlot = -1; |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 1094 | |
Nicolas Geoffray | dd8f887 | 2015-01-15 15:37:37 +0000 | [diff] [blame] | 1095 | ART_FRIEND_TEST(RegisterAllocatorTest, SpillInactive); |
| 1096 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 1097 | DISALLOW_COPY_AND_ASSIGN(LiveInterval); |
| 1098 | }; |
| 1099 | |
Nicolas Geoffray | 915b9d0 | 2015-03-11 15:11:19 +0000 | [diff] [blame] | 1100 | /** |
| 1101 | * Analysis that computes the liveness of instructions: |
| 1102 | * |
| 1103 | * (a) Non-environment uses of an instruction always make |
| 1104 | * the instruction live. |
| 1105 | * (b) Environment uses of an instruction whose type is |
| 1106 | * object (that is, non-primitive), make the instruction live. |
| 1107 | * This is due to having to keep alive objects that have |
| 1108 | * finalizers deleting native objects. |
| 1109 | * (c) When the graph has the debuggable property, environment uses |
| 1110 | * of an instruction that has a primitive type make the instruction live. |
| 1111 | * If the graph does not have the debuggable property, the environment |
| 1112 | * use has no effect, and may get a 'none' value after register allocation. |
| 1113 | * |
| 1114 | * (b) and (c) are implemented through SsaLivenessAnalysis::ShouldBeLiveForEnvironment. |
| 1115 | */ |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1116 | class SsaLivenessAnalysis : public ValueObject { |
| 1117 | public: |
Nicolas Geoffray | 0d9f17d | 2015-04-15 14:17:44 +0100 | [diff] [blame] | 1118 | SsaLivenessAnalysis(HGraph* graph, CodeGenerator* codegen) |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1119 | : graph_(graph), |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1120 | codegen_(codegen), |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1121 | block_infos_(graph->GetBlocks().size(), |
| 1122 | nullptr, |
| 1123 | graph->GetArena()->Adapter(kArenaAllocSsaLiveness)), |
| 1124 | instructions_from_ssa_index_(graph->GetArena()->Adapter(kArenaAllocSsaLiveness)), |
| 1125 | instructions_from_lifetime_position_(graph->GetArena()->Adapter(kArenaAllocSsaLiveness)), |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1126 | number_of_ssa_values_(0) { |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1127 | } |
| 1128 | |
| 1129 | void Analyze(); |
| 1130 | |
| 1131 | BitVector* GetLiveInSet(const HBasicBlock& block) const { |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1132 | return &block_infos_[block.GetBlockId()]->live_in_; |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1133 | } |
| 1134 | |
| 1135 | BitVector* GetLiveOutSet(const HBasicBlock& block) const { |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1136 | return &block_infos_[block.GetBlockId()]->live_out_; |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1137 | } |
| 1138 | |
| 1139 | BitVector* GetKillSet(const HBasicBlock& block) const { |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1140 | return &block_infos_[block.GetBlockId()]->kill_; |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1141 | } |
| 1142 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1143 | HInstruction* GetInstructionFromSsaIndex(size_t index) const { |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1144 | return instructions_from_ssa_index_[index]; |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 1145 | } |
| 1146 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1147 | HInstruction* GetInstructionFromPosition(size_t index) const { |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1148 | return instructions_from_lifetime_position_[index]; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1149 | } |
| 1150 | |
Nicolas Geoffray | 8cbab3c | 2015-04-23 15:14:36 +0100 | [diff] [blame] | 1151 | HBasicBlock* GetBlockFromPosition(size_t index) const { |
Nicolas Geoffray | fbda5f3 | 2015-04-29 14:16:00 +0100 | [diff] [blame] | 1152 | HInstruction* instruction = GetInstructionFromPosition(index); |
Nicolas Geoffray | 8cbab3c | 2015-04-23 15:14:36 +0100 | [diff] [blame] | 1153 | if (instruction == nullptr) { |
| 1154 | // If we are at a block boundary, get the block following. |
Nicolas Geoffray | fbda5f3 | 2015-04-29 14:16:00 +0100 | [diff] [blame] | 1155 | instruction = GetInstructionFromPosition(index + 1); |
Nicolas Geoffray | 8cbab3c | 2015-04-23 15:14:36 +0100 | [diff] [blame] | 1156 | } |
| 1157 | return instruction->GetBlock(); |
| 1158 | } |
| 1159 | |
Nicolas Geoffray | fbda5f3 | 2015-04-29 14:16:00 +0100 | [diff] [blame] | 1160 | bool IsAtBlockBoundary(size_t index) const { |
| 1161 | return GetInstructionFromPosition(index) == nullptr; |
| 1162 | } |
| 1163 | |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 1164 | HInstruction* GetTempUser(LiveInterval* temp) const { |
| 1165 | // A temporary shares the same lifetime start as the instruction that requires it. |
| 1166 | DCHECK(temp->IsTemp()); |
Nicolas Geoffray | f01d344 | 2015-03-27 17:15:49 +0000 | [diff] [blame] | 1167 | HInstruction* user = GetInstructionFromPosition(temp->GetStart() / 2); |
| 1168 | DCHECK_EQ(user, temp->GetFirstUse()->GetUser()); |
| 1169 | return user; |
| 1170 | } |
| 1171 | |
| 1172 | size_t GetTempIndex(LiveInterval* temp) const { |
| 1173 | // We use the input index to store the index of the temporary in the user's temporary list. |
| 1174 | DCHECK(temp->IsTemp()); |
| 1175 | return temp->GetFirstUse()->GetInputIndex(); |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 1176 | } |
| 1177 | |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1178 | size_t GetMaxLifetimePosition() const { |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1179 | return instructions_from_lifetime_position_.size() * 2 - 1; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1180 | } |
| 1181 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1182 | size_t GetNumberOfSsaValues() const { |
| 1183 | return number_of_ssa_values_; |
| 1184 | } |
| 1185 | |
Andreas Gampe | 7c3952f | 2015-02-19 18:21:24 -0800 | [diff] [blame] | 1186 | static constexpr const char* kLivenessPassName = "liveness"; |
| 1187 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1188 | private: |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 1189 | // Give an SSA number to each instruction that defines a value used by another instruction, |
| 1190 | // and setup the lifetime information of each instruction and block. |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1191 | void NumberInstructions(); |
| 1192 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 1193 | // Compute live ranges of instructions, as well as live_in, live_out and kill sets. |
| 1194 | void ComputeLiveness(); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1195 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 1196 | // Compute the live ranges of instructions, as well as the initial live_in, live_out and |
| 1197 | // kill sets, that do not take into account backward branches. |
| 1198 | void ComputeLiveRanges(); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1199 | |
| 1200 | // After computing the initial sets, this method does a fixed point |
| 1201 | // calculation over the live_in and live_out set to take into account |
| 1202 | // backwards branches. |
| 1203 | void ComputeLiveInAndLiveOutSets(); |
| 1204 | |
| 1205 | // Update the live_in set of the block and returns whether it has changed. |
| 1206 | bool UpdateLiveIn(const HBasicBlock& block); |
| 1207 | |
| 1208 | // Update the live_out set of the block and returns whether it has changed. |
| 1209 | bool UpdateLiveOut(const HBasicBlock& block); |
| 1210 | |
Mingyao Yang | 718493c | 2015-07-22 15:56:34 -0700 | [diff] [blame] | 1211 | // Returns whether `instruction` in an HEnvironment held by `env_holder` |
| 1212 | // should be kept live by the HEnvironment. |
| 1213 | static bool ShouldBeLiveForEnvironment(HInstruction* env_holder, |
| 1214 | HInstruction* instruction) { |
Nicolas Geoffray | 915b9d0 | 2015-03-11 15:11:19 +0000 | [diff] [blame] | 1215 | if (instruction == nullptr) return false; |
Mingyao Yang | 718493c | 2015-07-22 15:56:34 -0700 | [diff] [blame] | 1216 | // A value that's not live in compiled code may still be needed in interpreter, |
| 1217 | // due to code motion, etc. |
| 1218 | if (env_holder->IsDeoptimize()) return true; |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 1219 | // A value live at a throwing instruction in a try block may be copied by |
| 1220 | // the exception handler to its location at the top of the catch block. |
| 1221 | if (env_holder->CanThrowIntoCatchBlock()) return true; |
Nicolas Geoffray | 915b9d0 | 2015-03-11 15:11:19 +0000 | [diff] [blame] | 1222 | if (instruction->GetBlock()->GetGraph()->IsDebuggable()) return true; |
| 1223 | return instruction->GetType() == Primitive::kPrimNot; |
| 1224 | } |
| 1225 | |
Nicolas Geoffray | d7c2fdc | 2016-05-10 14:35:34 +0100 | [diff] [blame] | 1226 | void CheckNoLiveInIrreducibleLoop(const HBasicBlock& block) const { |
| 1227 | if (!block.IsLoopHeader() || !block.GetLoopInformation()->IsIrreducible()) { |
| 1228 | return; |
| 1229 | } |
| 1230 | BitVector* live_in = GetLiveInSet(block); |
| 1231 | // To satisfy our liveness algorithm, we need to ensure loop headers of |
| 1232 | // irreducible loops do not have any live-in instructions, except constants |
| 1233 | // and the current method, which can be trivially re-materialized. |
| 1234 | for (uint32_t idx : live_in->Indexes()) { |
| 1235 | HInstruction* instruction = GetInstructionFromSsaIndex(idx); |
| 1236 | DCHECK(instruction->GetBlock()->IsEntryBlock()) << instruction->DebugName(); |
| 1237 | DCHECK(!instruction->IsParameterValue()); |
| 1238 | DCHECK(instruction->IsCurrentMethod() || instruction->IsConstant()) |
| 1239 | << instruction->DebugName(); |
| 1240 | } |
| 1241 | } |
| 1242 | |
Nicolas Geoffray | 0d9f17d | 2015-04-15 14:17:44 +0100 | [diff] [blame] | 1243 | HGraph* const graph_; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1244 | CodeGenerator* const codegen_; |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1245 | ArenaVector<BlockInfo*> block_infos_; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1246 | |
| 1247 | // Temporary array used when computing live_in, live_out, and kill sets. |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1248 | ArenaVector<HInstruction*> instructions_from_ssa_index_; |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 1249 | |
| 1250 | // Temporary array used when inserting moves in the graph. |
Vladimir Marko | 2aaa4b5 | 2015-09-17 17:03:26 +0100 | [diff] [blame] | 1251 | ArenaVector<HInstruction*> instructions_from_lifetime_position_; |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1252 | size_t number_of_ssa_values_; |
| 1253 | |
Nicolas Geoffray | 8cbab3c | 2015-04-23 15:14:36 +0100 | [diff] [blame] | 1254 | ART_FRIEND_TEST(RegisterAllocatorTest, SpillInactive); |
Nicolas Geoffray | 23a8188 | 2015-06-01 18:12:38 +0100 | [diff] [blame] | 1255 | ART_FRIEND_TEST(RegisterAllocatorTest, FreeUntil); |
Nicolas Geoffray | 8cbab3c | 2015-04-23 15:14:36 +0100 | [diff] [blame] | 1256 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1257 | DISALLOW_COPY_AND_ASSIGN(SsaLivenessAnalysis); |
| 1258 | }; |
| 1259 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1260 | } // namespace art |
| 1261 | |
| 1262 | #endif // ART_COMPILER_OPTIMIZING_SSA_LIVENESS_ANALYSIS_H_ |