blob: 776b6a352163a38629bddc49f61792191f77d7f8 [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
Mathieu Chartierc7853442015-03-27 14:35:38 -070027#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070028#include "art_method-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020029#include "base/logging.h"
Andreas Gampe794ad762015-02-23 08:12:24 -080030#include "base/macros.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020031#include "class_linker-inl.h"
32#include "common_throws.h"
33#include "dex_file-inl.h"
34#include "dex_instruction-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070035#include "entrypoints/entrypoint_utils-inl.h"
Mathieu Chartier0cd81352014-05-22 16:48:55 -070036#include "handle_scope-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020037#include "mirror/class-inl.h"
Igor Murashkin2ee54e22015-06-18 10:05:11 -070038#include "mirror/method.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020039#include "mirror/object-inl.h"
40#include "mirror/object_array-inl.h"
Douglas Leung4965c022014-06-11 11:41:11 -070041#include "mirror/string-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020042#include "thread.h"
43#include "well_known_classes.h"
44
Mathieu Chartiere401d142015-04-22 13:56:20 -070045using ::art::ArtMethod;
Sebastien Hertz8ece0502013-08-07 11:26:41 +020046using ::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
Igor Murashkin158f35c2015-06-10 15:55:30 -0700101// Invokes the given lambda closure. This is part of the invocation support and is used by
102// DoLambdaInvoke functions.
103// Returns true on success, otherwise throws an exception and returns false.
104template<bool is_range, bool do_assignability_check>
105bool DoLambdaCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
106 const Instruction* inst, uint16_t inst_data, JValue* result);
107
108// Validates that the art method corresponding to a lambda method target
109// is semantically valid:
110//
111// Must be ACC_STATIC and ACC_LAMBDA. Must be a concrete managed implementation
112// (i.e. not native, not proxy, not abstract, ...).
113//
114// If the validation fails, return false and raise an exception.
115static inline bool IsValidLambdaTargetOrThrow(ArtMethod* called_method)
116 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
117 bool success = false;
118
119 if (UNLIKELY(called_method == nullptr)) {
120 // The shadow frame should already be pushed, so we don't need to update it.
121 } else if (UNLIKELY(called_method->IsAbstract())) {
122 ThrowAbstractMethodError(called_method);
123 // TODO(iam): Also handle the case when the method is non-static, what error do we throw?
124 // TODO(iam): Also make sure that ACC_LAMBDA is set.
125 } else if (UNLIKELY(called_method->GetCodeItem() == nullptr)) {
126 // Method could be native, proxy method, etc. Lambda targets have to be concrete impls,
127 // so don't allow this.
128 } else {
129 success = true;
130 }
131
132 return success;
133}
134
Igor Murashkin2ee54e22015-06-18 10:05:11 -0700135// Write out the 'ArtMethod*' into vreg and vreg+1
136static inline void WriteLambdaClosureIntoVRegs(ShadowFrame& shadow_frame,
137 const ArtMethod& called_method,
138 uint32_t vreg) {
139 // Split the method into a lo and hi 32 bits so we can encode them into 2 virtual registers.
140 uint32_t called_method_lo = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(&called_method));
141 uint32_t called_method_hi = static_cast<uint32_t>(reinterpret_cast<uint64_t>(&called_method)
142 >> BitSizeOf<uint32_t>());
143 // Use uint64_t instead of uintptr_t to allow shifting past the max on 32-bit.
144 static_assert(sizeof(uint64_t) >= sizeof(uintptr_t), "Impossible");
145
146 DCHECK_NE(called_method_lo | called_method_hi, 0u);
147
148 shadow_frame.SetVReg(vreg, called_method_lo);
149 shadow_frame.SetVReg(vreg + 1, called_method_hi);
150}
151
Igor Murashkin158f35c2015-06-10 15:55:30 -0700152// Handles create-lambda instructions.
153// Returns true on success, otherwise throws an exception and returns false.
154// (Exceptions are thrown by creating a new exception and then being put in the thread TLS)
155//
156// As a work-in-progress implementation, this shoves the ArtMethod object corresponding
157// to the target dex method index into the target register vA and vA + 1.
158template<bool do_access_check>
159static inline bool DoCreateLambda(Thread* self, ShadowFrame& shadow_frame,
160 const Instruction* inst) {
161 /*
162 * create-lambda is opcode 0x21c
163 * - vA is the target register where the closure will be stored into
164 * (also stores into vA + 1)
165 * - vB is the method index which will be the target for a later invoke-lambda
166 */
167 const uint32_t method_idx = inst->VRegB_21c();
168 mirror::Object* receiver = nullptr; // Always static. (see 'kStatic')
169 ArtMethod* sf_method = shadow_frame.GetMethod();
170 ArtMethod* const called_method = FindMethodFromCode<kStatic, do_access_check>(
171 method_idx, &receiver, &sf_method, self);
172
173 uint32_t vregA = inst->VRegA_21c();
174
175 if (UNLIKELY(!IsValidLambdaTargetOrThrow(called_method))) {
176 CHECK(self->IsExceptionPending());
177 shadow_frame.SetVReg(vregA, 0u);
178 shadow_frame.SetVReg(vregA + 1, 0u);
179 return false;
180 }
181
Igor Murashkin2ee54e22015-06-18 10:05:11 -0700182 WriteLambdaClosureIntoVRegs(shadow_frame, *called_method, vregA);
Igor Murashkin158f35c2015-06-10 15:55:30 -0700183 return true;
184}
185
Igor Murashkin2ee54e22015-06-18 10:05:11 -0700186// Reads out the 'ArtMethod*' stored inside of vreg and vreg+1
187//
188// Validates that the art method points to a valid lambda function, otherwise throws
189// an exception and returns null.
190// (Exceptions are thrown by creating a new exception and then being put in the thread TLS)
191static inline ArtMethod* ReadLambdaClosureFromVRegsOrThrow(ShadowFrame& shadow_frame,
192 uint32_t vreg)
193 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
194 // TODO(iam): Introduce a closure abstraction that will contain the captured variables
195 // instead of just an ArtMethod.
196 // This is temporarily using 2 vregs because a native ArtMethod can be up to 64-bit,
197 // but once proper variable capture is implemented it will only use 1 vreg.
198 uint32_t vc_value_lo = shadow_frame.GetVReg(vreg);
199 uint32_t vc_value_hi = shadow_frame.GetVReg(vreg + 1);
200
201 uint64_t vc_value_ptr = (static_cast<uint64_t>(vc_value_hi) << BitSizeOf<uint32_t>())
202 | vc_value_lo;
203
204 // Use uint64_t instead of uintptr_t to allow left-shifting past the max on 32-bit.
205 static_assert(sizeof(uint64_t) >= sizeof(uintptr_t), "Impossible");
206 ArtMethod* const called_method = reinterpret_cast<ArtMethod* const>(vc_value_ptr);
207
208 // Guard against the user passing a null closure, which is odd but (sadly) semantically valid.
209 if (UNLIKELY(called_method == nullptr)) {
210 ThrowNullPointerExceptionFromInterpreter();
211 return nullptr;
212 } else if (UNLIKELY(!IsValidLambdaTargetOrThrow(called_method))) {
213 return nullptr;
214 }
215
216 return called_method;
217}
218
Igor Murashkin158f35c2015-06-10 15:55:30 -0700219template<bool do_access_check>
220static inline bool DoInvokeLambda(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
221 uint16_t inst_data, JValue* result) {
222 /*
223 * invoke-lambda is opcode 0x25
224 *
225 * - vC is the closure register (both vC and vC + 1 will be used to store the closure).
226 * - vB is the number of additional registers up to |{vD,vE,vF,vG}| (4)
227 * - the rest of the registers are always var-args
228 *
229 * - reading var-args for 0x25 gets us vD,vE,vF,vG (but not vB)
230 */
231 uint32_t vC = inst->VRegC_25x();
Igor Murashkin2ee54e22015-06-18 10:05:11 -0700232 ArtMethod* const called_method = ReadLambdaClosureFromVRegsOrThrow(shadow_frame, vC);
Igor Murashkin158f35c2015-06-10 15:55:30 -0700233
Igor Murashkin2ee54e22015-06-18 10:05:11 -0700234 // Failed lambda target runtime check, an exception was raised.
Igor Murashkin158f35c2015-06-10 15:55:30 -0700235 if (UNLIKELY(called_method == nullptr)) {
Igor Murashkin158f35c2015-06-10 15:55:30 -0700236 CHECK(self->IsExceptionPending());
237 result->SetJ(0);
238 return false;
Igor Murashkin158f35c2015-06-10 15:55:30 -0700239 }
Igor Murashkin2ee54e22015-06-18 10:05:11 -0700240
241 // Invoke a non-range lambda
242 return DoLambdaCall<false, do_access_check>(called_method, self, shadow_frame, inst, inst_data,
243 result);
Igor Murashkin158f35c2015-06-10 15:55:30 -0700244}
245
Sebastien Hertzc6714852013-09-30 16:42:32 +0200246// Handles invoke-XXX/range instructions.
247// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200248template<InvokeType type, bool is_range, bool do_access_check>
249static inline bool DoInvoke(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
250 uint16_t inst_data, JValue* result) {
251 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
252 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700253 Object* receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700254 ArtMethod* sf_method = shadow_frame.GetMethod();
Ian Rogerse94652f2014-12-02 11:13:19 -0800255 ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700256 method_idx, &receiver, &sf_method, self);
257 // The shadow frame should already be pushed, so we don't need to update it.
Ian Rogerse94652f2014-12-02 11:13:19 -0800258 if (UNLIKELY(called_method == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200259 CHECK(self->IsExceptionPending());
260 result->SetJ(0);
261 return false;
Ian Rogerse94652f2014-12-02 11:13:19 -0800262 } else if (UNLIKELY(called_method->IsAbstract())) {
263 ThrowAbstractMethodError(called_method);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200264 result->SetJ(0);
265 return false;
266 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800267 return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data,
268 result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200269 }
270}
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200271
Sebastien Hertzc6714852013-09-30 16:42:32 +0200272// Handles invoke-virtual-quick and invoke-virtual-quick-range instructions.
273// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200274template<bool is_range>
275static inline bool DoInvokeVirtualQuick(Thread* self, ShadowFrame& shadow_frame,
276 const Instruction* inst, uint16_t inst_data,
277 JValue* result) {
278 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
279 Object* const receiver = shadow_frame.GetVRegReference(vregC);
Sebastien Hertzd4beb6b2013-10-02 17:07:20 +0200280 if (UNLIKELY(receiver == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200281 // We lost the reference to the method index so we cannot get a more
282 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000283 ThrowNullPointerExceptionFromDexPC();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200284 return false;
285 }
286 const uint32_t vtable_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700287 CHECK(receiver->GetClass()->ShouldHaveEmbeddedImtAndVTable());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700288 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry(
289 vtable_idx, sizeof(void*));
Ian Rogerse94652f2014-12-02 11:13:19 -0800290 if (UNLIKELY(called_method == nullptr)) {
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200291 CHECK(self->IsExceptionPending());
292 result->SetJ(0);
293 return false;
Ian Rogerse94652f2014-12-02 11:13:19 -0800294 } else if (UNLIKELY(called_method->IsAbstract())) {
295 ThrowAbstractMethodError(called_method);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200296 result->SetJ(0);
297 return false;
298 } else {
299 // No need to check since we've been quickened.
Ian Rogerse94652f2014-12-02 11:13:19 -0800300 return DoCall<is_range, false>(called_method, self, shadow_frame, inst, inst_data, result);
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200301 }
302}
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200303
Sebastien Hertzc6714852013-09-30 16:42:32 +0200304// Handles iget-XXX and sget-XXX instructions.
305// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200306template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check>
Ian Rogers54874942014-06-10 16:31:03 -0700307bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
308 uint16_t inst_data) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200309
Sebastien Hertzc6714852013-09-30 16:42:32 +0200310// Handles iget-quick, iget-wide-quick and iget-object-quick instructions.
311// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200312template<Primitive::Type field_type>
Ian Rogers54874942014-06-10 16:31:03 -0700313bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
314 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz479fc1e2014-04-04 17:51:34 +0200315
Sebastien Hertzc6714852013-09-30 16:42:32 +0200316// Handles iput-XXX and sput-XXX instructions.
317// Returns true on success, otherwise throws an exception and returns false.
Ian Rogers54874942014-06-10 16:31:03 -0700318template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
319 bool transaction_active>
320bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst,
321 uint16_t inst_data) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200322
Sebastien Hertzc6714852013-09-30 16:42:32 +0200323// Handles iput-quick, iput-wide-quick and iput-object-quick instructions.
324// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100325template<Primitive::Type field_type, bool transaction_active>
Ian Rogers54874942014-06-10 16:31:03 -0700326bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
327 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
328
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200329
Sebastien Hertzc6714852013-09-30 16:42:32 +0200330// Handles string resolution for const-string and const-string-jumbo instructions. Also ensures the
331// java.lang.String class is initialized.
Ian Rogers6786a582014-10-28 12:49:06 -0700332static inline String* ResolveString(Thread* self, ShadowFrame& shadow_frame, uint32_t string_idx)
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
334 Class* java_lang_string_class = String::GetJavaLangString();
335 if (UNLIKELY(!java_lang_string_class->IsInitialized())) {
336 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700337 StackHandleScope<1> hs(self);
338 Handle<mirror::Class> h_class(hs.NewHandle(java_lang_string_class));
Ian Rogers7b078e82014-09-10 14:44:24 -0700339 if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200340 DCHECK(self->IsExceptionPending());
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800341 return nullptr;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200342 }
343 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700344 ArtMethod* method = shadow_frame.GetMethod();
Mathieu Chartiereace4582014-11-24 18:29:54 -0800345 mirror::Class* declaring_class = method->GetDeclaringClass();
346 mirror::String* s = declaring_class->GetDexCacheStrings()->Get(string_idx);
Ian Rogers6786a582014-10-28 12:49:06 -0700347 if (UNLIKELY(s == nullptr)) {
348 StackHandleScope<1> hs(self);
Mathieu Chartiereace4582014-11-24 18:29:54 -0800349 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
Ian Rogers6786a582014-10-28 12:49:06 -0700350 s = Runtime::Current()->GetClassLinker()->ResolveString(*method->GetDexFile(), string_idx,
351 dex_cache);
352 }
353 return s;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200354}
355
Sebastien Hertzc6714852013-09-30 16:42:32 +0200356// Handles div-int, div-int/2addr, div-int/li16 and div-int/lit8 instructions.
357// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200358static inline bool DoIntDivide(ShadowFrame& shadow_frame, size_t result_reg,
359 int32_t dividend, int32_t divisor)
360 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersf72a11d2014-10-30 15:41:08 -0700361 constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200362 if (UNLIKELY(divisor == 0)) {
363 ThrowArithmeticExceptionDivideByZero();
364 return false;
365 }
366 if (UNLIKELY(dividend == kMinInt && divisor == -1)) {
367 shadow_frame.SetVReg(result_reg, kMinInt);
368 } else {
369 shadow_frame.SetVReg(result_reg, dividend / divisor);
370 }
371 return true;
372}
373
Sebastien Hertzc6714852013-09-30 16:42:32 +0200374// Handles rem-int, rem-int/2addr, rem-int/li16 and rem-int/lit8 instructions.
375// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200376static inline bool DoIntRemainder(ShadowFrame& shadow_frame, size_t result_reg,
377 int32_t dividend, int32_t divisor)
378 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersf72a11d2014-10-30 15:41:08 -0700379 constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200380 if (UNLIKELY(divisor == 0)) {
381 ThrowArithmeticExceptionDivideByZero();
382 return false;
383 }
384 if (UNLIKELY(dividend == kMinInt && divisor == -1)) {
385 shadow_frame.SetVReg(result_reg, 0);
386 } else {
387 shadow_frame.SetVReg(result_reg, dividend % divisor);
388 }
389 return true;
390}
391
Sebastien Hertzc6714852013-09-30 16:42:32 +0200392// Handles div-long and div-long-2addr instructions.
393// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200394static inline bool DoLongDivide(ShadowFrame& shadow_frame, size_t result_reg,
395 int64_t dividend, int64_t divisor)
396 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700397 const int64_t kMinLong = std::numeric_limits<int64_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200398 if (UNLIKELY(divisor == 0)) {
399 ThrowArithmeticExceptionDivideByZero();
400 return false;
401 }
402 if (UNLIKELY(dividend == kMinLong && divisor == -1)) {
403 shadow_frame.SetVRegLong(result_reg, kMinLong);
404 } else {
405 shadow_frame.SetVRegLong(result_reg, dividend / divisor);
406 }
407 return true;
408}
409
Sebastien Hertzc6714852013-09-30 16:42:32 +0200410// Handles rem-long and rem-long-2addr instructions.
411// Returns true on success, otherwise throws a java.lang.ArithmeticException and return false.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200412static inline bool DoLongRemainder(ShadowFrame& shadow_frame, size_t result_reg,
413 int64_t dividend, int64_t divisor)
414 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2e2deeb2013-09-23 11:58:57 -0700415 const int64_t kMinLong = std::numeric_limits<int64_t>::min();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200416 if (UNLIKELY(divisor == 0)) {
417 ThrowArithmeticExceptionDivideByZero();
418 return false;
419 }
420 if (UNLIKELY(dividend == kMinLong && divisor == -1)) {
421 shadow_frame.SetVRegLong(result_reg, 0);
422 } else {
423 shadow_frame.SetVRegLong(result_reg, dividend % divisor);
424 }
425 return true;
426}
427
Sebastien Hertzc6714852013-09-30 16:42:32 +0200428// Handles filled-new-array and filled-new-array-range instructions.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200429// Returns true on success, otherwise throws an exception and returns false.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100430template <bool is_range, bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200431bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
Sebastien Hertzc6714852013-09-30 16:42:32 +0200432 Thread* self, JValue* result);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200433
Sebastien Hertzc6714852013-09-30 16:42:32 +0200434// Handles packed-switch instruction.
435// Returns the branch offset to the next instruction to execute.
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200436static inline int32_t DoPackedSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
437 uint16_t inst_data)
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
439 DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH);
440 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200441 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200442 DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kPackedSwitchSignature));
443 uint16_t size = switch_data[1];
David Brazdil2ef645b2015-06-17 18:20:52 +0100444 if (size == 0) {
445 // Empty packed switch, move forward by 3 (size of PACKED_SWITCH).
446 return 3;
447 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200448 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]);
Roland Levillain14d90572015-07-16 10:52:26 +0100449 DCHECK_ALIGNED(keys, 4);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200450 int32_t first_key = keys[0];
451 const int32_t* targets = reinterpret_cast<const int32_t*>(&switch_data[4]);
Roland Levillain14d90572015-07-16 10:52:26 +0100452 DCHECK_ALIGNED(targets, 4);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200453 int32_t index = test_val - first_key;
454 if (index >= 0 && index < size) {
455 return targets[index];
456 } else {
457 // No corresponding value: move forward by 3 (size of PACKED_SWITCH).
458 return 3;
459 }
460}
461
Sebastien Hertzc6714852013-09-30 16:42:32 +0200462// Handles sparse-switch instruction.
463// Returns the branch offset to the next instruction to execute.
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200464static inline int32_t DoSparseSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
465 uint16_t inst_data)
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200466 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
467 DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH);
468 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
Sebastien Hertz3b588e02013-09-11 14:33:18 +0200469 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200470 DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kSparseSwitchSignature));
471 uint16_t size = switch_data[1];
Jeff Hao935e01a2015-03-20 19:44:35 -0700472 // Return length of SPARSE_SWITCH if size is 0.
473 if (size == 0) {
474 return 3;
475 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200476 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]);
Roland Levillain14d90572015-07-16 10:52:26 +0100477 DCHECK_ALIGNED(keys, 4);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200478 const int32_t* entries = keys + size;
Roland Levillain14d90572015-07-16 10:52:26 +0100479 DCHECK_ALIGNED(entries, 4);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200480 int lo = 0;
481 int hi = size - 1;
482 while (lo <= hi) {
483 int mid = (lo + hi) / 2;
484 int32_t foundVal = keys[mid];
485 if (test_val < foundVal) {
486 hi = mid - 1;
487 } else if (test_val > foundVal) {
488 lo = mid + 1;
489 } else {
490 return entries[mid];
491 }
492 }
493 // No corresponding value: move forward by 3 (size of SPARSE_SWITCH).
494 return 3;
495}
496
Igor Murashkin2ee54e22015-06-18 10:05:11 -0700497template <bool _do_check>
498static inline bool DoBoxLambda(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
499 uint16_t inst_data) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
500 /*
501 * box-lambda vA, vB /// opcode 0xf8, format 22x
502 * - vA is the target register where the Object representation of the closure will be stored into
503 * - vB is a closure (made by create-lambda)
504 * (also reads vB + 1)
505 */
506 uint32_t vreg_target_object = inst->VRegA_22x(inst_data);
507 uint32_t vreg_source_closure = inst->VRegB_22x();
508
509 ArtMethod* const closure_method = ReadLambdaClosureFromVRegsOrThrow(shadow_frame,
510 vreg_source_closure);
511
512 // Failed lambda target runtime check, an exception was raised.
513 if (UNLIKELY(closure_method == nullptr)) {
514 CHECK(self->IsExceptionPending());
515 return false;
516 }
517
518 // Convert the ArtMethod into a java.lang.reflect.Method which will serve
519 // as the temporary 'boxed' version of the lambda. This is good enough
520 // to check all the basic object identities that a boxed lambda must retain.
521
522 // TODO: Boxing an innate lambda (i.e. made with create-lambda) should make a proxy class
523 // TODO: Boxing a learned lambda (i.e. made with unbox-lambda) should return the original object
524 // TODO: Repeated boxing should return the same object reference
525 mirror::Method* method_as_object =
526 mirror::Method::CreateFromArtMethod(self, closure_method);
527
528 if (UNLIKELY(method_as_object == nullptr)) {
529 // Most likely an OOM has occurred.
530 CHECK(self->IsExceptionPending());
531 return false;
532 }
533
534 shadow_frame.SetVRegReference(vreg_target_object, method_as_object);
535 return true;
536}
537
538template <bool _do_check> SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
539static inline bool DoUnboxLambda(Thread* self ATTRIBUTE_UNUSED,
540 ShadowFrame& shadow_frame,
541 const Instruction* inst,
542 uint16_t inst_data) {
543 /*
544 * unbox-lambda vA, vB, [type id] /// opcode 0xf9, format 22c
545 * - vA is the target register where the closure will be written into
546 * (also writes vA + 1)
547 * - vB is the Object representation of the closure (made by box-lambda)
548 */
549 uint32_t vreg_target_closure = inst->VRegA_22c(inst_data);
550 uint32_t vreg_source_object = inst->VRegB_22c();
551
552 // Raise NullPointerException if object is null
553 mirror::Object* boxed_closure_object = shadow_frame.GetVRegReference(vreg_source_object);
554 if (UNLIKELY(boxed_closure_object == nullptr)) {
555 ThrowNullPointerExceptionFromInterpreter();
556 return false;
557 }
558
559 // Raise ClassCastException if object is not instanceof java.lang.reflect.Method
560 if (UNLIKELY(!boxed_closure_object->InstanceOf(mirror::Method::StaticClass()))) {
561 ThrowClassCastException(mirror::Method::StaticClass(), boxed_closure_object->GetClass());
562 return false;
563 }
564
565 // TODO(iam): We must check that the closure object extends/implements the type
566 // specified in [type id]. This is not currently implemented since it's always a Method.
567
568 // If we got this far, the inputs are valid.
569 // Write out the java.lang.reflect.Method's embedded ArtMethod* into the vreg target.
570 mirror::AbstractMethod* boxed_closure_as_method =
571 down_cast<mirror::AbstractMethod*>(boxed_closure_object);
572
573 ArtMethod* unboxed_closure = boxed_closure_as_method->GetArtMethod();
574 DCHECK(unboxed_closure != nullptr);
575
576 WriteLambdaClosureIntoVRegs(shadow_frame, *unboxed_closure, vreg_target_closure);
577 return true;
578}
579
Ian Rogers54874942014-06-10 16:31:03 -0700580uint32_t FindNextInstructionFollowingException(Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertz9f102032014-05-23 08:59:42 +0200581 uint32_t dex_pc, const instrumentation::Instrumentation* instrumentation)
Ian Rogers54874942014-06-10 16:31:03 -0700582 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200583
Andreas Gampe794ad762015-02-23 08:12:24 -0800584NO_RETURN void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame)
585 __attribute__((cold))
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800586 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200587
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200588static inline void TraceExecution(const ShadowFrame& shadow_frame, const Instruction* inst,
Ian Rogerse94652f2014-12-02 11:13:19 -0800589 const uint32_t dex_pc)
Jeff Haoa3faaf42013-09-03 19:07:00 -0700590 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700591 constexpr bool kTracing = false;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200592 if (kTracing) {
593#define TRACE_LOG std::cerr
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700594 std::ostringstream oss;
595 oss << PrettyMethod(shadow_frame.GetMethod())
596 << StringPrintf("\n0x%x: ", dex_pc)
Ian Rogerse94652f2014-12-02 11:13:19 -0800597 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n";
Ian Rogersef7d42f2014-01-06 12:55:46 -0800598 for (uint32_t i = 0; i < shadow_frame.NumberOfVRegs(); ++i) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200599 uint32_t raw_value = shadow_frame.GetVReg(i);
600 Object* ref_value = shadow_frame.GetVRegReference(i);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800601 oss << StringPrintf(" vreg%u=0x%08X", i, raw_value);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700602 if (ref_value != nullptr) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200603 if (ref_value->GetClass()->IsStringClass() &&
Jeff Hao848f70a2014-01-15 13:49:50 -0800604 ref_value->AsString()->GetValue() != nullptr) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700605 oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\"";
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200606 } else {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700607 oss << "/" << PrettyTypeOf(ref_value);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200608 }
609 }
610 }
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700611 TRACE_LOG << oss.str() << "\n";
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200612#undef TRACE_LOG
613 }
614}
615
Sebastien Hertz1eda2262013-09-09 16:53:14 +0200616static inline bool IsBackwardBranch(int32_t branch_offset) {
617 return branch_offset <= 0;
618}
619
Sebastien Hertzc6714852013-09-30 16:42:32 +0200620// Explicitly instantiate all DoInvoke functions.
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100621#define EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, _is_range, _do_check) \
Ian Rogers54874942014-06-10 16:31:03 -0700622 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100623 bool DoInvoke<_type, _is_range, _do_check>(Thread* self, ShadowFrame& shadow_frame, \
624 const Instruction* inst, uint16_t inst_data, \
625 JValue* result)
Sebastien Hertzc6714852013-09-30 16:42:32 +0200626
627#define EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(_type) \
628 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, false); \
629 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, true); \
630 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, false); \
631 EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, true);
632
Andreas Gampec8ccf682014-09-29 20:07:43 -0700633EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kStatic) // invoke-static/range.
634EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kDirect) // invoke-direct/range.
635EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kVirtual) // invoke-virtual/range.
636EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kSuper) // invoke-super/range.
637EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kInterface) // invoke-interface/range.
Sebastien Hertzc6714852013-09-30 16:42:32 +0200638#undef EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL
639#undef EXPLICIT_DO_INVOKE_TEMPLATE_DECL
640
Sebastien Hertzc6714852013-09-30 16:42:32 +0200641// Explicitly instantiate all DoInvokeVirtualQuick functions.
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100642#define EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(_is_range) \
Ian Rogers54874942014-06-10 16:31:03 -0700643 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100644 bool DoInvokeVirtualQuick<_is_range>(Thread* self, ShadowFrame& shadow_frame, \
645 const Instruction* inst, uint16_t inst_data, \
646 JValue* result)
Sebastien Hertzc6714852013-09-30 16:42:32 +0200647
648EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(false); // invoke-virtual-quick.
649EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(true); // invoke-virtual-quick-range.
650#undef EXPLICIT_INSTANTIATION_DO_INVOKE_VIRTUAL_QUICK
651
Igor Murashkin158f35c2015-06-10 15:55:30 -0700652// Explicitly instantiate all DoCreateLambda functions.
653#define EXPLICIT_DO_CREATE_LAMBDA_DECL(_do_check) \
654template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
655bool DoCreateLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, \
656 const Instruction* inst)
657
658EXPLICIT_DO_CREATE_LAMBDA_DECL(false); // create-lambda
659EXPLICIT_DO_CREATE_LAMBDA_DECL(true); // create-lambda
660#undef EXPLICIT_DO_CREATE_LAMBDA_DECL
661
662// Explicitly instantiate all DoInvokeLambda functions.
663#define EXPLICIT_DO_INVOKE_LAMBDA_DECL(_do_check) \
664template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
665bool DoInvokeLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \
666 uint16_t inst_data, JValue* result);
667
668EXPLICIT_DO_INVOKE_LAMBDA_DECL(false); // invoke-lambda
669EXPLICIT_DO_INVOKE_LAMBDA_DECL(true); // invoke-lambda
670#undef EXPLICIT_DO_INVOKE_LAMBDA_DECL
671
Igor Murashkin2ee54e22015-06-18 10:05:11 -0700672// Explicitly instantiate all DoBoxLambda functions.
673#define EXPLICIT_DO_BOX_LAMBDA_DECL(_do_check) \
674template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
675bool DoBoxLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \
676 uint16_t inst_data);
677
678EXPLICIT_DO_BOX_LAMBDA_DECL(false); // box-lambda
679EXPLICIT_DO_BOX_LAMBDA_DECL(true); // box-lambda
680#undef EXPLICIT_DO_BOX_LAMBDA_DECL
681
682// Explicitly instantiate all DoUnBoxLambda functions.
683#define EXPLICIT_DO_UNBOX_LAMBDA_DECL(_do_check) \
684template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
685bool DoUnboxLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \
686 uint16_t inst_data);
687
688EXPLICIT_DO_UNBOX_LAMBDA_DECL(false); // unbox-lambda
689EXPLICIT_DO_UNBOX_LAMBDA_DECL(true); // unbox-lambda
690#undef EXPLICIT_DO_BOX_LAMBDA_DECL
691
Sebastien Hertzc6714852013-09-30 16:42:32 +0200692
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200693} // namespace interpreter
694} // namespace art
695
696#endif // ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_