blob: 4765ebcf149752a745eda825c3a9541c9329def6 [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
Daniel Mihalyieb076692014-08-22 17:33:31 +020021#include "debugger.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010022#include "mirror/array-inl.h"
Andreas Gampe2969bcd2015-03-09 12:57:41 -070023#include "unstarted_runtime.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020024
25namespace art {
26namespace interpreter {
27
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000028void ThrowNullPointerExceptionFromInterpreter() {
29 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -070030}
31
32template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check>
33bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
34 uint16_t inst_data) {
35 const bool is_static = (find_type == StaticObjectRead) || (find_type == StaticPrimitiveRead);
36 const uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
37 ArtField* f = FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
Fred Shih37f05ef2014-07-16 18:38:08 -070038 Primitive::ComponentSize(field_type));
Ian Rogers54874942014-06-10 16:31:03 -070039 if (UNLIKELY(f == nullptr)) {
40 CHECK(self->IsExceptionPending());
41 return false;
42 }
43 Object* obj;
44 if (is_static) {
45 obj = f->GetDeclaringClass();
46 } else {
47 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
48 if (UNLIKELY(obj == nullptr)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000049 ThrowNullPointerExceptionForFieldAccess(f, true);
Ian Rogers54874942014-06-10 16:31:03 -070050 return false;
51 }
52 }
Sebastien Hertz1edbd8e2014-07-16 20:00:11 +020053 f->GetDeclaringClass()->AssertInitializedOrInitializingInThread(self);
Ian Rogers54874942014-06-10 16:31:03 -070054 // Report this field access to instrumentation if needed.
55 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
56 if (UNLIKELY(instrumentation->HasFieldReadListeners())) {
57 Object* this_object = f->IsStatic() ? nullptr : obj;
58 instrumentation->FieldReadEvent(self, this_object, shadow_frame.GetMethod(),
59 shadow_frame.GetDexPC(), f);
60 }
61 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
62 switch (field_type) {
63 case Primitive::kPrimBoolean:
64 shadow_frame.SetVReg(vregA, f->GetBoolean(obj));
65 break;
66 case Primitive::kPrimByte:
67 shadow_frame.SetVReg(vregA, f->GetByte(obj));
68 break;
69 case Primitive::kPrimChar:
70 shadow_frame.SetVReg(vregA, f->GetChar(obj));
71 break;
72 case Primitive::kPrimShort:
73 shadow_frame.SetVReg(vregA, f->GetShort(obj));
74 break;
75 case Primitive::kPrimInt:
76 shadow_frame.SetVReg(vregA, f->GetInt(obj));
77 break;
78 case Primitive::kPrimLong:
79 shadow_frame.SetVRegLong(vregA, f->GetLong(obj));
80 break;
81 case Primitive::kPrimNot:
82 shadow_frame.SetVRegReference(vregA, f->GetObject(obj));
83 break;
84 default:
85 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -070086 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -070087 }
88 return true;
89}
90
91// Explicitly instantiate all DoFieldGet functions.
92#define EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, _do_check) \
93 template bool DoFieldGet<_find_type, _field_type, _do_check>(Thread* self, \
94 ShadowFrame& shadow_frame, \
95 const Instruction* inst, \
96 uint16_t inst_data)
97
98#define EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(_find_type, _field_type) \
99 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, false); \
100 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, true);
101
102// iget-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700103EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimBoolean)
104EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimByte)
105EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimChar)
106EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimShort)
107EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimInt)
108EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimLong)
109EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstanceObjectRead, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700110
111// sget-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700112EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimBoolean)
113EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimByte)
114EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimChar)
115EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimShort)
116EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimInt)
117EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimLong)
118EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticObjectRead, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700119
120#undef EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL
121#undef EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL
122
123// Handles iget-quick, iget-wide-quick and iget-object-quick instructions.
124// Returns true on success, otherwise throws an exception and returns false.
125template<Primitive::Type field_type>
126bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) {
127 Object* obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
128 if (UNLIKELY(obj == nullptr)) {
129 // We lost the reference to the field index so we cannot get a more
130 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000131 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -0700132 return false;
133 }
134 MemberOffset field_offset(inst->VRegC_22c());
135 // Report this field access to instrumentation if needed. Since we only have the offset of
136 // the field from the base of the object, we need to look for it first.
137 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
138 if (UNLIKELY(instrumentation->HasFieldReadListeners())) {
139 ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(),
140 field_offset.Uint32Value());
141 DCHECK(f != nullptr);
142 DCHECK(!f->IsStatic());
143 instrumentation->FieldReadEvent(Thread::Current(), obj, shadow_frame.GetMethod(),
144 shadow_frame.GetDexPC(), f);
145 }
146 // Note: iget-x-quick instructions are only for non-volatile fields.
147 const uint32_t vregA = inst->VRegA_22c(inst_data);
148 switch (field_type) {
149 case Primitive::kPrimInt:
150 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset)));
151 break;
Mathieu Chartierffc605c2014-12-10 10:35:44 -0800152 case Primitive::kPrimBoolean:
153 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset)));
154 break;
155 case Primitive::kPrimByte:
156 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset)));
157 break;
158 case Primitive::kPrimChar:
159 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset)));
160 break;
161 case Primitive::kPrimShort:
162 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldShort(field_offset)));
163 break;
Ian Rogers54874942014-06-10 16:31:03 -0700164 case Primitive::kPrimLong:
165 shadow_frame.SetVRegLong(vregA, static_cast<int64_t>(obj->GetField64(field_offset)));
166 break;
167 case Primitive::kPrimNot:
168 shadow_frame.SetVRegReference(vregA, obj->GetFieldObject<mirror::Object>(field_offset));
169 break;
170 default:
171 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700172 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700173 }
174 return true;
175}
176
177// Explicitly instantiate all DoIGetQuick functions.
178#define EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(_field_type) \
179 template bool DoIGetQuick<_field_type>(ShadowFrame& shadow_frame, const Instruction* inst, \
180 uint16_t inst_data)
181
Mathieu Chartierffc605c2014-12-10 10:35:44 -0800182EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimInt); // iget-quick.
183EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimBoolean); // iget-boolean-quick.
184EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimByte); // iget-byte-quick.
185EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimChar); // iget-char-quick.
186EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimShort); // iget-short-quick.
187EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimLong); // iget-wide-quick.
188EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimNot); // iget-object-quick.
Ian Rogers54874942014-06-10 16:31:03 -0700189#undef EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL
190
191template<Primitive::Type field_type>
192static JValue GetFieldValue(const ShadowFrame& shadow_frame, uint32_t vreg)
193 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
194 JValue field_value;
195 switch (field_type) {
196 case Primitive::kPrimBoolean:
197 field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg)));
198 break;
199 case Primitive::kPrimByte:
200 field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg)));
201 break;
202 case Primitive::kPrimChar:
203 field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg)));
204 break;
205 case Primitive::kPrimShort:
206 field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg)));
207 break;
208 case Primitive::kPrimInt:
209 field_value.SetI(shadow_frame.GetVReg(vreg));
210 break;
211 case Primitive::kPrimLong:
212 field_value.SetJ(shadow_frame.GetVRegLong(vreg));
213 break;
214 case Primitive::kPrimNot:
215 field_value.SetL(shadow_frame.GetVRegReference(vreg));
216 break;
217 default:
218 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700219 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700220 }
221 return field_value;
222}
223
224template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
225 bool transaction_active>
226bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst,
227 uint16_t inst_data) {
228 bool do_assignability_check = do_access_check;
229 bool is_static = (find_type == StaticObjectWrite) || (find_type == StaticPrimitiveWrite);
230 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
231 ArtField* f = FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
Fred Shih37f05ef2014-07-16 18:38:08 -0700232 Primitive::ComponentSize(field_type));
Ian Rogers54874942014-06-10 16:31:03 -0700233 if (UNLIKELY(f == nullptr)) {
234 CHECK(self->IsExceptionPending());
235 return false;
236 }
237 Object* obj;
238 if (is_static) {
239 obj = f->GetDeclaringClass();
240 } else {
241 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
242 if (UNLIKELY(obj == nullptr)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000243 ThrowNullPointerExceptionForFieldAccess(f, false);
Ian Rogers54874942014-06-10 16:31:03 -0700244 return false;
245 }
246 }
Sebastien Hertz1edbd8e2014-07-16 20:00:11 +0200247 f->GetDeclaringClass()->AssertInitializedOrInitializingInThread(self);
Ian Rogers54874942014-06-10 16:31:03 -0700248 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
249 // Report this field access to instrumentation if needed. Since we only have the offset of
250 // the field from the base of the object, we need to look for it first.
251 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
252 if (UNLIKELY(instrumentation->HasFieldWriteListeners())) {
253 JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA);
254 Object* this_object = f->IsStatic() ? nullptr : obj;
255 instrumentation->FieldWriteEvent(self, this_object, shadow_frame.GetMethod(),
256 shadow_frame.GetDexPC(), f, field_value);
257 }
258 switch (field_type) {
259 case Primitive::kPrimBoolean:
260 f->SetBoolean<transaction_active>(obj, shadow_frame.GetVReg(vregA));
261 break;
262 case Primitive::kPrimByte:
263 f->SetByte<transaction_active>(obj, shadow_frame.GetVReg(vregA));
264 break;
265 case Primitive::kPrimChar:
266 f->SetChar<transaction_active>(obj, shadow_frame.GetVReg(vregA));
267 break;
268 case Primitive::kPrimShort:
269 f->SetShort<transaction_active>(obj, shadow_frame.GetVReg(vregA));
270 break;
271 case Primitive::kPrimInt:
272 f->SetInt<transaction_active>(obj, shadow_frame.GetVReg(vregA));
273 break;
274 case Primitive::kPrimLong:
275 f->SetLong<transaction_active>(obj, shadow_frame.GetVRegLong(vregA));
276 break;
277 case Primitive::kPrimNot: {
278 Object* reg = shadow_frame.GetVRegReference(vregA);
279 if (do_assignability_check && reg != nullptr) {
280 // FieldHelper::GetType can resolve classes, use a handle wrapper which will restore the
281 // object in the destructor.
282 Class* field_class;
283 {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700284 StackHandleScope<2> hs(self);
Ian Rogers54874942014-06-10 16:31:03 -0700285 HandleWrapper<mirror::Object> h_reg(hs.NewHandleWrapper(&reg));
286 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&obj));
Mathieu Chartierc7853442015-03-27 14:35:38 -0700287 field_class = f->GetType<true>();
Ian Rogers54874942014-06-10 16:31:03 -0700288 }
289 if (!reg->VerifierInstanceOf(field_class)) {
290 // This should never happen.
Ian Rogers1ff3c982014-08-12 02:30:58 -0700291 std::string temp1, temp2, temp3;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000292 self->ThrowNewExceptionF("Ljava/lang/VirtualMachineError;",
Ian Rogers54874942014-06-10 16:31:03 -0700293 "Put '%s' that is not instance of field '%s' in '%s'",
Ian Rogers1ff3c982014-08-12 02:30:58 -0700294 reg->GetClass()->GetDescriptor(&temp1),
295 field_class->GetDescriptor(&temp2),
296 f->GetDeclaringClass()->GetDescriptor(&temp3));
Ian Rogers54874942014-06-10 16:31:03 -0700297 return false;
298 }
299 }
300 f->SetObj<transaction_active>(obj, reg);
301 break;
302 }
303 default:
304 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700305 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700306 }
307 return true;
308}
309
310// Explicitly instantiate all DoFieldPut functions.
311#define EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, _do_check, _transaction_active) \
312 template bool DoFieldPut<_find_type, _field_type, _do_check, _transaction_active>(Thread* self, \
313 const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
314
315#define EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(_find_type, _field_type) \
316 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, false); \
317 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, false); \
318 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, true); \
319 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, true);
320
321// iput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700322EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimBoolean)
323EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimByte)
324EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimChar)
325EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimShort)
326EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimInt)
327EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimLong)
328EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstanceObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700329
330// sput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700331EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimBoolean)
332EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimByte)
333EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimChar)
334EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimShort)
335EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimInt)
336EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimLong)
337EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700338
339#undef EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL
340#undef EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL
341
342template<Primitive::Type field_type, bool transaction_active>
343bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) {
344 Object* obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
345 if (UNLIKELY(obj == nullptr)) {
346 // We lost the reference to the field index so we cannot get a more
347 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000348 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -0700349 return false;
350 }
351 MemberOffset field_offset(inst->VRegC_22c());
352 const uint32_t vregA = inst->VRegA_22c(inst_data);
353 // Report this field modification to instrumentation if needed. Since we only have the offset of
354 // the field from the base of the object, we need to look for it first.
355 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
356 if (UNLIKELY(instrumentation->HasFieldWriteListeners())) {
357 ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(),
358 field_offset.Uint32Value());
359 DCHECK(f != nullptr);
360 DCHECK(!f->IsStatic());
361 JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA);
362 instrumentation->FieldWriteEvent(Thread::Current(), obj, shadow_frame.GetMethod(),
363 shadow_frame.GetDexPC(), f, field_value);
364 }
365 // Note: iput-x-quick instructions are only for non-volatile fields.
366 switch (field_type) {
Fred Shih37f05ef2014-07-16 18:38:08 -0700367 case Primitive::kPrimBoolean:
368 obj->SetFieldBoolean<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
369 break;
370 case Primitive::kPrimByte:
371 obj->SetFieldByte<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
372 break;
373 case Primitive::kPrimChar:
374 obj->SetFieldChar<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
375 break;
376 case Primitive::kPrimShort:
377 obj->SetFieldShort<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
378 break;
Ian Rogers54874942014-06-10 16:31:03 -0700379 case Primitive::kPrimInt:
380 obj->SetField32<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
381 break;
382 case Primitive::kPrimLong:
383 obj->SetField64<transaction_active>(field_offset, shadow_frame.GetVRegLong(vregA));
384 break;
385 case Primitive::kPrimNot:
386 obj->SetFieldObject<transaction_active>(field_offset, shadow_frame.GetVRegReference(vregA));
387 break;
388 default:
389 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700390 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700391 }
392 return true;
393}
394
395// Explicitly instantiate all DoIPutQuick functions.
396#define EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, _transaction_active) \
397 template bool DoIPutQuick<_field_type, _transaction_active>(const ShadowFrame& shadow_frame, \
398 const Instruction* inst, \
399 uint16_t inst_data)
400
401#define EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(_field_type) \
402 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, false); \
403 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, true);
404
Andreas Gampec8ccf682014-09-29 20:07:43 -0700405EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimInt) // iput-quick.
406EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimBoolean) // iput-boolean-quick.
407EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimByte) // iput-byte-quick.
408EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimChar) // iput-char-quick.
409EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimShort) // iput-short-quick.
410EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimLong) // iput-wide-quick.
411EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimNot) // iput-object-quick.
Ian Rogers54874942014-06-10 16:31:03 -0700412#undef EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL
413#undef EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL
414
415uint32_t FindNextInstructionFollowingException(Thread* self,
416 ShadowFrame& shadow_frame,
417 uint32_t dex_pc,
Ian Rogers54874942014-06-10 16:31:03 -0700418 const instrumentation::Instrumentation* instrumentation) {
419 self->VerifyStack();
Sebastien Hertz9f102032014-05-23 08:59:42 +0200420 StackHandleScope<3> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000421 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000422 if (instrumentation->HasExceptionCaughtListeners()
423 && self->IsExceptionThrownByCurrentMethod(exception.Get())) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000424 instrumentation->ExceptionCaughtEvent(self, exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +0200425 }
Ian Rogers54874942014-06-10 16:31:03 -0700426 bool clear_exception = false;
427 uint32_t found_dex_pc;
428 {
Ian Rogers54874942014-06-10 16:31:03 -0700429 Handle<mirror::Class> exception_class(hs.NewHandle(exception->GetClass()));
430 Handle<mirror::ArtMethod> h_method(hs.NewHandle(shadow_frame.GetMethod()));
Ian Rogers54874942014-06-10 16:31:03 -0700431 found_dex_pc = mirror::ArtMethod::FindCatchBlock(h_method, exception_class, dex_pc,
432 &clear_exception);
433 }
434 if (found_dex_pc == DexFile::kDexNoIndex) {
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000435 // Exception is not caught by the current method. We will unwind to the
436 // caller. Notify any instrumentation listener.
Sebastien Hertz9f102032014-05-23 08:59:42 +0200437 instrumentation->MethodUnwindEvent(self, shadow_frame.GetThisObject(),
Ian Rogers54874942014-06-10 16:31:03 -0700438 shadow_frame.GetMethod(), dex_pc);
439 } else {
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000440 // Exception is caught in the current method. We will jump to the found_dex_pc.
Ian Rogers54874942014-06-10 16:31:03 -0700441 if (clear_exception) {
442 self->ClearException();
443 }
444 }
445 return found_dex_pc;
446}
447
Ian Rogerse94652f2014-12-02 11:13:19 -0800448void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) {
449 LOG(FATAL) << "Unexpected instruction: "
450 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile());
451 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700452}
453
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200454// Assign register 'src_reg' from shadow_frame to register 'dest_reg' into new_shadow_frame.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800455static inline void AssignRegister(ShadowFrame* new_shadow_frame, const ShadowFrame& shadow_frame,
456 size_t dest_reg, size_t src_reg)
457 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200458 // If both register locations contains the same value, the register probably holds a reference.
Andreas Gampe7104cbf2014-03-21 11:44:43 -0700459 // Uint required, so that sign extension does not make this wrong on 64b systems
460 uint32_t src_value = shadow_frame.GetVReg(src_reg);
Mathieu Chartier4e305412014-02-19 10:54:44 -0800461 mirror::Object* o = shadow_frame.GetVRegReference<kVerifyNone>(src_reg);
Andreas Gampe7104cbf2014-03-21 11:44:43 -0700462 if (src_value == reinterpret_cast<uintptr_t>(o)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800463 new_shadow_frame->SetVRegReference(dest_reg, o);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200464 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800465 new_shadow_frame->SetVReg(dest_reg, src_value);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200466 }
467}
468
Sebastien Hertz45b15972015-04-03 16:07:05 +0200469void AbortTransactionF(Thread* self, const char* fmt, ...) {
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700470 va_list args;
471 va_start(args, fmt);
Sebastien Hertz45b15972015-04-03 16:07:05 +0200472 AbortTransactionV(self, fmt, args);
473 va_end(args);
474}
475
476void AbortTransactionV(Thread* self, const char* fmt, va_list args) {
477 CHECK(Runtime::Current()->IsActiveTransaction());
478 // Constructs abort message.
Sebastien Hertz1c80bec2015-02-03 11:58:06 +0100479 std::string abort_msg;
480 StringAppendV(&abort_msg, fmt, args);
481 // Throws an exception so we can abort the transaction and rollback every change.
Sebastien Hertz2fd7e692015-04-02 11:11:19 +0200482 Runtime::Current()->AbortTransactionAndThrowAbortError(self, abort_msg);
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700483}
484
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200485template<bool is_range, bool do_assignability_check>
Ian Rogerse94652f2014-12-02 11:13:19 -0800486bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200487 const Instruction* inst, uint16_t inst_data, JValue* result) {
488 // Compute method information.
Ian Rogerse94652f2014-12-02 11:13:19 -0800489 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200490 const uint16_t num_ins = (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200491 uint16_t num_regs;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700492 if (LIKELY(code_item != nullptr)) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200493 num_regs = code_item->registers_size_;
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200494 DCHECK_EQ(num_ins, code_item->ins_size_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200495 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800496 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200497 num_regs = num_ins;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200498 }
499
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200500 // Allocate shadow frame on the stack.
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700501 const char* old_cause = self->StartAssertNoThreadSuspension("DoCall");
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200502 void* memory = alloca(ShadowFrame::ComputeSize(num_regs));
Ian Rogerse94652f2014-12-02 11:13:19 -0800503 ShadowFrame* new_shadow_frame(ShadowFrame::Create(num_regs, &shadow_frame, called_method, 0,
504 memory));
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200505
506 // Initialize new shadow frame.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200507 const size_t first_dest_reg = num_regs - num_ins;
Jeff Haoa3faaf42013-09-03 19:07:00 -0700508 if (do_assignability_check) {
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -0700509 // Slow path.
510 // We might need to do class loading, which incurs a thread state change to kNative. So
511 // register the shadow frame as under construction and allow suspension again.
512 self->SetShadowFrameUnderConstruction(new_shadow_frame);
513 self->EndAssertNoThreadSuspension(old_cause);
514
515 // We need to do runtime check on reference assignment. We need to load the shorty
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200516 // to get the exact type of each reference argument.
Ian Rogerse94652f2014-12-02 11:13:19 -0800517 const DexFile::TypeList* params = new_shadow_frame->GetMethod()->GetParameterTypeList();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700518 uint32_t shorty_len = 0;
Ian Rogerse94652f2014-12-02 11:13:19 -0800519 const char* shorty = new_shadow_frame->GetMethod()->GetShorty(&shorty_len);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200520
Ian Rogerse94652f2014-12-02 11:13:19 -0800521 // TODO: find a cleaner way to separate non-range and range information without duplicating
522 // code.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200523 uint32_t arg[5]; // only used in invoke-XXX.
524 uint32_t vregC; // only used in invoke-XXX-range.
525 if (is_range) {
526 vregC = inst->VRegC_3rc();
527 } else {
Ian Rogers29a26482014-05-02 15:27:29 -0700528 inst->GetVarArgs(arg, inst_data);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200529 }
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100530
531 // Handle receiver apart since it's not part of the shorty.
532 size_t dest_reg = first_dest_reg;
533 size_t arg_offset = 0;
Ian Rogerse94652f2014-12-02 11:13:19 -0800534 if (!new_shadow_frame->GetMethod()->IsStatic()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700535 size_t receiver_reg = is_range ? vregC : arg[0];
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100536 new_shadow_frame->SetVRegReference(dest_reg, shadow_frame.GetVRegReference(receiver_reg));
537 ++dest_reg;
538 ++arg_offset;
539 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800540 for (uint32_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700541 DCHECK_LT(shorty_pos + 1, shorty_len);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200542 const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset];
543 switch (shorty[shorty_pos + 1]) {
544 case 'L': {
545 Object* o = shadow_frame.GetVRegReference(src_reg);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700546 if (do_assignability_check && o != nullptr) {
Ian Rogersa0485602014-12-02 15:48:04 -0800547 Class* arg_type =
548 new_shadow_frame->GetMethod()->GetClassFromTypeIndex(
549 params->GetTypeItem(shorty_pos).type_idx_, true);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700550 if (arg_type == nullptr) {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200551 CHECK(self->IsExceptionPending());
552 return false;
553 }
554 if (!o->VerifierInstanceOf(arg_type)) {
555 // This should never happen.
Ian Rogers1ff3c982014-08-12 02:30:58 -0700556 std::string temp1, temp2;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000557 self->ThrowNewExceptionF("Ljava/lang/VirtualMachineError;",
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200558 "Invoking %s with bad arg %d, type '%s' not instance of '%s'",
Ian Rogerse94652f2014-12-02 11:13:19 -0800559 new_shadow_frame->GetMethod()->GetName(), shorty_pos,
Ian Rogers1ff3c982014-08-12 02:30:58 -0700560 o->GetClass()->GetDescriptor(&temp1),
561 arg_type->GetDescriptor(&temp2));
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200562 return false;
563 }
Jeff Haoa3faaf42013-09-03 19:07:00 -0700564 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200565 new_shadow_frame->SetVRegReference(dest_reg, o);
566 break;
Jeff Haoa3faaf42013-09-03 19:07:00 -0700567 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200568 case 'J': case 'D': {
569 uint64_t wide_value = (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << 32) |
570 static_cast<uint32_t>(shadow_frame.GetVReg(src_reg));
571 new_shadow_frame->SetVRegLong(dest_reg, wide_value);
572 ++dest_reg;
573 ++arg_offset;
574 break;
575 }
576 default:
577 new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg));
578 break;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200579 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200580 }
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -0700581 // We're done with the construction.
582 self->ClearShadowFrameUnderConstruction();
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200583 } else {
584 // Fast path: no extra checks.
585 if (is_range) {
586 const uint16_t first_src_reg = inst->VRegC_3rc();
587 for (size_t src_reg = first_src_reg, dest_reg = first_dest_reg; dest_reg < num_regs;
588 ++dest_reg, ++src_reg) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800589 AssignRegister(new_shadow_frame, shadow_frame, dest_reg, src_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200590 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200591 } else {
592 DCHECK_LE(num_ins, 5U);
593 uint16_t regList = inst->Fetch16(2);
594 uint16_t count = num_ins;
595 if (count == 5) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800596 AssignRegister(new_shadow_frame, shadow_frame, first_dest_reg + 4U,
597 (inst_data >> 8) & 0x0f);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200598 --count;
599 }
600 for (size_t arg_index = 0; arg_index < count; ++arg_index, regList >>= 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800601 AssignRegister(new_shadow_frame, shadow_frame, first_dest_reg + arg_index, regList & 0x0f);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200602 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200603 }
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -0700604 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200605 }
606
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200607 // Do the call now.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200608 if (LIKELY(Runtime::Current()->IsStarted())) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800609 if (kIsDebugBuild && new_shadow_frame->GetMethod()->GetEntryPointFromInterpreter() == nullptr) {
610 LOG(FATAL) << "Attempt to invoke non-executable method: "
611 << PrettyMethod(new_shadow_frame->GetMethod());
612 UNREACHABLE();
Ian Rogers1d99e452014-01-02 17:36:41 -0800613 }
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800614 if (kIsDebugBuild && Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly() &&
Ian Rogerse94652f2014-12-02 11:13:19 -0800615 !new_shadow_frame->GetMethod()->IsNative() &&
616 !new_shadow_frame->GetMethod()->IsProxyMethod() &&
617 new_shadow_frame->GetMethod()->GetEntryPointFromInterpreter()
618 == artInterpreterToCompiledCodeBridge) {
619 LOG(FATAL) << "Attempt to call compiled code when -Xint: "
620 << PrettyMethod(new_shadow_frame->GetMethod());
621 UNREACHABLE();
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800622 }
Daniel Mihalyieb076692014-08-22 17:33:31 +0200623 // Force the use of interpreter when it is required by the debugger.
624 mirror::EntryPointFromInterpreter* entry;
625 if (UNLIKELY(Dbg::IsForcedInterpreterNeededForCalling(self, new_shadow_frame->GetMethod()))) {
626 entry = &art::artInterpreterToInterpreterBridge;
627 } else {
628 entry = new_shadow_frame->GetMethod()->GetEntryPointFromInterpreter();
629 }
630 entry(self, code_item, new_shadow_frame, result);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200631 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800632 UnstartedRuntimeInvoke(self, code_item, new_shadow_frame, result, first_dest_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200633 }
634 return !self->IsExceptionPending();
635}
636
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100637template <bool is_range, bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200638bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
639 Thread* self, JValue* result) {
640 DCHECK(inst->Opcode() == Instruction::FILLED_NEW_ARRAY ||
641 inst->Opcode() == Instruction::FILLED_NEW_ARRAY_RANGE);
642 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c();
643 if (!is_range) {
644 // Checks FILLED_NEW_ARRAY's length does not exceed 5 arguments.
645 CHECK_LE(length, 5);
646 }
647 if (UNLIKELY(length < 0)) {
648 ThrowNegativeArraySizeException(length);
649 return false;
650 }
651 uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
652 Class* arrayClass = ResolveVerifyAndClinit(type_idx, shadow_frame.GetMethod(),
653 self, false, do_access_check);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700654 if (UNLIKELY(arrayClass == nullptr)) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200655 DCHECK(self->IsExceptionPending());
656 return false;
657 }
658 CHECK(arrayClass->IsArrayClass());
659 Class* componentClass = arrayClass->GetComponentType();
660 if (UNLIKELY(componentClass->IsPrimitive() && !componentClass->IsPrimitiveInt())) {
661 if (componentClass->IsPrimitiveLong() || componentClass->IsPrimitiveDouble()) {
662 ThrowRuntimeException("Bad filled array request for type %s",
663 PrettyDescriptor(componentClass).c_str());
664 } else {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000665 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800666 "Found type %s; filled-new-array not implemented for anything but 'int'",
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200667 PrettyDescriptor(componentClass).c_str());
668 }
669 return false;
670 }
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700671 Object* newArray = Array::Alloc<true>(self, arrayClass, length,
672 arrayClass->GetComponentSizeShift(),
Ian Rogers6fac4472014-02-25 17:01:10 -0800673 Runtime::Current()->GetHeap()->GetCurrentAllocator());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700674 if (UNLIKELY(newArray == nullptr)) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200675 DCHECK(self->IsExceptionPending());
676 return false;
677 }
Sebastien Hertzabff6432014-01-27 18:01:39 +0100678 uint32_t arg[5]; // only used in filled-new-array.
679 uint32_t vregC; // only used in filled-new-array-range.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200680 if (is_range) {
Sebastien Hertzabff6432014-01-27 18:01:39 +0100681 vregC = inst->VRegC_3rc();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200682 } else {
Ian Rogers29a26482014-05-02 15:27:29 -0700683 inst->GetVarArgs(arg);
Sebastien Hertzabff6432014-01-27 18:01:39 +0100684 }
685 const bool is_primitive_int_component = componentClass->IsPrimitiveInt();
686 for (int32_t i = 0; i < length; ++i) {
687 size_t src_reg = is_range ? vregC + i : arg[i];
688 if (is_primitive_int_component) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100689 newArray->AsIntArray()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVReg(src_reg));
Sebastien Hertzabff6432014-01-27 18:01:39 +0100690 } else {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100691 newArray->AsObjectArray<Object>()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVRegReference(src_reg));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200692 }
693 }
694
695 result->SetL(newArray);
696 return true;
697}
698
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100699// TODO fix thread analysis: should be SHARED_LOCKS_REQUIRED(Locks::mutator_lock_).
700template<typename T>
701static void RecordArrayElementsInTransactionImpl(mirror::PrimitiveArray<T>* array, int32_t count)
702 NO_THREAD_SAFETY_ANALYSIS {
703 Runtime* runtime = Runtime::Current();
704 for (int32_t i = 0; i < count; ++i) {
705 runtime->RecordWriteArray(array, i, array->GetWithoutChecks(i));
706 }
707}
708
709void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count)
710 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
711 DCHECK(Runtime::Current()->IsActiveTransaction());
712 DCHECK(array != nullptr);
713 DCHECK_LE(count, array->GetLength());
714 Primitive::Type primitive_component_type = array->GetClass()->GetComponentType()->GetPrimitiveType();
715 switch (primitive_component_type) {
716 case Primitive::kPrimBoolean:
717 RecordArrayElementsInTransactionImpl(array->AsBooleanArray(), count);
718 break;
719 case Primitive::kPrimByte:
720 RecordArrayElementsInTransactionImpl(array->AsByteArray(), count);
721 break;
722 case Primitive::kPrimChar:
723 RecordArrayElementsInTransactionImpl(array->AsCharArray(), count);
724 break;
725 case Primitive::kPrimShort:
726 RecordArrayElementsInTransactionImpl(array->AsShortArray(), count);
727 break;
728 case Primitive::kPrimInt:
729 case Primitive::kPrimFloat:
730 RecordArrayElementsInTransactionImpl(array->AsIntArray(), count);
731 break;
732 case Primitive::kPrimLong:
733 case Primitive::kPrimDouble:
734 RecordArrayElementsInTransactionImpl(array->AsLongArray(), count);
735 break;
736 default:
737 LOG(FATAL) << "Unsupported primitive type " << primitive_component_type
738 << " in fill-array-data";
739 break;
740 }
741}
742
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200743// Explicit DoCall template function declarations.
Sebastien Hertzc6714852013-09-30 16:42:32 +0200744#define EXPLICIT_DO_CALL_TEMPLATE_DECL(_is_range, _do_assignability_check) \
745 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100746 bool DoCall<_is_range, _do_assignability_check>(ArtMethod* method, Thread* self, \
747 ShadowFrame& shadow_frame, \
Sebastien Hertzc6714852013-09-30 16:42:32 +0200748 const Instruction* inst, uint16_t inst_data, \
749 JValue* result)
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200750EXPLICIT_DO_CALL_TEMPLATE_DECL(false, false);
751EXPLICIT_DO_CALL_TEMPLATE_DECL(false, true);
752EXPLICIT_DO_CALL_TEMPLATE_DECL(true, false);
753EXPLICIT_DO_CALL_TEMPLATE_DECL(true, true);
754#undef EXPLICIT_DO_CALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200755
756// Explicit DoFilledNewArray template function declarations.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100757#define EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(_is_range_, _check, _transaction_active) \
758 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
759 bool DoFilledNewArray<_is_range_, _check, _transaction_active>(const Instruction* inst, \
760 const ShadowFrame& shadow_frame, \
761 Thread* self, JValue* result)
762#define EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(_transaction_active) \
763 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, false, _transaction_active); \
764 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, true, _transaction_active); \
765 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, false, _transaction_active); \
766 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, true, _transaction_active)
767EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(false);
768EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(true);
769#undef EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200770#undef EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL
771
772} // namespace interpreter
773} // namespace art