blob: 98595322c3f5e256a6b9ebdc91fc5082fc6f4667 [file] [log] [blame]
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001/*
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_NODES_H_
18#define ART_COMPILER_OPTIMIZING_NODES_H_
19
Vladimir Marko60584552015-09-03 13:35:12 +000020#include <algorithm>
Vladimir Markof9f64412015-09-02 14:05:49 +010021#include <array>
Roland Levillain9867bc72015-08-05 10:21:34 +010022#include <type_traits>
23
Mathieu Chartiere5d80f82015-10-15 17:47:48 -070024#include "base/arena_bit_vector.h"
David Brazdil8d5b8b22015-03-24 10:51:52 +000025#include "base/arena_containers.h"
Mathieu Chartierb666f482015-02-18 14:33:14 -080026#include "base/arena_object.h"
David Brazdild9c90372016-09-14 16:53:55 +010027#include "base/array_ref.h"
Vladimir Marko2c45bc92016-10-25 16:54:12 +010028#include "base/iteration_range.h"
Vladimir Marko60584552015-09-03 13:35:12 +000029#include "base/stl_util.h"
David Brazdild9c90372016-09-14 16:53:55 +010030#include "base/transform_array_ref.h"
Vladimir Marko87f3fcb2016-04-28 15:52:11 +010031#include "dex_file.h"
Andreas Gampea5b09a62016-11-17 15:21:22 -080032#include "dex_file_types.h"
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +010033#include "deoptimization_kind.h"
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +000034#include "entrypoints/quick/quick_entrypoints_enum.h"
Calin Juravleacf735c2015-02-12 15:25:22 +000035#include "handle.h"
36#include "handle_scope.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000037#include "invoke_type.h"
Nicolas Geoffray762869d2016-07-15 15:28:35 +010038#include "intrinsics_enum.h"
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +010039#include "locations.h"
Vladimir Marko58155012015-08-19 12:49:41 +000040#include "method_reference.h"
Calin Juravleacf735c2015-02-12 15:25:22 +000041#include "mirror/class.h"
Nicolas Geoffraye5038322014-07-04 09:41:32 +010042#include "offsets.h"
Ian Rogerse63db272014-07-15 15:36:11 -070043#include "primitive.h"
Vladimir Marko46817b82016-03-29 12:21:58 +010044#include "utils/intrusive_forward_list.h"
Nicolas Geoffray818f2102014-02-18 16:43:35 +000045
46namespace art {
47
David Brazdil1abb4192015-02-17 18:33:36 +000048class GraphChecker;
Nicolas Geoffray818f2102014-02-18 16:43:35 +000049class HBasicBlock;
Igor Murashkind01745e2017-04-05 16:40:31 -070050class HConstructorFence;
Nicolas Geoffray76b1e172015-05-27 17:18:33 +010051class HCurrentMethod;
David Brazdil8d5b8b22015-03-24 10:51:52 +000052class HDoubleConstant;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +010053class HEnvironment;
David Brazdil8d5b8b22015-03-24 10:51:52 +000054class HFloatConstant;
David Brazdilfc6a86a2015-06-26 10:33:45 +000055class HGraphBuilder;
David Brazdil8d5b8b22015-03-24 10:51:52 +000056class HGraphVisitor;
Nicolas Geoffray818f2102014-02-18 16:43:35 +000057class HInstruction;
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +000058class HIntConstant;
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000059class HInvoke;
David Brazdil8d5b8b22015-03-24 10:51:52 +000060class HLongConstant;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +000061class HNullConstant;
Igor Murashkind01745e2017-04-05 16:40:31 -070062class HParameterValue;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +010063class HPhi;
Nicolas Geoffray3c049742014-09-24 18:10:46 +010064class HSuspendCheck;
David Brazdilffee3d32015-07-06 11:48:53 +010065class HTryBoundary;
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +010066class LiveInterval;
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +000067class LocationSummary;
Nicolas Geoffraydb216f42015-05-05 17:02:20 +010068class SlowPathCode;
David Brazdil8d5b8b22015-03-24 10:51:52 +000069class SsaBuilder;
Nicolas Geoffray818f2102014-02-18 16:43:35 +000070
Mathieu Chartier736b5602015-09-02 14:54:11 -070071namespace mirror {
72class DexCache;
73} // namespace mirror
74
Nicolas Geoffray818f2102014-02-18 16:43:35 +000075static const int kDefaultNumberOfBlocks = 8;
76static const int kDefaultNumberOfSuccessors = 2;
77static const int kDefaultNumberOfPredecessors = 2;
David Brazdilb618ade2015-07-29 10:31:29 +010078static const int kDefaultNumberOfExceptionalPredecessors = 0;
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010079static const int kDefaultNumberOfDominatedBlocks = 1;
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +000080static const int kDefaultNumberOfBackEdges = 1;
Nicolas Geoffray818f2102014-02-18 16:43:35 +000081
Roland Levillain5b5b9312016-03-22 14:57:31 +000082// The maximum (meaningful) distance (31) that can be used in an integer shift/rotate operation.
83static constexpr int32_t kMaxIntShiftDistance = 0x1f;
84// The maximum (meaningful) distance (63) that can be used in a long shift/rotate operation.
85static constexpr int32_t kMaxLongShiftDistance = 0x3f;
Calin Juravle9aec02f2014-11-18 23:06:35 +000086
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +010087static constexpr uint32_t kUnknownFieldIndex = static_cast<uint32_t>(-1);
Mingyao Yang8df69d42015-10-22 15:40:58 -070088static constexpr uint16_t kUnknownClassDefIndex = static_cast<uint16_t>(-1);
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +010089
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +010090static constexpr InvokeType kInvalidInvokeType = static_cast<InvokeType>(-1);
91
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +060092static constexpr uint32_t kNoDexPc = -1;
93
Vladimir Markodbb7f5b2016-03-30 13:23:58 +010094inline bool IsSameDexFile(const DexFile& lhs, const DexFile& rhs) {
95 // For the purposes of the compiler, the dex files must actually be the same object
96 // if we want to safely treat them as the same. This is especially important for JIT
97 // as custom class loaders can open the same underlying file (or memory) multiple
98 // times and provide different class resolution but no two class loaders should ever
99 // use the same DexFile object - doing so is an unsupported hack that can lead to
100 // all sorts of weird failures.
101 return &lhs == &rhs;
102}
103
Dave Allison20dfc792014-06-16 20:44:29 -0700104enum IfCondition {
Aart Bike9f37602015-10-09 11:15:55 -0700105 // All types.
106 kCondEQ, // ==
107 kCondNE, // !=
108 // Signed integers and floating-point numbers.
109 kCondLT, // <
110 kCondLE, // <=
111 kCondGT, // >
112 kCondGE, // >=
113 // Unsigned integers.
114 kCondB, // <
115 kCondBE, // <=
116 kCondA, // >
117 kCondAE, // >=
Scott Wakeling2c76e062016-08-31 09:48:54 +0100118 // First and last aliases.
119 kCondFirst = kCondEQ,
120 kCondLast = kCondAE,
Dave Allison20dfc792014-06-16 20:44:29 -0700121};
122
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000123enum GraphAnalysisResult {
David Brazdil86ea7ee2016-02-16 09:26:07 +0000124 kAnalysisSkipped,
David Brazdilbadd8262016-02-02 16:28:56 +0000125 kAnalysisInvalidBytecode,
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000126 kAnalysisFailThrowCatchLoop,
127 kAnalysisFailAmbiguousArrayOp,
128 kAnalysisSuccess,
David Brazdil4833f5a2015-12-16 10:37:39 +0000129};
130
Andreas Gampe9186ced2016-12-12 14:28:21 -0800131template <typename T>
132static inline typename std::make_unsigned<T>::type MakeUnsigned(T x) {
133 return static_cast<typename std::make_unsigned<T>::type>(x);
134}
135
Vladimir Markof9f64412015-09-02 14:05:49 +0100136class HInstructionList : public ValueObject {
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100137 public:
138 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {}
139
140 void AddInstruction(HInstruction* instruction);
141 void RemoveInstruction(HInstruction* instruction);
142
David Brazdilc3d743f2015-04-22 13:40:50 +0100143 // Insert `instruction` before/after an existing instruction `cursor`.
144 void InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor);
145 void InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor);
146
Roland Levillain6b469232014-09-25 10:10:38 +0100147 // Return true if this list contains `instruction`.
148 bool Contains(HInstruction* instruction) const;
149
Roland Levillainccc07a92014-09-16 14:48:16 +0100150 // Return true if `instruction1` is found before `instruction2` in
151 // this instruction list and false otherwise. Abort if none
152 // of these instructions is found.
153 bool FoundBefore(const HInstruction* instruction1,
154 const HInstruction* instruction2) const;
155
Nicolas Geoffray276d9da2015-02-02 18:24:11 +0000156 bool IsEmpty() const { return first_instruction_ == nullptr; }
157 void Clear() { first_instruction_ = last_instruction_ = nullptr; }
158
159 // Update the block of all instructions to be `block`.
160 void SetBlockOfInstructions(HBasicBlock* block) const;
161
162 void AddAfter(HInstruction* cursor, const HInstructionList& instruction_list);
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +0000163 void AddBefore(HInstruction* cursor, const HInstructionList& instruction_list);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +0000164 void Add(const HInstructionList& instruction_list);
165
David Brazdil2d7352b2015-04-20 14:52:42 +0100166 // Return the number of instructions in the list. This is an expensive operation.
167 size_t CountSize() const;
168
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100169 private:
170 HInstruction* first_instruction_;
171 HInstruction* last_instruction_;
172
173 friend class HBasicBlock;
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000174 friend class HGraph;
175 friend class HInstruction;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100176 friend class HInstructionIterator;
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +0000177 friend class HInstructionIteratorHandleChanges;
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100178 friend class HBackwardInstructionIterator;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100179
180 DISALLOW_COPY_AND_ASSIGN(HInstructionList);
181};
182
David Brazdil4833f5a2015-12-16 10:37:39 +0000183class ReferenceTypeInfo : ValueObject {
184 public:
185 typedef Handle<mirror::Class> TypeHandle;
186
Vladimir Markoa1de9182016-02-25 11:37:38 +0000187 static ReferenceTypeInfo Create(TypeHandle type_handle, bool is_exact);
188
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700189 static ReferenceTypeInfo Create(TypeHandle type_handle) REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil94ab38f2016-06-21 17:48:19 +0100190 return Create(type_handle, type_handle->CannotBeAssignedFromOtherTypes());
191 }
192
Vladimir Markoa1de9182016-02-25 11:37:38 +0000193 static ReferenceTypeInfo CreateUnchecked(TypeHandle type_handle, bool is_exact) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000194 return ReferenceTypeInfo(type_handle, is_exact);
195 }
196
197 static ReferenceTypeInfo CreateInvalid() { return ReferenceTypeInfo(); }
198
Vladimir Markof39745e2016-01-26 12:16:55 +0000199 static bool IsValidHandle(TypeHandle handle) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000200 return handle.GetReference() != nullptr;
201 }
202
Vladimir Marko456307a2016-04-19 14:12:13 +0000203 bool IsValid() const {
David Brazdil4833f5a2015-12-16 10:37:39 +0000204 return IsValidHandle(type_handle_);
205 }
206
207 bool IsExact() const { return is_exact_; }
208
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700209 bool IsObjectClass() const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000210 DCHECK(IsValid());
211 return GetTypeHandle()->IsObjectClass();
212 }
213
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700214 bool IsStringClass() const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000215 DCHECK(IsValid());
216 return GetTypeHandle()->IsStringClass();
217 }
218
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700219 bool IsObjectArray() const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000220 DCHECK(IsValid());
221 return IsArrayClass() && GetTypeHandle()->GetComponentType()->IsObjectClass();
222 }
223
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700224 bool IsInterface() const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000225 DCHECK(IsValid());
226 return GetTypeHandle()->IsInterface();
227 }
228
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700229 bool IsArrayClass() const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000230 DCHECK(IsValid());
231 return GetTypeHandle()->IsArrayClass();
232 }
233
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700234 bool IsPrimitiveArrayClass() const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000235 DCHECK(IsValid());
236 return GetTypeHandle()->IsPrimitiveArray();
237 }
238
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700239 bool IsNonPrimitiveArrayClass() const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000240 DCHECK(IsValid());
241 return GetTypeHandle()->IsArrayClass() && !GetTypeHandle()->IsPrimitiveArray();
242 }
243
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700244 bool CanArrayHold(ReferenceTypeInfo rti) const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000245 DCHECK(IsValid());
246 if (!IsExact()) return false;
247 if (!IsArrayClass()) return false;
248 return GetTypeHandle()->GetComponentType()->IsAssignableFrom(rti.GetTypeHandle().Get());
249 }
250
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700251 bool CanArrayHoldValuesOf(ReferenceTypeInfo rti) const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000252 DCHECK(IsValid());
253 if (!IsExact()) return false;
254 if (!IsArrayClass()) return false;
255 if (!rti.IsArrayClass()) return false;
256 return GetTypeHandle()->GetComponentType()->IsAssignableFrom(
257 rti.GetTypeHandle()->GetComponentType());
258 }
259
260 Handle<mirror::Class> GetTypeHandle() const { return type_handle_; }
261
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700262 bool IsSupertypeOf(ReferenceTypeInfo rti) const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000263 DCHECK(IsValid());
264 DCHECK(rti.IsValid());
265 return GetTypeHandle()->IsAssignableFrom(rti.GetTypeHandle().Get());
266 }
267
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700268 bool IsStrictSupertypeOf(ReferenceTypeInfo rti) const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000269 DCHECK(IsValid());
270 DCHECK(rti.IsValid());
271 return GetTypeHandle().Get() != rti.GetTypeHandle().Get() &&
272 GetTypeHandle()->IsAssignableFrom(rti.GetTypeHandle().Get());
273 }
274
275 // Returns true if the type information provide the same amount of details.
276 // Note that it does not mean that the instructions have the same actual type
277 // (because the type can be the result of a merge).
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700278 bool IsEqual(ReferenceTypeInfo rti) const REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdil4833f5a2015-12-16 10:37:39 +0000279 if (!IsValid() && !rti.IsValid()) {
280 // Invalid types are equal.
281 return true;
282 }
283 if (!IsValid() || !rti.IsValid()) {
284 // One is valid, the other not.
285 return false;
286 }
287 return IsExact() == rti.IsExact()
288 && GetTypeHandle().Get() == rti.GetTypeHandle().Get();
289 }
290
291 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +0000292 ReferenceTypeInfo() : type_handle_(TypeHandle()), is_exact_(false) {}
293 ReferenceTypeInfo(TypeHandle type_handle, bool is_exact)
294 : type_handle_(type_handle), is_exact_(is_exact) { }
David Brazdil4833f5a2015-12-16 10:37:39 +0000295
296 // The class of the object.
297 TypeHandle type_handle_;
298 // Whether or not the type is exact or a superclass of the actual type.
299 // Whether or not we have any information about this type.
300 bool is_exact_;
301};
302
303std::ostream& operator<<(std::ostream& os, const ReferenceTypeInfo& rhs);
304
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000305// Control-flow graph of a method. Contains a list of basic blocks.
Vladimir Markof9f64412015-09-02 14:05:49 +0100306class HGraph : public ArenaObject<kArenaAllocGraph> {
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000307 public:
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100308 HGraph(ArenaAllocator* arena,
309 const DexFile& dex_file,
310 uint32_t method_idx,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700311 InstructionSet instruction_set,
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +0100312 InvokeType invoke_type = kInvalidInvokeType,
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100313 bool debuggable = false,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000314 bool osr = false,
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100315 int start_instruction_id = 0)
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000316 : arena_(arena),
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100317 blocks_(arena->Adapter(kArenaAllocBlockList)),
318 reverse_post_order_(arena->Adapter(kArenaAllocReversePostOrder)),
319 linear_order_(arena->Adapter(kArenaAllocLinearOrder)),
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700320 entry_block_(nullptr),
321 exit_block_(nullptr),
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100322 maximum_number_of_out_vregs_(0),
Nicolas Geoffrayf583e592014-04-07 13:20:42 +0100323 number_of_vregs_(0),
324 number_of_in_vregs_(0),
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000325 temporaries_vreg_slots_(0),
Mark Mendell1152c922015-04-24 17:06:35 -0400326 has_bounds_checks_(false),
David Brazdil77a48ae2015-09-15 12:34:04 +0000327 has_try_catch_(false),
Aart Bikb13c65b2017-03-21 20:14:07 -0700328 has_simd_(false),
Mingyao Yang69d75ff2017-02-07 13:06:06 -0800329 has_loops_(false),
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000330 has_irreducible_loops_(false),
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000331 debuggable_(debuggable),
David Brazdil8d5b8b22015-03-24 10:51:52 +0000332 current_instruction_id_(start_instruction_id),
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100333 dex_file_(dex_file),
334 method_idx_(method_idx),
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +0100335 invoke_type_(invoke_type),
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100336 in_ssa_form_(false),
Mingyao Yangb0b051a2016-11-17 09:04:53 -0800337 number_of_cha_guards_(0),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700338 instruction_set_(instruction_set),
David Brazdil8d5b8b22015-03-24 10:51:52 +0000339 cached_null_constant_(nullptr),
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100340 cached_int_constants_(std::less<int32_t>(), arena->Adapter(kArenaAllocConstantsMap)),
341 cached_float_constants_(std::less<int32_t>(), arena->Adapter(kArenaAllocConstantsMap)),
342 cached_long_constants_(std::less<int64_t>(), arena->Adapter(kArenaAllocConstantsMap)),
343 cached_double_constants_(std::less<int64_t>(), arena->Adapter(kArenaAllocConstantsMap)),
David Brazdil4833f5a2015-12-16 10:37:39 +0000344 cached_current_method_(nullptr),
Nicolas Geoffray53fec082017-03-27 12:56:16 +0100345 art_method_(nullptr),
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000346 inexact_object_rti_(ReferenceTypeInfo::CreateInvalid()),
Mingyao Yang063fc772016-08-02 11:02:54 -0700347 osr_(osr),
348 cha_single_implementation_list_(arena->Adapter(kArenaAllocCHA)) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100349 blocks_.reserve(kDefaultNumberOfBlocks);
350 }
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000351
David Brazdilbadd8262016-02-02 16:28:56 +0000352 // Acquires and stores RTI of inexact Object to be used when creating HNullConstant.
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700353 void InitializeInexactObjectRTI(VariableSizedHandleScope* handles);
David Brazdilbadd8262016-02-02 16:28:56 +0000354
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000355 ArenaAllocator* GetArena() const { return arena_; }
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100356 const ArenaVector<HBasicBlock*>& GetBlocks() const { return blocks_; }
357
David Brazdil69ba7b72015-06-23 18:27:30 +0100358 bool IsInSsaForm() const { return in_ssa_form_; }
David Brazdilbadd8262016-02-02 16:28:56 +0000359 void SetInSsaForm() { in_ssa_form_ = true; }
David Brazdil69ba7b72015-06-23 18:27:30 +0100360
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000361 HBasicBlock* GetEntryBlock() const { return entry_block_; }
362 HBasicBlock* GetExitBlock() const { return exit_block_; }
David Brazdilc7af85d2015-05-26 12:05:55 +0100363 bool HasExitBlock() const { return exit_block_ != nullptr; }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000364
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000365 void SetEntryBlock(HBasicBlock* block) { entry_block_ = block; }
366 void SetExitBlock(HBasicBlock* block) { exit_block_ = block; }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000367
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000368 void AddBlock(HBasicBlock* block);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100369
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100370 void ComputeDominanceInformation();
371 void ClearDominanceInformation();
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000372 void ClearLoopInformation();
373 void FindBackEdges(ArenaBitVector* visited);
374 GraphAnalysisResult BuildDominatorTree();
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100375 void SimplifyCFG();
David Brazdilffee3d32015-07-06 11:48:53 +0100376 void SimplifyCatchBlocks();
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000377
David Brazdil4833f5a2015-12-16 10:37:39 +0000378 // Analyze all natural loops in this graph. Returns a code specifying that it
379 // was successful or the reason for failure. The method will fail if a loop
David Brazdil4833f5a2015-12-16 10:37:39 +0000380 // is a throw-catch loop, i.e. the header is a catch block.
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000381 GraphAnalysisResult AnalyzeLoops() const;
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100382
David Brazdilffee3d32015-07-06 11:48:53 +0100383 // Iterate over blocks to compute try block membership. Needs reverse post
384 // order and loop information.
385 void ComputeTryBlockInformation();
386
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000387 // Inline this graph in `outer_graph`, replacing the given `invoke` instruction.
Nicolas Geoffray55bd7492016-02-16 15:37:12 +0000388 // Returns the instruction to replace the invoke expression or null if the
389 // invoke is for a void method. Note that the caller is responsible for replacing
390 // and removing the invoke instruction.
Calin Juravle2e768302015-07-28 14:41:11 +0000391 HInstruction* InlineInto(HGraph* outer_graph, HInvoke* invoke);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000392
Nicolas Geoffraya1d8ddf2016-02-29 11:46:58 +0000393 // Update the loop and try membership of `block`, which was spawned from `reference`.
394 // In case `reference` is a back edge, `replace_if_back_edge` notifies whether `block`
395 // should be the new back edge.
396 void UpdateLoopAndTryInformationOfNewBlock(HBasicBlock* block,
397 HBasicBlock* reference,
398 bool replace_if_back_edge);
399
Mingyao Yang3584bce2015-05-19 16:01:59 -0700400 // Need to add a couple of blocks to test if the loop body is entered and
401 // put deoptimization instructions, etc.
402 void TransformLoopHeaderForBCE(HBasicBlock* header);
403
Aart Bikf8f5a162017-02-06 15:35:29 -0800404 // Adds a new loop directly after the loop with the given header and exit.
405 // Returns the new preheader.
406 HBasicBlock* TransformLoopForVectorization(HBasicBlock* header,
407 HBasicBlock* body,
408 HBasicBlock* exit);
409
David Brazdil8a7c0fe2015-11-02 20:24:55 +0000410 // Removes `block` from the graph. Assumes `block` has been disconnected from
411 // other blocks and has no instructions or phis.
412 void DeleteDeadEmptyBlock(HBasicBlock* block);
David Brazdil46e2a392015-03-16 17:31:52 +0000413
David Brazdilfc6a86a2015-06-26 10:33:45 +0000414 // Splits the edge between `block` and `successor` while preserving the
415 // indices in the predecessor/successor lists. If there are multiple edges
416 // between the blocks, the lowest indices are used.
417 // Returns the new block which is empty and has the same dex pc as `successor`.
418 HBasicBlock* SplitEdge(HBasicBlock* block, HBasicBlock* successor);
419
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100420 void SplitCriticalEdge(HBasicBlock* block, HBasicBlock* successor);
421 void SimplifyLoop(HBasicBlock* header);
422
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000423 int32_t GetNextInstructionId() {
424 DCHECK_NE(current_instruction_id_, INT32_MAX);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +0000425 return current_instruction_id_++;
426 }
427
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000428 int32_t GetCurrentInstructionId() const {
429 return current_instruction_id_;
430 }
431
432 void SetCurrentInstructionId(int32_t id) {
David Brazdil3f523062016-02-29 16:53:33 +0000433 DCHECK_GE(id, current_instruction_id_);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000434 current_instruction_id_ = id;
435 }
436
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100437 uint16_t GetMaximumNumberOfOutVRegs() const {
438 return maximum_number_of_out_vregs_;
439 }
440
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000441 void SetMaximumNumberOfOutVRegs(uint16_t new_value) {
442 maximum_number_of_out_vregs_ = new_value;
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100443 }
444
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100445 void UpdateMaximumNumberOfOutVRegs(uint16_t other_value) {
446 maximum_number_of_out_vregs_ = std::max(maximum_number_of_out_vregs_, other_value);
447 }
448
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000449 void UpdateTemporariesVRegSlots(size_t slots) {
450 temporaries_vreg_slots_ = std::max(slots, temporaries_vreg_slots_);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100451 }
452
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000453 size_t GetTemporariesVRegSlots() const {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100454 DCHECK(!in_ssa_form_);
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000455 return temporaries_vreg_slots_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100456 }
457
Nicolas Geoffrayf583e592014-04-07 13:20:42 +0100458 void SetNumberOfVRegs(uint16_t number_of_vregs) {
459 number_of_vregs_ = number_of_vregs;
460 }
461
462 uint16_t GetNumberOfVRegs() const {
463 return number_of_vregs_;
464 }
465
466 void SetNumberOfInVRegs(uint16_t value) {
467 number_of_in_vregs_ = value;
468 }
469
David Brazdildee58d62016-04-07 09:54:26 +0000470 uint16_t GetNumberOfInVRegs() const {
471 return number_of_in_vregs_;
472 }
473
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100474 uint16_t GetNumberOfLocalVRegs() const {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100475 DCHECK(!in_ssa_form_);
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100476 return number_of_vregs_ - number_of_in_vregs_;
477 }
478
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100479 const ArenaVector<HBasicBlock*>& GetReversePostOrder() const {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100480 return reverse_post_order_;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100481 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +0100482
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100483 ArrayRef<HBasicBlock* const> GetReversePostOrderSkipEntryBlock() {
484 DCHECK(GetReversePostOrder()[0] == entry_block_);
485 return ArrayRef<HBasicBlock* const>(GetReversePostOrder()).SubArray(1);
486 }
487
488 IterationRange<ArenaVector<HBasicBlock*>::const_reverse_iterator> GetPostOrder() const {
489 return ReverseRange(GetReversePostOrder());
490 }
491
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100492 const ArenaVector<HBasicBlock*>& GetLinearOrder() const {
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100493 return linear_order_;
494 }
495
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100496 IterationRange<ArenaVector<HBasicBlock*>::const_reverse_iterator> GetLinearPostOrder() const {
497 return ReverseRange(GetLinearOrder());
498 }
499
Mark Mendell1152c922015-04-24 17:06:35 -0400500 bool HasBoundsChecks() const {
501 return has_bounds_checks_;
Mingyao Yange4335eb2015-03-02 15:14:13 -0800502 }
503
Mark Mendell1152c922015-04-24 17:06:35 -0400504 void SetHasBoundsChecks(bool value) {
505 has_bounds_checks_ = value;
Mingyao Yange4335eb2015-03-02 15:14:13 -0800506 }
507
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000508 bool IsDebuggable() const { return debuggable_; }
509
David Brazdil8d5b8b22015-03-24 10:51:52 +0000510 // Returns a constant of the given type and value. If it does not exist
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000511 // already, it is created and inserted into the graph. This method is only for
512 // integral types.
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600513 HConstant* GetConstant(Primitive::Type type, int64_t value, uint32_t dex_pc = kNoDexPc);
Calin Juravle2e768302015-07-28 14:41:11 +0000514
515 // TODO: This is problematic for the consistency of reference type propagation
516 // because it can be created anytime after the pass and thus it will be left
517 // with an invalid type.
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600518 HNullConstant* GetNullConstant(uint32_t dex_pc = kNoDexPc);
Calin Juravle2e768302015-07-28 14:41:11 +0000519
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600520 HIntConstant* GetIntConstant(int32_t value, uint32_t dex_pc = kNoDexPc) {
521 return CreateConstant(value, &cached_int_constants_, dex_pc);
David Brazdil8d5b8b22015-03-24 10:51:52 +0000522 }
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600523 HLongConstant* GetLongConstant(int64_t value, uint32_t dex_pc = kNoDexPc) {
524 return CreateConstant(value, &cached_long_constants_, dex_pc);
David Brazdil8d5b8b22015-03-24 10:51:52 +0000525 }
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600526 HFloatConstant* GetFloatConstant(float value, uint32_t dex_pc = kNoDexPc) {
527 return CreateConstant(bit_cast<int32_t, float>(value), &cached_float_constants_, dex_pc);
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000528 }
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600529 HDoubleConstant* GetDoubleConstant(double value, uint32_t dex_pc = kNoDexPc) {
530 return CreateConstant(bit_cast<int64_t, double>(value), &cached_double_constants_, dex_pc);
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000531 }
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000532
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100533 HCurrentMethod* GetCurrentMethod();
534
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100535 const DexFile& GetDexFile() const {
536 return dex_file_;
537 }
538
539 uint32_t GetMethodIdx() const {
540 return method_idx_;
541 }
542
Igor Murashkind01745e2017-04-05 16:40:31 -0700543 // Get the method name (without the signature), e.g. "<init>"
544 const char* GetMethodName() const;
545
546 // Get the pretty method name (class + name + optionally signature).
547 std::string PrettyMethod(bool with_signature = true) const;
548
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +0100549 InvokeType GetInvokeType() const {
550 return invoke_type_;
551 }
552
Mark Mendellc4701932015-04-10 13:18:51 -0400553 InstructionSet GetInstructionSet() const {
554 return instruction_set_;
555 }
556
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000557 bool IsCompilingOsr() const { return osr_; }
558
Mingyao Yang063fc772016-08-02 11:02:54 -0700559 ArenaSet<ArtMethod*>& GetCHASingleImplementationList() {
560 return cha_single_implementation_list_;
561 }
562
563 void AddCHASingleImplementationDependency(ArtMethod* method) {
564 cha_single_implementation_list_.insert(method);
565 }
566
567 bool HasShouldDeoptimizeFlag() const {
Mingyao Yangb0b051a2016-11-17 09:04:53 -0800568 return number_of_cha_guards_ != 0;
Mingyao Yang063fc772016-08-02 11:02:54 -0700569 }
570
David Brazdil77a48ae2015-09-15 12:34:04 +0000571 bool HasTryCatch() const { return has_try_catch_; }
572 void SetHasTryCatch(bool value) { has_try_catch_ = value; }
David Brazdilbbd733e2015-08-18 17:48:17 +0100573
Aart Bikb13c65b2017-03-21 20:14:07 -0700574 bool HasSIMD() const { return has_simd_; }
575 void SetHasSIMD(bool value) { has_simd_ = value; }
576
Mingyao Yang69d75ff2017-02-07 13:06:06 -0800577 bool HasLoops() const { return has_loops_; }
578 void SetHasLoops(bool value) { has_loops_ = value; }
579
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000580 bool HasIrreducibleLoops() const { return has_irreducible_loops_; }
581 void SetHasIrreducibleLoops(bool value) { has_irreducible_loops_ = value; }
582
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100583 ArtMethod* GetArtMethod() const { return art_method_; }
584 void SetArtMethod(ArtMethod* method) { art_method_ = method; }
585
Roland Levillain5e8d5f02016-10-18 18:03:43 +0100586 // Returns an instruction with the opposite Boolean value from 'cond'.
Mark Mendellf6529172015-11-17 11:16:56 -0500587 // The instruction has been inserted into the graph, either as a constant, or
588 // before cursor.
589 HInstruction* InsertOppositeCondition(HInstruction* cond, HInstruction* cursor);
590
Nicolas Geoffray18401b72016-03-11 13:35:51 +0000591 ReferenceTypeInfo GetInexactObjectRti() const { return inexact_object_rti_; }
592
Mingyao Yangb0b051a2016-11-17 09:04:53 -0800593 uint32_t GetNumberOfCHAGuards() { return number_of_cha_guards_; }
594 void SetNumberOfCHAGuards(uint32_t num) { number_of_cha_guards_ = num; }
595 void IncrementNumberOfCHAGuards() { number_of_cha_guards_++; }
596
David Brazdil2d7352b2015-04-20 14:52:42 +0100597 private:
Roland Levillainfc600dc2014-12-02 17:16:31 +0000598 void RemoveInstructionsAsUsersFromDeadBlocks(const ArenaBitVector& visited) const;
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100599 void RemoveDeadBlocks(const ArenaBitVector& visited);
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000600
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000601 template <class InstructionType, typename ValueType>
602 InstructionType* CreateConstant(ValueType value,
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600603 ArenaSafeMap<ValueType, InstructionType*>* cache,
604 uint32_t dex_pc = kNoDexPc) {
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000605 // Try to find an existing constant of the given value.
606 InstructionType* constant = nullptr;
607 auto cached_constant = cache->find(value);
608 if (cached_constant != cache->end()) {
609 constant = cached_constant->second;
610 }
611
612 // If not found or previously deleted, create and cache a new instruction.
Nicolas Geoffrayf78848f2015-06-17 11:57:56 +0100613 // Don't bother reviving a previously deleted instruction, for simplicity.
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000614 if (constant == nullptr || constant->GetBlock() == nullptr) {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600615 constant = new (arena_) InstructionType(value, dex_pc);
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000616 cache->Overwrite(value, constant);
617 InsertConstant(constant);
618 }
619 return constant;
620 }
621
David Brazdil8d5b8b22015-03-24 10:51:52 +0000622 void InsertConstant(HConstant* instruction);
623
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000624 // Cache a float constant into the graph. This method should only be
625 // called by the SsaBuilder when creating "equivalent" instructions.
626 void CacheFloatConstant(HFloatConstant* constant);
627
628 // See CacheFloatConstant comment.
629 void CacheDoubleConstant(HDoubleConstant* constant);
630
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000631 ArenaAllocator* const arena_;
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000632
633 // List of blocks in insertion order.
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100634 ArenaVector<HBasicBlock*> blocks_;
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000635
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100636 // List of blocks to perform a reverse post order tree traversal.
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100637 ArenaVector<HBasicBlock*> reverse_post_order_;
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000638
Aart Bik281c6812016-08-26 11:31:48 -0700639 // List of blocks to perform a linear order tree traversal. Unlike the reverse
640 // post order, this order is not incrementally kept up-to-date.
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100641 ArenaVector<HBasicBlock*> linear_order_;
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100642
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000643 HBasicBlock* entry_block_;
644 HBasicBlock* exit_block_;
645
Nicolas Geoffrayf583e592014-04-07 13:20:42 +0100646 // The maximum number of virtual registers arguments passed to a HInvoke in this graph.
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100647 uint16_t maximum_number_of_out_vregs_;
648
Nicolas Geoffrayf583e592014-04-07 13:20:42 +0100649 // The number of virtual registers in this method. Contains the parameters.
650 uint16_t number_of_vregs_;
651
652 // The number of virtual registers used by parameters of this method.
653 uint16_t number_of_in_vregs_;
654
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000655 // Number of vreg size slots that the temporaries use (used in baseline compiler).
656 size_t temporaries_vreg_slots_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100657
Mingyao Yang69d75ff2017-02-07 13:06:06 -0800658 // Flag whether there are bounds checks in the graph. We can skip
659 // BCE if it's false. It's only best effort to keep it up to date in
660 // the presence of code elimination so there might be false positives.
Mark Mendell1152c922015-04-24 17:06:35 -0400661 bool has_bounds_checks_;
Mingyao Yange4335eb2015-03-02 15:14:13 -0800662
Mingyao Yang69d75ff2017-02-07 13:06:06 -0800663 // Flag whether there are try/catch blocks in the graph. We will skip
664 // try/catch-related passes if it's false. It's only best effort to keep
665 // it up to date in the presence of code elimination so there might be
666 // false positives.
David Brazdil77a48ae2015-09-15 12:34:04 +0000667 bool has_try_catch_;
668
Aart Bikb13c65b2017-03-21 20:14:07 -0700669 // Flag whether SIMD instructions appear in the graph. If true, the
670 // code generators may have to be more careful spilling the wider
671 // contents of SIMD registers.
672 bool has_simd_;
673
Mingyao Yang69d75ff2017-02-07 13:06:06 -0800674 // Flag whether there are any loops in the graph. We can skip loop
675 // optimization if it's false. It's only best effort to keep it up
676 // to date in the presence of code elimination so there might be false
677 // positives.
678 bool has_loops_;
679
680 // Flag whether there are any irreducible loops in the graph. It's only
681 // best effort to keep it up to date in the presence of code elimination
682 // so there might be false positives.
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000683 bool has_irreducible_loops_;
684
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000685 // Indicates whether the graph should be compiled in a way that
686 // ensures full debuggability. If false, we can apply more
687 // aggressive optimizations that may limit the level of debugging.
688 const bool debuggable_;
689
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +0000690 // The current id to assign to a newly added instruction. See HInstruction.id_.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000691 int32_t current_instruction_id_;
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +0000692
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100693 // The dex file from which the method is from.
694 const DexFile& dex_file_;
695
696 // The method index in the dex file.
697 const uint32_t method_idx_;
698
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +0100699 // If inlined, this encodes how the callee is being invoked.
700 const InvokeType invoke_type_;
701
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100702 // Whether the graph has been transformed to SSA form. Only used
703 // in debug mode to ensure we are not using properties only valid
704 // for non-SSA form (like the number of temporaries).
705 bool in_ssa_form_;
706
Mingyao Yangb0b051a2016-11-17 09:04:53 -0800707 // Number of CHA guards in the graph. Used to short-circuit the
708 // CHA guard optimization pass when there is no CHA guard left.
709 uint32_t number_of_cha_guards_;
710
Mathieu Chartiere401d142015-04-22 13:56:20 -0700711 const InstructionSet instruction_set_;
712
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000713 // Cached constants.
David Brazdil8d5b8b22015-03-24 10:51:52 +0000714 HNullConstant* cached_null_constant_;
715 ArenaSafeMap<int32_t, HIntConstant*> cached_int_constants_;
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000716 ArenaSafeMap<int32_t, HFloatConstant*> cached_float_constants_;
David Brazdil8d5b8b22015-03-24 10:51:52 +0000717 ArenaSafeMap<int64_t, HLongConstant*> cached_long_constants_;
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000718 ArenaSafeMap<int64_t, HDoubleConstant*> cached_double_constants_;
David Brazdil46e2a392015-03-16 17:31:52 +0000719
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100720 HCurrentMethod* cached_current_method_;
721
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100722 // The ArtMethod this graph is for. Note that for AOT, it may be null,
723 // for example for methods whose declaring class could not be resolved
724 // (such as when the superclass could not be found).
725 ArtMethod* art_method_;
726
David Brazdil4833f5a2015-12-16 10:37:39 +0000727 // Keep the RTI of inexact Object to avoid having to pass stack handle
728 // collection pointer to passes which may create NullConstant.
729 ReferenceTypeInfo inexact_object_rti_;
730
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000731 // Whether we are compiling this graph for on stack replacement: this will
732 // make all loops seen as irreducible and emit special stack maps to mark
733 // compiled code entries which the interpreter can directly jump to.
734 const bool osr_;
735
Mingyao Yang063fc772016-08-02 11:02:54 -0700736 // List of methods that are assumed to have single implementation.
737 ArenaSet<ArtMethod*> cha_single_implementation_list_;
738
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000739 friend class SsaBuilder; // For caching constants.
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100740 friend class SsaLivenessAnalysis; // For the linear order.
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +0000741 friend class HInliner; // For the reverse post order.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000742 ART_FRIEND_TEST(GraphTest, IfSuccessorSimpleJoinBlock1);
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000743 DISALLOW_COPY_AND_ASSIGN(HGraph);
744};
745
Vladimir Markof9f64412015-09-02 14:05:49 +0100746class HLoopInformation : public ArenaObject<kArenaAllocLoopInfo> {
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000747 public:
748 HLoopInformation(HBasicBlock* header, HGraph* graph)
749 : header_(header),
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100750 suspend_check_(nullptr),
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000751 irreducible_(false),
Nicolas Geoffrayd7c2fdc2016-05-10 14:35:34 +0100752 contains_irreducible_loop_(false),
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100753 back_edges_(graph->GetArena()->Adapter(kArenaAllocLoopInfoBackEdges)),
Nicolas Geoffrayb09aacb2014-09-17 18:21:53 +0100754 // Make bit vector growable, as the number of blocks may change.
Vladimir Markof6a35de2016-03-21 12:01:50 +0000755 blocks_(graph->GetArena(), graph->GetBlocks().size(), true, kArenaAllocLoopInfoBackEdges) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100756 back_edges_.reserve(kDefaultNumberOfBackEdges);
757 }
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100758
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000759 bool IsIrreducible() const { return irreducible_; }
Nicolas Geoffrayd7c2fdc2016-05-10 14:35:34 +0100760 bool ContainsIrreducibleLoop() const { return contains_irreducible_loop_; }
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000761
762 void Dump(std::ostream& os);
763
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100764 HBasicBlock* GetHeader() const {
765 return header_;
766 }
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000767
Nicolas Geoffray276d9da2015-02-02 18:24:11 +0000768 void SetHeader(HBasicBlock* block) {
769 header_ = block;
770 }
771
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100772 HSuspendCheck* GetSuspendCheck() const { return suspend_check_; }
773 void SetSuspendCheck(HSuspendCheck* check) { suspend_check_ = check; }
774 bool HasSuspendCheck() const { return suspend_check_ != nullptr; }
775
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000776 void AddBackEdge(HBasicBlock* back_edge) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100777 back_edges_.push_back(back_edge);
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000778 }
779
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100780 void RemoveBackEdge(HBasicBlock* back_edge) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100781 RemoveElement(back_edges_, back_edge);
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100782 }
783
David Brazdil46e2a392015-03-16 17:31:52 +0000784 bool IsBackEdge(const HBasicBlock& block) const {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100785 return ContainsElement(back_edges_, &block);
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100786 }
787
Nicolas Geoffraya8eed3a2014-11-24 17:47:10 +0000788 size_t NumberOfBackEdges() const {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100789 return back_edges_.size();
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000790 }
791
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100792 HBasicBlock* GetPreHeader() const;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100793
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100794 const ArenaVector<HBasicBlock*>& GetBackEdges() const {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100795 return back_edges_;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100796 }
797
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100798 // Returns the lifetime position of the back edge that has the
799 // greatest lifetime position.
800 size_t GetLifetimeEnd() const;
801
802 void ReplaceBackEdge(HBasicBlock* existing, HBasicBlock* new_back_edge) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100803 ReplaceElement(back_edges_, existing, new_back_edge);
Nicolas Geoffray57902602015-04-21 14:28:41 +0100804 }
805
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000806 // Finds blocks that are part of this loop.
807 void Populate();
David Brazdila4b8c212015-05-07 09:59:30 +0100808
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100809 // Returns whether this loop information contains `block`.
810 // Note that this loop information *must* be populated before entering this function.
811 bool Contains(const HBasicBlock& block) const;
812
813 // Returns whether this loop information is an inner loop of `other`.
814 // Note that `other` *must* be populated before entering this function.
815 bool IsIn(const HLoopInformation& other) const;
816
Mingyao Yang4b467ed2015-11-19 17:04:22 -0800817 // Returns true if instruction is not defined within this loop.
818 bool IsDefinedOutOfTheLoop(HInstruction* instruction) const;
Aart Bik73f1f3b2015-10-28 15:28:08 -0700819
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100820 const ArenaBitVector& GetBlocks() const { return blocks_; }
821
Nicolas Geoffray276d9da2015-02-02 18:24:11 +0000822 void Add(HBasicBlock* block);
David Brazdil46e2a392015-03-16 17:31:52 +0000823 void Remove(HBasicBlock* block);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +0000824
Nicolas Geoffray788f2f02016-01-22 12:41:38 +0000825 void ClearAllBlocks() {
826 blocks_.ClearAllBits();
827 }
828
David Brazdil3f4a5222016-05-06 12:46:21 +0100829 bool HasBackEdgeNotDominatedByHeader() const;
830
Nicolas Geoffrayd7c2fdc2016-05-10 14:35:34 +0100831 bool IsPopulated() const {
832 return blocks_.GetHighestBitSet() != -1;
833 }
834
Anton Shaminf89381f2016-05-16 16:44:13 +0600835 bool DominatesAllBackEdges(HBasicBlock* block);
836
David Sehrc757dec2016-11-04 15:48:34 -0700837 bool HasExitEdge() const;
838
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000839 private:
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100840 // Internal recursive implementation of `Populate`.
841 void PopulateRecursive(HBasicBlock* block);
David Brazdilc2e8af92016-04-05 17:15:19 +0100842 void PopulateIrreducibleRecursive(HBasicBlock* block, ArenaBitVector* finalized);
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100843
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000844 HBasicBlock* header_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100845 HSuspendCheck* suspend_check_;
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000846 bool irreducible_;
Nicolas Geoffrayd7c2fdc2016-05-10 14:35:34 +0100847 bool contains_irreducible_loop_;
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100848 ArenaVector<HBasicBlock*> back_edges_;
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100849 ArenaBitVector blocks_;
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000850
851 DISALLOW_COPY_AND_ASSIGN(HLoopInformation);
852};
853
David Brazdilec16f792015-08-19 15:04:01 +0100854// Stores try/catch information for basic blocks.
855// Note that HGraph is constructed so that catch blocks cannot simultaneously
856// be try blocks.
Vladimir Markof9f64412015-09-02 14:05:49 +0100857class TryCatchInformation : public ArenaObject<kArenaAllocTryCatchInfo> {
David Brazdilec16f792015-08-19 15:04:01 +0100858 public:
859 // Try block information constructor.
860 explicit TryCatchInformation(const HTryBoundary& try_entry)
861 : try_entry_(&try_entry),
862 catch_dex_file_(nullptr),
863 catch_type_index_(DexFile::kDexNoIndex16) {
864 DCHECK(try_entry_ != nullptr);
865 }
866
867 // Catch block information constructor.
Andreas Gampea5b09a62016-11-17 15:21:22 -0800868 TryCatchInformation(dex::TypeIndex catch_type_index, const DexFile& dex_file)
David Brazdilec16f792015-08-19 15:04:01 +0100869 : try_entry_(nullptr),
870 catch_dex_file_(&dex_file),
871 catch_type_index_(catch_type_index) {}
872
873 bool IsTryBlock() const { return try_entry_ != nullptr; }
874
875 const HTryBoundary& GetTryEntry() const {
876 DCHECK(IsTryBlock());
877 return *try_entry_;
878 }
879
880 bool IsCatchBlock() const { return catch_dex_file_ != nullptr; }
881
882 bool IsCatchAllTypeIndex() const {
883 DCHECK(IsCatchBlock());
Andreas Gampea5b09a62016-11-17 15:21:22 -0800884 return !catch_type_index_.IsValid();
David Brazdilec16f792015-08-19 15:04:01 +0100885 }
886
Andreas Gampea5b09a62016-11-17 15:21:22 -0800887 dex::TypeIndex GetCatchTypeIndex() const {
David Brazdilec16f792015-08-19 15:04:01 +0100888 DCHECK(IsCatchBlock());
889 return catch_type_index_;
890 }
891
892 const DexFile& GetCatchDexFile() const {
893 DCHECK(IsCatchBlock());
894 return *catch_dex_file_;
895 }
896
897 private:
898 // One of possibly several TryBoundary instructions entering the block's try.
899 // Only set for try blocks.
900 const HTryBoundary* try_entry_;
901
902 // Exception type information. Only set for catch blocks.
903 const DexFile* catch_dex_file_;
Andreas Gampea5b09a62016-11-17 15:21:22 -0800904 const dex::TypeIndex catch_type_index_;
David Brazdilec16f792015-08-19 15:04:01 +0100905};
906
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100907static constexpr size_t kNoLifetime = -1;
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100908static constexpr uint32_t kInvalidBlockId = static_cast<uint32_t>(-1);
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100909
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000910// A block in a method. Contains the list of instructions represented
911// as a double linked list. Each block knows its predecessors and
912// successors.
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100913
Vladimir Markof9f64412015-09-02 14:05:49 +0100914class HBasicBlock : public ArenaObject<kArenaAllocBasicBlock> {
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000915 public:
Chih-Hung Hsieha5931182016-09-01 15:08:13 -0700916 explicit HBasicBlock(HGraph* graph, uint32_t dex_pc = kNoDexPc)
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000917 : graph_(graph),
Vladimir Marko60584552015-09-03 13:35:12 +0000918 predecessors_(graph->GetArena()->Adapter(kArenaAllocPredecessors)),
919 successors_(graph->GetArena()->Adapter(kArenaAllocSuccessors)),
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000920 loop_information_(nullptr),
921 dominator_(nullptr),
Vladimir Marko60584552015-09-03 13:35:12 +0000922 dominated_blocks_(graph->GetArena()->Adapter(kArenaAllocDominated)),
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100923 block_id_(kInvalidBlockId),
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100924 dex_pc_(dex_pc),
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +0100925 lifetime_start_(kNoLifetime),
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000926 lifetime_end_(kNoLifetime),
Vladimir Marko60584552015-09-03 13:35:12 +0000927 try_catch_information_(nullptr) {
928 predecessors_.reserve(kDefaultNumberOfPredecessors);
929 successors_.reserve(kDefaultNumberOfSuccessors);
930 dominated_blocks_.reserve(kDefaultNumberOfDominatedBlocks);
931 }
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000932
Vladimir Marko60584552015-09-03 13:35:12 +0000933 const ArenaVector<HBasicBlock*>& GetPredecessors() const {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100934 return predecessors_;
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000935 }
936
Vladimir Marko60584552015-09-03 13:35:12 +0000937 const ArenaVector<HBasicBlock*>& GetSuccessors() const {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100938 return successors_;
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000939 }
940
David Brazdild26a4112015-11-10 11:07:31 +0000941 ArrayRef<HBasicBlock* const> GetNormalSuccessors() const;
942 ArrayRef<HBasicBlock* const> GetExceptionalSuccessors() const;
943
Vladimir Marko60584552015-09-03 13:35:12 +0000944 bool HasSuccessor(const HBasicBlock* block, size_t start_from = 0u) {
945 return ContainsElement(successors_, block, start_from);
946 }
947
948 const ArenaVector<HBasicBlock*>& GetDominatedBlocks() const {
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +0100949 return dominated_blocks_;
950 }
951
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100952 bool IsEntryBlock() const {
953 return graph_->GetEntryBlock() == this;
954 }
955
956 bool IsExitBlock() const {
957 return graph_->GetExitBlock() == this;
958 }
959
David Brazdil46e2a392015-03-16 17:31:52 +0000960 bool IsSingleGoto() const;
David Brazdilfc6a86a2015-06-26 10:33:45 +0000961 bool IsSingleTryBoundary() const;
962
963 // Returns true if this block emits nothing but a jump.
964 bool IsSingleJump() const {
965 HLoopInformation* loop_info = GetLoopInformation();
966 return (IsSingleGoto() || IsSingleTryBoundary())
967 // Back edges generate a suspend check.
968 && (loop_info == nullptr || !loop_info->IsBackEdge(*this));
969 }
David Brazdil46e2a392015-03-16 17:31:52 +0000970
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000971 void AddBackEdge(HBasicBlock* back_edge) {
972 if (loop_information_ == nullptr) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000973 loop_information_ = new (graph_->GetArena()) HLoopInformation(this, graph_);
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000974 }
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100975 DCHECK_EQ(loop_information_->GetHeader(), this);
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000976 loop_information_->AddBackEdge(back_edge);
977 }
978
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000979 HGraph* GetGraph() const { return graph_; }
Nicolas Geoffray276d9da2015-02-02 18:24:11 +0000980 void SetGraph(HGraph* graph) { graph_ = graph; }
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000981
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100982 uint32_t GetBlockId() const { return block_id_; }
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000983 void SetBlockId(int id) { block_id_ = id; }
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600984 uint32_t GetDexPc() const { return dex_pc_; }
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000985
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000986 HBasicBlock* GetDominator() const { return dominator_; }
987 void SetDominator(HBasicBlock* dominator) { dominator_ = dominator; }
Vladimir Marko60584552015-09-03 13:35:12 +0000988 void AddDominatedBlock(HBasicBlock* block) { dominated_blocks_.push_back(block); }
989
990 void RemoveDominatedBlock(HBasicBlock* block) {
991 RemoveElement(dominated_blocks_, block);
Vladimir Marko91e11c02015-09-02 17:03:22 +0100992 }
Vladimir Marko60584552015-09-03 13:35:12 +0000993
994 void ReplaceDominatedBlock(HBasicBlock* existing, HBasicBlock* new_block) {
995 ReplaceElement(dominated_blocks_, existing, new_block);
996 }
997
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100998 void ClearDominanceInformation();
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000999
1000 int NumberOfBackEdges() const {
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +01001001 return IsLoopHeader() ? loop_information_->NumberOfBackEdges() : 0;
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +00001002 }
1003
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001004 HInstruction* GetFirstInstruction() const { return instructions_.first_instruction_; }
1005 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +01001006 const HInstructionList& GetInstructions() const { return instructions_; }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01001007 HInstruction* GetFirstPhi() const { return phis_.first_instruction_; }
David Brazdilc3d743f2015-04-22 13:40:50 +01001008 HInstruction* GetLastPhi() const { return phis_.last_instruction_; }
1009 const HInstructionList& GetPhis() const { return phis_; }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001010
Nicolas Geoffray09aa1472016-01-19 10:52:54 +00001011 HInstruction* GetFirstInstructionDisregardMoves() const;
1012
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001013 void AddSuccessor(HBasicBlock* block) {
Vladimir Marko60584552015-09-03 13:35:12 +00001014 successors_.push_back(block);
1015 block->predecessors_.push_back(this);
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001016 }
1017
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +01001018 void ReplaceSuccessor(HBasicBlock* existing, HBasicBlock* new_block) {
1019 size_t successor_index = GetSuccessorIndexOf(existing);
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +01001020 existing->RemovePredecessor(this);
Vladimir Marko60584552015-09-03 13:35:12 +00001021 new_block->predecessors_.push_back(this);
1022 successors_[successor_index] = new_block;
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +00001023 }
1024
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001025 void ReplacePredecessor(HBasicBlock* existing, HBasicBlock* new_block) {
1026 size_t predecessor_index = GetPredecessorIndexOf(existing);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001027 existing->RemoveSuccessor(this);
Vladimir Marko60584552015-09-03 13:35:12 +00001028 new_block->successors_.push_back(this);
1029 predecessors_[predecessor_index] = new_block;
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001030 }
1031
Nicolas Geoffray8b20f882015-06-19 16:17:05 +01001032 // Insert `this` between `predecessor` and `successor. This method
1033 // preserves the indicies, and will update the first edge found between
1034 // `predecessor` and `successor`.
1035 void InsertBetween(HBasicBlock* predecessor, HBasicBlock* successor) {
1036 size_t predecessor_index = successor->GetPredecessorIndexOf(predecessor);
Nicolas Geoffray8b20f882015-06-19 16:17:05 +01001037 size_t successor_index = predecessor->GetSuccessorIndexOf(successor);
Vladimir Marko60584552015-09-03 13:35:12 +00001038 successor->predecessors_[predecessor_index] = this;
1039 predecessor->successors_[successor_index] = this;
1040 successors_.push_back(successor);
1041 predecessors_.push_back(predecessor);
Nicolas Geoffray8b20f882015-06-19 16:17:05 +01001042 }
1043
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +01001044 void RemovePredecessor(HBasicBlock* block) {
Vladimir Marko60584552015-09-03 13:35:12 +00001045 predecessors_.erase(predecessors_.begin() + GetPredecessorIndexOf(block));
Nicolas Geoffray622d9c32014-05-12 16:11:02 +01001046 }
1047
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001048 void RemoveSuccessor(HBasicBlock* block) {
Vladimir Marko60584552015-09-03 13:35:12 +00001049 successors_.erase(successors_.begin() + GetSuccessorIndexOf(block));
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001050 }
1051
Nicolas Geoffray622d9c32014-05-12 16:11:02 +01001052 void ClearAllPredecessors() {
Vladimir Marko60584552015-09-03 13:35:12 +00001053 predecessors_.clear();
Nicolas Geoffray622d9c32014-05-12 16:11:02 +01001054 }
1055
1056 void AddPredecessor(HBasicBlock* block) {
Vladimir Marko60584552015-09-03 13:35:12 +00001057 predecessors_.push_back(block);
1058 block->successors_.push_back(this);
Nicolas Geoffray622d9c32014-05-12 16:11:02 +01001059 }
1060
Nicolas Geoffray604c6e42014-09-17 12:08:44 +01001061 void SwapPredecessors() {
Vladimir Marko60584552015-09-03 13:35:12 +00001062 DCHECK_EQ(predecessors_.size(), 2u);
1063 std::swap(predecessors_[0], predecessors_[1]);
Nicolas Geoffray604c6e42014-09-17 12:08:44 +01001064 }
1065
David Brazdil769c9e52015-04-27 13:54:09 +01001066 void SwapSuccessors() {
Vladimir Marko60584552015-09-03 13:35:12 +00001067 DCHECK_EQ(successors_.size(), 2u);
1068 std::swap(successors_[0], successors_[1]);
David Brazdil769c9e52015-04-27 13:54:09 +01001069 }
1070
David Brazdilfc6a86a2015-06-26 10:33:45 +00001071 size_t GetPredecessorIndexOf(HBasicBlock* predecessor) const {
Vladimir Marko60584552015-09-03 13:35:12 +00001072 return IndexOfElement(predecessors_, predecessor);
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +01001073 }
1074
David Brazdilfc6a86a2015-06-26 10:33:45 +00001075 size_t GetSuccessorIndexOf(HBasicBlock* successor) const {
Vladimir Marko60584552015-09-03 13:35:12 +00001076 return IndexOfElement(successors_, successor);
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +01001077 }
1078
David Brazdilfc6a86a2015-06-26 10:33:45 +00001079 HBasicBlock* GetSinglePredecessor() const {
Vladimir Marko60584552015-09-03 13:35:12 +00001080 DCHECK_EQ(GetPredecessors().size(), 1u);
Vladimir Markoec7802a2015-10-01 20:57:57 +01001081 return GetPredecessors()[0];
David Brazdilfc6a86a2015-06-26 10:33:45 +00001082 }
1083
1084 HBasicBlock* GetSingleSuccessor() const {
Vladimir Marko60584552015-09-03 13:35:12 +00001085 DCHECK_EQ(GetSuccessors().size(), 1u);
Vladimir Markoec7802a2015-10-01 20:57:57 +01001086 return GetSuccessors()[0];
David Brazdilfc6a86a2015-06-26 10:33:45 +00001087 }
1088
1089 // Returns whether the first occurrence of `predecessor` in the list of
1090 // predecessors is at index `idx`.
1091 bool IsFirstIndexOfPredecessor(HBasicBlock* predecessor, size_t idx) const {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001092 DCHECK_EQ(GetPredecessors()[idx], predecessor);
David Brazdilfc6a86a2015-06-26 10:33:45 +00001093 return GetPredecessorIndexOf(predecessor) == idx;
1094 }
1095
David Brazdild7558da2015-09-22 13:04:14 +01001096 // Create a new block between this block and its predecessors. The new block
1097 // is added to the graph, all predecessor edges are relinked to it and an edge
1098 // is created to `this`. Returns the new empty block. Reverse post order or
1099 // loop and try/catch information are not updated.
1100 HBasicBlock* CreateImmediateDominator();
1101
David Brazdilfc6a86a2015-06-26 10:33:45 +00001102 // Split the block into two blocks just before `cursor`. Returns the newly
David Brazdil56e1acc2015-06-30 15:41:36 +01001103 // created, latter block. Note that this method will add the block to the
1104 // graph, create a Goto at the end of the former block and will create an edge
1105 // between the blocks. It will not, however, update the reverse post order or
David Brazdild7558da2015-09-22 13:04:14 +01001106 // loop and try/catch information.
David Brazdilfc6a86a2015-06-26 10:33:45 +00001107 HBasicBlock* SplitBefore(HInstruction* cursor);
1108
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001109 // Split the block into two blocks just before `cursor`. Returns the newly
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001110 // created block. Note that this method just updates raw block information,
1111 // like predecessors, successors, dominators, and instruction list. It does not
1112 // update the graph, reverse post order, loop information, nor make sure the
1113 // blocks are consistent (for example ending with a control flow instruction).
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001114 HBasicBlock* SplitBeforeForInlining(HInstruction* cursor);
1115
1116 // Similar to `SplitBeforeForInlining` but does it after `cursor`.
1117 HBasicBlock* SplitAfterForInlining(HInstruction* cursor);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001118
1119 // Merge `other` at the end of `this`. Successors and dominated blocks of
1120 // `other` are changed to be successors and dominated blocks of `this`. Note
1121 // that this method does not update the graph, reverse post order, loop
1122 // information, nor make sure the blocks are consistent (for example ending
1123 // with a control flow instruction).
David Brazdil2d7352b2015-04-20 14:52:42 +01001124 void MergeWithInlined(HBasicBlock* other);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001125
1126 // Replace `this` with `other`. Predecessors, successors, and dominated blocks
1127 // of `this` are moved to `other`.
1128 // Note that this method does not update the graph, reverse post order, loop
1129 // information, nor make sure the blocks are consistent (for example ending
David Brazdil46e2a392015-03-16 17:31:52 +00001130 // with a control flow instruction).
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001131 void ReplaceWith(HBasicBlock* other);
1132
Aart Bik6b69e0a2017-01-11 10:20:43 -08001133 // Merges the instructions of `other` at the end of `this`.
1134 void MergeInstructionsWith(HBasicBlock* other);
1135
David Brazdil2d7352b2015-04-20 14:52:42 +01001136 // Merge `other` at the end of `this`. This method updates loops, reverse post
1137 // order, links to predecessors, successors, dominators and deletes the block
1138 // from the graph. The two blocks must be successive, i.e. `this` the only
1139 // predecessor of `other` and vice versa.
1140 void MergeWith(HBasicBlock* other);
1141
1142 // Disconnects `this` from all its predecessors, successors and dominator,
1143 // removes it from all loops it is included in and eventually from the graph.
1144 // The block must not dominate any other block. Predecessors and successors
1145 // are safely updated.
1146 void DisconnectAndDelete();
David Brazdil46e2a392015-03-16 17:31:52 +00001147
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001148 void AddInstruction(HInstruction* instruction);
Guillaume "Vermeille" Sanchez2967ec62015-04-24 16:36:52 +01001149 // Insert `instruction` before/after an existing instruction `cursor`.
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01001150 void InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor);
Guillaume "Vermeille" Sanchez2967ec62015-04-24 16:36:52 +01001151 void InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor);
Roland Levillainccc07a92014-09-16 14:48:16 +01001152 // Replace instruction `initial` with `replacement` within this block.
1153 void ReplaceAndRemoveInstructionWith(HInstruction* initial,
1154 HInstruction* replacement);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001155 void AddPhi(HPhi* phi);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001156 void InsertPhiAfter(HPhi* instruction, HPhi* cursor);
David Brazdil1abb4192015-02-17 18:33:36 +00001157 // RemoveInstruction and RemovePhi delete a given instruction from the respective
1158 // instruction list. With 'ensure_safety' set to true, it verifies that the
1159 // instruction is not in use and removes it from the use lists of its inputs.
1160 void RemoveInstruction(HInstruction* instruction, bool ensure_safety = true);
1161 void RemovePhi(HPhi* phi, bool ensure_safety = true);
David Brazdilc7508e92015-04-27 13:28:57 +01001162 void RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety = true);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001163
1164 bool IsLoopHeader() const {
David Brazdil69a28042015-04-29 17:16:07 +01001165 return IsInLoop() && (loop_information_->GetHeader() == this);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001166 }
1167
Roland Levillain6b879dd2014-09-22 17:13:44 +01001168 bool IsLoopPreHeaderFirstPredecessor() const {
1169 DCHECK(IsLoopHeader());
Vladimir Markoec7802a2015-10-01 20:57:57 +01001170 return GetPredecessors()[0] == GetLoopInformation()->GetPreHeader();
Roland Levillain6b879dd2014-09-22 17:13:44 +01001171 }
1172
Nicolas Geoffray15bd2282016-01-05 15:55:41 +00001173 bool IsFirstPredecessorBackEdge() const {
1174 DCHECK(IsLoopHeader());
1175 return GetLoopInformation()->IsBackEdge(*GetPredecessors()[0]);
1176 }
1177
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001178 HLoopInformation* GetLoopInformation() const {
1179 return loop_information_;
1180 }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001181
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001182 // Set the loop_information_ on this block. Overrides the current
Nicolas Geoffray622d9c32014-05-12 16:11:02 +01001183 // loop_information if it is an outer loop of the passed loop information.
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001184 // Note that this method is called while creating the loop information.
Nicolas Geoffray622d9c32014-05-12 16:11:02 +01001185 void SetInLoop(HLoopInformation* info) {
1186 if (IsLoopHeader()) {
1187 // Nothing to do. This just means `info` is an outer loop.
David Brazdil69a28042015-04-29 17:16:07 +01001188 } else if (!IsInLoop()) {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +01001189 loop_information_ = info;
1190 } else if (loop_information_->Contains(*info->GetHeader())) {
1191 // Block is currently part of an outer loop. Make it part of this inner loop.
1192 // Note that a non loop header having a loop information means this loop information
1193 // has already been populated
1194 loop_information_ = info;
1195 } else {
1196 // Block is part of an inner loop. Do not update the loop information.
1197 // Note that we cannot do the check `info->Contains(loop_information_)->GetHeader()`
1198 // at this point, because this method is being called while populating `info`.
1199 }
1200 }
1201
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001202 // Raw update of the loop information.
1203 void SetLoopInformation(HLoopInformation* info) {
1204 loop_information_ = info;
1205 }
1206
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +01001207 bool IsInLoop() const { return loop_information_ != nullptr; }
1208
David Brazdilec16f792015-08-19 15:04:01 +01001209 TryCatchInformation* GetTryCatchInformation() const { return try_catch_information_; }
1210
1211 void SetTryCatchInformation(TryCatchInformation* try_catch_information) {
1212 try_catch_information_ = try_catch_information;
1213 }
1214
1215 bool IsTryBlock() const {
1216 return try_catch_information_ != nullptr && try_catch_information_->IsTryBlock();
1217 }
1218
1219 bool IsCatchBlock() const {
1220 return try_catch_information_ != nullptr && try_catch_information_->IsCatchBlock();
1221 }
David Brazdilffee3d32015-07-06 11:48:53 +01001222
1223 // Returns the try entry that this block's successors should have. They will
1224 // be in the same try, unless the block ends in a try boundary. In that case,
1225 // the appropriate try entry will be returned.
David Brazdilec16f792015-08-19 15:04:01 +01001226 const HTryBoundary* ComputeTryEntryOfSuccessors() const;
David Brazdilffee3d32015-07-06 11:48:53 +01001227
David Brazdild7558da2015-09-22 13:04:14 +01001228 bool HasThrowingInstructions() const;
1229
David Brazdila4b8c212015-05-07 09:59:30 +01001230 // Returns whether this block dominates the blocked passed as parameter.
Nicolas Geoffray622d9c32014-05-12 16:11:02 +01001231 bool Dominates(HBasicBlock* block) const;
1232
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +01001233 size_t GetLifetimeStart() const { return lifetime_start_; }
1234 size_t GetLifetimeEnd() const { return lifetime_end_; }
1235
1236 void SetLifetimeStart(size_t start) { lifetime_start_ = start; }
1237 void SetLifetimeEnd(size_t end) { lifetime_end_ = end; }
1238
David Brazdil8d5b8b22015-03-24 10:51:52 +00001239 bool EndsWithControlFlowInstruction() const;
David Brazdilb2bd1c52015-03-25 11:17:37 +00001240 bool EndsWithIf() const;
David Brazdilffee3d32015-07-06 11:48:53 +01001241 bool EndsWithTryBoundary() const;
David Brazdilb2bd1c52015-03-25 11:17:37 +00001242 bool HasSinglePhi() const;
1243
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001244 private:
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001245 HGraph* graph_;
Vladimir Marko60584552015-09-03 13:35:12 +00001246 ArenaVector<HBasicBlock*> predecessors_;
1247 ArenaVector<HBasicBlock*> successors_;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001248 HInstructionList instructions_;
1249 HInstructionList phis_;
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +00001250 HLoopInformation* loop_information_;
1251 HBasicBlock* dominator_;
Vladimir Marko60584552015-09-03 13:35:12 +00001252 ArenaVector<HBasicBlock*> dominated_blocks_;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001253 uint32_t block_id_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001254 // The dex program counter of the first instruction of this block.
1255 const uint32_t dex_pc_;
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +01001256 size_t lifetime_start_;
1257 size_t lifetime_end_;
David Brazdilec16f792015-08-19 15:04:01 +01001258 TryCatchInformation* try_catch_information_;
David Brazdilffee3d32015-07-06 11:48:53 +01001259
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001260 friend class HGraph;
1261 friend class HInstruction;
1262
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001263 DISALLOW_COPY_AND_ASSIGN(HBasicBlock);
1264};
1265
David Brazdilb2bd1c52015-03-25 11:17:37 +00001266// Iterates over the LoopInformation of all loops which contain 'block'
1267// from the innermost to the outermost.
1268class HLoopInformationOutwardIterator : public ValueObject {
1269 public:
1270 explicit HLoopInformationOutwardIterator(const HBasicBlock& block)
1271 : current_(block.GetLoopInformation()) {}
1272
1273 bool Done() const { return current_ == nullptr; }
1274
1275 void Advance() {
1276 DCHECK(!Done());
David Brazdil69a28042015-04-29 17:16:07 +01001277 current_ = current_->GetPreHeader()->GetLoopInformation();
David Brazdilb2bd1c52015-03-25 11:17:37 +00001278 }
1279
1280 HLoopInformation* Current() const {
1281 DCHECK(!Done());
1282 return current_;
1283 }
1284
1285 private:
1286 HLoopInformation* current_;
1287
1288 DISALLOW_COPY_AND_ASSIGN(HLoopInformationOutwardIterator);
1289};
1290
Alexandre Ramesef20f712015-06-09 10:29:30 +01001291#define FOR_EACH_CONCRETE_INSTRUCTION_COMMON(M) \
Aart Bike9f37602015-10-09 11:15:55 -07001292 M(Above, Condition) \
1293 M(AboveOrEqual, Condition) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001294 M(Add, BinaryOperation) \
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00001295 M(And, BinaryOperation) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001296 M(ArrayGet, Instruction) \
1297 M(ArrayLength, Instruction) \
1298 M(ArraySet, Instruction) \
Aart Bike9f37602015-10-09 11:15:55 -07001299 M(Below, Condition) \
1300 M(BelowOrEqual, Condition) \
David Brazdil66d126e2015-04-03 16:02:44 +01001301 M(BooleanNot, UnaryOperation) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001302 M(BoundsCheck, Instruction) \
Calin Juravleb1498f62015-02-16 13:13:29 +00001303 M(BoundType, Instruction) \
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00001304 M(CheckCast, Instruction) \
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00001305 M(ClassTableGet, Instruction) \
David Brazdilcb1c0552015-08-04 16:22:25 +01001306 M(ClearException, Instruction) \
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001307 M(ClinitCheck, Instruction) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001308 M(Compare, BinaryOperation) \
Igor Murashkind01745e2017-04-05 16:40:31 -07001309 M(ConstructorFence, Instruction) \
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01001310 M(CurrentMethod, Instruction) \
Mingyao Yang063fc772016-08-02 11:02:54 -07001311 M(ShouldDeoptimizeFlag, Instruction) \
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001312 M(Deoptimize, Instruction) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001313 M(Div, BinaryOperation) \
Calin Juravled0d48522014-11-04 16:40:20 +00001314 M(DivZeroCheck, Instruction) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001315 M(DoubleConstant, Constant) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001316 M(Equal, Condition) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001317 M(Exit, Instruction) \
1318 M(FloatConstant, Constant) \
1319 M(Goto, Instruction) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001320 M(GreaterThan, Condition) \
1321 M(GreaterThanOrEqual, Condition) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001322 M(If, Instruction) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001323 M(InstanceFieldGet, Instruction) \
1324 M(InstanceFieldSet, Instruction) \
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00001325 M(InstanceOf, Instruction) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001326 M(IntConstant, Constant) \
Calin Juravle175dc732015-08-25 15:42:32 +01001327 M(InvokeUnresolved, Invoke) \
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001328 M(InvokeInterface, Invoke) \
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001329 M(InvokeStaticOrDirect, Invoke) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001330 M(InvokeVirtual, Invoke) \
Orion Hodsonac141392017-01-13 11:53:47 +00001331 M(InvokePolymorphic, Invoke) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001332 M(LessThan, Condition) \
1333 M(LessThanOrEqual, Condition) \
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00001334 M(LoadClass, Instruction) \
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00001335 M(LoadException, Instruction) \
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00001336 M(LoadString, Instruction) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001337 M(LongConstant, Constant) \
Calin Juravle27df7582015-04-17 19:12:31 +01001338 M(MemoryBarrier, Instruction) \
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00001339 M(MonitorOperation, Instruction) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001340 M(Mul, BinaryOperation) \
David Srbecky0cf44932015-12-09 14:09:59 +00001341 M(NativeDebugInfo, Instruction) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001342 M(Neg, UnaryOperation) \
1343 M(NewArray, Instruction) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001344 M(NewInstance, Instruction) \
Roland Levillain1cc5f2512014-10-22 18:06:21 +01001345 M(Not, UnaryOperation) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001346 M(NotEqual, Condition) \
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001347 M(NullConstant, Instruction) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001348 M(NullCheck, Instruction) \
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00001349 M(Or, BinaryOperation) \
Mark Mendellfe57faa2015-09-18 09:26:15 -04001350 M(PackedSwitch, Instruction) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001351 M(ParallelMove, Instruction) \
Calin Juravle7c4954d2014-10-28 16:57:40 +00001352 M(ParameterValue, Instruction) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001353 M(Phi, Instruction) \
Calin Juravle9aec02f2014-11-18 23:06:35 +00001354 M(Rem, BinaryOperation) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001355 M(Return, Instruction) \
1356 M(ReturnVoid, Instruction) \
Scott Wakeling40a04bf2015-12-11 09:50:36 +00001357 M(Ror, BinaryOperation) \
Calin Juravle9aec02f2014-11-18 23:06:35 +00001358 M(Shl, BinaryOperation) \
1359 M(Shr, BinaryOperation) \
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001360 M(StaticFieldGet, Instruction) \
1361 M(StaticFieldSet, Instruction) \
Calin Juravlee460d1d2015-09-29 04:52:17 +01001362 M(UnresolvedInstanceFieldGet, Instruction) \
1363 M(UnresolvedInstanceFieldSet, Instruction) \
1364 M(UnresolvedStaticFieldGet, Instruction) \
1365 M(UnresolvedStaticFieldSet, Instruction) \
David Brazdil74eb1b22015-12-14 11:44:01 +00001366 M(Select, Instruction) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001367 M(Sub, BinaryOperation) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001368 M(SuspendCheck, Instruction) \
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00001369 M(Throw, Instruction) \
David Brazdilfc6a86a2015-06-26 10:33:45 +00001370 M(TryBoundary, Instruction) \
Roland Levillaindff1f282014-11-05 14:15:05 +00001371 M(TypeConversion, Instruction) \
Calin Juravle9aec02f2014-11-18 23:06:35 +00001372 M(UShr, BinaryOperation) \
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00001373 M(Xor, BinaryOperation) \
Aart Bikf8f5a162017-02-06 15:35:29 -08001374 M(VecReplicateScalar, VecUnaryOperation) \
Aart Bikf8f5a162017-02-06 15:35:29 -08001375 M(VecSumReduce, VecUnaryOperation) \
1376 M(VecCnv, VecUnaryOperation) \
1377 M(VecNeg, VecUnaryOperation) \
Aart Bik6daebeb2017-04-03 14:35:41 -07001378 M(VecAbs, VecUnaryOperation) \
Aart Bikf8f5a162017-02-06 15:35:29 -08001379 M(VecNot, VecUnaryOperation) \
1380 M(VecAdd, VecBinaryOperation) \
Aart Bikf3e61ee2017-04-12 17:09:20 -07001381 M(VecHalvingAdd, VecBinaryOperation) \
Aart Bikf8f5a162017-02-06 15:35:29 -08001382 M(VecSub, VecBinaryOperation) \
1383 M(VecMul, VecBinaryOperation) \
1384 M(VecDiv, VecBinaryOperation) \
Aart Bikf3e61ee2017-04-12 17:09:20 -07001385 M(VecMin, VecBinaryOperation) \
1386 M(VecMax, VecBinaryOperation) \
Aart Bikf8f5a162017-02-06 15:35:29 -08001387 M(VecAnd, VecBinaryOperation) \
1388 M(VecAndNot, VecBinaryOperation) \
1389 M(VecOr, VecBinaryOperation) \
1390 M(VecXor, VecBinaryOperation) \
1391 M(VecShl, VecBinaryOperation) \
1392 M(VecShr, VecBinaryOperation) \
1393 M(VecUShr, VecBinaryOperation) \
Aart Bik8de59162017-04-21 09:42:01 -07001394 M(VecSetScalars, VecOperation) \
Artem Serovf34dd202017-04-10 17:41:46 +01001395 M(VecMultiplyAccumulate, VecOperation) \
Aart Bikf8f5a162017-02-06 15:35:29 -08001396 M(VecLoad, VecMemoryOperation) \
1397 M(VecStore, VecMemoryOperation) \
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001398
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03001399/*
1400 * Instructions, shared across several (not all) architectures.
1401 */
1402#if !defined(ART_ENABLE_CODEGEN_arm) && !defined(ART_ENABLE_CODEGEN_arm64)
1403#define FOR_EACH_CONCRETE_INSTRUCTION_SHARED(M)
1404#else
1405#define FOR_EACH_CONCRETE_INSTRUCTION_SHARED(M) \
Artem Serov7fc63502016-02-09 17:15:29 +00001406 M(BitwiseNegatedRight, Instruction) \
Anton Kirilov74234da2017-01-13 14:42:47 +00001407 M(DataProcWithShifterOp, Instruction) \
Artem Serov328429f2016-07-06 16:23:04 +01001408 M(MultiplyAccumulate, Instruction) \
Artem Serove1811ed2017-04-27 16:50:47 +01001409 M(IntermediateAddress, Instruction) \
1410 M(IntermediateAddressIndex, Instruction)
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03001411#endif
1412
Vladimir Markob4536b72015-11-24 13:45:23 +00001413#ifndef ART_ENABLE_CODEGEN_arm
Alexandre Ramesef20f712015-06-09 10:29:30 +01001414#define FOR_EACH_CONCRETE_INSTRUCTION_ARM(M)
Vladimir Markob4536b72015-11-24 13:45:23 +00001415#else
1416#define FOR_EACH_CONCRETE_INSTRUCTION_ARM(M) \
1417 M(ArmDexCacheArraysBase, Instruction)
1418#endif
Alexandre Ramesef20f712015-06-09 10:29:30 +01001419
1420#define FOR_EACH_CONCRETE_INSTRUCTION_ARM64(M)
1421
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001422#ifndef ART_ENABLE_CODEGEN_mips
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001423#define FOR_EACH_CONCRETE_INSTRUCTION_MIPS(M)
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001424#else
1425#define FOR_EACH_CONCRETE_INSTRUCTION_MIPS(M) \
1426 M(MipsComputeBaseMethodAddress, Instruction) \
Alexey Frunze96b66822016-09-10 02:32:44 -07001427 M(MipsDexCacheArraysBase, Instruction) \
1428 M(MipsPackedSwitch, Instruction)
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001429#endif
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001430
Alexandre Ramesf39e0642015-06-23 11:33:45 +01001431#define FOR_EACH_CONCRETE_INSTRUCTION_MIPS64(M)
1432
Alexandre Ramese6dbf482015-10-19 10:10:41 +01001433#ifndef ART_ENABLE_CODEGEN_x86
1434#define FOR_EACH_CONCRETE_INSTRUCTION_X86(M)
1435#else
Mark Mendell0616ae02015-04-17 12:49:27 -04001436#define FOR_EACH_CONCRETE_INSTRUCTION_X86(M) \
1437 M(X86ComputeBaseMethodAddress, Instruction) \
Mark Mendell805b3b52015-09-18 14:10:29 -04001438 M(X86LoadFromConstantTable, Instruction) \
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001439 M(X86FPNeg, Instruction) \
Mark Mendell805b3b52015-09-18 14:10:29 -04001440 M(X86PackedSwitch, Instruction)
Alexandre Ramese6dbf482015-10-19 10:10:41 +01001441#endif
Alexandre Ramesef20f712015-06-09 10:29:30 +01001442
1443#define FOR_EACH_CONCRETE_INSTRUCTION_X86_64(M)
1444
1445#define FOR_EACH_CONCRETE_INSTRUCTION(M) \
1446 FOR_EACH_CONCRETE_INSTRUCTION_COMMON(M) \
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03001447 FOR_EACH_CONCRETE_INSTRUCTION_SHARED(M) \
Alexandre Ramesef20f712015-06-09 10:29:30 +01001448 FOR_EACH_CONCRETE_INSTRUCTION_ARM(M) \
1449 FOR_EACH_CONCRETE_INSTRUCTION_ARM64(M) \
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001450 FOR_EACH_CONCRETE_INSTRUCTION_MIPS(M) \
Alexandre Ramesf39e0642015-06-23 11:33:45 +01001451 FOR_EACH_CONCRETE_INSTRUCTION_MIPS64(M) \
Alexandre Ramesef20f712015-06-09 10:29:30 +01001452 FOR_EACH_CONCRETE_INSTRUCTION_X86(M) \
1453 FOR_EACH_CONCRETE_INSTRUCTION_X86_64(M)
1454
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001455#define FOR_EACH_ABSTRACT_INSTRUCTION(M) \
1456 M(Condition, BinaryOperation) \
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001457 M(Constant, Instruction) \
Roland Levillain88cb1752014-10-20 16:36:47 +01001458 M(UnaryOperation, Instruction) \
Calin Juravle34bacdf2014-10-07 20:23:36 +01001459 M(BinaryOperation, Instruction) \
Aart Bikf8f5a162017-02-06 15:35:29 -08001460 M(Invoke, Instruction) \
1461 M(VecOperation, Instruction) \
1462 M(VecUnaryOperation, VecOperation) \
1463 M(VecBinaryOperation, VecOperation) \
1464 M(VecMemoryOperation, VecOperation)
Dave Allison20dfc792014-06-16 20:44:29 -07001465
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001466#define FOR_EACH_INSTRUCTION(M) \
1467 FOR_EACH_CONCRETE_INSTRUCTION(M) \
1468 FOR_EACH_ABSTRACT_INSTRUCTION(M)
1469
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001470#define FORWARD_DECLARATION(type, super) class H##type;
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001471FOR_EACH_INSTRUCTION(FORWARD_DECLARATION)
1472#undef FORWARD_DECLARATION
1473
Vladimir Marko372f10e2016-05-17 16:30:10 +01001474#define DECLARE_INSTRUCTION(type) \
1475 InstructionKind GetKindInternal() const OVERRIDE { return k##type; } \
1476 const char* DebugName() const OVERRIDE { return #type; } \
1477 bool InstructionTypeEquals(const HInstruction* other) const OVERRIDE { \
1478 return other->Is##type(); \
1479 } \
Alexandre Rames2ed20af2015-03-06 13:55:35 +00001480 void Accept(HGraphVisitor* visitor) OVERRIDE
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001481
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001482#define DECLARE_ABSTRACT_INSTRUCTION(type) \
1483 bool Is##type() const { return As##type() != nullptr; } \
1484 const H##type* As##type() const { return this; } \
1485 H##type* As##type() { return this; }
1486
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001487template <typename T>
Vladimir Markof9f64412015-09-02 14:05:49 +01001488class HUseListNode : public ArenaObject<kArenaAllocUseListNode> {
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001489 public:
Igor Murashkind01745e2017-04-05 16:40:31 -07001490 // Get the instruction which has this use as one of the inputs.
David Brazdiled596192015-01-23 10:39:45 +00001491 T GetUser() const { return user_; }
Igor Murashkind01745e2017-04-05 16:40:31 -07001492 // Get the position of the input record that this use corresponds to.
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001493 size_t GetIndex() const { return index_; }
Igor Murashkind01745e2017-04-05 16:40:31 -07001494 // Set the position of the input record that this use corresponds to.
Nicolas Geoffray5d7b7f82015-04-28 00:52:43 +01001495 void SetIndex(size_t index) { index_ = index; }
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001496
Vladimir Marko46817b82016-03-29 12:21:58 +01001497 // Hook for the IntrusiveForwardList<>.
1498 // TODO: Hide this better.
1499 IntrusiveForwardListHook hook;
1500
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001501 private:
David Brazdiled596192015-01-23 10:39:45 +00001502 HUseListNode(T user, size_t index)
Vladimir Marko46817b82016-03-29 12:21:58 +01001503 : user_(user), index_(index) {}
David Brazdiled596192015-01-23 10:39:45 +00001504
1505 T const user_;
Nicolas Geoffray5d7b7f82015-04-28 00:52:43 +01001506 size_t index_;
David Brazdiled596192015-01-23 10:39:45 +00001507
Vladimir Marko46817b82016-03-29 12:21:58 +01001508 friend class HInstruction;
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001509
1510 DISALLOW_COPY_AND_ASSIGN(HUseListNode);
1511};
1512
David Brazdiled596192015-01-23 10:39:45 +00001513template <typename T>
Vladimir Marko46817b82016-03-29 12:21:58 +01001514using HUseList = IntrusiveForwardList<HUseListNode<T>>;
David Brazdiled596192015-01-23 10:39:45 +00001515
David Brazdil1abb4192015-02-17 18:33:36 +00001516// This class is used by HEnvironment and HInstruction classes to record the
1517// instructions they use and pointers to the corresponding HUseListNodes kept
1518// by the used instructions.
1519template <typename T>
Vladimir Marko76c92ac2015-09-17 15:39:16 +01001520class HUserRecord : public ValueObject {
David Brazdil1abb4192015-02-17 18:33:36 +00001521 public:
Vladimir Marko46817b82016-03-29 12:21:58 +01001522 HUserRecord() : instruction_(nullptr), before_use_node_() {}
1523 explicit HUserRecord(HInstruction* instruction) : instruction_(instruction), before_use_node_() {}
David Brazdil1abb4192015-02-17 18:33:36 +00001524
Vladimir Marko46817b82016-03-29 12:21:58 +01001525 HUserRecord(const HUserRecord<T>& old_record, typename HUseList<T>::iterator before_use_node)
1526 : HUserRecord(old_record.instruction_, before_use_node) {}
1527 HUserRecord(HInstruction* instruction, typename HUseList<T>::iterator before_use_node)
1528 : instruction_(instruction), before_use_node_(before_use_node) {
David Brazdil1abb4192015-02-17 18:33:36 +00001529 DCHECK(instruction_ != nullptr);
David Brazdil1abb4192015-02-17 18:33:36 +00001530 }
1531
1532 HInstruction* GetInstruction() const { return instruction_; }
Vladimir Marko46817b82016-03-29 12:21:58 +01001533 typename HUseList<T>::iterator GetBeforeUseNode() const { return before_use_node_; }
1534 typename HUseList<T>::iterator GetUseNode() const { return ++GetBeforeUseNode(); }
David Brazdil1abb4192015-02-17 18:33:36 +00001535
1536 private:
1537 // Instruction used by the user.
1538 HInstruction* instruction_;
1539
Vladimir Marko46817b82016-03-29 12:21:58 +01001540 // Iterator before the corresponding entry in the use list kept by 'instruction_'.
1541 typename HUseList<T>::iterator before_use_node_;
David Brazdil1abb4192015-02-17 18:33:36 +00001542};
1543
Vladimir Markoe9004912016-06-16 16:50:52 +01001544// Helper class that extracts the input instruction from HUserRecord<HInstruction*>.
1545// This is used for HInstruction::GetInputs() to return a container wrapper providing
1546// HInstruction* values even though the underlying container has HUserRecord<>s.
1547struct HInputExtractor {
1548 HInstruction* operator()(HUserRecord<HInstruction*>& record) const {
1549 return record.GetInstruction();
1550 }
1551 const HInstruction* operator()(const HUserRecord<HInstruction*>& record) const {
1552 return record.GetInstruction();
1553 }
1554};
1555
1556using HInputsRef = TransformArrayRef<HUserRecord<HInstruction*>, HInputExtractor>;
1557using HConstInputsRef = TransformArrayRef<const HUserRecord<HInstruction*>, HInputExtractor>;
1558
Aart Bik854a02b2015-07-14 16:07:00 -07001559/**
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001560 * Side-effects representation.
Aart Bik854a02b2015-07-14 16:07:00 -07001561 *
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001562 * For write/read dependences on fields/arrays, the dependence analysis uses
1563 * type disambiguation (e.g. a float field write cannot modify the value of an
1564 * integer field read) and the access type (e.g. a reference array write cannot
1565 * modify the value of a reference field read [although it may modify the
1566 * reference fetch prior to reading the field, which is represented by its own
1567 * write/read dependence]). The analysis makes conservative points-to
1568 * assumptions on reference types (e.g. two same typed arrays are assumed to be
1569 * the same, and any reference read depends on any reference read without
1570 * further regard of its type).
Aart Bik854a02b2015-07-14 16:07:00 -07001571 *
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001572 * The internal representation uses 38-bit and is described in the table below.
1573 * The first line indicates the side effect, and for field/array accesses the
1574 * second line indicates the type of the access (in the order of the
1575 * Primitive::Type enum).
1576 * The two numbered lines below indicate the bit position in the bitfield (read
1577 * vertically).
Aart Bik854a02b2015-07-14 16:07:00 -07001578 *
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001579 * |Depends on GC|ARRAY-R |FIELD-R |Can trigger GC|ARRAY-W |FIELD-W |
1580 * +-------------+---------+---------+--------------+---------+---------+
1581 * | |DFJISCBZL|DFJISCBZL| |DFJISCBZL|DFJISCBZL|
1582 * | 3 |333333322|222222221| 1 |111111110|000000000|
1583 * | 7 |654321098|765432109| 8 |765432109|876543210|
1584 *
1585 * Note that, to ease the implementation, 'changes' bits are least significant
1586 * bits, while 'dependency' bits are most significant bits.
Aart Bik854a02b2015-07-14 16:07:00 -07001587 */
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001588class SideEffects : public ValueObject {
1589 public:
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001590 SideEffects() : flags_(0) {}
1591
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001592 static SideEffects None() {
1593 return SideEffects(0);
1594 }
1595
1596 static SideEffects All() {
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001597 return SideEffects(kAllChangeBits | kAllDependOnBits);
1598 }
1599
1600 static SideEffects AllChanges() {
1601 return SideEffects(kAllChangeBits);
1602 }
1603
1604 static SideEffects AllDependencies() {
1605 return SideEffects(kAllDependOnBits);
1606 }
1607
1608 static SideEffects AllExceptGCDependency() {
1609 return AllWritesAndReads().Union(SideEffects::CanTriggerGC());
1610 }
1611
1612 static SideEffects AllWritesAndReads() {
Aart Bik854a02b2015-07-14 16:07:00 -07001613 return SideEffects(kAllWrites | kAllReads);
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001614 }
1615
Aart Bik34c3ba92015-07-20 14:08:59 -07001616 static SideEffects AllWrites() {
1617 return SideEffects(kAllWrites);
1618 }
1619
1620 static SideEffects AllReads() {
1621 return SideEffects(kAllReads);
1622 }
1623
1624 static SideEffects FieldWriteOfType(Primitive::Type type, bool is_volatile) {
1625 return is_volatile
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001626 ? AllWritesAndReads()
Aart Bik18b36ab2016-04-13 16:41:35 -07001627 : SideEffects(TypeFlag(type, kFieldWriteOffset));
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001628 }
1629
Aart Bik854a02b2015-07-14 16:07:00 -07001630 static SideEffects ArrayWriteOfType(Primitive::Type type) {
Aart Bik18b36ab2016-04-13 16:41:35 -07001631 return SideEffects(TypeFlag(type, kArrayWriteOffset));
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001632 }
1633
Aart Bik34c3ba92015-07-20 14:08:59 -07001634 static SideEffects FieldReadOfType(Primitive::Type type, bool is_volatile) {
1635 return is_volatile
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001636 ? AllWritesAndReads()
Aart Bik18b36ab2016-04-13 16:41:35 -07001637 : SideEffects(TypeFlag(type, kFieldReadOffset));
Aart Bik854a02b2015-07-14 16:07:00 -07001638 }
1639
1640 static SideEffects ArrayReadOfType(Primitive::Type type) {
Aart Bik18b36ab2016-04-13 16:41:35 -07001641 return SideEffects(TypeFlag(type, kArrayReadOffset));
Aart Bik854a02b2015-07-14 16:07:00 -07001642 }
1643
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001644 static SideEffects CanTriggerGC() {
1645 return SideEffects(1ULL << kCanTriggerGCBit);
1646 }
1647
1648 static SideEffects DependsOnGC() {
1649 return SideEffects(1ULL << kDependsOnGCBit);
1650 }
1651
Aart Bik854a02b2015-07-14 16:07:00 -07001652 // Combines the side-effects of this and the other.
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001653 SideEffects Union(SideEffects other) const {
1654 return SideEffects(flags_ | other.flags_);
1655 }
1656
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001657 SideEffects Exclusion(SideEffects other) const {
1658 return SideEffects(flags_ & ~other.flags_);
1659 }
1660
Alexandre Ramese6dbf482015-10-19 10:10:41 +01001661 void Add(SideEffects other) {
1662 flags_ |= other.flags_;
1663 }
1664
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001665 bool Includes(SideEffects other) const {
1666 return (other.flags_ & flags_) == other.flags_;
1667 }
1668
1669 bool HasSideEffects() const {
1670 return (flags_ & kAllChangeBits);
1671 }
1672
1673 bool HasDependencies() const {
1674 return (flags_ & kAllDependOnBits);
1675 }
1676
1677 // Returns true if there are no side effects or dependencies.
1678 bool DoesNothing() const {
1679 return flags_ == 0;
1680 }
1681
Aart Bik854a02b2015-07-14 16:07:00 -07001682 // Returns true if something is written.
1683 bool DoesAnyWrite() const {
1684 return (flags_ & kAllWrites);
Roland Levillain72bceff2014-09-15 18:29:00 +01001685 }
1686
Aart Bik854a02b2015-07-14 16:07:00 -07001687 // Returns true if something is read.
1688 bool DoesAnyRead() const {
1689 return (flags_ & kAllReads);
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001690 }
1691
Aart Bik854a02b2015-07-14 16:07:00 -07001692 // Returns true if potentially everything is written and read
1693 // (every type and every kind of access).
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001694 bool DoesAllReadWrite() const {
1695 return (flags_ & (kAllWrites | kAllReads)) == (kAllWrites | kAllReads);
1696 }
1697
Aart Bik854a02b2015-07-14 16:07:00 -07001698 bool DoesAll() const {
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001699 return flags_ == (kAllChangeBits | kAllDependOnBits);
Aart Bik854a02b2015-07-14 16:07:00 -07001700 }
1701
Roland Levillain0d5a2812015-11-13 10:07:31 +00001702 // Returns true if `this` may read something written by `other`.
Aart Bik854a02b2015-07-14 16:07:00 -07001703 bool MayDependOn(SideEffects other) const {
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001704 const uint64_t depends_on_flags = (flags_ & kAllDependOnBits) >> kChangeBits;
1705 return (other.flags_ & depends_on_flags);
Aart Bik854a02b2015-07-14 16:07:00 -07001706 }
1707
1708 // Returns string representation of flags (for debugging only).
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001709 // Format: |x|DFJISCBZL|DFJISCBZL|y|DFJISCBZL|DFJISCBZL|
Aart Bik854a02b2015-07-14 16:07:00 -07001710 std::string ToString() const {
Aart Bik854a02b2015-07-14 16:07:00 -07001711 std::string flags = "|";
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001712 for (int s = kLastBit; s >= 0; s--) {
1713 bool current_bit_is_set = ((flags_ >> s) & 1) != 0;
1714 if ((s == kDependsOnGCBit) || (s == kCanTriggerGCBit)) {
1715 // This is a bit for the GC side effect.
1716 if (current_bit_is_set) {
1717 flags += "GC";
1718 }
Aart Bik854a02b2015-07-14 16:07:00 -07001719 flags += "|";
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001720 } else {
1721 // This is a bit for the array/field analysis.
1722 // The underscore character stands for the 'can trigger GC' bit.
1723 static const char *kDebug = "LZBCSIJFDLZBCSIJFD_LZBCSIJFDLZBCSIJFD";
1724 if (current_bit_is_set) {
1725 flags += kDebug[s];
1726 }
1727 if ((s == kFieldWriteOffset) || (s == kArrayWriteOffset) ||
1728 (s == kFieldReadOffset) || (s == kArrayReadOffset)) {
1729 flags += "|";
1730 }
1731 }
Aart Bik854a02b2015-07-14 16:07:00 -07001732 }
1733 return flags;
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001734 }
1735
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001736 bool Equals(const SideEffects& other) const { return flags_ == other.flags_; }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001737
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001738 private:
1739 static constexpr int kFieldArrayAnalysisBits = 9;
1740
1741 static constexpr int kFieldWriteOffset = 0;
1742 static constexpr int kArrayWriteOffset = kFieldWriteOffset + kFieldArrayAnalysisBits;
1743 static constexpr int kLastBitForWrites = kArrayWriteOffset + kFieldArrayAnalysisBits - 1;
1744 static constexpr int kCanTriggerGCBit = kLastBitForWrites + 1;
1745
1746 static constexpr int kChangeBits = kCanTriggerGCBit + 1;
1747
1748 static constexpr int kFieldReadOffset = kCanTriggerGCBit + 1;
1749 static constexpr int kArrayReadOffset = kFieldReadOffset + kFieldArrayAnalysisBits;
1750 static constexpr int kLastBitForReads = kArrayReadOffset + kFieldArrayAnalysisBits - 1;
1751 static constexpr int kDependsOnGCBit = kLastBitForReads + 1;
1752
1753 static constexpr int kLastBit = kDependsOnGCBit;
1754 static constexpr int kDependOnBits = kLastBit + 1 - kChangeBits;
1755
1756 // Aliases.
1757
1758 static_assert(kChangeBits == kDependOnBits,
1759 "the 'change' bits should match the 'depend on' bits.");
1760
1761 static constexpr uint64_t kAllChangeBits = ((1ULL << kChangeBits) - 1);
1762 static constexpr uint64_t kAllDependOnBits = ((1ULL << kDependOnBits) - 1) << kChangeBits;
1763 static constexpr uint64_t kAllWrites =
1764 ((1ULL << (kLastBitForWrites + 1 - kFieldWriteOffset)) - 1) << kFieldWriteOffset;
1765 static constexpr uint64_t kAllReads =
1766 ((1ULL << (kLastBitForReads + 1 - kFieldReadOffset)) - 1) << kFieldReadOffset;
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001767
Aart Bik854a02b2015-07-14 16:07:00 -07001768 // Translates type to bit flag.
1769 static uint64_t TypeFlag(Primitive::Type type, int offset) {
1770 CHECK_NE(type, Primitive::kPrimVoid);
1771 const uint64_t one = 1;
1772 const int shift = type; // 0-based consecutive enum
1773 DCHECK_LE(kFieldWriteOffset, shift);
1774 DCHECK_LT(shift, kArrayWriteOffset);
1775 return one << (type + offset);
1776 }
1777
1778 // Private constructor on direct flags value.
1779 explicit SideEffects(uint64_t flags) : flags_(flags) {}
1780
1781 uint64_t flags_;
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001782};
1783
David Brazdiled596192015-01-23 10:39:45 +00001784// A HEnvironment object contains the values of virtual registers at a given location.
Vladimir Markof9f64412015-09-02 14:05:49 +01001785class HEnvironment : public ArenaObject<kArenaAllocEnvironment> {
David Brazdiled596192015-01-23 10:39:45 +00001786 public:
Mingyao Yang01b47b02017-02-03 12:09:57 -08001787 ALWAYS_INLINE HEnvironment(ArenaAllocator* arena,
1788 size_t number_of_vregs,
1789 ArtMethod* method,
1790 uint32_t dex_pc,
1791 HInstruction* holder)
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001792 : vregs_(number_of_vregs, arena->Adapter(kArenaAllocEnvironmentVRegs)),
Vladimir Markoec32f642017-06-02 10:51:55 +01001793 locations_(arena->Adapter(kArenaAllocEnvironmentLocations)),
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001794 parent_(nullptr),
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00001795 method_(method),
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +01001796 dex_pc_(dex_pc),
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01001797 holder_(holder) {
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001798 }
1799
Mingyao Yang01b47b02017-02-03 12:09:57 -08001800 ALWAYS_INLINE HEnvironment(ArenaAllocator* arena, const HEnvironment& to_copy, HInstruction* holder)
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +01001801 : HEnvironment(arena,
1802 to_copy.Size(),
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00001803 to_copy.GetMethod(),
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +01001804 to_copy.GetDexPc(),
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01001805 holder) {}
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +01001806
Vladimir Markoec32f642017-06-02 10:51:55 +01001807 void AllocateLocations() {
1808 DCHECK(locations_.empty());
1809 locations_.resize(vregs_.size());
1810 }
1811
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001812 void SetAndCopyParentChain(ArenaAllocator* allocator, HEnvironment* parent) {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01001813 if (parent_ != nullptr) {
1814 parent_->SetAndCopyParentChain(allocator, parent);
1815 } else {
1816 parent_ = new (allocator) HEnvironment(allocator, *parent, holder_);
1817 parent_->CopyFrom(parent);
1818 if (parent->GetParent() != nullptr) {
1819 parent_->SetAndCopyParentChain(allocator, parent->GetParent());
1820 }
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001821 }
David Brazdiled596192015-01-23 10:39:45 +00001822 }
1823
Vladimir Marko71bf8092015-09-15 15:33:14 +01001824 void CopyFrom(const ArenaVector<HInstruction*>& locals);
Nicolas Geoffray8c0c91a2015-05-07 11:46:05 +01001825 void CopyFrom(HEnvironment* environment);
1826
Mingyao Yang206d6fd2015-04-13 16:46:28 -07001827 // Copy from `env`. If it's a loop phi for `loop_header`, copy the first
1828 // input to the loop phi instead. This is for inserting instructions that
1829 // require an environment (like HDeoptimization) in the loop pre-header.
1830 void CopyFromWithLoopPhiAdjustment(HEnvironment* env, HBasicBlock* loop_header);
David Brazdiled596192015-01-23 10:39:45 +00001831
1832 void SetRawEnvAt(size_t index, HInstruction* instruction) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001833 vregs_[index] = HUserRecord<HEnvironment*>(instruction);
David Brazdiled596192015-01-23 10:39:45 +00001834 }
1835
1836 HInstruction* GetInstructionAt(size_t index) const {
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001837 return vregs_[index].GetInstruction();
David Brazdiled596192015-01-23 10:39:45 +00001838 }
1839
David Brazdil1abb4192015-02-17 18:33:36 +00001840 void RemoveAsUserOfInput(size_t index) const;
David Brazdiled596192015-01-23 10:39:45 +00001841
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001842 size_t Size() const { return vregs_.size(); }
David Brazdiled596192015-01-23 10:39:45 +00001843
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001844 HEnvironment* GetParent() const { return parent_; }
1845
1846 void SetLocationAt(size_t index, Location location) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001847 locations_[index] = location;
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001848 }
1849
1850 Location GetLocationAt(size_t index) const {
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001851 return locations_[index];
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001852 }
1853
1854 uint32_t GetDexPc() const {
1855 return dex_pc_;
1856 }
1857
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00001858 ArtMethod* GetMethod() const {
1859 return method_;
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001860 }
1861
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01001862 HInstruction* GetHolder() const {
1863 return holder_;
1864 }
1865
Nicolas Geoffray8e1ef532015-11-23 12:04:37 +00001866
1867 bool IsFromInlinedInvoke() const {
1868 return GetParent() != nullptr;
1869 }
1870
David Brazdiled596192015-01-23 10:39:45 +00001871 private:
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001872 ArenaVector<HUserRecord<HEnvironment*>> vregs_;
1873 ArenaVector<Location> locations_;
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001874 HEnvironment* parent_;
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00001875 ArtMethod* method_;
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01001876 const uint32_t dex_pc_;
David Brazdiled596192015-01-23 10:39:45 +00001877
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +01001878 // The instruction that holds this environment.
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01001879 HInstruction* const holder_;
1880
Nicolas Geoffray5d7b7f82015-04-28 00:52:43 +01001881 friend class HInstruction;
David Brazdiled596192015-01-23 10:39:45 +00001882
1883 DISALLOW_COPY_AND_ASSIGN(HEnvironment);
1884};
1885
Vladimir Markof9f64412015-09-02 14:05:49 +01001886class HInstruction : public ArenaObject<kArenaAllocInstruction> {
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001887 public:
Calin Juravle154746b2015-10-06 15:46:54 +01001888 HInstruction(SideEffects side_effects, uint32_t dex_pc)
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001889 : previous_(nullptr),
1890 next_(nullptr),
1891 block_(nullptr),
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001892 dex_pc_(dex_pc),
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001893 id_(-1),
Nicolas Geoffray804d0932014-05-02 08:46:00 +01001894 ssa_index_(-1),
Vladimir Markoa1de9182016-02-25 11:37:38 +00001895 packed_fields_(0u),
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001896 environment_(nullptr),
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +01001897 locations_(nullptr),
1898 live_interval_(nullptr),
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001899 lifetime_position_(kNoLifetime),
Calin Juravleb1498f62015-02-16 13:13:29 +00001900 side_effects_(side_effects),
Vladimir Markoa1de9182016-02-25 11:37:38 +00001901 reference_type_handle_(ReferenceTypeInfo::CreateInvalid().GetTypeHandle()) {
1902 SetPackedFlag<kFlagReferenceTypeIsExact>(ReferenceTypeInfo::CreateInvalid().IsExact());
1903 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001904
Dave Allison20dfc792014-06-16 20:44:29 -07001905 virtual ~HInstruction() {}
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001906
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001907#define DECLARE_KIND(type, super) k##type,
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001908 enum InstructionKind {
1909 FOR_EACH_INSTRUCTION(DECLARE_KIND)
1910 };
1911#undef DECLARE_KIND
1912
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001913 HInstruction* GetNext() const { return next_; }
1914 HInstruction* GetPrevious() const { return previous_; }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001915
Calin Juravle77520bc2015-01-12 18:45:46 +00001916 HInstruction* GetNextDisregardingMoves() const;
1917 HInstruction* GetPreviousDisregardingMoves() const;
1918
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001919 HBasicBlock* GetBlock() const { return block_; }
Roland Levillain9867bc72015-08-05 10:21:34 +01001920 ArenaAllocator* GetArena() const { return block_->GetGraph()->GetArena(); }
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001921 void SetBlock(HBasicBlock* block) { block_ = block; }
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +01001922 bool IsInBlock() const { return block_ != nullptr; }
1923 bool IsInLoop() const { return block_->IsInLoop(); }
Nicolas Geoffray15bd2282016-01-05 15:55:41 +00001924 bool IsLoopHeaderPhi() const { return IsPhi() && block_->IsLoopHeader(); }
1925 bool IsIrreducibleLoopHeaderPhi() const {
1926 return IsLoopHeaderPhi() && GetBlock()->GetLoopInformation()->IsIrreducible();
1927 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001928
Vladimir Marko372f10e2016-05-17 16:30:10 +01001929 virtual ArrayRef<HUserRecord<HInstruction*>> GetInputRecords() = 0;
1930
1931 ArrayRef<const HUserRecord<HInstruction*>> GetInputRecords() const {
1932 // One virtual method is enough, just const_cast<> and then re-add the const.
1933 return ArrayRef<const HUserRecord<HInstruction*>>(
1934 const_cast<HInstruction*>(this)->GetInputRecords());
1935 }
1936
Vladimir Markoe9004912016-06-16 16:50:52 +01001937 HInputsRef GetInputs() {
1938 return MakeTransformArrayRef(GetInputRecords(), HInputExtractor());
Vladimir Marko372f10e2016-05-17 16:30:10 +01001939 }
1940
Vladimir Markoe9004912016-06-16 16:50:52 +01001941 HConstInputsRef GetInputs() const {
1942 return MakeTransformArrayRef(GetInputRecords(), HInputExtractor());
Vladimir Marko372f10e2016-05-17 16:30:10 +01001943 }
1944
1945 size_t InputCount() const { return GetInputRecords().size(); }
David Brazdil1abb4192015-02-17 18:33:36 +00001946 HInstruction* InputAt(size_t i) const { return InputRecordAt(i).GetInstruction(); }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001947
Aart Bik2767f4b2016-10-28 15:03:53 -07001948 bool HasInput(HInstruction* input) const {
1949 for (const HInstruction* i : GetInputs()) {
1950 if (i == input) {
1951 return true;
1952 }
1953 }
1954 return false;
1955 }
1956
Vladimir Marko372f10e2016-05-17 16:30:10 +01001957 void SetRawInputAt(size_t index, HInstruction* input) {
1958 SetRawInputRecordAt(index, HUserRecord<HInstruction*>(input));
1959 }
1960
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001961 virtual void Accept(HGraphVisitor* visitor) = 0;
1962 virtual const char* DebugName() const = 0;
1963
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001964 virtual Primitive::Type GetType() const { return Primitive::kPrimVoid; }
1965
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001966 virtual bool NeedsEnvironment() const { return false; }
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001967
1968 uint32_t GetDexPc() const { return dex_pc_; }
1969
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +01001970 virtual bool IsControlFlow() const { return false; }
David Brazdilec16f792015-08-19 15:04:01 +01001971
Nicolas Geoffray331605a2017-03-01 11:01:41 +00001972 // Can the instruction throw?
1973 // TODO: We should rename to CanVisiblyThrow, as some instructions (like HNewInstance),
1974 // could throw OOME, but it is still OK to remove them if they are unused.
Roland Levillaine161a2a2014-10-03 12:45:18 +01001975 virtual bool CanThrow() const { return false; }
David Brazdilec16f792015-08-19 15:04:01 +01001976 bool CanThrowIntoCatchBlock() const { return CanThrow() && block_->IsTryBlock(); }
Aart Bik854a02b2015-07-14 16:07:00 -07001977
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001978 bool HasSideEffects() const { return side_effects_.HasSideEffects(); }
Aart Bik854a02b2015-07-14 16:07:00 -07001979 bool DoesAnyWrite() const { return side_effects_.DoesAnyWrite(); }
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001980
Calin Juravle10e244f2015-01-26 18:54:32 +00001981 // Does not apply for all instructions, but having this at top level greatly
1982 // simplifies the null check elimination.
Calin Juravlea5ae3c32015-07-28 14:40:50 +00001983 // TODO: Consider merging can_be_null into ReferenceTypeInfo.
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001984 virtual bool CanBeNull() const {
1985 DCHECK_EQ(GetType(), Primitive::kPrimNot) << "CanBeNull only applies to reference types";
1986 return true;
1987 }
Calin Juravle10e244f2015-01-26 18:54:32 +00001988
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001989 virtual bool CanDoImplicitNullCheckOn(HInstruction* obj ATTRIBUTE_UNUSED) const {
Calin Juravle641547a2015-04-21 22:08:51 +01001990 return false;
1991 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001992
Nicolas Geoffraya3eca2d2016-01-12 16:03:16 +00001993 virtual bool IsActualObject() const {
1994 return GetType() == Primitive::kPrimNot;
1995 }
1996
Calin Juravle2e768302015-07-28 14:41:11 +00001997 void SetReferenceTypeInfo(ReferenceTypeInfo rti);
Calin Juravleacf735c2015-02-12 15:25:22 +00001998
Calin Juravle61d544b2015-02-23 16:46:57 +00001999 ReferenceTypeInfo GetReferenceTypeInfo() const {
2000 DCHECK_EQ(GetType(), Primitive::kPrimNot);
Vladimir Markoa1de9182016-02-25 11:37:38 +00002001 return ReferenceTypeInfo::CreateUnchecked(reference_type_handle_,
Vladimir Marko456307a2016-04-19 14:12:13 +00002002 GetPackedFlag<kFlagReferenceTypeIsExact>());
Calin Juravle61d544b2015-02-23 16:46:57 +00002003 }
Calin Juravleacf735c2015-02-12 15:25:22 +00002004
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002005 void AddUseAt(HInstruction* user, size_t index) {
David Brazdil1abb4192015-02-17 18:33:36 +00002006 DCHECK(user != nullptr);
Vladimir Marko46817b82016-03-29 12:21:58 +01002007 // Note: fixup_end remains valid across push_front().
2008 auto fixup_end = uses_.empty() ? uses_.begin() : ++uses_.begin();
2009 HUseListNode<HInstruction*>* new_node =
2010 new (GetBlock()->GetGraph()->GetArena()) HUseListNode<HInstruction*>(user, index);
2011 uses_.push_front(*new_node);
2012 FixUpUserRecordsAfterUseInsertion(fixup_end);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002013 }
2014
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002015 void AddEnvUseAt(HEnvironment* user, size_t index) {
Nicolas Geoffray724c9632014-09-22 12:27:27 +01002016 DCHECK(user != nullptr);
Vladimir Marko46817b82016-03-29 12:21:58 +01002017 // Note: env_fixup_end remains valid across push_front().
2018 auto env_fixup_end = env_uses_.empty() ? env_uses_.begin() : ++env_uses_.begin();
2019 HUseListNode<HEnvironment*>* new_node =
2020 new (GetBlock()->GetGraph()->GetArena()) HUseListNode<HEnvironment*>(user, index);
2021 env_uses_.push_front(*new_node);
2022 FixUpUserRecordsAfterEnvUseInsertion(env_fixup_end);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002023 }
2024
David Brazdil1abb4192015-02-17 18:33:36 +00002025 void RemoveAsUserOfInput(size_t input) {
2026 HUserRecord<HInstruction*> input_use = InputRecordAt(input);
Vladimir Marko46817b82016-03-29 12:21:58 +01002027 HUseList<HInstruction*>::iterator before_use_node = input_use.GetBeforeUseNode();
2028 input_use.GetInstruction()->uses_.erase_after(before_use_node);
2029 input_use.GetInstruction()->FixUpUserRecordsAfterUseRemoval(before_use_node);
David Brazdil1abb4192015-02-17 18:33:36 +00002030 }
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002031
Vladimir Marko372f10e2016-05-17 16:30:10 +01002032 void RemoveAsUserOfAllInputs() {
2033 for (const HUserRecord<HInstruction*>& input_use : GetInputRecords()) {
2034 HUseList<HInstruction*>::iterator before_use_node = input_use.GetBeforeUseNode();
2035 input_use.GetInstruction()->uses_.erase_after(before_use_node);
2036 input_use.GetInstruction()->FixUpUserRecordsAfterUseRemoval(before_use_node);
2037 }
2038 }
2039
David Brazdil1abb4192015-02-17 18:33:36 +00002040 const HUseList<HInstruction*>& GetUses() const { return uses_; }
2041 const HUseList<HEnvironment*>& GetEnvUses() const { return env_uses_; }
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002042
Vladimir Marko46817b82016-03-29 12:21:58 +01002043 bool HasUses() const { return !uses_.empty() || !env_uses_.empty(); }
2044 bool HasEnvironmentUses() const { return !env_uses_.empty(); }
2045 bool HasNonEnvironmentUses() const { return !uses_.empty(); }
Alexandre Rames188d4312015-04-09 18:30:21 +01002046 bool HasOnlyOneNonEnvironmentUse() const {
Vladimir Marko46817b82016-03-29 12:21:58 +01002047 return !HasEnvironmentUses() && GetUses().HasExactlyOneElement();
Alexandre Rames188d4312015-04-09 18:30:21 +01002048 }
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002049
Aart Bikcc42be02016-10-20 16:14:16 -07002050 bool IsRemovable() const {
Aart Bik482095d2016-10-10 15:39:10 -07002051 return
Aart Bikff7d89c2016-11-07 08:49:28 -08002052 !DoesAnyWrite() &&
Aart Bik482095d2016-10-10 15:39:10 -07002053 !CanThrow() &&
2054 !IsSuspendCheck() &&
2055 !IsControlFlow() &&
2056 !IsNativeDebugInfo() &&
2057 !IsParameterValue() &&
Aart Bik482095d2016-10-10 15:39:10 -07002058 // If we added an explicit barrier then we should keep it.
Igor Murashkind01745e2017-04-05 16:40:31 -07002059 !IsMemoryBarrier() &&
2060 !IsConstructorFence();
Aart Bik482095d2016-10-10 15:39:10 -07002061 }
2062
Aart Bikcc42be02016-10-20 16:14:16 -07002063 bool IsDeadAndRemovable() const {
2064 return IsRemovable() && !HasUses();
2065 }
2066
Roland Levillain6c82d402014-10-13 16:10:27 +01002067 // Does this instruction strictly dominate `other_instruction`?
2068 // Returns false if this instruction and `other_instruction` are the same.
2069 // Aborts if this instruction and `other_instruction` are both phis.
2070 bool StrictlyDominates(HInstruction* other_instruction) const;
Roland Levillainccc07a92014-09-16 14:48:16 +01002071
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002072 int GetId() const { return id_; }
2073 void SetId(int id) { id_ = id; }
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002074
Nicolas Geoffray804d0932014-05-02 08:46:00 +01002075 int GetSsaIndex() const { return ssa_index_; }
2076 void SetSsaIndex(int ssa_index) { ssa_index_ = ssa_index; }
2077 bool HasSsaIndex() const { return ssa_index_ != -1; }
2078
2079 bool HasEnvironment() const { return environment_ != nullptr; }
2080 HEnvironment* GetEnvironment() const { return environment_; }
Nicolas Geoffray3dcd58c2015-04-03 11:02:38 +01002081 // Set the `environment_` field. Raw because this method does not
2082 // update the uses lists.
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002083 void SetRawEnvironment(HEnvironment* environment) {
2084 DCHECK(environment_ == nullptr);
2085 DCHECK_EQ(environment->GetHolder(), this);
2086 environment_ = environment;
2087 }
Nicolas Geoffray3dcd58c2015-04-03 11:02:38 +01002088
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01002089 void InsertRawEnvironment(HEnvironment* environment) {
2090 DCHECK(environment_ != nullptr);
2091 DCHECK_EQ(environment->GetHolder(), this);
2092 DCHECK(environment->GetParent() == nullptr);
2093 environment->parent_ = environment_;
2094 environment_ = environment;
2095 }
2096
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002097 void RemoveEnvironment();
2098
Nicolas Geoffray3dcd58c2015-04-03 11:02:38 +01002099 // Set the environment of this instruction, copying it from `environment`. While
2100 // copying, the uses lists are being updated.
2101 void CopyEnvironmentFrom(HEnvironment* environment) {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002102 DCHECK(environment_ == nullptr);
Nicolas Geoffray3dcd58c2015-04-03 11:02:38 +01002103 ArenaAllocator* allocator = GetBlock()->GetGraph()->GetArena();
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002104 environment_ = new (allocator) HEnvironment(allocator, *environment, this);
Nicolas Geoffray3dcd58c2015-04-03 11:02:38 +01002105 environment_->CopyFrom(environment);
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01002106 if (environment->GetParent() != nullptr) {
2107 environment_->SetAndCopyParentChain(allocator, environment->GetParent());
2108 }
Nicolas Geoffray3dcd58c2015-04-03 11:02:38 +01002109 }
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002110
Mingyao Yang206d6fd2015-04-13 16:46:28 -07002111 void CopyEnvironmentFromWithLoopPhiAdjustment(HEnvironment* environment,
2112 HBasicBlock* block) {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002113 DCHECK(environment_ == nullptr);
Mingyao Yang206d6fd2015-04-13 16:46:28 -07002114 ArenaAllocator* allocator = GetBlock()->GetGraph()->GetArena();
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002115 environment_ = new (allocator) HEnvironment(allocator, *environment, this);
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +01002116 environment_->CopyFromWithLoopPhiAdjustment(environment, block);
Nicolas Geoffray0a23d742015-05-07 11:57:35 +01002117 if (environment->GetParent() != nullptr) {
2118 environment_->SetAndCopyParentChain(allocator, environment->GetParent());
2119 }
Mingyao Yang206d6fd2015-04-13 16:46:28 -07002120 }
2121
Nicolas Geoffray39468442014-09-02 15:17:15 +01002122 // Returns the number of entries in the environment. Typically, that is the
2123 // number of dex registers in a method. It could be more in case of inlining.
2124 size_t EnvironmentSize() const;
2125
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002126 LocationSummary* GetLocations() const { return locations_; }
2127 void SetLocations(LocationSummary* locations) { locations_ = locations; }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002128
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002129 void ReplaceWith(HInstruction* instruction);
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00002130 void ReplaceUsesDominatedBy(HInstruction* dominator, HInstruction* replacement);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002131 void ReplaceInput(HInstruction* replacement, size_t index);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002132
Alexandre Rames188d4312015-04-09 18:30:21 +01002133 // This is almost the same as doing `ReplaceWith()`. But in this helper, the
2134 // uses of this instruction by `other` are *not* updated.
2135 void ReplaceWithExceptInReplacementAtIndex(HInstruction* other, size_t use_index) {
2136 ReplaceWith(other);
2137 other->ReplaceInput(this, use_index);
2138 }
2139
Alexandre Rames22aa54b2016-10-18 09:32:29 +01002140 // Move `this` instruction before `cursor`
2141 void MoveBefore(HInstruction* cursor, bool do_checks = true);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002142
Vladimir Markofb337ea2015-11-25 15:25:10 +00002143 // Move `this` before its first user and out of any loops. If there is no
2144 // out-of-loop user that dominates all other users, move the instruction
2145 // to the end of the out-of-loop common dominator of the user's blocks.
2146 //
2147 // This can be used only on non-throwing instructions with no side effects that
2148 // have at least one use but no environment uses.
2149 void MoveBeforeFirstUserAndOutOfLoops();
2150
Nicolas Geoffray360231a2014-10-08 21:07:48 +01002151#define INSTRUCTION_TYPE_CHECK(type, super) \
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002152 bool Is##type() const; \
2153 const H##type* As##type() const; \
2154 H##type* As##type();
2155
2156 FOR_EACH_CONCRETE_INSTRUCTION(INSTRUCTION_TYPE_CHECK)
2157#undef INSTRUCTION_TYPE_CHECK
2158
2159#define INSTRUCTION_TYPE_CHECK(type, super) \
Roland Levillainccc07a92014-09-16 14:48:16 +01002160 bool Is##type() const { return (As##type() != nullptr); } \
2161 virtual const H##type* As##type() const { return nullptr; } \
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002162 virtual H##type* As##type() { return nullptr; }
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002163 FOR_EACH_ABSTRACT_INSTRUCTION(INSTRUCTION_TYPE_CHECK)
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002164#undef INSTRUCTION_TYPE_CHECK
2165
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002166 // Returns whether the instruction can be moved within the graph.
Aart Bik71bf7b42016-11-16 10:17:46 -08002167 // TODO: this method is used by LICM and GVN with possibly different
2168 // meanings? split and rename?
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002169 virtual bool CanBeMoved() const { return false; }
2170
2171 // Returns whether the two instructions are of the same kind.
Vladimir Marko372f10e2016-05-17 16:30:10 +01002172 virtual bool InstructionTypeEquals(const HInstruction* other ATTRIBUTE_UNUSED) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002173 return false;
2174 }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002175
2176 // Returns whether any data encoded in the two instructions is equal.
2177 // This method does not look at the inputs. Both instructions must be
2178 // of the same type, otherwise the method has undefined behavior.
Vladimir Marko372f10e2016-05-17 16:30:10 +01002179 virtual bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002180 return false;
2181 }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002182
2183 // Returns whether two instructions are equal, that is:
Calin Juravleddb7df22014-11-25 20:56:51 +00002184 // 1) They have the same type and contain the same data (InstructionDataEquals).
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002185 // 2) Their inputs are identical.
Vladimir Marko372f10e2016-05-17 16:30:10 +01002186 bool Equals(const HInstruction* other) const;
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002187
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002188 // TODO: Remove this indirection when the [[pure]] attribute proposal (n3744)
2189 // is adopted and implemented by our C++ compiler(s). Fow now, we need to hide
2190 // the virtual function because the __attribute__((__pure__)) doesn't really
2191 // apply the strong requirement for virtual functions, preventing optimizations.
2192 InstructionKind GetKind() const PURE;
2193 virtual InstructionKind GetKindInternal() const = 0;
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01002194
2195 virtual size_t ComputeHashCode() const {
2196 size_t result = GetKind();
Vladimir Marko372f10e2016-05-17 16:30:10 +01002197 for (const HInstruction* input : GetInputs()) {
2198 result = (result * 31) + input->GetId();
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01002199 }
2200 return result;
2201 }
2202
2203 SideEffects GetSideEffects() const { return side_effects_; }
Nicolas Geoffraye4084a52016-02-18 14:43:42 +00002204 void SetSideEffects(SideEffects other) { side_effects_ = other; }
Alexandre Ramese6dbf482015-10-19 10:10:41 +01002205 void AddSideEffects(SideEffects other) { side_effects_.Add(other); }
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01002206
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +01002207 size_t GetLifetimePosition() const { return lifetime_position_; }
2208 void SetLifetimePosition(size_t position) { lifetime_position_ = position; }
2209 LiveInterval* GetLiveInterval() const { return live_interval_; }
2210 void SetLiveInterval(LiveInterval* interval) { live_interval_ = interval; }
2211 bool HasLiveInterval() const { return live_interval_ != nullptr; }
2212
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00002213 bool IsSuspendCheckEntry() const { return IsSuspendCheck() && GetBlock()->IsEntryBlock(); }
2214
2215 // Returns whether the code generation of the instruction will require to have access
2216 // to the current method. Such instructions are:
2217 // (1): Instructions that require an environment, as calling the runtime requires
2218 // to walk the stack and have the current method stored at a specific stack address.
Nicolas Geoffray96eeb4e2016-10-12 22:03:31 +01002219 // (2): HCurrentMethod, potentially used by HInvokeStaticOrDirect, HLoadString, or HLoadClass
2220 // to access the dex cache.
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00002221 bool NeedsCurrentMethod() const {
Nicolas Geoffray96eeb4e2016-10-12 22:03:31 +01002222 return NeedsEnvironment() || IsCurrentMethod();
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00002223 }
2224
Vladimir Markodc151b22015-10-15 18:02:30 +01002225 // Returns whether the code generation of the instruction will require to have access
2226 // to the dex cache of the current method's declaring class via the current method.
2227 virtual bool NeedsDexCacheOfDeclaringClass() const { return false; }
Nicolas Geoffray9437b782015-03-25 10:08:51 +00002228
Mark Mendellc4701932015-04-10 13:18:51 -04002229 // Does this instruction have any use in an environment before
2230 // control flow hits 'other'?
2231 bool HasAnyEnvironmentUseBefore(HInstruction* other);
2232
2233 // Remove all references to environment uses of this instruction.
2234 // The caller must ensure that this is safe to do.
2235 void RemoveEnvironmentUsers();
2236
Vladimir Markoa1de9182016-02-25 11:37:38 +00002237 bool IsEmittedAtUseSite() const { return GetPackedFlag<kFlagEmittedAtUseSite>(); }
2238 void MarkEmittedAtUseSite() { SetPackedFlag<kFlagEmittedAtUseSite>(true); }
David Brazdilb3e773e2016-01-26 11:28:37 +00002239
David Brazdil1abb4192015-02-17 18:33:36 +00002240 protected:
Vladimir Markoa1de9182016-02-25 11:37:38 +00002241 // If set, the machine code for this instruction is assumed to be generated by
2242 // its users. Used by liveness analysis to compute use positions accordingly.
2243 static constexpr size_t kFlagEmittedAtUseSite = 0u;
2244 static constexpr size_t kFlagReferenceTypeIsExact = kFlagEmittedAtUseSite + 1;
2245 static constexpr size_t kNumberOfGenericPackedBits = kFlagReferenceTypeIsExact + 1;
2246 static constexpr size_t kMaxNumberOfPackedBits = sizeof(uint32_t) * kBitsPerByte;
2247
Vladimir Marko372f10e2016-05-17 16:30:10 +01002248 const HUserRecord<HInstruction*> InputRecordAt(size_t i) const {
2249 return GetInputRecords()[i];
2250 }
2251
2252 void SetRawInputRecordAt(size_t index, const HUserRecord<HInstruction*>& input) {
2253 ArrayRef<HUserRecord<HInstruction*>> input_records = GetInputRecords();
2254 input_records[index] = input;
2255 }
David Brazdil1abb4192015-02-17 18:33:36 +00002256
Vladimir Markoa1de9182016-02-25 11:37:38 +00002257 uint32_t GetPackedFields() const {
2258 return packed_fields_;
2259 }
2260
2261 template <size_t flag>
2262 bool GetPackedFlag() const {
2263 return (packed_fields_ & (1u << flag)) != 0u;
2264 }
2265
2266 template <size_t flag>
2267 void SetPackedFlag(bool value = true) {
2268 packed_fields_ = (packed_fields_ & ~(1u << flag)) | ((value ? 1u : 0u) << flag);
2269 }
2270
2271 template <typename BitFieldType>
2272 typename BitFieldType::value_type GetPackedField() const {
2273 return BitFieldType::Decode(packed_fields_);
2274 }
2275
2276 template <typename BitFieldType>
2277 void SetPackedField(typename BitFieldType::value_type value) {
2278 DCHECK(IsUint<BitFieldType::size>(static_cast<uintptr_t>(value)));
2279 packed_fields_ = BitFieldType::Update(value, packed_fields_);
2280 }
2281
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002282 private:
Vladimir Marko46817b82016-03-29 12:21:58 +01002283 void FixUpUserRecordsAfterUseInsertion(HUseList<HInstruction*>::iterator fixup_end) {
2284 auto before_use_node = uses_.before_begin();
2285 for (auto use_node = uses_.begin(); use_node != fixup_end; ++use_node) {
2286 HInstruction* user = use_node->GetUser();
2287 size_t input_index = use_node->GetIndex();
2288 user->SetRawInputRecordAt(input_index, HUserRecord<HInstruction*>(this, before_use_node));
2289 before_use_node = use_node;
2290 }
2291 }
2292
2293 void FixUpUserRecordsAfterUseRemoval(HUseList<HInstruction*>::iterator before_use_node) {
2294 auto next = ++HUseList<HInstruction*>::iterator(before_use_node);
2295 if (next != uses_.end()) {
2296 HInstruction* next_user = next->GetUser();
2297 size_t next_index = next->GetIndex();
2298 DCHECK(next_user->InputRecordAt(next_index).GetInstruction() == this);
2299 next_user->SetRawInputRecordAt(next_index, HUserRecord<HInstruction*>(this, before_use_node));
2300 }
2301 }
2302
2303 void FixUpUserRecordsAfterEnvUseInsertion(HUseList<HEnvironment*>::iterator env_fixup_end) {
2304 auto before_env_use_node = env_uses_.before_begin();
2305 for (auto env_use_node = env_uses_.begin(); env_use_node != env_fixup_end; ++env_use_node) {
2306 HEnvironment* user = env_use_node->GetUser();
2307 size_t input_index = env_use_node->GetIndex();
2308 user->vregs_[input_index] = HUserRecord<HEnvironment*>(this, before_env_use_node);
2309 before_env_use_node = env_use_node;
2310 }
2311 }
2312
2313 void FixUpUserRecordsAfterEnvUseRemoval(HUseList<HEnvironment*>::iterator before_env_use_node) {
2314 auto next = ++HUseList<HEnvironment*>::iterator(before_env_use_node);
2315 if (next != env_uses_.end()) {
2316 HEnvironment* next_user = next->GetUser();
2317 size_t next_index = next->GetIndex();
2318 DCHECK(next_user->vregs_[next_index].GetInstruction() == this);
2319 next_user->vregs_[next_index] = HUserRecord<HEnvironment*>(this, before_env_use_node);
2320 }
2321 }
David Brazdil1abb4192015-02-17 18:33:36 +00002322
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002323 HInstruction* previous_;
2324 HInstruction* next_;
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00002325 HBasicBlock* block_;
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002326 const uint32_t dex_pc_;
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002327
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002328 // An instruction gets an id when it is added to the graph.
2329 // It reflects creation order. A negative id means the instruction
Nicolas Geoffray39468442014-09-02 15:17:15 +01002330 // has not been added to the graph.
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002331 int id_;
2332
Nicolas Geoffray804d0932014-05-02 08:46:00 +01002333 // When doing liveness analysis, instructions that have uses get an SSA index.
2334 int ssa_index_;
2335
Vladimir Markoa1de9182016-02-25 11:37:38 +00002336 // Packed fields.
2337 uint32_t packed_fields_;
David Brazdilb3e773e2016-01-26 11:28:37 +00002338
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002339 // List of instructions that have this instruction as input.
David Brazdiled596192015-01-23 10:39:45 +00002340 HUseList<HInstruction*> uses_;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002341
2342 // List of environments that contain this instruction.
David Brazdiled596192015-01-23 10:39:45 +00002343 HUseList<HEnvironment*> env_uses_;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002344
Nicolas Geoffray39468442014-09-02 15:17:15 +01002345 // The environment associated with this instruction. Not null if the instruction
2346 // might jump out of the method.
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002347 HEnvironment* environment_;
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002348
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002349 // Set by the code generator.
2350 LocationSummary* locations_;
2351
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +01002352 // Set by the liveness analysis.
2353 LiveInterval* live_interval_;
2354
2355 // Set by the liveness analysis, this is the position in a linear
2356 // order of blocks where this instruction's live interval start.
2357 size_t lifetime_position_;
2358
Alexandre Ramese6dbf482015-10-19 10:10:41 +01002359 SideEffects side_effects_;
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002360
Vladimir Markoa1de9182016-02-25 11:37:38 +00002361 // The reference handle part of the reference type info.
2362 // The IsExact() flag is stored in packed fields.
Calin Juravleacf735c2015-02-12 15:25:22 +00002363 // TODO: for primitive types this should be marked as invalid.
Vladimir Markoa1de9182016-02-25 11:37:38 +00002364 ReferenceTypeInfo::TypeHandle reference_type_handle_;
Calin Juravleacf735c2015-02-12 15:25:22 +00002365
David Brazdil1abb4192015-02-17 18:33:36 +00002366 friend class GraphChecker;
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002367 friend class HBasicBlock;
David Brazdil1abb4192015-02-17 18:33:36 +00002368 friend class HEnvironment;
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002369 friend class HGraph;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002370 friend class HInstructionList;
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002371
2372 DISALLOW_COPY_AND_ASSIGN(HInstruction);
2373};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002374std::ostream& operator<<(std::ostream& os, const HInstruction::InstructionKind& rhs);
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002375
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00002376// Iterates over the instructions, while preserving the next instruction
2377// in case the current instruction gets removed from the list by the user
2378// of this iterator.
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002379class HInstructionIterator : public ValueObject {
2380 public:
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002381 explicit HInstructionIterator(const HInstructionList& instructions)
2382 : instruction_(instructions.first_instruction_) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002383 next_ = Done() ? nullptr : instruction_->GetNext();
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002384 }
2385
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002386 bool Done() const { return instruction_ == nullptr; }
2387 HInstruction* Current() const { return instruction_; }
2388 void Advance() {
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002389 instruction_ = next_;
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002390 next_ = Done() ? nullptr : instruction_->GetNext();
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002391 }
2392
2393 private:
2394 HInstruction* instruction_;
2395 HInstruction* next_;
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +01002396
2397 DISALLOW_COPY_AND_ASSIGN(HInstructionIterator);
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002398};
2399
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00002400// Iterates over the instructions without saving the next instruction,
2401// therefore handling changes in the graph potentially made by the user
2402// of this iterator.
2403class HInstructionIteratorHandleChanges : public ValueObject {
2404 public:
2405 explicit HInstructionIteratorHandleChanges(const HInstructionList& instructions)
2406 : instruction_(instructions.first_instruction_) {
2407 }
2408
2409 bool Done() const { return instruction_ == nullptr; }
2410 HInstruction* Current() const { return instruction_; }
2411 void Advance() {
2412 instruction_ = instruction_->GetNext();
2413 }
2414
2415 private:
2416 HInstruction* instruction_;
2417
2418 DISALLOW_COPY_AND_ASSIGN(HInstructionIteratorHandleChanges);
2419};
2420
2421
Nicolas Geoffray804d0932014-05-02 08:46:00 +01002422class HBackwardInstructionIterator : public ValueObject {
2423 public:
2424 explicit HBackwardInstructionIterator(const HInstructionList& instructions)
2425 : instruction_(instructions.last_instruction_) {
2426 next_ = Done() ? nullptr : instruction_->GetPrevious();
2427 }
2428
2429 bool Done() const { return instruction_ == nullptr; }
2430 HInstruction* Current() const { return instruction_; }
2431 void Advance() {
2432 instruction_ = next_;
2433 next_ = Done() ? nullptr : instruction_->GetPrevious();
2434 }
2435
2436 private:
2437 HInstruction* instruction_;
2438 HInstruction* next_;
Nicolas Geoffrayddb311f2014-05-16 09:28:54 +01002439
2440 DISALLOW_COPY_AND_ASSIGN(HBackwardInstructionIterator);
Nicolas Geoffray804d0932014-05-02 08:46:00 +01002441};
2442
Mingyao Yanga9dbe832016-12-15 12:02:53 -08002443class HVariableInputSizeInstruction : public HInstruction {
2444 public:
Mingyao Yangb0b051a2016-11-17 09:04:53 -08002445 using HInstruction::GetInputRecords; // Keep the const version visible.
2446 ArrayRef<HUserRecord<HInstruction*>> GetInputRecords() OVERRIDE {
2447 return ArrayRef<HUserRecord<HInstruction*>>(inputs_);
2448 }
2449
Mingyao Yanga9dbe832016-12-15 12:02:53 -08002450 void AddInput(HInstruction* input);
2451 void InsertInputAt(size_t index, HInstruction* input);
2452 void RemoveInputAt(size_t index);
2453
Igor Murashkind01745e2017-04-05 16:40:31 -07002454 // Removes all the inputs.
2455 // Also removes this instructions from each input's use list
2456 // (for non-environment uses only).
2457 void RemoveAllInputs();
2458
Mingyao Yanga9dbe832016-12-15 12:02:53 -08002459 protected:
2460 HVariableInputSizeInstruction(SideEffects side_effects,
2461 uint32_t dex_pc,
2462 ArenaAllocator* arena,
2463 size_t number_of_inputs,
2464 ArenaAllocKind kind)
2465 : HInstruction(side_effects, dex_pc),
2466 inputs_(number_of_inputs, arena->Adapter(kind)) {}
2467
2468 ArenaVector<HUserRecord<HInstruction*>> inputs_;
2469
2470 private:
2471 DISALLOW_COPY_AND_ASSIGN(HVariableInputSizeInstruction);
2472};
2473
Vladimir Markof9f64412015-09-02 14:05:49 +01002474template<size_t N>
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002475class HTemplateInstruction: public HInstruction {
2476 public:
Calin Juravle154746b2015-10-06 15:46:54 +01002477 HTemplateInstruction<N>(SideEffects side_effects, uint32_t dex_pc)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002478 : HInstruction(side_effects, dex_pc), inputs_() {}
Dave Allison20dfc792014-06-16 20:44:29 -07002479 virtual ~HTemplateInstruction() {}
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002480
Vladimir Marko372f10e2016-05-17 16:30:10 +01002481 using HInstruction::GetInputRecords; // Keep the const version visible.
2482 ArrayRef<HUserRecord<HInstruction*>> GetInputRecords() OVERRIDE FINAL {
2483 return ArrayRef<HUserRecord<HInstruction*>>(inputs_);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002484 }
2485
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002486 private:
Vladimir Markof9f64412015-09-02 14:05:49 +01002487 std::array<HUserRecord<HInstruction*>, N> inputs_;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002488
2489 friend class SsaBuilder;
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002490};
2491
Vladimir Markof9f64412015-09-02 14:05:49 +01002492// HTemplateInstruction specialization for N=0.
2493template<>
2494class HTemplateInstruction<0>: public HInstruction {
2495 public:
Calin Juravle154746b2015-10-06 15:46:54 +01002496 explicit HTemplateInstruction<0>(SideEffects side_effects, uint32_t dex_pc)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002497 : HInstruction(side_effects, dex_pc) {}
2498
Vladimir Markof9f64412015-09-02 14:05:49 +01002499 virtual ~HTemplateInstruction() {}
2500
Vladimir Marko372f10e2016-05-17 16:30:10 +01002501 using HInstruction::GetInputRecords; // Keep the const version visible.
2502 ArrayRef<HUserRecord<HInstruction*>> GetInputRecords() OVERRIDE FINAL {
2503 return ArrayRef<HUserRecord<HInstruction*>>();
Vladimir Markof9f64412015-09-02 14:05:49 +01002504 }
2505
2506 private:
2507 friend class SsaBuilder;
2508};
2509
Dave Allison20dfc792014-06-16 20:44:29 -07002510template<intptr_t N>
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002511class HExpression : public HTemplateInstruction<N> {
Dave Allison20dfc792014-06-16 20:44:29 -07002512 public:
Calin Juravle154746b2015-10-06 15:46:54 +01002513 HExpression<N>(Primitive::Type type, SideEffects side_effects, uint32_t dex_pc)
Vladimir Markoa1de9182016-02-25 11:37:38 +00002514 : HTemplateInstruction<N>(side_effects, dex_pc) {
2515 this->template SetPackedField<TypeField>(type);
2516 }
Dave Allison20dfc792014-06-16 20:44:29 -07002517 virtual ~HExpression() {}
2518
Vladimir Markoa1de9182016-02-25 11:37:38 +00002519 Primitive::Type GetType() const OVERRIDE {
2520 return TypeField::Decode(this->GetPackedFields());
2521 }
Dave Allison20dfc792014-06-16 20:44:29 -07002522
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002523 protected:
Vladimir Markoa1de9182016-02-25 11:37:38 +00002524 static constexpr size_t kFieldType = HInstruction::kNumberOfGenericPackedBits;
2525 static constexpr size_t kFieldTypeSize =
2526 MinimumBitsToStore(static_cast<size_t>(Primitive::kPrimLast));
2527 static constexpr size_t kNumberOfExpressionPackedBits = kFieldType + kFieldTypeSize;
2528 static_assert(kNumberOfExpressionPackedBits <= HInstruction::kMaxNumberOfPackedBits,
2529 "Too many packed fields.");
2530 using TypeField = BitField<Primitive::Type, kFieldType, kFieldTypeSize>;
Dave Allison20dfc792014-06-16 20:44:29 -07002531};
2532
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002533// Represents dex's RETURN_VOID opcode. A HReturnVoid is a control flow
2534// instruction that branches to the exit block.
Vladimir Markofcb503c2016-05-18 12:48:17 +01002535class HReturnVoid FINAL : public HTemplateInstruction<0> {
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002536 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002537 explicit HReturnVoid(uint32_t dex_pc = kNoDexPc)
2538 : HTemplateInstruction(SideEffects::None(), dex_pc) {}
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +01002539
Alexandre Rames2ed20af2015-03-06 13:55:35 +00002540 bool IsControlFlow() const OVERRIDE { return true; }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002541
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01002542 DECLARE_INSTRUCTION(ReturnVoid);
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002543
2544 private:
2545 DISALLOW_COPY_AND_ASSIGN(HReturnVoid);
2546};
2547
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002548// Represents dex's RETURN opcodes. A HReturn is a control flow
2549// instruction that branches to the exit block.
Vladimir Markofcb503c2016-05-18 12:48:17 +01002550class HReturn FINAL : public HTemplateInstruction<1> {
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002551 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002552 explicit HReturn(HInstruction* value, uint32_t dex_pc = kNoDexPc)
2553 : HTemplateInstruction(SideEffects::None(), dex_pc) {
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002554 SetRawInputAt(0, value);
2555 }
2556
Alexandre Rames2ed20af2015-03-06 13:55:35 +00002557 bool IsControlFlow() const OVERRIDE { return true; }
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +01002558
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01002559 DECLARE_INSTRUCTION(Return);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002560
2561 private:
2562 DISALLOW_COPY_AND_ASSIGN(HReturn);
2563};
2564
Mingyao Yanga9dbe832016-12-15 12:02:53 -08002565class HPhi FINAL : public HVariableInputSizeInstruction {
David Brazdildee58d62016-04-07 09:54:26 +00002566 public:
2567 HPhi(ArenaAllocator* arena,
2568 uint32_t reg_number,
2569 size_t number_of_inputs,
2570 Primitive::Type type,
2571 uint32_t dex_pc = kNoDexPc)
Mingyao Yanga9dbe832016-12-15 12:02:53 -08002572 : HVariableInputSizeInstruction(
2573 SideEffects::None(),
2574 dex_pc,
2575 arena,
2576 number_of_inputs,
2577 kArenaAllocPhiInputs),
David Brazdildee58d62016-04-07 09:54:26 +00002578 reg_number_(reg_number) {
2579 SetPackedField<TypeField>(ToPhiType(type));
2580 DCHECK_NE(GetType(), Primitive::kPrimVoid);
2581 // Phis are constructed live and marked dead if conflicting or unused.
2582 // Individual steps of SsaBuilder should assume that if a phi has been
2583 // marked dead, it can be ignored and will be removed by SsaPhiElimination.
2584 SetPackedFlag<kFlagIsLive>(true);
2585 SetPackedFlag<kFlagCanBeNull>(true);
2586 }
2587
2588 // Returns a type equivalent to the given `type`, but that a `HPhi` can hold.
2589 static Primitive::Type ToPhiType(Primitive::Type type) {
2590 return Primitive::PrimitiveKind(type);
2591 }
2592
2593 bool IsCatchPhi() const { return GetBlock()->IsCatchBlock(); }
2594
David Brazdildee58d62016-04-07 09:54:26 +00002595 Primitive::Type GetType() const OVERRIDE { return GetPackedField<TypeField>(); }
2596 void SetType(Primitive::Type new_type) {
2597 // Make sure that only valid type changes occur. The following are allowed:
2598 // (1) int -> float/ref (primitive type propagation),
2599 // (2) long -> double (primitive type propagation).
2600 DCHECK(GetType() == new_type ||
2601 (GetType() == Primitive::kPrimInt && new_type == Primitive::kPrimFloat) ||
2602 (GetType() == Primitive::kPrimInt && new_type == Primitive::kPrimNot) ||
2603 (GetType() == Primitive::kPrimLong && new_type == Primitive::kPrimDouble));
2604 SetPackedField<TypeField>(new_type);
2605 }
2606
2607 bool CanBeNull() const OVERRIDE { return GetPackedFlag<kFlagCanBeNull>(); }
2608 void SetCanBeNull(bool can_be_null) { SetPackedFlag<kFlagCanBeNull>(can_be_null); }
2609
2610 uint32_t GetRegNumber() const { return reg_number_; }
2611
2612 void SetDead() { SetPackedFlag<kFlagIsLive>(false); }
2613 void SetLive() { SetPackedFlag<kFlagIsLive>(true); }
2614 bool IsDead() const { return !IsLive(); }
2615 bool IsLive() const { return GetPackedFlag<kFlagIsLive>(); }
2616
Vladimir Markoe9004912016-06-16 16:50:52 +01002617 bool IsVRegEquivalentOf(const HInstruction* other) const {
David Brazdildee58d62016-04-07 09:54:26 +00002618 return other != nullptr
2619 && other->IsPhi()
2620 && other->AsPhi()->GetBlock() == GetBlock()
2621 && other->AsPhi()->GetRegNumber() == GetRegNumber();
2622 }
2623
2624 // Returns the next equivalent phi (starting from the current one) or null if there is none.
2625 // An equivalent phi is a phi having the same dex register and type.
2626 // It assumes that phis with the same dex register are adjacent.
2627 HPhi* GetNextEquivalentPhiWithSameType() {
2628 HInstruction* next = GetNext();
2629 while (next != nullptr && next->AsPhi()->GetRegNumber() == reg_number_) {
2630 if (next->GetType() == GetType()) {
2631 return next->AsPhi();
2632 }
2633 next = next->GetNext();
2634 }
2635 return nullptr;
2636 }
2637
2638 DECLARE_INSTRUCTION(Phi);
2639
David Brazdildee58d62016-04-07 09:54:26 +00002640 private:
2641 static constexpr size_t kFieldType = HInstruction::kNumberOfGenericPackedBits;
2642 static constexpr size_t kFieldTypeSize =
2643 MinimumBitsToStore(static_cast<size_t>(Primitive::kPrimLast));
2644 static constexpr size_t kFlagIsLive = kFieldType + kFieldTypeSize;
2645 static constexpr size_t kFlagCanBeNull = kFlagIsLive + 1;
2646 static constexpr size_t kNumberOfPhiPackedBits = kFlagCanBeNull + 1;
2647 static_assert(kNumberOfPhiPackedBits <= kMaxNumberOfPackedBits, "Too many packed fields.");
2648 using TypeField = BitField<Primitive::Type, kFieldType, kFieldTypeSize>;
2649
David Brazdildee58d62016-04-07 09:54:26 +00002650 const uint32_t reg_number_;
2651
2652 DISALLOW_COPY_AND_ASSIGN(HPhi);
2653};
2654
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002655// The exit instruction is the only instruction of the exit block.
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00002656// Instructions aborting the method (HThrow and HReturn) must branch to the
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002657// exit block.
Vladimir Markofcb503c2016-05-18 12:48:17 +01002658class HExit FINAL : public HTemplateInstruction<0> {
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002659 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002660 explicit HExit(uint32_t dex_pc = kNoDexPc) : HTemplateInstruction(SideEffects::None(), dex_pc) {}
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +01002661
Alexandre Rames2ed20af2015-03-06 13:55:35 +00002662 bool IsControlFlow() const OVERRIDE { return true; }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002663
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01002664 DECLARE_INSTRUCTION(Exit);
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002665
2666 private:
2667 DISALLOW_COPY_AND_ASSIGN(HExit);
2668};
2669
2670// Jumps from one block to another.
Vladimir Markofcb503c2016-05-18 12:48:17 +01002671class HGoto FINAL : public HTemplateInstruction<0> {
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002672 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002673 explicit HGoto(uint32_t dex_pc = kNoDexPc) : HTemplateInstruction(SideEffects::None(), dex_pc) {}
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002674
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00002675 bool IsControlFlow() const OVERRIDE { return true; }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002676
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00002677 HBasicBlock* GetSuccessor() const {
David Brazdilfc6a86a2015-06-26 10:33:45 +00002678 return GetBlock()->GetSingleSuccessor();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00002679 }
2680
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01002681 DECLARE_INSTRUCTION(Goto);
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002682
2683 private:
2684 DISALLOW_COPY_AND_ASSIGN(HGoto);
2685};
2686
Roland Levillain9867bc72015-08-05 10:21:34 +01002687class HConstant : public HExpression<0> {
2688 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002689 explicit HConstant(Primitive::Type type, uint32_t dex_pc = kNoDexPc)
2690 : HExpression(type, SideEffects::None(), dex_pc) {}
Roland Levillain9867bc72015-08-05 10:21:34 +01002691
2692 bool CanBeMoved() const OVERRIDE { return true; }
2693
Roland Levillain1a653882016-03-18 18:05:57 +00002694 // Is this constant -1 in the arithmetic sense?
Roland Levillain9867bc72015-08-05 10:21:34 +01002695 virtual bool IsMinusOne() const { return false; }
Roland Levillain1a653882016-03-18 18:05:57 +00002696 // Is this constant 0 in the arithmetic sense?
2697 virtual bool IsArithmeticZero() const { return false; }
2698 // Is this constant a 0-bit pattern?
2699 virtual bool IsZeroBitPattern() const { return false; }
2700 // Is this constant 1 in the arithmetic sense?
Roland Levillain9867bc72015-08-05 10:21:34 +01002701 virtual bool IsOne() const { return false; }
2702
David Brazdil77a48ae2015-09-15 12:34:04 +00002703 virtual uint64_t GetValueAsUint64() const = 0;
2704
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002705 DECLARE_ABSTRACT_INSTRUCTION(Constant);
Roland Levillain9867bc72015-08-05 10:21:34 +01002706
2707 private:
2708 DISALLOW_COPY_AND_ASSIGN(HConstant);
2709};
2710
Vladimir Markofcb503c2016-05-18 12:48:17 +01002711class HNullConstant FINAL : public HConstant {
Roland Levillain9867bc72015-08-05 10:21:34 +01002712 public:
Vladimir Marko372f10e2016-05-17 16:30:10 +01002713 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain9867bc72015-08-05 10:21:34 +01002714 return true;
2715 }
2716
David Brazdil77a48ae2015-09-15 12:34:04 +00002717 uint64_t GetValueAsUint64() const OVERRIDE { return 0; }
2718
Roland Levillain9867bc72015-08-05 10:21:34 +01002719 size_t ComputeHashCode() const OVERRIDE { return 0; }
2720
Roland Levillain1a653882016-03-18 18:05:57 +00002721 // The null constant representation is a 0-bit pattern.
2722 virtual bool IsZeroBitPattern() const { return true; }
2723
Roland Levillain9867bc72015-08-05 10:21:34 +01002724 DECLARE_INSTRUCTION(NullConstant);
2725
2726 private:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002727 explicit HNullConstant(uint32_t dex_pc = kNoDexPc) : HConstant(Primitive::kPrimNot, dex_pc) {}
Roland Levillain9867bc72015-08-05 10:21:34 +01002728
2729 friend class HGraph;
2730 DISALLOW_COPY_AND_ASSIGN(HNullConstant);
2731};
2732
2733// Constants of the type int. Those can be from Dex instructions, or
2734// synthesized (for example with the if-eqz instruction).
Vladimir Markofcb503c2016-05-18 12:48:17 +01002735class HIntConstant FINAL : public HConstant {
Roland Levillain9867bc72015-08-05 10:21:34 +01002736 public:
2737 int32_t GetValue() const { return value_; }
2738
David Brazdil9f389d42015-10-01 14:32:56 +01002739 uint64_t GetValueAsUint64() const OVERRIDE {
2740 return static_cast<uint64_t>(static_cast<uint32_t>(value_));
2741 }
David Brazdil77a48ae2015-09-15 12:34:04 +00002742
Vladimir Marko372f10e2016-05-17 16:30:10 +01002743 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00002744 DCHECK(other->IsIntConstant()) << other->DebugName();
Roland Levillain9867bc72015-08-05 10:21:34 +01002745 return other->AsIntConstant()->value_ == value_;
2746 }
2747
2748 size_t ComputeHashCode() const OVERRIDE { return GetValue(); }
2749
2750 bool IsMinusOne() const OVERRIDE { return GetValue() == -1; }
Roland Levillain1a653882016-03-18 18:05:57 +00002751 bool IsArithmeticZero() const OVERRIDE { return GetValue() == 0; }
2752 bool IsZeroBitPattern() const OVERRIDE { return GetValue() == 0; }
Roland Levillain9867bc72015-08-05 10:21:34 +01002753 bool IsOne() const OVERRIDE { return GetValue() == 1; }
2754
Roland Levillain1a653882016-03-18 18:05:57 +00002755 // Integer constants are used to encode Boolean values as well,
2756 // where 1 means true and 0 means false.
2757 bool IsTrue() const { return GetValue() == 1; }
2758 bool IsFalse() const { return GetValue() == 0; }
2759
Roland Levillain9867bc72015-08-05 10:21:34 +01002760 DECLARE_INSTRUCTION(IntConstant);
2761
2762 private:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002763 explicit HIntConstant(int32_t value, uint32_t dex_pc = kNoDexPc)
2764 : HConstant(Primitive::kPrimInt, dex_pc), value_(value) {}
2765 explicit HIntConstant(bool value, uint32_t dex_pc = kNoDexPc)
2766 : HConstant(Primitive::kPrimInt, dex_pc), value_(value ? 1 : 0) {}
Roland Levillain9867bc72015-08-05 10:21:34 +01002767
2768 const int32_t value_;
2769
2770 friend class HGraph;
2771 ART_FRIEND_TEST(GraphTest, InsertInstructionBefore);
2772 ART_FRIEND_TYPED_TEST(ParallelMoveTest, ConstantLast);
2773 DISALLOW_COPY_AND_ASSIGN(HIntConstant);
2774};
2775
Vladimir Markofcb503c2016-05-18 12:48:17 +01002776class HLongConstant FINAL : public HConstant {
Roland Levillain9867bc72015-08-05 10:21:34 +01002777 public:
2778 int64_t GetValue() const { return value_; }
2779
David Brazdil77a48ae2015-09-15 12:34:04 +00002780 uint64_t GetValueAsUint64() const OVERRIDE { return value_; }
2781
Vladimir Marko372f10e2016-05-17 16:30:10 +01002782 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00002783 DCHECK(other->IsLongConstant()) << other->DebugName();
Roland Levillain9867bc72015-08-05 10:21:34 +01002784 return other->AsLongConstant()->value_ == value_;
2785 }
2786
2787 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); }
2788
2789 bool IsMinusOne() const OVERRIDE { return GetValue() == -1; }
Roland Levillain1a653882016-03-18 18:05:57 +00002790 bool IsArithmeticZero() const OVERRIDE { return GetValue() == 0; }
2791 bool IsZeroBitPattern() const OVERRIDE { return GetValue() == 0; }
Roland Levillain9867bc72015-08-05 10:21:34 +01002792 bool IsOne() const OVERRIDE { return GetValue() == 1; }
2793
2794 DECLARE_INSTRUCTION(LongConstant);
2795
2796 private:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002797 explicit HLongConstant(int64_t value, uint32_t dex_pc = kNoDexPc)
2798 : HConstant(Primitive::kPrimLong, dex_pc), value_(value) {}
Roland Levillain9867bc72015-08-05 10:21:34 +01002799
2800 const int64_t value_;
2801
2802 friend class HGraph;
2803 DISALLOW_COPY_AND_ASSIGN(HLongConstant);
2804};
Dave Allison20dfc792014-06-16 20:44:29 -07002805
Vladimir Markofcb503c2016-05-18 12:48:17 +01002806class HFloatConstant FINAL : public HConstant {
Roland Levillain31dd3d62016-02-16 12:21:02 +00002807 public:
2808 float GetValue() const { return value_; }
2809
2810 uint64_t GetValueAsUint64() const OVERRIDE {
2811 return static_cast<uint64_t>(bit_cast<uint32_t, float>(value_));
2812 }
2813
Vladimir Marko372f10e2016-05-17 16:30:10 +01002814 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00002815 DCHECK(other->IsFloatConstant()) << other->DebugName();
2816 return other->AsFloatConstant()->GetValueAsUint64() == GetValueAsUint64();
2817 }
2818
2819 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); }
2820
2821 bool IsMinusOne() const OVERRIDE {
2822 return bit_cast<uint32_t, float>(value_) == bit_cast<uint32_t, float>((-1.0f));
2823 }
Roland Levillain1a653882016-03-18 18:05:57 +00002824 bool IsArithmeticZero() const OVERRIDE {
2825 return std::fpclassify(value_) == FP_ZERO;
2826 }
2827 bool IsArithmeticPositiveZero() const {
2828 return IsArithmeticZero() && !std::signbit(value_);
2829 }
2830 bool IsArithmeticNegativeZero() const {
2831 return IsArithmeticZero() && std::signbit(value_);
2832 }
2833 bool IsZeroBitPattern() const OVERRIDE {
Nicolas Geoffray949e54d2016-03-15 16:23:04 +00002834 return bit_cast<uint32_t, float>(value_) == bit_cast<uint32_t, float>(0.0f);
Roland Levillain31dd3d62016-02-16 12:21:02 +00002835 }
2836 bool IsOne() const OVERRIDE {
2837 return bit_cast<uint32_t, float>(value_) == bit_cast<uint32_t, float>(1.0f);
2838 }
2839 bool IsNaN() const {
2840 return std::isnan(value_);
2841 }
2842
2843 DECLARE_INSTRUCTION(FloatConstant);
2844
2845 private:
2846 explicit HFloatConstant(float value, uint32_t dex_pc = kNoDexPc)
2847 : HConstant(Primitive::kPrimFloat, dex_pc), value_(value) {}
2848 explicit HFloatConstant(int32_t value, uint32_t dex_pc = kNoDexPc)
2849 : HConstant(Primitive::kPrimFloat, dex_pc), value_(bit_cast<float, int32_t>(value)) {}
2850
2851 const float value_;
2852
2853 // Only the SsaBuilder and HGraph can create floating-point constants.
2854 friend class SsaBuilder;
2855 friend class HGraph;
2856 DISALLOW_COPY_AND_ASSIGN(HFloatConstant);
2857};
2858
Vladimir Markofcb503c2016-05-18 12:48:17 +01002859class HDoubleConstant FINAL : public HConstant {
Roland Levillain31dd3d62016-02-16 12:21:02 +00002860 public:
2861 double GetValue() const { return value_; }
2862
2863 uint64_t GetValueAsUint64() const OVERRIDE { return bit_cast<uint64_t, double>(value_); }
2864
Vladimir Marko372f10e2016-05-17 16:30:10 +01002865 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00002866 DCHECK(other->IsDoubleConstant()) << other->DebugName();
2867 return other->AsDoubleConstant()->GetValueAsUint64() == GetValueAsUint64();
2868 }
2869
2870 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); }
2871
2872 bool IsMinusOne() const OVERRIDE {
2873 return bit_cast<uint64_t, double>(value_) == bit_cast<uint64_t, double>((-1.0));
2874 }
Roland Levillain1a653882016-03-18 18:05:57 +00002875 bool IsArithmeticZero() const OVERRIDE {
2876 return std::fpclassify(value_) == FP_ZERO;
2877 }
2878 bool IsArithmeticPositiveZero() const {
2879 return IsArithmeticZero() && !std::signbit(value_);
2880 }
2881 bool IsArithmeticNegativeZero() const {
2882 return IsArithmeticZero() && std::signbit(value_);
2883 }
2884 bool IsZeroBitPattern() const OVERRIDE {
Nicolas Geoffray949e54d2016-03-15 16:23:04 +00002885 return bit_cast<uint64_t, double>(value_) == bit_cast<uint64_t, double>((0.0));
Roland Levillain31dd3d62016-02-16 12:21:02 +00002886 }
2887 bool IsOne() const OVERRIDE {
2888 return bit_cast<uint64_t, double>(value_) == bit_cast<uint64_t, double>(1.0);
2889 }
2890 bool IsNaN() const {
2891 return std::isnan(value_);
2892 }
2893
2894 DECLARE_INSTRUCTION(DoubleConstant);
2895
2896 private:
2897 explicit HDoubleConstant(double value, uint32_t dex_pc = kNoDexPc)
2898 : HConstant(Primitive::kPrimDouble, dex_pc), value_(value) {}
2899 explicit HDoubleConstant(int64_t value, uint32_t dex_pc = kNoDexPc)
2900 : HConstant(Primitive::kPrimDouble, dex_pc), value_(bit_cast<double, int64_t>(value)) {}
2901
2902 const double value_;
2903
2904 // Only the SsaBuilder and HGraph can create floating-point constants.
2905 friend class SsaBuilder;
2906 friend class HGraph;
2907 DISALLOW_COPY_AND_ASSIGN(HDoubleConstant);
2908};
2909
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +00002910// Conditional branch. A block ending with an HIf instruction must have
2911// two successors.
Vladimir Markofcb503c2016-05-18 12:48:17 +01002912class HIf FINAL : public HTemplateInstruction<1> {
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +00002913 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002914 explicit HIf(HInstruction* input, uint32_t dex_pc = kNoDexPc)
2915 : HTemplateInstruction(SideEffects::None(), dex_pc) {
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002916 SetRawInputAt(0, input);
2917 }
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +00002918
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00002919 bool IsControlFlow() const OVERRIDE { return true; }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01002920
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002921 HBasicBlock* IfTrueSuccessor() const {
Vladimir Markoec7802a2015-10-01 20:57:57 +01002922 return GetBlock()->GetSuccessors()[0];
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002923 }
2924
2925 HBasicBlock* IfFalseSuccessor() const {
Vladimir Markoec7802a2015-10-01 20:57:57 +01002926 return GetBlock()->GetSuccessors()[1];
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002927 }
2928
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01002929 DECLARE_INSTRUCTION(If);
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +00002930
2931 private:
2932 DISALLOW_COPY_AND_ASSIGN(HIf);
2933};
2934
David Brazdilfc6a86a2015-06-26 10:33:45 +00002935
2936// Abstract instruction which marks the beginning and/or end of a try block and
2937// links it to the respective exception handlers. Behaves the same as a Goto in
2938// non-exceptional control flow.
2939// Normal-flow successor is stored at index zero, exception handlers under
2940// higher indices in no particular order.
Vladimir Markofcb503c2016-05-18 12:48:17 +01002941class HTryBoundary FINAL : public HTemplateInstruction<0> {
David Brazdilfc6a86a2015-06-26 10:33:45 +00002942 public:
Vladimir Markoa1de9182016-02-25 11:37:38 +00002943 enum class BoundaryKind {
David Brazdil56e1acc2015-06-30 15:41:36 +01002944 kEntry,
2945 kExit,
Vladimir Markoa1de9182016-02-25 11:37:38 +00002946 kLast = kExit
David Brazdil56e1acc2015-06-30 15:41:36 +01002947 };
2948
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06002949 explicit HTryBoundary(BoundaryKind kind, uint32_t dex_pc = kNoDexPc)
Vladimir Markoa1de9182016-02-25 11:37:38 +00002950 : HTemplateInstruction(SideEffects::None(), dex_pc) {
2951 SetPackedField<BoundaryKindField>(kind);
2952 }
David Brazdilfc6a86a2015-06-26 10:33:45 +00002953
2954 bool IsControlFlow() const OVERRIDE { return true; }
2955
2956 // Returns the block's non-exceptional successor (index zero).
Vladimir Markoec7802a2015-10-01 20:57:57 +01002957 HBasicBlock* GetNormalFlowSuccessor() const { return GetBlock()->GetSuccessors()[0]; }
David Brazdilfc6a86a2015-06-26 10:33:45 +00002958
David Brazdild26a4112015-11-10 11:07:31 +00002959 ArrayRef<HBasicBlock* const> GetExceptionHandlers() const {
2960 return ArrayRef<HBasicBlock* const>(GetBlock()->GetSuccessors()).SubArray(1u);
2961 }
2962
David Brazdilfc6a86a2015-06-26 10:33:45 +00002963 // Returns whether `handler` is among its exception handlers (non-zero index
2964 // successors).
David Brazdilffee3d32015-07-06 11:48:53 +01002965 bool HasExceptionHandler(const HBasicBlock& handler) const {
2966 DCHECK(handler.IsCatchBlock());
Vladimir Marko60584552015-09-03 13:35:12 +00002967 return GetBlock()->HasSuccessor(&handler, 1u /* Skip first successor. */);
David Brazdilfc6a86a2015-06-26 10:33:45 +00002968 }
2969
2970 // If not present already, adds `handler` to its block's list of exception
2971 // handlers.
2972 void AddExceptionHandler(HBasicBlock* handler) {
David Brazdilffee3d32015-07-06 11:48:53 +01002973 if (!HasExceptionHandler(*handler)) {
David Brazdilfc6a86a2015-06-26 10:33:45 +00002974 GetBlock()->AddSuccessor(handler);
2975 }
2976 }
2977
Vladimir Markoa1de9182016-02-25 11:37:38 +00002978 BoundaryKind GetBoundaryKind() const { return GetPackedField<BoundaryKindField>(); }
2979 bool IsEntry() const { return GetBoundaryKind() == BoundaryKind::kEntry; }
David Brazdilfc6a86a2015-06-26 10:33:45 +00002980
David Brazdilffee3d32015-07-06 11:48:53 +01002981 bool HasSameExceptionHandlersAs(const HTryBoundary& other) const;
2982
David Brazdilfc6a86a2015-06-26 10:33:45 +00002983 DECLARE_INSTRUCTION(TryBoundary);
2984
2985 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00002986 static constexpr size_t kFieldBoundaryKind = kNumberOfGenericPackedBits;
2987 static constexpr size_t kFieldBoundaryKindSize =
2988 MinimumBitsToStore(static_cast<size_t>(BoundaryKind::kLast));
2989 static constexpr size_t kNumberOfTryBoundaryPackedBits =
2990 kFieldBoundaryKind + kFieldBoundaryKindSize;
2991 static_assert(kNumberOfTryBoundaryPackedBits <= kMaxNumberOfPackedBits,
2992 "Too many packed fields.");
2993 using BoundaryKindField = BitField<BoundaryKind, kFieldBoundaryKind, kFieldBoundaryKindSize>;
David Brazdilfc6a86a2015-06-26 10:33:45 +00002994
2995 DISALLOW_COPY_AND_ASSIGN(HTryBoundary);
2996};
2997
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002998// Deoptimize to interpreter, upon checking a condition.
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00002999class HDeoptimize FINAL : public HVariableInputSizeInstruction {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07003000 public:
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003001 // Use this constructor when the `HDeoptimize` acts as a barrier, where no code can move
3002 // across.
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +01003003 HDeoptimize(ArenaAllocator* arena, HInstruction* cond, DeoptimizationKind kind, uint32_t dex_pc)
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003004 : HVariableInputSizeInstruction(
3005 SideEffects::All(),
3006 dex_pc,
3007 arena,
3008 /* number_of_inputs */ 1,
3009 kArenaAllocMisc) {
3010 SetPackedFlag<kFieldCanBeMoved>(false);
3011 SetPackedField<DeoptimizeKindField>(kind);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07003012 SetRawInputAt(0, cond);
3013 }
3014
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003015 // Use this constructor when the `HDeoptimize` guards an instruction, and any user
3016 // that relies on the deoptimization to pass should have its input be the `HDeoptimize`
3017 // instead of `guard`.
3018 // We set CanTriggerGC to prevent any intermediate address to be live
3019 // at the point of the `HDeoptimize`.
3020 HDeoptimize(ArenaAllocator* arena,
3021 HInstruction* cond,
3022 HInstruction* guard,
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +01003023 DeoptimizationKind kind,
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003024 uint32_t dex_pc)
3025 : HVariableInputSizeInstruction(
3026 SideEffects::CanTriggerGC(),
3027 dex_pc,
3028 arena,
3029 /* number_of_inputs */ 2,
3030 kArenaAllocMisc) {
3031 SetPackedFlag<kFieldCanBeMoved>(true);
3032 SetPackedField<DeoptimizeKindField>(kind);
3033 SetRawInputAt(0, cond);
3034 SetRawInputAt(1, guard);
Nicolas Geoffray73be1e82015-09-17 15:22:56 +01003035 }
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003036
3037 bool CanBeMoved() const OVERRIDE { return GetPackedFlag<kFieldCanBeMoved>(); }
3038
3039 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
3040 return (other->CanBeMoved() == CanBeMoved()) && (other->AsDeoptimize()->GetKind() == GetKind());
3041 }
3042
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07003043 bool NeedsEnvironment() const OVERRIDE { return true; }
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003044
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07003045 bool CanThrow() const OVERRIDE { return true; }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07003046
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +01003047 DeoptimizationKind GetDeoptimizationKind() const { return GetPackedField<DeoptimizeKindField>(); }
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003048
3049 Primitive::Type GetType() const OVERRIDE {
3050 return GuardsAnInput() ? GuardedInput()->GetType() : Primitive::kPrimVoid;
3051 }
3052
3053 bool GuardsAnInput() const {
3054 return InputCount() == 2;
3055 }
3056
3057 HInstruction* GuardedInput() const {
3058 DCHECK(GuardsAnInput());
3059 return InputAt(1);
3060 }
3061
3062 void RemoveGuard() {
3063 RemoveInputAt(1);
3064 }
3065
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07003066 DECLARE_INSTRUCTION(Deoptimize);
3067
3068 private:
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003069 static constexpr size_t kFieldCanBeMoved = kNumberOfGenericPackedBits;
3070 static constexpr size_t kFieldDeoptimizeKind = kNumberOfGenericPackedBits + 1;
3071 static constexpr size_t kFieldDeoptimizeKindSize =
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +01003072 MinimumBitsToStore(static_cast<size_t>(DeoptimizationKind::kLast));
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003073 static constexpr size_t kNumberOfDeoptimizePackedBits =
3074 kFieldDeoptimizeKind + kFieldDeoptimizeKindSize;
3075 static_assert(kNumberOfDeoptimizePackedBits <= kMaxNumberOfPackedBits,
3076 "Too many packed fields.");
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +01003077 using DeoptimizeKindField =
3078 BitField<DeoptimizationKind, kFieldDeoptimizeKind, kFieldDeoptimizeKindSize>;
Nicolas Geoffray6f8e2c92017-03-23 14:37:26 +00003079
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07003080 DISALLOW_COPY_AND_ASSIGN(HDeoptimize);
3081};
3082
Mingyao Yang063fc772016-08-02 11:02:54 -07003083// Represents a should_deoptimize flag. Currently used for CHA-based devirtualization.
3084// The compiled code checks this flag value in a guard before devirtualized call and
3085// if it's true, starts to do deoptimization.
3086// It has a 4-byte slot on stack.
3087// TODO: allocate a register for this flag.
Mingyao Yangb0b051a2016-11-17 09:04:53 -08003088class HShouldDeoptimizeFlag FINAL : public HVariableInputSizeInstruction {
Mingyao Yang063fc772016-08-02 11:02:54 -07003089 public:
Mingyao Yangb0b051a2016-11-17 09:04:53 -08003090 // CHA guards are only optimized in a separate pass and it has no side effects
3091 // with regard to other passes.
3092 HShouldDeoptimizeFlag(ArenaAllocator* arena, uint32_t dex_pc)
3093 : HVariableInputSizeInstruction(SideEffects::None(), dex_pc, arena, 0, kArenaAllocCHA) {
Mingyao Yang063fc772016-08-02 11:02:54 -07003094 }
3095
Mingyao Yangb0b051a2016-11-17 09:04:53 -08003096 Primitive::Type GetType() const OVERRIDE { return Primitive::kPrimInt; }
3097
3098 // We do all CHA guard elimination/motion in a single pass, after which there is no
3099 // further guard elimination/motion since a guard might have been used for justification
3100 // of the elimination of another guard. Therefore, we pretend this guard cannot be moved
3101 // to avoid other optimizations trying to move it.
Mingyao Yang063fc772016-08-02 11:02:54 -07003102 bool CanBeMoved() const OVERRIDE { return false; }
3103
3104 DECLARE_INSTRUCTION(ShouldDeoptimizeFlag);
3105
3106 private:
3107 DISALLOW_COPY_AND_ASSIGN(HShouldDeoptimizeFlag);
3108};
3109
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003110// Represents the ArtMethod that was passed as a first argument to
3111// the method. It is used by instructions that depend on it, like
3112// instructions that work with the dex cache.
Vladimir Markofcb503c2016-05-18 12:48:17 +01003113class HCurrentMethod FINAL : public HExpression<0> {
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003114 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003115 explicit HCurrentMethod(Primitive::Type type, uint32_t dex_pc = kNoDexPc)
3116 : HExpression(type, SideEffects::None(), dex_pc) {}
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003117
3118 DECLARE_INSTRUCTION(CurrentMethod);
3119
3120 private:
3121 DISALLOW_COPY_AND_ASSIGN(HCurrentMethod);
3122};
3123
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003124// Fetches an ArtMethod from the virtual table or the interface method table
3125// of a class.
Vladimir Markofcb503c2016-05-18 12:48:17 +01003126class HClassTableGet FINAL : public HExpression<1> {
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003127 public:
Vladimir Markoa1de9182016-02-25 11:37:38 +00003128 enum class TableKind {
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003129 kVTable,
3130 kIMTable,
Vladimir Markoa1de9182016-02-25 11:37:38 +00003131 kLast = kIMTable
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003132 };
3133 HClassTableGet(HInstruction* cls,
3134 Primitive::Type type,
3135 TableKind kind,
3136 size_t index,
3137 uint32_t dex_pc)
3138 : HExpression(type, SideEffects::None(), dex_pc),
Vladimir Markoa1de9182016-02-25 11:37:38 +00003139 index_(index) {
3140 SetPackedField<TableKindField>(kind);
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003141 SetRawInputAt(0, cls);
3142 }
3143
3144 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01003145 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003146 return other->AsClassTableGet()->GetIndex() == index_ &&
Vladimir Markoa1de9182016-02-25 11:37:38 +00003147 other->AsClassTableGet()->GetPackedFields() == GetPackedFields();
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003148 }
3149
Vladimir Markoa1de9182016-02-25 11:37:38 +00003150 TableKind GetTableKind() const { return GetPackedField<TableKindField>(); }
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003151 size_t GetIndex() const { return index_; }
3152
3153 DECLARE_INSTRUCTION(ClassTableGet);
3154
3155 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00003156 static constexpr size_t kFieldTableKind = kNumberOfExpressionPackedBits;
3157 static constexpr size_t kFieldTableKindSize =
3158 MinimumBitsToStore(static_cast<size_t>(TableKind::kLast));
3159 static constexpr size_t kNumberOfClassTableGetPackedBits = kFieldTableKind + kFieldTableKindSize;
3160 static_assert(kNumberOfClassTableGetPackedBits <= kMaxNumberOfPackedBits,
3161 "Too many packed fields.");
3162 using TableKindField = BitField<TableKind, kFieldTableKind, kFieldTableKind>;
3163
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003164 // The index of the ArtMethod in the table.
3165 const size_t index_;
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003166
3167 DISALLOW_COPY_AND_ASSIGN(HClassTableGet);
3168};
3169
Mark Mendellfe57faa2015-09-18 09:26:15 -04003170// PackedSwitch (jump table). A block ending with a PackedSwitch instruction will
3171// have one successor for each entry in the switch table, and the final successor
3172// will be the block containing the next Dex opcode.
Vladimir Markofcb503c2016-05-18 12:48:17 +01003173class HPackedSwitch FINAL : public HTemplateInstruction<1> {
Mark Mendellfe57faa2015-09-18 09:26:15 -04003174 public:
Mark Mendell3b9f3042015-09-24 08:43:40 -04003175 HPackedSwitch(int32_t start_value,
3176 uint32_t num_entries,
3177 HInstruction* input,
Mark Mendellfe57faa2015-09-18 09:26:15 -04003178 uint32_t dex_pc = kNoDexPc)
3179 : HTemplateInstruction(SideEffects::None(), dex_pc),
3180 start_value_(start_value),
3181 num_entries_(num_entries) {
3182 SetRawInputAt(0, input);
3183 }
3184
3185 bool IsControlFlow() const OVERRIDE { return true; }
3186
3187 int32_t GetStartValue() const { return start_value_; }
3188
Vladimir Marko211c2112015-09-24 16:52:33 +01003189 uint32_t GetNumEntries() const { return num_entries_; }
Mark Mendellfe57faa2015-09-18 09:26:15 -04003190
3191 HBasicBlock* GetDefaultBlock() const {
3192 // Last entry is the default block.
Vladimir Markoec7802a2015-10-01 20:57:57 +01003193 return GetBlock()->GetSuccessors()[num_entries_];
Mark Mendellfe57faa2015-09-18 09:26:15 -04003194 }
3195 DECLARE_INSTRUCTION(PackedSwitch);
3196
3197 private:
Mark Mendell3b9f3042015-09-24 08:43:40 -04003198 const int32_t start_value_;
3199 const uint32_t num_entries_;
Mark Mendellfe57faa2015-09-18 09:26:15 -04003200
3201 DISALLOW_COPY_AND_ASSIGN(HPackedSwitch);
3202};
3203
Roland Levillain88cb1752014-10-20 16:36:47 +01003204class HUnaryOperation : public HExpression<1> {
3205 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003206 HUnaryOperation(Primitive::Type result_type, HInstruction* input, uint32_t dex_pc = kNoDexPc)
3207 : HExpression(result_type, SideEffects::None(), dex_pc) {
Roland Levillain88cb1752014-10-20 16:36:47 +01003208 SetRawInputAt(0, input);
3209 }
3210
3211 HInstruction* GetInput() const { return InputAt(0); }
3212 Primitive::Type GetResultType() const { return GetType(); }
3213
Alexandre Rames2ed20af2015-03-06 13:55:35 +00003214 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01003215 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003216 return true;
3217 }
Roland Levillain88cb1752014-10-20 16:36:47 +01003218
Roland Levillain31dd3d62016-02-16 12:21:02 +00003219 // Try to statically evaluate `this` and return a HConstant
3220 // containing the result of this evaluation. If `this` cannot
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003221 // be evaluated as a constant, return null.
Roland Levillain9240d6a2014-10-20 16:47:04 +01003222 HConstant* TryStaticEvaluation() const;
3223
3224 // Apply this operation to `x`.
Roland Levillain9867bc72015-08-05 10:21:34 +01003225 virtual HConstant* Evaluate(HIntConstant* x) const = 0;
3226 virtual HConstant* Evaluate(HLongConstant* x) const = 0;
Roland Levillain31dd3d62016-02-16 12:21:02 +00003227 virtual HConstant* Evaluate(HFloatConstant* x) const = 0;
3228 virtual HConstant* Evaluate(HDoubleConstant* x) const = 0;
Roland Levillain9240d6a2014-10-20 16:47:04 +01003229
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00003230 DECLARE_ABSTRACT_INSTRUCTION(UnaryOperation);
Roland Levillain88cb1752014-10-20 16:36:47 +01003231
3232 private:
3233 DISALLOW_COPY_AND_ASSIGN(HUnaryOperation);
3234};
3235
Dave Allison20dfc792014-06-16 20:44:29 -07003236class HBinaryOperation : public HExpression<2> {
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00003237 public:
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003238 HBinaryOperation(Primitive::Type result_type,
3239 HInstruction* left,
Alexandre Rames78e3ef62015-08-12 13:43:29 +01003240 HInstruction* right,
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003241 SideEffects side_effects = SideEffects::None(),
3242 uint32_t dex_pc = kNoDexPc)
3243 : HExpression(result_type, side_effects, dex_pc) {
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003244 SetRawInputAt(0, left);
3245 SetRawInputAt(1, right);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00003246 }
3247
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003248 HInstruction* GetLeft() const { return InputAt(0); }
3249 HInstruction* GetRight() const { return InputAt(1); }
Dave Allison20dfc792014-06-16 20:44:29 -07003250 Primitive::Type GetResultType() const { return GetType(); }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003251
Mingyao Yangdc5ac732015-02-25 11:28:05 -08003252 virtual bool IsCommutative() const { return false; }
3253
3254 // Put constant on the right.
3255 // Returns whether order is changed.
3256 bool OrderInputsWithConstantOnTheRight() {
3257 HInstruction* left = InputAt(0);
3258 HInstruction* right = InputAt(1);
3259 if (left->IsConstant() && !right->IsConstant()) {
3260 ReplaceInput(right, 0);
3261 ReplaceInput(left, 1);
3262 return true;
3263 }
3264 return false;
3265 }
3266
3267 // Order inputs by instruction id, but favor constant on the right side.
3268 // This helps GVN for commutative ops.
3269 void OrderInputs() {
3270 DCHECK(IsCommutative());
3271 HInstruction* left = InputAt(0);
3272 HInstruction* right = InputAt(1);
3273 if (left == right || (!left->IsConstant() && right->IsConstant())) {
3274 return;
3275 }
3276 if (OrderInputsWithConstantOnTheRight()) {
3277 return;
3278 }
3279 // Order according to instruction id.
3280 if (left->GetId() > right->GetId()) {
3281 ReplaceInput(right, 0);
3282 ReplaceInput(left, 1);
3283 }
3284 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003285
Alexandre Rames2ed20af2015-03-06 13:55:35 +00003286 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01003287 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003288 return true;
3289 }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01003290
Roland Levillain31dd3d62016-02-16 12:21:02 +00003291 // Try to statically evaluate `this` and return a HConstant
3292 // containing the result of this evaluation. If `this` cannot
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003293 // be evaluated as a constant, return null.
Roland Levillain9240d6a2014-10-20 16:47:04 +01003294 HConstant* TryStaticEvaluation() const;
Roland Levillain556c3d12014-09-18 15:25:07 +01003295
3296 // Apply this operation to `x` and `y`.
Roland Levillain31dd3d62016-02-16 12:21:02 +00003297 virtual HConstant* Evaluate(HNullConstant* x ATTRIBUTE_UNUSED,
3298 HNullConstant* y ATTRIBUTE_UNUSED) const {
Roland Levillaine53bd812016-02-24 14:54:18 +00003299 LOG(FATAL) << DebugName() << " is not defined for the (null, null) case.";
3300 UNREACHABLE();
Roland Levillain31dd3d62016-02-16 12:21:02 +00003301 }
Roland Levillain9867bc72015-08-05 10:21:34 +01003302 virtual HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const = 0;
3303 virtual HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const = 0;
Roland Levillain9867bc72015-08-05 10:21:34 +01003304 virtual HConstant* Evaluate(HLongConstant* x ATTRIBUTE_UNUSED,
3305 HIntConstant* y ATTRIBUTE_UNUSED) const {
Roland Levillaine53bd812016-02-24 14:54:18 +00003306 LOG(FATAL) << DebugName() << " is not defined for the (long, int) case.";
3307 UNREACHABLE();
Roland Levillain9867bc72015-08-05 10:21:34 +01003308 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00003309 virtual HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const = 0;
3310 virtual HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const = 0;
Roland Levillain556c3d12014-09-18 15:25:07 +01003311
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00003312 // Returns an input that can legally be used as the right input and is
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003313 // constant, or null.
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00003314 HConstant* GetConstantRight() const;
3315
3316 // If `GetConstantRight()` returns one of the input, this returns the other
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003317 // one. Otherwise it returns null.
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00003318 HInstruction* GetLeastConstantLeft() const;
3319
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00003320 DECLARE_ABSTRACT_INSTRUCTION(BinaryOperation);
Roland Levillainccc07a92014-09-16 14:48:16 +01003321
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003322 private:
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003323 DISALLOW_COPY_AND_ASSIGN(HBinaryOperation);
3324};
3325
Mark Mendellc4701932015-04-10 13:18:51 -04003326// The comparison bias applies for floating point operations and indicates how NaN
3327// comparisons are treated:
Roland Levillain4fa13f62015-07-06 18:11:54 +01003328enum class ComparisonBias {
Mark Mendellc4701932015-04-10 13:18:51 -04003329 kNoBias, // bias is not applicable (i.e. for long operation)
3330 kGtBias, // return 1 for NaN comparisons
3331 kLtBias, // return -1 for NaN comparisons
Vladimir Markoa1de9182016-02-25 11:37:38 +00003332 kLast = kLtBias
Mark Mendellc4701932015-04-10 13:18:51 -04003333};
3334
Roland Levillain31dd3d62016-02-16 12:21:02 +00003335std::ostream& operator<<(std::ostream& os, const ComparisonBias& rhs);
3336
Dave Allison20dfc792014-06-16 20:44:29 -07003337class HCondition : public HBinaryOperation {
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003338 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003339 HCondition(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
Vladimir Markoa1de9182016-02-25 11:37:38 +00003340 : HBinaryOperation(Primitive::kPrimBoolean, first, second, SideEffects::None(), dex_pc) {
3341 SetPackedField<ComparisonBiasField>(ComparisonBias::kNoBias);
3342 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003343
Nicolas Geoffray18efde52014-09-22 15:51:11 +01003344 // For code generation purposes, returns whether this instruction is just before
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07003345 // `instruction`, and disregard moves in between.
3346 bool IsBeforeWhenDisregardMoves(HInstruction* instruction) const;
Nicolas Geoffray18efde52014-09-22 15:51:11 +01003347
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00003348 DECLARE_ABSTRACT_INSTRUCTION(Condition);
Dave Allison20dfc792014-06-16 20:44:29 -07003349
3350 virtual IfCondition GetCondition() const = 0;
3351
Mark Mendellc4701932015-04-10 13:18:51 -04003352 virtual IfCondition GetOppositeCondition() const = 0;
3353
Vladimir Markoa1de9182016-02-25 11:37:38 +00003354 bool IsGtBias() const { return GetBias() == ComparisonBias::kGtBias; }
Anton Shaminbdd79352016-02-15 12:48:36 +06003355 bool IsLtBias() const { return GetBias() == ComparisonBias::kLtBias; }
3356
Vladimir Markoa1de9182016-02-25 11:37:38 +00003357 ComparisonBias GetBias() const { return GetPackedField<ComparisonBiasField>(); }
3358 void SetBias(ComparisonBias bias) { SetPackedField<ComparisonBiasField>(bias); }
Mark Mendellc4701932015-04-10 13:18:51 -04003359
Vladimir Marko372f10e2016-05-17 16:30:10 +01003360 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
Vladimir Markoa1de9182016-02-25 11:37:38 +00003361 return GetPackedFields() == other->AsCondition()->GetPackedFields();
Mark Mendellc4701932015-04-10 13:18:51 -04003362 }
3363
Roland Levillain4fa13f62015-07-06 18:11:54 +01003364 bool IsFPConditionTrueIfNaN() const {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003365 DCHECK(Primitive::IsFloatingPointType(InputAt(0)->GetType())) << InputAt(0)->GetType();
Roland Levillain4fa13f62015-07-06 18:11:54 +01003366 IfCondition if_cond = GetCondition();
Anton Shaminbdd79352016-02-15 12:48:36 +06003367 if (if_cond == kCondNE) {
3368 return true;
3369 } else if (if_cond == kCondEQ) {
3370 return false;
3371 }
3372 return ((if_cond == kCondGT) || (if_cond == kCondGE)) && IsGtBias();
Roland Levillain4fa13f62015-07-06 18:11:54 +01003373 }
3374
3375 bool IsFPConditionFalseIfNaN() const {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003376 DCHECK(Primitive::IsFloatingPointType(InputAt(0)->GetType())) << InputAt(0)->GetType();
Roland Levillain4fa13f62015-07-06 18:11:54 +01003377 IfCondition if_cond = GetCondition();
Anton Shaminbdd79352016-02-15 12:48:36 +06003378 if (if_cond == kCondEQ) {
3379 return true;
3380 } else if (if_cond == kCondNE) {
3381 return false;
3382 }
3383 return ((if_cond == kCondLT) || (if_cond == kCondLE)) && IsGtBias();
Roland Levillain4fa13f62015-07-06 18:11:54 +01003384 }
3385
Roland Levillain31dd3d62016-02-16 12:21:02 +00003386 protected:
Vladimir Markoa1de9182016-02-25 11:37:38 +00003387 // Needed if we merge a HCompare into a HCondition.
3388 static constexpr size_t kFieldComparisonBias = kNumberOfExpressionPackedBits;
3389 static constexpr size_t kFieldComparisonBiasSize =
3390 MinimumBitsToStore(static_cast<size_t>(ComparisonBias::kLast));
3391 static constexpr size_t kNumberOfConditionPackedBits =
3392 kFieldComparisonBias + kFieldComparisonBiasSize;
3393 static_assert(kNumberOfConditionPackedBits <= kMaxNumberOfPackedBits, "Too many packed fields.");
3394 using ComparisonBiasField =
3395 BitField<ComparisonBias, kFieldComparisonBias, kFieldComparisonBiasSize>;
3396
Roland Levillain31dd3d62016-02-16 12:21:02 +00003397 template <typename T>
3398 int32_t Compare(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); }
3399
3400 template <typename T>
3401 int32_t CompareFP(T x, T y) const {
3402 DCHECK(Primitive::IsFloatingPointType(InputAt(0)->GetType())) << InputAt(0)->GetType();
3403 DCHECK_NE(GetBias(), ComparisonBias::kNoBias);
3404 // Handle the bias.
3405 return std::isunordered(x, y) ? (IsGtBias() ? 1 : -1) : Compare(x, y);
3406 }
3407
3408 // Return an integer constant containing the result of a condition evaluated at compile time.
3409 HIntConstant* MakeConstantCondition(bool value, uint32_t dex_pc) const {
3410 return GetBlock()->GetGraph()->GetIntConstant(value, dex_pc);
3411 }
3412
Dave Allison20dfc792014-06-16 20:44:29 -07003413 private:
3414 DISALLOW_COPY_AND_ASSIGN(HCondition);
3415};
3416
3417// Instruction to check if two inputs are equal to each other.
Vladimir Markofcb503c2016-05-18 12:48:17 +01003418class HEqual FINAL : public HCondition {
Dave Allison20dfc792014-06-16 20:44:29 -07003419 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003420 HEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3421 : HCondition(first, second, dex_pc) {}
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003422
Mingyao Yangdc5ac732015-02-25 11:28:05 -08003423 bool IsCommutative() const OVERRIDE { return true; }
3424
Vladimir Marko9e23df52015-11-10 17:14:35 +00003425 HConstant* Evaluate(HNullConstant* x ATTRIBUTE_UNUSED,
3426 HNullConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003427 return MakeConstantCondition(true, GetDexPc());
3428 }
3429 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
3430 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
3431 }
3432 // In the following Evaluate methods, a HCompare instruction has
3433 // been merged into this HEqual instruction; evaluate it as
3434 // `Compare(x, y) == 0`.
3435 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
3436 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0),
3437 GetDexPc());
3438 }
3439 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
3440 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3441 }
3442 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
3443 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
Vladimir Marko9e23df52015-11-10 17:14:35 +00003444 }
Roland Levillain556c3d12014-09-18 15:25:07 +01003445
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01003446 DECLARE_INSTRUCTION(Equal);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00003447
Alexandre Rames2ed20af2015-03-06 13:55:35 +00003448 IfCondition GetCondition() const OVERRIDE {
Dave Allison20dfc792014-06-16 20:44:29 -07003449 return kCondEQ;
3450 }
3451
Mark Mendellc4701932015-04-10 13:18:51 -04003452 IfCondition GetOppositeCondition() const OVERRIDE {
3453 return kCondNE;
3454 }
3455
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00003456 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003457 template <typename T> static bool Compute(T x, T y) { return x == y; }
Aart Bike9f37602015-10-09 11:15:55 -07003458
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00003459 DISALLOW_COPY_AND_ASSIGN(HEqual);
3460};
3461
Vladimir Markofcb503c2016-05-18 12:48:17 +01003462class HNotEqual FINAL : public HCondition {
Dave Allison20dfc792014-06-16 20:44:29 -07003463 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003464 HNotEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3465 : HCondition(first, second, dex_pc) {}
Dave Allison20dfc792014-06-16 20:44:29 -07003466
Mingyao Yangdc5ac732015-02-25 11:28:05 -08003467 bool IsCommutative() const OVERRIDE { return true; }
3468
Vladimir Marko9e23df52015-11-10 17:14:35 +00003469 HConstant* Evaluate(HNullConstant* x ATTRIBUTE_UNUSED,
3470 HNullConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003471 return MakeConstantCondition(false, GetDexPc());
3472 }
3473 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
3474 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
3475 }
3476 // In the following Evaluate methods, a HCompare instruction has
3477 // been merged into this HNotEqual instruction; evaluate it as
3478 // `Compare(x, y) != 0`.
3479 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
3480 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
3481 }
3482 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
3483 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3484 }
3485 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
3486 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
Vladimir Marko9e23df52015-11-10 17:14:35 +00003487 }
Roland Levillain556c3d12014-09-18 15:25:07 +01003488
Dave Allison20dfc792014-06-16 20:44:29 -07003489 DECLARE_INSTRUCTION(NotEqual);
3490
Alexandre Rames2ed20af2015-03-06 13:55:35 +00003491 IfCondition GetCondition() const OVERRIDE {
Dave Allison20dfc792014-06-16 20:44:29 -07003492 return kCondNE;
3493 }
3494
Mark Mendellc4701932015-04-10 13:18:51 -04003495 IfCondition GetOppositeCondition() const OVERRIDE {
3496 return kCondEQ;
3497 }
3498
Dave Allison20dfc792014-06-16 20:44:29 -07003499 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003500 template <typename T> static bool Compute(T x, T y) { return x != y; }
Aart Bike9f37602015-10-09 11:15:55 -07003501
Dave Allison20dfc792014-06-16 20:44:29 -07003502 DISALLOW_COPY_AND_ASSIGN(HNotEqual);
3503};
3504
Vladimir Markofcb503c2016-05-18 12:48:17 +01003505class HLessThan FINAL : public HCondition {
Dave Allison20dfc792014-06-16 20:44:29 -07003506 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003507 HLessThan(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3508 : HCondition(first, second, dex_pc) {}
Dave Allison20dfc792014-06-16 20:44:29 -07003509
Roland Levillain9867bc72015-08-05 10:21:34 +01003510 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003511 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01003512 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00003513 // In the following Evaluate methods, a HCompare instruction has
3514 // been merged into this HLessThan instruction; evaluate it as
3515 // `Compare(x, y) < 0`.
Roland Levillain9867bc72015-08-05 10:21:34 +01003516 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003517 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
3518 }
3519 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
3520 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3521 }
3522 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
3523 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01003524 }
Roland Levillain556c3d12014-09-18 15:25:07 +01003525
Dave Allison20dfc792014-06-16 20:44:29 -07003526 DECLARE_INSTRUCTION(LessThan);
3527
Alexandre Rames2ed20af2015-03-06 13:55:35 +00003528 IfCondition GetCondition() const OVERRIDE {
Dave Allison20dfc792014-06-16 20:44:29 -07003529 return kCondLT;
3530 }
3531
Mark Mendellc4701932015-04-10 13:18:51 -04003532 IfCondition GetOppositeCondition() const OVERRIDE {
3533 return kCondGE;
3534 }
3535
Dave Allison20dfc792014-06-16 20:44:29 -07003536 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003537 template <typename T> static bool Compute(T x, T y) { return x < y; }
Aart Bike9f37602015-10-09 11:15:55 -07003538
Dave Allison20dfc792014-06-16 20:44:29 -07003539 DISALLOW_COPY_AND_ASSIGN(HLessThan);
3540};
3541
Vladimir Markofcb503c2016-05-18 12:48:17 +01003542class HLessThanOrEqual FINAL : public HCondition {
Dave Allison20dfc792014-06-16 20:44:29 -07003543 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003544 HLessThanOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3545 : HCondition(first, second, dex_pc) {}
Dave Allison20dfc792014-06-16 20:44:29 -07003546
Roland Levillain9867bc72015-08-05 10:21:34 +01003547 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003548 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01003549 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00003550 // In the following Evaluate methods, a HCompare instruction has
3551 // been merged into this HLessThanOrEqual instruction; evaluate it as
3552 // `Compare(x, y) <= 0`.
Roland Levillain9867bc72015-08-05 10:21:34 +01003553 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003554 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
3555 }
3556 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
3557 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3558 }
3559 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
3560 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01003561 }
Roland Levillain556c3d12014-09-18 15:25:07 +01003562
Dave Allison20dfc792014-06-16 20:44:29 -07003563 DECLARE_INSTRUCTION(LessThanOrEqual);
3564
Alexandre Rames2ed20af2015-03-06 13:55:35 +00003565 IfCondition GetCondition() const OVERRIDE {
Dave Allison20dfc792014-06-16 20:44:29 -07003566 return kCondLE;
3567 }
3568
Mark Mendellc4701932015-04-10 13:18:51 -04003569 IfCondition GetOppositeCondition() const OVERRIDE {
3570 return kCondGT;
3571 }
3572
Dave Allison20dfc792014-06-16 20:44:29 -07003573 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003574 template <typename T> static bool Compute(T x, T y) { return x <= y; }
Aart Bike9f37602015-10-09 11:15:55 -07003575
Dave Allison20dfc792014-06-16 20:44:29 -07003576 DISALLOW_COPY_AND_ASSIGN(HLessThanOrEqual);
3577};
3578
Vladimir Markofcb503c2016-05-18 12:48:17 +01003579class HGreaterThan FINAL : public HCondition {
Dave Allison20dfc792014-06-16 20:44:29 -07003580 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003581 HGreaterThan(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3582 : HCondition(first, second, dex_pc) {}
Dave Allison20dfc792014-06-16 20:44:29 -07003583
Roland Levillain9867bc72015-08-05 10:21:34 +01003584 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003585 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01003586 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00003587 // In the following Evaluate methods, a HCompare instruction has
3588 // been merged into this HGreaterThan instruction; evaluate it as
3589 // `Compare(x, y) > 0`.
Roland Levillain9867bc72015-08-05 10:21:34 +01003590 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003591 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
3592 }
3593 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
3594 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3595 }
3596 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
3597 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01003598 }
Roland Levillain556c3d12014-09-18 15:25:07 +01003599
Dave Allison20dfc792014-06-16 20:44:29 -07003600 DECLARE_INSTRUCTION(GreaterThan);
3601
Alexandre Rames2ed20af2015-03-06 13:55:35 +00003602 IfCondition GetCondition() const OVERRIDE {
Dave Allison20dfc792014-06-16 20:44:29 -07003603 return kCondGT;
3604 }
3605
Mark Mendellc4701932015-04-10 13:18:51 -04003606 IfCondition GetOppositeCondition() const OVERRIDE {
3607 return kCondLE;
3608 }
3609
Dave Allison20dfc792014-06-16 20:44:29 -07003610 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003611 template <typename T> static bool Compute(T x, T y) { return x > y; }
Aart Bike9f37602015-10-09 11:15:55 -07003612
Dave Allison20dfc792014-06-16 20:44:29 -07003613 DISALLOW_COPY_AND_ASSIGN(HGreaterThan);
3614};
3615
Vladimir Markofcb503c2016-05-18 12:48:17 +01003616class HGreaterThanOrEqual FINAL : public HCondition {
Dave Allison20dfc792014-06-16 20:44:29 -07003617 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003618 HGreaterThanOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3619 : HCondition(first, second, dex_pc) {}
Dave Allison20dfc792014-06-16 20:44:29 -07003620
Roland Levillain9867bc72015-08-05 10:21:34 +01003621 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003622 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01003623 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00003624 // In the following Evaluate methods, a HCompare instruction has
3625 // been merged into this HGreaterThanOrEqual instruction; evaluate it as
3626 // `Compare(x, y) >= 0`.
Roland Levillain9867bc72015-08-05 10:21:34 +01003627 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003628 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
3629 }
3630 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
3631 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3632 }
3633 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
3634 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01003635 }
Roland Levillain556c3d12014-09-18 15:25:07 +01003636
Dave Allison20dfc792014-06-16 20:44:29 -07003637 DECLARE_INSTRUCTION(GreaterThanOrEqual);
3638
Alexandre Rames2ed20af2015-03-06 13:55:35 +00003639 IfCondition GetCondition() const OVERRIDE {
Dave Allison20dfc792014-06-16 20:44:29 -07003640 return kCondGE;
3641 }
3642
Mark Mendellc4701932015-04-10 13:18:51 -04003643 IfCondition GetOppositeCondition() const OVERRIDE {
3644 return kCondLT;
3645 }
3646
Dave Allison20dfc792014-06-16 20:44:29 -07003647 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003648 template <typename T> static bool Compute(T x, T y) { return x >= y; }
Aart Bike9f37602015-10-09 11:15:55 -07003649
Dave Allison20dfc792014-06-16 20:44:29 -07003650 DISALLOW_COPY_AND_ASSIGN(HGreaterThanOrEqual);
3651};
3652
Vladimir Markofcb503c2016-05-18 12:48:17 +01003653class HBelow FINAL : public HCondition {
Aart Bike9f37602015-10-09 11:15:55 -07003654 public:
3655 HBelow(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3656 : HCondition(first, second, dex_pc) {}
3657
3658 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003659 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
Aart Bike9f37602015-10-09 11:15:55 -07003660 }
3661 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003662 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
3663 }
3664 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED,
3665 HFloatConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
3666 LOG(FATAL) << DebugName() << " is not defined for float values";
3667 UNREACHABLE();
3668 }
3669 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED,
3670 HDoubleConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
3671 LOG(FATAL) << DebugName() << " is not defined for double values";
3672 UNREACHABLE();
Aart Bike9f37602015-10-09 11:15:55 -07003673 }
3674
3675 DECLARE_INSTRUCTION(Below);
3676
3677 IfCondition GetCondition() const OVERRIDE {
3678 return kCondB;
3679 }
3680
3681 IfCondition GetOppositeCondition() const OVERRIDE {
3682 return kCondAE;
3683 }
3684
3685 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003686 template <typename T> static bool Compute(T x, T y) {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003687 return MakeUnsigned(x) < MakeUnsigned(y);
3688 }
Aart Bike9f37602015-10-09 11:15:55 -07003689
3690 DISALLOW_COPY_AND_ASSIGN(HBelow);
3691};
3692
Vladimir Markofcb503c2016-05-18 12:48:17 +01003693class HBelowOrEqual FINAL : public HCondition {
Aart Bike9f37602015-10-09 11:15:55 -07003694 public:
3695 HBelowOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3696 : HCondition(first, second, dex_pc) {}
3697
3698 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003699 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
Aart Bike9f37602015-10-09 11:15:55 -07003700 }
3701 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003702 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
3703 }
3704 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED,
3705 HFloatConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
3706 LOG(FATAL) << DebugName() << " is not defined for float values";
3707 UNREACHABLE();
3708 }
3709 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED,
3710 HDoubleConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
3711 LOG(FATAL) << DebugName() << " is not defined for double values";
3712 UNREACHABLE();
Aart Bike9f37602015-10-09 11:15:55 -07003713 }
3714
3715 DECLARE_INSTRUCTION(BelowOrEqual);
3716
3717 IfCondition GetCondition() const OVERRIDE {
3718 return kCondBE;
3719 }
3720
3721 IfCondition GetOppositeCondition() const OVERRIDE {
3722 return kCondA;
3723 }
3724
3725 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003726 template <typename T> static bool Compute(T x, T y) {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003727 return MakeUnsigned(x) <= MakeUnsigned(y);
3728 }
Aart Bike9f37602015-10-09 11:15:55 -07003729
3730 DISALLOW_COPY_AND_ASSIGN(HBelowOrEqual);
3731};
3732
Vladimir Markofcb503c2016-05-18 12:48:17 +01003733class HAbove FINAL : public HCondition {
Aart Bike9f37602015-10-09 11:15:55 -07003734 public:
3735 HAbove(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3736 : HCondition(first, second, dex_pc) {}
3737
3738 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003739 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
Aart Bike9f37602015-10-09 11:15:55 -07003740 }
3741 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003742 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
3743 }
3744 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED,
3745 HFloatConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
3746 LOG(FATAL) << DebugName() << " is not defined for float values";
3747 UNREACHABLE();
3748 }
3749 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED,
3750 HDoubleConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
3751 LOG(FATAL) << DebugName() << " is not defined for double values";
3752 UNREACHABLE();
Aart Bike9f37602015-10-09 11:15:55 -07003753 }
3754
3755 DECLARE_INSTRUCTION(Above);
3756
3757 IfCondition GetCondition() const OVERRIDE {
3758 return kCondA;
3759 }
3760
3761 IfCondition GetOppositeCondition() const OVERRIDE {
3762 return kCondBE;
3763 }
3764
3765 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003766 template <typename T> static bool Compute(T x, T y) {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003767 return MakeUnsigned(x) > MakeUnsigned(y);
3768 }
Aart Bike9f37602015-10-09 11:15:55 -07003769
3770 DISALLOW_COPY_AND_ASSIGN(HAbove);
3771};
3772
Vladimir Markofcb503c2016-05-18 12:48:17 +01003773class HAboveOrEqual FINAL : public HCondition {
Aart Bike9f37602015-10-09 11:15:55 -07003774 public:
3775 HAboveOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc)
3776 : HCondition(first, second, dex_pc) {}
3777
3778 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003779 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
Aart Bike9f37602015-10-09 11:15:55 -07003780 }
3781 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003782 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
3783 }
3784 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED,
3785 HFloatConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
3786 LOG(FATAL) << DebugName() << " is not defined for float values";
3787 UNREACHABLE();
3788 }
3789 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED,
3790 HDoubleConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
3791 LOG(FATAL) << DebugName() << " is not defined for double values";
3792 UNREACHABLE();
Aart Bike9f37602015-10-09 11:15:55 -07003793 }
3794
3795 DECLARE_INSTRUCTION(AboveOrEqual);
3796
3797 IfCondition GetCondition() const OVERRIDE {
3798 return kCondAE;
3799 }
3800
3801 IfCondition GetOppositeCondition() const OVERRIDE {
3802 return kCondB;
3803 }
3804
3805 private:
Anton Kirilov7fe30f92016-06-29 17:03:40 +01003806 template <typename T> static bool Compute(T x, T y) {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003807 return MakeUnsigned(x) >= MakeUnsigned(y);
3808 }
Aart Bike9f37602015-10-09 11:15:55 -07003809
3810 DISALLOW_COPY_AND_ASSIGN(HAboveOrEqual);
3811};
Dave Allison20dfc792014-06-16 20:44:29 -07003812
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003813// Instruction to check how two inputs compare to each other.
3814// Result is 0 if input0 == input1, 1 if input0 > input1, or -1 if input0 < input1.
Vladimir Markofcb503c2016-05-18 12:48:17 +01003815class HCompare FINAL : public HBinaryOperation {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003816 public:
Roland Levillaina5c4a402016-03-15 15:02:50 +00003817 // Note that `comparison_type` is the type of comparison performed
3818 // between the comparison's inputs, not the type of the instantiated
3819 // HCompare instruction (which is always Primitive::kPrimInt).
3820 HCompare(Primitive::Type comparison_type,
Alexey Frunze4dda3372015-06-01 18:31:49 -07003821 HInstruction* first,
3822 HInstruction* second,
Mark Mendellc4701932015-04-10 13:18:51 -04003823 ComparisonBias bias,
Alexey Frunze4dda3372015-06-01 18:31:49 -07003824 uint32_t dex_pc)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06003825 : HBinaryOperation(Primitive::kPrimInt,
3826 first,
3827 second,
Roland Levillaina5c4a402016-03-15 15:02:50 +00003828 SideEffectsForArchRuntimeCalls(comparison_type),
Vladimir Markoa1de9182016-02-25 11:37:38 +00003829 dex_pc) {
3830 SetPackedField<ComparisonBiasField>(bias);
Roland Levillain5b5b9312016-03-22 14:57:31 +00003831 DCHECK_EQ(comparison_type, Primitive::PrimitiveKind(first->GetType()));
3832 DCHECK_EQ(comparison_type, Primitive::PrimitiveKind(second->GetType()));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003833 }
3834
Roland Levillain9867bc72015-08-05 10:21:34 +01003835 template <typename T>
Roland Levillain31dd3d62016-02-16 12:21:02 +00003836 int32_t Compute(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); }
3837
3838 template <typename T>
3839 int32_t ComputeFP(T x, T y) const {
3840 DCHECK(Primitive::IsFloatingPointType(InputAt(0)->GetType())) << InputAt(0)->GetType();
3841 DCHECK_NE(GetBias(), ComparisonBias::kNoBias);
3842 // Handle the bias.
3843 return std::isunordered(x, y) ? (IsGtBias() ? 1 : -1) : Compute(x, y);
3844 }
Calin Juravleddb7df22014-11-25 20:56:51 +00003845
Roland Levillain9867bc72015-08-05 10:21:34 +01003846 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003847 // Note that there is no "cmp-int" Dex instruction so we shouldn't
3848 // reach this code path when processing a freshly built HIR
3849 // graph. However HCompare integer instructions can be synthesized
3850 // by the instruction simplifier to implement IntegerCompare and
3851 // IntegerSignum intrinsics, so we have to handle this case.
3852 return MakeConstantComparison(Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01003853 }
3854 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00003855 return MakeConstantComparison(Compute(x->GetValue(), y->GetValue()), GetDexPc());
3856 }
3857 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
3858 return MakeConstantComparison(ComputeFP(x->GetValue(), y->GetValue()), GetDexPc());
3859 }
3860 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
3861 return MakeConstantComparison(ComputeFP(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain556c3d12014-09-18 15:25:07 +01003862 }
3863
Vladimir Marko372f10e2016-05-17 16:30:10 +01003864 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
Vladimir Markoa1de9182016-02-25 11:37:38 +00003865 return GetPackedFields() == other->AsCompare()->GetPackedFields();
Calin Juravleddb7df22014-11-25 20:56:51 +00003866 }
3867
Vladimir Markoa1de9182016-02-25 11:37:38 +00003868 ComparisonBias GetBias() const { return GetPackedField<ComparisonBiasField>(); }
Mark Mendellc4701932015-04-10 13:18:51 -04003869
Roland Levillain31dd3d62016-02-16 12:21:02 +00003870 // Does this compare instruction have a "gt bias" (vs an "lt bias")?
Vladimir Markoa1de9182016-02-25 11:37:38 +00003871 // Only meaningful for floating-point comparisons.
Roland Levillain31dd3d62016-02-16 12:21:02 +00003872 bool IsGtBias() const {
3873 DCHECK(Primitive::IsFloatingPointType(InputAt(0)->GetType())) << InputAt(0)->GetType();
Vladimir Markoa1de9182016-02-25 11:37:38 +00003874 return GetBias() == ComparisonBias::kGtBias;
Roland Levillain31dd3d62016-02-16 12:21:02 +00003875 }
Alexandre Rames78e3ef62015-08-12 13:43:29 +01003876
Roland Levillain1693a1f2016-03-15 14:57:31 +00003877 static SideEffects SideEffectsForArchRuntimeCalls(Primitive::Type type ATTRIBUTE_UNUSED) {
3878 // Comparisons do not require a runtime call in any back end.
3879 return SideEffects::None();
Alexandre Rames78e3ef62015-08-12 13:43:29 +01003880 }
Alexey Frunze4dda3372015-06-01 18:31:49 -07003881
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003882 DECLARE_INSTRUCTION(Compare);
3883
Roland Levillain31dd3d62016-02-16 12:21:02 +00003884 protected:
Vladimir Markoa1de9182016-02-25 11:37:38 +00003885 static constexpr size_t kFieldComparisonBias = kNumberOfExpressionPackedBits;
3886 static constexpr size_t kFieldComparisonBiasSize =
3887 MinimumBitsToStore(static_cast<size_t>(ComparisonBias::kLast));
3888 static constexpr size_t kNumberOfComparePackedBits =
3889 kFieldComparisonBias + kFieldComparisonBiasSize;
3890 static_assert(kNumberOfComparePackedBits <= kMaxNumberOfPackedBits, "Too many packed fields.");
3891 using ComparisonBiasField =
3892 BitField<ComparisonBias, kFieldComparisonBias, kFieldComparisonBiasSize>;
3893
Roland Levillain31dd3d62016-02-16 12:21:02 +00003894 // Return an integer constant containing the result of a comparison evaluated at compile time.
3895 HIntConstant* MakeConstantComparison(int32_t value, uint32_t dex_pc) const {
3896 DCHECK(value == -1 || value == 0 || value == 1) << value;
3897 return GetBlock()->GetGraph()->GetIntConstant(value, dex_pc);
3898 }
3899
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003900 private:
3901 DISALLOW_COPY_AND_ASSIGN(HCompare);
3902};
3903
Nicolas Geoffray2b615ba2017-01-06 14:40:07 +00003904class HNewInstance FINAL : public HExpression<1> {
David Brazdil6de19382016-01-08 17:37:10 +00003905 public:
3906 HNewInstance(HInstruction* cls,
David Brazdil6de19382016-01-08 17:37:10 +00003907 uint32_t dex_pc,
Andreas Gampea5b09a62016-11-17 15:21:22 -08003908 dex::TypeIndex type_index,
David Brazdil6de19382016-01-08 17:37:10 +00003909 const DexFile& dex_file,
David Brazdil6de19382016-01-08 17:37:10 +00003910 bool finalizable,
3911 QuickEntrypointEnum entrypoint)
3912 : HExpression(Primitive::kPrimNot, SideEffects::CanTriggerGC(), dex_pc),
3913 type_index_(type_index),
3914 dex_file_(dex_file),
David Brazdil6de19382016-01-08 17:37:10 +00003915 entrypoint_(entrypoint) {
Vladimir Markoa1de9182016-02-25 11:37:38 +00003916 SetPackedFlag<kFlagFinalizable>(finalizable);
David Brazdil6de19382016-01-08 17:37:10 +00003917 SetRawInputAt(0, cls);
David Brazdil6de19382016-01-08 17:37:10 +00003918 }
3919
Andreas Gampea5b09a62016-11-17 15:21:22 -08003920 dex::TypeIndex GetTypeIndex() const { return type_index_; }
David Brazdil6de19382016-01-08 17:37:10 +00003921 const DexFile& GetDexFile() const { return dex_file_; }
3922
3923 // Calls runtime so needs an environment.
3924 bool NeedsEnvironment() const OVERRIDE { return true; }
3925
Mingyao Yang062157f2016-03-02 10:15:36 -08003926 // Can throw errors when out-of-memory or if it's not instantiable/accessible.
3927 bool CanThrow() const OVERRIDE { return true; }
3928
Nicolas Geoffray5247c082017-01-13 14:17:29 +00003929 bool NeedsChecks() const {
3930 return entrypoint_ == kQuickAllocObjectWithChecks;
3931 }
David Brazdil6de19382016-01-08 17:37:10 +00003932
Vladimir Markoa1de9182016-02-25 11:37:38 +00003933 bool IsFinalizable() const { return GetPackedFlag<kFlagFinalizable>(); }
David Brazdil6de19382016-01-08 17:37:10 +00003934
3935 bool CanBeNull() const OVERRIDE { return false; }
3936
3937 QuickEntrypointEnum GetEntrypoint() const { return entrypoint_; }
3938
3939 void SetEntrypoint(QuickEntrypointEnum entrypoint) {
3940 entrypoint_ = entrypoint;
3941 }
3942
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00003943 HLoadClass* GetLoadClass() const {
3944 HInstruction* input = InputAt(0);
3945 if (input->IsClinitCheck()) {
3946 input = input->InputAt(0);
3947 }
3948 DCHECK(input->IsLoadClass());
3949 return input->AsLoadClass();
3950 }
3951
David Brazdil6de19382016-01-08 17:37:10 +00003952 bool IsStringAlloc() const;
3953
3954 DECLARE_INSTRUCTION(NewInstance);
3955
3956 private:
Nicolas Geoffray5247c082017-01-13 14:17:29 +00003957 static constexpr size_t kFlagFinalizable = kNumberOfExpressionPackedBits;
Vladimir Markoa1de9182016-02-25 11:37:38 +00003958 static constexpr size_t kNumberOfNewInstancePackedBits = kFlagFinalizable + 1;
3959 static_assert(kNumberOfNewInstancePackedBits <= kMaxNumberOfPackedBits,
3960 "Too many packed fields.");
3961
Andreas Gampea5b09a62016-11-17 15:21:22 -08003962 const dex::TypeIndex type_index_;
David Brazdil6de19382016-01-08 17:37:10 +00003963 const DexFile& dex_file_;
David Brazdil6de19382016-01-08 17:37:10 +00003964 QuickEntrypointEnum entrypoint_;
3965
3966 DISALLOW_COPY_AND_ASSIGN(HNewInstance);
3967};
3968
Agi Csaki05f20562015-08-19 14:58:14 -07003969enum IntrinsicNeedsEnvironmentOrCache {
3970 kNoEnvironmentOrCache, // Intrinsic does not require an environment or dex cache.
3971 kNeedsEnvironmentOrCache // Intrinsic requires an environment or requires a dex cache.
agicsaki57b81ec2015-08-11 17:39:37 -07003972};
3973
Aart Bik5d75afe2015-12-14 11:57:01 -08003974enum IntrinsicSideEffects {
3975 kNoSideEffects, // Intrinsic does not have any heap memory side effects.
3976 kReadSideEffects, // Intrinsic may read heap memory.
3977 kWriteSideEffects, // Intrinsic may write heap memory.
3978 kAllSideEffects // Intrinsic may read or write heap memory, or trigger GC.
3979};
3980
3981enum IntrinsicExceptions {
3982 kNoThrow, // Intrinsic does not throw any exceptions.
3983 kCanThrow // Intrinsic may throw exceptions.
3984};
3985
Mingyao Yanga9dbe832016-12-15 12:02:53 -08003986class HInvoke : public HVariableInputSizeInstruction {
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00003987 public:
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01003988 bool NeedsEnvironment() const OVERRIDE;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00003989
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01003990 void SetArgumentAt(size_t index, HInstruction* argument) {
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003991 SetRawInputAt(index, argument);
3992 }
3993
Roland Levillain3e3d7332015-04-28 11:00:54 +01003994 // Return the number of arguments. This number can be lower than
3995 // the number of inputs returned by InputCount(), as some invoke
3996 // instructions (e.g. HInvokeStaticOrDirect) can have non-argument
3997 // inputs at the end of their list of inputs.
3998 uint32_t GetNumberOfArguments() const { return number_of_arguments_; }
3999
Vladimir Markoa1de9182016-02-25 11:37:38 +00004000 Primitive::Type GetType() const OVERRIDE { return GetPackedField<ReturnTypeField>(); }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01004001
Andreas Gampe71fb52f2014-12-29 17:43:08 -08004002 uint32_t GetDexMethodIndex() const { return dex_method_index_; }
4003
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004004 InvokeType GetInvokeType() const {
4005 return GetPackedField<InvokeTypeField>();
Vladimir Markoa1de9182016-02-25 11:37:38 +00004006 }
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +01004007
Nicolas Geoffray1ba19812015-04-21 09:12:40 +01004008 Intrinsics GetIntrinsic() const {
Andreas Gampe71fb52f2014-12-29 17:43:08 -08004009 return intrinsic_;
4010 }
4011
Aart Bik5d75afe2015-12-14 11:57:01 -08004012 void SetIntrinsic(Intrinsics intrinsic,
4013 IntrinsicNeedsEnvironmentOrCache needs_env_or_cache,
4014 IntrinsicSideEffects side_effects,
4015 IntrinsicExceptions exceptions);
Andreas Gampe71fb52f2014-12-29 17:43:08 -08004016
Nicolas Geoffray78f4fa72015-06-12 09:35:05 +01004017 bool IsFromInlinedInvoke() const {
Nicolas Geoffray8e1ef532015-11-23 12:04:37 +00004018 return GetEnvironment()->IsFromInlinedInvoke();
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01004019 }
4020
Aart Bikff7d89c2016-11-07 08:49:28 -08004021 void SetCanThrow(bool can_throw) { SetPackedFlag<kFlagCanThrow>(can_throw); }
4022
Vladimir Markoa1de9182016-02-25 11:37:38 +00004023 bool CanThrow() const OVERRIDE { return GetPackedFlag<kFlagCanThrow>(); }
Aart Bik5d75afe2015-12-14 11:57:01 -08004024
Aart Bik71bf7b42016-11-16 10:17:46 -08004025 bool CanBeMoved() const OVERRIDE { return IsIntrinsic() && !DoesAnyWrite(); }
Aart Bik5d75afe2015-12-14 11:57:01 -08004026
Vladimir Marko372f10e2016-05-17 16:30:10 +01004027 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
Aart Bik5d75afe2015-12-14 11:57:01 -08004028 return intrinsic_ != Intrinsics::kNone && intrinsic_ == other->AsInvoke()->intrinsic_;
4029 }
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01004030
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01004031 uint32_t* GetIntrinsicOptimizations() {
4032 return &intrinsic_optimizations_;
4033 }
4034
4035 const uint32_t* GetIntrinsicOptimizations() const {
4036 return &intrinsic_optimizations_;
4037 }
4038
4039 bool IsIntrinsic() const { return intrinsic_ != Intrinsics::kNone; }
4040
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004041 ArtMethod* GetResolvedMethod() const { return resolved_method_; }
Nicolas Geoffrayc4aa82c2017-03-06 14:38:52 +00004042 void SetResolvedMethod(ArtMethod* method) { resolved_method_ = method; }
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004043
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004044 DECLARE_ABSTRACT_INSTRUCTION(Invoke);
Nicolas Geoffray360231a2014-10-08 21:07:48 +01004045
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00004046 protected:
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004047 static constexpr size_t kFieldInvokeType = kNumberOfGenericPackedBits;
4048 static constexpr size_t kFieldInvokeTypeSize =
Vladimir Markoa1de9182016-02-25 11:37:38 +00004049 MinimumBitsToStore(static_cast<size_t>(kMaxInvokeType));
4050 static constexpr size_t kFieldReturnType =
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004051 kFieldInvokeType + kFieldInvokeTypeSize;
Vladimir Markoa1de9182016-02-25 11:37:38 +00004052 static constexpr size_t kFieldReturnTypeSize =
4053 MinimumBitsToStore(static_cast<size_t>(Primitive::kPrimLast));
4054 static constexpr size_t kFlagCanThrow = kFieldReturnType + kFieldReturnTypeSize;
4055 static constexpr size_t kNumberOfInvokePackedBits = kFlagCanThrow + 1;
4056 static_assert(kNumberOfInvokePackedBits <= kMaxNumberOfPackedBits, "Too many packed fields.");
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004057 using InvokeTypeField = BitField<InvokeType, kFieldInvokeType, kFieldInvokeTypeSize>;
Vladimir Markoa1de9182016-02-25 11:37:38 +00004058 using ReturnTypeField = BitField<Primitive::Type, kFieldReturnType, kFieldReturnTypeSize>;
4059
Andreas Gampe71fb52f2014-12-29 17:43:08 -08004060 HInvoke(ArenaAllocator* arena,
4061 uint32_t number_of_arguments,
Roland Levillain3e3d7332015-04-28 11:00:54 +01004062 uint32_t number_of_other_inputs,
Andreas Gampe71fb52f2014-12-29 17:43:08 -08004063 Primitive::Type return_type,
4064 uint32_t dex_pc,
Nicolas Geoffrayb176d7c2015-05-20 18:48:31 +01004065 uint32_t dex_method_index,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004066 ArtMethod* resolved_method,
4067 InvokeType invoke_type)
Mingyao Yanga9dbe832016-12-15 12:02:53 -08004068 : HVariableInputSizeInstruction(
4069 SideEffects::AllExceptGCDependency(), // Assume write/read on all fields/arrays.
4070 dex_pc,
4071 arena,
4072 number_of_arguments + number_of_other_inputs,
4073 kArenaAllocInvokeInputs),
Roland Levillain3e3d7332015-04-28 11:00:54 +01004074 number_of_arguments_(number_of_arguments),
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004075 resolved_method_(resolved_method),
Andreas Gampe71fb52f2014-12-29 17:43:08 -08004076 dex_method_index_(dex_method_index),
agicsaki57b81ec2015-08-11 17:39:37 -07004077 intrinsic_(Intrinsics::kNone),
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01004078 intrinsic_optimizations_(0) {
Vladimir Markoa1de9182016-02-25 11:37:38 +00004079 SetPackedField<ReturnTypeField>(return_type);
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004080 SetPackedField<InvokeTypeField>(invoke_type);
Vladimir Markoa1de9182016-02-25 11:37:38 +00004081 SetPackedFlag<kFlagCanThrow>(true);
Andreas Gampe71fb52f2014-12-29 17:43:08 -08004082 }
4083
Roland Levillain3e3d7332015-04-28 11:00:54 +01004084 uint32_t number_of_arguments_;
Nicolas Geoffrayc4aa82c2017-03-06 14:38:52 +00004085 ArtMethod* resolved_method_;
Andreas Gampe71fb52f2014-12-29 17:43:08 -08004086 const uint32_t dex_method_index_;
4087 Intrinsics intrinsic_;
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01004088
4089 // A magic word holding optimizations for intrinsics. See intrinsics.h.
4090 uint32_t intrinsic_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00004091
4092 private:
4093 DISALLOW_COPY_AND_ASSIGN(HInvoke);
4094};
4095
Vladimir Markofcb503c2016-05-18 12:48:17 +01004096class HInvokeUnresolved FINAL : public HInvoke {
Calin Juravle175dc732015-08-25 15:42:32 +01004097 public:
4098 HInvokeUnresolved(ArenaAllocator* arena,
4099 uint32_t number_of_arguments,
4100 Primitive::Type return_type,
4101 uint32_t dex_pc,
4102 uint32_t dex_method_index,
4103 InvokeType invoke_type)
4104 : HInvoke(arena,
4105 number_of_arguments,
4106 0u /* number_of_other_inputs */,
4107 return_type,
4108 dex_pc,
4109 dex_method_index,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004110 nullptr,
Calin Juravle175dc732015-08-25 15:42:32 +01004111 invoke_type) {
4112 }
4113
4114 DECLARE_INSTRUCTION(InvokeUnresolved);
4115
4116 private:
4117 DISALLOW_COPY_AND_ASSIGN(HInvokeUnresolved);
4118};
4119
Orion Hodsonac141392017-01-13 11:53:47 +00004120class HInvokePolymorphic FINAL : public HInvoke {
4121 public:
4122 HInvokePolymorphic(ArenaAllocator* arena,
4123 uint32_t number_of_arguments,
4124 Primitive::Type return_type,
4125 uint32_t dex_pc,
4126 uint32_t dex_method_index)
4127 : HInvoke(arena,
4128 number_of_arguments,
4129 0u /* number_of_other_inputs */,
4130 return_type,
4131 dex_pc,
4132 dex_method_index,
4133 nullptr,
4134 kVirtual) {}
4135
4136 DECLARE_INSTRUCTION(InvokePolymorphic);
4137
4138 private:
4139 DISALLOW_COPY_AND_ASSIGN(HInvokePolymorphic);
4140};
4141
Vladimir Markofcb503c2016-05-18 12:48:17 +01004142class HInvokeStaticOrDirect FINAL : public HInvoke {
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00004143 public:
Roland Levillain4c0eb422015-04-24 16:43:49 +01004144 // Requirements of this method call regarding the class
4145 // initialization (clinit) check of its declaring class.
4146 enum class ClinitCheckRequirement {
4147 kNone, // Class already initialized.
4148 kExplicit, // Static call having explicit clinit check as last input.
4149 kImplicit, // Static call implicitly requiring a clinit check.
Vladimir Markoa1de9182016-02-25 11:37:38 +00004150 kLast = kImplicit
Roland Levillain4c0eb422015-04-24 16:43:49 +01004151 };
4152
Vladimir Marko58155012015-08-19 12:49:41 +00004153 // Determines how to load the target ArtMethod*.
4154 enum class MethodLoadKind {
4155 // Use a String init ArtMethod* loaded from Thread entrypoints.
4156 kStringInit,
4157
4158 // Use the method's own ArtMethod* loaded by the register allocator.
4159 kRecursive,
4160
Vladimir Marko65979462017-05-19 17:25:12 +01004161 // Use PC-relative boot image ArtMethod* address that will be known at link time.
4162 // Used for boot image methods referenced by boot image code.
4163 kBootImageLinkTimePcRelative,
4164
Vladimir Marko58155012015-08-19 12:49:41 +00004165 // Use ArtMethod* at a known address, embed the direct address in the code.
4166 // Used for app->boot calls with non-relocatable image and for JIT-compiled calls.
4167 kDirectAddress,
4168
Vladimir Markoa1de9182016-02-25 11:37:38 +00004169 // Load from resolved methods array in the dex cache using a PC-relative load.
Vladimir Marko58155012015-08-19 12:49:41 +00004170 // Used when we need to use the dex cache, for example for invoke-static that
4171 // may cause class initialization (the entry may point to a resolution method),
4172 // and we know that we can access the dex cache arrays using a PC-relative load.
4173 kDexCachePcRelative,
4174
4175 // Use ArtMethod* from the resolved methods of the compiled method's own ArtMethod*.
4176 // Used for JIT when we need to use the dex cache. This is also the last-resort-kind
4177 // used when other kinds are unavailable (say, dex cache arrays are not PC-relative)
4178 // or unimplemented or impractical (i.e. slow) on a particular architecture.
4179 kDexCacheViaMethod,
4180 };
4181
4182 // Determines the location of the code pointer.
4183 enum class CodePtrLocation {
4184 // Recursive call, use local PC-relative call instruction.
4185 kCallSelf,
4186
Vladimir Marko58155012015-08-19 12:49:41 +00004187 // Use code pointer from the ArtMethod*.
4188 // Used when we don't know the target code. This is also the last-resort-kind used when
4189 // other kinds are unimplemented or impractical (i.e. slow) on a particular architecture.
4190 kCallArtMethod,
4191 };
4192
4193 struct DispatchInfo {
Vladimir Markodc151b22015-10-15 18:02:30 +01004194 MethodLoadKind method_load_kind;
4195 CodePtrLocation code_ptr_location;
Vladimir Marko58155012015-08-19 12:49:41 +00004196 // The method load data holds
4197 // - thread entrypoint offset for kStringInit method if this is a string init invoke.
4198 // Note that there are multiple string init methods, each having its own offset.
4199 // - the method address for kDirectAddress
4200 // - the dex cache arrays offset for kDexCachePcRel.
Vladimir Markodc151b22015-10-15 18:02:30 +01004201 uint64_t method_load_data;
Vladimir Marko58155012015-08-19 12:49:41 +00004202 };
4203
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00004204 HInvokeStaticOrDirect(ArenaAllocator* arena,
4205 uint32_t number_of_arguments,
4206 Primitive::Type return_type,
4207 uint32_t dex_pc,
Vladimir Marko58155012015-08-19 12:49:41 +00004208 uint32_t method_index,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004209 ArtMethod* resolved_method,
Vladimir Marko58155012015-08-19 12:49:41 +00004210 DispatchInfo dispatch_info,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004211 InvokeType invoke_type,
4212 MethodReference target_method,
Roland Levillain4c0eb422015-04-24 16:43:49 +01004213 ClinitCheckRequirement clinit_check_requirement)
Roland Levillain3e3d7332015-04-28 11:00:54 +01004214 : HInvoke(arena,
4215 number_of_arguments,
Vladimir Markob554b5a2015-11-06 12:57:55 +00004216 // There is potentially one extra argument for the HCurrentMethod node, and
4217 // potentially one other if the clinit check is explicit, and potentially
4218 // one other if the method is a string factory.
4219 (NeedsCurrentMethodInput(dispatch_info.method_load_kind) ? 1u : 0u) +
David Brazdildee58d62016-04-07 09:54:26 +00004220 (clinit_check_requirement == ClinitCheckRequirement::kExplicit ? 1u : 0u),
Roland Levillain3e3d7332015-04-28 11:00:54 +01004221 return_type,
4222 dex_pc,
Vladimir Marko58155012015-08-19 12:49:41 +00004223 method_index,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004224 resolved_method,
4225 invoke_type),
Vladimir Marko58155012015-08-19 12:49:41 +00004226 target_method_(target_method),
Vladimir Markoa1de9182016-02-25 11:37:38 +00004227 dispatch_info_(dispatch_info) {
Vladimir Markoa1de9182016-02-25 11:37:38 +00004228 SetPackedField<ClinitCheckRequirementField>(clinit_check_requirement);
4229 }
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00004230
Vladimir Markodc151b22015-10-15 18:02:30 +01004231 void SetDispatchInfo(const DispatchInfo& dispatch_info) {
Vladimir Markob554b5a2015-11-06 12:57:55 +00004232 bool had_current_method_input = HasCurrentMethodInput();
4233 bool needs_current_method_input = NeedsCurrentMethodInput(dispatch_info.method_load_kind);
4234
4235 // Using the current method is the default and once we find a better
4236 // method load kind, we should not go back to using the current method.
4237 DCHECK(had_current_method_input || !needs_current_method_input);
4238
4239 if (had_current_method_input && !needs_current_method_input) {
Vladimir Markoc53c0792015-11-19 15:48:33 +00004240 DCHECK_EQ(InputAt(GetSpecialInputIndex()), GetBlock()->GetGraph()->GetCurrentMethod());
4241 RemoveInputAt(GetSpecialInputIndex());
Vladimir Markob554b5a2015-11-06 12:57:55 +00004242 }
Vladimir Markodc151b22015-10-15 18:02:30 +01004243 dispatch_info_ = dispatch_info;
4244 }
4245
Aart Bik6daebeb2017-04-03 14:35:41 -07004246 DispatchInfo GetDispatchInfo() const {
4247 return dispatch_info_;
4248 }
4249
Vladimir Markoc53c0792015-11-19 15:48:33 +00004250 void AddSpecialInput(HInstruction* input) {
4251 // We allow only one special input.
4252 DCHECK(!IsStringInit() && !HasCurrentMethodInput());
4253 DCHECK(InputCount() == GetSpecialInputIndex() ||
4254 (InputCount() == GetSpecialInputIndex() + 1 && IsStaticWithExplicitClinitCheck()));
4255 InsertInputAt(GetSpecialInputIndex(), input);
4256 }
Vladimir Markob554b5a2015-11-06 12:57:55 +00004257
Vladimir Marko372f10e2016-05-17 16:30:10 +01004258 using HInstruction::GetInputRecords; // Keep the const version visible.
4259 ArrayRef<HUserRecord<HInstruction*>> GetInputRecords() OVERRIDE {
4260 ArrayRef<HUserRecord<HInstruction*>> input_records = HInvoke::GetInputRecords();
4261 if (kIsDebugBuild && IsStaticWithExplicitClinitCheck()) {
4262 DCHECK(!input_records.empty());
4263 DCHECK_GT(input_records.size(), GetNumberOfArguments());
4264 HInstruction* last_input = input_records.back().GetInstruction();
4265 // Note: `last_input` may be null during arguments setup.
4266 if (last_input != nullptr) {
4267 // `last_input` is the last input of a static invoke marked as having
4268 // an explicit clinit check. It must either be:
4269 // - an art::HClinitCheck instruction, set by art::HGraphBuilder; or
4270 // - an art::HLoadClass instruction, set by art::PrepareForRegisterAllocation.
4271 DCHECK(last_input->IsClinitCheck() || last_input->IsLoadClass()) << last_input->DebugName();
4272 }
4273 }
4274 return input_records;
4275 }
4276
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004277 bool CanDoImplicitNullCheckOn(HInstruction* obj ATTRIBUTE_UNUSED) const OVERRIDE {
Calin Juravle77520bc2015-01-12 18:45:46 +00004278 // We access the method via the dex cache so we can't do an implicit null check.
4279 // TODO: for intrinsics we can generate implicit null checks.
4280 return false;
4281 }
4282
Nicolas Geoffrayefa84682015-08-12 18:28:14 -07004283 bool CanBeNull() const OVERRIDE {
Vladimir Markoa1de9182016-02-25 11:37:38 +00004284 return GetPackedField<ReturnTypeField>() == Primitive::kPrimNot && !IsStringInit();
Nicolas Geoffrayefa84682015-08-12 18:28:14 -07004285 }
4286
Vladimir Markoc53c0792015-11-19 15:48:33 +00004287 // Get the index of the special input, if any.
4288 //
David Brazdil6de19382016-01-08 17:37:10 +00004289 // If the invoke HasCurrentMethodInput(), the "special input" is the current
4290 // method pointer; otherwise there may be one platform-specific special input,
4291 // such as PC-relative addressing base.
Vladimir Markoc53c0792015-11-19 15:48:33 +00004292 uint32_t GetSpecialInputIndex() const { return GetNumberOfArguments(); }
Nicolas Geoffray97793072016-02-16 15:33:54 +00004293 bool HasSpecialInput() const { return GetNumberOfArguments() != InputCount(); }
Vladimir Markoc53c0792015-11-19 15:48:33 +00004294
Vladimir Marko58155012015-08-19 12:49:41 +00004295 MethodLoadKind GetMethodLoadKind() const { return dispatch_info_.method_load_kind; }
4296 CodePtrLocation GetCodePtrLocation() const { return dispatch_info_.code_ptr_location; }
4297 bool IsRecursive() const { return GetMethodLoadKind() == MethodLoadKind::kRecursive; }
Vladimir Markodc151b22015-10-15 18:02:30 +01004298 bool NeedsDexCacheOfDeclaringClass() const OVERRIDE;
Vladimir Marko58155012015-08-19 12:49:41 +00004299 bool IsStringInit() const { return GetMethodLoadKind() == MethodLoadKind::kStringInit; }
Vladimir Marko58155012015-08-19 12:49:41 +00004300 bool HasMethodAddress() const { return GetMethodLoadKind() == MethodLoadKind::kDirectAddress; }
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004301 bool HasPcRelativeDexCache() const {
Vladimir Markodc151b22015-10-15 18:02:30 +01004302 return GetMethodLoadKind() == MethodLoadKind::kDexCachePcRelative;
4303 }
Vladimir Marko65979462017-05-19 17:25:12 +01004304 bool HasPcRelativeMethodLoadKind() const {
4305 return GetMethodLoadKind() == MethodLoadKind::kBootImageLinkTimePcRelative ||
4306 GetMethodLoadKind() == MethodLoadKind::kDexCachePcRelative;
4307 }
Vladimir Markob554b5a2015-11-06 12:57:55 +00004308 bool HasCurrentMethodInput() const {
4309 // This function can be called only after the invoke has been fully initialized by the builder.
4310 if (NeedsCurrentMethodInput(GetMethodLoadKind())) {
Vladimir Markoc53c0792015-11-19 15:48:33 +00004311 DCHECK(InputAt(GetSpecialInputIndex())->IsCurrentMethod());
Vladimir Markob554b5a2015-11-06 12:57:55 +00004312 return true;
4313 } else {
Vladimir Markoc53c0792015-11-19 15:48:33 +00004314 DCHECK(InputCount() == GetSpecialInputIndex() ||
4315 !InputAt(GetSpecialInputIndex())->IsCurrentMethod());
Vladimir Markob554b5a2015-11-06 12:57:55 +00004316 return false;
4317 }
4318 }
Vladimir Marko58155012015-08-19 12:49:41 +00004319
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01004320 QuickEntrypointEnum GetStringInitEntryPoint() const {
Vladimir Marko58155012015-08-19 12:49:41 +00004321 DCHECK(IsStringInit());
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01004322 return static_cast<QuickEntrypointEnum>(dispatch_info_.method_load_data);
Vladimir Marko58155012015-08-19 12:49:41 +00004323 }
4324
4325 uint64_t GetMethodAddress() const {
4326 DCHECK(HasMethodAddress());
4327 return dispatch_info_.method_load_data;
4328 }
4329
4330 uint32_t GetDexCacheArrayOffset() const {
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004331 DCHECK(HasPcRelativeDexCache());
Vladimir Marko58155012015-08-19 12:49:41 +00004332 return dispatch_info_.method_load_data;
4333 }
4334
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00004335 const DexFile& GetDexFileForPcRelativeDexCache() const;
4336
Vladimir Markoa1de9182016-02-25 11:37:38 +00004337 ClinitCheckRequirement GetClinitCheckRequirement() const {
4338 return GetPackedField<ClinitCheckRequirementField>();
4339 }
Calin Juravle68ad6492015-08-18 17:08:12 +01004340
Roland Levillain4c0eb422015-04-24 16:43:49 +01004341 // Is this instruction a call to a static method?
4342 bool IsStatic() const {
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004343 return GetInvokeType() == kStatic;
4344 }
4345
4346 MethodReference GetTargetMethod() const {
4347 return target_method_;
Roland Levillain4c0eb422015-04-24 16:43:49 +01004348 }
4349
Vladimir Markofbb184a2015-11-13 14:47:00 +00004350 // Remove the HClinitCheck or the replacement HLoadClass (set as last input by
4351 // PrepareForRegisterAllocation::VisitClinitCheck() in lieu of the initial HClinitCheck)
4352 // instruction; only relevant for static calls with explicit clinit check.
4353 void RemoveExplicitClinitCheck(ClinitCheckRequirement new_requirement) {
Roland Levillain4c0eb422015-04-24 16:43:49 +01004354 DCHECK(IsStaticWithExplicitClinitCheck());
Vladimir Marko372f10e2016-05-17 16:30:10 +01004355 size_t last_input_index = inputs_.size() - 1u;
4356 HInstruction* last_input = inputs_.back().GetInstruction();
Roland Levillain4c0eb422015-04-24 16:43:49 +01004357 DCHECK(last_input != nullptr);
Vladimir Markofbb184a2015-11-13 14:47:00 +00004358 DCHECK(last_input->IsLoadClass() || last_input->IsClinitCheck()) << last_input->DebugName();
Roland Levillain4c0eb422015-04-24 16:43:49 +01004359 RemoveAsUserOfInput(last_input_index);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01004360 inputs_.pop_back();
Vladimir Markoa1de9182016-02-25 11:37:38 +00004361 SetPackedField<ClinitCheckRequirementField>(new_requirement);
Vladimir Markofbb184a2015-11-13 14:47:00 +00004362 DCHECK(!IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01004363 }
4364
4365 // Is this a call to a static method whose declaring class has an
Vladimir Markofbb184a2015-11-13 14:47:00 +00004366 // explicit initialization check in the graph?
Roland Levillain4c0eb422015-04-24 16:43:49 +01004367 bool IsStaticWithExplicitClinitCheck() const {
Vladimir Markoa1de9182016-02-25 11:37:38 +00004368 return IsStatic() && (GetClinitCheckRequirement() == ClinitCheckRequirement::kExplicit);
Roland Levillain4c0eb422015-04-24 16:43:49 +01004369 }
4370
4371 // Is this a call to a static method whose declaring class has an
4372 // implicit intialization check requirement?
4373 bool IsStaticWithImplicitClinitCheck() const {
Vladimir Markoa1de9182016-02-25 11:37:38 +00004374 return IsStatic() && (GetClinitCheckRequirement() == ClinitCheckRequirement::kImplicit);
Roland Levillain4c0eb422015-04-24 16:43:49 +01004375 }
4376
Vladimir Markob554b5a2015-11-06 12:57:55 +00004377 // Does this method load kind need the current method as an input?
4378 static bool NeedsCurrentMethodInput(MethodLoadKind kind) {
4379 return kind == MethodLoadKind::kRecursive || kind == MethodLoadKind::kDexCacheViaMethod;
4380 }
4381
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00004382 DECLARE_INSTRUCTION(InvokeStaticOrDirect);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00004383
4384 private:
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004385 static constexpr size_t kFieldClinitCheckRequirement = kNumberOfInvokePackedBits;
Vladimir Markoa1de9182016-02-25 11:37:38 +00004386 static constexpr size_t kFieldClinitCheckRequirementSize =
4387 MinimumBitsToStore(static_cast<size_t>(ClinitCheckRequirement::kLast));
4388 static constexpr size_t kNumberOfInvokeStaticOrDirectPackedBits =
4389 kFieldClinitCheckRequirement + kFieldClinitCheckRequirementSize;
4390 static_assert(kNumberOfInvokeStaticOrDirectPackedBits <= kMaxNumberOfPackedBits,
4391 "Too many packed fields.");
Vladimir Markoa1de9182016-02-25 11:37:38 +00004392 using ClinitCheckRequirementField = BitField<ClinitCheckRequirement,
4393 kFieldClinitCheckRequirement,
4394 kFieldClinitCheckRequirementSize>;
4395
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004396 // Cached values of the resolved method, to avoid needing the mutator lock.
Vladimir Marko58155012015-08-19 12:49:41 +00004397 MethodReference target_method_;
4398 DispatchInfo dispatch_info_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00004399
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00004400 DISALLOW_COPY_AND_ASSIGN(HInvokeStaticOrDirect);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00004401};
Vladimir Markof64242a2015-12-01 14:58:23 +00004402std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::MethodLoadKind rhs);
Vladimir Markofbb184a2015-11-13 14:47:00 +00004403std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::ClinitCheckRequirement rhs);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00004404
Vladimir Markofcb503c2016-05-18 12:48:17 +01004405class HInvokeVirtual FINAL : public HInvoke {
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01004406 public:
4407 HInvokeVirtual(ArenaAllocator* arena,
4408 uint32_t number_of_arguments,
4409 Primitive::Type return_type,
4410 uint32_t dex_pc,
Andreas Gampe71fb52f2014-12-29 17:43:08 -08004411 uint32_t dex_method_index,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004412 ArtMethod* resolved_method,
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01004413 uint32_t vtable_index)
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004414 : HInvoke(arena,
4415 number_of_arguments,
4416 0u,
4417 return_type,
4418 dex_pc,
4419 dex_method_index,
4420 resolved_method,
4421 kVirtual),
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01004422 vtable_index_(vtable_index) {}
4423
Aart Bik71bf7b42016-11-16 10:17:46 -08004424 bool CanBeNull() const OVERRIDE {
4425 switch (GetIntrinsic()) {
4426 case Intrinsics::kThreadCurrentThread:
4427 case Intrinsics::kStringBufferAppend:
4428 case Intrinsics::kStringBufferToString:
4429 case Intrinsics::kStringBuilderAppend:
4430 case Intrinsics::kStringBuilderToString:
4431 return false;
4432 default:
4433 return HInvoke::CanBeNull();
4434 }
4435 }
4436
Calin Juravle641547a2015-04-21 22:08:51 +01004437 bool CanDoImplicitNullCheckOn(HInstruction* obj) const OVERRIDE {
Calin Juravle77520bc2015-01-12 18:45:46 +00004438 // TODO: Add implicit null checks in intrinsics.
Calin Juravle641547a2015-04-21 22:08:51 +01004439 return (obj == InputAt(0)) && !GetLocations()->Intrinsified();
Calin Juravle77520bc2015-01-12 18:45:46 +00004440 }
4441
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01004442 uint32_t GetVTableIndex() const { return vtable_index_; }
4443
4444 DECLARE_INSTRUCTION(InvokeVirtual);
4445
4446 private:
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004447 // Cached value of the resolved method, to avoid needing the mutator lock.
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01004448 const uint32_t vtable_index_;
4449
4450 DISALLOW_COPY_AND_ASSIGN(HInvokeVirtual);
4451};
4452
Vladimir Markofcb503c2016-05-18 12:48:17 +01004453class HInvokeInterface FINAL : public HInvoke {
Nicolas Geoffray52839d12014-11-07 17:47:25 +00004454 public:
4455 HInvokeInterface(ArenaAllocator* arena,
4456 uint32_t number_of_arguments,
4457 Primitive::Type return_type,
4458 uint32_t dex_pc,
4459 uint32_t dex_method_index,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004460 ArtMethod* resolved_method,
Nicolas Geoffray52839d12014-11-07 17:47:25 +00004461 uint32_t imt_index)
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004462 : HInvoke(arena,
4463 number_of_arguments,
4464 0u,
4465 return_type,
4466 dex_pc,
4467 dex_method_index,
4468 resolved_method,
4469 kInterface),
Nicolas Geoffray52839d12014-11-07 17:47:25 +00004470 imt_index_(imt_index) {}
4471
Calin Juravle641547a2015-04-21 22:08:51 +01004472 bool CanDoImplicitNullCheckOn(HInstruction* obj) const OVERRIDE {
Calin Juravle77520bc2015-01-12 18:45:46 +00004473 // TODO: Add implicit null checks in intrinsics.
Calin Juravle641547a2015-04-21 22:08:51 +01004474 return (obj == InputAt(0)) && !GetLocations()->Intrinsified();
Calin Juravle77520bc2015-01-12 18:45:46 +00004475 }
4476
Nicolas Geoffrayfbdfa6d2017-02-03 10:43:13 +00004477 bool NeedsDexCacheOfDeclaringClass() const OVERRIDE {
4478 // The assembly stub currently needs it.
4479 return true;
4480 }
4481
Nicolas Geoffray52839d12014-11-07 17:47:25 +00004482 uint32_t GetImtIndex() const { return imt_index_; }
4483 uint32_t GetDexMethodIndex() const { return dex_method_index_; }
4484
4485 DECLARE_INSTRUCTION(InvokeInterface);
4486
4487 private:
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004488 // Cached value of the resolved method, to avoid needing the mutator lock.
Nicolas Geoffray52839d12014-11-07 17:47:25 +00004489 const uint32_t imt_index_;
4490
4491 DISALLOW_COPY_AND_ASSIGN(HInvokeInterface);
4492};
4493
Vladimir Markofcb503c2016-05-18 12:48:17 +01004494class HNeg FINAL : public HUnaryOperation {
Roland Levillain88cb1752014-10-20 16:36:47 +01004495 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004496 HNeg(Primitive::Type result_type, HInstruction* input, uint32_t dex_pc = kNoDexPc)
Roland Levillain937e6cd2016-03-22 11:54:37 +00004497 : HUnaryOperation(result_type, input, dex_pc) {
4498 DCHECK_EQ(result_type, Primitive::PrimitiveKind(input->GetType()));
4499 }
Roland Levillain88cb1752014-10-20 16:36:47 +01004500
Anton Kirilov7fe30f92016-06-29 17:03:40 +01004501 template <typename T> static T Compute(T x) { return -x; }
Roland Levillain9867bc72015-08-05 10:21:34 +01004502
4503 HConstant* Evaluate(HIntConstant* x) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004504 return GetBlock()->GetGraph()->GetIntConstant(Compute(x->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004505 }
4506 HConstant* Evaluate(HLongConstant* x) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004507 return GetBlock()->GetGraph()->GetLongConstant(Compute(x->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004508 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00004509 HConstant* Evaluate(HFloatConstant* x) const OVERRIDE {
4510 return GetBlock()->GetGraph()->GetFloatConstant(Compute(x->GetValue()), GetDexPc());
4511 }
4512 HConstant* Evaluate(HDoubleConstant* x) const OVERRIDE {
4513 return GetBlock()->GetGraph()->GetDoubleConstant(Compute(x->GetValue()), GetDexPc());
4514 }
Roland Levillain9240d6a2014-10-20 16:47:04 +01004515
Roland Levillain88cb1752014-10-20 16:36:47 +01004516 DECLARE_INSTRUCTION(Neg);
4517
4518 private:
4519 DISALLOW_COPY_AND_ASSIGN(HNeg);
4520};
4521
Vladimir Markofcb503c2016-05-18 12:48:17 +01004522class HNewArray FINAL : public HExpression<2> {
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004523 public:
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00004524 HNewArray(HInstruction* cls, HInstruction* length, uint32_t dex_pc)
4525 : HExpression(Primitive::kPrimNot, SideEffects::CanTriggerGC(), dex_pc) {
4526 SetRawInputAt(0, cls);
4527 SetRawInputAt(1, length);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004528 }
4529
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004530 // Calls runtime so needs an environment.
Calin Juravle10e244f2015-01-26 18:54:32 +00004531 bool NeedsEnvironment() const OVERRIDE { return true; }
4532
Mingyao Yang0c365e62015-03-31 15:09:29 -07004533 // May throw NegativeArraySizeException, OutOfMemoryError, etc.
4534 bool CanThrow() const OVERRIDE { return true; }
4535
Calin Juravle10e244f2015-01-26 18:54:32 +00004536 bool CanBeNull() const OVERRIDE { return false; }
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004537
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00004538 HLoadClass* GetLoadClass() const {
4539 DCHECK(InputAt(0)->IsLoadClass());
4540 return InputAt(0)->AsLoadClass();
4541 }
4542
4543 HInstruction* GetLength() const {
4544 return InputAt(1);
4545 }
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00004546
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004547 DECLARE_INSTRUCTION(NewArray);
4548
4549 private:
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004550 DISALLOW_COPY_AND_ASSIGN(HNewArray);
4551};
4552
Vladimir Markofcb503c2016-05-18 12:48:17 +01004553class HAdd FINAL : public HBinaryOperation {
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00004554 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004555 HAdd(Primitive::Type result_type,
4556 HInstruction* left,
4557 HInstruction* right,
4558 uint32_t dex_pc = kNoDexPc)
4559 : HBinaryOperation(result_type, left, right, SideEffects::None(), dex_pc) {}
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00004560
Alexandre Rames2ed20af2015-03-06 13:55:35 +00004561 bool IsCommutative() const OVERRIDE { return true; }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00004562
Anton Kirilov7fe30f92016-06-29 17:03:40 +01004563 template <typename T> static T Compute(T x, T y) { return x + y; }
Roland Levillain9867bc72015-08-05 10:21:34 +01004564
4565 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004566 return GetBlock()->GetGraph()->GetIntConstant(
4567 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01004568 }
Roland Levillain9867bc72015-08-05 10:21:34 +01004569 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004570 return GetBlock()->GetGraph()->GetLongConstant(
4571 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01004572 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00004573 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
4574 return GetBlock()->GetGraph()->GetFloatConstant(
4575 Compute(x->GetValue(), y->GetValue()), GetDexPc());
4576 }
4577 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
4578 return GetBlock()->GetGraph()->GetDoubleConstant(
4579 Compute(x->GetValue(), y->GetValue()), GetDexPc());
4580 }
Roland Levillain556c3d12014-09-18 15:25:07 +01004581
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00004582 DECLARE_INSTRUCTION(Add);
4583
4584 private:
4585 DISALLOW_COPY_AND_ASSIGN(HAdd);
4586};
4587
Vladimir Markofcb503c2016-05-18 12:48:17 +01004588class HSub FINAL : public HBinaryOperation {
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004589 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004590 HSub(Primitive::Type result_type,
4591 HInstruction* left,
4592 HInstruction* right,
4593 uint32_t dex_pc = kNoDexPc)
4594 : HBinaryOperation(result_type, left, right, SideEffects::None(), dex_pc) {}
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004595
Anton Kirilov7fe30f92016-06-29 17:03:40 +01004596 template <typename T> static T Compute(T x, T y) { return x - y; }
Roland Levillain9867bc72015-08-05 10:21:34 +01004597
4598 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004599 return GetBlock()->GetGraph()->GetIntConstant(
4600 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01004601 }
Roland Levillain9867bc72015-08-05 10:21:34 +01004602 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004603 return GetBlock()->GetGraph()->GetLongConstant(
4604 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain93445682014-10-06 19:24:02 +01004605 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00004606 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
4607 return GetBlock()->GetGraph()->GetFloatConstant(
4608 Compute(x->GetValue(), y->GetValue()), GetDexPc());
4609 }
4610 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
4611 return GetBlock()->GetGraph()->GetDoubleConstant(
4612 Compute(x->GetValue(), y->GetValue()), GetDexPc());
4613 }
Roland Levillain556c3d12014-09-18 15:25:07 +01004614
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004615 DECLARE_INSTRUCTION(Sub);
4616
4617 private:
4618 DISALLOW_COPY_AND_ASSIGN(HSub);
4619};
4620
Vladimir Markofcb503c2016-05-18 12:48:17 +01004621class HMul FINAL : public HBinaryOperation {
Calin Juravle34bacdf2014-10-07 20:23:36 +01004622 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004623 HMul(Primitive::Type result_type,
4624 HInstruction* left,
4625 HInstruction* right,
4626 uint32_t dex_pc = kNoDexPc)
4627 : HBinaryOperation(result_type, left, right, SideEffects::None(), dex_pc) {}
Calin Juravle34bacdf2014-10-07 20:23:36 +01004628
Alexandre Rames2ed20af2015-03-06 13:55:35 +00004629 bool IsCommutative() const OVERRIDE { return true; }
Calin Juravle34bacdf2014-10-07 20:23:36 +01004630
Anton Kirilov7fe30f92016-06-29 17:03:40 +01004631 template <typename T> static T Compute(T x, T y) { return x * y; }
Roland Levillain9867bc72015-08-05 10:21:34 +01004632
4633 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004634 return GetBlock()->GetGraph()->GetIntConstant(
4635 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004636 }
4637 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004638 return GetBlock()->GetGraph()->GetLongConstant(
4639 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004640 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00004641 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
4642 return GetBlock()->GetGraph()->GetFloatConstant(
4643 Compute(x->GetValue(), y->GetValue()), GetDexPc());
4644 }
4645 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
4646 return GetBlock()->GetGraph()->GetDoubleConstant(
4647 Compute(x->GetValue(), y->GetValue()), GetDexPc());
4648 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01004649
4650 DECLARE_INSTRUCTION(Mul);
4651
4652 private:
4653 DISALLOW_COPY_AND_ASSIGN(HMul);
4654};
4655
Vladimir Markofcb503c2016-05-18 12:48:17 +01004656class HDiv FINAL : public HBinaryOperation {
Calin Juravle7c4954d2014-10-28 16:57:40 +00004657 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004658 HDiv(Primitive::Type result_type,
4659 HInstruction* left,
4660 HInstruction* right,
4661 uint32_t dex_pc)
Alexandre Rames91a65162016-09-19 13:54:30 +01004662 : HBinaryOperation(result_type, left, right, SideEffects::None(), dex_pc) {}
Calin Juravle7c4954d2014-10-28 16:57:40 +00004663
Roland Levillain9867bc72015-08-05 10:21:34 +01004664 template <typename T>
Roland Levillain31dd3d62016-02-16 12:21:02 +00004665 T ComputeIntegral(T x, T y) const {
4666 DCHECK(!Primitive::IsFloatingPointType(GetType())) << GetType();
Roland Levillain9867bc72015-08-05 10:21:34 +01004667 // Our graph structure ensures we never have 0 for `y` during
4668 // constant folding.
Nicolas Geoffraycd2de0c2014-11-06 15:59:38 +00004669 DCHECK_NE(y, 0);
Calin Juravlebacfec32014-11-14 15:54:36 +00004670 // Special case -1 to avoid getting a SIGFPE on x86(_64).
Nicolas Geoffraycd2de0c2014-11-06 15:59:38 +00004671 return (y == -1) ? -x : x / y;
4672 }
Calin Juravlebacfec32014-11-14 15:54:36 +00004673
Roland Levillain31dd3d62016-02-16 12:21:02 +00004674 template <typename T>
4675 T ComputeFP(T x, T y) const {
4676 DCHECK(Primitive::IsFloatingPointType(GetType())) << GetType();
4677 return x / y;
4678 }
4679
Roland Levillain9867bc72015-08-05 10:21:34 +01004680 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004681 return GetBlock()->GetGraph()->GetIntConstant(
Roland Levillain31dd3d62016-02-16 12:21:02 +00004682 ComputeIntegral(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004683 }
4684 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004685 return GetBlock()->GetGraph()->GetLongConstant(
Roland Levillain31dd3d62016-02-16 12:21:02 +00004686 ComputeIntegral(x->GetValue(), y->GetValue()), GetDexPc());
4687 }
4688 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
4689 return GetBlock()->GetGraph()->GetFloatConstant(
4690 ComputeFP(x->GetValue(), y->GetValue()), GetDexPc());
4691 }
4692 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
4693 return GetBlock()->GetGraph()->GetDoubleConstant(
4694 ComputeFP(x->GetValue(), y->GetValue()), GetDexPc());
Calin Juravlebacfec32014-11-14 15:54:36 +00004695 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00004696
4697 DECLARE_INSTRUCTION(Div);
4698
4699 private:
4700 DISALLOW_COPY_AND_ASSIGN(HDiv);
4701};
4702
Vladimir Markofcb503c2016-05-18 12:48:17 +01004703class HRem FINAL : public HBinaryOperation {
Calin Juravlebacfec32014-11-14 15:54:36 +00004704 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004705 HRem(Primitive::Type result_type,
4706 HInstruction* left,
4707 HInstruction* right,
4708 uint32_t dex_pc)
Alexandre Rames91a65162016-09-19 13:54:30 +01004709 : HBinaryOperation(result_type, left, right, SideEffects::None(), dex_pc) {}
Calin Juravlebacfec32014-11-14 15:54:36 +00004710
Roland Levillain9867bc72015-08-05 10:21:34 +01004711 template <typename T>
Roland Levillain31dd3d62016-02-16 12:21:02 +00004712 T ComputeIntegral(T x, T y) const {
4713 DCHECK(!Primitive::IsFloatingPointType(GetType())) << GetType();
Roland Levillain9867bc72015-08-05 10:21:34 +01004714 // Our graph structure ensures we never have 0 for `y` during
4715 // constant folding.
Calin Juravlebacfec32014-11-14 15:54:36 +00004716 DCHECK_NE(y, 0);
4717 // Special case -1 to avoid getting a SIGFPE on x86(_64).
4718 return (y == -1) ? 0 : x % y;
4719 }
4720
Roland Levillain31dd3d62016-02-16 12:21:02 +00004721 template <typename T>
4722 T ComputeFP(T x, T y) const {
4723 DCHECK(Primitive::IsFloatingPointType(GetType())) << GetType();
4724 return std::fmod(x, y);
4725 }
4726
Roland Levillain9867bc72015-08-05 10:21:34 +01004727 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004728 return GetBlock()->GetGraph()->GetIntConstant(
Roland Levillain31dd3d62016-02-16 12:21:02 +00004729 ComputeIntegral(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004730 }
4731 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004732 return GetBlock()->GetGraph()->GetLongConstant(
Roland Levillain31dd3d62016-02-16 12:21:02 +00004733 ComputeIntegral(x->GetValue(), y->GetValue()), GetDexPc());
Calin Juravlebacfec32014-11-14 15:54:36 +00004734 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00004735 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE {
4736 return GetBlock()->GetGraph()->GetFloatConstant(
4737 ComputeFP(x->GetValue(), y->GetValue()), GetDexPc());
4738 }
4739 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE {
4740 return GetBlock()->GetGraph()->GetDoubleConstant(
4741 ComputeFP(x->GetValue(), y->GetValue()), GetDexPc());
4742 }
Calin Juravlebacfec32014-11-14 15:54:36 +00004743
4744 DECLARE_INSTRUCTION(Rem);
4745
4746 private:
Calin Juravlebacfec32014-11-14 15:54:36 +00004747 DISALLOW_COPY_AND_ASSIGN(HRem);
4748};
4749
Vladimir Markofcb503c2016-05-18 12:48:17 +01004750class HDivZeroCheck FINAL : public HExpression<1> {
Calin Juravled0d48522014-11-04 16:40:20 +00004751 public:
Alexandre Rames780aece2016-01-13 14:34:39 +00004752 // `HDivZeroCheck` can trigger GC, as it may call the `ArithmeticException`
4753 // constructor.
Calin Juravled0d48522014-11-04 16:40:20 +00004754 HDivZeroCheck(HInstruction* value, uint32_t dex_pc)
Alexandre Rames780aece2016-01-13 14:34:39 +00004755 : HExpression(value->GetType(), SideEffects::CanTriggerGC(), dex_pc) {
Calin Juravled0d48522014-11-04 16:40:20 +00004756 SetRawInputAt(0, value);
4757 }
4758
Serguei Katkov8c0676c2015-08-03 13:55:33 +06004759 Primitive::Type GetType() const OVERRIDE { return InputAt(0)->GetType(); }
4760
Calin Juravled0d48522014-11-04 16:40:20 +00004761 bool CanBeMoved() const OVERRIDE { return true; }
4762
Vladimir Marko372f10e2016-05-17 16:30:10 +01004763 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +00004764 return true;
4765 }
4766
4767 bool NeedsEnvironment() const OVERRIDE { return true; }
4768 bool CanThrow() const OVERRIDE { return true; }
4769
Calin Juravled0d48522014-11-04 16:40:20 +00004770 DECLARE_INSTRUCTION(DivZeroCheck);
4771
4772 private:
Calin Juravled0d48522014-11-04 16:40:20 +00004773 DISALLOW_COPY_AND_ASSIGN(HDivZeroCheck);
4774};
4775
Vladimir Markofcb503c2016-05-18 12:48:17 +01004776class HShl FINAL : public HBinaryOperation {
Calin Juravle9aec02f2014-11-18 23:06:35 +00004777 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004778 HShl(Primitive::Type result_type,
Roland Levillain5b5b9312016-03-22 14:57:31 +00004779 HInstruction* value,
4780 HInstruction* distance,
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004781 uint32_t dex_pc = kNoDexPc)
Roland Levillain5b5b9312016-03-22 14:57:31 +00004782 : HBinaryOperation(result_type, value, distance, SideEffects::None(), dex_pc) {
4783 DCHECK_EQ(result_type, Primitive::PrimitiveKind(value->GetType()));
4784 DCHECK_EQ(Primitive::kPrimInt, Primitive::PrimitiveKind(distance->GetType()));
Roland Levillain9867bc72015-08-05 10:21:34 +01004785 }
4786
Roland Levillain5b5b9312016-03-22 14:57:31 +00004787 template <typename T>
Anton Kirilov7fe30f92016-06-29 17:03:40 +01004788 static T Compute(T value, int32_t distance, int32_t max_shift_distance) {
Roland Levillain5b5b9312016-03-22 14:57:31 +00004789 return value << (distance & max_shift_distance);
4790 }
4791
4792 HConstant* Evaluate(HIntConstant* value, HIntConstant* distance) const OVERRIDE {
Roland Levillain9867bc72015-08-05 10:21:34 +01004793 return GetBlock()->GetGraph()->GetIntConstant(
Roland Levillain5b5b9312016-03-22 14:57:31 +00004794 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004795 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004796 HConstant* Evaluate(HLongConstant* value, HIntConstant* distance) const OVERRIDE {
Roland Levillain9867bc72015-08-05 10:21:34 +01004797 return GetBlock()->GetGraph()->GetLongConstant(
Roland Levillain5b5b9312016-03-22 14:57:31 +00004798 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004799 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004800 HConstant* Evaluate(HLongConstant* value ATTRIBUTE_UNUSED,
4801 HLongConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
4802 LOG(FATAL) << DebugName() << " is not defined for the (long, long) case.";
4803 UNREACHABLE();
Roland Levillain9867bc72015-08-05 10:21:34 +01004804 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004805 HConstant* Evaluate(HFloatConstant* value ATTRIBUTE_UNUSED,
4806 HFloatConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00004807 LOG(FATAL) << DebugName() << " is not defined for float values";
4808 UNREACHABLE();
4809 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004810 HConstant* Evaluate(HDoubleConstant* value ATTRIBUTE_UNUSED,
4811 HDoubleConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00004812 LOG(FATAL) << DebugName() << " is not defined for double values";
4813 UNREACHABLE();
4814 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00004815
4816 DECLARE_INSTRUCTION(Shl);
4817
4818 private:
4819 DISALLOW_COPY_AND_ASSIGN(HShl);
4820};
4821
Vladimir Markofcb503c2016-05-18 12:48:17 +01004822class HShr FINAL : public HBinaryOperation {
Calin Juravle9aec02f2014-11-18 23:06:35 +00004823 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004824 HShr(Primitive::Type result_type,
Roland Levillain5b5b9312016-03-22 14:57:31 +00004825 HInstruction* value,
4826 HInstruction* distance,
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004827 uint32_t dex_pc = kNoDexPc)
Roland Levillain5b5b9312016-03-22 14:57:31 +00004828 : HBinaryOperation(result_type, value, distance, SideEffects::None(), dex_pc) {
4829 DCHECK_EQ(result_type, Primitive::PrimitiveKind(value->GetType()));
4830 DCHECK_EQ(Primitive::kPrimInt, Primitive::PrimitiveKind(distance->GetType()));
Roland Levillain9867bc72015-08-05 10:21:34 +01004831 }
4832
Roland Levillain5b5b9312016-03-22 14:57:31 +00004833 template <typename T>
Anton Kirilov7fe30f92016-06-29 17:03:40 +01004834 static T Compute(T value, int32_t distance, int32_t max_shift_distance) {
Roland Levillain5b5b9312016-03-22 14:57:31 +00004835 return value >> (distance & max_shift_distance);
4836 }
4837
4838 HConstant* Evaluate(HIntConstant* value, HIntConstant* distance) const OVERRIDE {
Roland Levillain9867bc72015-08-05 10:21:34 +01004839 return GetBlock()->GetGraph()->GetIntConstant(
Roland Levillain5b5b9312016-03-22 14:57:31 +00004840 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004841 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004842 HConstant* Evaluate(HLongConstant* value, HIntConstant* distance) const OVERRIDE {
Roland Levillain9867bc72015-08-05 10:21:34 +01004843 return GetBlock()->GetGraph()->GetLongConstant(
Roland Levillain5b5b9312016-03-22 14:57:31 +00004844 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004845 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004846 HConstant* Evaluate(HLongConstant* value ATTRIBUTE_UNUSED,
4847 HLongConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
4848 LOG(FATAL) << DebugName() << " is not defined for the (long, long) case.";
4849 UNREACHABLE();
Roland Levillain9867bc72015-08-05 10:21:34 +01004850 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004851 HConstant* Evaluate(HFloatConstant* value ATTRIBUTE_UNUSED,
4852 HFloatConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00004853 LOG(FATAL) << DebugName() << " is not defined for float values";
4854 UNREACHABLE();
4855 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004856 HConstant* Evaluate(HDoubleConstant* value ATTRIBUTE_UNUSED,
4857 HDoubleConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00004858 LOG(FATAL) << DebugName() << " is not defined for double values";
4859 UNREACHABLE();
4860 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00004861
4862 DECLARE_INSTRUCTION(Shr);
4863
4864 private:
4865 DISALLOW_COPY_AND_ASSIGN(HShr);
4866};
4867
Vladimir Markofcb503c2016-05-18 12:48:17 +01004868class HUShr FINAL : public HBinaryOperation {
Calin Juravle9aec02f2014-11-18 23:06:35 +00004869 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004870 HUShr(Primitive::Type result_type,
Roland Levillain5b5b9312016-03-22 14:57:31 +00004871 HInstruction* value,
4872 HInstruction* distance,
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004873 uint32_t dex_pc = kNoDexPc)
Roland Levillain5b5b9312016-03-22 14:57:31 +00004874 : HBinaryOperation(result_type, value, distance, SideEffects::None(), dex_pc) {
4875 DCHECK_EQ(result_type, Primitive::PrimitiveKind(value->GetType()));
4876 DCHECK_EQ(Primitive::kPrimInt, Primitive::PrimitiveKind(distance->GetType()));
Calin Juravle9aec02f2014-11-18 23:06:35 +00004877 }
4878
Roland Levillain5b5b9312016-03-22 14:57:31 +00004879 template <typename T>
Anton Kirilov7fe30f92016-06-29 17:03:40 +01004880 static T Compute(T value, int32_t distance, int32_t max_shift_distance) {
Roland Levillain5b5b9312016-03-22 14:57:31 +00004881 typedef typename std::make_unsigned<T>::type V;
4882 V ux = static_cast<V>(value);
4883 return static_cast<T>(ux >> (distance & max_shift_distance));
4884 }
4885
4886 HConstant* Evaluate(HIntConstant* value, HIntConstant* distance) const OVERRIDE {
Roland Levillain9867bc72015-08-05 10:21:34 +01004887 return GetBlock()->GetGraph()->GetIntConstant(
Roland Levillain5b5b9312016-03-22 14:57:31 +00004888 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004889 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004890 HConstant* Evaluate(HLongConstant* value, HIntConstant* distance) const OVERRIDE {
Roland Levillain9867bc72015-08-05 10:21:34 +01004891 return GetBlock()->GetGraph()->GetLongConstant(
Roland Levillain5b5b9312016-03-22 14:57:31 +00004892 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004893 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004894 HConstant* Evaluate(HLongConstant* value ATTRIBUTE_UNUSED,
4895 HLongConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
4896 LOG(FATAL) << DebugName() << " is not defined for the (long, long) case.";
4897 UNREACHABLE();
Calin Juravle9aec02f2014-11-18 23:06:35 +00004898 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004899 HConstant* Evaluate(HFloatConstant* value ATTRIBUTE_UNUSED,
4900 HFloatConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00004901 LOG(FATAL) << DebugName() << " is not defined for float values";
4902 UNREACHABLE();
4903 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00004904 HConstant* Evaluate(HDoubleConstant* value ATTRIBUTE_UNUSED,
4905 HDoubleConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00004906 LOG(FATAL) << DebugName() << " is not defined for double values";
4907 UNREACHABLE();
4908 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00004909
4910 DECLARE_INSTRUCTION(UShr);
4911
4912 private:
4913 DISALLOW_COPY_AND_ASSIGN(HUShr);
4914};
4915
Vladimir Markofcb503c2016-05-18 12:48:17 +01004916class HAnd FINAL : public HBinaryOperation {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004917 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004918 HAnd(Primitive::Type result_type,
4919 HInstruction* left,
4920 HInstruction* right,
4921 uint32_t dex_pc = kNoDexPc)
4922 : HBinaryOperation(result_type, left, right, SideEffects::None(), dex_pc) {}
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004923
Mingyao Yangdc5ac732015-02-25 11:28:05 -08004924 bool IsCommutative() const OVERRIDE { return true; }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004925
Anton Kirilov7fe30f92016-06-29 17:03:40 +01004926 template <typename T> static T Compute(T x, T y) { return x & y; }
Roland Levillain9867bc72015-08-05 10:21:34 +01004927
4928 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004929 return GetBlock()->GetGraph()->GetIntConstant(
4930 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004931 }
Roland Levillain9867bc72015-08-05 10:21:34 +01004932 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004933 return GetBlock()->GetGraph()->GetLongConstant(
4934 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004935 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00004936 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED,
4937 HFloatConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
4938 LOG(FATAL) << DebugName() << " is not defined for float values";
4939 UNREACHABLE();
4940 }
4941 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED,
4942 HDoubleConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
4943 LOG(FATAL) << DebugName() << " is not defined for double values";
4944 UNREACHABLE();
4945 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004946
4947 DECLARE_INSTRUCTION(And);
4948
4949 private:
4950 DISALLOW_COPY_AND_ASSIGN(HAnd);
4951};
4952
Vladimir Markofcb503c2016-05-18 12:48:17 +01004953class HOr FINAL : public HBinaryOperation {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004954 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004955 HOr(Primitive::Type result_type,
4956 HInstruction* left,
4957 HInstruction* right,
4958 uint32_t dex_pc = kNoDexPc)
4959 : HBinaryOperation(result_type, left, right, SideEffects::None(), dex_pc) {}
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004960
Mingyao Yangdc5ac732015-02-25 11:28:05 -08004961 bool IsCommutative() const OVERRIDE { return true; }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004962
Anton Kirilov7fe30f92016-06-29 17:03:40 +01004963 template <typename T> static T Compute(T x, T y) { return x | y; }
Roland Levillain9867bc72015-08-05 10:21:34 +01004964
4965 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004966 return GetBlock()->GetGraph()->GetIntConstant(
4967 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004968 }
Roland Levillain9867bc72015-08-05 10:21:34 +01004969 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004970 return GetBlock()->GetGraph()->GetLongConstant(
4971 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01004972 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00004973 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED,
4974 HFloatConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
4975 LOG(FATAL) << DebugName() << " is not defined for float values";
4976 UNREACHABLE();
4977 }
4978 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED,
4979 HDoubleConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
4980 LOG(FATAL) << DebugName() << " is not defined for double values";
4981 UNREACHABLE();
4982 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004983
4984 DECLARE_INSTRUCTION(Or);
4985
4986 private:
4987 DISALLOW_COPY_AND_ASSIGN(HOr);
4988};
4989
Vladimir Markofcb503c2016-05-18 12:48:17 +01004990class HXor FINAL : public HBinaryOperation {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004991 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06004992 HXor(Primitive::Type result_type,
4993 HInstruction* left,
4994 HInstruction* right,
4995 uint32_t dex_pc = kNoDexPc)
4996 : HBinaryOperation(result_type, left, right, SideEffects::None(), dex_pc) {}
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004997
Mingyao Yangdc5ac732015-02-25 11:28:05 -08004998 bool IsCommutative() const OVERRIDE { return true; }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004999
Anton Kirilov7fe30f92016-06-29 17:03:40 +01005000 template <typename T> static T Compute(T x, T y) { return x ^ y; }
Roland Levillain9867bc72015-08-05 10:21:34 +01005001
5002 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005003 return GetBlock()->GetGraph()->GetIntConstant(
5004 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01005005 }
Roland Levillain9867bc72015-08-05 10:21:34 +01005006 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005007 return GetBlock()->GetGraph()->GetLongConstant(
5008 Compute(x->GetValue(), y->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01005009 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00005010 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED,
5011 HFloatConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
5012 LOG(FATAL) << DebugName() << " is not defined for float values";
5013 UNREACHABLE();
5014 }
5015 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED,
5016 HDoubleConstant* y ATTRIBUTE_UNUSED) const OVERRIDE {
5017 LOG(FATAL) << DebugName() << " is not defined for double values";
5018 UNREACHABLE();
5019 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005020
5021 DECLARE_INSTRUCTION(Xor);
5022
5023 private:
5024 DISALLOW_COPY_AND_ASSIGN(HXor);
5025};
5026
Vladimir Markofcb503c2016-05-18 12:48:17 +01005027class HRor FINAL : public HBinaryOperation {
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005028 public:
5029 HRor(Primitive::Type result_type, HInstruction* value, HInstruction* distance)
Roland Levillain22c49222016-03-18 14:04:28 +00005030 : HBinaryOperation(result_type, value, distance) {
Roland Levillain5b5b9312016-03-22 14:57:31 +00005031 DCHECK_EQ(result_type, Primitive::PrimitiveKind(value->GetType()));
5032 DCHECK_EQ(Primitive::kPrimInt, Primitive::PrimitiveKind(distance->GetType()));
Roland Levillain22c49222016-03-18 14:04:28 +00005033 }
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005034
Roland Levillain5b5b9312016-03-22 14:57:31 +00005035 template <typename T>
Anton Kirilov7fe30f92016-06-29 17:03:40 +01005036 static T Compute(T value, int32_t distance, int32_t max_shift_value) {
Roland Levillain5b5b9312016-03-22 14:57:31 +00005037 typedef typename std::make_unsigned<T>::type V;
5038 V ux = static_cast<V>(value);
5039 if ((distance & max_shift_value) == 0) {
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005040 return static_cast<T>(ux);
5041 } else {
5042 const V reg_bits = sizeof(T) * 8;
Roland Levillain5b5b9312016-03-22 14:57:31 +00005043 return static_cast<T>(ux >> (distance & max_shift_value)) |
5044 (value << (reg_bits - (distance & max_shift_value)));
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005045 }
5046 }
5047
Roland Levillain5b5b9312016-03-22 14:57:31 +00005048 HConstant* Evaluate(HIntConstant* value, HIntConstant* distance) const OVERRIDE {
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005049 return GetBlock()->GetGraph()->GetIntConstant(
Roland Levillain5b5b9312016-03-22 14:57:31 +00005050 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc());
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005051 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00005052 HConstant* Evaluate(HLongConstant* value, HIntConstant* distance) const OVERRIDE {
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005053 return GetBlock()->GetGraph()->GetLongConstant(
Roland Levillain5b5b9312016-03-22 14:57:31 +00005054 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005055 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00005056 HConstant* Evaluate(HLongConstant* value ATTRIBUTE_UNUSED,
5057 HLongConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
5058 LOG(FATAL) << DebugName() << " is not defined for the (long, long) case.";
5059 UNREACHABLE();
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005060 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00005061 HConstant* Evaluate(HFloatConstant* value ATTRIBUTE_UNUSED,
5062 HFloatConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00005063 LOG(FATAL) << DebugName() << " is not defined for float values";
5064 UNREACHABLE();
5065 }
Roland Levillain5b5b9312016-03-22 14:57:31 +00005066 HConstant* Evaluate(HDoubleConstant* value ATTRIBUTE_UNUSED,
5067 HDoubleConstant* distance ATTRIBUTE_UNUSED) const OVERRIDE {
Roland Levillain31dd3d62016-02-16 12:21:02 +00005068 LOG(FATAL) << DebugName() << " is not defined for double values";
5069 UNREACHABLE();
5070 }
Scott Wakeling40a04bf2015-12-11 09:50:36 +00005071
5072 DECLARE_INSTRUCTION(Ror);
5073
5074 private:
5075 DISALLOW_COPY_AND_ASSIGN(HRor);
5076};
5077
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01005078// The value of a parameter in this method. Its location depends on
5079// the calling convention.
Vladimir Markofcb503c2016-05-18 12:48:17 +01005080class HParameterValue FINAL : public HExpression<0> {
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01005081 public:
Calin Juravlee6e3bea2015-10-14 13:53:10 +00005082 HParameterValue(const DexFile& dex_file,
Andreas Gampea5b09a62016-11-17 15:21:22 -08005083 dex::TypeIndex type_index,
Calin Juravlee6e3bea2015-10-14 13:53:10 +00005084 uint8_t index,
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005085 Primitive::Type parameter_type,
5086 bool is_this = false)
5087 : HExpression(parameter_type, SideEffects::None(), kNoDexPc),
Calin Juravlee6e3bea2015-10-14 13:53:10 +00005088 dex_file_(dex_file),
5089 type_index_(type_index),
Vladimir Markoa1de9182016-02-25 11:37:38 +00005090 index_(index) {
5091 SetPackedFlag<kFlagIsThis>(is_this);
5092 SetPackedFlag<kFlagCanBeNull>(!is_this);
5093 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01005094
Calin Juravlee6e3bea2015-10-14 13:53:10 +00005095 const DexFile& GetDexFile() const { return dex_file_; }
Andreas Gampea5b09a62016-11-17 15:21:22 -08005096 dex::TypeIndex GetTypeIndex() const { return type_index_; }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01005097 uint8_t GetIndex() const { return index_; }
Igor Murashkind01745e2017-04-05 16:40:31 -07005098 bool IsThis() const { return GetPackedFlag<kFlagIsThis>(); }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01005099
Vladimir Markoa1de9182016-02-25 11:37:38 +00005100 bool CanBeNull() const OVERRIDE { return GetPackedFlag<kFlagCanBeNull>(); }
5101 void SetCanBeNull(bool can_be_null) { SetPackedFlag<kFlagCanBeNull>(can_be_null); }
Calin Juravle10e244f2015-01-26 18:54:32 +00005102
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01005103 DECLARE_INSTRUCTION(ParameterValue);
5104
5105 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00005106 // Whether or not the parameter value corresponds to 'this' argument.
5107 static constexpr size_t kFlagIsThis = kNumberOfExpressionPackedBits;
5108 static constexpr size_t kFlagCanBeNull = kFlagIsThis + 1;
5109 static constexpr size_t kNumberOfParameterValuePackedBits = kFlagCanBeNull + 1;
5110 static_assert(kNumberOfParameterValuePackedBits <= kMaxNumberOfPackedBits,
5111 "Too many packed fields.");
5112
Calin Juravlee6e3bea2015-10-14 13:53:10 +00005113 const DexFile& dex_file_;
Andreas Gampea5b09a62016-11-17 15:21:22 -08005114 const dex::TypeIndex type_index_;
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01005115 // The index of this parameter in the parameters list. Must be less
Calin Juravle10e244f2015-01-26 18:54:32 +00005116 // than HGraph::number_of_in_vregs_.
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01005117 const uint8_t index_;
5118
5119 DISALLOW_COPY_AND_ASSIGN(HParameterValue);
5120};
5121
Vladimir Markofcb503c2016-05-18 12:48:17 +01005122class HNot FINAL : public HUnaryOperation {
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01005123 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005124 HNot(Primitive::Type result_type, HInstruction* input, uint32_t dex_pc = kNoDexPc)
5125 : HUnaryOperation(result_type, input, dex_pc) {}
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01005126
Alexandre Rames2ed20af2015-03-06 13:55:35 +00005127 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01005128 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07005129 return true;
5130 }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01005131
Anton Kirilov7fe30f92016-06-29 17:03:40 +01005132 template <typename T> static T Compute(T x) { return ~x; }
Roland Levillain9867bc72015-08-05 10:21:34 +01005133
5134 HConstant* Evaluate(HIntConstant* x) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005135 return GetBlock()->GetGraph()->GetIntConstant(Compute(x->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01005136 }
5137 HConstant* Evaluate(HLongConstant* x) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005138 return GetBlock()->GetGraph()->GetLongConstant(Compute(x->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01005139 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00005140 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED) const OVERRIDE {
5141 LOG(FATAL) << DebugName() << " is not defined for float values";
5142 UNREACHABLE();
5143 }
5144 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED) const OVERRIDE {
5145 LOG(FATAL) << DebugName() << " is not defined for double values";
5146 UNREACHABLE();
5147 }
Roland Levillain1cc5f2512014-10-22 18:06:21 +01005148
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01005149 DECLARE_INSTRUCTION(Not);
5150
5151 private:
5152 DISALLOW_COPY_AND_ASSIGN(HNot);
5153};
5154
Vladimir Markofcb503c2016-05-18 12:48:17 +01005155class HBooleanNot FINAL : public HUnaryOperation {
David Brazdil66d126e2015-04-03 16:02:44 +01005156 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005157 explicit HBooleanNot(HInstruction* input, uint32_t dex_pc = kNoDexPc)
5158 : HUnaryOperation(Primitive::Type::kPrimBoolean, input, dex_pc) {}
David Brazdil66d126e2015-04-03 16:02:44 +01005159
5160 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01005161 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
David Brazdil66d126e2015-04-03 16:02:44 +01005162 return true;
5163 }
5164
Anton Kirilov7fe30f92016-06-29 17:03:40 +01005165 template <typename T> static bool Compute(T x) {
Roland Levillain31dd3d62016-02-16 12:21:02 +00005166 DCHECK(IsUint<1>(x)) << x;
David Brazdil66d126e2015-04-03 16:02:44 +01005167 return !x;
5168 }
5169
Roland Levillain9867bc72015-08-05 10:21:34 +01005170 HConstant* Evaluate(HIntConstant* x) const OVERRIDE {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005171 return GetBlock()->GetGraph()->GetIntConstant(Compute(x->GetValue()), GetDexPc());
Roland Levillain9867bc72015-08-05 10:21:34 +01005172 }
5173 HConstant* Evaluate(HLongConstant* x ATTRIBUTE_UNUSED) const OVERRIDE {
5174 LOG(FATAL) << DebugName() << " is not defined for long values";
David Brazdil66d126e2015-04-03 16:02:44 +01005175 UNREACHABLE();
5176 }
Roland Levillain31dd3d62016-02-16 12:21:02 +00005177 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED) const OVERRIDE {
5178 LOG(FATAL) << DebugName() << " is not defined for float values";
5179 UNREACHABLE();
5180 }
5181 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED) const OVERRIDE {
5182 LOG(FATAL) << DebugName() << " is not defined for double values";
5183 UNREACHABLE();
5184 }
David Brazdil66d126e2015-04-03 16:02:44 +01005185
5186 DECLARE_INSTRUCTION(BooleanNot);
5187
5188 private:
5189 DISALLOW_COPY_AND_ASSIGN(HBooleanNot);
5190};
5191
Vladimir Markofcb503c2016-05-18 12:48:17 +01005192class HTypeConversion FINAL : public HExpression<1> {
Roland Levillaindff1f282014-11-05 14:15:05 +00005193 public:
5194 // Instantiate a type conversion of `input` to `result_type`.
Roland Levillain624279f2014-12-04 11:54:28 +00005195 HTypeConversion(Primitive::Type result_type, HInstruction* input, uint32_t dex_pc)
Alexandre Rames91a65162016-09-19 13:54:30 +01005196 : HExpression(result_type, SideEffects::None(), dex_pc) {
Roland Levillaindff1f282014-11-05 14:15:05 +00005197 SetRawInputAt(0, input);
Roland Levillainf355c3f2016-03-30 19:09:03 +01005198 // Invariant: We should never generate a conversion to a Boolean value.
5199 DCHECK_NE(Primitive::kPrimBoolean, result_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00005200 }
5201
5202 HInstruction* GetInput() const { return InputAt(0); }
5203 Primitive::Type GetInputType() const { return GetInput()->GetType(); }
5204 Primitive::Type GetResultType() const { return GetType(); }
5205
5206 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01005207 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
5208 return true;
5209 }
Roland Levillaindff1f282014-11-05 14:15:05 +00005210
Mark Mendelle82549b2015-05-06 10:55:34 -04005211 // Try to statically evaluate the conversion and return a HConstant
5212 // containing the result. If the input cannot be converted, return nullptr.
5213 HConstant* TryStaticEvaluation() const;
5214
Roland Levillaindff1f282014-11-05 14:15:05 +00005215 DECLARE_INSTRUCTION(TypeConversion);
5216
5217 private:
5218 DISALLOW_COPY_AND_ASSIGN(HTypeConversion);
5219};
5220
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00005221static constexpr uint32_t kNoRegNumber = -1;
5222
Vladimir Markofcb503c2016-05-18 12:48:17 +01005223class HNullCheck FINAL : public HExpression<1> {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005224 public:
Nicolas Geoffray1af564e2016-01-13 12:09:39 +00005225 // `HNullCheck` can trigger GC, as it may call the `NullPointerException`
5226 // constructor.
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005227 HNullCheck(HInstruction* value, uint32_t dex_pc)
Nicolas Geoffray1af564e2016-01-13 12:09:39 +00005228 : HExpression(value->GetType(), SideEffects::CanTriggerGC(), dex_pc) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005229 SetRawInputAt(0, value);
5230 }
5231
Calin Juravle10e244f2015-01-26 18:54:32 +00005232 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01005233 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07005234 return true;
5235 }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01005236
Calin Juravle10e244f2015-01-26 18:54:32 +00005237 bool NeedsEnvironment() const OVERRIDE { return true; }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005238
Calin Juravle10e244f2015-01-26 18:54:32 +00005239 bool CanThrow() const OVERRIDE { return true; }
5240
5241 bool CanBeNull() const OVERRIDE { return false; }
Roland Levillaine161a2a2014-10-03 12:45:18 +01005242
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005243
5244 DECLARE_INSTRUCTION(NullCheck);
5245
5246 private:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005247 DISALLOW_COPY_AND_ASSIGN(HNullCheck);
5248};
5249
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005250// Embeds an ArtField and all the information required by the compiler. We cache
5251// that information to avoid requiring the mutator lock every time we need it.
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005252class FieldInfo : public ValueObject {
5253 public:
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005254 FieldInfo(ArtField* field,
5255 MemberOffset field_offset,
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +01005256 Primitive::Type field_type,
5257 bool is_volatile,
5258 uint32_t index,
Mingyao Yang8df69d42015-10-22 15:40:58 -07005259 uint16_t declaring_class_def_index,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005260 const DexFile& dex_file)
5261 : field_(field),
5262 field_offset_(field_offset),
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +01005263 field_type_(field_type),
5264 is_volatile_(is_volatile),
5265 index_(index),
Mingyao Yang8df69d42015-10-22 15:40:58 -07005266 declaring_class_def_index_(declaring_class_def_index),
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005267 dex_file_(dex_file) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005268
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005269 ArtField* GetField() const { return field_; }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005270 MemberOffset GetFieldOffset() const { return field_offset_; }
Nicolas Geoffray39468442014-09-02 15:17:15 +01005271 Primitive::Type GetFieldType() const { return field_type_; }
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +01005272 uint32_t GetFieldIndex() const { return index_; }
Mingyao Yang8df69d42015-10-22 15:40:58 -07005273 uint16_t GetDeclaringClassDefIndex() const { return declaring_class_def_index_;}
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +01005274 const DexFile& GetDexFile() const { return dex_file_; }
Calin Juravle52c48962014-12-16 17:02:57 +00005275 bool IsVolatile() const { return is_volatile_; }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005276
5277 private:
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005278 ArtField* const field_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005279 const MemberOffset field_offset_;
Nicolas Geoffray39468442014-09-02 15:17:15 +01005280 const Primitive::Type field_type_;
Calin Juravle52c48962014-12-16 17:02:57 +00005281 const bool is_volatile_;
Mathieu Chartier736b5602015-09-02 14:54:11 -07005282 const uint32_t index_;
Mingyao Yang8df69d42015-10-22 15:40:58 -07005283 const uint16_t declaring_class_def_index_;
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +01005284 const DexFile& dex_file_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005285};
5286
Vladimir Markofcb503c2016-05-18 12:48:17 +01005287class HInstanceFieldGet FINAL : public HExpression<1> {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005288 public:
5289 HInstanceFieldGet(HInstruction* value,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005290 ArtField* field,
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005291 Primitive::Type field_type,
Calin Juravle52c48962014-12-16 17:02:57 +00005292 MemberOffset field_offset,
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +01005293 bool is_volatile,
5294 uint32_t field_idx,
Mingyao Yang8df69d42015-10-22 15:40:58 -07005295 uint16_t declaring_class_def_index,
Mathieu Chartier736b5602015-09-02 14:54:11 -07005296 const DexFile& dex_file,
Calin Juravle154746b2015-10-06 15:46:54 +01005297 uint32_t dex_pc)
Alexandre Rames91a65162016-09-19 13:54:30 +01005298 : HExpression(field_type, SideEffects::FieldReadOfType(field_type, is_volatile), dex_pc),
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005299 field_info_(field,
5300 field_offset,
Mingyao Yang8df69d42015-10-22 15:40:58 -07005301 field_type,
5302 is_volatile,
5303 field_idx,
5304 declaring_class_def_index,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005305 dex_file) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005306 SetRawInputAt(0, value);
5307 }
5308
Calin Juravle10c9cbe2014-12-19 10:50:19 +00005309 bool CanBeMoved() const OVERRIDE { return !IsVolatile(); }
Calin Juravle52c48962014-12-16 17:02:57 +00005310
Vladimir Marko372f10e2016-05-17 16:30:10 +01005311 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
5312 const HInstanceFieldGet* other_get = other->AsInstanceFieldGet();
Calin Juravle52c48962014-12-16 17:02:57 +00005313 return GetFieldOffset().SizeValue() == other_get->GetFieldOffset().SizeValue();
Nicolas Geoffray065bf772014-09-03 14:51:22 +01005314 }
5315
Calin Juravle641547a2015-04-21 22:08:51 +01005316 bool CanDoImplicitNullCheckOn(HInstruction* obj) const OVERRIDE {
Nicolas Geoffraye8e11272016-06-28 18:08:46 +01005317 return (obj == InputAt(0)) && art::CanDoImplicitNullCheckOn(GetFieldOffset().Uint32Value());
Calin Juravle77520bc2015-01-12 18:45:46 +00005318 }
5319
5320 size_t ComputeHashCode() const OVERRIDE {
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01005321 return (HInstruction::ComputeHashCode() << 7) | GetFieldOffset().SizeValue();
5322 }
5323
Calin Juravle52c48962014-12-16 17:02:57 +00005324 const FieldInfo& GetFieldInfo() const { return field_info_; }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005325 MemberOffset GetFieldOffset() const { return field_info_.GetFieldOffset(); }
Nicolas Geoffray39468442014-09-02 15:17:15 +01005326 Primitive::Type GetFieldType() const { return field_info_.GetFieldType(); }
Calin Juravle52c48962014-12-16 17:02:57 +00005327 bool IsVolatile() const { return field_info_.IsVolatile(); }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005328
5329 DECLARE_INSTRUCTION(InstanceFieldGet);
5330
5331 private:
5332 const FieldInfo field_info_;
5333
5334 DISALLOW_COPY_AND_ASSIGN(HInstanceFieldGet);
5335};
5336
Vladimir Markofcb503c2016-05-18 12:48:17 +01005337class HInstanceFieldSet FINAL : public HTemplateInstruction<2> {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005338 public:
5339 HInstanceFieldSet(HInstruction* object,
5340 HInstruction* value,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005341 ArtField* field,
Nicolas Geoffray39468442014-09-02 15:17:15 +01005342 Primitive::Type field_type,
Calin Juravle52c48962014-12-16 17:02:57 +00005343 MemberOffset field_offset,
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +01005344 bool is_volatile,
5345 uint32_t field_idx,
Mingyao Yang8df69d42015-10-22 15:40:58 -07005346 uint16_t declaring_class_def_index,
Mathieu Chartier736b5602015-09-02 14:54:11 -07005347 const DexFile& dex_file,
Calin Juravle154746b2015-10-06 15:46:54 +01005348 uint32_t dex_pc)
Alexandre Rames91a65162016-09-19 13:54:30 +01005349 : HTemplateInstruction(SideEffects::FieldWriteOfType(field_type, is_volatile), dex_pc),
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005350 field_info_(field,
5351 field_offset,
Mingyao Yang8df69d42015-10-22 15:40:58 -07005352 field_type,
5353 is_volatile,
5354 field_idx,
5355 declaring_class_def_index,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00005356 dex_file) {
Vladimir Markoa1de9182016-02-25 11:37:38 +00005357 SetPackedFlag<kFlagValueCanBeNull>(true);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005358 SetRawInputAt(0, object);
5359 SetRawInputAt(1, value);
5360 }
5361
Calin Juravle641547a2015-04-21 22:08:51 +01005362 bool CanDoImplicitNullCheckOn(HInstruction* obj) const OVERRIDE {
Nicolas Geoffraye8e11272016-06-28 18:08:46 +01005363 return (obj == InputAt(0)) && art::CanDoImplicitNullCheckOn(GetFieldOffset().Uint32Value());
Calin Juravle77520bc2015-01-12 18:45:46 +00005364 }
5365
Calin Juravle52c48962014-12-16 17:02:57 +00005366 const FieldInfo& GetFieldInfo() const { return field_info_; }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005367 MemberOffset GetFieldOffset() const { return field_info_.GetFieldOffset(); }
Nicolas Geoffray39468442014-09-02 15:17:15 +01005368 Primitive::Type GetFieldType() const { return field_info_.GetFieldType(); }
Calin Juravle52c48962014-12-16 17:02:57 +00005369 bool IsVolatile() const { return field_info_.IsVolatile(); }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005370 HInstruction* GetValue() const { return InputAt(1); }
Vladimir Markoa1de9182016-02-25 11:37:38 +00005371 bool GetValueCanBeNull() const { return GetPackedFlag<kFlagValueCanBeNull>(); }
5372 void ClearValueCanBeNull() { SetPackedFlag<kFlagValueCanBeNull>(false); }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005373
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005374 DECLARE_INSTRUCTION(InstanceFieldSet);
5375
5376 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00005377 static constexpr size_t kFlagValueCanBeNull = kNumberOfGenericPackedBits;
5378 static constexpr size_t kNumberOfInstanceFieldSetPackedBits = kFlagValueCanBeNull + 1;
5379 static_assert(kNumberOfInstanceFieldSetPackedBits <= kMaxNumberOfPackedBits,
5380 "Too many packed fields.");
5381
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005382 const FieldInfo field_info_;
5383
5384 DISALLOW_COPY_AND_ASSIGN(HInstanceFieldSet);
5385};
5386
Vladimir Markofcb503c2016-05-18 12:48:17 +01005387class HArrayGet FINAL : public HExpression<2> {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005388 public:
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005389 HArrayGet(HInstruction* array,
5390 HInstruction* index,
5391 Primitive::Type type,
5392 uint32_t dex_pc,
5393 bool is_string_char_at = false)
Aart Bik18b36ab2016-04-13 16:41:35 -07005394 : HExpression(type, SideEffects::ArrayReadOfType(type), dex_pc) {
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005395 SetPackedFlag<kFlagIsStringCharAt>(is_string_char_at);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005396 SetRawInputAt(0, array);
5397 SetRawInputAt(1, index);
5398 }
5399
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005400 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01005401 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07005402 return true;
5403 }
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01005404 bool CanDoImplicitNullCheckOn(HInstruction* obj ATTRIBUTE_UNUSED) const OVERRIDE {
Calin Juravle77520bc2015-01-12 18:45:46 +00005405 // TODO: We can be smarter here.
Vladimir Marko66d691d2017-04-07 17:53:39 +01005406 // Currently, unless the array is the result of NewArray, the array access is always
5407 // preceded by some form of null NullCheck necessary for the bounds check, usually
5408 // implicit null check on the ArrayLength input to BoundsCheck or Deoptimize for
5409 // dynamic BCE. There are cases when these could be removed to produce better code.
5410 // If we ever add optimizations to do so we should allow an implicit check here
5411 // (as long as the address falls in the first page).
5412 //
5413 // As an example of such fancy optimization, we could eliminate BoundsCheck for
5414 // a = cond ? new int[1] : null;
5415 // a[0]; // The Phi does not need bounds check for either input.
Calin Juravle77520bc2015-01-12 18:45:46 +00005416 return false;
5417 }
5418
David Brazdil4833f5a2015-12-16 10:37:39 +00005419 bool IsEquivalentOf(HArrayGet* other) const {
5420 bool result = (GetDexPc() == other->GetDexPc());
5421 if (kIsDebugBuild && result) {
5422 DCHECK_EQ(GetBlock(), other->GetBlock());
5423 DCHECK_EQ(GetArray(), other->GetArray());
5424 DCHECK_EQ(GetIndex(), other->GetIndex());
5425 if (Primitive::IsIntOrLongType(GetType())) {
Roland Levillain31dd3d62016-02-16 12:21:02 +00005426 DCHECK(Primitive::IsFloatingPointType(other->GetType())) << other->GetType();
David Brazdil4833f5a2015-12-16 10:37:39 +00005427 } else {
Roland Levillain31dd3d62016-02-16 12:21:02 +00005428 DCHECK(Primitive::IsFloatingPointType(GetType())) << GetType();
5429 DCHECK(Primitive::IsIntOrLongType(other->GetType())) << other->GetType();
David Brazdil4833f5a2015-12-16 10:37:39 +00005430 }
5431 }
5432 return result;
5433 }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01005434
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005435 bool IsStringCharAt() const { return GetPackedFlag<kFlagIsStringCharAt>(); }
5436
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005437 HInstruction* GetArray() const { return InputAt(0); }
5438 HInstruction* GetIndex() const { return InputAt(1); }
5439
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005440 DECLARE_INSTRUCTION(ArrayGet);
5441
5442 private:
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005443 // We treat a String as an array, creating the HArrayGet from String.charAt()
5444 // intrinsic in the instruction simplifier. We can always determine whether
5445 // a particular HArrayGet is actually a String.charAt() by looking at the type
5446 // of the input but that requires holding the mutator lock, so we prefer to use
5447 // a flag, so that code generators don't need to do the locking.
5448 static constexpr size_t kFlagIsStringCharAt = kNumberOfExpressionPackedBits;
5449 static constexpr size_t kNumberOfArrayGetPackedBits = kFlagIsStringCharAt + 1;
5450 static_assert(kNumberOfArrayGetPackedBits <= HInstruction::kMaxNumberOfPackedBits,
5451 "Too many packed fields.");
5452
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005453 DISALLOW_COPY_AND_ASSIGN(HArrayGet);
5454};
5455
Vladimir Markofcb503c2016-05-18 12:48:17 +01005456class HArraySet FINAL : public HTemplateInstruction<3> {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005457 public:
5458 HArraySet(HInstruction* array,
5459 HInstruction* index,
5460 HInstruction* value,
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005461 Primitive::Type expected_component_type,
Aart Bik18b36ab2016-04-13 16:41:35 -07005462 uint32_t dex_pc)
5463 : HTemplateInstruction(SideEffects::None(), dex_pc) {
Vladimir Markoa1de9182016-02-25 11:37:38 +00005464 SetPackedField<ExpectedComponentTypeField>(expected_component_type);
5465 SetPackedFlag<kFlagNeedsTypeCheck>(value->GetType() == Primitive::kPrimNot);
5466 SetPackedFlag<kFlagValueCanBeNull>(true);
5467 SetPackedFlag<kFlagStaticTypeOfArrayIsObjectArray>(false);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005468 SetRawInputAt(0, array);
5469 SetRawInputAt(1, index);
5470 SetRawInputAt(2, value);
Aart Bik18b36ab2016-04-13 16:41:35 -07005471 // Make a best guess now, may be refined during SSA building.
5472 ComputeSideEffects();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005473 }
5474
Calin Juravle77520bc2015-01-12 18:45:46 +00005475 bool NeedsEnvironment() const OVERRIDE {
Nicolas Geoffray03196cf2016-02-01 12:23:22 +00005476 // We call a runtime method to throw ArrayStoreException.
Vladimir Markoa1de9182016-02-25 11:37:38 +00005477 return NeedsTypeCheck();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005478 }
5479
Mingyao Yang81014cb2015-06-02 03:16:27 -07005480 // Can throw ArrayStoreException.
Vladimir Markoa1de9182016-02-25 11:37:38 +00005481 bool CanThrow() const OVERRIDE { return NeedsTypeCheck(); }
Mingyao Yang81014cb2015-06-02 03:16:27 -07005482
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01005483 bool CanDoImplicitNullCheckOn(HInstruction* obj ATTRIBUTE_UNUSED) const OVERRIDE {
Calin Juravle77520bc2015-01-12 18:45:46 +00005484 // TODO: Same as for ArrayGet.
5485 return false;
5486 }
5487
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005488 void ClearNeedsTypeCheck() {
Vladimir Markoa1de9182016-02-25 11:37:38 +00005489 SetPackedFlag<kFlagNeedsTypeCheck>(false);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005490 }
5491
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005492 void ClearValueCanBeNull() {
Vladimir Markoa1de9182016-02-25 11:37:38 +00005493 SetPackedFlag<kFlagValueCanBeNull>(false);
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005494 }
5495
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005496 void SetStaticTypeOfArrayIsObjectArray() {
Vladimir Markoa1de9182016-02-25 11:37:38 +00005497 SetPackedFlag<kFlagStaticTypeOfArrayIsObjectArray>(true);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005498 }
5499
Vladimir Markoa1de9182016-02-25 11:37:38 +00005500 bool GetValueCanBeNull() const { return GetPackedFlag<kFlagValueCanBeNull>(); }
5501 bool NeedsTypeCheck() const { return GetPackedFlag<kFlagNeedsTypeCheck>(); }
5502 bool StaticTypeOfArrayIsObjectArray() const {
5503 return GetPackedFlag<kFlagStaticTypeOfArrayIsObjectArray>();
5504 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005505
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005506 HInstruction* GetArray() const { return InputAt(0); }
5507 HInstruction* GetIndex() const { return InputAt(1); }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005508 HInstruction* GetValue() const { return InputAt(2); }
5509
5510 Primitive::Type GetComponentType() const {
5511 // The Dex format does not type floating point index operations. Since the
5512 // `expected_component_type_` is set during building and can therefore not
5513 // be correct, we also check what is the value type. If it is a floating
5514 // point type, we must use that type.
5515 Primitive::Type value_type = GetValue()->GetType();
5516 return ((value_type == Primitive::kPrimFloat) || (value_type == Primitive::kPrimDouble))
5517 ? value_type
Vladimir Markoa1de9182016-02-25 11:37:38 +00005518 : GetRawExpectedComponentType();
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005519 }
Nicolas Geoffray39468442014-09-02 15:17:15 +01005520
Alexandre Ramese6dbf482015-10-19 10:10:41 +01005521 Primitive::Type GetRawExpectedComponentType() const {
Vladimir Markoa1de9182016-02-25 11:37:38 +00005522 return GetPackedField<ExpectedComponentTypeField>();
Alexandre Ramese6dbf482015-10-19 10:10:41 +01005523 }
5524
Aart Bik18b36ab2016-04-13 16:41:35 -07005525 void ComputeSideEffects() {
5526 Primitive::Type type = GetComponentType();
5527 SetSideEffects(SideEffects::ArrayWriteOfType(type).Union(
5528 SideEffectsForArchRuntimeCalls(type)));
5529 }
5530
Alexandre Rames78e3ef62015-08-12 13:43:29 +01005531 static SideEffects SideEffectsForArchRuntimeCalls(Primitive::Type value_type) {
5532 return (value_type == Primitive::kPrimNot) ? SideEffects::CanTriggerGC() : SideEffects::None();
5533 }
5534
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005535 DECLARE_INSTRUCTION(ArraySet);
5536
5537 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00005538 static constexpr size_t kFieldExpectedComponentType = kNumberOfGenericPackedBits;
5539 static constexpr size_t kFieldExpectedComponentTypeSize =
5540 MinimumBitsToStore(static_cast<size_t>(Primitive::kPrimLast));
5541 static constexpr size_t kFlagNeedsTypeCheck =
5542 kFieldExpectedComponentType + kFieldExpectedComponentTypeSize;
5543 static constexpr size_t kFlagValueCanBeNull = kFlagNeedsTypeCheck + 1;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005544 // Cached information for the reference_type_info_ so that codegen
5545 // does not need to inspect the static type.
Vladimir Markoa1de9182016-02-25 11:37:38 +00005546 static constexpr size_t kFlagStaticTypeOfArrayIsObjectArray = kFlagValueCanBeNull + 1;
5547 static constexpr size_t kNumberOfArraySetPackedBits =
5548 kFlagStaticTypeOfArrayIsObjectArray + 1;
5549 static_assert(kNumberOfArraySetPackedBits <= kMaxNumberOfPackedBits, "Too many packed fields.");
5550 using ExpectedComponentTypeField =
5551 BitField<Primitive::Type, kFieldExpectedComponentType, kFieldExpectedComponentTypeSize>;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005552
5553 DISALLOW_COPY_AND_ASSIGN(HArraySet);
5554};
5555
Vladimir Markofcb503c2016-05-18 12:48:17 +01005556class HArrayLength FINAL : public HExpression<1> {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005557 public:
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005558 HArrayLength(HInstruction* array, uint32_t dex_pc, bool is_string_length = false)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005559 : HExpression(Primitive::kPrimInt, SideEffects::None(), dex_pc) {
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005560 SetPackedFlag<kFlagIsStringLength>(is_string_length);
Nicolas Geoffray065bf772014-09-03 14:51:22 +01005561 // Note that arrays do not change length, so the instruction does not
5562 // depend on any write.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005563 SetRawInputAt(0, array);
5564 }
5565
Calin Juravle77520bc2015-01-12 18:45:46 +00005566 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01005567 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07005568 return true;
5569 }
Calin Juravle641547a2015-04-21 22:08:51 +01005570 bool CanDoImplicitNullCheckOn(HInstruction* obj) const OVERRIDE {
5571 return obj == InputAt(0);
5572 }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01005573
Vladimir Markodce016e2016-04-28 13:10:02 +01005574 bool IsStringLength() const { return GetPackedFlag<kFlagIsStringLength>(); }
5575
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005576 DECLARE_INSTRUCTION(ArrayLength);
5577
5578 private:
Vladimir Markodce016e2016-04-28 13:10:02 +01005579 // We treat a String as an array, creating the HArrayLength from String.length()
5580 // or String.isEmpty() intrinsic in the instruction simplifier. We can always
5581 // determine whether a particular HArrayLength is actually a String.length() by
5582 // looking at the type of the input but that requires holding the mutator lock, so
5583 // we prefer to use a flag, so that code generators don't need to do the locking.
5584 static constexpr size_t kFlagIsStringLength = kNumberOfExpressionPackedBits;
5585 static constexpr size_t kNumberOfArrayLengthPackedBits = kFlagIsStringLength + 1;
5586 static_assert(kNumberOfArrayLengthPackedBits <= HInstruction::kMaxNumberOfPackedBits,
5587 "Too many packed fields.");
5588
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005589 DISALLOW_COPY_AND_ASSIGN(HArrayLength);
5590};
5591
Vladimir Markofcb503c2016-05-18 12:48:17 +01005592class HBoundsCheck FINAL : public HExpression<2> {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005593 public:
Nicolas Geoffray1af564e2016-01-13 12:09:39 +00005594 // `HBoundsCheck` can trigger GC, as it may call the `IndexOutOfBoundsException`
5595 // constructor.
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005596 HBoundsCheck(HInstruction* index,
5597 HInstruction* length,
5598 uint32_t dex_pc,
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00005599 bool string_char_at = false)
5600 : HExpression(index->GetType(), SideEffects::CanTriggerGC(), dex_pc) {
David Brazdildee58d62016-04-07 09:54:26 +00005601 DCHECK_EQ(Primitive::kPrimInt, Primitive::PrimitiveKind(index->GetType()));
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00005602 SetPackedFlag<kFlagIsStringCharAt>(string_char_at);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005603 SetRawInputAt(0, index);
5604 SetRawInputAt(1, length);
5605 }
5606
Alexandre Rames2ed20af2015-03-06 13:55:35 +00005607 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01005608 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07005609 return true;
5610 }
Nicolas Geoffray065bf772014-09-03 14:51:22 +01005611
Alexandre Rames2ed20af2015-03-06 13:55:35 +00005612 bool NeedsEnvironment() const OVERRIDE { return true; }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005613
Alexandre Rames2ed20af2015-03-06 13:55:35 +00005614 bool CanThrow() const OVERRIDE { return true; }
Roland Levillaine161a2a2014-10-03 12:45:18 +01005615
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00005616 bool IsStringCharAt() const { return GetPackedFlag<kFlagIsStringCharAt>(); }
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005617
Alexandre Ramese6dbf482015-10-19 10:10:41 +01005618 HInstruction* GetIndex() const { return InputAt(0); }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005619
5620 DECLARE_INSTRUCTION(BoundsCheck);
5621
5622 private:
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00005623 static constexpr size_t kFlagIsStringCharAt = kNumberOfExpressionPackedBits;
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005624
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005625 DISALLOW_COPY_AND_ASSIGN(HBoundsCheck);
5626};
5627
Vladimir Markofcb503c2016-05-18 12:48:17 +01005628class HSuspendCheck FINAL : public HTemplateInstruction<0> {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005629 public:
David Brazdil86ea7ee2016-02-16 09:26:07 +00005630 explicit HSuspendCheck(uint32_t dex_pc = kNoDexPc)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06005631 : HTemplateInstruction(SideEffects::CanTriggerGC(), dex_pc), slow_path_(nullptr) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005632
Alexandre Rames2ed20af2015-03-06 13:55:35 +00005633 bool NeedsEnvironment() const OVERRIDE {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005634 return true;
5635 }
5636
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01005637 void SetSlowPath(SlowPathCode* slow_path) { slow_path_ = slow_path; }
5638 SlowPathCode* GetSlowPath() const { return slow_path_; }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005639
5640 DECLARE_INSTRUCTION(SuspendCheck);
5641
5642 private:
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01005643 // Only used for code generation, in order to share the same slow path between back edges
5644 // of a same loop.
5645 SlowPathCode* slow_path_;
5646
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005647 DISALLOW_COPY_AND_ASSIGN(HSuspendCheck);
5648};
5649
David Srbecky0cf44932015-12-09 14:09:59 +00005650// Pseudo-instruction which provides the native debugger with mapping information.
5651// It ensures that we can generate line number and local variables at this point.
5652class HNativeDebugInfo : public HTemplateInstruction<0> {
5653 public:
5654 explicit HNativeDebugInfo(uint32_t dex_pc)
5655 : HTemplateInstruction<0>(SideEffects::None(), dex_pc) {}
5656
5657 bool NeedsEnvironment() const OVERRIDE {
5658 return true;
5659 }
5660
5661 DECLARE_INSTRUCTION(NativeDebugInfo);
5662
5663 private:
5664 DISALLOW_COPY_AND_ASSIGN(HNativeDebugInfo);
5665};
5666
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005667/**
5668 * Instruction to load a Class object.
5669 */
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005670class HLoadClass FINAL : public HInstruction {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005671 public:
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005672 // Determines how to load the Class.
5673 enum class LoadKind {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00005674 // We cannot load this class. See HSharpening::SharpenLoadClass.
5675 kInvalid = -1,
5676
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005677 // Use the Class* from the method's own ArtMethod*.
5678 kReferrersClass,
5679
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005680 // Use PC-relative boot image Class* address that will be known at link time.
Vladimir Marko764d4542017-05-16 10:31:41 +01005681 // Used for boot image classes referenced by boot image code.
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005682 kBootImageLinkTimePcRelative,
5683
5684 // Use a known boot image Class* address, embedded in the code by the codegen.
5685 // Used for boot image classes referenced by apps in AOT- and JIT-compiled code.
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005686 kBootImageAddress,
5687
Vladimir Marko6bec91c2017-01-09 15:03:12 +00005688 // Load from an entry in the .bss section using a PC-relative load.
5689 // Used for classes outside boot image when .bss is accessible with a PC-relative load.
5690 kBssEntry,
5691
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00005692 // Load from the root table associated with the JIT compiled method.
5693 kJitTableAddress,
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005694
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005695 // Load from resolved types array accessed through the class loaded from
5696 // the compiled method's own ArtMethod*. This is the default access type when
5697 // all other types are unavailable.
5698 kDexCacheViaMethod,
5699
5700 kLast = kDexCacheViaMethod
5701 };
5702
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01005703 HLoadClass(HCurrentMethod* current_method,
Andreas Gampea5b09a62016-11-17 15:21:22 -08005704 dex::TypeIndex type_index,
Nicolas Geoffrayd5111bf2015-05-22 15:37:09 +01005705 const DexFile& dex_file,
Nicolas Geoffray5247c082017-01-13 14:17:29 +00005706 Handle<mirror::Class> klass,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005707 bool is_referrers_class,
Calin Juravle98893e12015-10-02 21:05:03 +01005708 uint32_t dex_pc,
Nicolas Geoffray56876342016-12-16 16:09:08 +00005709 bool needs_access_check)
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005710 : HInstruction(SideEffectsForArchRuntimeCalls(), dex_pc),
5711 special_input_(HUserRecord<HInstruction*>(current_method)),
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005712 type_index_(type_index),
Nicolas Geoffrayd5111bf2015-05-22 15:37:09 +01005713 dex_file_(dex_file),
Nicolas Geoffray5247c082017-01-13 14:17:29 +00005714 klass_(klass),
Calin Juravle2e768302015-07-28 14:41:11 +00005715 loaded_class_rti_(ReferenceTypeInfo::CreateInvalid()) {
Calin Juravle4e2a5572015-10-07 18:55:43 +01005716 // Referrers class should not need access check. We never inline unverified
5717 // methods so we can't possibly end up in this situation.
Vladimir Markoa1de9182016-02-25 11:37:38 +00005718 DCHECK(!is_referrers_class || !needs_access_check);
5719
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005720 SetPackedField<LoadKindField>(
5721 is_referrers_class ? LoadKind::kReferrersClass : LoadKind::kDexCacheViaMethod);
Vladimir Markoa1de9182016-02-25 11:37:38 +00005722 SetPackedFlag<kFlagNeedsAccessCheck>(needs_access_check);
Nicolas Geoffray56876342016-12-16 16:09:08 +00005723 SetPackedFlag<kFlagIsInBootImage>(false);
Vladimir Markoa1de9182016-02-25 11:37:38 +00005724 SetPackedFlag<kFlagGenerateClInitCheck>(false);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005725 }
5726
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00005727 void SetLoadKind(LoadKind load_kind);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005728
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005729 LoadKind GetLoadKind() const {
5730 return GetPackedField<LoadKindField>();
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01005731 }
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005732
5733 bool CanBeMoved() const OVERRIDE { return true; }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005734
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005735 bool InstructionDataEquals(const HInstruction* other) const;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005736
Andreas Gampea5b09a62016-11-17 15:21:22 -08005737 size_t ComputeHashCode() const OVERRIDE { return type_index_.index_; }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005738
Nicolas Geoffray7d5ea032015-07-02 15:48:27 +01005739 bool CanBeNull() const OVERRIDE { return false; }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005740
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005741 bool NeedsEnvironment() const OVERRIDE {
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00005742 return CanCallRuntime();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005743 }
5744
Calin Juravle0ba218d2015-05-19 18:46:01 +01005745 void SetMustGenerateClinitCheck(bool generate_clinit_check) {
Nicolas Geoffrayd9309292015-10-31 22:21:31 +00005746 // The entrypoint the code generator is going to call does not do
5747 // clinit of the class.
5748 DCHECK(!NeedsAccessCheck());
Vladimir Markoa1de9182016-02-25 11:37:38 +00005749 SetPackedFlag<kFlagGenerateClInitCheck>(generate_clinit_check);
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005750 }
5751
5752 bool CanCallRuntime() const {
Vladimir Marko41559982017-01-06 14:04:23 +00005753 return NeedsAccessCheck() ||
5754 MustGenerateClinitCheck() ||
Vladimir Marko6bec91c2017-01-09 15:03:12 +00005755 GetLoadKind() == LoadKind::kDexCacheViaMethod ||
5756 GetLoadKind() == LoadKind::kBssEntry;
Calin Juravle98893e12015-10-02 21:05:03 +01005757 }
5758
Nicolas Geoffray82091da2015-01-26 10:02:45 +00005759 bool CanThrow() const OVERRIDE {
Vladimir Marko41559982017-01-06 14:04:23 +00005760 return NeedsAccessCheck() ||
5761 MustGenerateClinitCheck() ||
5762 // If the class is in the boot image, the lookup in the runtime call cannot throw.
5763 // This keeps CanThrow() consistent between non-PIC (using kBootImageAddress) and
5764 // PIC and subsequently avoids a DCE behavior dependency on the PIC option.
Vladimir Marko6bec91c2017-01-09 15:03:12 +00005765 ((GetLoadKind() == LoadKind::kDexCacheViaMethod ||
5766 GetLoadKind() == LoadKind::kBssEntry) &&
5767 !IsInBootImage());
Nicolas Geoffray82091da2015-01-26 10:02:45 +00005768 }
5769
Calin Juravleacf735c2015-02-12 15:25:22 +00005770 ReferenceTypeInfo GetLoadedClassRTI() {
5771 return loaded_class_rti_;
5772 }
5773
5774 void SetLoadedClassRTI(ReferenceTypeInfo rti) {
5775 // Make sure we only set exact types (the loaded class should never be merged).
5776 DCHECK(rti.IsExact());
5777 loaded_class_rti_ = rti;
5778 }
5779
Andreas Gampea5b09a62016-11-17 15:21:22 -08005780 dex::TypeIndex GetTypeIndex() const { return type_index_; }
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005781 const DexFile& GetDexFile() const { return dex_file_; }
5782
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00005783 bool NeedsDexCacheOfDeclaringClass() const OVERRIDE {
Vladimir Marko41559982017-01-06 14:04:23 +00005784 return GetLoadKind() == LoadKind::kDexCacheViaMethod;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00005785 }
Nicolas Geoffray9437b782015-03-25 10:08:51 +00005786
Alexandre Rames78e3ef62015-08-12 13:43:29 +01005787 static SideEffects SideEffectsForArchRuntimeCalls() {
5788 return SideEffects::CanTriggerGC();
5789 }
5790
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005791 bool IsReferrersClass() const { return GetLoadKind() == LoadKind::kReferrersClass; }
Vladimir Markoa1de9182016-02-25 11:37:38 +00005792 bool NeedsAccessCheck() const { return GetPackedFlag<kFlagNeedsAccessCheck>(); }
Mathieu Chartier31b12e32016-09-02 17:11:57 -07005793 bool IsInBootImage() const { return GetPackedFlag<kFlagIsInBootImage>(); }
Vladimir Markoa1de9182016-02-25 11:37:38 +00005794 bool MustGenerateClinitCheck() const { return GetPackedFlag<kFlagGenerateClInitCheck>(); }
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00005795
Mathieu Chartier31b12e32016-09-02 17:11:57 -07005796 void MarkInBootImage() {
5797 SetPackedFlag<kFlagIsInBootImage>(true);
5798 }
5799
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005800 void AddSpecialInput(HInstruction* special_input);
5801
5802 using HInstruction::GetInputRecords; // Keep the const version visible.
5803 ArrayRef<HUserRecord<HInstruction*>> GetInputRecords() OVERRIDE FINAL {
5804 return ArrayRef<HUserRecord<HInstruction*>>(
5805 &special_input_, (special_input_.GetInstruction() != nullptr) ? 1u : 0u);
5806 }
5807
5808 Primitive::Type GetType() const OVERRIDE {
5809 return Primitive::kPrimNot;
5810 }
5811
Nicolas Geoffray5247c082017-01-13 14:17:29 +00005812 Handle<mirror::Class> GetClass() const {
5813 return klass_;
5814 }
5815
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005816 DECLARE_INSTRUCTION(LoadClass);
5817
5818 private:
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005819 static constexpr size_t kFlagNeedsAccessCheck = kNumberOfGenericPackedBits;
Vladimir Marko41559982017-01-06 14:04:23 +00005820 static constexpr size_t kFlagIsInBootImage = kFlagNeedsAccessCheck + 1;
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005821 // Whether this instruction must generate the initialization check.
5822 // Used for code generation.
Mathieu Chartier31b12e32016-09-02 17:11:57 -07005823 static constexpr size_t kFlagGenerateClInitCheck = kFlagIsInBootImage + 1;
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005824 static constexpr size_t kFieldLoadKind = kFlagGenerateClInitCheck + 1;
5825 static constexpr size_t kFieldLoadKindSize =
5826 MinimumBitsToStore(static_cast<size_t>(LoadKind::kLast));
5827 static constexpr size_t kNumberOfLoadClassPackedBits = kFieldLoadKind + kFieldLoadKindSize;
Vladimir Markoa1de9182016-02-25 11:37:38 +00005828 static_assert(kNumberOfLoadClassPackedBits < kMaxNumberOfPackedBits, "Too many packed fields.");
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005829 using LoadKindField = BitField<LoadKind, kFieldLoadKind, kFieldLoadKindSize>;
5830
5831 static bool HasTypeReference(LoadKind load_kind) {
Vladimir Marko6bec91c2017-01-09 15:03:12 +00005832 return load_kind == LoadKind::kReferrersClass ||
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005833 load_kind == LoadKind::kBootImageLinkTimePcRelative ||
Vladimir Marko6bec91c2017-01-09 15:03:12 +00005834 load_kind == LoadKind::kBssEntry ||
5835 load_kind == LoadKind::kDexCacheViaMethod;
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005836 }
5837
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005838 void SetLoadKindInternal(LoadKind load_kind);
5839
5840 // The special input is the HCurrentMethod for kDexCacheViaMethod or kReferrersClass.
5841 // For other load kinds it's empty or possibly some architecture-specific instruction
Vladimir Marko6bec91c2017-01-09 15:03:12 +00005842 // for PC-relative loads, i.e. kBssEntry or kBootImageLinkTimePcRelative.
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005843 HUserRecord<HInstruction*> special_input_;
Vladimir Markoa1de9182016-02-25 11:37:38 +00005844
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00005845 // A type index and dex file where the class can be accessed. The dex file can be:
5846 // - The compiling method's dex file if the class is defined there too.
5847 // - The compiling method's dex file if the class is referenced there.
5848 // - The dex file where the class is defined. When the load kind can only be
5849 // kBssEntry or kDexCacheViaMethod, we cannot emit code for this `HLoadClass`.
Andreas Gampea5b09a62016-11-17 15:21:22 -08005850 const dex::TypeIndex type_index_;
Vladimir Markoa1de9182016-02-25 11:37:38 +00005851 const DexFile& dex_file_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005852
Nicolas Geoffray5247c082017-01-13 14:17:29 +00005853 Handle<mirror::Class> klass_;
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005854
Calin Juravleacf735c2015-02-12 15:25:22 +00005855 ReferenceTypeInfo loaded_class_rti_;
5856
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005857 DISALLOW_COPY_AND_ASSIGN(HLoadClass);
5858};
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005859std::ostream& operator<<(std::ostream& os, HLoadClass::LoadKind rhs);
5860
5861// Note: defined outside class to see operator<<(., HLoadClass::LoadKind).
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005862inline void HLoadClass::AddSpecialInput(HInstruction* special_input) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07005863 // The special input is used for PC-relative loads on some architectures,
5864 // including literal pool loads, which are PC-relative too.
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005865 DCHECK(GetLoadKind() == LoadKind::kBootImageLinkTimePcRelative ||
Vladimir Marko6bec91c2017-01-09 15:03:12 +00005866 GetLoadKind() == LoadKind::kBootImageAddress ||
5867 GetLoadKind() == LoadKind::kBssEntry) << GetLoadKind();
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005868 DCHECK(special_input_.GetInstruction() == nullptr);
5869 special_input_ = HUserRecord<HInstruction*>(special_input);
5870 special_input->AddUseAt(this, 0);
5871}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005872
Vladimir Marko372f10e2016-05-17 16:30:10 +01005873class HLoadString FINAL : public HInstruction {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005874 public:
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005875 // Determines how to load the String.
5876 enum class LoadKind {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005877 // Use PC-relative boot image String* address that will be known at link time.
Vladimir Marko764d4542017-05-16 10:31:41 +01005878 // Used for boot image strings referenced by boot image code.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005879 kBootImageLinkTimePcRelative,
5880
5881 // Use a known boot image String* address, embedded in the code by the codegen.
5882 // Used for boot image strings referenced by apps in AOT- and JIT-compiled code.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005883 kBootImageAddress,
5884
Vladimir Markoaad75c62016-10-03 08:46:48 +00005885 // Load from an entry in the .bss section using a PC-relative load.
5886 // Used for strings outside boot image when .bss is accessible with a PC-relative load.
5887 kBssEntry,
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005888
Vladimir Marko6bec91c2017-01-09 15:03:12 +00005889 // Load from the root table associated with the JIT compiled method.
5890 kJitTableAddress,
5891
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005892 // Load from resolved strings array accessed through the class loaded from
5893 // the compiled method's own ArtMethod*. This is the default access type when
5894 // all other types are unavailable.
5895 kDexCacheViaMethod,
5896
Vladimir Marko6bec91c2017-01-09 15:03:12 +00005897 kLast = kDexCacheViaMethod,
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005898 };
5899
Nicolas Geoffray917d0162015-11-24 18:25:35 +00005900 HLoadString(HCurrentMethod* current_method,
Andreas Gampe8a0128a2016-11-28 07:38:35 -08005901 dex::StringIndex string_index,
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005902 const DexFile& dex_file,
5903 uint32_t dex_pc)
Vladimir Marko372f10e2016-05-17 16:30:10 +01005904 : HInstruction(SideEffectsForArchRuntimeCalls(), dex_pc),
5905 special_input_(HUserRecord<HInstruction*>(current_method)),
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00005906 string_index_(string_index),
5907 dex_file_(dex_file) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005908 SetPackedField<LoadKindField>(LoadKind::kDexCacheViaMethod);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01005909 }
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005910
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00005911 void SetLoadKind(LoadKind load_kind);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005912
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005913 LoadKind GetLoadKind() const {
5914 return GetPackedField<LoadKindField>();
5915 }
5916
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00005917 const DexFile& GetDexFile() const {
5918 return dex_file_;
5919 }
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005920
Andreas Gampe8a0128a2016-11-28 07:38:35 -08005921 dex::StringIndex GetStringIndex() const {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005922 return string_index_;
5923 }
5924
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00005925 Handle<mirror::String> GetString() const {
5926 return string_;
5927 }
5928
5929 void SetString(Handle<mirror::String> str) {
5930 string_ = str;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005931 }
5932
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005933 bool CanBeMoved() const OVERRIDE { return true; }
5934
Vladimir Marko372f10e2016-05-17 16:30:10 +01005935 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE;
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005936
Andreas Gampe8a0128a2016-11-28 07:38:35 -08005937 size_t ComputeHashCode() const OVERRIDE { return string_index_.index_; }
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005938
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005939 // Will call the runtime if we need to load the string through
5940 // the dex cache and the string is not guaranteed to be there yet.
5941 bool NeedsEnvironment() const OVERRIDE {
5942 LoadKind load_kind = GetLoadKind();
Vladimir Marko764d4542017-05-16 10:31:41 +01005943 if (load_kind == LoadKind::kBootImageLinkTimePcRelative ||
Nicolas Geoffray132d8362016-11-16 09:19:42 +00005944 load_kind == LoadKind::kBootImageAddress ||
5945 load_kind == LoadKind::kJitTableAddress) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005946 return false;
5947 }
Vladimir Marko4d1be4922017-01-06 14:43:11 +00005948 return true;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005949 }
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005950
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005951 bool NeedsDexCacheOfDeclaringClass() const OVERRIDE {
5952 return GetLoadKind() == LoadKind::kDexCacheViaMethod;
5953 }
Nicolas Geoffray03196cf2016-02-01 12:23:22 +00005954
Nicolas Geoffraye418dda2015-08-11 20:03:09 -07005955 bool CanBeNull() const OVERRIDE { return false; }
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005956 bool CanThrow() const OVERRIDE { return NeedsEnvironment(); }
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005957
Alexandre Rames78e3ef62015-08-12 13:43:29 +01005958 static SideEffects SideEffectsForArchRuntimeCalls() {
5959 return SideEffects::CanTriggerGC();
5960 }
5961
Vladimir Marko372f10e2016-05-17 16:30:10 +01005962 void AddSpecialInput(HInstruction* special_input);
5963
5964 using HInstruction::GetInputRecords; // Keep the const version visible.
5965 ArrayRef<HUserRecord<HInstruction*>> GetInputRecords() OVERRIDE FINAL {
5966 return ArrayRef<HUserRecord<HInstruction*>>(
5967 &special_input_, (special_input_.GetInstruction() != nullptr) ? 1u : 0u);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005968 }
5969
Vladimir Marko372f10e2016-05-17 16:30:10 +01005970 Primitive::Type GetType() const OVERRIDE {
5971 return Primitive::kPrimNot;
5972 }
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005973
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005974 DECLARE_INSTRUCTION(LoadString);
5975
5976 private:
Vladimir Marko4d1be4922017-01-06 14:43:11 +00005977 static constexpr size_t kFieldLoadKind = kNumberOfGenericPackedBits;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005978 static constexpr size_t kFieldLoadKindSize =
5979 MinimumBitsToStore(static_cast<size_t>(LoadKind::kLast));
5980 static constexpr size_t kNumberOfLoadStringPackedBits = kFieldLoadKind + kFieldLoadKindSize;
Vladimir Markoa1de9182016-02-25 11:37:38 +00005981 static_assert(kNumberOfLoadStringPackedBits <= kMaxNumberOfPackedBits, "Too many packed fields.");
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005982 using LoadKindField = BitField<LoadKind, kFieldLoadKind, kFieldLoadKindSize>;
Vladimir Markoa1de9182016-02-25 11:37:38 +00005983
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005984 void SetLoadKindInternal(LoadKind load_kind);
5985
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005986 // The special input is the HCurrentMethod for kDexCacheViaMethod.
5987 // For other load kinds it's empty or possibly some architecture-specific instruction
Vladimir Marko48886c22017-01-06 11:45:47 +00005988 // for PC-relative loads, i.e. kBssEntry or kBootImageLinkTimePcRelative.
Vladimir Marko372f10e2016-05-17 16:30:10 +01005989 HUserRecord<HInstruction*> special_input_;
5990
Andreas Gampe8a0128a2016-11-28 07:38:35 -08005991 dex::StringIndex string_index_;
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00005992 const DexFile& dex_file_;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005993
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00005994 Handle<mirror::String> string_;
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005995
5996 DISALLOW_COPY_AND_ASSIGN(HLoadString);
5997};
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005998std::ostream& operator<<(std::ostream& os, HLoadString::LoadKind rhs);
5999
6000// Note: defined outside class to see operator<<(., HLoadString::LoadKind).
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006001inline void HLoadString::AddSpecialInput(HInstruction* special_input) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07006002 // The special input is used for PC-relative loads on some architectures,
6003 // including literal pool loads, which are PC-relative too.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006004 DCHECK(GetLoadKind() == LoadKind::kBootImageLinkTimePcRelative ||
Vladimir Markoaad75c62016-10-03 08:46:48 +00006005 GetLoadKind() == LoadKind::kBssEntry ||
Alexey Frunze06a46c42016-07-19 15:00:40 -07006006 GetLoadKind() == LoadKind::kBootImageAddress) << GetLoadKind();
Vladimir Marko372f10e2016-05-17 16:30:10 +01006007 // HLoadString::GetInputRecords() returns an empty array at this point,
6008 // so use the GetInputRecords() from the base class to set the input record.
6009 DCHECK(special_input_.GetInstruction() == nullptr);
6010 special_input_ = HUserRecord<HInstruction*>(special_input);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006011 special_input->AddUseAt(this, 0);
6012}
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00006013
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006014/**
6015 * Performs an initialization check on its Class object input.
6016 */
Vladimir Markofcb503c2016-05-18 12:48:17 +01006017class HClinitCheck FINAL : public HExpression<1> {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006018 public:
Roland Levillain3887c462015-08-12 18:15:42 +01006019 HClinitCheck(HLoadClass* constant, uint32_t dex_pc)
Aart Bik854a02b2015-07-14 16:07:00 -07006020 : HExpression(
Alexandre Rames78e3ef62015-08-12 13:43:29 +01006021 Primitive::kPrimNot,
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06006022 SideEffects::AllChanges(), // Assume write/read on all fields/arrays.
6023 dex_pc) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006024 SetRawInputAt(0, constant);
6025 }
6026
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006027 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01006028 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006029 return true;
6030 }
6031
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006032 bool NeedsEnvironment() const OVERRIDE {
6033 // May call runtime to initialize the class.
6034 return true;
6035 }
6036
Nicolas Geoffray729645a2015-11-19 13:29:02 +00006037 bool CanThrow() const OVERRIDE { return true; }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006038
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00006039 HLoadClass* GetLoadClass() const {
6040 DCHECK(InputAt(0)->IsLoadClass());
6041 return InputAt(0)->AsLoadClass();
6042 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006043
6044 DECLARE_INSTRUCTION(ClinitCheck);
6045
6046 private:
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006047 DISALLOW_COPY_AND_ASSIGN(HClinitCheck);
6048};
6049
Vladimir Markofcb503c2016-05-18 12:48:17 +01006050class HStaticFieldGet FINAL : public HExpression<1> {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006051 public:
6052 HStaticFieldGet(HInstruction* cls,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00006053 ArtField* field,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006054 Primitive::Type field_type,
Calin Juravle52c48962014-12-16 17:02:57 +00006055 MemberOffset field_offset,
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +01006056 bool is_volatile,
6057 uint32_t field_idx,
Mingyao Yang8df69d42015-10-22 15:40:58 -07006058 uint16_t declaring_class_def_index,
Mathieu Chartier736b5602015-09-02 14:54:11 -07006059 const DexFile& dex_file,
Calin Juravle154746b2015-10-06 15:46:54 +01006060 uint32_t dex_pc)
Alexandre Rames91a65162016-09-19 13:54:30 +01006061 : HExpression(field_type, SideEffects::FieldReadOfType(field_type, is_volatile), dex_pc),
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00006062 field_info_(field,
6063 field_offset,
Mingyao Yang8df69d42015-10-22 15:40:58 -07006064 field_type,
6065 is_volatile,
6066 field_idx,
6067 declaring_class_def_index,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00006068 dex_file) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006069 SetRawInputAt(0, cls);
6070 }
6071
Calin Juravle52c48962014-12-16 17:02:57 +00006072
Calin Juravle10c9cbe2014-12-19 10:50:19 +00006073 bool CanBeMoved() const OVERRIDE { return !IsVolatile(); }
Calin Juravle52c48962014-12-16 17:02:57 +00006074
Vladimir Marko372f10e2016-05-17 16:30:10 +01006075 bool InstructionDataEquals(const HInstruction* other) const OVERRIDE {
6076 const HStaticFieldGet* other_get = other->AsStaticFieldGet();
Calin Juravle52c48962014-12-16 17:02:57 +00006077 return GetFieldOffset().SizeValue() == other_get->GetFieldOffset().SizeValue();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006078 }
6079
6080 size_t ComputeHashCode() const OVERRIDE {
6081 return (HInstruction::ComputeHashCode() << 7) | GetFieldOffset().SizeValue();
6082 }
6083
Calin Juravle52c48962014-12-16 17:02:57 +00006084 const FieldInfo& GetFieldInfo() const { return field_info_; }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006085 MemberOffset GetFieldOffset() const { return field_info_.GetFieldOffset(); }
6086 Primitive::Type GetFieldType() const { return field_info_.GetFieldType(); }
Calin Juravle52c48962014-12-16 17:02:57 +00006087 bool IsVolatile() const { return field_info_.IsVolatile(); }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006088
6089 DECLARE_INSTRUCTION(StaticFieldGet);
6090
6091 private:
6092 const FieldInfo field_info_;
6093
6094 DISALLOW_COPY_AND_ASSIGN(HStaticFieldGet);
6095};
6096
Vladimir Markofcb503c2016-05-18 12:48:17 +01006097class HStaticFieldSet FINAL : public HTemplateInstruction<2> {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006098 public:
6099 HStaticFieldSet(HInstruction* cls,
6100 HInstruction* value,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00006101 ArtField* field,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006102 Primitive::Type field_type,
Calin Juravle52c48962014-12-16 17:02:57 +00006103 MemberOffset field_offset,
Guillaume "Vermeille" Sanchez104fd8a2015-05-20 17:52:13 +01006104 bool is_volatile,
6105 uint32_t field_idx,
Mingyao Yang8df69d42015-10-22 15:40:58 -07006106 uint16_t declaring_class_def_index,
Mathieu Chartier736b5602015-09-02 14:54:11 -07006107 const DexFile& dex_file,
Calin Juravle154746b2015-10-06 15:46:54 +01006108 uint32_t dex_pc)
Alexandre Rames91a65162016-09-19 13:54:30 +01006109 : HTemplateInstruction(SideEffects::FieldWriteOfType(field_type, is_volatile), dex_pc),
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00006110 field_info_(field,
6111 field_offset,
Mingyao Yang8df69d42015-10-22 15:40:58 -07006112 field_type,
6113 is_volatile,
6114 field_idx,
6115 declaring_class_def_index,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00006116 dex_file) {
Vladimir Markoa1de9182016-02-25 11:37:38 +00006117 SetPackedFlag<kFlagValueCanBeNull>(true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006118 SetRawInputAt(0, cls);
6119 SetRawInputAt(1, value);
6120 }
6121
Calin Juravle52c48962014-12-16 17:02:57 +00006122 const FieldInfo& GetFieldInfo() const { return field_info_; }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006123 MemberOffset GetFieldOffset() const { return field_info_.GetFieldOffset(); }
6124 Primitive::Type GetFieldType() const { return field_info_.GetFieldType(); }
Calin Juravle52c48962014-12-16 17:02:57 +00006125 bool IsVolatile() const { return field_info_.IsVolatile(); }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006126
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00006127 HInstruction* GetValue() const { return InputAt(1); }
Vladimir Markoa1de9182016-02-25 11:37:38 +00006128 bool GetValueCanBeNull() const { return GetPackedFlag<kFlagValueCanBeNull>(); }
6129 void ClearValueCanBeNull() { SetPackedFlag<kFlagValueCanBeNull>(false); }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00006130
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006131 DECLARE_INSTRUCTION(StaticFieldSet);
6132
6133 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00006134 static constexpr size_t kFlagValueCanBeNull = kNumberOfGenericPackedBits;
6135 static constexpr size_t kNumberOfStaticFieldSetPackedBits = kFlagValueCanBeNull + 1;
6136 static_assert(kNumberOfStaticFieldSetPackedBits <= kMaxNumberOfPackedBits,
6137 "Too many packed fields.");
6138
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006139 const FieldInfo field_info_;
6140
6141 DISALLOW_COPY_AND_ASSIGN(HStaticFieldSet);
6142};
6143
Vladimir Markofcb503c2016-05-18 12:48:17 +01006144class HUnresolvedInstanceFieldGet FINAL : public HExpression<1> {
Calin Juravlee460d1d2015-09-29 04:52:17 +01006145 public:
6146 HUnresolvedInstanceFieldGet(HInstruction* obj,
6147 Primitive::Type field_type,
6148 uint32_t field_index,
6149 uint32_t dex_pc)
6150 : HExpression(field_type, SideEffects::AllExceptGCDependency(), dex_pc),
6151 field_index_(field_index) {
6152 SetRawInputAt(0, obj);
6153 }
6154
6155 bool NeedsEnvironment() const OVERRIDE { return true; }
6156 bool CanThrow() const OVERRIDE { return true; }
6157
6158 Primitive::Type GetFieldType() const { return GetType(); }
6159 uint32_t GetFieldIndex() const { return field_index_; }
6160
6161 DECLARE_INSTRUCTION(UnresolvedInstanceFieldGet);
6162
6163 private:
6164 const uint32_t field_index_;
6165
6166 DISALLOW_COPY_AND_ASSIGN(HUnresolvedInstanceFieldGet);
6167};
6168
Vladimir Markofcb503c2016-05-18 12:48:17 +01006169class HUnresolvedInstanceFieldSet FINAL : public HTemplateInstruction<2> {
Calin Juravlee460d1d2015-09-29 04:52:17 +01006170 public:
6171 HUnresolvedInstanceFieldSet(HInstruction* obj,
6172 HInstruction* value,
6173 Primitive::Type field_type,
6174 uint32_t field_index,
6175 uint32_t dex_pc)
6176 : HTemplateInstruction(SideEffects::AllExceptGCDependency(), dex_pc),
Calin Juravlee460d1d2015-09-29 04:52:17 +01006177 field_index_(field_index) {
Vladimir Markoa1de9182016-02-25 11:37:38 +00006178 SetPackedField<FieldTypeField>(field_type);
David Brazdildee58d62016-04-07 09:54:26 +00006179 DCHECK_EQ(Primitive::PrimitiveKind(field_type), Primitive::PrimitiveKind(value->GetType()));
Calin Juravlee460d1d2015-09-29 04:52:17 +01006180 SetRawInputAt(0, obj);
6181 SetRawInputAt(1, value);
6182 }
6183
6184 bool NeedsEnvironment() const OVERRIDE { return true; }
6185 bool CanThrow() const OVERRIDE { return true; }
6186
Vladimir Markoa1de9182016-02-25 11:37:38 +00006187 Primitive::Type GetFieldType() const { return GetPackedField<FieldTypeField>(); }
Calin Juravlee460d1d2015-09-29 04:52:17 +01006188 uint32_t GetFieldIndex() const { return field_index_; }
6189
6190 DECLARE_INSTRUCTION(UnresolvedInstanceFieldSet);
6191
6192 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00006193 static constexpr size_t kFieldFieldType = HInstruction::kNumberOfGenericPackedBits;
6194 static constexpr size_t kFieldFieldTypeSize =
6195 MinimumBitsToStore(static_cast<size_t>(Primitive::kPrimLast));
6196 static constexpr size_t kNumberOfUnresolvedStaticFieldSetPackedBits =
6197 kFieldFieldType + kFieldFieldTypeSize;
6198 static_assert(kNumberOfUnresolvedStaticFieldSetPackedBits <= HInstruction::kMaxNumberOfPackedBits,
6199 "Too many packed fields.");
6200 using FieldTypeField = BitField<Primitive::Type, kFieldFieldType, kFieldFieldTypeSize>;
6201
Calin Juravlee460d1d2015-09-29 04:52:17 +01006202 const uint32_t field_index_;
6203
6204 DISALLOW_COPY_AND_ASSIGN(HUnresolvedInstanceFieldSet);
6205};
6206
Vladimir Markofcb503c2016-05-18 12:48:17 +01006207class HUnresolvedStaticFieldGet FINAL : public HExpression<0> {
Calin Juravlee460d1d2015-09-29 04:52:17 +01006208 public:
6209 HUnresolvedStaticFieldGet(Primitive::Type field_type,
6210 uint32_t field_index,
6211 uint32_t dex_pc)
6212 : HExpression(field_type, SideEffects::AllExceptGCDependency(), dex_pc),
6213 field_index_(field_index) {
6214 }
6215
6216 bool NeedsEnvironment() const OVERRIDE { return true; }
6217 bool CanThrow() const OVERRIDE { return true; }
6218
6219 Primitive::Type GetFieldType() const { return GetType(); }
6220 uint32_t GetFieldIndex() const { return field_index_; }
6221
6222 DECLARE_INSTRUCTION(UnresolvedStaticFieldGet);
6223
6224 private:
6225 const uint32_t field_index_;
6226
6227 DISALLOW_COPY_AND_ASSIGN(HUnresolvedStaticFieldGet);
6228};
6229
Vladimir Markofcb503c2016-05-18 12:48:17 +01006230class HUnresolvedStaticFieldSet FINAL : public HTemplateInstruction<1> {
Calin Juravlee460d1d2015-09-29 04:52:17 +01006231 public:
6232 HUnresolvedStaticFieldSet(HInstruction* value,
6233 Primitive::Type field_type,
6234 uint32_t field_index,
6235 uint32_t dex_pc)
6236 : HTemplateInstruction(SideEffects::AllExceptGCDependency(), dex_pc),
Calin Juravlee460d1d2015-09-29 04:52:17 +01006237 field_index_(field_index) {
Vladimir Markoa1de9182016-02-25 11:37:38 +00006238 SetPackedField<FieldTypeField>(field_type);
David Brazdildee58d62016-04-07 09:54:26 +00006239 DCHECK_EQ(Primitive::PrimitiveKind(field_type), Primitive::PrimitiveKind(value->GetType()));
Calin Juravlee460d1d2015-09-29 04:52:17 +01006240 SetRawInputAt(0, value);
6241 }
6242
6243 bool NeedsEnvironment() const OVERRIDE { return true; }
6244 bool CanThrow() const OVERRIDE { return true; }
6245
Vladimir Markoa1de9182016-02-25 11:37:38 +00006246 Primitive::Type GetFieldType() const { return GetPackedField<FieldTypeField>(); }
Calin Juravlee460d1d2015-09-29 04:52:17 +01006247 uint32_t GetFieldIndex() const { return field_index_; }
6248
6249 DECLARE_INSTRUCTION(UnresolvedStaticFieldSet);
6250
6251 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00006252 static constexpr size_t kFieldFieldType = HInstruction::kNumberOfGenericPackedBits;
6253 static constexpr size_t kFieldFieldTypeSize =
6254 MinimumBitsToStore(static_cast<size_t>(Primitive::kPrimLast));
6255 static constexpr size_t kNumberOfUnresolvedStaticFieldSetPackedBits =
6256 kFieldFieldType + kFieldFieldTypeSize;
6257 static_assert(kNumberOfUnresolvedStaticFieldSetPackedBits <= HInstruction::kMaxNumberOfPackedBits,
6258 "Too many packed fields.");
6259 using FieldTypeField = BitField<Primitive::Type, kFieldFieldType, kFieldFieldTypeSize>;
6260
Calin Juravlee460d1d2015-09-29 04:52:17 +01006261 const uint32_t field_index_;
6262
6263 DISALLOW_COPY_AND_ASSIGN(HUnresolvedStaticFieldSet);
6264};
6265
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006266// Implement the move-exception DEX instruction.
Vladimir Markofcb503c2016-05-18 12:48:17 +01006267class HLoadException FINAL : public HExpression<0> {
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006268 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06006269 explicit HLoadException(uint32_t dex_pc = kNoDexPc)
6270 : HExpression(Primitive::kPrimNot, SideEffects::None(), dex_pc) {}
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006271
David Brazdilbbd733e2015-08-18 17:48:17 +01006272 bool CanBeNull() const OVERRIDE { return false; }
6273
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006274 DECLARE_INSTRUCTION(LoadException);
6275
6276 private:
6277 DISALLOW_COPY_AND_ASSIGN(HLoadException);
6278};
6279
David Brazdilcb1c0552015-08-04 16:22:25 +01006280// Implicit part of move-exception which clears thread-local exception storage.
6281// Must not be removed because the runtime expects the TLS to get cleared.
Vladimir Markofcb503c2016-05-18 12:48:17 +01006282class HClearException FINAL : public HTemplateInstruction<0> {
David Brazdilcb1c0552015-08-04 16:22:25 +01006283 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06006284 explicit HClearException(uint32_t dex_pc = kNoDexPc)
6285 : HTemplateInstruction(SideEffects::AllWrites(), dex_pc) {}
David Brazdilcb1c0552015-08-04 16:22:25 +01006286
6287 DECLARE_INSTRUCTION(ClearException);
6288
6289 private:
6290 DISALLOW_COPY_AND_ASSIGN(HClearException);
6291};
6292
Vladimir Markofcb503c2016-05-18 12:48:17 +01006293class HThrow FINAL : public HTemplateInstruction<1> {
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006294 public:
6295 HThrow(HInstruction* exception, uint32_t dex_pc)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06006296 : HTemplateInstruction(SideEffects::CanTriggerGC(), dex_pc) {
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006297 SetRawInputAt(0, exception);
6298 }
6299
6300 bool IsControlFlow() const OVERRIDE { return true; }
6301
6302 bool NeedsEnvironment() const OVERRIDE { return true; }
6303
Nicolas Geoffray82091da2015-01-26 10:02:45 +00006304 bool CanThrow() const OVERRIDE { return true; }
6305
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006306
6307 DECLARE_INSTRUCTION(Throw);
6308
6309 private:
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006310 DISALLOW_COPY_AND_ASSIGN(HThrow);
6311};
6312
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006313/**
6314 * Implementation strategies for the code generator of a HInstanceOf
6315 * or `HCheckCast`.
6316 */
6317enum class TypeCheckKind {
Calin Juravle98893e12015-10-02 21:05:03 +01006318 kUnresolvedCheck, // Check against an unresolved type.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006319 kExactCheck, // Can do a single class compare.
6320 kClassHierarchyCheck, // Can just walk the super class chain.
6321 kAbstractClassCheck, // Can just walk the super class chain, starting one up.
6322 kInterfaceCheck, // No optimization yet when checking against an interface.
6323 kArrayObjectCheck, // Can just check if the array is not primitive.
Vladimir Markoa1de9182016-02-25 11:37:38 +00006324 kArrayCheck, // No optimization yet when checking against a generic array.
6325 kLast = kArrayCheck
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006326};
6327
Roland Levillain86503782016-02-11 19:07:30 +00006328std::ostream& operator<<(std::ostream& os, TypeCheckKind rhs);
6329
Vladimir Markofcb503c2016-05-18 12:48:17 +01006330class HInstanceOf FINAL : public HExpression<2> {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006331 public:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006332 HInstanceOf(HInstruction* object,
6333 HLoadClass* constant,
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006334 TypeCheckKind check_kind,
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006335 uint32_t dex_pc)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06006336 : HExpression(Primitive::kPrimBoolean,
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006337 SideEffectsForArchRuntimeCalls(check_kind),
Vladimir Markoa1de9182016-02-25 11:37:38 +00006338 dex_pc) {
6339 SetPackedField<TypeCheckKindField>(check_kind);
6340 SetPackedFlag<kFlagMustDoNullCheck>(true);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006341 SetRawInputAt(0, object);
6342 SetRawInputAt(1, constant);
6343 }
6344
6345 bool CanBeMoved() const OVERRIDE { return true; }
6346
Vladimir Marko372f10e2016-05-17 16:30:10 +01006347 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006348 return true;
6349 }
6350
6351 bool NeedsEnvironment() const OVERRIDE {
Vladimir Markoa1de9182016-02-25 11:37:38 +00006352 return CanCallRuntime(GetTypeCheckKind());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006353 }
6354
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006355 // Used only in code generation.
Vladimir Markoa1de9182016-02-25 11:37:38 +00006356 bool MustDoNullCheck() const { return GetPackedFlag<kFlagMustDoNullCheck>(); }
6357 void ClearMustDoNullCheck() { SetPackedFlag<kFlagMustDoNullCheck>(false); }
6358 TypeCheckKind GetTypeCheckKind() const { return GetPackedField<TypeCheckKindField>(); }
6359 bool IsExactCheck() const { return GetTypeCheckKind() == TypeCheckKind::kExactCheck; }
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006360
Nicolas Geoffray03196cf2016-02-01 12:23:22 +00006361 static bool CanCallRuntime(TypeCheckKind check_kind) {
6362 // Mips currently does runtime calls for any other checks.
6363 return check_kind != TypeCheckKind::kExactCheck;
6364 }
6365
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006366 static SideEffects SideEffectsForArchRuntimeCalls(TypeCheckKind check_kind) {
Nicolas Geoffray03196cf2016-02-01 12:23:22 +00006367 return CanCallRuntime(check_kind) ? SideEffects::CanTriggerGC() : SideEffects::None();
Alexandre Rames78e3ef62015-08-12 13:43:29 +01006368 }
6369
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006370 DECLARE_INSTRUCTION(InstanceOf);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006371
6372 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00006373 static constexpr size_t kFieldTypeCheckKind = kNumberOfExpressionPackedBits;
6374 static constexpr size_t kFieldTypeCheckKindSize =
6375 MinimumBitsToStore(static_cast<size_t>(TypeCheckKind::kLast));
6376 static constexpr size_t kFlagMustDoNullCheck = kFieldTypeCheckKind + kFieldTypeCheckKindSize;
6377 static constexpr size_t kNumberOfInstanceOfPackedBits = kFlagMustDoNullCheck + 1;
6378 static_assert(kNumberOfInstanceOfPackedBits <= kMaxNumberOfPackedBits, "Too many packed fields.");
6379 using TypeCheckKindField = BitField<TypeCheckKind, kFieldTypeCheckKind, kFieldTypeCheckKindSize>;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006380
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006381 DISALLOW_COPY_AND_ASSIGN(HInstanceOf);
6382};
6383
Vladimir Markofcb503c2016-05-18 12:48:17 +01006384class HBoundType FINAL : public HExpression<1> {
Calin Juravleb1498f62015-02-16 13:13:29 +00006385 public:
Chih-Hung Hsieha5931182016-09-01 15:08:13 -07006386 explicit HBoundType(HInstruction* input, uint32_t dex_pc = kNoDexPc)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06006387 : HExpression(Primitive::kPrimNot, SideEffects::None(), dex_pc),
Vladimir Markoa1de9182016-02-25 11:37:38 +00006388 upper_bound_(ReferenceTypeInfo::CreateInvalid()) {
6389 SetPackedFlag<kFlagUpperCanBeNull>(true);
6390 SetPackedFlag<kFlagCanBeNull>(true);
Calin Juravle61d544b2015-02-23 16:46:57 +00006391 DCHECK_EQ(input->GetType(), Primitive::kPrimNot);
Calin Juravleb1498f62015-02-16 13:13:29 +00006392 SetRawInputAt(0, input);
6393 }
6394
David Brazdilf5552582015-12-27 13:36:12 +00006395 // {Get,Set}Upper* should only be used in reference type propagation.
Calin Juravlea5ae3c32015-07-28 14:40:50 +00006396 const ReferenceTypeInfo& GetUpperBound() const { return upper_bound_; }
Vladimir Markoa1de9182016-02-25 11:37:38 +00006397 bool GetUpperCanBeNull() const { return GetPackedFlag<kFlagUpperCanBeNull>(); }
David Brazdilf5552582015-12-27 13:36:12 +00006398 void SetUpperBound(const ReferenceTypeInfo& upper_bound, bool can_be_null);
Calin Juravleb1498f62015-02-16 13:13:29 +00006399
Calin Juravlea5ae3c32015-07-28 14:40:50 +00006400 void SetCanBeNull(bool can_be_null) {
Vladimir Markoa1de9182016-02-25 11:37:38 +00006401 DCHECK(GetUpperCanBeNull() || !can_be_null);
6402 SetPackedFlag<kFlagCanBeNull>(can_be_null);
Calin Juravleb1498f62015-02-16 13:13:29 +00006403 }
6404
Vladimir Markoa1de9182016-02-25 11:37:38 +00006405 bool CanBeNull() const OVERRIDE { return GetPackedFlag<kFlagCanBeNull>(); }
Calin Juravlea5ae3c32015-07-28 14:40:50 +00006406
Calin Juravleb1498f62015-02-16 13:13:29 +00006407 DECLARE_INSTRUCTION(BoundType);
6408
6409 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00006410 // Represents the top constraint that can_be_null_ cannot exceed (i.e. if this
6411 // is false then CanBeNull() cannot be true).
6412 static constexpr size_t kFlagUpperCanBeNull = kNumberOfExpressionPackedBits;
6413 static constexpr size_t kFlagCanBeNull = kFlagUpperCanBeNull + 1;
6414 static constexpr size_t kNumberOfBoundTypePackedBits = kFlagCanBeNull + 1;
6415 static_assert(kNumberOfBoundTypePackedBits <= kMaxNumberOfPackedBits, "Too many packed fields.");
6416
Calin Juravleb1498f62015-02-16 13:13:29 +00006417 // Encodes the most upper class that this instruction can have. In other words
Calin Juravlea5ae3c32015-07-28 14:40:50 +00006418 // it is always the case that GetUpperBound().IsSupertypeOf(GetReferenceType()).
6419 // It is used to bound the type in cases like:
6420 // if (x instanceof ClassX) {
6421 // // uper_bound_ will be ClassX
6422 // }
David Brazdilf5552582015-12-27 13:36:12 +00006423 ReferenceTypeInfo upper_bound_;
Calin Juravleb1498f62015-02-16 13:13:29 +00006424
6425 DISALLOW_COPY_AND_ASSIGN(HBoundType);
6426};
6427
Vladimir Markofcb503c2016-05-18 12:48:17 +01006428class HCheckCast FINAL : public HTemplateInstruction<2> {
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006429 public:
6430 HCheckCast(HInstruction* object,
6431 HLoadClass* constant,
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006432 TypeCheckKind check_kind,
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006433 uint32_t dex_pc)
Vladimir Markoa1de9182016-02-25 11:37:38 +00006434 : HTemplateInstruction(SideEffects::CanTriggerGC(), dex_pc) {
6435 SetPackedField<TypeCheckKindField>(check_kind);
6436 SetPackedFlag<kFlagMustDoNullCheck>(true);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006437 SetRawInputAt(0, object);
6438 SetRawInputAt(1, constant);
6439 }
6440
6441 bool CanBeMoved() const OVERRIDE { return true; }
6442
Vladimir Marko372f10e2016-05-17 16:30:10 +01006443 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006444 return true;
6445 }
6446
6447 bool NeedsEnvironment() const OVERRIDE {
6448 // Instruction may throw a CheckCastError.
6449 return true;
6450 }
6451
6452 bool CanThrow() const OVERRIDE { return true; }
6453
Vladimir Markoa1de9182016-02-25 11:37:38 +00006454 bool MustDoNullCheck() const { return GetPackedFlag<kFlagMustDoNullCheck>(); }
6455 void ClearMustDoNullCheck() { SetPackedFlag<kFlagMustDoNullCheck>(false); }
6456 TypeCheckKind GetTypeCheckKind() const { return GetPackedField<TypeCheckKindField>(); }
6457 bool IsExactCheck() const { return GetTypeCheckKind() == TypeCheckKind::kExactCheck; }
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006458
6459 DECLARE_INSTRUCTION(CheckCast);
6460
6461 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00006462 static constexpr size_t kFieldTypeCheckKind = kNumberOfGenericPackedBits;
6463 static constexpr size_t kFieldTypeCheckKindSize =
6464 MinimumBitsToStore(static_cast<size_t>(TypeCheckKind::kLast));
6465 static constexpr size_t kFlagMustDoNullCheck = kFieldTypeCheckKind + kFieldTypeCheckKindSize;
6466 static constexpr size_t kNumberOfCheckCastPackedBits = kFlagMustDoNullCheck + 1;
6467 static_assert(kNumberOfCheckCastPackedBits <= kMaxNumberOfPackedBits, "Too many packed fields.");
6468 using TypeCheckKindField = BitField<TypeCheckKind, kFieldTypeCheckKind, kFieldTypeCheckKindSize>;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006469
6470 DISALLOW_COPY_AND_ASSIGN(HCheckCast);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006471};
6472
Andreas Gampe26de38b2016-07-27 17:53:11 -07006473/**
6474 * @brief Memory barrier types (see "The JSR-133 Cookbook for Compiler Writers").
6475 * @details We define the combined barrier types that are actually required
6476 * by the Java Memory Model, rather than using exactly the terminology from
6477 * the JSR-133 cookbook. These should, in many cases, be replaced by acquire/release
6478 * primitives. Note that the JSR-133 cookbook generally does not deal with
6479 * store atomicity issues, and the recipes there are not always entirely sufficient.
6480 * The current recipe is as follows:
6481 * -# Use AnyStore ~= (LoadStore | StoreStore) ~= release barrier before volatile store.
6482 * -# Use AnyAny barrier after volatile store. (StoreLoad is as expensive.)
6483 * -# Use LoadAny barrier ~= (LoadLoad | LoadStore) ~= acquire barrier after each volatile load.
6484 * -# Use StoreStore barrier after all stores but before return from any constructor whose
6485 * class has final fields.
6486 * -# Use NTStoreStore to order non-temporal stores with respect to all later
6487 * store-to-memory instructions. Only generated together with non-temporal stores.
6488 */
6489enum MemBarrierKind {
6490 kAnyStore,
6491 kLoadAny,
6492 kStoreStore,
6493 kAnyAny,
6494 kNTStoreStore,
6495 kLastBarrierKind = kNTStoreStore
6496};
6497std::ostream& operator<<(std::ostream& os, const MemBarrierKind& kind);
6498
Vladimir Markofcb503c2016-05-18 12:48:17 +01006499class HMemoryBarrier FINAL : public HTemplateInstruction<0> {
Calin Juravle27df7582015-04-17 19:12:31 +01006500 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06006501 explicit HMemoryBarrier(MemBarrierKind barrier_kind, uint32_t dex_pc = kNoDexPc)
Aart Bik34c3ba92015-07-20 14:08:59 -07006502 : HTemplateInstruction(
Vladimir Markoa1de9182016-02-25 11:37:38 +00006503 SideEffects::AllWritesAndReads(), dex_pc) { // Assume write/read on all fields/arrays.
6504 SetPackedField<BarrierKindField>(barrier_kind);
6505 }
Calin Juravle27df7582015-04-17 19:12:31 +01006506
Vladimir Markoa1de9182016-02-25 11:37:38 +00006507 MemBarrierKind GetBarrierKind() { return GetPackedField<BarrierKindField>(); }
Calin Juravle27df7582015-04-17 19:12:31 +01006508
6509 DECLARE_INSTRUCTION(MemoryBarrier);
6510
6511 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00006512 static constexpr size_t kFieldBarrierKind = HInstruction::kNumberOfGenericPackedBits;
6513 static constexpr size_t kFieldBarrierKindSize =
6514 MinimumBitsToStore(static_cast<size_t>(kLastBarrierKind));
6515 static constexpr size_t kNumberOfMemoryBarrierPackedBits =
6516 kFieldBarrierKind + kFieldBarrierKindSize;
6517 static_assert(kNumberOfMemoryBarrierPackedBits <= kMaxNumberOfPackedBits,
6518 "Too many packed fields.");
6519 using BarrierKindField = BitField<MemBarrierKind, kFieldBarrierKind, kFieldBarrierKindSize>;
Calin Juravle27df7582015-04-17 19:12:31 +01006520
6521 DISALLOW_COPY_AND_ASSIGN(HMemoryBarrier);
6522};
6523
Igor Murashkind01745e2017-04-05 16:40:31 -07006524// A constructor fence orders all prior stores to fields that could be accessed via a final field of
6525// the specified object(s), with respect to any subsequent store that might "publish"
6526// (i.e. make visible) the specified object to another thread.
6527//
6528// JLS 17.5.1 "Semantics of final fields" states that a freeze action happens
6529// for all final fields (that were set) at the end of the invoked constructor.
6530//
6531// The constructor fence models the freeze actions for the final fields of an object
6532// being constructed (semantically at the end of the constructor). Constructor fences
6533// have a per-object affinity; two separate objects being constructed get two separate
6534// constructor fences.
6535//
6536// (Note: that if calling a super-constructor or forwarding to another constructor,
6537// the freezes would happen at the end of *that* constructor being invoked).
6538//
6539// The memory model guarantees that when the object being constructed is "published" after
6540// constructor completion (i.e. escapes the current thread via a store), then any final field
6541// writes must be observable on other threads (once they observe that publication).
6542//
6543// Further, anything written before the freeze, and read by dereferencing through the final field,
6544// must also be visible (so final object field could itself have an object with non-final fields;
6545// yet the freeze must also extend to them).
6546//
6547// Constructor example:
6548//
6549// class HasFinal {
6550// final int field; Optimizing IR for <init>()V:
6551// HasFinal() {
6552// field = 123; HInstanceFieldSet(this, HasFinal.field, 123)
6553// // freeze(this.field); HConstructorFence(this)
6554// } HReturn
6555// }
6556//
6557// HConstructorFence can serve double duty as a fence for new-instance/new-array allocations of
6558// already-initialized classes; in that case the allocation must act as a "default-initializer"
6559// of the object which effectively writes the class pointer "final field".
6560//
6561// For example, we can model default-initialiation as roughly the equivalent of the following:
6562//
6563// class Object {
6564// private final Class header;
6565// }
6566//
6567// Java code: Optimizing IR:
6568//
6569// T new_instance<T>() {
6570// Object obj = allocate_memory(T.class.size); obj = HInvoke(art_quick_alloc_object, T)
6571// obj.header = T.class; // header write is done by above call.
6572// // freeze(obj.header) HConstructorFence(obj)
6573// return (T)obj;
6574// }
6575//
6576// See also:
6577// * CompilerDriver::RequiresConstructorBarrier
6578// * QuasiAtomic::ThreadFenceForConstructor
6579//
6580class HConstructorFence FINAL : public HVariableInputSizeInstruction {
6581 // A fence has variable inputs because the inputs can be removed
6582 // after prepare_for_register_allocation phase.
6583 // (TODO: In the future a fence could freeze multiple objects
6584 // after merging two fences together.)
6585 public:
6586 // `fence_object` is the reference that needs to be protected for correct publication.
6587 //
6588 // It makes sense in the following situations:
6589 // * <init> constructors, it's the "this" parameter (i.e. HParameterValue, s.t. IsThis() == true).
6590 // * new-instance-like instructions, it's the return value (i.e. HNewInstance).
6591 //
6592 // After construction the `fence_object` becomes the 0th input.
6593 // This is not an input in a real sense, but just a convenient place to stash the information
6594 // about the associated object.
6595 HConstructorFence(HInstruction* fence_object,
6596 uint32_t dex_pc,
6597 ArenaAllocator* arena)
6598 // We strongly suspect there is not a more accurate way to describe the fine-grained reordering
6599 // constraints described in the class header. We claim that these SideEffects constraints
6600 // enforce a superset of the real constraints.
6601 //
6602 // The ordering described above is conservatively modeled with SideEffects as follows:
6603 //
6604 // * To prevent reordering of the publication stores:
6605 // ----> "Reads of objects" is the initial SideEffect.
6606 // * For every primitive final field store in the constructor:
6607 // ----> Union that field's type as a read (e.g. "Read of T") into the SideEffect.
6608 // * If there are any stores to reference final fields in the constructor:
6609 // ----> Use a more conservative "AllReads" SideEffect because any stores to any references
6610 // that are reachable from `fence_object` also need to be prevented for reordering
6611 // (and we do not want to do alias analysis to figure out what those stores are).
6612 //
6613 // In the implementation, this initially starts out as an "all reads" side effect; this is an
6614 // even more conservative approach than the one described above, and prevents all of the
6615 // above reordering without analyzing any of the instructions in the constructor.
6616 //
6617 // If in a later phase we discover that there are no writes to reference final fields,
6618 // we can refine the side effect to a smaller set of type reads (see above constraints).
6619 : HVariableInputSizeInstruction(SideEffects::AllReads(),
6620 dex_pc,
6621 arena,
6622 /* number_of_inputs */ 1,
6623 kArenaAllocConstructorFenceInputs) {
6624 DCHECK(fence_object != nullptr);
6625 SetRawInputAt(0, fence_object);
6626 }
6627
6628 // The object associated with this constructor fence.
6629 //
6630 // (Note: This will be null after the prepare_for_register_allocation phase,
6631 // as all constructor fence inputs are removed there).
6632 HInstruction* GetFenceObject() const {
6633 return InputAt(0);
6634 }
6635
6636 // Find all the HConstructorFence uses (`fence_use`) for `this` and:
6637 // - Delete `fence_use` from `this`'s use list.
6638 // - Delete `this` from `fence_use`'s inputs list.
6639 // - If the `fence_use` is dead, remove it from the graph.
6640 //
6641 // A fence is considered dead once it no longer has any uses
6642 // and all of the inputs are dead.
6643 //
6644 // This must *not* be called during/after prepare_for_register_allocation,
6645 // because that removes all the inputs to the fences but the fence is actually
6646 // still considered live.
6647 static void RemoveConstructorFences(HInstruction* instruction);
6648
Igor Murashkin79d8fa72017-04-18 09:37:23 -07006649 // Check if this constructor fence is protecting
6650 // an HNewInstance or HNewArray that is also the immediate
6651 // predecessor of `this`.
6652 //
6653 // Returns the associated HNewArray or HNewInstance,
6654 // or null otherwise.
6655 HInstruction* GetAssociatedAllocation();
6656
Igor Murashkind01745e2017-04-05 16:40:31 -07006657 DECLARE_INSTRUCTION(ConstructorFence);
6658
6659 private:
6660 DISALLOW_COPY_AND_ASSIGN(HConstructorFence);
6661};
6662
Vladimir Markofcb503c2016-05-18 12:48:17 +01006663class HMonitorOperation FINAL : public HTemplateInstruction<1> {
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006664 public:
Vladimir Markoa1de9182016-02-25 11:37:38 +00006665 enum class OperationKind {
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006666 kEnter,
6667 kExit,
Vladimir Markoa1de9182016-02-25 11:37:38 +00006668 kLast = kExit
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006669 };
6670
6671 HMonitorOperation(HInstruction* object, OperationKind kind, uint32_t dex_pc)
Alexandre Rames78e3ef62015-08-12 13:43:29 +01006672 : HTemplateInstruction(
Vladimir Markoa1de9182016-02-25 11:37:38 +00006673 SideEffects::AllExceptGCDependency(), // Assume write/read on all fields/arrays.
6674 dex_pc) {
6675 SetPackedField<OperationKindField>(kind);
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006676 SetRawInputAt(0, object);
6677 }
6678
Nicolas Geoffray03196cf2016-02-01 12:23:22 +00006679 // Instruction may go into runtime, so we need an environment.
6680 bool NeedsEnvironment() const OVERRIDE { return true; }
David Brazdilbff75032015-07-08 17:26:51 +00006681
6682 bool CanThrow() const OVERRIDE {
6683 // Verifier guarantees that monitor-exit cannot throw.
6684 // This is important because it allows the HGraphBuilder to remove
6685 // a dead throw-catch loop generated for `synchronized` blocks/methods.
6686 return IsEnter();
6687 }
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006688
Vladimir Markoa1de9182016-02-25 11:37:38 +00006689 OperationKind GetOperationKind() const { return GetPackedField<OperationKindField>(); }
6690 bool IsEnter() const { return GetOperationKind() == OperationKind::kEnter; }
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006691
6692 DECLARE_INSTRUCTION(MonitorOperation);
6693
Calin Juravle52c48962014-12-16 17:02:57 +00006694 private:
Vladimir Markoa1de9182016-02-25 11:37:38 +00006695 static constexpr size_t kFieldOperationKind = HInstruction::kNumberOfGenericPackedBits;
6696 static constexpr size_t kFieldOperationKindSize =
6697 MinimumBitsToStore(static_cast<size_t>(OperationKind::kLast));
6698 static constexpr size_t kNumberOfMonitorOperationPackedBits =
6699 kFieldOperationKind + kFieldOperationKindSize;
6700 static_assert(kNumberOfMonitorOperationPackedBits <= HInstruction::kMaxNumberOfPackedBits,
6701 "Too many packed fields.");
6702 using OperationKindField = BitField<OperationKind, kFieldOperationKind, kFieldOperationKindSize>;
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006703
6704 private:
6705 DISALLOW_COPY_AND_ASSIGN(HMonitorOperation);
6706};
6707
Vladimir Markofcb503c2016-05-18 12:48:17 +01006708class HSelect FINAL : public HExpression<3> {
David Brazdil74eb1b22015-12-14 11:44:01 +00006709 public:
6710 HSelect(HInstruction* condition,
6711 HInstruction* true_value,
6712 HInstruction* false_value,
6713 uint32_t dex_pc)
6714 : HExpression(HPhi::ToPhiType(true_value->GetType()), SideEffects::None(), dex_pc) {
6715 DCHECK_EQ(HPhi::ToPhiType(true_value->GetType()), HPhi::ToPhiType(false_value->GetType()));
6716
6717 // First input must be `true_value` or `false_value` to allow codegens to
6718 // use the SameAsFirstInput allocation policy. We make it `false_value`, so
6719 // that architectures which implement HSelect as a conditional move also
6720 // will not need to invert the condition.
6721 SetRawInputAt(0, false_value);
6722 SetRawInputAt(1, true_value);
6723 SetRawInputAt(2, condition);
6724 }
6725
6726 HInstruction* GetFalseValue() const { return InputAt(0); }
6727 HInstruction* GetTrueValue() const { return InputAt(1); }
6728 HInstruction* GetCondition() const { return InputAt(2); }
6729
6730 bool CanBeMoved() const OVERRIDE { return true; }
Vladimir Marko372f10e2016-05-17 16:30:10 +01006731 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE {
6732 return true;
6733 }
David Brazdil74eb1b22015-12-14 11:44:01 +00006734
6735 bool CanBeNull() const OVERRIDE {
6736 return GetTrueValue()->CanBeNull() || GetFalseValue()->CanBeNull();
6737 }
6738
6739 DECLARE_INSTRUCTION(Select);
6740
6741 private:
6742 DISALLOW_COPY_AND_ASSIGN(HSelect);
6743};
6744
Vladimir Markof9f64412015-09-02 14:05:49 +01006745class MoveOperands : public ArenaObject<kArenaAllocMoveOperands> {
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006746 public:
Nicolas Geoffray90218252015-04-15 11:56:51 +01006747 MoveOperands(Location source,
6748 Location destination,
6749 Primitive::Type type,
6750 HInstruction* instruction)
6751 : source_(source), destination_(destination), type_(type), instruction_(instruction) {}
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006752
6753 Location GetSource() const { return source_; }
6754 Location GetDestination() const { return destination_; }
6755
6756 void SetSource(Location value) { source_ = value; }
6757 void SetDestination(Location value) { destination_ = value; }
6758
6759 // The parallel move resolver marks moves as "in-progress" by clearing the
6760 // destination (but not the source).
6761 Location MarkPending() {
6762 DCHECK(!IsPending());
6763 Location dest = destination_;
6764 destination_ = Location::NoLocation();
6765 return dest;
6766 }
6767
6768 void ClearPending(Location dest) {
6769 DCHECK(IsPending());
6770 destination_ = dest;
6771 }
6772
6773 bool IsPending() const {
Roland Levillainc9285912015-12-18 10:38:42 +00006774 DCHECK(source_.IsValid() || destination_.IsInvalid());
6775 return destination_.IsInvalid() && source_.IsValid();
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006776 }
6777
6778 // True if this blocks a move from the given location.
6779 bool Blocks(Location loc) const {
Zheng Xuad4450e2015-04-17 18:48:56 +08006780 return !IsEliminated() && source_.OverlapsWith(loc);
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006781 }
6782
6783 // A move is redundant if it's been eliminated, if its source and
6784 // destination are the same, or if its destination is unneeded.
6785 bool IsRedundant() const {
6786 return IsEliminated() || destination_.IsInvalid() || source_.Equals(destination_);
6787 }
6788
6789 // We clear both operands to indicate move that's been eliminated.
6790 void Eliminate() {
6791 source_ = destination_ = Location::NoLocation();
6792 }
6793
6794 bool IsEliminated() const {
6795 DCHECK(!source_.IsInvalid() || destination_.IsInvalid());
6796 return source_.IsInvalid();
6797 }
6798
Alexey Frunze4dda3372015-06-01 18:31:49 -07006799 Primitive::Type GetType() const { return type_; }
6800
Nicolas Geoffray90218252015-04-15 11:56:51 +01006801 bool Is64BitMove() const {
6802 return Primitive::Is64BitType(type_);
6803 }
6804
Nicolas Geoffray740475d2014-09-29 10:33:25 +01006805 HInstruction* GetInstruction() const { return instruction_; }
6806
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006807 private:
6808 Location source_;
6809 Location destination_;
Nicolas Geoffray90218252015-04-15 11:56:51 +01006810 // The type this move is for.
6811 Primitive::Type type_;
Nicolas Geoffray740475d2014-09-29 10:33:25 +01006812 // The instruction this move is assocatied with. Null when this move is
6813 // for moving an input in the expected locations of user (including a phi user).
6814 // This is only used in debug mode, to ensure we do not connect interval siblings
6815 // in the same parallel move.
6816 HInstruction* instruction_;
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006817};
6818
Roland Levillainc9285912015-12-18 10:38:42 +00006819std::ostream& operator<<(std::ostream& os, const MoveOperands& rhs);
6820
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006821static constexpr size_t kDefaultNumberOfMoves = 4;
6822
Vladimir Markofcb503c2016-05-18 12:48:17 +01006823class HParallelMove FINAL : public HTemplateInstruction<0> {
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006824 public:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06006825 explicit HParallelMove(ArenaAllocator* arena, uint32_t dex_pc = kNoDexPc)
Vladimir Marko225b6462015-09-28 12:17:40 +01006826 : HTemplateInstruction(SideEffects::None(), dex_pc),
6827 moves_(arena->Adapter(kArenaAllocMoveOperands)) {
6828 moves_.reserve(kDefaultNumberOfMoves);
6829 }
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006830
Nicolas Geoffray90218252015-04-15 11:56:51 +01006831 void AddMove(Location source,
6832 Location destination,
6833 Primitive::Type type,
6834 HInstruction* instruction) {
Nicolas Geoffray42d1f5f2015-01-16 09:14:18 +00006835 DCHECK(source.IsValid());
6836 DCHECK(destination.IsValid());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00006837 if (kIsDebugBuild) {
6838 if (instruction != nullptr) {
Vladimir Marko225b6462015-09-28 12:17:40 +01006839 for (const MoveOperands& move : moves_) {
6840 if (move.GetInstruction() == instruction) {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00006841 // Special case the situation where the move is for the spill slot
6842 // of the instruction.
6843 if ((GetPrevious() == instruction)
6844 || ((GetPrevious() == nullptr)
6845 && instruction->IsPhi()
6846 && instruction->GetBlock() == GetBlock())) {
Vladimir Marko225b6462015-09-28 12:17:40 +01006847 DCHECK_NE(destination.GetKind(), move.GetDestination().GetKind())
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00006848 << "Doing parallel moves for the same instruction.";
6849 } else {
6850 DCHECK(false) << "Doing parallel moves for the same instruction.";
6851 }
6852 }
Nicolas Geoffraydd8f8872015-01-15 15:37:37 +00006853 }
6854 }
Vladimir Marko225b6462015-09-28 12:17:40 +01006855 for (const MoveOperands& move : moves_) {
6856 DCHECK(!destination.OverlapsWith(move.GetDestination()))
Guillaume "Vermeille" Sanchez8909baf2015-04-23 21:35:11 +01006857 << "Overlapped destination for two moves in a parallel move: "
Vladimir Marko225b6462015-09-28 12:17:40 +01006858 << move.GetSource() << " ==> " << move.GetDestination() << " and "
Guillaume "Vermeille" Sanchez8909baf2015-04-23 21:35:11 +01006859 << source << " ==> " << destination;
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00006860 }
Nicolas Geoffray740475d2014-09-29 10:33:25 +01006861 }
Vladimir Marko225b6462015-09-28 12:17:40 +01006862 moves_.emplace_back(source, destination, type, instruction);
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006863 }
6864
Vladimir Marko225b6462015-09-28 12:17:40 +01006865 MoveOperands* MoveOperandsAt(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01006866 return &moves_[index];
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006867 }
6868
Vladimir Marko225b6462015-09-28 12:17:40 +01006869 size_t NumMoves() const { return moves_.size(); }
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006870
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01006871 DECLARE_INSTRUCTION(ParallelMove);
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006872
6873 private:
Vladimir Marko225b6462015-09-28 12:17:40 +01006874 ArenaVector<MoveOperands> moves_;
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006875
6876 DISALLOW_COPY_AND_ASSIGN(HParallelMove);
6877};
6878
Mark Mendell0616ae02015-04-17 12:49:27 -04006879} // namespace art
6880
Aart Bikf8f5a162017-02-06 15:35:29 -08006881#include "nodes_vector.h"
6882
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03006883#if defined(ART_ENABLE_CODEGEN_arm) || defined(ART_ENABLE_CODEGEN_arm64)
6884#include "nodes_shared.h"
6885#endif
Vladimir Markob4536b72015-11-24 13:45:23 +00006886#ifdef ART_ENABLE_CODEGEN_arm
6887#include "nodes_arm.h"
6888#endif
Alexey Frunzee3fb2452016-05-10 16:08:05 -07006889#ifdef ART_ENABLE_CODEGEN_mips
6890#include "nodes_mips.h"
6891#endif
Mark Mendell0616ae02015-04-17 12:49:27 -04006892#ifdef ART_ENABLE_CODEGEN_x86
6893#include "nodes_x86.h"
6894#endif
6895
6896namespace art {
6897
Nicolas Geoffray818f2102014-02-18 16:43:35 +00006898class HGraphVisitor : public ValueObject {
6899 public:
Dave Allison20dfc792014-06-16 20:44:29 -07006900 explicit HGraphVisitor(HGraph* graph) : graph_(graph) {}
6901 virtual ~HGraphVisitor() {}
Nicolas Geoffray818f2102014-02-18 16:43:35 +00006902
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01006903 virtual void VisitInstruction(HInstruction* instruction ATTRIBUTE_UNUSED) {}
Nicolas Geoffray818f2102014-02-18 16:43:35 +00006904 virtual void VisitBasicBlock(HBasicBlock* block);
6905
Roland Levillain633021e2014-10-01 14:12:25 +01006906 // Visit the graph following basic block insertion order.
Nicolas Geoffray818f2102014-02-18 16:43:35 +00006907 void VisitInsertionOrder();
6908
Roland Levillain633021e2014-10-01 14:12:25 +01006909 // Visit the graph following dominator tree reverse post-order.
6910 void VisitReversePostOrder();
6911
Nicolas Geoffray787c3072014-03-17 10:20:19 +00006912 HGraph* GetGraph() const { return graph_; }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00006913
Nicolas Geoffray818f2102014-02-18 16:43:35 +00006914 // Visit functions for instruction classes.
Nicolas Geoffray360231a2014-10-08 21:07:48 +01006915#define DECLARE_VISIT_INSTRUCTION(name, super) \
Nicolas Geoffray818f2102014-02-18 16:43:35 +00006916 virtual void Visit##name(H##name* instr) { VisitInstruction(instr); }
6917
6918 FOR_EACH_INSTRUCTION(DECLARE_VISIT_INSTRUCTION)
6919
6920#undef DECLARE_VISIT_INSTRUCTION
6921
6922 private:
Ian Rogerscf7f1912014-10-22 22:06:39 -07006923 HGraph* const graph_;
Nicolas Geoffray818f2102014-02-18 16:43:35 +00006924
6925 DISALLOW_COPY_AND_ASSIGN(HGraphVisitor);
6926};
6927
Nicolas Geoffray360231a2014-10-08 21:07:48 +01006928class HGraphDelegateVisitor : public HGraphVisitor {
6929 public:
6930 explicit HGraphDelegateVisitor(HGraph* graph) : HGraphVisitor(graph) {}
6931 virtual ~HGraphDelegateVisitor() {}
6932
6933 // Visit functions that delegate to to super class.
6934#define DECLARE_VISIT_INSTRUCTION(name, super) \
Alexandre Rames2ed20af2015-03-06 13:55:35 +00006935 void Visit##name(H##name* instr) OVERRIDE { Visit##super(instr); }
Nicolas Geoffray360231a2014-10-08 21:07:48 +01006936
6937 FOR_EACH_INSTRUCTION(DECLARE_VISIT_INSTRUCTION)
6938
6939#undef DECLARE_VISIT_INSTRUCTION
6940
6941 private:
6942 DISALLOW_COPY_AND_ASSIGN(HGraphDelegateVisitor);
6943};
6944
Nicolas Geoffray82091da2015-01-26 10:02:45 +00006945// Iterator over the blocks that art part of the loop. Includes blocks part
6946// of an inner loop. The order in which the blocks are iterated is on their
6947// block id.
6948class HBlocksInLoopIterator : public ValueObject {
6949 public:
6950 explicit HBlocksInLoopIterator(const HLoopInformation& info)
6951 : blocks_in_loop_(info.GetBlocks()),
6952 blocks_(info.GetHeader()->GetGraph()->GetBlocks()),
6953 index_(0) {
6954 if (!blocks_in_loop_.IsBitSet(index_)) {
6955 Advance();
6956 }
6957 }
6958
Vladimir Markofa6b93c2015-09-15 10:15:55 +01006959 bool Done() const { return index_ == blocks_.size(); }
6960 HBasicBlock* Current() const { return blocks_[index_]; }
Nicolas Geoffray82091da2015-01-26 10:02:45 +00006961 void Advance() {
6962 ++index_;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01006963 for (size_t e = blocks_.size(); index_ < e; ++index_) {
Nicolas Geoffray82091da2015-01-26 10:02:45 +00006964 if (blocks_in_loop_.IsBitSet(index_)) {
6965 break;
6966 }
6967 }
6968 }
6969
6970 private:
6971 const BitVector& blocks_in_loop_;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01006972 const ArenaVector<HBasicBlock*>& blocks_;
Nicolas Geoffray82091da2015-01-26 10:02:45 +00006973 size_t index_;
6974
6975 DISALLOW_COPY_AND_ASSIGN(HBlocksInLoopIterator);
6976};
6977
Mingyao Yang3584bce2015-05-19 16:01:59 -07006978// Iterator over the blocks that art part of the loop. Includes blocks part
6979// of an inner loop. The order in which the blocks are iterated is reverse
6980// post order.
6981class HBlocksInLoopReversePostOrderIterator : public ValueObject {
6982 public:
6983 explicit HBlocksInLoopReversePostOrderIterator(const HLoopInformation& info)
6984 : blocks_in_loop_(info.GetBlocks()),
6985 blocks_(info.GetHeader()->GetGraph()->GetReversePostOrder()),
6986 index_(0) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +01006987 if (!blocks_in_loop_.IsBitSet(blocks_[index_]->GetBlockId())) {
Mingyao Yang3584bce2015-05-19 16:01:59 -07006988 Advance();
6989 }
6990 }
6991
Vladimir Markofa6b93c2015-09-15 10:15:55 +01006992 bool Done() const { return index_ == blocks_.size(); }
6993 HBasicBlock* Current() const { return blocks_[index_]; }
Mingyao Yang3584bce2015-05-19 16:01:59 -07006994 void Advance() {
6995 ++index_;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01006996 for (size_t e = blocks_.size(); index_ < e; ++index_) {
6997 if (blocks_in_loop_.IsBitSet(blocks_[index_]->GetBlockId())) {
Mingyao Yang3584bce2015-05-19 16:01:59 -07006998 break;
6999 }
7000 }
7001 }
7002
7003 private:
7004 const BitVector& blocks_in_loop_;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01007005 const ArenaVector<HBasicBlock*>& blocks_;
Mingyao Yang3584bce2015-05-19 16:01:59 -07007006 size_t index_;
7007
7008 DISALLOW_COPY_AND_ASSIGN(HBlocksInLoopReversePostOrderIterator);
7009};
7010
Aart Bikf3e61ee2017-04-12 17:09:20 -07007011// Returns int64_t value of a properly typed constant.
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00007012inline int64_t Int64FromConstant(HConstant* constant) {
David Brazdilc0b601b2016-02-08 14:20:45 +00007013 if (constant->IsIntConstant()) {
7014 return constant->AsIntConstant()->GetValue();
7015 } else if (constant->IsLongConstant()) {
7016 return constant->AsLongConstant()->GetValue();
7017 } else {
Roland Levillain31dd3d62016-02-16 12:21:02 +00007018 DCHECK(constant->IsNullConstant()) << constant->DebugName();
David Brazdilc0b601b2016-02-08 14:20:45 +00007019 return 0;
7020 }
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00007021}
7022
Aart Bikf3e61ee2017-04-12 17:09:20 -07007023// Returns true iff instruction is an integral constant (and sets value on success).
7024inline bool IsInt64AndGet(HInstruction* instruction, /*out*/ int64_t* value) {
7025 if (instruction->IsIntConstant()) {
7026 *value = instruction->AsIntConstant()->GetValue();
7027 return true;
7028 } else if (instruction->IsLongConstant()) {
7029 *value = instruction->AsLongConstant()->GetValue();
7030 return true;
7031 } else if (instruction->IsNullConstant()) {
7032 *value = 0;
7033 return true;
7034 }
7035 return false;
7036}
7037
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00007038#define INSTRUCTION_TYPE_CHECK(type, super) \
7039 inline bool HInstruction::Is##type() const { return GetKind() == k##type; } \
7040 inline const H##type* HInstruction::As##type() const { \
7041 return Is##type() ? down_cast<const H##type*>(this) : nullptr; \
7042 } \
7043 inline H##type* HInstruction::As##type() { \
7044 return Is##type() ? static_cast<H##type*>(this) : nullptr; \
7045 }
7046
7047 FOR_EACH_CONCRETE_INSTRUCTION(INSTRUCTION_TYPE_CHECK)
7048#undef INSTRUCTION_TYPE_CHECK
7049
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00007050// Create space in `blocks` for adding `number_of_new_blocks` entries
7051// starting at location `at`. Blocks after `at` are moved accordingly.
7052inline void MakeRoomFor(ArenaVector<HBasicBlock*>* blocks,
7053 size_t number_of_new_blocks,
7054 size_t after) {
7055 DCHECK_LT(after, blocks->size());
7056 size_t old_size = blocks->size();
7057 size_t new_size = old_size + number_of_new_blocks;
7058 blocks->resize(new_size);
7059 std::copy_backward(blocks->begin() + after + 1u, blocks->begin() + old_size, blocks->end());
7060}
7061
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00007062/*
7063 * Hunt "under the hood" of array lengths (leading to array references),
7064 * null checks (also leading to array references), and new arrays
7065 * (leading to the actual length). This makes it more likely related
7066 * instructions become actually comparable.
7067 */
7068inline HInstruction* HuntForDeclaration(HInstruction* instruction) {
7069 while (instruction->IsArrayLength() ||
7070 instruction->IsNullCheck() ||
7071 instruction->IsNewArray()) {
7072 instruction = instruction->IsNewArray()
7073 ? instruction->AsNewArray()->GetLength()
7074 : instruction->InputAt(0);
7075 }
7076 return instruction;
7077}
7078
Nicolas Geoffray818f2102014-02-18 16:43:35 +00007079} // namespace art
7080
7081#endif // ART_COMPILER_OPTIMIZING_NODES_H_