blob: 90c822744351820923a9758b4a7bd7ff0b766259 [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>
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -070026#include <atomic>
Ian Rogersc7dd2952014-10-21 23:31:19 -070027
Mathieu Chartierc7853442015-03-27 14:35:38 -070028#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070029#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070030#include "base/enums.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020031#include "base/logging.h"
Andreas Gampe794ad762015-02-23 08:12:24 -080032#include "base/macros.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020033#include "class_linker-inl.h"
34#include "common_throws.h"
35#include "dex_file-inl.h"
36#include "dex_instruction-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070037#include "entrypoints/entrypoint_utils-inl.h"
Mathieu Chartier0cd81352014-05-22 16:48:55 -070038#include "handle_scope-inl.h"
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010039#include "jit/jit.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020040#include "mirror/class-inl.h"
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -070041#include "mirror/dex_cache.h"
42#include "mirror/method.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020043#include "mirror/object-inl.h"
44#include "mirror/object_array-inl.h"
Douglas Leung4965c022014-06-11 11:41:11 -070045#include "mirror/string-inl.h"
Andreas Gampe03ec9302015-08-27 17:41:47 -070046#include "stack.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020047#include "thread.h"
48#include "well_known_classes.h"
49
Mathieu Chartiere401d142015-04-22 13:56:20 -070050using ::art::ArtMethod;
Sebastien Hertz8ece0502013-08-07 11:26:41 +020051using ::art::mirror::Array;
52using ::art::mirror::BooleanArray;
53using ::art::mirror::ByteArray;
54using ::art::mirror::CharArray;
55using ::art::mirror::Class;
56using ::art::mirror::ClassLoader;
57using ::art::mirror::IntArray;
58using ::art::mirror::LongArray;
59using ::art::mirror::Object;
60using ::art::mirror::ObjectArray;
61using ::art::mirror::ShortArray;
62using ::art::mirror::String;
63using ::art::mirror::Throwable;
64
65namespace art {
66namespace interpreter {
67
buzbee1452bee2015-03-06 14:43:04 -080068// External references to all interpreter implementations.
Sebastien Hertz8ece0502013-08-07 11:26:41 +020069
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010070template<bool do_access_check, bool transaction_active>
Ian Rogerse94652f2014-12-02 11:13:19 -080071extern JValue ExecuteSwitchImpl(Thread* self, const DexFile::CodeItem* code_item,
buzbee1452bee2015-03-06 14:43:04 -080072 ShadowFrame& shadow_frame, JValue result_register,
73 bool interpret_one_instruction);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020074
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010075template<bool do_access_check, bool transaction_active>
Ian Rogerse94652f2014-12-02 11:13:19 -080076extern JValue ExecuteGotoImpl(Thread* self, const DexFile::CodeItem* code_item,
Sebastien Hertzc6714852013-09-30 16:42:32 +020077 ShadowFrame& shadow_frame, JValue result_register);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020078
buzbee1452bee2015-03-06 14:43:04 -080079// Mterp does not support transactions or access check, thus no templated versions.
80extern "C" bool ExecuteMterpImpl(Thread* self, const DexFile::CodeItem* code_item,
81 ShadowFrame* shadow_frame, JValue* result_register);
82
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000083void ThrowNullPointerExceptionFromInterpreter()
Mathieu Chartier90443472015-07-16 20:32:27 -070084 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertzda843e12014-05-28 19:28:31 +020085
Andreas Gampe03ec9302015-08-27 17:41:47 -070086template <bool kMonitorCounting>
87static inline void DoMonitorEnter(Thread* self,
88 ShadowFrame* frame,
Mathieu Chartier2d096c92015-10-12 16:18:20 -070089 Object* ref)
90 NO_THREAD_SAFETY_ANALYSIS
91 REQUIRES(!Roles::uninterruptible_) {
92 StackHandleScope<1> hs(self);
93 Handle<Object> h_ref(hs.NewHandle(ref));
94 h_ref->MonitorEnter(self);
Andreas Gampe56fdd0e2016-04-28 14:56:54 -070095 if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) {
96 frame->GetLockCountData().AddMonitor(self, h_ref.Get());
97 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +020098}
99
Andreas Gampe03ec9302015-08-27 17:41:47 -0700100template <bool kMonitorCounting>
101static inline void DoMonitorExit(Thread* self,
102 ShadowFrame* frame,
Mathieu Chartier2d096c92015-10-12 16:18:20 -0700103 Object* ref)
104 NO_THREAD_SAFETY_ANALYSIS
105 REQUIRES(!Roles::uninterruptible_) {
106 StackHandleScope<1> hs(self);
107 Handle<Object> h_ref(hs.NewHandle(ref));
108 h_ref->MonitorExit(self);
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700109 if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) {
110 frame->GetLockCountData().RemoveMonitorOrThrow(self, h_ref.Get());
111 }
112}
113
114template <bool kMonitorCounting>
115static inline bool DoMonitorCheckOnExit(Thread* self, ShadowFrame* frame)
116 NO_THREAD_SAFETY_ANALYSIS
117 REQUIRES(!Roles::uninterruptible_) {
118 if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) {
119 return frame->GetLockCountData().CheckAllMonitorsReleasedOrThrow(self);
120 }
121 return true;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200122}
123
Sebastien Hertz45b15972015-04-03 16:07:05 +0200124void AbortTransactionF(Thread* self, const char* fmt, ...)
125 __attribute__((__format__(__printf__, 2, 3)))
Mathieu Chartier90443472015-07-16 20:32:27 -0700126 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz45b15972015-04-03 16:07:05 +0200127
128void AbortTransactionV(Thread* self, const char* fmt, va_list args)
Mathieu Chartier90443472015-07-16 20:32:27 -0700129 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700130
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100131void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count)
Mathieu Chartier90443472015-07-16 20:32:27 -0700132 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100133
Sebastien Hertzc6714852013-09-30 16:42:32 +0200134// Invokes the given method. This is part of the invocation support and is used by DoInvoke and
135// DoInvokeVirtualQuick functions.
136// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200137template<bool is_range, bool do_assignability_check>
Ian Rogerse94652f2014-12-02 11:13:19 -0800138bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertzc6714852013-09-30 16:42:32 +0200139 const Instruction* inst, uint16_t inst_data, JValue* result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200140
Narayan Kamath14832ef2016-08-05 11:44:32 +0100141// Handles invoke-XXX/range instructions.
Sebastien Hertzc6714852013-09-30 16:42:32 +0200142// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200143template<InvokeType type, bool is_range, bool do_access_check>
144static inline bool DoInvoke(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
145 uint16_t inst_data, JValue* result) {
146 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
147 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700148 Object* receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700149 ArtMethod* sf_method = shadow_frame.GetMethod();
Ian Rogerse94652f2014-12-02 11:13:19 -0800150 ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>(
Andreas Gampe3a357142015-08-07 17:20:11 -0700151 method_idx, &receiver, sf_method, self);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700152 // The shadow frame should already be pushed, so we don't need to update it.
Ian Rogerse94652f2014-12-02 11:13:19 -0800153 if (UNLIKELY(called_method == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200154 CHECK(self->IsExceptionPending());
155 result->SetJ(0);
156 return false;
Alex Light9139e002015-10-09 15:59:48 -0700157 } else if (UNLIKELY(!called_method->IsInvokable())) {
158 called_method->ThrowInvocationTimeError();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200159 result->SetJ(0);
160 return false;
161 } else {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100162 jit::Jit* jit = Runtime::Current()->GetJit();
163 if (jit != nullptr) {
164 if (type == kVirtual || type == kInterface) {
165 jit->InvokeVirtualOrInterface(
166 self, receiver, sf_method, shadow_frame.GetDexPC(), called_method);
167 }
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100168 jit->AddSamples(self, sf_method, 1, /*with_backedges*/false);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100169 }
170 // TODO: Remove the InvokeVirtualOrInterface instrumentation, as it was only used by the JIT.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100171 if (type == kVirtual || type == kInterface) {
172 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
173 if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) {
174 instrumentation->InvokeVirtualOrInterface(
175 self, receiver, sf_method, shadow_frame.GetDexPC(), called_method);
176 }
177 }
Ian Rogerse94652f2014-12-02 11:13:19 -0800178 return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data,
179 result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200180 }
181}
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200182
Sebastien Hertzc6714852013-09-30 16:42:32 +0200183// Handles invoke-virtual-quick and invoke-virtual-quick-range instructions.
184// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200185template<bool is_range>
186static inline bool DoInvokeVirtualQuick(Thread* self, ShadowFrame& shadow_frame,
187 const Instruction* inst, uint16_t inst_data,
188 JValue* result) {
189 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
190 Object* const receiver = shadow_frame.GetVRegReference(vregC);
Sebastien Hertzd4beb6b2013-10-02 17:07:20 +0200191 if (UNLIKELY(receiver == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200192 // We lost the reference to the method index so we cannot get a more
193 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000194 ThrowNullPointerExceptionFromDexPC();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200195 return false;
196 }
197 const uint32_t vtable_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000198 CHECK(receiver->GetClass()->ShouldHaveEmbeddedVTable());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700199 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry(
Andreas Gampe542451c2016-07-26 09:02:02 -0700200 vtable_idx, kRuntimePointerSize);
Ian Rogerse94652f2014-12-02 11:13:19 -0800201 if (UNLIKELY(called_method == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200202 CHECK(self->IsExceptionPending());
203 result->SetJ(0);
204 return false;
Alex Light9139e002015-10-09 15:59:48 -0700205 } else if (UNLIKELY(!called_method->IsInvokable())) {
206 called_method->ThrowInvocationTimeError();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200207 result->SetJ(0);
208 return false;
209 } else {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100210 jit::Jit* jit = Runtime::Current()->GetJit();
211 if (jit != nullptr) {
212 jit->InvokeVirtualOrInterface(
213 self, receiver, shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method);
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100214 jit->AddSamples(self, shadow_frame.GetMethod(), 1, /*with_backedges*/false);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100215 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100216 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100217 // TODO: Remove the InvokeVirtualOrInterface instrumentation, as it was only used by the JIT.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100218 if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) {
219 instrumentation->InvokeVirtualOrInterface(
220 self, receiver, shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method);
221 }
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200222 // No need to check since we've been quickened.
Ian Rogerse94652f2014-12-02 11:13:19 -0800223 return DoCall<is_range, false>(called_method, self, shadow_frame, inst, inst_data, result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200224 }
225}
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200226
Sebastien Hertzc6714852013-09-30 16:42:32 +0200227// Handles iget-XXX and sget-XXX instructions.
228// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200229template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check>
Ian Rogers54874942014-06-10 16:31:03 -0700230bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
Mathieu Chartier90443472015-07-16 20:32:27 -0700231 uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200232
Sebastien Hertzc6714852013-09-30 16:42:32 +0200233// Handles iget-quick, iget-wide-quick and iget-object-quick instructions.
234// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200235template<Primitive::Type field_type>
Ian Rogers54874942014-06-10 16:31:03 -0700236bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
Mathieu Chartier90443472015-07-16 20:32:27 -0700237 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz479fc1e2014-04-04 17:51:34 +0200238
Sebastien Hertzc6714852013-09-30 16:42:32 +0200239// Handles iput-XXX and sput-XXX instructions.
240// Returns true on success, otherwise throws an exception and returns false.
Ian Rogers54874942014-06-10 16:31:03 -0700241template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
242 bool transaction_active>
243bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst,
Mathieu Chartier90443472015-07-16 20:32:27 -0700244 uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200245
Sebastien Hertzc6714852013-09-30 16:42:32 +0200246// Handles iput-quick, iput-wide-quick and iput-object-quick instructions.
247// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100248template<Primitive::Type field_type, bool transaction_active>
Ian Rogers54874942014-06-10 16:31:03 -0700249bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
Mathieu Chartier90443472015-07-16 20:32:27 -0700250 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers54874942014-06-10 16:31:03 -0700251
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200252
Sebastien Hertzc6714852013-09-30 16:42:32 +0200253// Handles string resolution for const-string and const-string-jumbo instructions. Also ensures the
254// java.lang.String class is initialized.
Ian Rogers6786a582014-10-28 12:49:06 -0700255static inline String* ResolveString(Thread* self, ShadowFrame& shadow_frame, uint32_t string_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700256 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200257 Class* java_lang_string_class = String::GetJavaLangString();
258 if (UNLIKELY(!java_lang_string_class->IsInitialized())) {
259 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700260 StackHandleScope<1> hs(self);
261 Handle<mirror::Class> h_class(hs.NewHandle(java_lang_string_class));
Ian Rogers7b078e82014-09-10 14:44:24 -0700262 if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200263 DCHECK(self->IsExceptionPending());
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800264 return nullptr;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200265 }
266 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700267 ArtMethod* method = shadow_frame.GetMethod();
Mathieu Chartiereace4582014-11-24 18:29:54 -0800268 mirror::Class* declaring_class = method->GetDeclaringClass();
Vladimir Marko05792b92015-08-03 11:56:49 +0100269 // MethodVerifier refuses methods with string_idx out of bounds.
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -0700270 DCHECK_LT(string_idx % mirror::DexCache::kDexCacheStringCacheSize,
271 declaring_class->GetDexFile().NumStringIds());
272 mirror::String* string_ptr =
273 mirror::StringDexCachePair::LookupString(declaring_class->GetDexCacheStrings(),
274 string_idx,
275 mirror::DexCache::kDexCacheStringCacheSize).Read();
276 if (UNLIKELY(string_ptr == nullptr)) {
Ian Rogers6786a582014-10-28 12:49:06 -0700277 StackHandleScope<1> hs(self);
Mathieu Chartiereace4582014-11-24 18:29:54 -0800278 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -0700279 string_ptr = Runtime::Current()->GetClassLinker()->ResolveString(*method->GetDexFile(),
280 string_idx,
281 dex_cache);
Ian Rogers6786a582014-10-28 12:49:06 -0700282 }
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -0700283 return string_ptr;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200284}
285
Sebastien Hertzc6714852013-09-30 16:42:32 +0200286// Handles div-int, div-int/2addr, div-int/li16 and div-int/lit8 instructions.
287// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200288static inline bool DoIntDivide(ShadowFrame& shadow_frame, size_t result_reg,
289 int32_t dividend, int32_t divisor)
Mathieu Chartier90443472015-07-16 20:32:27 -0700290 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersf72a11d2014-10-30 15:41:08 -0700291 constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200292 if (UNLIKELY(divisor == 0)) {
293 ThrowArithmeticExceptionDivideByZero();
294 return false;
295 }
296 if (UNLIKELY(dividend == kMinInt && divisor == -1)) {
297 shadow_frame.SetVReg(result_reg, kMinInt);
298 } else {
299 shadow_frame.SetVReg(result_reg, dividend / divisor);
300 }
301 return true;
302}
303
Sebastien Hertzc6714852013-09-30 16:42:32 +0200304// Handles rem-int, rem-int/2addr, rem-int/li16 and rem-int/lit8 instructions.
305// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200306static inline bool DoIntRemainder(ShadowFrame& shadow_frame, size_t result_reg,
307 int32_t dividend, int32_t divisor)
Mathieu Chartier90443472015-07-16 20:32:27 -0700308 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersf72a11d2014-10-30 15:41:08 -0700309 constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200310 if (UNLIKELY(divisor == 0)) {
311 ThrowArithmeticExceptionDivideByZero();
312 return false;
313 }
314 if (UNLIKELY(dividend == kMinInt && divisor == -1)) {
315 shadow_frame.SetVReg(result_reg, 0);
316 } else {
317 shadow_frame.SetVReg(result_reg, dividend % divisor);
318 }
319 return true;
320}
321
Sebastien Hertzc6714852013-09-30 16:42:32 +0200322// Handles div-long and div-long-2addr instructions.
323// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200324static inline bool DoLongDivide(ShadowFrame& shadow_frame, size_t result_reg,
325 int64_t dividend, int64_t divisor)
Mathieu Chartier90443472015-07-16 20:32:27 -0700326 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700327 const int64_t kMinLong = std::numeric_limits<int64_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200328 if (UNLIKELY(divisor == 0)) {
329 ThrowArithmeticExceptionDivideByZero();
330 return false;
331 }
332 if (UNLIKELY(dividend == kMinLong && divisor == -1)) {
333 shadow_frame.SetVRegLong(result_reg, kMinLong);
334 } else {
335 shadow_frame.SetVRegLong(result_reg, dividend / divisor);
336 }
337 return true;
338}
339
Sebastien Hertzc6714852013-09-30 16:42:32 +0200340// Handles rem-long and rem-long-2addr instructions.
341// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200342static inline bool DoLongRemainder(ShadowFrame& shadow_frame, size_t result_reg,
343 int64_t dividend, int64_t divisor)
Mathieu Chartier90443472015-07-16 20:32:27 -0700344 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700345 const int64_t kMinLong = std::numeric_limits<int64_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200346 if (UNLIKELY(divisor == 0)) {
347 ThrowArithmeticExceptionDivideByZero();
348 return false;
349 }
350 if (UNLIKELY(dividend == kMinLong && divisor == -1)) {
351 shadow_frame.SetVRegLong(result_reg, 0);
352 } else {
353 shadow_frame.SetVRegLong(result_reg, dividend % divisor);
354 }
355 return true;
356}
357
Sebastien Hertzc6714852013-09-30 16:42:32 +0200358// Handles filled-new-array and filled-new-array-range instructions.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200359// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100360template <bool is_range, bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200361bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
Sebastien Hertzc6714852013-09-30 16:42:32 +0200362 Thread* self, JValue* result);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200363
Sebastien Hertzc6714852013-09-30 16:42:32 +0200364// Handles packed-switch instruction.
365// Returns the branch offset to the next instruction to execute.
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200366static inline int32_t DoPackedSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
367 uint16_t inst_data)
Mathieu Chartier90443472015-07-16 20:32:27 -0700368 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200369 DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH);
370 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200371 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200372 DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kPackedSwitchSignature));
373 uint16_t size = switch_data[1];
David Brazdil2ef645b2015-06-17 18:20:52 +0100374 if (size == 0) {
375 // Empty packed switch, move forward by 3 (size of PACKED_SWITCH).
376 return 3;
377 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200378 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]);
Roland Levillain14d90572015-07-16 10:52:26 +0100379 DCHECK_ALIGNED(keys, 4);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200380 int32_t first_key = keys[0];
381 const int32_t* targets = reinterpret_cast<const int32_t*>(&switch_data[4]);
Roland Levillain14d90572015-07-16 10:52:26 +0100382 DCHECK_ALIGNED(targets, 4);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200383 int32_t index = test_val - first_key;
384 if (index >= 0 && index < size) {
385 return targets[index];
386 } else {
387 // No corresponding value: move forward by 3 (size of PACKED_SWITCH).
388 return 3;
389 }
390}
391
Sebastien Hertzc6714852013-09-30 16:42:32 +0200392// Handles sparse-switch instruction.
393// Returns the branch offset to the next instruction to execute.
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200394static inline int32_t DoSparseSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
395 uint16_t inst_data)
Mathieu Chartier90443472015-07-16 20:32:27 -0700396 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200397 DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH);
398 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200399 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200400 DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kSparseSwitchSignature));
401 uint16_t size = switch_data[1];
Jeff Hao935e01a2015-03-20 19:44:35 -0700402 // Return length of SPARSE_SWITCH if size is 0.
403 if (size == 0) {
404 return 3;
405 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200406 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]);
Roland Levillain14d90572015-07-16 10:52:26 +0100407 DCHECK_ALIGNED(keys, 4);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200408 const int32_t* entries = keys + size;
Roland Levillain14d90572015-07-16 10:52:26 +0100409 DCHECK_ALIGNED(entries, 4);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200410 int lo = 0;
411 int hi = size - 1;
412 while (lo <= hi) {
413 int mid = (lo + hi) / 2;
414 int32_t foundVal = keys[mid];
415 if (test_val < foundVal) {
416 hi = mid - 1;
417 } else if (test_val > foundVal) {
418 lo = mid + 1;
419 } else {
420 return entries[mid];
421 }
422 }
423 // No corresponding value: move forward by 3 (size of SPARSE_SWITCH).
424 return 3;
425}
426
Ian Rogers54874942014-06-10 16:31:03 -0700427uint32_t FindNextInstructionFollowingException(Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertz9f102032014-05-23 08:59:42 +0200428 uint32_t dex_pc, const instrumentation::Instrumentation* instrumentation)
Mathieu Chartier90443472015-07-16 20:32:27 -0700429 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200430
Andreas Gampe794ad762015-02-23 08:12:24 -0800431NO_RETURN void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame)
432 __attribute__((cold))
Mathieu Chartier90443472015-07-16 20:32:27 -0700433 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200434
Bill Buzbeed47fd902016-07-07 14:42:43 +0000435// Set true if you want TraceExecution invocation before each bytecode execution.
436constexpr bool kTraceExecutionEnabled = false;
Serguei Katkov9fb0ac72016-02-20 12:55:24 +0600437
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200438static inline void TraceExecution(const ShadowFrame& shadow_frame, const Instruction* inst,
Ian Rogerse94652f2014-12-02 11:13:19 -0800439 const uint32_t dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -0700440 SHARED_REQUIRES(Locks::mutator_lock_) {
Bill Buzbeed47fd902016-07-07 14:42:43 +0000441 if (kTraceExecutionEnabled) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200442#define TRACE_LOG std::cerr
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700443 std::ostringstream oss;
444 oss << PrettyMethod(shadow_frame.GetMethod())
445 << StringPrintf("\n0x%x: ", dex_pc)
Ian Rogerse94652f2014-12-02 11:13:19 -0800446 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n";
Ian Rogersef7d42f2014-01-06 12:55:46 -0800447 for (uint32_t i = 0; i < shadow_frame.NumberOfVRegs(); ++i) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200448 uint32_t raw_value = shadow_frame.GetVReg(i);
449 Object* ref_value = shadow_frame.GetVRegReference(i);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800450 oss << StringPrintf(" vreg%u=0x%08X", i, raw_value);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700451 if (ref_value != nullptr) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200452 if (ref_value->GetClass()->IsStringClass() &&
Jeff Hao848f70a2014-01-15 13:49:50 -0800453 ref_value->AsString()->GetValue() != nullptr) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700454 oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\"";
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200455 } else {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700456 oss << "/" << PrettyTypeOf(ref_value);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200457 }
458 }
459 }
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700460 TRACE_LOG << oss.str() << "\n";
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200461#undef TRACE_LOG
462 }
463}
464
Sebastien Hertz1eda2262013-09-09 16:53:14 +0200465static inline bool IsBackwardBranch(int32_t branch_offset) {
466 return branch_offset <= 0;
467}
468
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100469void ArtInterpreterToCompiledCodeBridge(Thread* self,
470 ArtMethod* caller,
471 const DexFile::CodeItem* code_item,
472 ShadowFrame* shadow_frame,
473 JValue* result);
Siva Chandra05d24152016-01-05 17:43:17 -0800474
Mingyao Yangffedec52016-05-19 10:48:40 -0700475// Set string value created from StringFactory.newStringFromXXX() into all aliases of
476// StringFactory.newEmptyString().
477void SetStringInitValueToAllAliases(ShadowFrame* shadow_frame,
478 uint16_t this_obj_vreg,
479 JValue result);
480
Sebastien Hertzc6714852013-09-30 16:42:32 +0200481// Explicitly instantiate all DoInvoke functions.
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100482#define EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, _is_range, _do_check) \
Mathieu Chartier90443472015-07-16 20:32:27 -0700483 template SHARED_REQUIRES(Locks::mutator_lock_) \
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100484 bool DoInvoke<_type, _is_range, _do_check>(Thread* self, ShadowFrame& shadow_frame, \
485 const Instruction* inst, uint16_t inst_data, \
486 JValue* result)
Sebastien Hertzc6714852013-09-30 16:42:32 +0200487
488#define EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(_type) \
489 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, false); \
490 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, true); \
491 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, false); \
492 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, true);
493
Andreas Gampec8ccf682014-09-29 20:07:43 -0700494EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kStatic) // invoke-static/range.
495EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kDirect) // invoke-direct/range.
496EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kVirtual) // invoke-virtual/range.
497EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kSuper) // invoke-super/range.
498EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kInterface) // invoke-interface/range.
Sebastien Hertzc6714852013-09-30 16:42:32 +0200499#undef EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL
500#undef EXPLICIT_DO_INVOKE_TEMPLATE_DECL
501
Sebastien Hertzc6714852013-09-30 16:42:32 +0200502// Explicitly instantiate all DoInvokeVirtualQuick functions.
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100503#define EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(_is_range) \
Mathieu Chartier90443472015-07-16 20:32:27 -0700504 template SHARED_REQUIRES(Locks::mutator_lock_) \
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100505 bool DoInvokeVirtualQuick<_is_range>(Thread* self, ShadowFrame& shadow_frame, \
506 const Instruction* inst, uint16_t inst_data, \
507 JValue* result)
Sebastien Hertzc6714852013-09-30 16:42:32 +0200508
509EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(false); // invoke-virtual-quick.
510EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(true); // invoke-virtual-quick-range.
511#undef EXPLICIT_INSTANTIATION_DO_INVOKE_VIRTUAL_QUICK
512
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200513} // namespace interpreter
514} // namespace art
515
516#endif // ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_