blob: 5787f0cc4ed9b74fa83e4c4a22cffca450bff0b3 [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 Geoffray234d69d2015-03-09 10:28:50 +0000376 && (locations->InAt(0).IsRegister()
377 || locations->InAt(0).IsRegisterPair()
378 || locations->InAt(0).GetPolicy() == Location::kRequiresRegister))) {
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100379 return position;
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100380 } else if ((location.GetPolicy() == Location::kRequiresFpuRegister)
381 || (location.GetPolicy() == Location::kSameAsFirstInput
382 && locations->InAt(0).GetPolicy() == Location::kRequiresFpuRegister)) {
383 return position;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100384 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000385 } else if (location.IsRegister() || location.IsRegisterPair()) {
386 return position;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100387 }
388 }
389
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100390 UsePosition* use = first_use_;
Nicolas Geoffrayde025a72014-06-19 17:06:46 +0100391 size_t end = GetEnd();
392 while (use != nullptr && use->GetPosition() <= end) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100393 size_t use_position = use->GetPosition();
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +0100394 if (use_position > position && !use->GetIsEnvironment()) {
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100395 Location location = use->GetUser()->GetLocations()->InAt(use->GetInputIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100396 if (location.IsUnallocated()
397 && (location.GetPolicy() == Location::kRequiresRegister
398 || location.GetPolicy() == Location::kRequiresFpuRegister)) {
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +0100399 return use_position;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100400 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100401 }
402 use = use->GetNext();
403 }
404 return kNoLifetime;
405 }
406
407 size_t FirstRegisterUse() const {
408 return FirstRegisterUseAfter(GetStart());
409 }
410
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000411 size_t FirstUseAfter(size_t position) const {
412 if (is_temp_) {
413 return position == GetStart() ? position : kNoLifetime;
414 }
415
416 UsePosition* use = first_use_;
417 size_t end = GetEnd();
418 while (use != nullptr && use->GetPosition() <= end) {
419 size_t use_position = use->GetPosition();
420 if (use_position > position) {
421 return use_position;
422 }
423 use = use->GetNext();
424 }
425 return kNoLifetime;
426 }
427
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100428 UsePosition* GetFirstUse() const {
429 return first_use_;
430 }
431
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100432 Primitive::Type GetType() const {
433 return type_;
434 }
435
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100436 HInstruction* GetDefinedBy() const {
437 return defined_by_;
438 }
439
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100440 /**
441 * Split this interval at `position`. This interval is changed to:
442 * [start ... position).
443 *
444 * The new interval covers:
445 * [position ... end)
446 */
447 LiveInterval* SplitAt(size_t position) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100448 DCHECK(!is_temp_);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100449 DCHECK(!is_fixed_);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100450 DCHECK_GT(position, GetStart());
451
452 if (last_range_->GetEnd() <= position) {
453 // This range dies before `position`, no need to split.
454 return nullptr;
455 }
456
457 LiveInterval* new_interval = new (allocator_) LiveInterval(allocator_, type_);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100458 new_interval->next_sibling_ = next_sibling_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100459 next_sibling_ = new_interval;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100460 new_interval->parent_ = parent_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100461
462 new_interval->first_use_ = first_use_;
David Brazdil5b8e6a52015-02-25 16:17:05 +0000463 last_visited_range_ = nullptr;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100464 LiveRange* current = first_range_;
465 LiveRange* previous = nullptr;
466 // Iterate over the ranges, and either find a range that covers this position, or
Nicolas Geoffraydd8f8872015-01-15 15:37:37 +0000467 // two ranges in between this position (that is, the position is in a lifetime hole).
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100468 do {
469 if (position >= current->GetEnd()) {
470 // Move to next range.
471 previous = current;
472 current = current->next_;
473 } else if (position <= current->GetStart()) {
474 // If the previous range did not cover this position, we know position is in
475 // a lifetime hole. We can just break the first_range_ and last_range_ links
476 // and return the new interval.
477 DCHECK(previous != nullptr);
478 DCHECK(current != first_range_);
479 new_interval->last_range_ = last_range_;
480 last_range_ = previous;
481 previous->next_ = nullptr;
482 new_interval->first_range_ = current;
483 return new_interval;
484 } else {
485 // This range covers position. We create a new last_range_ for this interval
486 // that covers last_range_->Start() and position. We also shorten the current
487 // range and make it the first range of the new interval.
488 DCHECK(position < current->GetEnd() && position > current->GetStart());
489 new_interval->last_range_ = last_range_;
490 last_range_ = new (allocator_) LiveRange(current->start_, position, nullptr);
491 if (previous != nullptr) {
492 previous->next_ = last_range_;
493 } else {
494 first_range_ = last_range_;
495 }
496 new_interval->first_range_ = current;
497 current->start_ = position;
498 return new_interval;
499 }
500 } while (current != nullptr);
501
502 LOG(FATAL) << "Unreachable";
503 return nullptr;
504 }
505
Nicolas Geoffray76905622014-09-25 14:39:26 +0100506 bool StartsBeforeOrAt(LiveInterval* other) const {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100507 return GetStart() <= other->GetStart();
508 }
509
510 bool StartsAfter(LiveInterval* other) const {
Nicolas Geoffray76905622014-09-25 14:39:26 +0100511 return GetStart() > other->GetStart();
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100512 }
513
514 void Dump(std::ostream& stream) const {
515 stream << "ranges: { ";
516 LiveRange* current = first_range_;
Nicolas Geoffrayaedc3282015-01-23 18:01:51 +0000517 while (current != nullptr) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100518 current->Dump(stream);
519 stream << " ";
Nicolas Geoffrayaedc3282015-01-23 18:01:51 +0000520 current = current->GetNext();
521 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100522 stream << "}, uses: { ";
523 UsePosition* use = first_use_;
524 if (use != nullptr) {
525 do {
526 use->Dump(stream);
527 stream << " ";
528 } while ((use = use->GetNext()) != nullptr);
529 }
530 stream << "}";
Mingyao Yang296bd602014-10-06 16:47:28 -0700531 stream << " is_fixed: " << is_fixed_ << ", is_split: " << IsSplit();
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000532 stream << " is_high: " << IsHighInterval();
533 stream << " is_low: " << IsLowInterval();
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100534 }
535
536 LiveInterval* GetNextSibling() const { return next_sibling_; }
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000537 LiveInterval* GetLastSibling() {
538 LiveInterval* result = this;
539 while (result->next_sibling_ != nullptr) {
540 result = result->next_sibling_;
541 }
542 return result;
543 }
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100544
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100545 // Returns the first register hint that is at least free before
546 // the value contained in `free_until`. If none is found, returns
547 // `kNoRegister`.
548 int FindFirstRegisterHint(size_t* free_until) const;
549
550 // If there is enough at the definition site to find a register (for example
551 // it uses the same input as the first input), returns the register as a hint.
552 // Returns kNoRegister otherwise.
553 int FindHintAtDefinition() const;
554
555 // Returns whether the interval needs two (Dex virtual register size `kVRegSize`)
556 // slots for spilling.
557 bool NeedsTwoSpillSlots() const;
558
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100559 bool IsFloatingPoint() const {
560 return type_ == Primitive::kPrimFloat || type_ == Primitive::kPrimDouble;
561 }
562
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100563 // Converts the location of the interval to a `Location` object.
564 Location ToLocation() const;
565
566 // Returns the location of the interval following its siblings at `position`.
David Brazdil5b8e6a52015-02-25 16:17:05 +0000567 Location GetLocationAt(size_t position);
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100568
569 // Finds the interval that covers `position`.
David Brazdil5b8e6a52015-02-25 16:17:05 +0000570 const LiveInterval& GetIntervalAt(size_t position);
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100571
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100572 // Returns whether `other` and `this` share the same kind of register.
573 bool SameRegisterKind(Location other) const;
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000574 bool SameRegisterKind(const LiveInterval& other) const {
575 return IsFloatingPoint() == other.IsFloatingPoint();
576 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100577
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000578 bool HasHighInterval() const {
Nicolas Geoffray3747b482015-01-19 17:17:16 +0000579 return IsLowInterval();
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000580 }
581
582 bool HasLowInterval() const {
583 return IsHighInterval();
584 }
585
586 LiveInterval* GetLowInterval() const {
587 DCHECK(HasLowInterval());
588 return high_or_low_interval_;
589 }
590
591 LiveInterval* GetHighInterval() const {
592 DCHECK(HasHighInterval());
593 return high_or_low_interval_;
594 }
595
596 bool IsHighInterval() const {
597 return GetParent()->is_high_interval_;
598 }
599
600 bool IsLowInterval() const {
601 return !IsHighInterval() && (GetParent()->high_or_low_interval_ != nullptr);
602 }
603
604 void SetLowInterval(LiveInterval* low) {
605 DCHECK(IsHighInterval());
606 high_or_low_interval_ = low;
607 }
608
609 void SetHighInterval(LiveInterval* high) {
610 DCHECK(IsLowInterval());
611 high_or_low_interval_ = high;
612 }
613
614 void AddHighInterval(bool is_temp = false) {
615 DCHECK_EQ(GetParent(), this);
616 DCHECK(!HasHighInterval());
617 DCHECK(!HasLowInterval());
618 high_or_low_interval_ = new (allocator_) LiveInterval(
619 allocator_, type_, defined_by_, false, kNoRegister, is_temp, false, true);
620 high_or_low_interval_->high_or_low_interval_ = this;
621 if (first_range_ != nullptr) {
622 high_or_low_interval_->first_range_ = first_range_->Dup(allocator_);
623 high_or_low_interval_->last_range_ = first_range_->GetLastRange();
624 }
625 if (first_use_ != nullptr) {
626 high_or_low_interval_->first_use_ = first_use_->Dup(allocator_);
627 }
628 }
629
Nicolas Geoffray829280c2015-01-28 10:20:37 +0000630 // Returns whether an interval, when it is non-split, is using
631 // the same register of one of its input.
632 bool IsUsingInputRegister() const {
633 if (defined_by_ != nullptr && !IsSplit()) {
634 for (HInputIterator it(defined_by_); !it.Done(); it.Advance()) {
635 LiveInterval* interval = it.Current()->GetLiveInterval();
636
637 // Find the interval that covers `defined_by`_.
638 while (interval != nullptr && !interval->Covers(defined_by_->GetLifetimePosition())) {
639 interval = interval->GetNextSibling();
640 }
641
642 // Check if both intervals have the same register of the same kind.
643 if (interval != nullptr
644 && interval->SameRegisterKind(*this)
645 && interval->GetRegister() == GetRegister()) {
646 return true;
647 }
648 }
649 }
650 return false;
651 }
652
653 // Returns whether an interval, when it is non-split, can safely use
654 // the same register of one of its input. Note that this method requires
655 // IsUsingInputRegister() to be true.
656 bool CanUseInputRegister() const {
657 DCHECK(IsUsingInputRegister());
658 if (defined_by_ != nullptr && !IsSplit()) {
659 LocationSummary* locations = defined_by_->GetLocations();
660 if (locations->OutputCanOverlapWithInputs()) {
661 return false;
662 }
663 for (HInputIterator it(defined_by_); !it.Done(); it.Advance()) {
664 LiveInterval* interval = it.Current()->GetLiveInterval();
665
666 // Find the interval that covers `defined_by`_.
667 while (interval != nullptr && !interval->Covers(defined_by_->GetLifetimePosition())) {
668 interval = interval->GetNextSibling();
669 }
670
671 if (interval != nullptr
672 && interval->SameRegisterKind(*this)
673 && interval->GetRegister() == GetRegister()) {
674 // We found the input that has the same register. Check if it is live after
675 // `defined_by`_.
676 return !interval->Covers(defined_by_->GetLifetimePosition() + 1);
677 }
678 }
679 }
680 LOG(FATAL) << "Unreachable";
681 UNREACHABLE();
682 }
683
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100684 private:
Mingyao Yang296bd602014-10-06 16:47:28 -0700685 LiveInterval(ArenaAllocator* allocator,
686 Primitive::Type type,
687 HInstruction* defined_by = nullptr,
688 bool is_fixed = false,
689 int reg = kNoRegister,
690 bool is_temp = false,
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000691 bool is_slow_path_safepoint = false,
692 bool is_high_interval = false)
Mingyao Yang296bd602014-10-06 16:47:28 -0700693 : allocator_(allocator),
694 first_range_(nullptr),
695 last_range_(nullptr),
David Brazdil5b8e6a52015-02-25 16:17:05 +0000696 last_visited_range_(nullptr),
Mingyao Yang296bd602014-10-06 16:47:28 -0700697 first_use_(nullptr),
698 type_(type),
699 next_sibling_(nullptr),
700 parent_(this),
701 register_(reg),
702 spill_slot_(kNoSpillSlot),
703 is_fixed_(is_fixed),
704 is_temp_(is_temp),
705 is_slow_path_safepoint_(is_slow_path_safepoint),
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000706 is_high_interval_(is_high_interval),
707 high_or_low_interval_(nullptr),
Mingyao Yang296bd602014-10-06 16:47:28 -0700708 defined_by_(defined_by) {}
709
David Brazdil5b8e6a52015-02-25 16:17:05 +0000710 // Returns a LiveRange covering the given position or nullptr if no such range
711 // exists in the interval.
712 // This is a linear search optimized for multiple queries in a non-decreasing
713 // position order typical for linear scan register allocation.
714 LiveRange* FindRangeAt(size_t position) {
715 // Make sure operations on the interval didn't leave us with a cached result
716 // from a sibling.
717 if (kIsDebugBuild) {
718 if (last_visited_range_ != nullptr) {
719 DCHECK_GE(last_visited_range_->GetStart(), GetStart());
720 DCHECK_LE(last_visited_range_->GetEnd(), GetEnd());
721 }
722 }
723
724 // If this method was called earlier on a lower position, use that result as
725 // a starting point to save time. However, linear scan performs 3 scans:
726 // integers, floats, and resolution. Instead of resetting at the beginning
727 // of a scan, we do it here.
728 LiveRange* current;
729 if (last_visited_range_ != nullptr && position >= last_visited_range_->GetStart()) {
730 current = last_visited_range_;
731 } else {
732 current = first_range_;
733 }
734 while (current != nullptr && current->GetEnd() <= position) {
735 current = current->GetNext();
736 }
737 last_visited_range_ = current;
738 if (current != nullptr && position >= current->GetStart()) {
739 return current;
740 } else {
741 return nullptr;
742 }
743 }
744
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100745 ArenaAllocator* const allocator_;
746
747 // Ranges of this interval. We need a quick access to the last range to test
748 // for liveness (see `IsDeadAt`).
749 LiveRange* first_range_;
750 LiveRange* last_range_;
751
David Brazdil5b8e6a52015-02-25 16:17:05 +0000752 // Last visited range. This is a range search optimization leveraging the fact
753 // that the register allocator does a linear scan through the intervals.
754 LiveRange* last_visited_range_;
755
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100756 // Uses of this interval. Note that this linked list is shared amongst siblings.
757 UsePosition* first_use_;
758
759 // The instruction type this interval corresponds to.
760 const Primitive::Type type_;
761
762 // Live interval that is the result of a split.
763 LiveInterval* next_sibling_;
764
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100765 // The first interval from which split intervals come from.
766 LiveInterval* parent_;
767
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100768 // The register allocated to this interval.
769 int register_;
770
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100771 // The spill slot allocated to this interval.
772 int spill_slot_;
773
774 // Whether the interval is for a fixed register.
Nicolas Geoffray39468442014-09-02 15:17:15 +0100775 const bool is_fixed_;
776
777 // Whether the interval is for a temporary.
778 const bool is_temp_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100779
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100780 // Whether the interval is for a safepoint that calls on slow path.
781 const bool is_slow_path_safepoint_;
782
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000783 // Whether this interval is a synthesized interval for register pair.
784 const bool is_high_interval_;
785
786 // If this interval needs a register pair, the high or low equivalent.
787 // `is_high_interval_` tells whether this holds the low or the high.
788 LiveInterval* high_or_low_interval_;
789
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100790 // The instruction represented by this interval.
791 HInstruction* const defined_by_;
792
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100793 static constexpr int kNoRegister = -1;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100794 static constexpr int kNoSpillSlot = -1;
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100795
Nicolas Geoffraydd8f8872015-01-15 15:37:37 +0000796 ART_FRIEND_TEST(RegisterAllocatorTest, SpillInactive);
797
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100798 DISALLOW_COPY_AND_ASSIGN(LiveInterval);
799};
800
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100801class SsaLivenessAnalysis : public ValueObject {
802 public:
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100803 SsaLivenessAnalysis(const HGraph& graph, CodeGenerator* codegen)
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100804 : graph_(graph),
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100805 codegen_(codegen),
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000806 linear_order_(graph.GetArena(), graph.GetBlocks().Size()),
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100807 block_infos_(graph.GetArena(), graph.GetBlocks().Size()),
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100808 instructions_from_ssa_index_(graph.GetArena(), 0),
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100809 instructions_from_lifetime_position_(graph.GetArena(), 0),
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100810 number_of_ssa_values_(0) {
811 block_infos_.SetSize(graph.GetBlocks().Size());
812 }
813
814 void Analyze();
815
816 BitVector* GetLiveInSet(const HBasicBlock& block) const {
817 return &block_infos_.Get(block.GetBlockId())->live_in_;
818 }
819
820 BitVector* GetLiveOutSet(const HBasicBlock& block) const {
821 return &block_infos_.Get(block.GetBlockId())->live_out_;
822 }
823
824 BitVector* GetKillSet(const HBasicBlock& block) const {
825 return &block_infos_.Get(block.GetBlockId())->kill_;
826 }
827
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000828 const GrowableArray<HBasicBlock*>& GetLinearOrder() const {
829 return linear_order_;
Nicolas Geoffray0d3f5782014-05-14 09:43:38 +0100830 }
831
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100832 HInstruction* GetInstructionFromSsaIndex(size_t index) const {
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100833 return instructions_from_ssa_index_.Get(index);
834 }
835
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100836 HInstruction* GetInstructionFromPosition(size_t index) const {
837 return instructions_from_lifetime_position_.Get(index);
838 }
839
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100840 HInstruction* GetTempUser(LiveInterval* temp) const {
841 // A temporary shares the same lifetime start as the instruction that requires it.
842 DCHECK(temp->IsTemp());
843 return GetInstructionFromPosition(temp->GetStart() / 2);
844 }
845
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100846 size_t GetMaxLifetimePosition() const {
847 return instructions_from_lifetime_position_.Size() * 2 - 1;
848 }
849
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100850 size_t GetNumberOfSsaValues() const {
851 return number_of_ssa_values_;
852 }
853
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800854 static constexpr const char* kLivenessPassName = "liveness";
855
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100856 private:
Nicolas Geoffray0d3f5782014-05-14 09:43:38 +0100857 // Linearize the graph so that:
858 // (1): a block is always after its dominator,
859 // (2): blocks of loops are contiguous.
860 // This creates a natural and efficient ordering when visualizing live ranges.
861 void LinearizeGraph();
862
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100863 // Give an SSA number to each instruction that defines a value used by another instruction,
864 // and setup the lifetime information of each instruction and block.
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100865 void NumberInstructions();
866
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100867 // Compute live ranges of instructions, as well as live_in, live_out and kill sets.
868 void ComputeLiveness();
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100869
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100870 // Compute the live ranges of instructions, as well as the initial live_in, live_out and
871 // kill sets, that do not take into account backward branches.
872 void ComputeLiveRanges();
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100873
874 // After computing the initial sets, this method does a fixed point
875 // calculation over the live_in and live_out set to take into account
876 // backwards branches.
877 void ComputeLiveInAndLiveOutSets();
878
879 // Update the live_in set of the block and returns whether it has changed.
880 bool UpdateLiveIn(const HBasicBlock& block);
881
882 // Update the live_out set of the block and returns whether it has changed.
883 bool UpdateLiveOut(const HBasicBlock& block);
884
885 const HGraph& graph_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100886 CodeGenerator* const codegen_;
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000887 GrowableArray<HBasicBlock*> linear_order_;
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100888 GrowableArray<BlockInfo*> block_infos_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100889
890 // Temporary array used when computing live_in, live_out, and kill sets.
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100891 GrowableArray<HInstruction*> instructions_from_ssa_index_;
Nicolas Geoffray31d76b42014-06-09 15:02:22 +0100892
893 // Temporary array used when inserting moves in the graph.
894 GrowableArray<HInstruction*> instructions_from_lifetime_position_;
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100895 size_t number_of_ssa_values_;
896
897 DISALLOW_COPY_AND_ASSIGN(SsaLivenessAnalysis);
898};
899
Nicolas Geoffraye50fa582014-11-24 17:44:15 +0000900class HLinearPostOrderIterator : public ValueObject {
901 public:
902 explicit HLinearPostOrderIterator(const SsaLivenessAnalysis& liveness)
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000903 : order_(liveness.GetLinearOrder()), index_(liveness.GetLinearOrder().Size()) {}
Nicolas Geoffraye50fa582014-11-24 17:44:15 +0000904
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000905 bool Done() const { return index_ == 0; }
906
907 HBasicBlock* Current() const { return order_.Get(index_ -1); }
908
909 void Advance() {
910 --index_;
911 DCHECK_GE(index_, 0U);
912 }
Nicolas Geoffraye50fa582014-11-24 17:44:15 +0000913
914 private:
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000915 const GrowableArray<HBasicBlock*>& order_;
Nicolas Geoffraye50fa582014-11-24 17:44:15 +0000916 size_t index_;
917
918 DISALLOW_COPY_AND_ASSIGN(HLinearPostOrderIterator);
919};
920
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000921class HLinearOrderIterator : public ValueObject {
922 public:
923 explicit HLinearOrderIterator(const SsaLivenessAnalysis& liveness)
924 : order_(liveness.GetLinearOrder()), index_(0) {}
925
926 bool Done() const { return index_ == order_.Size(); }
927 HBasicBlock* Current() const { return order_.Get(index_); }
928 void Advance() { ++index_; }
929
930 private:
931 const GrowableArray<HBasicBlock*>& order_;
932 size_t index_;
933
934 DISALLOW_COPY_AND_ASSIGN(HLinearOrderIterator);
935};
936
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100937} // namespace art
938
939#endif // ART_COMPILER_OPTIMIZING_SSA_LIVENESS_ANALYSIS_H_