blob: f8858d09fea74a2c5fd1fa392fe7cc156152062c [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 Rogersc7dd2952014-10-21 23:31:19 -070024#include <sstream>
25
Sebastien Hertz8ece0502013-08-07 11:26:41 +020026#include "base/logging.h"
27#include "class_linker-inl.h"
28#include "common_throws.h"
29#include "dex_file-inl.h"
30#include "dex_instruction-inl.h"
31#include "dex_instruction.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070032#include "entrypoints/entrypoint_utils-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020033#include "gc/accounting/card_table-inl.h"
Mathieu Chartier0cd81352014-05-22 16:48:55 -070034#include "handle_scope-inl.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070035#include "method_helper-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020036#include "nth_caller_visitor.h"
37#include "mirror/art_field-inl.h"
38#include "mirror/art_method.h"
39#include "mirror/art_method-inl.h"
40#include "mirror/class.h"
41#include "mirror/class-inl.h"
42#include "mirror/object-inl.h"
43#include "mirror/object_array-inl.h"
Douglas Leung4965c022014-06-11 11:41:11 -070044#include "mirror/string-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020045#include "ScopedLocalRef.h"
46#include "scoped_thread_state_change.h"
47#include "thread.h"
48#include "well_known_classes.h"
49
50using ::art::mirror::ArtField;
51using ::art::mirror::ArtMethod;
52using ::art::mirror::Array;
53using ::art::mirror::BooleanArray;
54using ::art::mirror::ByteArray;
55using ::art::mirror::CharArray;
56using ::art::mirror::Class;
57using ::art::mirror::ClassLoader;
58using ::art::mirror::IntArray;
59using ::art::mirror::LongArray;
60using ::art::mirror::Object;
61using ::art::mirror::ObjectArray;
62using ::art::mirror::ShortArray;
63using ::art::mirror::String;
64using ::art::mirror::Throwable;
65
66namespace art {
67namespace interpreter {
68
69// External references to both interpreter implementations.
70
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010071template<bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +020072extern JValue ExecuteSwitchImpl(Thread* self, MethodHelper& mh,
73 const DexFile::CodeItem* code_item,
Sebastien Hertzc6714852013-09-30 16:42:32 +020074 ShadowFrame& shadow_frame, JValue result_register);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020075
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010076template<bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +020077extern JValue ExecuteGotoImpl(Thread* self, MethodHelper& mh,
78 const DexFile::CodeItem* code_item,
Sebastien Hertzc6714852013-09-30 16:42:32 +020079 ShadowFrame& shadow_frame, JValue result_register);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020080
Ian Rogers54874942014-06-10 16:31:03 -070081void ThrowNullPointerExceptionFromInterpreter(const ShadowFrame& shadow_frame)
82 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertzda843e12014-05-28 19:28:31 +020083
Sebastien Hertz8ece0502013-08-07 11:26:41 +020084static inline void DoMonitorEnter(Thread* self, Object* ref) NO_THREAD_SAFETY_ANALYSIS {
85 ref->MonitorEnter(self);
86}
87
88static inline void DoMonitorExit(Thread* self, Object* ref) NO_THREAD_SAFETY_ANALYSIS {
89 ref->MonitorExit(self);
90}
91
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -070092void AbortTransaction(Thread* self, const char* fmt, ...)
93 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
94
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010095void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count)
96 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
97
Sebastien Hertzc6714852013-09-30 16:42:32 +020098// Invokes the given method. This is part of the invocation support and is used by DoInvoke and
99// DoInvokeVirtualQuick functions.
100// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200101template<bool is_range, bool do_assignability_check>
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100102bool DoCall(ArtMethod* method, Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertzc6714852013-09-30 16:42:32 +0200103 const Instruction* inst, uint16_t inst_data, JValue* result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200104
Sebastien Hertzc6714852013-09-30 16:42:32 +0200105// Handles invoke-XXX/range instructions.
106// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200107template<InvokeType type, bool is_range, bool do_access_check>
108static inline bool DoInvoke(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
109 uint16_t inst_data, JValue* result) {
110 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
111 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700112 Object* receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700113 mirror::ArtMethod* sf_method = shadow_frame.GetMethod();
114 ArtMethod* const method = FindMethodFromCode<type, do_access_check>(
115 method_idx, &receiver, &sf_method, self);
116 // The shadow frame should already be pushed, so we don't need to update it.
Sebastien Hertzd4beb6b2013-10-02 17:07:20 +0200117 if (UNLIKELY(method == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200118 CHECK(self->IsExceptionPending());
119 result->SetJ(0);
120 return false;
121 } else if (UNLIKELY(method->IsAbstract())) {
122 ThrowAbstractMethodError(method);
123 result->SetJ(0);
124 return false;
125 } else {
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100126 return DoCall<is_range, do_access_check>(method, self, shadow_frame, inst, inst_data, result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200127 }
128}
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200129
Sebastien Hertzc6714852013-09-30 16:42:32 +0200130// Handles invoke-virtual-quick and invoke-virtual-quick-range instructions.
131// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200132template<bool is_range>
133static inline bool DoInvokeVirtualQuick(Thread* self, ShadowFrame& shadow_frame,
134 const Instruction* inst, uint16_t inst_data,
135 JValue* result) {
136 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
137 Object* const receiver = shadow_frame.GetVRegReference(vregC);
Sebastien Hertzd4beb6b2013-10-02 17:07:20 +0200138 if (UNLIKELY(receiver == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200139 // We lost the reference to the method index so we cannot get a more
140 // precised exception message.
141 ThrowNullPointerExceptionFromDexPC(shadow_frame.GetCurrentLocationForThrow());
142 return false;
143 }
144 const uint32_t vtable_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700145 CHECK(receiver->GetClass()->ShouldHaveEmbeddedImtAndVTable());
146 ArtMethod* const method = receiver->GetClass()->GetEmbeddedVTableEntry(vtable_idx);
Sebastien Hertzd4beb6b2013-10-02 17:07:20 +0200147 if (UNLIKELY(method == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200148 CHECK(self->IsExceptionPending());
149 result->SetJ(0);
150 return false;
151 } else if (UNLIKELY(method->IsAbstract())) {
152 ThrowAbstractMethodError(method);
153 result->SetJ(0);
154 return false;
155 } else {
156 // No need to check since we've been quickened.
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100157 return DoCall<is_range, false>(method, self, shadow_frame, inst, inst_data, result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200158 }
159}
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200160
Sebastien Hertzc6714852013-09-30 16:42:32 +0200161// Handles iget-XXX and sget-XXX instructions.
162// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200163template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check>
Ian Rogers54874942014-06-10 16:31:03 -0700164bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
165 uint16_t inst_data) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200166
Sebastien Hertzc6714852013-09-30 16:42:32 +0200167// Handles iget-quick, iget-wide-quick and iget-object-quick instructions.
168// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200169template<Primitive::Type field_type>
Ian Rogers54874942014-06-10 16:31:03 -0700170bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
171 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz479fc1e2014-04-04 17:51:34 +0200172
Sebastien Hertzc6714852013-09-30 16:42:32 +0200173// Handles iput-XXX and sput-XXX instructions.
174// Returns true on success, otherwise throws an exception and returns false.
Ian Rogers54874942014-06-10 16:31:03 -0700175template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
176 bool transaction_active>
177bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst,
178 uint16_t inst_data) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200179
Sebastien Hertzc6714852013-09-30 16:42:32 +0200180// Handles iput-quick, iput-wide-quick and iput-object-quick instructions.
181// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100182template<Primitive::Type field_type, bool transaction_active>
Ian Rogers54874942014-06-10 16:31:03 -0700183bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
184 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
185
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200186
Sebastien Hertzc6714852013-09-30 16:42:32 +0200187// Handles string resolution for const-string and const-string-jumbo instructions. Also ensures the
188// java.lang.String class is initialized.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200189static inline String* ResolveString(Thread* self, MethodHelper& mh, uint32_t string_idx)
190 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800191 CHECK(!kMovingMethods);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200192 Class* java_lang_string_class = String::GetJavaLangString();
193 if (UNLIKELY(!java_lang_string_class->IsInitialized())) {
194 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700195 StackHandleScope<1> hs(self);
196 Handle<mirror::Class> h_class(hs.NewHandle(java_lang_string_class));
Ian Rogers7b078e82014-09-10 14:44:24 -0700197 if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200198 DCHECK(self->IsExceptionPending());
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800199 return nullptr;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200200 }
201 }
202 return mh.ResolveString(string_idx);
203}
204
Sebastien Hertzc6714852013-09-30 16:42:32 +0200205// Handles div-int, div-int/2addr, div-int/li16 and div-int/lit8 instructions.
206// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200207static inline bool DoIntDivide(ShadowFrame& shadow_frame, size_t result_reg,
208 int32_t dividend, int32_t divisor)
209 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700210 const int32_t kMinInt = std::numeric_limits<int32_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200211 if (UNLIKELY(divisor == 0)) {
212 ThrowArithmeticExceptionDivideByZero();
213 return false;
214 }
215 if (UNLIKELY(dividend == kMinInt && divisor == -1)) {
216 shadow_frame.SetVReg(result_reg, kMinInt);
217 } else {
218 shadow_frame.SetVReg(result_reg, dividend / divisor);
219 }
220 return true;
221}
222
Sebastien Hertzc6714852013-09-30 16:42:32 +0200223// Handles rem-int, rem-int/2addr, rem-int/li16 and rem-int/lit8 instructions.
224// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200225static inline bool DoIntRemainder(ShadowFrame& shadow_frame, size_t result_reg,
226 int32_t dividend, int32_t divisor)
227 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700228 const int32_t kMinInt = std::numeric_limits<int32_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200229 if (UNLIKELY(divisor == 0)) {
230 ThrowArithmeticExceptionDivideByZero();
231 return false;
232 }
233 if (UNLIKELY(dividend == kMinInt && divisor == -1)) {
234 shadow_frame.SetVReg(result_reg, 0);
235 } else {
236 shadow_frame.SetVReg(result_reg, dividend % divisor);
237 }
238 return true;
239}
240
Sebastien Hertzc6714852013-09-30 16:42:32 +0200241// Handles div-long and div-long-2addr instructions.
242// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200243static inline bool DoLongDivide(ShadowFrame& shadow_frame, size_t result_reg,
244 int64_t dividend, int64_t divisor)
245 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700246 const int64_t kMinLong = std::numeric_limits<int64_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200247 if (UNLIKELY(divisor == 0)) {
248 ThrowArithmeticExceptionDivideByZero();
249 return false;
250 }
251 if (UNLIKELY(dividend == kMinLong && divisor == -1)) {
252 shadow_frame.SetVRegLong(result_reg, kMinLong);
253 } else {
254 shadow_frame.SetVRegLong(result_reg, dividend / divisor);
255 }
256 return true;
257}
258
Sebastien Hertzc6714852013-09-30 16:42:32 +0200259// Handles rem-long and rem-long-2addr instructions.
260// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200261static inline bool DoLongRemainder(ShadowFrame& shadow_frame, size_t result_reg,
262 int64_t dividend, int64_t divisor)
263 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700264 const int64_t kMinLong = std::numeric_limits<int64_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200265 if (UNLIKELY(divisor == 0)) {
266 ThrowArithmeticExceptionDivideByZero();
267 return false;
268 }
269 if (UNLIKELY(dividend == kMinLong && divisor == -1)) {
270 shadow_frame.SetVRegLong(result_reg, 0);
271 } else {
272 shadow_frame.SetVRegLong(result_reg, dividend % divisor);
273 }
274 return true;
275}
276
Sebastien Hertzc6714852013-09-30 16:42:32 +0200277// Handles filled-new-array and filled-new-array-range instructions.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200278// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100279template <bool is_range, bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200280bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
Sebastien Hertzc6714852013-09-30 16:42:32 +0200281 Thread* self, JValue* result);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200282
Sebastien Hertzc6714852013-09-30 16:42:32 +0200283// Handles packed-switch instruction.
284// Returns the branch offset to the next instruction to execute.
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200285static inline int32_t DoPackedSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
286 uint16_t inst_data)
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200287 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
288 DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH);
289 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200290 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200291 DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kPackedSwitchSignature));
292 uint16_t size = switch_data[1];
293 DCHECK_GT(size, 0);
294 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]);
295 DCHECK(IsAligned<4>(keys));
296 int32_t first_key = keys[0];
297 const int32_t* targets = reinterpret_cast<const int32_t*>(&switch_data[4]);
298 DCHECK(IsAligned<4>(targets));
299 int32_t index = test_val - first_key;
300 if (index >= 0 && index < size) {
301 return targets[index];
302 } else {
303 // No corresponding value: move forward by 3 (size of PACKED_SWITCH).
304 return 3;
305 }
306}
307
Sebastien Hertzc6714852013-09-30 16:42:32 +0200308// Handles sparse-switch instruction.
309// Returns the branch offset to the next instruction to execute.
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200310static inline int32_t DoSparseSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
311 uint16_t inst_data)
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200312 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
313 DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH);
314 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200315 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200316 DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kSparseSwitchSignature));
317 uint16_t size = switch_data[1];
318 DCHECK_GT(size, 0);
319 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]);
320 DCHECK(IsAligned<4>(keys));
321 const int32_t* entries = keys + size;
322 DCHECK(IsAligned<4>(entries));
323 int lo = 0;
324 int hi = size - 1;
325 while (lo <= hi) {
326 int mid = (lo + hi) / 2;
327 int32_t foundVal = keys[mid];
328 if (test_val < foundVal) {
329 hi = mid - 1;
330 } else if (test_val > foundVal) {
331 lo = mid + 1;
332 } else {
333 return entries[mid];
334 }
335 }
336 // No corresponding value: move forward by 3 (size of SPARSE_SWITCH).
337 return 3;
338}
339
Ian Rogers54874942014-06-10 16:31:03 -0700340uint32_t FindNextInstructionFollowingException(Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertz9f102032014-05-23 08:59:42 +0200341 uint32_t dex_pc, const instrumentation::Instrumentation* instrumentation)
Ian Rogers54874942014-06-10 16:31:03 -0700342 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200343
Ian Rogers54874942014-06-10 16:31:03 -0700344void UnexpectedOpcode(const Instruction* inst, MethodHelper& mh)
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800345 __attribute__((cold, noreturn))
346 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200347
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200348static inline void TraceExecution(const ShadowFrame& shadow_frame, const Instruction* inst,
Jeff Haoa3faaf42013-09-03 19:07:00 -0700349 const uint32_t dex_pc, MethodHelper& mh)
350 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700351 constexpr bool kTracing = false;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200352 if (kTracing) {
353#define TRACE_LOG std::cerr
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700354 std::ostringstream oss;
355 oss << PrettyMethod(shadow_frame.GetMethod())
356 << StringPrintf("\n0x%x: ", dex_pc)
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700357 << inst->DumpString(mh.GetMethod()->GetDexFile()) << "\n";
Ian Rogersef7d42f2014-01-06 12:55:46 -0800358 for (uint32_t i = 0; i < shadow_frame.NumberOfVRegs(); ++i) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200359 uint32_t raw_value = shadow_frame.GetVReg(i);
360 Object* ref_value = shadow_frame.GetVRegReference(i);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800361 oss << StringPrintf(" vreg%u=0x%08X", i, raw_value);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200362 if (ref_value != NULL) {
363 if (ref_value->GetClass()->IsStringClass() &&
364 ref_value->AsString()->GetCharArray() != NULL) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700365 oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\"";
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200366 } else {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700367 oss << "/" << PrettyTypeOf(ref_value);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200368 }
369 }
370 }
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700371 TRACE_LOG << oss.str() << "\n";
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200372#undef TRACE_LOG
373 }
374}
375
Sebastien Hertz1eda2262013-09-09 16:53:14 +0200376static inline bool IsBackwardBranch(int32_t branch_offset) {
377 return branch_offset <= 0;
378}
379
Sebastien Hertzc6714852013-09-30 16:42:32 +0200380// Explicitly instantiate all DoInvoke functions.
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100381#define EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, _is_range, _do_check) \
Ian Rogers54874942014-06-10 16:31:03 -0700382 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100383 bool DoInvoke<_type, _is_range, _do_check>(Thread* self, ShadowFrame& shadow_frame, \
384 const Instruction* inst, uint16_t inst_data, \
385 JValue* result)
Sebastien Hertzc6714852013-09-30 16:42:32 +0200386
387#define EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(_type) \
388 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, false); \
389 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, true); \
390 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, false); \
391 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, true);
392
Andreas Gampec8ccf682014-09-29 20:07:43 -0700393EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kStatic) // invoke-static/range.
394EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kDirect) // invoke-direct/range.
395EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kVirtual) // invoke-virtual/range.
396EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kSuper) // invoke-super/range.
397EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kInterface) // invoke-interface/range.
Sebastien Hertzc6714852013-09-30 16:42:32 +0200398#undef EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL
399#undef EXPLICIT_DO_INVOKE_TEMPLATE_DECL
400
Sebastien Hertzc6714852013-09-30 16:42:32 +0200401// Explicitly instantiate all DoInvokeVirtualQuick functions.
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100402#define EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(_is_range) \
Ian Rogers54874942014-06-10 16:31:03 -0700403 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100404 bool DoInvokeVirtualQuick<_is_range>(Thread* self, ShadowFrame& shadow_frame, \
405 const Instruction* inst, uint16_t inst_data, \
406 JValue* result)
Sebastien Hertzc6714852013-09-30 16:42:32 +0200407
408EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(false); // invoke-virtual-quick.
409EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(true); // invoke-virtual-quick-range.
410#undef EXPLICIT_INSTANTIATION_DO_INVOKE_VIRTUAL_QUICK
411
Sebastien Hertzc6714852013-09-30 16:42:32 +0200412
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200413} // namespace interpreter
414} // namespace art
415
416#endif // ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_