blob: 8c825f3f978fee6ce4269f7fc467db7a8339d537 [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#include "interpreter_common.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070018
Andreas Gampef0e128a2015-02-27 20:08:34 -080019#include <cmath>
20
Andreas Gampe542451c2016-07-26 09:02:02 -070021#include "base/enums.h"
Daniel Mihalyieb076692014-08-22 17:33:31 +020022#include "debugger.h"
Nicolas Geoffray7bf2b4f2015-07-08 10:11:59 +000023#include "entrypoints/runtime_asm_entrypoints.h"
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +000024#include "jit/jit.h"
Narayan Kamath9823e782016-08-03 12:46:58 +010025#include "jvalue.h"
Narayan Kamath208f8572016-08-03 12:46:58 +010026#include "method_handles-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070027#include "method_handles.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010028#include "mirror/array-inl.h"
Narayan Kamath9823e782016-08-03 12:46:58 +010029#include "mirror/class.h"
Narayan Kamath000e1882016-10-24 17:14:25 +010030#include "mirror/emulated_stack_frame.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080031#include "mirror/method_handle_impl-inl.h"
Narayan Kamath9823e782016-08-03 12:46:58 +010032#include "reflection-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070033#include "reflection.h"
Andreas Gampeb3025922015-09-01 14:45:00 -070034#include "stack.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070035#include "thread-inl.h"
Chang Xingbd208d82017-07-12 14:53:17 -070036#include "transaction.h"
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +010037#include "well_known_classes.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020038
39namespace art {
40namespace interpreter {
41
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000042void ThrowNullPointerExceptionFromInterpreter() {
43 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -070044}
45
Chang Xingbd208d82017-07-12 14:53:17 -070046template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
47 bool transaction_active>
Ian Rogers54874942014-06-10 16:31:03 -070048bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
49 uint16_t inst_data) {
50 const bool is_static = (find_type == StaticObjectRead) || (find_type == StaticPrimitiveRead);
51 const uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
Roland Levillain4b8f1ec2015-08-26 18:34:03 +010052 ArtField* f =
53 FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
54 Primitive::ComponentSize(field_type));
Ian Rogers54874942014-06-10 16:31:03 -070055 if (UNLIKELY(f == nullptr)) {
56 CHECK(self->IsExceptionPending());
57 return false;
58 }
Mathieu Chartieref41db72016-10-25 15:08:01 -070059 ObjPtr<mirror::Object> obj;
Ian Rogers54874942014-06-10 16:31:03 -070060 if (is_static) {
61 obj = f->GetDeclaringClass();
Chang Xingbd208d82017-07-12 14:53:17 -070062 if (transaction_active) {
63 if (Runtime::Current()->GetTransaction()->ReadConstraint(obj.Ptr(), f)) {
64 Runtime::Current()->AbortTransactionAndThrowAbortError(self, "Can't read static fields of "
65 + obj->PrettyTypeOf() + " since it does not belong to clinit's class.");
66 return false;
67 }
68 }
Ian Rogers54874942014-06-10 16:31:03 -070069 } else {
70 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
71 if (UNLIKELY(obj == nullptr)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000072 ThrowNullPointerExceptionForFieldAccess(f, true);
Ian Rogers54874942014-06-10 16:31:03 -070073 return false;
74 }
75 }
Orion Hodson3d617ac2016-10-19 14:00:46 +010076
77 JValue result;
Alex Light084fa372017-06-16 08:58:34 -070078 if (UNLIKELY(!DoFieldGetCommon<field_type>(self, shadow_frame, obj, f, &result))) {
79 // Instrumentation threw an error!
80 CHECK(self->IsExceptionPending());
81 return false;
82 }
Ian Rogers54874942014-06-10 16:31:03 -070083 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
84 switch (field_type) {
85 case Primitive::kPrimBoolean:
Orion Hodson3d617ac2016-10-19 14:00:46 +010086 shadow_frame.SetVReg(vregA, result.GetZ());
Ian Rogers54874942014-06-10 16:31:03 -070087 break;
88 case Primitive::kPrimByte:
Orion Hodson3d617ac2016-10-19 14:00:46 +010089 shadow_frame.SetVReg(vregA, result.GetB());
Ian Rogers54874942014-06-10 16:31:03 -070090 break;
91 case Primitive::kPrimChar:
Orion Hodson3d617ac2016-10-19 14:00:46 +010092 shadow_frame.SetVReg(vregA, result.GetC());
Ian Rogers54874942014-06-10 16:31:03 -070093 break;
94 case Primitive::kPrimShort:
Orion Hodson3d617ac2016-10-19 14:00:46 +010095 shadow_frame.SetVReg(vregA, result.GetS());
Ian Rogers54874942014-06-10 16:31:03 -070096 break;
97 case Primitive::kPrimInt:
Orion Hodson3d617ac2016-10-19 14:00:46 +010098 shadow_frame.SetVReg(vregA, result.GetI());
Ian Rogers54874942014-06-10 16:31:03 -070099 break;
100 case Primitive::kPrimLong:
Orion Hodson3d617ac2016-10-19 14:00:46 +0100101 shadow_frame.SetVRegLong(vregA, result.GetJ());
Ian Rogers54874942014-06-10 16:31:03 -0700102 break;
103 case Primitive::kPrimNot:
Orion Hodson3d617ac2016-10-19 14:00:46 +0100104 shadow_frame.SetVRegReference(vregA, result.GetL());
Ian Rogers54874942014-06-10 16:31:03 -0700105 break;
106 default:
107 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700108 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700109 }
110 return true;
111}
112
113// Explicitly instantiate all DoFieldGet functions.
Chang Xingbd208d82017-07-12 14:53:17 -0700114#define EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, _do_check, _transaction_active) \
115 template bool DoFieldGet<_find_type, _field_type, _do_check, _transaction_active>(Thread* self, \
Ian Rogers54874942014-06-10 16:31:03 -0700116 ShadowFrame& shadow_frame, \
117 const Instruction* inst, \
118 uint16_t inst_data)
119
120#define EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(_find_type, _field_type) \
Chang Xingbd208d82017-07-12 14:53:17 -0700121 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, false, true); \
122 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, false, false); \
123 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, true, true); \
124 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, true, false);
Ian Rogers54874942014-06-10 16:31:03 -0700125
126// iget-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700127EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimBoolean)
128EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimByte)
129EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimChar)
130EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimShort)
131EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimInt)
132EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimLong)
133EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstanceObjectRead, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700134
135// sget-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700136EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimBoolean)
137EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimByte)
138EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimChar)
139EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimShort)
140EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimInt)
141EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimLong)
142EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticObjectRead, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700143
144#undef EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL
145#undef EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL
146
147// Handles iget-quick, iget-wide-quick and iget-object-quick instructions.
148// Returns true on success, otherwise throws an exception and returns false.
149template<Primitive::Type field_type>
150bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) {
Mathieu Chartieref41db72016-10-25 15:08:01 -0700151 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
Ian Rogers54874942014-06-10 16:31:03 -0700152 if (UNLIKELY(obj == nullptr)) {
153 // We lost the reference to the field index so we cannot get a more
154 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000155 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -0700156 return false;
157 }
158 MemberOffset field_offset(inst->VRegC_22c());
159 // Report this field access to instrumentation if needed. Since we only have the offset of
160 // the field from the base of the object, we need to look for it first.
161 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
162 if (UNLIKELY(instrumentation->HasFieldReadListeners())) {
163 ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(),
164 field_offset.Uint32Value());
165 DCHECK(f != nullptr);
166 DCHECK(!f->IsStatic());
Alex Light084fa372017-06-16 08:58:34 -0700167 Thread* self = Thread::Current();
168 StackHandleScope<1> hs(self);
Mathieu Chartiera3147732016-10-26 22:57:02 -0700169 // Save obj in case the instrumentation event has thread suspension.
170 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj);
Alex Light084fa372017-06-16 08:58:34 -0700171 instrumentation->FieldReadEvent(self,
Mathieu Chartieref41db72016-10-25 15:08:01 -0700172 obj.Ptr(),
173 shadow_frame.GetMethod(),
174 shadow_frame.GetDexPC(),
175 f);
Alex Light084fa372017-06-16 08:58:34 -0700176 if (UNLIKELY(self->IsExceptionPending())) {
177 return false;
178 }
Ian Rogers54874942014-06-10 16:31:03 -0700179 }
180 // Note: iget-x-quick instructions are only for non-volatile fields.
181 const uint32_t vregA = inst->VRegA_22c(inst_data);
182 switch (field_type) {
183 case Primitive::kPrimInt:
184 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset)));
185 break;
Mathieu Chartierffc605c2014-12-10 10:35:44 -0800186 case Primitive::kPrimBoolean:
187 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset)));
188 break;
189 case Primitive::kPrimByte:
190 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset)));
191 break;
192 case Primitive::kPrimChar:
193 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset)));
194 break;
195 case Primitive::kPrimShort:
196 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldShort(field_offset)));
197 break;
Ian Rogers54874942014-06-10 16:31:03 -0700198 case Primitive::kPrimLong:
199 shadow_frame.SetVRegLong(vregA, static_cast<int64_t>(obj->GetField64(field_offset)));
200 break;
201 case Primitive::kPrimNot:
202 shadow_frame.SetVRegReference(vregA, obj->GetFieldObject<mirror::Object>(field_offset));
203 break;
204 default:
205 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700206 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700207 }
208 return true;
209}
210
211// Explicitly instantiate all DoIGetQuick functions.
212#define EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(_field_type) \
213 template bool DoIGetQuick<_field_type>(ShadowFrame& shadow_frame, const Instruction* inst, \
214 uint16_t inst_data)
215
Mathieu Chartierffc605c2014-12-10 10:35:44 -0800216EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimInt); // iget-quick.
217EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimBoolean); // iget-boolean-quick.
218EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimByte); // iget-byte-quick.
219EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimChar); // iget-char-quick.
220EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimShort); // iget-short-quick.
221EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimLong); // iget-wide-quick.
222EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimNot); // iget-object-quick.
Ian Rogers54874942014-06-10 16:31:03 -0700223#undef EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL
224
225template<Primitive::Type field_type>
226static JValue GetFieldValue(const ShadowFrame& shadow_frame, uint32_t vreg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700227 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers54874942014-06-10 16:31:03 -0700228 JValue field_value;
229 switch (field_type) {
230 case Primitive::kPrimBoolean:
231 field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg)));
232 break;
233 case Primitive::kPrimByte:
234 field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg)));
235 break;
236 case Primitive::kPrimChar:
237 field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg)));
238 break;
239 case Primitive::kPrimShort:
240 field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg)));
241 break;
242 case Primitive::kPrimInt:
243 field_value.SetI(shadow_frame.GetVReg(vreg));
244 break;
245 case Primitive::kPrimLong:
246 field_value.SetJ(shadow_frame.GetVRegLong(vreg));
247 break;
248 case Primitive::kPrimNot:
249 field_value.SetL(shadow_frame.GetVRegReference(vreg));
250 break;
251 default:
252 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700253 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700254 }
255 return field_value;
256}
257
Orion Hodson3d617ac2016-10-19 14:00:46 +0100258template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
259 bool transaction_active>
260bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst,
261 uint16_t inst_data) {
262 const bool do_assignability_check = do_access_check;
263 bool is_static = (find_type == StaticObjectWrite) || (find_type == StaticPrimitiveWrite);
264 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
265 ArtField* f =
266 FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
267 Primitive::ComponentSize(field_type));
268 if (UNLIKELY(f == nullptr)) {
269 CHECK(self->IsExceptionPending());
270 return false;
271 }
272 ObjPtr<mirror::Object> obj;
273 if (is_static) {
274 obj = f->GetDeclaringClass();
Chang Xingbd208d82017-07-12 14:53:17 -0700275 if (transaction_active) {
276 if (Runtime::Current()->GetTransaction()->WriteConstraint(obj.Ptr(), f)) {
277 Runtime::Current()->AbortTransactionAndThrowAbortError(
278 self, "Can't set fields of " + obj->PrettyTypeOf());
279 return false;
280 }
281 }
282
Orion Hodson3d617ac2016-10-19 14:00:46 +0100283 } else {
284 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
285 if (UNLIKELY(obj == nullptr)) {
286 ThrowNullPointerExceptionForFieldAccess(f, false);
287 return false;
288 }
289 }
290
291 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100292 JValue value = GetFieldValue<field_type>(shadow_frame, vregA);
Orion Hodson3d617ac2016-10-19 14:00:46 +0100293 return DoFieldPutCommon<field_type, do_assignability_check, transaction_active>(self,
294 shadow_frame,
295 obj,
296 f,
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100297 value);
Orion Hodson3d617ac2016-10-19 14:00:46 +0100298}
299
Ian Rogers54874942014-06-10 16:31:03 -0700300// Explicitly instantiate all DoFieldPut functions.
301#define EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, _do_check, _transaction_active) \
302 template bool DoFieldPut<_find_type, _field_type, _do_check, _transaction_active>(Thread* self, \
303 const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
304
305#define EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(_find_type, _field_type) \
306 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, false); \
307 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, false); \
308 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, true); \
309 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, true);
310
311// iput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700312EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimBoolean)
313EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimByte)
314EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimChar)
315EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimShort)
316EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimInt)
317EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimLong)
318EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstanceObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700319
320// sput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700321EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimBoolean)
322EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimByte)
323EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimChar)
324EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimShort)
325EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimInt)
326EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimLong)
327EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700328
329#undef EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL
330#undef EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL
331
332template<Primitive::Type field_type, bool transaction_active>
333bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) {
Mathieu Chartieref41db72016-10-25 15:08:01 -0700334 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
Ian Rogers54874942014-06-10 16:31:03 -0700335 if (UNLIKELY(obj == nullptr)) {
336 // We lost the reference to the field index so we cannot get a more
337 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000338 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -0700339 return false;
340 }
341 MemberOffset field_offset(inst->VRegC_22c());
342 const uint32_t vregA = inst->VRegA_22c(inst_data);
343 // Report this field modification to instrumentation if needed. Since we only have the offset of
344 // the field from the base of the object, we need to look for it first.
345 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
346 if (UNLIKELY(instrumentation->HasFieldWriteListeners())) {
347 ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(),
348 field_offset.Uint32Value());
349 DCHECK(f != nullptr);
350 DCHECK(!f->IsStatic());
351 JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA);
Alex Light084fa372017-06-16 08:58:34 -0700352 Thread* self = Thread::Current();
353 StackHandleScope<2> hs(self);
Mathieu Chartiera3147732016-10-26 22:57:02 -0700354 // Save obj in case the instrumentation event has thread suspension.
355 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj);
Alex Light084fa372017-06-16 08:58:34 -0700356 mirror::Object* fake_root = nullptr;
357 HandleWrapper<mirror::Object> ret(hs.NewHandleWrapper<mirror::Object>(
358 field_type == Primitive::kPrimNot ? field_value.GetGCRoot() : &fake_root));
359 instrumentation->FieldWriteEvent(self,
Mathieu Chartieref41db72016-10-25 15:08:01 -0700360 obj.Ptr(),
361 shadow_frame.GetMethod(),
362 shadow_frame.GetDexPC(),
363 f,
364 field_value);
Alex Light084fa372017-06-16 08:58:34 -0700365 if (UNLIKELY(self->IsExceptionPending())) {
366 return false;
367 }
Ian Rogers54874942014-06-10 16:31:03 -0700368 }
369 // Note: iput-x-quick instructions are only for non-volatile fields.
370 switch (field_type) {
Fred Shih37f05ef2014-07-16 18:38:08 -0700371 case Primitive::kPrimBoolean:
372 obj->SetFieldBoolean<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
373 break;
374 case Primitive::kPrimByte:
375 obj->SetFieldByte<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
376 break;
377 case Primitive::kPrimChar:
378 obj->SetFieldChar<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
379 break;
380 case Primitive::kPrimShort:
381 obj->SetFieldShort<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
382 break;
Ian Rogers54874942014-06-10 16:31:03 -0700383 case Primitive::kPrimInt:
384 obj->SetField32<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
385 break;
386 case Primitive::kPrimLong:
387 obj->SetField64<transaction_active>(field_offset, shadow_frame.GetVRegLong(vregA));
388 break;
389 case Primitive::kPrimNot:
390 obj->SetFieldObject<transaction_active>(field_offset, shadow_frame.GetVRegReference(vregA));
391 break;
392 default:
393 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700394 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700395 }
396 return true;
397}
398
399// Explicitly instantiate all DoIPutQuick functions.
400#define EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, _transaction_active) \
401 template bool DoIPutQuick<_field_type, _transaction_active>(const ShadowFrame& shadow_frame, \
402 const Instruction* inst, \
403 uint16_t inst_data)
404
405#define EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(_field_type) \
406 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, false); \
407 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, true);
408
Andreas Gampec8ccf682014-09-29 20:07:43 -0700409EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimInt) // iput-quick.
410EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimBoolean) // iput-boolean-quick.
411EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimByte) // iput-byte-quick.
412EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimChar) // iput-char-quick.
413EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimShort) // iput-short-quick.
414EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimLong) // iput-wide-quick.
415EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimNot) // iput-object-quick.
Ian Rogers54874942014-06-10 16:31:03 -0700416#undef EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL
417#undef EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL
418
Sebastien Hertz520633b2015-09-08 17:03:36 +0200419// We accept a null Instrumentation* meaning we must not report anything to the instrumentation.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700420uint32_t FindNextInstructionFollowingException(
421 Thread* self, ShadowFrame& shadow_frame, uint32_t dex_pc,
422 const instrumentation::Instrumentation* instrumentation) {
Ian Rogers54874942014-06-10 16:31:03 -0700423 self->VerifyStack();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700424 StackHandleScope<2> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000425 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Alex Light6e1607e2017-08-23 10:06:18 -0700426 if (instrumentation != nullptr && instrumentation->HasExceptionThrownListeners()
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000427 && self->IsExceptionThrownByCurrentMethod(exception.Get())) {
Alex Light6e1607e2017-08-23 10:06:18 -0700428 instrumentation->ExceptionThrownEvent(self, exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +0200429 }
Ian Rogers54874942014-06-10 16:31:03 -0700430 bool clear_exception = false;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700431 uint32_t found_dex_pc = shadow_frame.GetMethod()->FindCatchBlock(
432 hs.NewHandle(exception->GetClass()), dex_pc, &clear_exception);
Sebastien Hertz520633b2015-09-08 17:03:36 +0200433 if (found_dex_pc == DexFile::kDexNoIndex && instrumentation != nullptr) {
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000434 // Exception is not caught by the current method. We will unwind to the
435 // caller. Notify any instrumentation listener.
Sebastien Hertz9f102032014-05-23 08:59:42 +0200436 instrumentation->MethodUnwindEvent(self, shadow_frame.GetThisObject(),
Ian Rogers54874942014-06-10 16:31:03 -0700437 shadow_frame.GetMethod(), dex_pc);
438 } else {
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000439 // Exception is caught in the current method. We will jump to the found_dex_pc.
Ian Rogers54874942014-06-10 16:31:03 -0700440 if (clear_exception) {
441 self->ClearException();
442 }
443 }
444 return found_dex_pc;
445}
446
Ian Rogerse94652f2014-12-02 11:13:19 -0800447void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) {
448 LOG(FATAL) << "Unexpected instruction: "
449 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile());
450 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700451}
452
Sebastien Hertz45b15972015-04-03 16:07:05 +0200453void AbortTransactionF(Thread* self, const char* fmt, ...) {
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700454 va_list args;
455 va_start(args, fmt);
Sebastien Hertz45b15972015-04-03 16:07:05 +0200456 AbortTransactionV(self, fmt, args);
457 va_end(args);
458}
459
460void AbortTransactionV(Thread* self, const char* fmt, va_list args) {
461 CHECK(Runtime::Current()->IsActiveTransaction());
462 // Constructs abort message.
Sebastien Hertz1c80bec2015-02-03 11:58:06 +0100463 std::string abort_msg;
Andreas Gampe46ee31b2016-12-14 10:11:49 -0800464 android::base::StringAppendV(&abort_msg, fmt, args);
Sebastien Hertz1c80bec2015-02-03 11:58:06 +0100465 // Throws an exception so we can abort the transaction and rollback every change.
Sebastien Hertz2fd7e692015-04-02 11:11:19 +0200466 Runtime::Current()->AbortTransactionAndThrowAbortError(self, abort_msg);
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700467}
468
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100469// START DECLARATIONS :
470//
471// These additional declarations are required because clang complains
472// about ALWAYS_INLINE (-Werror, -Wgcc-compat) in definitions.
473//
474
Narayan Kamath9823e782016-08-03 12:46:58 +0100475template <bool is_range, bool do_assignability_check>
Vladimir Markod16363a2017-02-01 14:09:13 +0000476static ALWAYS_INLINE bool DoCallCommon(ArtMethod* called_method,
477 Thread* self,
478 ShadowFrame& shadow_frame,
479 JValue* result,
480 uint16_t number_of_inputs,
481 uint32_t (&arg)[Instruction::kMaxVarArgRegs],
482 uint32_t vregC) REQUIRES_SHARED(Locks::mutator_lock_);
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100483
484template <bool is_range>
Narayan Kamath2cb856c2016-11-02 12:01:26 +0000485ALWAYS_INLINE void CopyRegisters(ShadowFrame& caller_frame,
486 ShadowFrame* callee_frame,
487 const uint32_t (&arg)[Instruction::kMaxVarArgRegs],
488 const size_t first_src_reg,
489 const size_t first_dest_reg,
490 const size_t num_regs) REQUIRES_SHARED(Locks::mutator_lock_);
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100491
492// END DECLARATIONS.
493
Siva Chandra05d24152016-01-05 17:43:17 -0800494void ArtInterpreterToCompiledCodeBridge(Thread* self,
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100495 ArtMethod* caller,
Siva Chandra05d24152016-01-05 17:43:17 -0800496 ShadowFrame* shadow_frame,
Jeff Hao5ea84132017-05-05 16:59:29 -0700497 uint16_t arg_offset,
Siva Chandra05d24152016-01-05 17:43:17 -0800498 JValue* result)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700499 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700500 ArtMethod* method = shadow_frame->GetMethod();
501 // Ensure static methods are initialized.
502 if (method->IsStatic()) {
Mathieu Chartieref41db72016-10-25 15:08:01 -0700503 ObjPtr<mirror::Class> declaringClass = method->GetDeclaringClass();
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700504 if (UNLIKELY(!declaringClass->IsInitialized())) {
505 self->PushShadowFrame(shadow_frame);
506 StackHandleScope<1> hs(self);
507 Handle<mirror::Class> h_class(hs.NewHandle(declaringClass));
Nicolas Geoffray01822292017-03-09 09:03:19 +0000508 if (UNLIKELY(!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true,
509 true))) {
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700510 self->PopShadowFrame();
511 DCHECK(self->IsExceptionPending());
512 return;
513 }
514 self->PopShadowFrame();
515 CHECK(h_class->IsInitializing());
Nicolas Geoffray01822292017-03-09 09:03:19 +0000516 // Reload from shadow frame in case the method moved, this is faster than adding a handle.
517 method = shadow_frame->GetMethod();
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700518 }
519 }
Jeff Hao5ea84132017-05-05 16:59:29 -0700520 // Basic checks for the arg_offset. If there's no code item, the arg_offset must be 0. Otherwise,
521 // check that the arg_offset isn't greater than the number of registers. A stronger check is
522 // difficult since the frame may contain space for all the registers in the method, or only enough
523 // space for the arguments.
524 if (kIsDebugBuild) {
525 if (method->GetCodeItem() == nullptr) {
526 DCHECK_EQ(0u, arg_offset) << method->PrettyMethod();
527 } else {
528 DCHECK_LE(arg_offset, shadow_frame->NumberOfVRegs());
529 }
530 }
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100531 jit::Jit* jit = Runtime::Current()->GetJit();
532 if (jit != nullptr && caller != nullptr) {
533 jit->NotifyInterpreterToCompiledCodeTransition(self, caller);
534 }
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700535 method->Invoke(self, shadow_frame->GetVRegArgs(arg_offset),
536 (shadow_frame->NumberOfVRegs() - arg_offset) * sizeof(uint32_t),
Andreas Gampe542451c2016-07-26 09:02:02 -0700537 result, method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty());
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700538}
539
Mingyao Yangffedec52016-05-19 10:48:40 -0700540void SetStringInitValueToAllAliases(ShadowFrame* shadow_frame,
541 uint16_t this_obj_vreg,
542 JValue result)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700543 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartieref41db72016-10-25 15:08:01 -0700544 ObjPtr<mirror::Object> existing = shadow_frame->GetVRegReference(this_obj_vreg);
Mingyao Yangffedec52016-05-19 10:48:40 -0700545 if (existing == nullptr) {
546 // If it's null, we come from compiled code that was deoptimized. Nothing to do,
547 // as the compiler verified there was no alias.
548 // Set the new string result of the StringFactory.
549 shadow_frame->SetVRegReference(this_obj_vreg, result.GetL());
550 return;
551 }
552 // Set the string init result into all aliases.
553 for (uint32_t i = 0, e = shadow_frame->NumberOfVRegs(); i < e; ++i) {
554 if (shadow_frame->GetVRegReference(i) == existing) {
555 DCHECK_EQ(shadow_frame->GetVRegReference(i),
556 reinterpret_cast<mirror::Object*>(shadow_frame->GetVReg(i)));
557 shadow_frame->SetVRegReference(i, result.GetL());
558 DCHECK_EQ(shadow_frame->GetVRegReference(i),
559 reinterpret_cast<mirror::Object*>(shadow_frame->GetVReg(i)));
560 }
561 }
562}
563
Orion Hodsonc069a302017-01-18 09:23:12 +0000564template<bool is_range>
Orion Hodson811bd5f2016-12-07 11:35:37 +0000565bool DoInvokePolymorphic(Thread* self,
566 ShadowFrame& shadow_frame,
567 const Instruction* inst,
568 uint16_t inst_data,
569 JValue* result)
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100570 REQUIRES_SHARED(Locks::mutator_lock_) {
Narayan Kamath9823e782016-08-03 12:46:58 +0100571 // Invoke-polymorphic instructions always take a receiver. i.e, they are never static.
572 const uint32_t vRegC = (is_range) ? inst->VRegC_4rcc() : inst->VRegC_45cc();
Orion Hodson3d617ac2016-10-19 14:00:46 +0100573 const int invoke_method_idx = (is_range) ? inst->VRegB_4rcc() : inst->VRegB_45cc();
Narayan Kamath9823e782016-08-03 12:46:58 +0100574
Orion Hodson1a06f9f2016-11-09 08:32:42 +0000575 // Initialize |result| to 0 as this is the default return value for
576 // polymorphic invocations of method handle types with void return
577 // and provides sane return result in error cases.
578 result->SetJ(0);
579
Orion Hodson3d617ac2016-10-19 14:00:46 +0100580 // The invoke_method_idx here is the name of the signature polymorphic method that
Narayan Kamath9823e782016-08-03 12:46:58 +0100581 // was symbolically invoked in bytecode (say MethodHandle.invoke or MethodHandle.invokeExact)
582 // and not the method that we'll dispatch to in the end.
Orion Hodson811bd5f2016-12-07 11:35:37 +0000583 StackHandleScope<5> hs(self);
Orion Hodsonc069a302017-01-18 09:23:12 +0000584 Handle<mirror::MethodHandle> method_handle(hs.NewHandle(
585 ObjPtr<mirror::MethodHandle>::DownCast(
Mathieu Chartieref41db72016-10-25 15:08:01 -0700586 MakeObjPtr(shadow_frame.GetVRegReference(vRegC)))));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800587 if (UNLIKELY(method_handle == nullptr)) {
Narayan Kamath9823e782016-08-03 12:46:58 +0100588 // Note that the invoke type is kVirtual here because a call to a signature
589 // polymorphic method is shaped like a virtual call at the bytecode level.
Orion Hodson3d617ac2016-10-19 14:00:46 +0100590 ThrowNullPointerExceptionForMethodAccess(invoke_method_idx, InvokeType::kVirtual);
Narayan Kamath9823e782016-08-03 12:46:58 +0100591 return false;
592 }
593
594 // The vRegH value gives the index of the proto_id associated with this
Orion Hodson811bd5f2016-12-07 11:35:37 +0000595 // signature polymorphic call site.
Narayan Kamath9823e782016-08-03 12:46:58 +0100596 const uint32_t callsite_proto_id = (is_range) ? inst->VRegH_4rcc() : inst->VRegH_45cc();
597
598 // Call through to the classlinker and ask it to resolve the static type associated
599 // with the callsite. This information is stored in the dex cache so it's
600 // guaranteed to be fast after the first resolution.
Narayan Kamath9823e782016-08-03 12:46:58 +0100601 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Narayan Kamath208f8572016-08-03 12:46:58 +0100602 Handle<mirror::Class> caller_class(hs.NewHandle(shadow_frame.GetMethod()->GetDeclaringClass()));
603 Handle<mirror::MethodType> callsite_type(hs.NewHandle(class_linker->ResolveMethodType(
Narayan Kamath9823e782016-08-03 12:46:58 +0100604 caller_class->GetDexFile(), callsite_proto_id,
605 hs.NewHandle<mirror::DexCache>(caller_class->GetDexCache()),
Narayan Kamath208f8572016-08-03 12:46:58 +0100606 hs.NewHandle<mirror::ClassLoader>(caller_class->GetClassLoader()))));
Narayan Kamath9823e782016-08-03 12:46:58 +0100607
608 // This implies we couldn't resolve one or more types in this method handle.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800609 if (UNLIKELY(callsite_type == nullptr)) {
Narayan Kamath9823e782016-08-03 12:46:58 +0100610 CHECK(self->IsExceptionPending());
Narayan Kamath9823e782016-08-03 12:46:58 +0100611 return false;
612 }
613
Orion Hodson811bd5f2016-12-07 11:35:37 +0000614 ArtMethod* invoke_method =
Vladimir Markoba118822017-06-12 15:41:56 +0100615 class_linker->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
616 self, invoke_method_idx, shadow_frame.GetMethod(), kVirtual);
Narayan Kamath0a8485e2016-11-02 18:47:11 +0000617
Orion Hodson811bd5f2016-12-07 11:35:37 +0000618 // There is a common dispatch method for method handles that takes
619 // arguments either from a range or an array of arguments depending
620 // on whether the DEX instruction is invoke-polymorphic/range or
621 // invoke-polymorphic. The array here is for the latter.
622 uint32_t args[Instruction::kMaxVarArgRegs] = {};
Narayan Kamath9823e782016-08-03 12:46:58 +0100623 if (is_range) {
Orion Hodson811bd5f2016-12-07 11:35:37 +0000624 // VRegC is the register holding the method handle. Arguments passed
625 // to the method handle's target do not include the method handle.
626 uint32_t first_arg = inst->VRegC_4rcc() + 1;
Orion Hodsonc069a302017-01-18 09:23:12 +0000627 return DoInvokePolymorphic<is_range>(self,
628 invoke_method,
629 shadow_frame,
630 method_handle,
631 callsite_type,
632 args /* unused */,
633 first_arg,
634 result);
Narayan Kamath9823e782016-08-03 12:46:58 +0100635 } else {
Orion Hodson811bd5f2016-12-07 11:35:37 +0000636 // Get the register arguments for the invoke.
637 inst->GetVarArgs(args, inst_data);
638 // Drop the first register which is the method handle performing the invoke.
Alexey Frunze8631a462017-01-19 19:07:37 -0800639 memmove(args, args + 1, sizeof(args[0]) * (Instruction::kMaxVarArgRegs - 1));
Orion Hodson811bd5f2016-12-07 11:35:37 +0000640 args[Instruction::kMaxVarArgRegs - 1] = 0;
Orion Hodsonc069a302017-01-18 09:23:12 +0000641 return DoInvokePolymorphic<is_range>(self,
642 invoke_method,
643 shadow_frame,
644 method_handle,
645 callsite_type,
646 args,
647 args[0],
648 result);
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100649 }
650}
651
Orion Hodsonc069a302017-01-18 09:23:12 +0000652static ObjPtr<mirror::CallSite> InvokeBootstrapMethod(Thread* self,
653 ShadowFrame& shadow_frame,
654 uint32_t call_site_idx)
655 REQUIRES_SHARED(Locks::mutator_lock_) {
656 ArtMethod* referrer = shadow_frame.GetMethod();
657 const DexFile* dex_file = referrer->GetDexFile();
658 const DexFile::CallSiteIdItem& csi = dex_file->GetCallSiteId(call_site_idx);
659
Orion Hodson631827d2017-04-10 14:53:47 +0100660 StackHandleScope<10> hs(self);
Orion Hodsonc069a302017-01-18 09:23:12 +0000661 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(referrer->GetClassLoader()));
662 Handle<mirror::DexCache> dex_cache(hs.NewHandle(referrer->GetDexCache()));
663
664 CallSiteArrayValueIterator it(*dex_file, csi);
665 uint32_t method_handle_idx = static_cast<uint32_t>(it.GetJavaValue().i);
666 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
667 Handle<mirror::MethodHandle>
668 bootstrap(hs.NewHandle(class_linker->ResolveMethodHandle(method_handle_idx, referrer)));
669 if (bootstrap.IsNull()) {
670 DCHECK(self->IsExceptionPending());
671 return nullptr;
672 }
673 Handle<mirror::MethodType> bootstrap_method_type = hs.NewHandle(bootstrap->GetMethodType());
674 it.Next();
675
676 DCHECK_EQ(static_cast<size_t>(bootstrap->GetMethodType()->GetPTypes()->GetLength()), it.Size());
677 const size_t num_bootstrap_vregs = bootstrap->GetMethodType()->NumberOfVRegs();
678
679 // Set-up a shadow frame for invoking the bootstrap method handle.
680 ShadowFrameAllocaUniquePtr bootstrap_frame =
681 CREATE_SHADOW_FRAME(num_bootstrap_vregs, nullptr, referrer, shadow_frame.GetDexPC());
682 ScopedStackedShadowFramePusher pusher(
683 self, bootstrap_frame.get(), StackedShadowFrameType::kShadowFrameUnderConstruction);
684 size_t vreg = 0;
685
686 // The first parameter is a MethodHandles lookup instance.
687 {
688 Handle<mirror::Class> lookup_class(hs.NewHandle(bootstrap->GetTargetClass()));
689 ObjPtr<mirror::MethodHandlesLookup> lookup =
690 mirror::MethodHandlesLookup::Create(self, lookup_class);
691 if (lookup.IsNull()) {
692 DCHECK(self->IsExceptionPending());
693 return nullptr;
694 }
695 bootstrap_frame->SetVRegReference(vreg++, lookup.Ptr());
696 }
697
698 // The second parameter is the name to lookup.
699 {
700 dex::StringIndex name_idx(static_cast<uint32_t>(it.GetJavaValue().i));
701 ObjPtr<mirror::String> name = class_linker->ResolveString(*dex_file, name_idx, dex_cache);
702 if (name.IsNull()) {
703 DCHECK(self->IsExceptionPending());
704 return nullptr;
705 }
706 bootstrap_frame->SetVRegReference(vreg++, name.Ptr());
707 }
708 it.Next();
709
710 // The third parameter is the method type associated with the name.
711 uint32_t method_type_idx = static_cast<uint32_t>(it.GetJavaValue().i);
712 Handle<mirror::MethodType>
713 method_type(hs.NewHandle(class_linker->ResolveMethodType(*dex_file,
714 method_type_idx,
715 dex_cache,
716 class_loader)));
717 if (method_type.IsNull()) {
718 DCHECK(self->IsExceptionPending());
719 return nullptr;
720 }
721 bootstrap_frame->SetVRegReference(vreg++, method_type.Get());
722 it.Next();
723
724 // Append remaining arguments (if any).
725 while (it.HasNext()) {
726 const jvalue& jvalue = it.GetJavaValue();
727 switch (it.GetValueType()) {
728 case EncodedArrayValueIterator::ValueType::kBoolean:
729 case EncodedArrayValueIterator::ValueType::kByte:
730 case EncodedArrayValueIterator::ValueType::kChar:
731 case EncodedArrayValueIterator::ValueType::kShort:
732 case EncodedArrayValueIterator::ValueType::kInt:
733 bootstrap_frame->SetVReg(vreg, jvalue.i);
734 vreg += 1;
735 break;
736 case EncodedArrayValueIterator::ValueType::kLong:
737 bootstrap_frame->SetVRegLong(vreg, jvalue.j);
738 vreg += 2;
739 break;
740 case EncodedArrayValueIterator::ValueType::kFloat:
741 bootstrap_frame->SetVRegFloat(vreg, jvalue.f);
742 vreg += 1;
743 break;
744 case EncodedArrayValueIterator::ValueType::kDouble:
745 bootstrap_frame->SetVRegDouble(vreg, jvalue.d);
746 vreg += 2;
747 break;
748 case EncodedArrayValueIterator::ValueType::kMethodType: {
749 uint32_t idx = static_cast<uint32_t>(jvalue.i);
750 ObjPtr<mirror::MethodType> ref =
751 class_linker->ResolveMethodType(*dex_file, idx, dex_cache, class_loader);
752 if (ref.IsNull()) {
753 DCHECK(self->IsExceptionPending());
754 return nullptr;
755 }
756 bootstrap_frame->SetVRegReference(vreg, ref.Ptr());
757 vreg += 1;
758 break;
759 }
760 case EncodedArrayValueIterator::ValueType::kMethodHandle: {
761 uint32_t idx = static_cast<uint32_t>(jvalue.i);
762 ObjPtr<mirror::MethodHandle> ref =
763 class_linker->ResolveMethodHandle(idx, referrer);
764 if (ref.IsNull()) {
765 DCHECK(self->IsExceptionPending());
766 return nullptr;
767 }
768 bootstrap_frame->SetVRegReference(vreg, ref.Ptr());
769 vreg += 1;
770 break;
771 }
772 case EncodedArrayValueIterator::ValueType::kString: {
773 dex::StringIndex idx(static_cast<uint32_t>(jvalue.i));
774 ObjPtr<mirror::String> ref = class_linker->ResolveString(*dex_file, idx, dex_cache);
775 if (ref.IsNull()) {
776 DCHECK(self->IsExceptionPending());
777 return nullptr;
778 }
779 bootstrap_frame->SetVRegReference(vreg, ref.Ptr());
780 vreg += 1;
781 break;
782 }
783 case EncodedArrayValueIterator::ValueType::kType: {
784 dex::TypeIndex idx(static_cast<uint32_t>(jvalue.i));
785 ObjPtr<mirror::Class> ref =
786 class_linker->ResolveType(*dex_file, idx, dex_cache, class_loader);
787 if (ref.IsNull()) {
788 DCHECK(self->IsExceptionPending());
789 return nullptr;
790 }
791 bootstrap_frame->SetVRegReference(vreg, ref.Ptr());
792 vreg += 1;
793 break;
794 }
795 case EncodedArrayValueIterator::ValueType::kNull:
796 bootstrap_frame->SetVRegReference(vreg, nullptr);
797 vreg += 1;
798 break;
799 case EncodedArrayValueIterator::ValueType::kField:
800 case EncodedArrayValueIterator::ValueType::kMethod:
801 case EncodedArrayValueIterator::ValueType::kEnum:
802 case EncodedArrayValueIterator::ValueType::kArray:
803 case EncodedArrayValueIterator::ValueType::kAnnotation:
804 // Unreachable based on current EncodedArrayValueIterator::Next().
805 UNREACHABLE();
806 }
807
808 it.Next();
809 }
810
811 // Invoke the bootstrap method handle.
812 JValue result;
813
814 // This array of arguments is unused. DoInvokePolymorphic() operates on either a
815 // an argument array or a range, but always takes an array argument.
816 uint32_t args_unused[Instruction::kMaxVarArgRegs];
817 ArtMethod* invoke_exact =
818 jni::DecodeArtMethod(WellKnownClasses::java_lang_invoke_MethodHandle_invokeExact);
819 bool invoke_success = DoInvokePolymorphic<true /* is_range */>(self,
820 invoke_exact,
821 *bootstrap_frame,
822 bootstrap,
823 bootstrap_method_type,
824 args_unused,
825 0,
826 &result);
827 if (!invoke_success) {
828 DCHECK(self->IsExceptionPending());
829 return nullptr;
830 }
831
832 Handle<mirror::Object> object(hs.NewHandle(result.GetL()));
833
834 // Check the result is not null.
835 if (UNLIKELY(object.IsNull())) {
836 ThrowNullPointerException("CallSite == null");
837 return nullptr;
838 }
839
840 // Check the result type is a subclass of CallSite.
841 if (UNLIKELY(!object->InstanceOf(mirror::CallSite::StaticClass()))) {
842 ThrowClassCastException(object->GetClass(), mirror::CallSite::StaticClass());
843 return nullptr;
844 }
845
846 Handle<mirror::CallSite> call_site =
847 hs.NewHandle(ObjPtr<mirror::CallSite>::DownCast(ObjPtr<mirror::Object>(result.GetL())));
848
849 // Check the call site target is not null as we're going to invoke it.
850 Handle<mirror::MethodHandle> target = hs.NewHandle(call_site->GetTarget());
851 if (UNLIKELY(target.IsNull())) {
852 ThrowNullPointerException("CallSite target == null");
853 return nullptr;
854 }
855
Orion Hodson631827d2017-04-10 14:53:47 +0100856 // Check the target method type matches the method type requested modulo the receiver
857 // needs to be compatible rather than exact.
858 Handle<mirror::MethodType> target_method_type = hs.NewHandle(target->GetMethodType());
859 if (UNLIKELY(!target_method_type->IsExactMatch(method_type.Get()) &&
860 !IsParameterTypeConvertible(target_method_type->GetPTypes()->GetWithoutChecks(0),
861 method_type->GetPTypes()->GetWithoutChecks(0)))) {
862 ThrowWrongMethodTypeException(target_method_type.Get(), method_type.Get());
Orion Hodsonc069a302017-01-18 09:23:12 +0000863 return nullptr;
864 }
865
866 return call_site.Get();
867}
868
869template<bool is_range>
870bool DoInvokeCustom(Thread* self,
871 ShadowFrame& shadow_frame,
872 const Instruction* inst,
873 uint16_t inst_data,
874 JValue* result)
875 REQUIRES_SHARED(Locks::mutator_lock_) {
876 // invoke-custom is not supported in transactions. In transactions
877 // there is a limited set of types supported. invoke-custom allows
878 // running arbitrary code and instantiating arbitrary types.
879 CHECK(!Runtime::Current()->IsActiveTransaction());
880 StackHandleScope<4> hs(self);
881 Handle<mirror::DexCache> dex_cache(hs.NewHandle(shadow_frame.GetMethod()->GetDexCache()));
882 const uint32_t call_site_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
883 MutableHandle<mirror::CallSite>
884 call_site(hs.NewHandle(dex_cache->GetResolvedCallSite(call_site_idx)));
885 if (call_site.IsNull()) {
886 call_site.Assign(InvokeBootstrapMethod(self, shadow_frame, call_site_idx));
887 if (UNLIKELY(call_site.IsNull())) {
888 CHECK(self->IsExceptionPending());
889 ThrowWrappedBootstrapMethodError("Exception from call site #%u bootstrap method",
890 call_site_idx);
891 result->SetJ(0);
892 return false;
893 }
894 mirror::CallSite* winning_call_site =
895 dex_cache->SetResolvedCallSite(call_site_idx, call_site.Get());
896 call_site.Assign(winning_call_site);
897 }
898
899 // CallSite.java checks the re-assignment of the call site target
900 // when mutating call site targets. We only check the target is
901 // non-null and has the right type during bootstrap method execution.
902 Handle<mirror::MethodHandle> target = hs.NewHandle(call_site->GetTarget());
903 Handle<mirror::MethodType> target_method_type = hs.NewHandle(target->GetMethodType());
904 DCHECK_EQ(static_cast<size_t>(inst->VRegA()), target_method_type->NumberOfVRegs());
905
906 uint32_t args[Instruction::kMaxVarArgRegs];
907 if (is_range) {
908 args[0] = inst->VRegC_3rc();
909 } else {
910 inst->GetVarArgs(args, inst_data);
911 }
912
913 ArtMethod* invoke_exact =
914 jni::DecodeArtMethod(WellKnownClasses::java_lang_invoke_MethodHandle_invokeExact);
915 return DoInvokePolymorphic<is_range>(self,
916 invoke_exact,
917 shadow_frame,
918 target,
919 target_method_type,
920 args,
921 args[0],
922 result);
923}
924
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100925template <bool is_range>
926inline void CopyRegisters(ShadowFrame& caller_frame,
927 ShadowFrame* callee_frame,
928 const uint32_t (&arg)[Instruction::kMaxVarArgRegs],
929 const size_t first_src_reg,
930 const size_t first_dest_reg,
931 const size_t num_regs) {
932 if (is_range) {
933 const size_t dest_reg_bound = first_dest_reg + num_regs;
934 for (size_t src_reg = first_src_reg, dest_reg = first_dest_reg; dest_reg < dest_reg_bound;
935 ++dest_reg, ++src_reg) {
936 AssignRegister(callee_frame, caller_frame, dest_reg, src_reg);
937 }
938 } else {
939 DCHECK_LE(num_regs, arraysize(arg));
940
941 for (size_t arg_index = 0; arg_index < num_regs; ++arg_index) {
942 AssignRegister(callee_frame, caller_frame, first_dest_reg + arg_index, arg[arg_index]);
943 }
944 }
945}
946
Igor Murashkin6918bf12015-09-27 19:19:06 -0700947template <bool is_range,
Narayan Kamath370423d2016-10-03 16:51:22 +0100948 bool do_assignability_check>
Igor Murashkin158f35c2015-06-10 15:55:30 -0700949static inline bool DoCallCommon(ArtMethod* called_method,
950 Thread* self,
951 ShadowFrame& shadow_frame,
952 JValue* result,
953 uint16_t number_of_inputs,
Narayan Kamath370423d2016-10-03 16:51:22 +0100954 uint32_t (&arg)[Instruction::kMaxVarArgRegs],
Igor Murashkin158f35c2015-06-10 15:55:30 -0700955 uint32_t vregC) {
Jeff Hao848f70a2014-01-15 13:49:50 -0800956 bool string_init = false;
957 // Replace calls to String.<init> with equivalent StringFactory call.
Igor Murashkin158f35c2015-06-10 15:55:30 -0700958 if (UNLIKELY(called_method->GetDeclaringClass()->IsStringClass()
959 && called_method->IsConstructor())) {
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100960 called_method = WellKnownClasses::StringInitToStringFactory(called_method);
Jeff Hao848f70a2014-01-15 13:49:50 -0800961 string_init = true;
962 }
963
Alex Lightdaf58c82016-03-16 23:00:49 +0000964 // Compute method information.
965 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
Igor Murashkin158f35c2015-06-10 15:55:30 -0700966 // Number of registers for the callee's call frame.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200967 uint16_t num_regs;
Jeff Hao5ea84132017-05-05 16:59:29 -0700968 // Test whether to use the interpreter or compiler entrypoint, and save that result to pass to
969 // PerformCall. A deoptimization could occur at any time, and we shouldn't change which
970 // entrypoint to use once we start building the shadow frame.
Mathieu Chartier448bbcf2017-07-06 12:05:13 -0700971
972 // For unstarted runtimes, always use the interpreter entrypoint. This fixes the case where we are
973 // doing cross compilation. Note that GetEntryPointFromQuickCompiledCode doesn't use the image
974 // pointer size here and this may case an overflow if it is called from the compiler. b/62402160
975 const bool use_interpreter_entrypoint = !Runtime::Current()->IsStarted() ||
976 ClassLinker::ShouldUseInterpreterEntrypoint(
977 called_method,
978 called_method->GetEntryPointFromQuickCompiledCode());
Nicolas Geoffray01822292017-03-09 09:03:19 +0000979 if (LIKELY(code_item != nullptr)) {
Jeff Hao5ea84132017-05-05 16:59:29 -0700980 // When transitioning to compiled code, space only needs to be reserved for the input registers.
981 // The rest of the frame gets discarded. This also prevents accessing the called method's code
982 // item, saving memory by keeping code items of compiled code untouched.
Mathieu Chartier448bbcf2017-07-06 12:05:13 -0700983 if (!use_interpreter_entrypoint) {
984 DCHECK(!Runtime::Current()->IsAotCompiler()) << "Compiler should use interpreter entrypoint";
Jeff Hao5ea84132017-05-05 16:59:29 -0700985 num_regs = number_of_inputs;
986 } else {
987 num_regs = code_item->registers_size_;
988 DCHECK_EQ(string_init ? number_of_inputs - 1 : number_of_inputs, code_item->ins_size_);
989 }
Nicolas Geoffray01822292017-03-09 09:03:19 +0000990 } else {
991 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
992 num_regs = number_of_inputs;
Jeff Haodf79ddb2017-02-27 14:47:06 -0800993 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200994
Igor Murashkin158f35c2015-06-10 15:55:30 -0700995 // Hack for String init:
996 //
997 // Rewrite invoke-x java.lang.String.<init>(this, a, b, c, ...) into:
998 // invoke-x StringFactory(a, b, c, ...)
999 // by effectively dropping the first virtual register from the invoke.
1000 //
1001 // (at this point the ArtMethod has already been replaced,
1002 // so we just need to fix-up the arguments)
David Brazdil65902e82016-01-15 09:35:13 +00001003 //
1004 // Note that FindMethodFromCode in entrypoint_utils-inl.h was also special-cased
1005 // to handle the compiler optimization of replacing `this` with null without
1006 // throwing NullPointerException.
Igor Murashkin158f35c2015-06-10 15:55:30 -07001007 uint32_t string_init_vreg_this = is_range ? vregC : arg[0];
Igor Murashkina06b49b2015-06-25 15:18:12 -07001008 if (UNLIKELY(string_init)) {
Igor Murashkin158f35c2015-06-10 15:55:30 -07001009 DCHECK_GT(num_regs, 0u); // As the method is an instance method, there should be at least 1.
Igor Murashkina06b49b2015-06-25 15:18:12 -07001010
Igor Murashkin158f35c2015-06-10 15:55:30 -07001011 // The new StringFactory call is static and has one fewer argument.
Igor Murashkina06b49b2015-06-25 15:18:12 -07001012 if (code_item == nullptr) {
1013 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
1014 num_regs--;
1015 } // else ... don't need to change num_regs since it comes up from the string_init's code item
Igor Murashkin158f35c2015-06-10 15:55:30 -07001016 number_of_inputs--;
1017
1018 // Rewrite the var-args, dropping the 0th argument ("this")
Igor Murashkin6918bf12015-09-27 19:19:06 -07001019 for (uint32_t i = 1; i < arraysize(arg); ++i) {
Igor Murashkin158f35c2015-06-10 15:55:30 -07001020 arg[i - 1] = arg[i];
1021 }
Igor Murashkin6918bf12015-09-27 19:19:06 -07001022 arg[arraysize(arg) - 1] = 0;
Igor Murashkin158f35c2015-06-10 15:55:30 -07001023
1024 // Rewrite the non-var-arg case
1025 vregC++; // Skips the 0th vreg in the range ("this").
1026 }
1027
1028 // Parameter registers go at the end of the shadow frame.
1029 DCHECK_GE(num_regs, number_of_inputs);
1030 size_t first_dest_reg = num_regs - number_of_inputs;
1031 DCHECK_NE(first_dest_reg, (size_t)-1);
1032
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001033 // Allocate shadow frame on the stack.
Igor Murashkin158f35c2015-06-10 15:55:30 -07001034 const char* old_cause = self->StartAssertNoThreadSuspension("DoCallCommon");
Andreas Gampeb3025922015-09-01 14:45:00 -07001035 ShadowFrameAllocaUniquePtr shadow_frame_unique_ptr =
Andreas Gampe03ec9302015-08-27 17:41:47 -07001036 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0);
Andreas Gampeb3025922015-09-01 14:45:00 -07001037 ShadowFrame* new_shadow_frame = shadow_frame_unique_ptr.get();
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001038
Igor Murashkin158f35c2015-06-10 15:55:30 -07001039 // Initialize new shadow frame by copying the registers from the callee shadow frame.
Jeff Haoa3faaf42013-09-03 19:07:00 -07001040 if (do_assignability_check) {
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -07001041 // Slow path.
1042 // We might need to do class loading, which incurs a thread state change to kNative. So
1043 // register the shadow frame as under construction and allow suspension again.
Mingyao Yang1f2d3ba2015-05-18 12:12:50 -07001044 ScopedStackedShadowFramePusher pusher(
Sebastien Hertzf7958692015-06-09 14:09:14 +02001045 self, new_shadow_frame, StackedShadowFrameType::kShadowFrameUnderConstruction);
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -07001046 self->EndAssertNoThreadSuspension(old_cause);
1047
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001048 // ArtMethod here is needed to check type information of the call site against the callee.
1049 // Type information is retrieved from a DexFile/DexCache for that respective declared method.
1050 //
1051 // As a special case for proxy methods, which are not dex-backed,
1052 // we have to retrieve type information from the proxy's method
1053 // interface method instead (which is dex backed since proxies are never interfaces).
Andreas Gampe542451c2016-07-26 09:02:02 -07001054 ArtMethod* method =
1055 new_shadow_frame->GetMethod()->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001056
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -07001057 // We need to do runtime check on reference assignment. We need to load the shorty
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001058 // to get the exact type of each reference argument.
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001059 const DexFile::TypeList* params = method->GetParameterTypeList();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001060 uint32_t shorty_len = 0;
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001061 const char* shorty = method->GetShorty(&shorty_len);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001062
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001063 // Handle receiver apart since it's not part of the shorty.
1064 size_t dest_reg = first_dest_reg;
1065 size_t arg_offset = 0;
Igor Murashkin158f35c2015-06-10 15:55:30 -07001066
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001067 if (!method->IsStatic()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001068 size_t receiver_reg = is_range ? vregC : arg[0];
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001069 new_shadow_frame->SetVRegReference(dest_reg, shadow_frame.GetVRegReference(receiver_reg));
1070 ++dest_reg;
1071 ++arg_offset;
Igor Murashkina06b49b2015-06-25 15:18:12 -07001072 DCHECK(!string_init); // All StringFactory methods are static.
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001073 }
Igor Murashkin158f35c2015-06-10 15:55:30 -07001074
1075 // Copy the caller's invoke-* arguments into the callee's parameter registers.
Ian Rogersef7d42f2014-01-06 12:55:46 -08001076 for (uint32_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) {
Igor Murashkina06b49b2015-06-25 15:18:12 -07001077 // Skip the 0th 'shorty' type since it represents the return type.
1078 DCHECK_LT(shorty_pos + 1, shorty_len) << "for shorty '" << shorty << "'";
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001079 const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset];
1080 switch (shorty[shorty_pos + 1]) {
Igor Murashkin158f35c2015-06-10 15:55:30 -07001081 // Handle Object references. 1 virtual register slot.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001082 case 'L': {
Mathieu Chartieref41db72016-10-25 15:08:01 -07001083 ObjPtr<mirror::Object> o = shadow_frame.GetVRegReference(src_reg);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001084 if (do_assignability_check && o != nullptr) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001085 const dex::TypeIndex type_idx = params->GetTypeItem(shorty_pos).type_idx_;
Vladimir Marko942fd312017-01-16 20:52:19 +00001086 ObjPtr<mirror::Class> arg_type = method->GetDexCache()->GetResolvedType(type_idx);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001087 if (arg_type == nullptr) {
Mathieu Chartiere22305b2016-10-26 21:04:58 -07001088 StackHandleScope<1> hs(self);
1089 // Preserve o since it is used below and GetClassFromTypeIndex may cause thread
1090 // suspension.
1091 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&o);
Vladimir Markob45528c2017-07-27 14:14:28 +01001092 arg_type = method->ResolveClassFromTypeIndex(type_idx);
Mathieu Chartiere22305b2016-10-26 21:04:58 -07001093 if (arg_type == nullptr) {
1094 CHECK(self->IsExceptionPending());
1095 return false;
1096 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001097 }
1098 if (!o->VerifierInstanceOf(arg_type)) {
1099 // This should never happen.
Ian Rogers1ff3c982014-08-12 02:30:58 -07001100 std::string temp1, temp2;
Orion Hodsonfef06642016-11-25 16:07:11 +00001101 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001102 "Invoking %s with bad arg %d, type '%s' not instance of '%s'",
Ian Rogerse94652f2014-12-02 11:13:19 -08001103 new_shadow_frame->GetMethod()->GetName(), shorty_pos,
Ian Rogers1ff3c982014-08-12 02:30:58 -07001104 o->GetClass()->GetDescriptor(&temp1),
1105 arg_type->GetDescriptor(&temp2));
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001106 return false;
1107 }
Jeff Haoa3faaf42013-09-03 19:07:00 -07001108 }
Mathieu Chartieref41db72016-10-25 15:08:01 -07001109 new_shadow_frame->SetVRegReference(dest_reg, o.Ptr());
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001110 break;
Jeff Haoa3faaf42013-09-03 19:07:00 -07001111 }
Igor Murashkin158f35c2015-06-10 15:55:30 -07001112 // Handle doubles and longs. 2 consecutive virtual register slots.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001113 case 'J': case 'D': {
Igor Murashkin158f35c2015-06-10 15:55:30 -07001114 uint64_t wide_value =
1115 (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << BitSizeOf<uint32_t>()) |
1116 static_cast<uint32_t>(shadow_frame.GetVReg(src_reg));
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001117 new_shadow_frame->SetVRegLong(dest_reg, wide_value);
Igor Murashkin158f35c2015-06-10 15:55:30 -07001118 // Skip the next virtual register slot since we already used it.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001119 ++dest_reg;
1120 ++arg_offset;
1121 break;
1122 }
Igor Murashkin158f35c2015-06-10 15:55:30 -07001123 // Handle all other primitives that are always 1 virtual register slot.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001124 default:
1125 new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg));
1126 break;
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001127 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001128 }
1129 } else {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001130 if (is_range) {
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +01001131 DCHECK_EQ(num_regs, first_dest_reg + number_of_inputs);
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001132 }
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +01001133
1134 CopyRegisters<is_range>(shadow_frame,
1135 new_shadow_frame,
1136 arg,
1137 vregC,
1138 first_dest_reg,
1139 number_of_inputs);
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -07001140 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001141 }
1142
Jeff Hao5ea84132017-05-05 16:59:29 -07001143 PerformCall(self,
1144 code_item,
1145 shadow_frame.GetMethod(),
1146 first_dest_reg,
1147 new_shadow_frame,
1148 result,
1149 use_interpreter_entrypoint);
Jeff Hao848f70a2014-01-15 13:49:50 -08001150
1151 if (string_init && !self->IsExceptionPending()) {
Mingyao Yangffedec52016-05-19 10:48:40 -07001152 SetStringInitValueToAllAliases(&shadow_frame, string_init_vreg_this, *result);
Jeff Hao848f70a2014-01-15 13:49:50 -08001153 }
1154
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001155 return !self->IsExceptionPending();
1156}
1157
Igor Murashkin158f35c2015-06-10 15:55:30 -07001158template<bool is_range, bool do_assignability_check>
Igor Murashkin158f35c2015-06-10 15:55:30 -07001159bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
1160 const Instruction* inst, uint16_t inst_data, JValue* result) {
1161 // Argument word count.
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001162 const uint16_t number_of_inputs =
1163 (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data);
Igor Murashkin158f35c2015-06-10 15:55:30 -07001164
1165 // TODO: find a cleaner way to separate non-range and range information without duplicating
1166 // code.
Igor Murashkin6918bf12015-09-27 19:19:06 -07001167 uint32_t arg[Instruction::kMaxVarArgRegs] = {}; // only used in invoke-XXX.
Igor Murashkin158f35c2015-06-10 15:55:30 -07001168 uint32_t vregC = 0;
1169 if (is_range) {
1170 vregC = inst->VRegC_3rc();
1171 } else {
1172 vregC = inst->VRegC_35c();
1173 inst->GetVarArgs(arg, inst_data);
1174 }
1175
1176 return DoCallCommon<is_range, do_assignability_check>(
1177 called_method, self, shadow_frame,
1178 result, number_of_inputs, arg, vregC);
1179}
1180
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001181template <bool is_range, bool do_access_check, bool transaction_active>
Mathieu Chartieref41db72016-10-25 15:08:01 -07001182bool DoFilledNewArray(const Instruction* inst,
1183 const ShadowFrame& shadow_frame,
1184 Thread* self,
1185 JValue* result) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001186 DCHECK(inst->Opcode() == Instruction::FILLED_NEW_ARRAY ||
1187 inst->Opcode() == Instruction::FILLED_NEW_ARRAY_RANGE);
1188 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c();
1189 if (!is_range) {
1190 // Checks FILLED_NEW_ARRAY's length does not exceed 5 arguments.
1191 CHECK_LE(length, 5);
1192 }
1193 if (UNLIKELY(length < 0)) {
1194 ThrowNegativeArraySizeException(length);
1195 return false;
1196 }
1197 uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
Andreas Gampea5b09a62016-11-17 15:21:22 -08001198 ObjPtr<mirror::Class> array_class = ResolveVerifyAndClinit(dex::TypeIndex(type_idx),
Mathieu Chartieref41db72016-10-25 15:08:01 -07001199 shadow_frame.GetMethod(),
1200 self,
1201 false,
1202 do_access_check);
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001203 if (UNLIKELY(array_class == nullptr)) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001204 DCHECK(self->IsExceptionPending());
1205 return false;
1206 }
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001207 CHECK(array_class->IsArrayClass());
Mathieu Chartieref41db72016-10-25 15:08:01 -07001208 ObjPtr<mirror::Class> component_class = array_class->GetComponentType();
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001209 const bool is_primitive_int_component = component_class->IsPrimitiveInt();
1210 if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) {
1211 if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001212 ThrowRuntimeException("Bad filled array request for type %s",
David Sehr709b0702016-10-13 09:12:37 -07001213 component_class->PrettyDescriptor().c_str());
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001214 } else {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +00001215 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -08001216 "Found type %s; filled-new-array not implemented for anything but 'int'",
David Sehr709b0702016-10-13 09:12:37 -07001217 component_class->PrettyDescriptor().c_str());
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001218 }
1219 return false;
1220 }
Mathieu Chartieref41db72016-10-25 15:08:01 -07001221 ObjPtr<mirror::Object> new_array = mirror::Array::Alloc<true>(
1222 self,
1223 array_class,
1224 length,
1225 array_class->GetComponentSizeShift(),
1226 Runtime::Current()->GetHeap()->GetCurrentAllocator());
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001227 if (UNLIKELY(new_array == nullptr)) {
1228 self->AssertPendingOOMException();
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001229 return false;
1230 }
Igor Murashkin158f35c2015-06-10 15:55:30 -07001231 uint32_t arg[Instruction::kMaxVarArgRegs]; // only used in filled-new-array.
1232 uint32_t vregC = 0; // only used in filled-new-array-range.
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001233 if (is_range) {
Sebastien Hertzabff6432014-01-27 18:01:39 +01001234 vregC = inst->VRegC_3rc();
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001235 } else {
Ian Rogers29a26482014-05-02 15:27:29 -07001236 inst->GetVarArgs(arg);
Sebastien Hertzabff6432014-01-27 18:01:39 +01001237 }
Sebastien Hertzabff6432014-01-27 18:01:39 +01001238 for (int32_t i = 0; i < length; ++i) {
1239 size_t src_reg = is_range ? vregC + i : arg[i];
1240 if (is_primitive_int_component) {
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001241 new_array->AsIntArray()->SetWithoutChecks<transaction_active>(
1242 i, shadow_frame.GetVReg(src_reg));
Sebastien Hertzabff6432014-01-27 18:01:39 +01001243 } else {
Mathieu Chartieref41db72016-10-25 15:08:01 -07001244 new_array->AsObjectArray<mirror::Object>()->SetWithoutChecks<transaction_active>(
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001245 i, shadow_frame.GetVRegReference(src_reg));
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001246 }
1247 }
1248
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001249 result->SetL(new_array);
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001250 return true;
1251}
1252
Mathieu Chartieref41db72016-10-25 15:08:01 -07001253// TODO: Use ObjPtr here.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001254template<typename T>
Mathieu Chartieref41db72016-10-25 15:08:01 -07001255static void RecordArrayElementsInTransactionImpl(mirror::PrimitiveArray<T>* array,
1256 int32_t count)
1257 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001258 Runtime* runtime = Runtime::Current();
1259 for (int32_t i = 0; i < count; ++i) {
1260 runtime->RecordWriteArray(array, i, array->GetWithoutChecks(i));
1261 }
1262}
1263
Mathieu Chartieref41db72016-10-25 15:08:01 -07001264void RecordArrayElementsInTransaction(ObjPtr<mirror::Array> array, int32_t count)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001265 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001266 DCHECK(Runtime::Current()->IsActiveTransaction());
1267 DCHECK(array != nullptr);
1268 DCHECK_LE(count, array->GetLength());
1269 Primitive::Type primitive_component_type = array->GetClass()->GetComponentType()->GetPrimitiveType();
1270 switch (primitive_component_type) {
1271 case Primitive::kPrimBoolean:
1272 RecordArrayElementsInTransactionImpl(array->AsBooleanArray(), count);
1273 break;
1274 case Primitive::kPrimByte:
1275 RecordArrayElementsInTransactionImpl(array->AsByteArray(), count);
1276 break;
1277 case Primitive::kPrimChar:
1278 RecordArrayElementsInTransactionImpl(array->AsCharArray(), count);
1279 break;
1280 case Primitive::kPrimShort:
1281 RecordArrayElementsInTransactionImpl(array->AsShortArray(), count);
1282 break;
1283 case Primitive::kPrimInt:
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001284 RecordArrayElementsInTransactionImpl(array->AsIntArray(), count);
1285 break;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001286 case Primitive::kPrimFloat:
1287 RecordArrayElementsInTransactionImpl(array->AsFloatArray(), count);
1288 break;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001289 case Primitive::kPrimLong:
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001290 RecordArrayElementsInTransactionImpl(array->AsLongArray(), count);
1291 break;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001292 case Primitive::kPrimDouble:
1293 RecordArrayElementsInTransactionImpl(array->AsDoubleArray(), count);
1294 break;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001295 default:
1296 LOG(FATAL) << "Unsupported primitive type " << primitive_component_type
1297 << " in fill-array-data";
1298 break;
1299 }
1300}
1301
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001302// Explicit DoCall template function declarations.
Sebastien Hertzc6714852013-09-30 16:42:32 +02001303#define EXPLICIT_DO_CALL_TEMPLATE_DECL(_is_range, _do_assignability_check) \
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001304 template REQUIRES_SHARED(Locks::mutator_lock_) \
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001305 bool DoCall<_is_range, _do_assignability_check>(ArtMethod* method, Thread* self, \
1306 ShadowFrame& shadow_frame, \
Sebastien Hertzc6714852013-09-30 16:42:32 +02001307 const Instruction* inst, uint16_t inst_data, \
1308 JValue* result)
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001309EXPLICIT_DO_CALL_TEMPLATE_DECL(false, false);
1310EXPLICIT_DO_CALL_TEMPLATE_DECL(false, true);
1311EXPLICIT_DO_CALL_TEMPLATE_DECL(true, false);
1312EXPLICIT_DO_CALL_TEMPLATE_DECL(true, true);
1313#undef EXPLICIT_DO_CALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001314
Orion Hodsonc069a302017-01-18 09:23:12 +00001315// Explicit DoInvokeCustom template function declarations.
1316#define EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL(_is_range) \
1317 template REQUIRES_SHARED(Locks::mutator_lock_) \
1318 bool DoInvokeCustom<_is_range>( \
1319 Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \
Narayan Kamath9823e782016-08-03 12:46:58 +01001320 uint16_t inst_data, JValue* result)
Orion Hodsonc069a302017-01-18 09:23:12 +00001321EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL(false);
1322EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL(true);
1323#undef EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL
Narayan Kamath9823e782016-08-03 12:46:58 +01001324
Orion Hodsonc069a302017-01-18 09:23:12 +00001325// Explicit DoInvokePolymorphic template function declarations.
1326#define EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL(_is_range) \
1327 template REQUIRES_SHARED(Locks::mutator_lock_) \
1328 bool DoInvokePolymorphic<_is_range>( \
1329 Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \
1330 uint16_t inst_data, JValue* result)
1331EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL(false);
1332EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL(true);
Narayan Kamath9823e782016-08-03 12:46:58 +01001333#undef EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL
1334
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001335// Explicit DoFilledNewArray template function declarations.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001336#define EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(_is_range_, _check, _transaction_active) \
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001337 template REQUIRES_SHARED(Locks::mutator_lock_) \
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001338 bool DoFilledNewArray<_is_range_, _check, _transaction_active>(const Instruction* inst, \
1339 const ShadowFrame& shadow_frame, \
1340 Thread* self, JValue* result)
1341#define EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(_transaction_active) \
1342 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, false, _transaction_active); \
1343 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, true, _transaction_active); \
1344 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, false, _transaction_active); \
1345 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, true, _transaction_active)
1346EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(false);
1347EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(true);
1348#undef EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001349#undef EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL
1350
1351} // namespace interpreter
1352} // namespace art