blob: 9fb9fe7274f27cfbcb896faf2f114b88b7f92efd [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"
Andreas Gampee2abbc62017-09-15 11:59:26 -070023#include "dex_file_types.h"
Nicolas Geoffray7bf2b4f2015-07-08 10:11:59 +000024#include "entrypoints/runtime_asm_entrypoints.h"
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +000025#include "jit/jit.h"
Narayan Kamath9823e782016-08-03 12:46:58 +010026#include "jvalue.h"
Narayan Kamath208f8572016-08-03 12:46:58 +010027#include "method_handles-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070028#include "method_handles.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010029#include "mirror/array-inl.h"
Narayan Kamath9823e782016-08-03 12:46:58 +010030#include "mirror/class.h"
Narayan Kamath000e1882016-10-24 17:14:25 +010031#include "mirror/emulated_stack_frame.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080032#include "mirror/method_handle_impl-inl.h"
Narayan Kamath9823e782016-08-03 12:46:58 +010033#include "reflection-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070034#include "reflection.h"
Andreas Gampeb3025922015-09-01 14:45:00 -070035#include "stack.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070036#include "thread-inl.h"
Chang Xingbd208d82017-07-12 14:53:17 -070037#include "transaction.h"
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +010038#include "well_known_classes.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020039
40namespace art {
41namespace interpreter {
42
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000043void ThrowNullPointerExceptionFromInterpreter() {
44 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -070045}
46
Chang Xingbd208d82017-07-12 14:53:17 -070047template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
48 bool transaction_active>
Ian Rogers54874942014-06-10 16:31:03 -070049bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
50 uint16_t inst_data) {
51 const bool is_static = (find_type == StaticObjectRead) || (find_type == StaticPrimitiveRead);
52 const uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
Roland Levillain4b8f1ec2015-08-26 18:34:03 +010053 ArtField* f =
54 FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
55 Primitive::ComponentSize(field_type));
Ian Rogers54874942014-06-10 16:31:03 -070056 if (UNLIKELY(f == nullptr)) {
57 CHECK(self->IsExceptionPending());
58 return false;
59 }
Mathieu Chartieref41db72016-10-25 15:08:01 -070060 ObjPtr<mirror::Object> obj;
Ian Rogers54874942014-06-10 16:31:03 -070061 if (is_static) {
62 obj = f->GetDeclaringClass();
Chang Xingbd208d82017-07-12 14:53:17 -070063 if (transaction_active) {
64 if (Runtime::Current()->GetTransaction()->ReadConstraint(obj.Ptr(), f)) {
65 Runtime::Current()->AbortTransactionAndThrowAbortError(self, "Can't read static fields of "
66 + obj->PrettyTypeOf() + " since it does not belong to clinit's class.");
67 return false;
68 }
69 }
Ian Rogers54874942014-06-10 16:31:03 -070070 } else {
71 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
72 if (UNLIKELY(obj == nullptr)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000073 ThrowNullPointerExceptionForFieldAccess(f, true);
Ian Rogers54874942014-06-10 16:31:03 -070074 return false;
75 }
76 }
Orion Hodson3d617ac2016-10-19 14:00:46 +010077
78 JValue result;
Alex Light084fa372017-06-16 08:58:34 -070079 if (UNLIKELY(!DoFieldGetCommon<field_type>(self, shadow_frame, obj, f, &result))) {
80 // Instrumentation threw an error!
81 CHECK(self->IsExceptionPending());
82 return false;
83 }
Ian Rogers54874942014-06-10 16:31:03 -070084 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
85 switch (field_type) {
86 case Primitive::kPrimBoolean:
Orion Hodson3d617ac2016-10-19 14:00:46 +010087 shadow_frame.SetVReg(vregA, result.GetZ());
Ian Rogers54874942014-06-10 16:31:03 -070088 break;
89 case Primitive::kPrimByte:
Orion Hodson3d617ac2016-10-19 14:00:46 +010090 shadow_frame.SetVReg(vregA, result.GetB());
Ian Rogers54874942014-06-10 16:31:03 -070091 break;
92 case Primitive::kPrimChar:
Orion Hodson3d617ac2016-10-19 14:00:46 +010093 shadow_frame.SetVReg(vregA, result.GetC());
Ian Rogers54874942014-06-10 16:31:03 -070094 break;
95 case Primitive::kPrimShort:
Orion Hodson3d617ac2016-10-19 14:00:46 +010096 shadow_frame.SetVReg(vregA, result.GetS());
Ian Rogers54874942014-06-10 16:31:03 -070097 break;
98 case Primitive::kPrimInt:
Orion Hodson3d617ac2016-10-19 14:00:46 +010099 shadow_frame.SetVReg(vregA, result.GetI());
Ian Rogers54874942014-06-10 16:31:03 -0700100 break;
101 case Primitive::kPrimLong:
Orion Hodson3d617ac2016-10-19 14:00:46 +0100102 shadow_frame.SetVRegLong(vregA, result.GetJ());
Ian Rogers54874942014-06-10 16:31:03 -0700103 break;
104 case Primitive::kPrimNot:
Orion Hodson3d617ac2016-10-19 14:00:46 +0100105 shadow_frame.SetVRegReference(vregA, result.GetL());
Ian Rogers54874942014-06-10 16:31:03 -0700106 break;
107 default:
108 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700109 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700110 }
111 return true;
112}
113
114// Explicitly instantiate all DoFieldGet functions.
Chang Xingbd208d82017-07-12 14:53:17 -0700115#define EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, _do_check, _transaction_active) \
116 template bool DoFieldGet<_find_type, _field_type, _do_check, _transaction_active>(Thread* self, \
Ian Rogers54874942014-06-10 16:31:03 -0700117 ShadowFrame& shadow_frame, \
118 const Instruction* inst, \
119 uint16_t inst_data)
120
121#define EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(_find_type, _field_type) \
Chang Xingbd208d82017-07-12 14:53:17 -0700122 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, false, true); \
123 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, false, false); \
124 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, true, true); \
125 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, true, false);
Ian Rogers54874942014-06-10 16:31:03 -0700126
127// iget-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700128EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimBoolean)
129EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimByte)
130EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimChar)
131EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimShort)
132EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimInt)
133EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimLong)
134EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstanceObjectRead, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700135
136// sget-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700137EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimBoolean)
138EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimByte)
139EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimChar)
140EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimShort)
141EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimInt)
142EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimLong)
143EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticObjectRead, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700144
145#undef EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL
146#undef EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL
147
148// Handles iget-quick, iget-wide-quick and iget-object-quick instructions.
149// Returns true on success, otherwise throws an exception and returns false.
150template<Primitive::Type field_type>
151bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) {
Mathieu Chartieref41db72016-10-25 15:08:01 -0700152 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
Ian Rogers54874942014-06-10 16:31:03 -0700153 if (UNLIKELY(obj == nullptr)) {
154 // We lost the reference to the field index so we cannot get a more
155 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000156 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -0700157 return false;
158 }
159 MemberOffset field_offset(inst->VRegC_22c());
160 // Report this field access to instrumentation if needed. Since we only have the offset of
161 // the field from the base of the object, we need to look for it first.
162 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
163 if (UNLIKELY(instrumentation->HasFieldReadListeners())) {
164 ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(),
165 field_offset.Uint32Value());
166 DCHECK(f != nullptr);
167 DCHECK(!f->IsStatic());
Alex Light084fa372017-06-16 08:58:34 -0700168 Thread* self = Thread::Current();
169 StackHandleScope<1> hs(self);
Mathieu Chartiera3147732016-10-26 22:57:02 -0700170 // Save obj in case the instrumentation event has thread suspension.
171 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj);
Alex Light084fa372017-06-16 08:58:34 -0700172 instrumentation->FieldReadEvent(self,
Mathieu Chartieref41db72016-10-25 15:08:01 -0700173 obj.Ptr(),
174 shadow_frame.GetMethod(),
175 shadow_frame.GetDexPC(),
176 f);
Alex Light084fa372017-06-16 08:58:34 -0700177 if (UNLIKELY(self->IsExceptionPending())) {
178 return false;
179 }
Ian Rogers54874942014-06-10 16:31:03 -0700180 }
181 // Note: iget-x-quick instructions are only for non-volatile fields.
182 const uint32_t vregA = inst->VRegA_22c(inst_data);
183 switch (field_type) {
184 case Primitive::kPrimInt:
185 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset)));
186 break;
Mathieu Chartierffc605c2014-12-10 10:35:44 -0800187 case Primitive::kPrimBoolean:
188 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset)));
189 break;
190 case Primitive::kPrimByte:
191 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset)));
192 break;
193 case Primitive::kPrimChar:
194 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset)));
195 break;
196 case Primitive::kPrimShort:
197 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldShort(field_offset)));
198 break;
Ian Rogers54874942014-06-10 16:31:03 -0700199 case Primitive::kPrimLong:
200 shadow_frame.SetVRegLong(vregA, static_cast<int64_t>(obj->GetField64(field_offset)));
201 break;
202 case Primitive::kPrimNot:
203 shadow_frame.SetVRegReference(vregA, obj->GetFieldObject<mirror::Object>(field_offset));
204 break;
205 default:
206 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700207 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700208 }
209 return true;
210}
211
212// Explicitly instantiate all DoIGetQuick functions.
213#define EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(_field_type) \
214 template bool DoIGetQuick<_field_type>(ShadowFrame& shadow_frame, const Instruction* inst, \
215 uint16_t inst_data)
216
Mathieu Chartierffc605c2014-12-10 10:35:44 -0800217EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimInt); // iget-quick.
218EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimBoolean); // iget-boolean-quick.
219EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimByte); // iget-byte-quick.
220EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimChar); // iget-char-quick.
221EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimShort); // iget-short-quick.
222EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimLong); // iget-wide-quick.
223EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimNot); // iget-object-quick.
Ian Rogers54874942014-06-10 16:31:03 -0700224#undef EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL
225
226template<Primitive::Type field_type>
227static JValue GetFieldValue(const ShadowFrame& shadow_frame, uint32_t vreg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700228 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers54874942014-06-10 16:31:03 -0700229 JValue field_value;
230 switch (field_type) {
231 case Primitive::kPrimBoolean:
232 field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg)));
233 break;
234 case Primitive::kPrimByte:
235 field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg)));
236 break;
237 case Primitive::kPrimChar:
238 field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg)));
239 break;
240 case Primitive::kPrimShort:
241 field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg)));
242 break;
243 case Primitive::kPrimInt:
244 field_value.SetI(shadow_frame.GetVReg(vreg));
245 break;
246 case Primitive::kPrimLong:
247 field_value.SetJ(shadow_frame.GetVRegLong(vreg));
248 break;
249 case Primitive::kPrimNot:
250 field_value.SetL(shadow_frame.GetVRegReference(vreg));
251 break;
252 default:
253 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700254 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700255 }
256 return field_value;
257}
258
Orion Hodson3d617ac2016-10-19 14:00:46 +0100259template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
260 bool transaction_active>
261bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst,
262 uint16_t inst_data) {
263 const bool do_assignability_check = do_access_check;
264 bool is_static = (find_type == StaticObjectWrite) || (find_type == StaticPrimitiveWrite);
265 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
266 ArtField* f =
267 FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
268 Primitive::ComponentSize(field_type));
269 if (UNLIKELY(f == nullptr)) {
270 CHECK(self->IsExceptionPending());
271 return false;
272 }
273 ObjPtr<mirror::Object> obj;
274 if (is_static) {
275 obj = f->GetDeclaringClass();
Chang Xingbd208d82017-07-12 14:53:17 -0700276 if (transaction_active) {
277 if (Runtime::Current()->GetTransaction()->WriteConstraint(obj.Ptr(), f)) {
278 Runtime::Current()->AbortTransactionAndThrowAbortError(
279 self, "Can't set fields of " + obj->PrettyTypeOf());
280 return false;
281 }
282 }
283
Orion Hodson3d617ac2016-10-19 14:00:46 +0100284 } else {
285 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
286 if (UNLIKELY(obj == nullptr)) {
287 ThrowNullPointerExceptionForFieldAccess(f, false);
288 return false;
289 }
290 }
291
292 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100293 JValue value = GetFieldValue<field_type>(shadow_frame, vregA);
Orion Hodson3d617ac2016-10-19 14:00:46 +0100294 return DoFieldPutCommon<field_type, do_assignability_check, transaction_active>(self,
295 shadow_frame,
296 obj,
297 f,
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100298 value);
Orion Hodson3d617ac2016-10-19 14:00:46 +0100299}
300
Ian Rogers54874942014-06-10 16:31:03 -0700301// Explicitly instantiate all DoFieldPut functions.
302#define EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, _do_check, _transaction_active) \
303 template bool DoFieldPut<_find_type, _field_type, _do_check, _transaction_active>(Thread* self, \
304 const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
305
306#define EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(_find_type, _field_type) \
307 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, false); \
308 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, false); \
309 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, true); \
310 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, true);
311
312// iput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700313EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimBoolean)
314EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimByte)
315EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimChar)
316EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimShort)
317EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimInt)
318EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimLong)
319EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstanceObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700320
321// sput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700322EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimBoolean)
323EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimByte)
324EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimChar)
325EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimShort)
326EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimInt)
327EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimLong)
328EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700329
330#undef EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL
331#undef EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL
332
333template<Primitive::Type field_type, bool transaction_active>
334bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) {
Mathieu Chartieref41db72016-10-25 15:08:01 -0700335 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
Ian Rogers54874942014-06-10 16:31:03 -0700336 if (UNLIKELY(obj == nullptr)) {
337 // We lost the reference to the field index so we cannot get a more
338 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000339 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -0700340 return false;
341 }
342 MemberOffset field_offset(inst->VRegC_22c());
343 const uint32_t vregA = inst->VRegA_22c(inst_data);
344 // Report this field modification to instrumentation if needed. Since we only have the offset of
345 // the field from the base of the object, we need to look for it first.
346 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
347 if (UNLIKELY(instrumentation->HasFieldWriteListeners())) {
348 ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(),
349 field_offset.Uint32Value());
350 DCHECK(f != nullptr);
351 DCHECK(!f->IsStatic());
352 JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA);
Alex Light084fa372017-06-16 08:58:34 -0700353 Thread* self = Thread::Current();
354 StackHandleScope<2> hs(self);
Mathieu Chartiera3147732016-10-26 22:57:02 -0700355 // Save obj in case the instrumentation event has thread suspension.
356 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj);
Alex Light084fa372017-06-16 08:58:34 -0700357 mirror::Object* fake_root = nullptr;
358 HandleWrapper<mirror::Object> ret(hs.NewHandleWrapper<mirror::Object>(
359 field_type == Primitive::kPrimNot ? field_value.GetGCRoot() : &fake_root));
360 instrumentation->FieldWriteEvent(self,
Mathieu Chartieref41db72016-10-25 15:08:01 -0700361 obj.Ptr(),
362 shadow_frame.GetMethod(),
363 shadow_frame.GetDexPC(),
364 f,
365 field_value);
Alex Light084fa372017-06-16 08:58:34 -0700366 if (UNLIKELY(self->IsExceptionPending())) {
367 return false;
368 }
Ian Rogers54874942014-06-10 16:31:03 -0700369 }
370 // Note: iput-x-quick instructions are only for non-volatile fields.
371 switch (field_type) {
Fred Shih37f05ef2014-07-16 18:38:08 -0700372 case Primitive::kPrimBoolean:
373 obj->SetFieldBoolean<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
374 break;
375 case Primitive::kPrimByte:
376 obj->SetFieldByte<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
377 break;
378 case Primitive::kPrimChar:
379 obj->SetFieldChar<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
380 break;
381 case Primitive::kPrimShort:
382 obj->SetFieldShort<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
383 break;
Ian Rogers54874942014-06-10 16:31:03 -0700384 case Primitive::kPrimInt:
385 obj->SetField32<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
386 break;
387 case Primitive::kPrimLong:
388 obj->SetField64<transaction_active>(field_offset, shadow_frame.GetVRegLong(vregA));
389 break;
390 case Primitive::kPrimNot:
391 obj->SetFieldObject<transaction_active>(field_offset, shadow_frame.GetVRegReference(vregA));
392 break;
393 default:
394 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700395 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700396 }
397 return true;
398}
399
400// Explicitly instantiate all DoIPutQuick functions.
401#define EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, _transaction_active) \
402 template bool DoIPutQuick<_field_type, _transaction_active>(const ShadowFrame& shadow_frame, \
403 const Instruction* inst, \
404 uint16_t inst_data)
405
406#define EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(_field_type) \
407 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, false); \
408 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, true);
409
Andreas Gampec8ccf682014-09-29 20:07:43 -0700410EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimInt) // iput-quick.
411EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimBoolean) // iput-boolean-quick.
412EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimByte) // iput-byte-quick.
413EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimChar) // iput-char-quick.
414EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimShort) // iput-short-quick.
415EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimLong) // iput-wide-quick.
416EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimNot) // iput-object-quick.
Ian Rogers54874942014-06-10 16:31:03 -0700417#undef EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL
418#undef EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL
419
Alex Light9fb1ab12017-09-05 09:32:49 -0700420// We execute any instrumentation events that are triggered by this exception and change the
421// shadow_frame's dex_pc to that of the exception handler if there is one in the current method.
422// Return true if we should continue executing in the current method and false if we need to go up
423// the stack to find an exception handler.
Sebastien Hertz520633b2015-09-08 17:03:36 +0200424// We accept a null Instrumentation* meaning we must not report anything to the instrumentation.
Alex Light9fb1ab12017-09-05 09:32:49 -0700425// TODO We should have a better way to skip instrumentation reporting or possibly rethink that
426// behavior.
427bool MoveToExceptionHandler(Thread* self,
428 ShadowFrame& shadow_frame,
429 const instrumentation::Instrumentation* instrumentation) {
Ian Rogers54874942014-06-10 16:31:03 -0700430 self->VerifyStack();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700431 StackHandleScope<2> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000432 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Alex Light9fb1ab12017-09-05 09:32:49 -0700433 if (instrumentation != nullptr &&
434 instrumentation->HasExceptionThrownListeners() &&
435 self->IsExceptionThrownByCurrentMethod(exception.Get())) {
436 // See b/65049545 for why we don't need to check to see if the exception has changed.
Alex Light6e1607e2017-08-23 10:06:18 -0700437 instrumentation->ExceptionThrownEvent(self, exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +0200438 }
Ian Rogers54874942014-06-10 16:31:03 -0700439 bool clear_exception = false;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700440 uint32_t found_dex_pc = shadow_frame.GetMethod()->FindCatchBlock(
Alex Light9fb1ab12017-09-05 09:32:49 -0700441 hs.NewHandle(exception->GetClass()), shadow_frame.GetDexPC(), &clear_exception);
Andreas Gampee2abbc62017-09-15 11:59:26 -0700442 if (found_dex_pc == dex::kDexNoIndex) {
Alex Light9fb1ab12017-09-05 09:32:49 -0700443 if (instrumentation != nullptr) {
444 if (shadow_frame.NeedsNotifyPop()) {
445 instrumentation->WatchedFramePopped(self, shadow_frame);
446 }
447 // Exception is not caught by the current method. We will unwind to the
448 // caller. Notify any instrumentation listener.
449 instrumentation->MethodUnwindEvent(self,
450 shadow_frame.GetThisObject(),
451 shadow_frame.GetMethod(),
452 shadow_frame.GetDexPC());
Alex Lighte814f9d2017-07-31 16:14:39 -0700453 }
Alex Light9fb1ab12017-09-05 09:32:49 -0700454 return false;
Ian Rogers54874942014-06-10 16:31:03 -0700455 } else {
Alex Light9fb1ab12017-09-05 09:32:49 -0700456 shadow_frame.SetDexPC(found_dex_pc);
457 if (instrumentation != nullptr && instrumentation->HasExceptionHandledListeners()) {
458 self->ClearException();
459 instrumentation->ExceptionHandledEvent(self, exception.Get());
460 if (UNLIKELY(self->IsExceptionPending())) {
461 // Exception handled event threw an exception. Try to find the handler for this one.
462 return MoveToExceptionHandler(self, shadow_frame, instrumentation);
463 } else if (!clear_exception) {
464 self->SetException(exception.Get());
465 }
466 } else if (clear_exception) {
Ian Rogers54874942014-06-10 16:31:03 -0700467 self->ClearException();
468 }
Alex Light9fb1ab12017-09-05 09:32:49 -0700469 return true;
Ian Rogers54874942014-06-10 16:31:03 -0700470 }
Ian Rogers54874942014-06-10 16:31:03 -0700471}
472
Ian Rogerse94652f2014-12-02 11:13:19 -0800473void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) {
474 LOG(FATAL) << "Unexpected instruction: "
475 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile());
476 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700477}
478
Sebastien Hertz45b15972015-04-03 16:07:05 +0200479void AbortTransactionF(Thread* self, const char* fmt, ...) {
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700480 va_list args;
481 va_start(args, fmt);
Sebastien Hertz45b15972015-04-03 16:07:05 +0200482 AbortTransactionV(self, fmt, args);
483 va_end(args);
484}
485
486void AbortTransactionV(Thread* self, const char* fmt, va_list args) {
487 CHECK(Runtime::Current()->IsActiveTransaction());
488 // Constructs abort message.
Sebastien Hertz1c80bec2015-02-03 11:58:06 +0100489 std::string abort_msg;
Andreas Gampe46ee31b2016-12-14 10:11:49 -0800490 android::base::StringAppendV(&abort_msg, fmt, args);
Sebastien Hertz1c80bec2015-02-03 11:58:06 +0100491 // Throws an exception so we can abort the transaction and rollback every change.
Sebastien Hertz2fd7e692015-04-02 11:11:19 +0200492 Runtime::Current()->AbortTransactionAndThrowAbortError(self, abort_msg);
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700493}
494
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100495// START DECLARATIONS :
496//
497// These additional declarations are required because clang complains
498// about ALWAYS_INLINE (-Werror, -Wgcc-compat) in definitions.
499//
500
Narayan Kamath9823e782016-08-03 12:46:58 +0100501template <bool is_range, bool do_assignability_check>
Vladimir Markod16363a2017-02-01 14:09:13 +0000502static ALWAYS_INLINE bool DoCallCommon(ArtMethod* called_method,
503 Thread* self,
504 ShadowFrame& shadow_frame,
505 JValue* result,
506 uint16_t number_of_inputs,
507 uint32_t (&arg)[Instruction::kMaxVarArgRegs],
508 uint32_t vregC) REQUIRES_SHARED(Locks::mutator_lock_);
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100509
510template <bool is_range>
Narayan Kamath2cb856c2016-11-02 12:01:26 +0000511ALWAYS_INLINE void CopyRegisters(ShadowFrame& caller_frame,
512 ShadowFrame* callee_frame,
513 const uint32_t (&arg)[Instruction::kMaxVarArgRegs],
514 const size_t first_src_reg,
515 const size_t first_dest_reg,
516 const size_t num_regs) REQUIRES_SHARED(Locks::mutator_lock_);
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100517
518// END DECLARATIONS.
519
Siva Chandra05d24152016-01-05 17:43:17 -0800520void ArtInterpreterToCompiledCodeBridge(Thread* self,
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100521 ArtMethod* caller,
Siva Chandra05d24152016-01-05 17:43:17 -0800522 ShadowFrame* shadow_frame,
Jeff Hao5ea84132017-05-05 16:59:29 -0700523 uint16_t arg_offset,
Siva Chandra05d24152016-01-05 17:43:17 -0800524 JValue* result)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700525 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700526 ArtMethod* method = shadow_frame->GetMethod();
527 // Ensure static methods are initialized.
528 if (method->IsStatic()) {
Mathieu Chartieref41db72016-10-25 15:08:01 -0700529 ObjPtr<mirror::Class> declaringClass = method->GetDeclaringClass();
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700530 if (UNLIKELY(!declaringClass->IsInitialized())) {
531 self->PushShadowFrame(shadow_frame);
532 StackHandleScope<1> hs(self);
533 Handle<mirror::Class> h_class(hs.NewHandle(declaringClass));
Nicolas Geoffray01822292017-03-09 09:03:19 +0000534 if (UNLIKELY(!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true,
535 true))) {
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700536 self->PopShadowFrame();
537 DCHECK(self->IsExceptionPending());
538 return;
539 }
540 self->PopShadowFrame();
541 CHECK(h_class->IsInitializing());
Nicolas Geoffray01822292017-03-09 09:03:19 +0000542 // Reload from shadow frame in case the method moved, this is faster than adding a handle.
543 method = shadow_frame->GetMethod();
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700544 }
545 }
Jeff Hao5ea84132017-05-05 16:59:29 -0700546 // Basic checks for the arg_offset. If there's no code item, the arg_offset must be 0. Otherwise,
547 // check that the arg_offset isn't greater than the number of registers. A stronger check is
548 // difficult since the frame may contain space for all the registers in the method, or only enough
549 // space for the arguments.
550 if (kIsDebugBuild) {
551 if (method->GetCodeItem() == nullptr) {
552 DCHECK_EQ(0u, arg_offset) << method->PrettyMethod();
553 } else {
554 DCHECK_LE(arg_offset, shadow_frame->NumberOfVRegs());
555 }
556 }
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100557 jit::Jit* jit = Runtime::Current()->GetJit();
558 if (jit != nullptr && caller != nullptr) {
559 jit->NotifyInterpreterToCompiledCodeTransition(self, caller);
560 }
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700561 method->Invoke(self, shadow_frame->GetVRegArgs(arg_offset),
562 (shadow_frame->NumberOfVRegs() - arg_offset) * sizeof(uint32_t),
Andreas Gampe542451c2016-07-26 09:02:02 -0700563 result, method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty());
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700564}
565
Mingyao Yangffedec52016-05-19 10:48:40 -0700566void SetStringInitValueToAllAliases(ShadowFrame* shadow_frame,
567 uint16_t this_obj_vreg,
568 JValue result)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700569 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartieref41db72016-10-25 15:08:01 -0700570 ObjPtr<mirror::Object> existing = shadow_frame->GetVRegReference(this_obj_vreg);
Mingyao Yangffedec52016-05-19 10:48:40 -0700571 if (existing == nullptr) {
572 // If it's null, we come from compiled code that was deoptimized. Nothing to do,
573 // as the compiler verified there was no alias.
574 // Set the new string result of the StringFactory.
575 shadow_frame->SetVRegReference(this_obj_vreg, result.GetL());
576 return;
577 }
578 // Set the string init result into all aliases.
579 for (uint32_t i = 0, e = shadow_frame->NumberOfVRegs(); i < e; ++i) {
580 if (shadow_frame->GetVRegReference(i) == existing) {
581 DCHECK_EQ(shadow_frame->GetVRegReference(i),
582 reinterpret_cast<mirror::Object*>(shadow_frame->GetVReg(i)));
583 shadow_frame->SetVRegReference(i, result.GetL());
584 DCHECK_EQ(shadow_frame->GetVRegReference(i),
585 reinterpret_cast<mirror::Object*>(shadow_frame->GetVReg(i)));
586 }
587 }
588}
589
Orion Hodsonc069a302017-01-18 09:23:12 +0000590template<bool is_range>
Orion Hodson811bd5f2016-12-07 11:35:37 +0000591bool DoInvokePolymorphic(Thread* self,
592 ShadowFrame& shadow_frame,
593 const Instruction* inst,
594 uint16_t inst_data,
595 JValue* result)
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100596 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light848574c2017-09-25 16:59:39 -0700597 // Make sure to check for async exceptions
598 if (UNLIKELY(self->ObserveAsyncException())) {
599 return false;
600 }
Narayan Kamath9823e782016-08-03 12:46:58 +0100601 // Invoke-polymorphic instructions always take a receiver. i.e, they are never static.
602 const uint32_t vRegC = (is_range) ? inst->VRegC_4rcc() : inst->VRegC_45cc();
Orion Hodson3d617ac2016-10-19 14:00:46 +0100603 const int invoke_method_idx = (is_range) ? inst->VRegB_4rcc() : inst->VRegB_45cc();
Narayan Kamath9823e782016-08-03 12:46:58 +0100604
Orion Hodson1a06f9f2016-11-09 08:32:42 +0000605 // Initialize |result| to 0 as this is the default return value for
606 // polymorphic invocations of method handle types with void return
607 // and provides sane return result in error cases.
608 result->SetJ(0);
609
Orion Hodson3d617ac2016-10-19 14:00:46 +0100610 // The invoke_method_idx here is the name of the signature polymorphic method that
Narayan Kamath9823e782016-08-03 12:46:58 +0100611 // was symbolically invoked in bytecode (say MethodHandle.invoke or MethodHandle.invokeExact)
612 // and not the method that we'll dispatch to in the end.
Orion Hodsone7732be2017-10-11 14:35:20 +0100613 StackHandleScope<2> hs(self);
Orion Hodsonc069a302017-01-18 09:23:12 +0000614 Handle<mirror::MethodHandle> method_handle(hs.NewHandle(
615 ObjPtr<mirror::MethodHandle>::DownCast(
Mathieu Chartieref41db72016-10-25 15:08:01 -0700616 MakeObjPtr(shadow_frame.GetVRegReference(vRegC)))));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800617 if (UNLIKELY(method_handle == nullptr)) {
Narayan Kamath9823e782016-08-03 12:46:58 +0100618 // Note that the invoke type is kVirtual here because a call to a signature
619 // polymorphic method is shaped like a virtual call at the bytecode level.
Orion Hodson3d617ac2016-10-19 14:00:46 +0100620 ThrowNullPointerExceptionForMethodAccess(invoke_method_idx, InvokeType::kVirtual);
Narayan Kamath9823e782016-08-03 12:46:58 +0100621 return false;
622 }
623
624 // The vRegH value gives the index of the proto_id associated with this
Orion Hodson811bd5f2016-12-07 11:35:37 +0000625 // signature polymorphic call site.
Narayan Kamath9823e782016-08-03 12:46:58 +0100626 const uint32_t callsite_proto_id = (is_range) ? inst->VRegH_4rcc() : inst->VRegH_45cc();
627
628 // Call through to the classlinker and ask it to resolve the static type associated
629 // with the callsite. This information is stored in the dex cache so it's
630 // guaranteed to be fast after the first resolution.
Narayan Kamath9823e782016-08-03 12:46:58 +0100631 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Orion Hodsone7732be2017-10-11 14:35:20 +0100632 Handle<mirror::MethodType> callsite_type(hs.NewHandle(
633 class_linker->ResolveMethodType(self, callsite_proto_id, shadow_frame.GetMethod())));
Narayan Kamath9823e782016-08-03 12:46:58 +0100634
635 // This implies we couldn't resolve one or more types in this method handle.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800636 if (UNLIKELY(callsite_type == nullptr)) {
Narayan Kamath9823e782016-08-03 12:46:58 +0100637 CHECK(self->IsExceptionPending());
Narayan Kamath9823e782016-08-03 12:46:58 +0100638 return false;
639 }
640
Orion Hodson811bd5f2016-12-07 11:35:37 +0000641 ArtMethod* invoke_method =
Vladimir Markoba118822017-06-12 15:41:56 +0100642 class_linker->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
643 self, invoke_method_idx, shadow_frame.GetMethod(), kVirtual);
Narayan Kamath0a8485e2016-11-02 18:47:11 +0000644
Orion Hodson811bd5f2016-12-07 11:35:37 +0000645 // There is a common dispatch method for method handles that takes
646 // arguments either from a range or an array of arguments depending
647 // on whether the DEX instruction is invoke-polymorphic/range or
648 // invoke-polymorphic. The array here is for the latter.
649 uint32_t args[Instruction::kMaxVarArgRegs] = {};
Narayan Kamath9823e782016-08-03 12:46:58 +0100650 if (is_range) {
Orion Hodson811bd5f2016-12-07 11:35:37 +0000651 // VRegC is the register holding the method handle. Arguments passed
652 // to the method handle's target do not include the method handle.
653 uint32_t first_arg = inst->VRegC_4rcc() + 1;
Orion Hodsonc069a302017-01-18 09:23:12 +0000654 return DoInvokePolymorphic<is_range>(self,
655 invoke_method,
656 shadow_frame,
657 method_handle,
658 callsite_type,
659 args /* unused */,
660 first_arg,
661 result);
Narayan Kamath9823e782016-08-03 12:46:58 +0100662 } else {
Orion Hodson811bd5f2016-12-07 11:35:37 +0000663 // Get the register arguments for the invoke.
664 inst->GetVarArgs(args, inst_data);
665 // Drop the first register which is the method handle performing the invoke.
Alexey Frunze8631a462017-01-19 19:07:37 -0800666 memmove(args, args + 1, sizeof(args[0]) * (Instruction::kMaxVarArgRegs - 1));
Orion Hodson811bd5f2016-12-07 11:35:37 +0000667 args[Instruction::kMaxVarArgRegs - 1] = 0;
Orion Hodsonc069a302017-01-18 09:23:12 +0000668 return DoInvokePolymorphic<is_range>(self,
669 invoke_method,
670 shadow_frame,
671 method_handle,
672 callsite_type,
673 args,
674 args[0],
675 result);
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100676 }
677}
678
Orion Hodsonc069a302017-01-18 09:23:12 +0000679static ObjPtr<mirror::CallSite> InvokeBootstrapMethod(Thread* self,
680 ShadowFrame& shadow_frame,
681 uint32_t call_site_idx)
682 REQUIRES_SHARED(Locks::mutator_lock_) {
683 ArtMethod* referrer = shadow_frame.GetMethod();
684 const DexFile* dex_file = referrer->GetDexFile();
685 const DexFile::CallSiteIdItem& csi = dex_file->GetCallSiteId(call_site_idx);
686
Orion Hodson631827d2017-04-10 14:53:47 +0100687 StackHandleScope<10> hs(self);
Orion Hodsonc069a302017-01-18 09:23:12 +0000688 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(referrer->GetClassLoader()));
689 Handle<mirror::DexCache> dex_cache(hs.NewHandle(referrer->GetDexCache()));
690
691 CallSiteArrayValueIterator it(*dex_file, csi);
692 uint32_t method_handle_idx = static_cast<uint32_t>(it.GetJavaValue().i);
693 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
694 Handle<mirror::MethodHandle>
Orion Hodsone7732be2017-10-11 14:35:20 +0100695 bootstrap(hs.NewHandle(class_linker->ResolveMethodHandle(self, method_handle_idx, referrer)));
Orion Hodsonc069a302017-01-18 09:23:12 +0000696 if (bootstrap.IsNull()) {
697 DCHECK(self->IsExceptionPending());
698 return nullptr;
699 }
700 Handle<mirror::MethodType> bootstrap_method_type = hs.NewHandle(bootstrap->GetMethodType());
701 it.Next();
702
703 DCHECK_EQ(static_cast<size_t>(bootstrap->GetMethodType()->GetPTypes()->GetLength()), it.Size());
704 const size_t num_bootstrap_vregs = bootstrap->GetMethodType()->NumberOfVRegs();
705
706 // Set-up a shadow frame for invoking the bootstrap method handle.
707 ShadowFrameAllocaUniquePtr bootstrap_frame =
708 CREATE_SHADOW_FRAME(num_bootstrap_vregs, nullptr, referrer, shadow_frame.GetDexPC());
709 ScopedStackedShadowFramePusher pusher(
710 self, bootstrap_frame.get(), StackedShadowFrameType::kShadowFrameUnderConstruction);
711 size_t vreg = 0;
712
713 // The first parameter is a MethodHandles lookup instance.
714 {
715 Handle<mirror::Class> lookup_class(hs.NewHandle(bootstrap->GetTargetClass()));
716 ObjPtr<mirror::MethodHandlesLookup> lookup =
717 mirror::MethodHandlesLookup::Create(self, lookup_class);
718 if (lookup.IsNull()) {
719 DCHECK(self->IsExceptionPending());
720 return nullptr;
721 }
722 bootstrap_frame->SetVRegReference(vreg++, lookup.Ptr());
723 }
724
725 // The second parameter is the name to lookup.
726 {
727 dex::StringIndex name_idx(static_cast<uint32_t>(it.GetJavaValue().i));
728 ObjPtr<mirror::String> name = class_linker->ResolveString(*dex_file, name_idx, dex_cache);
729 if (name.IsNull()) {
730 DCHECK(self->IsExceptionPending());
731 return nullptr;
732 }
733 bootstrap_frame->SetVRegReference(vreg++, name.Ptr());
734 }
735 it.Next();
736
737 // The third parameter is the method type associated with the name.
738 uint32_t method_type_idx = static_cast<uint32_t>(it.GetJavaValue().i);
739 Handle<mirror::MethodType>
Orion Hodsone7732be2017-10-11 14:35:20 +0100740 method_type(hs.NewHandle(class_linker->ResolveMethodType(self,
741 *dex_file,
Orion Hodsonc069a302017-01-18 09:23:12 +0000742 method_type_idx,
743 dex_cache,
744 class_loader)));
745 if (method_type.IsNull()) {
746 DCHECK(self->IsExceptionPending());
747 return nullptr;
748 }
749 bootstrap_frame->SetVRegReference(vreg++, method_type.Get());
750 it.Next();
751
752 // Append remaining arguments (if any).
753 while (it.HasNext()) {
754 const jvalue& jvalue = it.GetJavaValue();
755 switch (it.GetValueType()) {
756 case EncodedArrayValueIterator::ValueType::kBoolean:
757 case EncodedArrayValueIterator::ValueType::kByte:
758 case EncodedArrayValueIterator::ValueType::kChar:
759 case EncodedArrayValueIterator::ValueType::kShort:
760 case EncodedArrayValueIterator::ValueType::kInt:
761 bootstrap_frame->SetVReg(vreg, jvalue.i);
762 vreg += 1;
763 break;
764 case EncodedArrayValueIterator::ValueType::kLong:
765 bootstrap_frame->SetVRegLong(vreg, jvalue.j);
766 vreg += 2;
767 break;
768 case EncodedArrayValueIterator::ValueType::kFloat:
769 bootstrap_frame->SetVRegFloat(vreg, jvalue.f);
770 vreg += 1;
771 break;
772 case EncodedArrayValueIterator::ValueType::kDouble:
773 bootstrap_frame->SetVRegDouble(vreg, jvalue.d);
774 vreg += 2;
775 break;
776 case EncodedArrayValueIterator::ValueType::kMethodType: {
777 uint32_t idx = static_cast<uint32_t>(jvalue.i);
778 ObjPtr<mirror::MethodType> ref =
Orion Hodsone7732be2017-10-11 14:35:20 +0100779 class_linker->ResolveMethodType(self, *dex_file, idx, dex_cache, class_loader);
Orion Hodsonc069a302017-01-18 09:23:12 +0000780 if (ref.IsNull()) {
781 DCHECK(self->IsExceptionPending());
782 return nullptr;
783 }
784 bootstrap_frame->SetVRegReference(vreg, ref.Ptr());
785 vreg += 1;
786 break;
787 }
788 case EncodedArrayValueIterator::ValueType::kMethodHandle: {
789 uint32_t idx = static_cast<uint32_t>(jvalue.i);
790 ObjPtr<mirror::MethodHandle> ref =
Orion Hodsone7732be2017-10-11 14:35:20 +0100791 class_linker->ResolveMethodHandle(self, idx, referrer);
Orion Hodsonc069a302017-01-18 09:23:12 +0000792 if (ref.IsNull()) {
793 DCHECK(self->IsExceptionPending());
794 return nullptr;
795 }
796 bootstrap_frame->SetVRegReference(vreg, ref.Ptr());
797 vreg += 1;
798 break;
799 }
800 case EncodedArrayValueIterator::ValueType::kString: {
801 dex::StringIndex idx(static_cast<uint32_t>(jvalue.i));
802 ObjPtr<mirror::String> ref = class_linker->ResolveString(*dex_file, idx, dex_cache);
803 if (ref.IsNull()) {
804 DCHECK(self->IsExceptionPending());
805 return nullptr;
806 }
807 bootstrap_frame->SetVRegReference(vreg, ref.Ptr());
808 vreg += 1;
809 break;
810 }
811 case EncodedArrayValueIterator::ValueType::kType: {
812 dex::TypeIndex idx(static_cast<uint32_t>(jvalue.i));
813 ObjPtr<mirror::Class> ref =
814 class_linker->ResolveType(*dex_file, idx, dex_cache, class_loader);
815 if (ref.IsNull()) {
816 DCHECK(self->IsExceptionPending());
817 return nullptr;
818 }
819 bootstrap_frame->SetVRegReference(vreg, ref.Ptr());
820 vreg += 1;
821 break;
822 }
823 case EncodedArrayValueIterator::ValueType::kNull:
824 bootstrap_frame->SetVRegReference(vreg, nullptr);
825 vreg += 1;
826 break;
827 case EncodedArrayValueIterator::ValueType::kField:
828 case EncodedArrayValueIterator::ValueType::kMethod:
829 case EncodedArrayValueIterator::ValueType::kEnum:
830 case EncodedArrayValueIterator::ValueType::kArray:
831 case EncodedArrayValueIterator::ValueType::kAnnotation:
832 // Unreachable based on current EncodedArrayValueIterator::Next().
833 UNREACHABLE();
834 }
835
836 it.Next();
837 }
838
839 // Invoke the bootstrap method handle.
840 JValue result;
841
842 // This array of arguments is unused. DoInvokePolymorphic() operates on either a
843 // an argument array or a range, but always takes an array argument.
844 uint32_t args_unused[Instruction::kMaxVarArgRegs];
845 ArtMethod* invoke_exact =
846 jni::DecodeArtMethod(WellKnownClasses::java_lang_invoke_MethodHandle_invokeExact);
847 bool invoke_success = DoInvokePolymorphic<true /* is_range */>(self,
848 invoke_exact,
849 *bootstrap_frame,
850 bootstrap,
851 bootstrap_method_type,
852 args_unused,
853 0,
854 &result);
855 if (!invoke_success) {
856 DCHECK(self->IsExceptionPending());
857 return nullptr;
858 }
859
860 Handle<mirror::Object> object(hs.NewHandle(result.GetL()));
861
862 // Check the result is not null.
863 if (UNLIKELY(object.IsNull())) {
864 ThrowNullPointerException("CallSite == null");
865 return nullptr;
866 }
867
868 // Check the result type is a subclass of CallSite.
869 if (UNLIKELY(!object->InstanceOf(mirror::CallSite::StaticClass()))) {
870 ThrowClassCastException(object->GetClass(), mirror::CallSite::StaticClass());
871 return nullptr;
872 }
873
874 Handle<mirror::CallSite> call_site =
875 hs.NewHandle(ObjPtr<mirror::CallSite>::DownCast(ObjPtr<mirror::Object>(result.GetL())));
876
877 // Check the call site target is not null as we're going to invoke it.
878 Handle<mirror::MethodHandle> target = hs.NewHandle(call_site->GetTarget());
879 if (UNLIKELY(target.IsNull())) {
880 ThrowNullPointerException("CallSite target == null");
881 return nullptr;
882 }
883
Orion Hodson631827d2017-04-10 14:53:47 +0100884 // Check the target method type matches the method type requested modulo the receiver
885 // needs to be compatible rather than exact.
886 Handle<mirror::MethodType> target_method_type = hs.NewHandle(target->GetMethodType());
887 if (UNLIKELY(!target_method_type->IsExactMatch(method_type.Get()) &&
888 !IsParameterTypeConvertible(target_method_type->GetPTypes()->GetWithoutChecks(0),
889 method_type->GetPTypes()->GetWithoutChecks(0)))) {
890 ThrowWrongMethodTypeException(target_method_type.Get(), method_type.Get());
Orion Hodsonc069a302017-01-18 09:23:12 +0000891 return nullptr;
892 }
893
894 return call_site.Get();
895}
896
897template<bool is_range>
898bool DoInvokeCustom(Thread* self,
899 ShadowFrame& shadow_frame,
900 const Instruction* inst,
901 uint16_t inst_data,
902 JValue* result)
903 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light848574c2017-09-25 16:59:39 -0700904 // Make sure to check for async exceptions
905 if (UNLIKELY(self->ObserveAsyncException())) {
906 return false;
907 }
Orion Hodsonc069a302017-01-18 09:23:12 +0000908 // invoke-custom is not supported in transactions. In transactions
909 // there is a limited set of types supported. invoke-custom allows
910 // running arbitrary code and instantiating arbitrary types.
911 CHECK(!Runtime::Current()->IsActiveTransaction());
912 StackHandleScope<4> hs(self);
913 Handle<mirror::DexCache> dex_cache(hs.NewHandle(shadow_frame.GetMethod()->GetDexCache()));
914 const uint32_t call_site_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
915 MutableHandle<mirror::CallSite>
916 call_site(hs.NewHandle(dex_cache->GetResolvedCallSite(call_site_idx)));
917 if (call_site.IsNull()) {
918 call_site.Assign(InvokeBootstrapMethod(self, shadow_frame, call_site_idx));
919 if (UNLIKELY(call_site.IsNull())) {
920 CHECK(self->IsExceptionPending());
921 ThrowWrappedBootstrapMethodError("Exception from call site #%u bootstrap method",
922 call_site_idx);
923 result->SetJ(0);
924 return false;
925 }
926 mirror::CallSite* winning_call_site =
927 dex_cache->SetResolvedCallSite(call_site_idx, call_site.Get());
928 call_site.Assign(winning_call_site);
929 }
930
931 // CallSite.java checks the re-assignment of the call site target
932 // when mutating call site targets. We only check the target is
933 // non-null and has the right type during bootstrap method execution.
934 Handle<mirror::MethodHandle> target = hs.NewHandle(call_site->GetTarget());
935 Handle<mirror::MethodType> target_method_type = hs.NewHandle(target->GetMethodType());
936 DCHECK_EQ(static_cast<size_t>(inst->VRegA()), target_method_type->NumberOfVRegs());
937
938 uint32_t args[Instruction::kMaxVarArgRegs];
939 if (is_range) {
940 args[0] = inst->VRegC_3rc();
941 } else {
942 inst->GetVarArgs(args, inst_data);
943 }
944
945 ArtMethod* invoke_exact =
946 jni::DecodeArtMethod(WellKnownClasses::java_lang_invoke_MethodHandle_invokeExact);
947 return DoInvokePolymorphic<is_range>(self,
948 invoke_exact,
949 shadow_frame,
950 target,
951 target_method_type,
952 args,
953 args[0],
954 result);
955}
956
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +0100957template <bool is_range>
958inline void CopyRegisters(ShadowFrame& caller_frame,
959 ShadowFrame* callee_frame,
960 const uint32_t (&arg)[Instruction::kMaxVarArgRegs],
961 const size_t first_src_reg,
962 const size_t first_dest_reg,
963 const size_t num_regs) {
964 if (is_range) {
965 const size_t dest_reg_bound = first_dest_reg + num_regs;
966 for (size_t src_reg = first_src_reg, dest_reg = first_dest_reg; dest_reg < dest_reg_bound;
967 ++dest_reg, ++src_reg) {
968 AssignRegister(callee_frame, caller_frame, dest_reg, src_reg);
969 }
970 } else {
971 DCHECK_LE(num_regs, arraysize(arg));
972
973 for (size_t arg_index = 0; arg_index < num_regs; ++arg_index) {
974 AssignRegister(callee_frame, caller_frame, first_dest_reg + arg_index, arg[arg_index]);
975 }
976 }
977}
978
Igor Murashkin6918bf12015-09-27 19:19:06 -0700979template <bool is_range,
Narayan Kamath370423d2016-10-03 16:51:22 +0100980 bool do_assignability_check>
Igor Murashkin158f35c2015-06-10 15:55:30 -0700981static inline bool DoCallCommon(ArtMethod* called_method,
982 Thread* self,
983 ShadowFrame& shadow_frame,
984 JValue* result,
985 uint16_t number_of_inputs,
Narayan Kamath370423d2016-10-03 16:51:22 +0100986 uint32_t (&arg)[Instruction::kMaxVarArgRegs],
Igor Murashkin158f35c2015-06-10 15:55:30 -0700987 uint32_t vregC) {
Jeff Hao848f70a2014-01-15 13:49:50 -0800988 bool string_init = false;
989 // Replace calls to String.<init> with equivalent StringFactory call.
Igor Murashkin158f35c2015-06-10 15:55:30 -0700990 if (UNLIKELY(called_method->GetDeclaringClass()->IsStringClass()
991 && called_method->IsConstructor())) {
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100992 called_method = WellKnownClasses::StringInitToStringFactory(called_method);
Jeff Hao848f70a2014-01-15 13:49:50 -0800993 string_init = true;
994 }
995
Alex Lightdaf58c82016-03-16 23:00:49 +0000996 // Compute method information.
997 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
Igor Murashkin158f35c2015-06-10 15:55:30 -0700998 // Number of registers for the callee's call frame.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200999 uint16_t num_regs;
Jeff Hao5ea84132017-05-05 16:59:29 -07001000 // Test whether to use the interpreter or compiler entrypoint, and save that result to pass to
1001 // PerformCall. A deoptimization could occur at any time, and we shouldn't change which
1002 // entrypoint to use once we start building the shadow frame.
Mathieu Chartier448bbcf2017-07-06 12:05:13 -07001003
1004 // For unstarted runtimes, always use the interpreter entrypoint. This fixes the case where we are
1005 // doing cross compilation. Note that GetEntryPointFromQuickCompiledCode doesn't use the image
1006 // pointer size here and this may case an overflow if it is called from the compiler. b/62402160
1007 const bool use_interpreter_entrypoint = !Runtime::Current()->IsStarted() ||
1008 ClassLinker::ShouldUseInterpreterEntrypoint(
1009 called_method,
1010 called_method->GetEntryPointFromQuickCompiledCode());
Nicolas Geoffray01822292017-03-09 09:03:19 +00001011 if (LIKELY(code_item != nullptr)) {
Jeff Hao5ea84132017-05-05 16:59:29 -07001012 // When transitioning to compiled code, space only needs to be reserved for the input registers.
1013 // The rest of the frame gets discarded. This also prevents accessing the called method's code
1014 // item, saving memory by keeping code items of compiled code untouched.
Mathieu Chartier448bbcf2017-07-06 12:05:13 -07001015 if (!use_interpreter_entrypoint) {
1016 DCHECK(!Runtime::Current()->IsAotCompiler()) << "Compiler should use interpreter entrypoint";
Jeff Hao5ea84132017-05-05 16:59:29 -07001017 num_regs = number_of_inputs;
1018 } else {
1019 num_regs = code_item->registers_size_;
1020 DCHECK_EQ(string_init ? number_of_inputs - 1 : number_of_inputs, code_item->ins_size_);
1021 }
Nicolas Geoffray01822292017-03-09 09:03:19 +00001022 } else {
1023 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
1024 num_regs = number_of_inputs;
Jeff Haodf79ddb2017-02-27 14:47:06 -08001025 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001026
Igor Murashkin158f35c2015-06-10 15:55:30 -07001027 // Hack for String init:
1028 //
1029 // Rewrite invoke-x java.lang.String.<init>(this, a, b, c, ...) into:
1030 // invoke-x StringFactory(a, b, c, ...)
1031 // by effectively dropping the first virtual register from the invoke.
1032 //
1033 // (at this point the ArtMethod has already been replaced,
1034 // so we just need to fix-up the arguments)
David Brazdil65902e82016-01-15 09:35:13 +00001035 //
1036 // Note that FindMethodFromCode in entrypoint_utils-inl.h was also special-cased
1037 // to handle the compiler optimization of replacing `this` with null without
1038 // throwing NullPointerException.
Igor Murashkin158f35c2015-06-10 15:55:30 -07001039 uint32_t string_init_vreg_this = is_range ? vregC : arg[0];
Igor Murashkina06b49b2015-06-25 15:18:12 -07001040 if (UNLIKELY(string_init)) {
Igor Murashkin158f35c2015-06-10 15:55:30 -07001041 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 -07001042
Igor Murashkin158f35c2015-06-10 15:55:30 -07001043 // The new StringFactory call is static and has one fewer argument.
Igor Murashkina06b49b2015-06-25 15:18:12 -07001044 if (code_item == nullptr) {
1045 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
1046 num_regs--;
1047 } // 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 -07001048 number_of_inputs--;
1049
1050 // Rewrite the var-args, dropping the 0th argument ("this")
Igor Murashkin6918bf12015-09-27 19:19:06 -07001051 for (uint32_t i = 1; i < arraysize(arg); ++i) {
Igor Murashkin158f35c2015-06-10 15:55:30 -07001052 arg[i - 1] = arg[i];
1053 }
Igor Murashkin6918bf12015-09-27 19:19:06 -07001054 arg[arraysize(arg) - 1] = 0;
Igor Murashkin158f35c2015-06-10 15:55:30 -07001055
1056 // Rewrite the non-var-arg case
1057 vregC++; // Skips the 0th vreg in the range ("this").
1058 }
1059
1060 // Parameter registers go at the end of the shadow frame.
1061 DCHECK_GE(num_regs, number_of_inputs);
1062 size_t first_dest_reg = num_regs - number_of_inputs;
1063 DCHECK_NE(first_dest_reg, (size_t)-1);
1064
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001065 // Allocate shadow frame on the stack.
Igor Murashkin158f35c2015-06-10 15:55:30 -07001066 const char* old_cause = self->StartAssertNoThreadSuspension("DoCallCommon");
Andreas Gampeb3025922015-09-01 14:45:00 -07001067 ShadowFrameAllocaUniquePtr shadow_frame_unique_ptr =
Andreas Gampe03ec9302015-08-27 17:41:47 -07001068 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0);
Andreas Gampeb3025922015-09-01 14:45:00 -07001069 ShadowFrame* new_shadow_frame = shadow_frame_unique_ptr.get();
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001070
Igor Murashkin158f35c2015-06-10 15:55:30 -07001071 // Initialize new shadow frame by copying the registers from the callee shadow frame.
Jeff Haoa3faaf42013-09-03 19:07:00 -07001072 if (do_assignability_check) {
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -07001073 // Slow path.
1074 // We might need to do class loading, which incurs a thread state change to kNative. So
1075 // register the shadow frame as under construction and allow suspension again.
Mingyao Yang1f2d3ba2015-05-18 12:12:50 -07001076 ScopedStackedShadowFramePusher pusher(
Sebastien Hertzf7958692015-06-09 14:09:14 +02001077 self, new_shadow_frame, StackedShadowFrameType::kShadowFrameUnderConstruction);
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -07001078 self->EndAssertNoThreadSuspension(old_cause);
1079
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001080 // ArtMethod here is needed to check type information of the call site against the callee.
1081 // Type information is retrieved from a DexFile/DexCache for that respective declared method.
1082 //
1083 // As a special case for proxy methods, which are not dex-backed,
1084 // we have to retrieve type information from the proxy's method
1085 // interface method instead (which is dex backed since proxies are never interfaces).
Andreas Gampe542451c2016-07-26 09:02:02 -07001086 ArtMethod* method =
1087 new_shadow_frame->GetMethod()->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001088
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -07001089 // We need to do runtime check on reference assignment. We need to load the shorty
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001090 // to get the exact type of each reference argument.
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001091 const DexFile::TypeList* params = method->GetParameterTypeList();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001092 uint32_t shorty_len = 0;
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001093 const char* shorty = method->GetShorty(&shorty_len);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001094
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001095 // Handle receiver apart since it's not part of the shorty.
1096 size_t dest_reg = first_dest_reg;
1097 size_t arg_offset = 0;
Igor Murashkin158f35c2015-06-10 15:55:30 -07001098
Igor Murashkin9f95ba72016-02-01 14:21:25 -08001099 if (!method->IsStatic()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001100 size_t receiver_reg = is_range ? vregC : arg[0];
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001101 new_shadow_frame->SetVRegReference(dest_reg, shadow_frame.GetVRegReference(receiver_reg));
1102 ++dest_reg;
1103 ++arg_offset;
Igor Murashkina06b49b2015-06-25 15:18:12 -07001104 DCHECK(!string_init); // All StringFactory methods are static.
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001105 }
Igor Murashkin158f35c2015-06-10 15:55:30 -07001106
1107 // Copy the caller's invoke-* arguments into the callee's parameter registers.
Ian Rogersef7d42f2014-01-06 12:55:46 -08001108 for (uint32_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) {
Igor Murashkina06b49b2015-06-25 15:18:12 -07001109 // Skip the 0th 'shorty' type since it represents the return type.
1110 DCHECK_LT(shorty_pos + 1, shorty_len) << "for shorty '" << shorty << "'";
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001111 const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset];
1112 switch (shorty[shorty_pos + 1]) {
Igor Murashkin158f35c2015-06-10 15:55:30 -07001113 // Handle Object references. 1 virtual register slot.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001114 case 'L': {
Mathieu Chartieref41db72016-10-25 15:08:01 -07001115 ObjPtr<mirror::Object> o = shadow_frame.GetVRegReference(src_reg);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001116 if (do_assignability_check && o != nullptr) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001117 const dex::TypeIndex type_idx = params->GetTypeItem(shorty_pos).type_idx_;
Vladimir Marko942fd312017-01-16 20:52:19 +00001118 ObjPtr<mirror::Class> arg_type = method->GetDexCache()->GetResolvedType(type_idx);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001119 if (arg_type == nullptr) {
Mathieu Chartiere22305b2016-10-26 21:04:58 -07001120 StackHandleScope<1> hs(self);
1121 // Preserve o since it is used below and GetClassFromTypeIndex may cause thread
1122 // suspension.
1123 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&o);
Vladimir Markob45528c2017-07-27 14:14:28 +01001124 arg_type = method->ResolveClassFromTypeIndex(type_idx);
Mathieu Chartiere22305b2016-10-26 21:04:58 -07001125 if (arg_type == nullptr) {
1126 CHECK(self->IsExceptionPending());
1127 return false;
1128 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001129 }
1130 if (!o->VerifierInstanceOf(arg_type)) {
1131 // This should never happen.
Ian Rogers1ff3c982014-08-12 02:30:58 -07001132 std::string temp1, temp2;
Orion Hodsonfef06642016-11-25 16:07:11 +00001133 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001134 "Invoking %s with bad arg %d, type '%s' not instance of '%s'",
Ian Rogerse94652f2014-12-02 11:13:19 -08001135 new_shadow_frame->GetMethod()->GetName(), shorty_pos,
Ian Rogers1ff3c982014-08-12 02:30:58 -07001136 o->GetClass()->GetDescriptor(&temp1),
1137 arg_type->GetDescriptor(&temp2));
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001138 return false;
1139 }
Jeff Haoa3faaf42013-09-03 19:07:00 -07001140 }
Mathieu Chartieref41db72016-10-25 15:08:01 -07001141 new_shadow_frame->SetVRegReference(dest_reg, o.Ptr());
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001142 break;
Jeff Haoa3faaf42013-09-03 19:07:00 -07001143 }
Igor Murashkin158f35c2015-06-10 15:55:30 -07001144 // Handle doubles and longs. 2 consecutive virtual register slots.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001145 case 'J': case 'D': {
Igor Murashkin158f35c2015-06-10 15:55:30 -07001146 uint64_t wide_value =
1147 (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << BitSizeOf<uint32_t>()) |
1148 static_cast<uint32_t>(shadow_frame.GetVReg(src_reg));
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001149 new_shadow_frame->SetVRegLong(dest_reg, wide_value);
Igor Murashkin158f35c2015-06-10 15:55:30 -07001150 // Skip the next virtual register slot since we already used it.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001151 ++dest_reg;
1152 ++arg_offset;
1153 break;
1154 }
Igor Murashkin158f35c2015-06-10 15:55:30 -07001155 // Handle all other primitives that are always 1 virtual register slot.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001156 default:
1157 new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg));
1158 break;
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001159 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001160 }
1161 } else {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +02001162 if (is_range) {
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +01001163 DCHECK_EQ(num_regs, first_dest_reg + number_of_inputs);
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001164 }
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +01001165
1166 CopyRegisters<is_range>(shadow_frame,
1167 new_shadow_frame,
1168 arg,
1169 vregC,
1170 first_dest_reg,
1171 number_of_inputs);
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -07001172 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001173 }
1174
Jeff Hao5ea84132017-05-05 16:59:29 -07001175 PerformCall(self,
1176 code_item,
1177 shadow_frame.GetMethod(),
1178 first_dest_reg,
1179 new_shadow_frame,
1180 result,
1181 use_interpreter_entrypoint);
Jeff Hao848f70a2014-01-15 13:49:50 -08001182
1183 if (string_init && !self->IsExceptionPending()) {
Mingyao Yangffedec52016-05-19 10:48:40 -07001184 SetStringInitValueToAllAliases(&shadow_frame, string_init_vreg_this, *result);
Jeff Hao848f70a2014-01-15 13:49:50 -08001185 }
1186
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001187 return !self->IsExceptionPending();
1188}
1189
Igor Murashkin158f35c2015-06-10 15:55:30 -07001190template<bool is_range, bool do_assignability_check>
Igor Murashkin158f35c2015-06-10 15:55:30 -07001191bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
1192 const Instruction* inst, uint16_t inst_data, JValue* result) {
1193 // Argument word count.
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001194 const uint16_t number_of_inputs =
1195 (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data);
Igor Murashkin158f35c2015-06-10 15:55:30 -07001196
1197 // TODO: find a cleaner way to separate non-range and range information without duplicating
1198 // code.
Igor Murashkin6918bf12015-09-27 19:19:06 -07001199 uint32_t arg[Instruction::kMaxVarArgRegs] = {}; // only used in invoke-XXX.
Igor Murashkin158f35c2015-06-10 15:55:30 -07001200 uint32_t vregC = 0;
1201 if (is_range) {
1202 vregC = inst->VRegC_3rc();
1203 } else {
1204 vregC = inst->VRegC_35c();
1205 inst->GetVarArgs(arg, inst_data);
1206 }
1207
1208 return DoCallCommon<is_range, do_assignability_check>(
1209 called_method, self, shadow_frame,
1210 result, number_of_inputs, arg, vregC);
1211}
1212
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001213template <bool is_range, bool do_access_check, bool transaction_active>
Mathieu Chartieref41db72016-10-25 15:08:01 -07001214bool DoFilledNewArray(const Instruction* inst,
1215 const ShadowFrame& shadow_frame,
1216 Thread* self,
1217 JValue* result) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001218 DCHECK(inst->Opcode() == Instruction::FILLED_NEW_ARRAY ||
1219 inst->Opcode() == Instruction::FILLED_NEW_ARRAY_RANGE);
1220 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c();
1221 if (!is_range) {
1222 // Checks FILLED_NEW_ARRAY's length does not exceed 5 arguments.
1223 CHECK_LE(length, 5);
1224 }
1225 if (UNLIKELY(length < 0)) {
1226 ThrowNegativeArraySizeException(length);
1227 return false;
1228 }
1229 uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
Andreas Gampea5b09a62016-11-17 15:21:22 -08001230 ObjPtr<mirror::Class> array_class = ResolveVerifyAndClinit(dex::TypeIndex(type_idx),
Mathieu Chartieref41db72016-10-25 15:08:01 -07001231 shadow_frame.GetMethod(),
1232 self,
1233 false,
1234 do_access_check);
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001235 if (UNLIKELY(array_class == nullptr)) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001236 DCHECK(self->IsExceptionPending());
1237 return false;
1238 }
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001239 CHECK(array_class->IsArrayClass());
Mathieu Chartieref41db72016-10-25 15:08:01 -07001240 ObjPtr<mirror::Class> component_class = array_class->GetComponentType();
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001241 const bool is_primitive_int_component = component_class->IsPrimitiveInt();
1242 if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) {
1243 if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001244 ThrowRuntimeException("Bad filled array request for type %s",
David Sehr709b0702016-10-13 09:12:37 -07001245 component_class->PrettyDescriptor().c_str());
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001246 } else {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +00001247 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -08001248 "Found type %s; filled-new-array not implemented for anything but 'int'",
David Sehr709b0702016-10-13 09:12:37 -07001249 component_class->PrettyDescriptor().c_str());
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001250 }
1251 return false;
1252 }
Mathieu Chartieref41db72016-10-25 15:08:01 -07001253 ObjPtr<mirror::Object> new_array = mirror::Array::Alloc<true>(
1254 self,
1255 array_class,
1256 length,
1257 array_class->GetComponentSizeShift(),
1258 Runtime::Current()->GetHeap()->GetCurrentAllocator());
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001259 if (UNLIKELY(new_array == nullptr)) {
1260 self->AssertPendingOOMException();
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001261 return false;
1262 }
Igor Murashkin158f35c2015-06-10 15:55:30 -07001263 uint32_t arg[Instruction::kMaxVarArgRegs]; // only used in filled-new-array.
1264 uint32_t vregC = 0; // only used in filled-new-array-range.
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001265 if (is_range) {
Sebastien Hertzabff6432014-01-27 18:01:39 +01001266 vregC = inst->VRegC_3rc();
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001267 } else {
Ian Rogers29a26482014-05-02 15:27:29 -07001268 inst->GetVarArgs(arg);
Sebastien Hertzabff6432014-01-27 18:01:39 +01001269 }
Sebastien Hertzabff6432014-01-27 18:01:39 +01001270 for (int32_t i = 0; i < length; ++i) {
1271 size_t src_reg = is_range ? vregC + i : arg[i];
1272 if (is_primitive_int_component) {
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001273 new_array->AsIntArray()->SetWithoutChecks<transaction_active>(
1274 i, shadow_frame.GetVReg(src_reg));
Sebastien Hertzabff6432014-01-27 18:01:39 +01001275 } else {
Mathieu Chartieref41db72016-10-25 15:08:01 -07001276 new_array->AsObjectArray<mirror::Object>()->SetWithoutChecks<transaction_active>(
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001277 i, shadow_frame.GetVRegReference(src_reg));
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001278 }
1279 }
1280
Mathieu Chartier52ea33b2015-06-18 16:48:52 -07001281 result->SetL(new_array);
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001282 return true;
1283}
1284
Mathieu Chartieref41db72016-10-25 15:08:01 -07001285// TODO: Use ObjPtr here.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001286template<typename T>
Mathieu Chartieref41db72016-10-25 15:08:01 -07001287static void RecordArrayElementsInTransactionImpl(mirror::PrimitiveArray<T>* array,
1288 int32_t count)
1289 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001290 Runtime* runtime = Runtime::Current();
1291 for (int32_t i = 0; i < count; ++i) {
1292 runtime->RecordWriteArray(array, i, array->GetWithoutChecks(i));
1293 }
1294}
1295
Mathieu Chartieref41db72016-10-25 15:08:01 -07001296void RecordArrayElementsInTransaction(ObjPtr<mirror::Array> array, int32_t count)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001297 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001298 DCHECK(Runtime::Current()->IsActiveTransaction());
1299 DCHECK(array != nullptr);
1300 DCHECK_LE(count, array->GetLength());
1301 Primitive::Type primitive_component_type = array->GetClass()->GetComponentType()->GetPrimitiveType();
1302 switch (primitive_component_type) {
1303 case Primitive::kPrimBoolean:
1304 RecordArrayElementsInTransactionImpl(array->AsBooleanArray(), count);
1305 break;
1306 case Primitive::kPrimByte:
1307 RecordArrayElementsInTransactionImpl(array->AsByteArray(), count);
1308 break;
1309 case Primitive::kPrimChar:
1310 RecordArrayElementsInTransactionImpl(array->AsCharArray(), count);
1311 break;
1312 case Primitive::kPrimShort:
1313 RecordArrayElementsInTransactionImpl(array->AsShortArray(), count);
1314 break;
1315 case Primitive::kPrimInt:
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001316 RecordArrayElementsInTransactionImpl(array->AsIntArray(), count);
1317 break;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001318 case Primitive::kPrimFloat:
1319 RecordArrayElementsInTransactionImpl(array->AsFloatArray(), count);
1320 break;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001321 case Primitive::kPrimLong:
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001322 RecordArrayElementsInTransactionImpl(array->AsLongArray(), count);
1323 break;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001324 case Primitive::kPrimDouble:
1325 RecordArrayElementsInTransactionImpl(array->AsDoubleArray(), count);
1326 break;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001327 default:
1328 LOG(FATAL) << "Unsupported primitive type " << primitive_component_type
1329 << " in fill-array-data";
1330 break;
1331 }
1332}
1333
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001334// Explicit DoCall template function declarations.
Sebastien Hertzc6714852013-09-30 16:42:32 +02001335#define EXPLICIT_DO_CALL_TEMPLATE_DECL(_is_range, _do_assignability_check) \
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001336 template REQUIRES_SHARED(Locks::mutator_lock_) \
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001337 bool DoCall<_is_range, _do_assignability_check>(ArtMethod* method, Thread* self, \
1338 ShadowFrame& shadow_frame, \
Sebastien Hertzc6714852013-09-30 16:42:32 +02001339 const Instruction* inst, uint16_t inst_data, \
1340 JValue* result)
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001341EXPLICIT_DO_CALL_TEMPLATE_DECL(false, false);
1342EXPLICIT_DO_CALL_TEMPLATE_DECL(false, true);
1343EXPLICIT_DO_CALL_TEMPLATE_DECL(true, false);
1344EXPLICIT_DO_CALL_TEMPLATE_DECL(true, true);
1345#undef EXPLICIT_DO_CALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001346
Orion Hodsonc069a302017-01-18 09:23:12 +00001347// Explicit DoInvokeCustom template function declarations.
1348#define EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL(_is_range) \
1349 template REQUIRES_SHARED(Locks::mutator_lock_) \
1350 bool DoInvokeCustom<_is_range>( \
1351 Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \
Narayan Kamath9823e782016-08-03 12:46:58 +01001352 uint16_t inst_data, JValue* result)
Orion Hodsonc069a302017-01-18 09:23:12 +00001353EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL(false);
1354EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL(true);
1355#undef EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL
Narayan Kamath9823e782016-08-03 12:46:58 +01001356
Orion Hodsonc069a302017-01-18 09:23:12 +00001357// Explicit DoInvokePolymorphic template function declarations.
1358#define EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL(_is_range) \
1359 template REQUIRES_SHARED(Locks::mutator_lock_) \
1360 bool DoInvokePolymorphic<_is_range>( \
1361 Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \
1362 uint16_t inst_data, JValue* result)
1363EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL(false);
1364EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL(true);
Narayan Kamath9823e782016-08-03 12:46:58 +01001365#undef EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL
1366
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001367// Explicit DoFilledNewArray template function declarations.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001368#define EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(_is_range_, _check, _transaction_active) \
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001369 template REQUIRES_SHARED(Locks::mutator_lock_) \
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001370 bool DoFilledNewArray<_is_range_, _check, _transaction_active>(const Instruction* inst, \
1371 const ShadowFrame& shadow_frame, \
1372 Thread* self, JValue* result)
1373#define EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(_transaction_active) \
1374 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, false, _transaction_active); \
1375 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, true, _transaction_active); \
1376 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, false, _transaction_active); \
1377 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, true, _transaction_active)
1378EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(false);
1379EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(true);
1380#undef EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001381#undef EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL
1382
1383} // namespace interpreter
1384} // namespace art