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