blob: 9ff2f205d8b417c97b09d673abf61fc17dc88f5d [file] [log] [blame]
Nicolas Geoffray804d0932014-05-02 08:46:00 +01001/*
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 Geoffray829280c2015-01-28 10:20:37 +000021#include <iostream>
Nicolas Geoffray804d0932014-05-02 08:46:00 +010022
23namespace art {
24
Nicolas Geoffray31d76b42014-06-09 15:02:22 +010025class CodeGenerator;
26
Nicolas Geoffray01ef3452014-10-01 11:32:17 +010027static constexpr int kNoRegister = -1;
28
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070029class BlockInfo : public ArenaObject<kArenaAllocMisc> {
Nicolas Geoffray804d0932014-05-02 08:46:00 +010030 public:
31 BlockInfo(ArenaAllocator* allocator, const HBasicBlock& block, size_t number_of_ssa_values)
32 : block_(block),
33 live_in_(allocator, number_of_ssa_values, false),
34 live_out_(allocator, number_of_ssa_values, false),
35 kill_(allocator, number_of_ssa_values, false) {
Ian Rogerscf7f1912014-10-22 22:06:39 -070036 UNUSED(block_);
Nicolas Geoffray804d0932014-05-02 08:46:00 +010037 live_in_.ClearAllBits();
38 live_out_.ClearAllBits();
39 kill_.ClearAllBits();
40 }
41
42 private:
43 const HBasicBlock& block_;
44 ArenaBitVector live_in_;
45 ArenaBitVector live_out_;
46 ArenaBitVector kill_;
47
48 friend class SsaLivenessAnalysis;
49
50 DISALLOW_COPY_AND_ASSIGN(BlockInfo);
51};
52
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +010053/**
Nicolas Geoffray39468442014-09-02 15:17:15 +010054 * A live range contains the start and end of a range where an instruction or a temporary
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +010055 * is live.
56 */
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070057class LiveRange FINAL : public ArenaObject<kArenaAllocMisc> {
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +010058 public:
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010059 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) {
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +010060 DCHECK_LT(start, end);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010061 DCHECK(next_ == nullptr || next_->GetStart() > GetEnd());
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +010062 }
63
64 size_t GetStart() const { return start_; }
65 size_t GetEnd() const { return end_; }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010066 LiveRange* GetNext() const { return next_; }
67
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070068 bool IntersectsWith(const LiveRange& other) const {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010069 return (start_ >= other.start_ && start_ < other.end_)
70 || (other.start_ >= start_ && other.start_ < end_);
71 }
72
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070073 bool IsBefore(const LiveRange& other) const {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010074 return end_ <= other.start_;
75 }
76
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070077 void Dump(std::ostream& stream) const {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010078 stream << "[" << start_ << ", " << end_ << ")";
79 }
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +010080
Nicolas Geoffray840e5462015-01-07 16:01:24 +000081 LiveRange* Dup(ArenaAllocator* allocator) const {
82 return new (allocator) LiveRange(
83 start_, end_, next_ == nullptr ? nullptr : next_->Dup(allocator));
84 }
85
86 LiveRange* GetLastRange() {
87 return next_ == nullptr ? this : next_->GetLastRange();
88 }
89
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +010090 private:
91 size_t start_;
Nicolas Geoffray76905622014-09-25 14:39:26 +010092 size_t end_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010093 LiveRange* next_;
94
95 friend class LiveInterval;
96
97 DISALLOW_COPY_AND_ASSIGN(LiveRange);
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +010098};
99
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100100/**
101 * A use position represents a live interval use at a given position.
102 */
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700103class UsePosition : public ArenaObject<kArenaAllocMisc> {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100104 public:
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100105 UsePosition(HInstruction* user,
106 size_t input_index,
107 bool is_environment,
108 size_t position,
109 UsePosition* next)
110 : user_(user),
111 input_index_(input_index),
112 is_environment_(is_environment),
113 position_(position),
114 next_(next) {
Nicolas Geoffray76905622014-09-25 14:39:26 +0100115 DCHECK(user->IsPhi()
116 || (GetPosition() == user->GetLifetimePosition() + 1)
117 || (GetPosition() == user->GetLifetimePosition()));
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100118 DCHECK(next_ == nullptr || next->GetPosition() >= GetPosition());
119 }
120
121 size_t GetPosition() const { return position_; }
122
123 UsePosition* GetNext() const { return next_; }
Nicolas Geoffray76905622014-09-25 14:39:26 +0100124 void SetNext(UsePosition* next) { next_ = next; }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100125
126 HInstruction* GetUser() const { return user_; }
127
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100128 bool GetIsEnvironment() const { return is_environment_; }
129
130 size_t GetInputIndex() const { return input_index_; }
131
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +0100132 void Dump(std::ostream& stream) const {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100133 stream << position_;
134 }
135
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000136 UsePosition* Dup(ArenaAllocator* allocator) const {
137 return new (allocator) UsePosition(
138 user_, input_index_, is_environment_, position_,
139 next_ == nullptr ? nullptr : next_->Dup(allocator));
140 }
141
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100142 private:
143 HInstruction* const user_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100144 const size_t input_index_;
145 const bool is_environment_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100146 const size_t position_;
Nicolas Geoffray76905622014-09-25 14:39:26 +0100147 UsePosition* next_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100148
149 DISALLOW_COPY_AND_ASSIGN(UsePosition);
150};
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100151
152/**
153 * An interval is a list of disjoint live ranges where an instruction is live.
154 * Each instruction that has uses gets an interval.
155 */
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700156class LiveInterval : public ArenaObject<kArenaAllocMisc> {
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100157 public:
Mingyao Yang296bd602014-10-06 16:47:28 -0700158 static LiveInterval* MakeInterval(ArenaAllocator* allocator,
159 Primitive::Type type,
160 HInstruction* instruction = nullptr) {
161 return new (allocator) LiveInterval(allocator, type, instruction);
162 }
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100163
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100164 static LiveInterval* MakeSlowPathInterval(ArenaAllocator* allocator, HInstruction* instruction) {
165 return new (allocator) LiveInterval(
166 allocator, Primitive::kPrimVoid, instruction, false, kNoRegister, false, true);
167 }
168
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100169 static LiveInterval* MakeFixedInterval(ArenaAllocator* allocator, int reg, Primitive::Type type) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100170 return new (allocator) LiveInterval(allocator, type, nullptr, true, reg, false);
171 }
172
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100173 static LiveInterval* MakeTempInterval(ArenaAllocator* allocator, Primitive::Type type) {
174 return new (allocator) LiveInterval(allocator, type, nullptr, false, kNoRegister, true);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100175 }
176
177 bool IsFixed() const { return is_fixed_; }
Mingyao Yang296bd602014-10-06 16:47:28 -0700178 bool IsTemp() const { return is_temp_; }
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100179 bool IsSlowPathSafepoint() const { return is_slow_path_safepoint_; }
Mingyao Yang296bd602014-10-06 16:47:28 -0700180 // This interval is the result of a split.
181 bool IsSplit() const { return parent_ != this; }
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100182
183 void AddUse(HInstruction* instruction, size_t input_index, bool is_environment) {
184 // Set the use within the instruction.
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000185 size_t position = instruction->GetLifetimePosition() + 1;
186 LocationSummary* locations = instruction->GetLocations();
187 if (!is_environment) {
188 if (locations->IsFixedInput(input_index) || locations->OutputUsesSameAs(input_index)) {
189 // For fixed inputs and output same as input, the register allocator
190 // requires to have inputs die at the instruction, so that input moves use the
191 // location of the input just before that instruction (and not potential moves due
192 // to splitting).
193 position = instruction->GetLifetimePosition();
194 }
Nicolas Geoffray76905622014-09-25 14:39:26 +0100195 }
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000196
197 DCHECK(position == instruction->GetLifetimePosition()
198 || position == instruction->GetLifetimePosition() + 1);
199
Nicolas Geoffray76905622014-09-25 14:39:26 +0100200 if ((first_use_ != nullptr)
201 && (first_use_->GetUser() == instruction)
202 && (first_use_->GetPosition() < position)) {
203 // The user uses the instruction multiple times, and one use dies before the other.
204 // We update the use list so that the latter is first.
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100205 UsePosition* cursor = first_use_;
206 while ((cursor->GetNext() != nullptr) && (cursor->GetNext()->GetPosition() < position)) {
207 cursor = cursor->GetNext();
208 }
Nicolas Geoffray76905622014-09-25 14:39:26 +0100209 DCHECK(first_use_->GetPosition() + 1 == position);
210 UsePosition* new_use = new (allocator_) UsePosition(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100211 instruction, input_index, is_environment, position, cursor->GetNext());
212 cursor->SetNext(new_use);
Nicolas Geoffray76905622014-09-25 14:39:26 +0100213 if (first_range_->GetEnd() == first_use_->GetPosition()) {
214 first_range_->end_ = position;
215 }
216 return;
217 }
218
Nicolas Geoffray8ddb00c2014-09-29 12:00:40 +0100219 size_t start_block_position = instruction->GetBlock()->GetLifetimeStart();
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100220 if (first_range_ == nullptr) {
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100221 // First time we see a use of that interval.
Nicolas Geoffray8ddb00c2014-09-29 12:00:40 +0100222 first_range_ = last_range_ = new (allocator_) LiveRange(
223 start_block_position, position, nullptr);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100224 } else if (first_range_->GetStart() == start_block_position) {
Nicolas Geoffray8ddb00c2014-09-29 12:00:40 +0100225 // There is a use later in the same block or in a following block.
226 // Note that in such a case, `AddRange` for the whole blocks has been called
227 // before arriving in this method, and this is the reason the start of
228 // `first_range_` is before the given `position`.
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100229 DCHECK_LE(position, first_range_->GetEnd());
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100230 } else {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100231 DCHECK(first_range_->GetStart() > position);
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100232 // There is a hole in the interval. Create a new range.
Nicolas Geoffray8ddb00c2014-09-29 12:00:40 +0100233 // Note that the start of `first_range_` can be equal to `end`: two blocks
234 // having adjacent lifetime positions are not necessarily
235 // predecessor/successor. When two blocks are predecessor/successor, the
236 // liveness algorithm has called `AddRange` before arriving in this method,
237 // and the check line 205 would succeed.
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100238 first_range_ = new (allocator_) LiveRange(start_block_position, position, first_range_);
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100239 }
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100240 first_use_ = new (allocator_) UsePosition(
241 instruction, input_index, is_environment, position, first_use_);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100242 }
243
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100244 void AddPhiUse(HInstruction* instruction, size_t input_index, HBasicBlock* block) {
Nicolas Geoffray76905622014-09-25 14:39:26 +0100245 DCHECK(instruction->IsPhi());
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100246 first_use_ = new (allocator_) UsePosition(
247 instruction, input_index, false, block->GetLifetimeEnd(), first_use_);
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100248 }
249
250 void AddRange(size_t start, size_t end) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100251 if (first_range_ == nullptr) {
252 first_range_ = last_range_ = new (allocator_) LiveRange(start, end, first_range_);
253 } else if (first_range_->GetStart() == end) {
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100254 // There is a use in the following block.
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100255 first_range_->start_ = start;
Nicolas Geoffray39468442014-09-02 15:17:15 +0100256 } else if (first_range_->GetStart() == start && first_range_->GetEnd() == end) {
257 DCHECK(is_fixed_);
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100258 } else {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100259 DCHECK_GT(first_range_->GetStart(), end);
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100260 // There is a hole in the interval. Create a new range.
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100261 first_range_ = new (allocator_) LiveRange(start, end, first_range_);
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100262 }
263 }
264
265 void AddLoopRange(size_t start, size_t end) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100266 DCHECK(first_range_ != nullptr);
Nicolas Geoffrayaedc3282015-01-23 18:01:51 +0000267 DCHECK_LE(start, first_range_->GetStart());
268 // Find the range that covers the positions after the loop.
269 LiveRange* after_loop = first_range_;
270 LiveRange* last_in_loop = nullptr;
271 while (after_loop != nullptr && after_loop->GetEnd() < end) {
272 DCHECK_LE(start, after_loop->GetStart());
273 last_in_loop = after_loop;
274 after_loop = after_loop->GetNext();
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100275 }
Nicolas Geoffrayaedc3282015-01-23 18:01:51 +0000276 if (after_loop == nullptr) {
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100277 // Uses are only in the loop.
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100278 first_range_ = last_range_ = new (allocator_) LiveRange(start, end, nullptr);
Nicolas Geoffrayaedc3282015-01-23 18:01:51 +0000279 } else if (after_loop->GetStart() <= end) {
280 first_range_ = after_loop;
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100281 // There are uses after the loop.
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100282 first_range_->start_ = start;
Nicolas Geoffrayaedc3282015-01-23 18:01:51 +0000283 } else {
284 // The use after the loop is after a lifetime hole.
285 DCHECK(last_in_loop != nullptr);
286 first_range_ = last_in_loop;
287 first_range_->start_ = start;
288 first_range_->end_ = end;
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100289 }
290 }
291
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100292 bool HasSpillSlot() const { return spill_slot_ != kNoSpillSlot; }
Nicolas Geoffray39468442014-09-02 15:17:15 +0100293 void SetSpillSlot(int slot) {
294 DCHECK(!is_fixed_);
295 DCHECK(!is_temp_);
296 spill_slot_ = slot;
297 }
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100298 int GetSpillSlot() const { return spill_slot_; }
299
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100300 void SetFrom(size_t from) {
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100301 if (first_range_ != nullptr) {
302 first_range_->start_ = from;
303 } else {
304 // Instruction without uses.
305 DCHECK(!defined_by_->HasUses());
306 DCHECK(from == defined_by_->GetLifetimePosition());
307 first_range_ = last_range_ = new (allocator_) LiveRange(from, from + 2, nullptr);
308 }
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100309 }
310
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100311 LiveInterval* GetParent() const { return parent_; }
312
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100313 LiveRange* GetFirstRange() const { return first_range_; }
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000314 LiveRange* GetLastRange() const { return last_range_; }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100315
316 int GetRegister() const { return register_; }
317 void SetRegister(int reg) { register_ = reg; }
318 void ClearRegister() { register_ = kNoRegister; }
319 bool HasRegister() const { return register_ != kNoRegister; }
320
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100321 bool IsDeadAt(size_t position) const {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100322 return last_range_->GetEnd() <= position;
323 }
324
David Brazdil5b8e6a52015-02-25 16:17:05 +0000325 bool Covers(size_t position) {
326 return !IsDeadAt(position) && FindRangeAt(position) != nullptr;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100327 }
328
329 /**
330 * Returns the first intersection of this interval with `other`.
331 */
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100332 size_t FirstIntersectionWith(LiveInterval* other) const {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100333 // Advance both intervals and find the first matching range start in
334 // this interval.
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100335 LiveRange* my_range = first_range_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100336 LiveRange* other_range = other->first_range_;
337 do {
David Brazdil714e14f2015-02-25 11:57:05 +0000338 if (my_range->IsBefore(*other_range)) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100339 my_range = my_range->GetNext();
340 if (my_range == nullptr) {
341 return kNoLifetime;
342 }
David Brazdil714e14f2015-02-25 11:57:05 +0000343 } else if (other_range->IsBefore(*my_range)) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100344 other_range = other_range->GetNext();
345 if (other_range == nullptr) {
346 return kNoLifetime;
347 }
David Brazdil714e14f2015-02-25 11:57:05 +0000348 } else {
349 DCHECK(my_range->IntersectsWith(*other_range));
350 return std::max(my_range->GetStart(), other_range->GetStart());
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100351 }
352 } while (true);
353 }
354
355 size_t GetStart() const {
356 return first_range_->GetStart();
357 }
358
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100359 size_t GetEnd() const {
360 return last_range_->GetEnd();
361 }
362
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100363 size_t FirstRegisterUseAfter(size_t position) const {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100364 if (is_temp_) {
365 return position == GetStart() ? position : kNoLifetime;
366 }
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100367 if (position == GetStart() && defined_by_ != nullptr) {
Nicolas Geoffrayde025a72014-06-19 17:06:46 +0100368 LocationSummary* locations = defined_by_->GetLocations();
369 Location location = locations->Out();
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100370 // This interval is the first interval of the instruction. If the output
371 // of the instruction requires a register, we return the position of that instruction
372 // as the first register use.
373 if (location.IsUnallocated()) {
374 if ((location.GetPolicy() == Location::kRequiresRegister)
375 || (location.GetPolicy() == Location::kSameAsFirstInput
Nicolas Geoffrayde025a72014-06-19 17:06:46 +0100376 && locations->InAt(0).GetPolicy() == Location::kRequiresRegister)) {
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100377 return position;
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100378 } else if ((location.GetPolicy() == Location::kRequiresFpuRegister)
379 || (location.GetPolicy() == Location::kSameAsFirstInput
380 && locations->InAt(0).GetPolicy() == Location::kRequiresFpuRegister)) {
381 return position;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100382 }
383 }
384 }
385
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100386 UsePosition* use = first_use_;
Nicolas Geoffrayde025a72014-06-19 17:06:46 +0100387 size_t end = GetEnd();
388 while (use != nullptr && use->GetPosition() <= end) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100389 size_t use_position = use->GetPosition();
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +0100390 if (use_position > position && !use->GetIsEnvironment()) {
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100391 Location location = use->GetUser()->GetLocations()->InAt(use->GetInputIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100392 if (location.IsUnallocated()
393 && (location.GetPolicy() == Location::kRequiresRegister
394 || location.GetPolicy() == Location::kRequiresFpuRegister)) {
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +0100395 return use_position;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100396 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100397 }
398 use = use->GetNext();
399 }
400 return kNoLifetime;
401 }
402
403 size_t FirstRegisterUse() const {
404 return FirstRegisterUseAfter(GetStart());
405 }
406
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000407 size_t FirstUseAfter(size_t position) const {
408 if (is_temp_) {
409 return position == GetStart() ? position : kNoLifetime;
410 }
411
412 UsePosition* use = first_use_;
413 size_t end = GetEnd();
414 while (use != nullptr && use->GetPosition() <= end) {
415 size_t use_position = use->GetPosition();
416 if (use_position > position) {
417 return use_position;
418 }
419 use = use->GetNext();
420 }
421 return kNoLifetime;
422 }
423
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100424 UsePosition* GetFirstUse() const {
425 return first_use_;
426 }
427
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100428 Primitive::Type GetType() const {
429 return type_;
430 }
431
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100432 HInstruction* GetDefinedBy() const {
433 return defined_by_;
434 }
435
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100436 /**
437 * Split this interval at `position`. This interval is changed to:
438 * [start ... position).
439 *
440 * The new interval covers:
441 * [position ... end)
442 */
443 LiveInterval* SplitAt(size_t position) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100444 DCHECK(!is_temp_);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100445 DCHECK(!is_fixed_);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100446 DCHECK_GT(position, GetStart());
447
448 if (last_range_->GetEnd() <= position) {
449 // This range dies before `position`, no need to split.
450 return nullptr;
451 }
452
453 LiveInterval* new_interval = new (allocator_) LiveInterval(allocator_, type_);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100454 new_interval->next_sibling_ = next_sibling_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100455 next_sibling_ = new_interval;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100456 new_interval->parent_ = parent_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100457
458 new_interval->first_use_ = first_use_;
David Brazdil5b8e6a52015-02-25 16:17:05 +0000459 last_visited_range_ = nullptr;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100460 LiveRange* current = first_range_;
461 LiveRange* previous = nullptr;
462 // Iterate over the ranges, and either find a range that covers this position, or
Nicolas Geoffraydd8f8872015-01-15 15:37:37 +0000463 // two ranges in between this position (that is, the position is in a lifetime hole).
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100464 do {
465 if (position >= current->GetEnd()) {
466 // Move to next range.
467 previous = current;
468 current = current->next_;
469 } else if (position <= current->GetStart()) {
470 // If the previous range did not cover this position, we know position is in
471 // a lifetime hole. We can just break the first_range_ and last_range_ links
472 // and return the new interval.
473 DCHECK(previous != nullptr);
474 DCHECK(current != first_range_);
475 new_interval->last_range_ = last_range_;
476 last_range_ = previous;
477 previous->next_ = nullptr;
478 new_interval->first_range_ = current;
479 return new_interval;
480 } else {
481 // This range covers position. We create a new last_range_ for this interval
482 // that covers last_range_->Start() and position. We also shorten the current
483 // range and make it the first range of the new interval.
484 DCHECK(position < current->GetEnd() && position > current->GetStart());
485 new_interval->last_range_ = last_range_;
486 last_range_ = new (allocator_) LiveRange(current->start_, position, nullptr);
487 if (previous != nullptr) {
488 previous->next_ = last_range_;
489 } else {
490 first_range_ = last_range_;
491 }
492 new_interval->first_range_ = current;
493 current->start_ = position;
494 return new_interval;
495 }
496 } while (current != nullptr);
497
498 LOG(FATAL) << "Unreachable";
499 return nullptr;
500 }
501
Nicolas Geoffray76905622014-09-25 14:39:26 +0100502 bool StartsBeforeOrAt(LiveInterval* other) const {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100503 return GetStart() <= other->GetStart();
504 }
505
506 bool StartsAfter(LiveInterval* other) const {
Nicolas Geoffray76905622014-09-25 14:39:26 +0100507 return GetStart() > other->GetStart();
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100508 }
509
510 void Dump(std::ostream& stream) const {
511 stream << "ranges: { ";
512 LiveRange* current = first_range_;
Nicolas Geoffrayaedc3282015-01-23 18:01:51 +0000513 while (current != nullptr) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100514 current->Dump(stream);
515 stream << " ";
Nicolas Geoffrayaedc3282015-01-23 18:01:51 +0000516 current = current->GetNext();
517 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100518 stream << "}, uses: { ";
519 UsePosition* use = first_use_;
520 if (use != nullptr) {
521 do {
522 use->Dump(stream);
523 stream << " ";
524 } while ((use = use->GetNext()) != nullptr);
525 }
526 stream << "}";
Mingyao Yang296bd602014-10-06 16:47:28 -0700527 stream << " is_fixed: " << is_fixed_ << ", is_split: " << IsSplit();
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000528 stream << " is_high: " << IsHighInterval();
529 stream << " is_low: " << IsLowInterval();
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100530 }
531
532 LiveInterval* GetNextSibling() const { return next_sibling_; }
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000533 LiveInterval* GetLastSibling() {
534 LiveInterval* result = this;
535 while (result->next_sibling_ != nullptr) {
536 result = result->next_sibling_;
537 }
538 return result;
539 }
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100540
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100541 // Returns the first register hint that is at least free before
542 // the value contained in `free_until`. If none is found, returns
543 // `kNoRegister`.
544 int FindFirstRegisterHint(size_t* free_until) const;
545
546 // If there is enough at the definition site to find a register (for example
547 // it uses the same input as the first input), returns the register as a hint.
548 // Returns kNoRegister otherwise.
549 int FindHintAtDefinition() const;
550
551 // Returns whether the interval needs two (Dex virtual register size `kVRegSize`)
552 // slots for spilling.
553 bool NeedsTwoSpillSlots() const;
554
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100555 bool IsFloatingPoint() const {
556 return type_ == Primitive::kPrimFloat || type_ == Primitive::kPrimDouble;
557 }
558
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100559 // Converts the location of the interval to a `Location` object.
560 Location ToLocation() const;
561
562 // Returns the location of the interval following its siblings at `position`.
David Brazdil5b8e6a52015-02-25 16:17:05 +0000563 Location GetLocationAt(size_t position);
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100564
565 // Finds the interval that covers `position`.
David Brazdil5b8e6a52015-02-25 16:17:05 +0000566 const LiveInterval& GetIntervalAt(size_t position);
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100567
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100568 // Returns whether `other` and `this` share the same kind of register.
569 bool SameRegisterKind(Location other) const;
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000570 bool SameRegisterKind(const LiveInterval& other) const {
571 return IsFloatingPoint() == other.IsFloatingPoint();
572 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100573
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000574 bool HasHighInterval() const {
Nicolas Geoffray3747b482015-01-19 17:17:16 +0000575 return IsLowInterval();
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000576 }
577
578 bool HasLowInterval() const {
579 return IsHighInterval();
580 }
581
582 LiveInterval* GetLowInterval() const {
583 DCHECK(HasLowInterval());
584 return high_or_low_interval_;
585 }
586
587 LiveInterval* GetHighInterval() const {
588 DCHECK(HasHighInterval());
589 return high_or_low_interval_;
590 }
591
592 bool IsHighInterval() const {
593 return GetParent()->is_high_interval_;
594 }
595
596 bool IsLowInterval() const {
597 return !IsHighInterval() && (GetParent()->high_or_low_interval_ != nullptr);
598 }
599
600 void SetLowInterval(LiveInterval* low) {
601 DCHECK(IsHighInterval());
602 high_or_low_interval_ = low;
603 }
604
605 void SetHighInterval(LiveInterval* high) {
606 DCHECK(IsLowInterval());
607 high_or_low_interval_ = high;
608 }
609
610 void AddHighInterval(bool is_temp = false) {
611 DCHECK_EQ(GetParent(), this);
612 DCHECK(!HasHighInterval());
613 DCHECK(!HasLowInterval());
614 high_or_low_interval_ = new (allocator_) LiveInterval(
615 allocator_, type_, defined_by_, false, kNoRegister, is_temp, false, true);
616 high_or_low_interval_->high_or_low_interval_ = this;
617 if (first_range_ != nullptr) {
618 high_or_low_interval_->first_range_ = first_range_->Dup(allocator_);
619 high_or_low_interval_->last_range_ = first_range_->GetLastRange();
620 }
621 if (first_use_ != nullptr) {
622 high_or_low_interval_->first_use_ = first_use_->Dup(allocator_);
623 }
624 }
625
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000626 // Returns whether an interval, when it is non-split, is using
627 // the same register of one of its input.
628 bool IsUsingInputRegister() const {
629 if (defined_by_ != nullptr && !IsSplit()) {
630 for (HInputIterator it(defined_by_); !it.Done(); it.Advance()) {
631 LiveInterval* interval = it.Current()->GetLiveInterval();
632
633 // Find the interval that covers `defined_by`_.
634 while (interval != nullptr && !interval->Covers(defined_by_->GetLifetimePosition())) {
635 interval = interval->GetNextSibling();
636 }
637
638 // Check if both intervals have the same register of the same kind.
639 if (interval != nullptr
640 && interval->SameRegisterKind(*this)
641 && interval->GetRegister() == GetRegister()) {
642 return true;
643 }
644 }
645 }
646 return false;
647 }
648
649 // Returns whether an interval, when it is non-split, can safely use
650 // the same register of one of its input. Note that this method requires
651 // IsUsingInputRegister() to be true.
652 bool CanUseInputRegister() const {
653 DCHECK(IsUsingInputRegister());
654 if (defined_by_ != nullptr && !IsSplit()) {
655 LocationSummary* locations = defined_by_->GetLocations();
656 if (locations->OutputCanOverlapWithInputs()) {
657 return false;
658 }
659 for (HInputIterator it(defined_by_); !it.Done(); it.Advance()) {
660 LiveInterval* interval = it.Current()->GetLiveInterval();
661
662 // Find the interval that covers `defined_by`_.
663 while (interval != nullptr && !interval->Covers(defined_by_->GetLifetimePosition())) {
664 interval = interval->GetNextSibling();
665 }
666
667 if (interval != nullptr
668 && interval->SameRegisterKind(*this)
669 && interval->GetRegister() == GetRegister()) {
670 // We found the input that has the same register. Check if it is live after
671 // `defined_by`_.
672 return !interval->Covers(defined_by_->GetLifetimePosition() + 1);
673 }
674 }
675 }
676 LOG(FATAL) << "Unreachable";
677 UNREACHABLE();
678 }
679
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100680 private:
Mingyao Yang296bd602014-10-06 16:47:28 -0700681 LiveInterval(ArenaAllocator* allocator,
682 Primitive::Type type,
683 HInstruction* defined_by = nullptr,
684 bool is_fixed = false,
685 int reg = kNoRegister,
686 bool is_temp = false,
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000687 bool is_slow_path_safepoint = false,
688 bool is_high_interval = false)
Mingyao Yang296bd602014-10-06 16:47:28 -0700689 : allocator_(allocator),
690 first_range_(nullptr),
691 last_range_(nullptr),
David Brazdil5b8e6a52015-02-25 16:17:05 +0000692 last_visited_range_(nullptr),
Mingyao Yang296bd602014-10-06 16:47:28 -0700693 first_use_(nullptr),
694 type_(type),
695 next_sibling_(nullptr),
696 parent_(this),
697 register_(reg),
698 spill_slot_(kNoSpillSlot),
699 is_fixed_(is_fixed),
700 is_temp_(is_temp),
701 is_slow_path_safepoint_(is_slow_path_safepoint),
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000702 is_high_interval_(is_high_interval),
703 high_or_low_interval_(nullptr),
Mingyao Yang296bd602014-10-06 16:47:28 -0700704 defined_by_(defined_by) {}
705
David Brazdil5b8e6a52015-02-25 16:17:05 +0000706 // Returns a LiveRange covering the given position or nullptr if no such range
707 // exists in the interval.
708 // This is a linear search optimized for multiple queries in a non-decreasing
709 // position order typical for linear scan register allocation.
710 LiveRange* FindRangeAt(size_t position) {
711 // Make sure operations on the interval didn't leave us with a cached result
712 // from a sibling.
713 if (kIsDebugBuild) {
714 if (last_visited_range_ != nullptr) {
715 DCHECK_GE(last_visited_range_->GetStart(), GetStart());
716 DCHECK_LE(last_visited_range_->GetEnd(), GetEnd());
717 }
718 }
719
720 // If this method was called earlier on a lower position, use that result as
721 // a starting point to save time. However, linear scan performs 3 scans:
722 // integers, floats, and resolution. Instead of resetting at the beginning
723 // of a scan, we do it here.
724 LiveRange* current;
725 if (last_visited_range_ != nullptr && position >= last_visited_range_->GetStart()) {
726 current = last_visited_range_;
727 } else {
728 current = first_range_;
729 }
730 while (current != nullptr && current->GetEnd() <= position) {
731 current = current->GetNext();
732 }
733 last_visited_range_ = current;
734 if (current != nullptr && position >= current->GetStart()) {
735 return current;
736 } else {
737 return nullptr;
738 }
739 }
740
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100741 ArenaAllocator* const allocator_;
742
743 // Ranges of this interval. We need a quick access to the last range to test
744 // for liveness (see `IsDeadAt`).
745 LiveRange* first_range_;
746 LiveRange* last_range_;
747
David Brazdil5b8e6a52015-02-25 16:17:05 +0000748 // Last visited range. This is a range search optimization leveraging the fact
749 // that the register allocator does a linear scan through the intervals.
750 LiveRange* last_visited_range_;
751
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100752 // Uses of this interval. Note that this linked list is shared amongst siblings.
753 UsePosition* first_use_;
754
755 // The instruction type this interval corresponds to.
756 const Primitive::Type type_;
757
758 // Live interval that is the result of a split.
759 LiveInterval* next_sibling_;
760
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100761 // The first interval from which split intervals come from.
762 LiveInterval* parent_;
763
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100764 // The register allocated to this interval.
765 int register_;
766
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100767 // The spill slot allocated to this interval.
768 int spill_slot_;
769
770 // Whether the interval is for a fixed register.
Nicolas Geoffray39468442014-09-02 15:17:15 +0100771 const bool is_fixed_;
772
773 // Whether the interval is for a temporary.
774 const bool is_temp_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100775
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100776 // Whether the interval is for a safepoint that calls on slow path.
777 const bool is_slow_path_safepoint_;
778
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000779 // Whether this interval is a synthesized interval for register pair.
780 const bool is_high_interval_;
781
782 // If this interval needs a register pair, the high or low equivalent.
783 // `is_high_interval_` tells whether this holds the low or the high.
784 LiveInterval* high_or_low_interval_;
785
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100786 // The instruction represented by this interval.
787 HInstruction* const defined_by_;
788
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100789 static constexpr int kNoRegister = -1;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100790 static constexpr int kNoSpillSlot = -1;
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100791
Nicolas Geoffraydd8f8872015-01-15 15:37:37 +0000792 ART_FRIEND_TEST(RegisterAllocatorTest, SpillInactive);
793
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100794 DISALLOW_COPY_AND_ASSIGN(LiveInterval);
795};
796
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100797class SsaLivenessAnalysis : public ValueObject {
798 public:
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100799 SsaLivenessAnalysis(const HGraph& graph, CodeGenerator* codegen)
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100800 : graph_(graph),
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100801 codegen_(codegen),
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000802 linear_order_(graph.GetArena(), graph.GetBlocks().Size()),
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100803 block_infos_(graph.GetArena(), graph.GetBlocks().Size()),
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100804 instructions_from_ssa_index_(graph.GetArena(), 0),
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100805 instructions_from_lifetime_position_(graph.GetArena(), 0),
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100806 number_of_ssa_values_(0) {
807 block_infos_.SetSize(graph.GetBlocks().Size());
808 }
809
810 void Analyze();
811
812 BitVector* GetLiveInSet(const HBasicBlock& block) const {
813 return &block_infos_.Get(block.GetBlockId())->live_in_;
814 }
815
816 BitVector* GetLiveOutSet(const HBasicBlock& block) const {
817 return &block_infos_.Get(block.GetBlockId())->live_out_;
818 }
819
820 BitVector* GetKillSet(const HBasicBlock& block) const {
821 return &block_infos_.Get(block.GetBlockId())->kill_;
822 }
823
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000824 const GrowableArray<HBasicBlock*>& GetLinearOrder() const {
825 return linear_order_;
Nicolas Geoffray0d3f5782014-05-14 09:43:38 +0100826 }
827
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100828 HInstruction* GetInstructionFromSsaIndex(size_t index) const {
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100829 return instructions_from_ssa_index_.Get(index);
830 }
831
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100832 HInstruction* GetInstructionFromPosition(size_t index) const {
833 return instructions_from_lifetime_position_.Get(index);
834 }
835
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100836 HInstruction* GetTempUser(LiveInterval* temp) const {
837 // A temporary shares the same lifetime start as the instruction that requires it.
838 DCHECK(temp->IsTemp());
839 return GetInstructionFromPosition(temp->GetStart() / 2);
840 }
841
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100842 size_t GetMaxLifetimePosition() const {
843 return instructions_from_lifetime_position_.Size() * 2 - 1;
844 }
845
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100846 size_t GetNumberOfSsaValues() const {
847 return number_of_ssa_values_;
848 }
849
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800850 static constexpr const char* kLivenessPassName = "liveness";
851
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100852 private:
Nicolas Geoffray0d3f5782014-05-14 09:43:38 +0100853 // Linearize the graph so that:
854 // (1): a block is always after its dominator,
855 // (2): blocks of loops are contiguous.
856 // This creates a natural and efficient ordering when visualizing live ranges.
857 void LinearizeGraph();
858
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100859 // Give an SSA number to each instruction that defines a value used by another instruction,
860 // and setup the lifetime information of each instruction and block.
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100861 void NumberInstructions();
862
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100863 // Compute live ranges of instructions, as well as live_in, live_out and kill sets.
864 void ComputeLiveness();
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100865
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100866 // Compute the live ranges of instructions, as well as the initial live_in, live_out and
867 // kill sets, that do not take into account backward branches.
868 void ComputeLiveRanges();
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100869
870 // After computing the initial sets, this method does a fixed point
871 // calculation over the live_in and live_out set to take into account
872 // backwards branches.
873 void ComputeLiveInAndLiveOutSets();
874
875 // Update the live_in set of the block and returns whether it has changed.
876 bool UpdateLiveIn(const HBasicBlock& block);
877
878 // Update the live_out set of the block and returns whether it has changed.
879 bool UpdateLiveOut(const HBasicBlock& block);
880
881 const HGraph& graph_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100882 CodeGenerator* const codegen_;
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000883 GrowableArray<HBasicBlock*> linear_order_;
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100884 GrowableArray<BlockInfo*> block_infos_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100885
886 // Temporary array used when computing live_in, live_out, and kill sets.
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100887 GrowableArray<HInstruction*> instructions_from_ssa_index_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100888
889 // Temporary array used when inserting moves in the graph.
890 GrowableArray<HInstruction*> instructions_from_lifetime_position_;
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100891 size_t number_of_ssa_values_;
892
893 DISALLOW_COPY_AND_ASSIGN(SsaLivenessAnalysis);
894};
895
Nicolas Geoffraye50fa582014-11-24 17:44:15 +0000896class HLinearPostOrderIterator : public ValueObject {
897 public:
898 explicit HLinearPostOrderIterator(const SsaLivenessAnalysis& liveness)
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000899 : order_(liveness.GetLinearOrder()), index_(liveness.GetLinearOrder().Size()) {}
Nicolas Geoffraye50fa582014-11-24 17:44:15 +0000900
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000901 bool Done() const { return index_ == 0; }
902
903 HBasicBlock* Current() const { return order_.Get(index_ -1); }
904
905 void Advance() {
906 --index_;
907 DCHECK_GE(index_, 0U);
908 }
Nicolas Geoffraye50fa582014-11-24 17:44:15 +0000909
910 private:
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000911 const GrowableArray<HBasicBlock*>& order_;
Nicolas Geoffraye50fa582014-11-24 17:44:15 +0000912 size_t index_;
913
914 DISALLOW_COPY_AND_ASSIGN(HLinearPostOrderIterator);
915};
916
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000917class HLinearOrderIterator : public ValueObject {
918 public:
919 explicit HLinearOrderIterator(const SsaLivenessAnalysis& liveness)
920 : order_(liveness.GetLinearOrder()), index_(0) {}
921
922 bool Done() const { return index_ == order_.Size(); }
923 HBasicBlock* Current() const { return order_.Get(index_); }
924 void Advance() { ++index_; }
925
926 private:
927 const GrowableArray<HBasicBlock*>& order_;
928 size_t index_;
929
930 DISALLOW_COPY_AND_ASSIGN(HLinearOrderIterator);
931};
932
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100933} // namespace art
934
935#endif // ART_COMPILER_OPTIMIZING_SSA_LIVENESS_ANALYSIS_H_