blob: 2f8bf554e1a5c740c0c635ab98fa134d1663566d [file] [log] [blame]
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001/*
2 * Copyright (C) 2012 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_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_
18#define ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_
19
20#include "interpreter.h"
21
22#include <math.h>
23
Ian Rogerscf7f1912014-10-22 22:06:39 -070024#include <iostream>
Ian Rogersc7dd2952014-10-21 23:31:19 -070025#include <sstream>
26
Sebastien Hertz8ece0502013-08-07 11:26:41 +020027#include "base/logging.h"
Andreas Gampe794ad762015-02-23 08:12:24 -080028#include "base/macros.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020029#include "class_linker-inl.h"
30#include "common_throws.h"
31#include "dex_file-inl.h"
32#include "dex_instruction-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070033#include "entrypoints/entrypoint_utils-inl.h"
Mathieu Chartier0cd81352014-05-22 16:48:55 -070034#include "handle_scope-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020035#include "mirror/art_field-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020036#include "mirror/art_method-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020037#include "mirror/class-inl.h"
38#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
Douglas Leung4965c022014-06-11 11:41:11 -070040#include "mirror/string-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020041#include "thread.h"
42#include "well_known_classes.h"
43
44using ::art::mirror::ArtField;
45using ::art::mirror::ArtMethod;
46using ::art::mirror::Array;
47using ::art::mirror::BooleanArray;
48using ::art::mirror::ByteArray;
49using ::art::mirror::CharArray;
50using ::art::mirror::Class;
51using ::art::mirror::ClassLoader;
52using ::art::mirror::IntArray;
53using ::art::mirror::LongArray;
54using ::art::mirror::Object;
55using ::art::mirror::ObjectArray;
56using ::art::mirror::ShortArray;
57using ::art::mirror::String;
58using ::art::mirror::Throwable;
59
60namespace art {
61namespace interpreter {
62
63// External references to both interpreter implementations.
64
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010065template<bool do_access_check, bool transaction_active>
Ian Rogerse94652f2014-12-02 11:13:19 -080066extern JValue ExecuteSwitchImpl(Thread* self, const DexFile::CodeItem* code_item,
Sebastien Hertzc6714852013-09-30 16:42:32 +020067 ShadowFrame& shadow_frame, JValue result_register);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020068
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010069template<bool do_access_check, bool transaction_active>
Ian Rogerse94652f2014-12-02 11:13:19 -080070extern JValue ExecuteGotoImpl(Thread* self, const DexFile::CodeItem* code_item,
Sebastien Hertzc6714852013-09-30 16:42:32 +020071 ShadowFrame& shadow_frame, JValue result_register);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020072
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000073void ThrowNullPointerExceptionFromInterpreter()
Ian Rogers54874942014-06-10 16:31:03 -070074 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertzda843e12014-05-28 19:28:31 +020075
Sebastien Hertz8ece0502013-08-07 11:26:41 +020076static inline void DoMonitorEnter(Thread* self, Object* ref) NO_THREAD_SAFETY_ANALYSIS {
77 ref->MonitorEnter(self);
78}
79
80static inline void DoMonitorExit(Thread* self, Object* ref) NO_THREAD_SAFETY_ANALYSIS {
81 ref->MonitorExit(self);
82}
83
Sebastien Hertz45b15972015-04-03 16:07:05 +020084void AbortTransactionF(Thread* self, const char* fmt, ...)
85 __attribute__((__format__(__printf__, 2, 3)))
86 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
87
88void AbortTransactionV(Thread* self, const char* fmt, va_list args)
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -070089 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
90
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010091void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count)
92 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
93
Sebastien Hertzc6714852013-09-30 16:42:32 +020094// Invokes the given method. This is part of the invocation support and is used by DoInvoke and
95// DoInvokeVirtualQuick functions.
96// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +020097template<bool is_range, bool do_assignability_check>
Ian Rogerse94652f2014-12-02 11:13:19 -080098bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertzc6714852013-09-30 16:42:32 +020099 const Instruction* inst, uint16_t inst_data, JValue* result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200100
Sebastien Hertzc6714852013-09-30 16:42:32 +0200101// Handles invoke-XXX/range instructions.
102// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200103template<InvokeType type, bool is_range, bool do_access_check>
104static inline bool DoInvoke(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
105 uint16_t inst_data, JValue* result) {
106 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
107 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700108 Object* receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700109 mirror::ArtMethod* sf_method = shadow_frame.GetMethod();
Ian Rogerse94652f2014-12-02 11:13:19 -0800110 ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700111 method_idx, &receiver, &sf_method, self);
112 // The shadow frame should already be pushed, so we don't need to update it.
Ian Rogerse94652f2014-12-02 11:13:19 -0800113 if (UNLIKELY(called_method == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200114 CHECK(self->IsExceptionPending());
115 result->SetJ(0);
116 return false;
Ian Rogerse94652f2014-12-02 11:13:19 -0800117 } else if (UNLIKELY(called_method->IsAbstract())) {
118 ThrowAbstractMethodError(called_method);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200119 result->SetJ(0);
120 return false;
121 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800122 return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data,
123 result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200124 }
125}
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200126
Sebastien Hertzc6714852013-09-30 16:42:32 +0200127// Handles invoke-virtual-quick and invoke-virtual-quick-range instructions.
128// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200129template<bool is_range>
130static inline bool DoInvokeVirtualQuick(Thread* self, ShadowFrame& shadow_frame,
131 const Instruction* inst, uint16_t inst_data,
132 JValue* result) {
133 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
134 Object* const receiver = shadow_frame.GetVRegReference(vregC);
Sebastien Hertzd4beb6b2013-10-02 17:07:20 +0200135 if (UNLIKELY(receiver == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200136 // We lost the reference to the method index so we cannot get a more
137 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000138 ThrowNullPointerExceptionFromDexPC();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200139 return false;
140 }
141 const uint32_t vtable_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700142 CHECK(receiver->GetClass()->ShouldHaveEmbeddedImtAndVTable());
Ian Rogerse94652f2014-12-02 11:13:19 -0800143 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry(vtable_idx);
144 if (UNLIKELY(called_method == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200145 CHECK(self->IsExceptionPending());
146 result->SetJ(0);
147 return false;
Ian Rogerse94652f2014-12-02 11:13:19 -0800148 } else if (UNLIKELY(called_method->IsAbstract())) {
149 ThrowAbstractMethodError(called_method);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200150 result->SetJ(0);
151 return false;
152 } else {
153 // No need to check since we've been quickened.
Ian Rogerse94652f2014-12-02 11:13:19 -0800154 return DoCall<is_range, false>(called_method, self, shadow_frame, inst, inst_data, result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200155 }
156}
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200157
Sebastien Hertzc6714852013-09-30 16:42:32 +0200158// Handles iget-XXX and sget-XXX instructions.
159// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200160template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check>
Ian Rogers54874942014-06-10 16:31:03 -0700161bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
162 uint16_t inst_data) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200163
Sebastien Hertzc6714852013-09-30 16:42:32 +0200164// Handles iget-quick, iget-wide-quick and iget-object-quick instructions.
165// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200166template<Primitive::Type field_type>
Ian Rogers54874942014-06-10 16:31:03 -0700167bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
168 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz479fc1e2014-04-04 17:51:34 +0200169
Sebastien Hertzc6714852013-09-30 16:42:32 +0200170// Handles iput-XXX and sput-XXX instructions.
171// Returns true on success, otherwise throws an exception and returns false.
Ian Rogers54874942014-06-10 16:31:03 -0700172template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
173 bool transaction_active>
174bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst,
175 uint16_t inst_data) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200176
Sebastien Hertzc6714852013-09-30 16:42:32 +0200177// Handles iput-quick, iput-wide-quick and iput-object-quick instructions.
178// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100179template<Primitive::Type field_type, bool transaction_active>
Ian Rogers54874942014-06-10 16:31:03 -0700180bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
181 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
182
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200183
Sebastien Hertzc6714852013-09-30 16:42:32 +0200184// Handles string resolution for const-string and const-string-jumbo instructions. Also ensures the
185// java.lang.String class is initialized.
Ian Rogers6786a582014-10-28 12:49:06 -0700186static inline String* ResolveString(Thread* self, ShadowFrame& shadow_frame, uint32_t string_idx)
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200187 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800188 CHECK(!kMovingMethods);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200189 Class* java_lang_string_class = String::GetJavaLangString();
190 if (UNLIKELY(!java_lang_string_class->IsInitialized())) {
191 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700192 StackHandleScope<1> hs(self);
193 Handle<mirror::Class> h_class(hs.NewHandle(java_lang_string_class));
Ian Rogers7b078e82014-09-10 14:44:24 -0700194 if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200195 DCHECK(self->IsExceptionPending());
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800196 return nullptr;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200197 }
198 }
Ian Rogers6786a582014-10-28 12:49:06 -0700199 mirror::ArtMethod* method = shadow_frame.GetMethod();
Mathieu Chartiereace4582014-11-24 18:29:54 -0800200 mirror::Class* declaring_class = method->GetDeclaringClass();
201 mirror::String* s = declaring_class->GetDexCacheStrings()->Get(string_idx);
Ian Rogers6786a582014-10-28 12:49:06 -0700202 if (UNLIKELY(s == nullptr)) {
203 StackHandleScope<1> hs(self);
Mathieu Chartiereace4582014-11-24 18:29:54 -0800204 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
Ian Rogers6786a582014-10-28 12:49:06 -0700205 s = Runtime::Current()->GetClassLinker()->ResolveString(*method->GetDexFile(), string_idx,
206 dex_cache);
207 }
208 return s;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200209}
210
Sebastien Hertzc6714852013-09-30 16:42:32 +0200211// Handles div-int, div-int/2addr, div-int/li16 and div-int/lit8 instructions.
212// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200213static inline bool DoIntDivide(ShadowFrame& shadow_frame, size_t result_reg,
214 int32_t dividend, int32_t divisor)
215 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersf72a11d2014-10-30 15:41:08 -0700216 constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200217 if (UNLIKELY(divisor == 0)) {
218 ThrowArithmeticExceptionDivideByZero();
219 return false;
220 }
221 if (UNLIKELY(dividend == kMinInt && divisor == -1)) {
222 shadow_frame.SetVReg(result_reg, kMinInt);
223 } else {
224 shadow_frame.SetVReg(result_reg, dividend / divisor);
225 }
226 return true;
227}
228
Sebastien Hertzc6714852013-09-30 16:42:32 +0200229// Handles rem-int, rem-int/2addr, rem-int/li16 and rem-int/lit8 instructions.
230// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200231static inline bool DoIntRemainder(ShadowFrame& shadow_frame, size_t result_reg,
232 int32_t dividend, int32_t divisor)
233 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersf72a11d2014-10-30 15:41:08 -0700234 constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200235 if (UNLIKELY(divisor == 0)) {
236 ThrowArithmeticExceptionDivideByZero();
237 return false;
238 }
239 if (UNLIKELY(dividend == kMinInt && divisor == -1)) {
240 shadow_frame.SetVReg(result_reg, 0);
241 } else {
242 shadow_frame.SetVReg(result_reg, dividend % divisor);
243 }
244 return true;
245}
246
Sebastien Hertzc6714852013-09-30 16:42:32 +0200247// Handles div-long and div-long-2addr instructions.
248// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200249static inline bool DoLongDivide(ShadowFrame& shadow_frame, size_t result_reg,
250 int64_t dividend, int64_t divisor)
251 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700252 const int64_t kMinLong = std::numeric_limits<int64_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200253 if (UNLIKELY(divisor == 0)) {
254 ThrowArithmeticExceptionDivideByZero();
255 return false;
256 }
257 if (UNLIKELY(dividend == kMinLong && divisor == -1)) {
258 shadow_frame.SetVRegLong(result_reg, kMinLong);
259 } else {
260 shadow_frame.SetVRegLong(result_reg, dividend / divisor);
261 }
262 return true;
263}
264
Sebastien Hertzc6714852013-09-30 16:42:32 +0200265// Handles rem-long and rem-long-2addr instructions.
266// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200267static inline bool DoLongRemainder(ShadowFrame& shadow_frame, size_t result_reg,
268 int64_t dividend, int64_t divisor)
269 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700270 const int64_t kMinLong = std::numeric_limits<int64_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200271 if (UNLIKELY(divisor == 0)) {
272 ThrowArithmeticExceptionDivideByZero();
273 return false;
274 }
275 if (UNLIKELY(dividend == kMinLong && divisor == -1)) {
276 shadow_frame.SetVRegLong(result_reg, 0);
277 } else {
278 shadow_frame.SetVRegLong(result_reg, dividend % divisor);
279 }
280 return true;
281}
282
Sebastien Hertzc6714852013-09-30 16:42:32 +0200283// Handles filled-new-array and filled-new-array-range instructions.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200284// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100285template <bool is_range, bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200286bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
Sebastien Hertzc6714852013-09-30 16:42:32 +0200287 Thread* self, JValue* result);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200288
Sebastien Hertzc6714852013-09-30 16:42:32 +0200289// Handles packed-switch instruction.
290// Returns the branch offset to the next instruction to execute.
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200291static inline int32_t DoPackedSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
292 uint16_t inst_data)
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200293 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
294 DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH);
295 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200296 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200297 DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kPackedSwitchSignature));
298 uint16_t size = switch_data[1];
299 DCHECK_GT(size, 0);
300 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]);
301 DCHECK(IsAligned<4>(keys));
302 int32_t first_key = keys[0];
303 const int32_t* targets = reinterpret_cast<const int32_t*>(&switch_data[4]);
304 DCHECK(IsAligned<4>(targets));
305 int32_t index = test_val - first_key;
306 if (index >= 0 && index < size) {
307 return targets[index];
308 } else {
309 // No corresponding value: move forward by 3 (size of PACKED_SWITCH).
310 return 3;
311 }
312}
313
Sebastien Hertzc6714852013-09-30 16:42:32 +0200314// Handles sparse-switch instruction.
315// Returns the branch offset to the next instruction to execute.
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200316static inline int32_t DoSparseSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
317 uint16_t inst_data)
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200318 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
319 DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH);
320 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200321 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200322 DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kSparseSwitchSignature));
323 uint16_t size = switch_data[1];
Jeff Hao935e01a2015-03-20 19:44:35 -0700324 // Return length of SPARSE_SWITCH if size is 0.
325 if (size == 0) {
326 return 3;
327 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200328 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]);
329 DCHECK(IsAligned<4>(keys));
330 const int32_t* entries = keys + size;
331 DCHECK(IsAligned<4>(entries));
332 int lo = 0;
333 int hi = size - 1;
334 while (lo <= hi) {
335 int mid = (lo + hi) / 2;
336 int32_t foundVal = keys[mid];
337 if (test_val < foundVal) {
338 hi = mid - 1;
339 } else if (test_val > foundVal) {
340 lo = mid + 1;
341 } else {
342 return entries[mid];
343 }
344 }
345 // No corresponding value: move forward by 3 (size of SPARSE_SWITCH).
346 return 3;
347}
348
Ian Rogers54874942014-06-10 16:31:03 -0700349uint32_t FindNextInstructionFollowingException(Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertz9f102032014-05-23 08:59:42 +0200350 uint32_t dex_pc, const instrumentation::Instrumentation* instrumentation)
Ian Rogers54874942014-06-10 16:31:03 -0700351 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200352
Andreas Gampe794ad762015-02-23 08:12:24 -0800353NO_RETURN void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame)
354 __attribute__((cold))
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800355 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200356
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200357static inline void TraceExecution(const ShadowFrame& shadow_frame, const Instruction* inst,
Ian Rogerse94652f2014-12-02 11:13:19 -0800358 const uint32_t dex_pc)
Jeff Haoa3faaf42013-09-03 19:07:00 -0700359 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700360 constexpr bool kTracing = false;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200361 if (kTracing) {
362#define TRACE_LOG std::cerr
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700363 std::ostringstream oss;
364 oss << PrettyMethod(shadow_frame.GetMethod())
365 << StringPrintf("\n0x%x: ", dex_pc)
Ian Rogerse94652f2014-12-02 11:13:19 -0800366 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n";
Ian Rogersef7d42f2014-01-06 12:55:46 -0800367 for (uint32_t i = 0; i < shadow_frame.NumberOfVRegs(); ++i) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200368 uint32_t raw_value = shadow_frame.GetVReg(i);
369 Object* ref_value = shadow_frame.GetVRegReference(i);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800370 oss << StringPrintf(" vreg%u=0x%08X", i, raw_value);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200371 if (ref_value != NULL) {
372 if (ref_value->GetClass()->IsStringClass() &&
373 ref_value->AsString()->GetCharArray() != NULL) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700374 oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\"";
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200375 } else {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700376 oss << "/" << PrettyTypeOf(ref_value);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200377 }
378 }
379 }
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700380 TRACE_LOG << oss.str() << "\n";
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200381#undef TRACE_LOG
382 }
383}
384
Sebastien Hertz1eda2262013-09-09 16:53:14 +0200385static inline bool IsBackwardBranch(int32_t branch_offset) {
386 return branch_offset <= 0;
387}
388
Sebastien Hertzc6714852013-09-30 16:42:32 +0200389// Explicitly instantiate all DoInvoke functions.
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100390#define EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, _is_range, _do_check) \
Ian Rogers54874942014-06-10 16:31:03 -0700391 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100392 bool DoInvoke<_type, _is_range, _do_check>(Thread* self, ShadowFrame& shadow_frame, \
393 const Instruction* inst, uint16_t inst_data, \
394 JValue* result)
Sebastien Hertzc6714852013-09-30 16:42:32 +0200395
396#define EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(_type) \
397 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, false); \
398 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, true); \
399 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, false); \
400 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, true);
401
Andreas Gampec8ccf682014-09-29 20:07:43 -0700402EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kStatic) // invoke-static/range.
403EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kDirect) // invoke-direct/range.
404EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kVirtual) // invoke-virtual/range.
405EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kSuper) // invoke-super/range.
406EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kInterface) // invoke-interface/range.
Sebastien Hertzc6714852013-09-30 16:42:32 +0200407#undef EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL
408#undef EXPLICIT_DO_INVOKE_TEMPLATE_DECL
409
Sebastien Hertzc6714852013-09-30 16:42:32 +0200410// Explicitly instantiate all DoInvokeVirtualQuick functions.
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100411#define EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(_is_range) \
Ian Rogers54874942014-06-10 16:31:03 -0700412 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100413 bool DoInvokeVirtualQuick<_is_range>(Thread* self, ShadowFrame& shadow_frame, \
414 const Instruction* inst, uint16_t inst_data, \
415 JValue* result)
Sebastien Hertzc6714852013-09-30 16:42:32 +0200416
417EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(false); // invoke-virtual-quick.
418EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(true); // invoke-virtual-quick-range.
419#undef EXPLICIT_INSTANTIATION_DO_INVOKE_VIRTUAL_QUICK
420
Sebastien Hertzc6714852013-09-30 16:42:32 +0200421
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200422} // namespace interpreter
423} // namespace art
424
425#endif // ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_