blob: 2a9c0d4c9cfc98aeb9363adcdbd5abc807eb92e2 [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
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010021#include "mirror/array-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020022
23namespace art {
24namespace interpreter {
25
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000026void ThrowNullPointerExceptionFromInterpreter() {
27 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -070028}
29
30template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check>
31bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
32 uint16_t inst_data) {
33 const bool is_static = (find_type == StaticObjectRead) || (find_type == StaticPrimitiveRead);
34 const uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
35 ArtField* f = FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
Fred Shih37f05ef2014-07-16 18:38:08 -070036 Primitive::ComponentSize(field_type));
Ian Rogers54874942014-06-10 16:31:03 -070037 if (UNLIKELY(f == nullptr)) {
38 CHECK(self->IsExceptionPending());
39 return false;
40 }
41 Object* obj;
42 if (is_static) {
43 obj = f->GetDeclaringClass();
44 } else {
45 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
46 if (UNLIKELY(obj == nullptr)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000047 ThrowNullPointerExceptionForFieldAccess(f, true);
Ian Rogers54874942014-06-10 16:31:03 -070048 return false;
49 }
50 }
Sebastien Hertz1edbd8e2014-07-16 20:00:11 +020051 f->GetDeclaringClass()->AssertInitializedOrInitializingInThread(self);
Ian Rogers54874942014-06-10 16:31:03 -070052 // Report this field access to instrumentation if needed.
53 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
54 if (UNLIKELY(instrumentation->HasFieldReadListeners())) {
55 Object* this_object = f->IsStatic() ? nullptr : obj;
56 instrumentation->FieldReadEvent(self, this_object, shadow_frame.GetMethod(),
57 shadow_frame.GetDexPC(), f);
58 }
59 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
60 switch (field_type) {
61 case Primitive::kPrimBoolean:
62 shadow_frame.SetVReg(vregA, f->GetBoolean(obj));
63 break;
64 case Primitive::kPrimByte:
65 shadow_frame.SetVReg(vregA, f->GetByte(obj));
66 break;
67 case Primitive::kPrimChar:
68 shadow_frame.SetVReg(vregA, f->GetChar(obj));
69 break;
70 case Primitive::kPrimShort:
71 shadow_frame.SetVReg(vregA, f->GetShort(obj));
72 break;
73 case Primitive::kPrimInt:
74 shadow_frame.SetVReg(vregA, f->GetInt(obj));
75 break;
76 case Primitive::kPrimLong:
77 shadow_frame.SetVRegLong(vregA, f->GetLong(obj));
78 break;
79 case Primitive::kPrimNot:
80 shadow_frame.SetVRegReference(vregA, f->GetObject(obj));
81 break;
82 default:
83 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -070084 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -070085 }
86 return true;
87}
88
89// Explicitly instantiate all DoFieldGet functions.
90#define EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, _do_check) \
91 template bool DoFieldGet<_find_type, _field_type, _do_check>(Thread* self, \
92 ShadowFrame& shadow_frame, \
93 const Instruction* inst, \
94 uint16_t inst_data)
95
96#define EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(_find_type, _field_type) \
97 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, false); \
98 EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, true);
99
100// iget-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700101EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimBoolean)
102EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimByte)
103EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimChar)
104EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimShort)
105EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimInt)
106EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimLong)
107EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstanceObjectRead, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700108
109// sget-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700110EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimBoolean)
111EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimByte)
112EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimChar)
113EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimShort)
114EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimInt)
115EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimLong)
116EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticObjectRead, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700117
118#undef EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL
119#undef EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL
120
121// Handles iget-quick, iget-wide-quick and iget-object-quick instructions.
122// Returns true on success, otherwise throws an exception and returns false.
123template<Primitive::Type field_type>
124bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) {
125 Object* obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
126 if (UNLIKELY(obj == nullptr)) {
127 // We lost the reference to the field index so we cannot get a more
128 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000129 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -0700130 return false;
131 }
132 MemberOffset field_offset(inst->VRegC_22c());
133 // Report this field access to instrumentation if needed. Since we only have the offset of
134 // the field from the base of the object, we need to look for it first.
135 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
136 if (UNLIKELY(instrumentation->HasFieldReadListeners())) {
137 ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(),
138 field_offset.Uint32Value());
139 DCHECK(f != nullptr);
140 DCHECK(!f->IsStatic());
141 instrumentation->FieldReadEvent(Thread::Current(), obj, shadow_frame.GetMethod(),
142 shadow_frame.GetDexPC(), f);
143 }
144 // Note: iget-x-quick instructions are only for non-volatile fields.
145 const uint32_t vregA = inst->VRegA_22c(inst_data);
146 switch (field_type) {
147 case Primitive::kPrimInt:
148 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset)));
149 break;
Mathieu Chartierffc605c2014-12-10 10:35:44 -0800150 case Primitive::kPrimBoolean:
151 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset)));
152 break;
153 case Primitive::kPrimByte:
154 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset)));
155 break;
156 case Primitive::kPrimChar:
157 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset)));
158 break;
159 case Primitive::kPrimShort:
160 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldShort(field_offset)));
161 break;
Ian Rogers54874942014-06-10 16:31:03 -0700162 case Primitive::kPrimLong:
163 shadow_frame.SetVRegLong(vregA, static_cast<int64_t>(obj->GetField64(field_offset)));
164 break;
165 case Primitive::kPrimNot:
166 shadow_frame.SetVRegReference(vregA, obj->GetFieldObject<mirror::Object>(field_offset));
167 break;
168 default:
169 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700170 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700171 }
172 return true;
173}
174
175// Explicitly instantiate all DoIGetQuick functions.
176#define EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(_field_type) \
177 template bool DoIGetQuick<_field_type>(ShadowFrame& shadow_frame, const Instruction* inst, \
178 uint16_t inst_data)
179
Mathieu Chartierffc605c2014-12-10 10:35:44 -0800180EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimInt); // iget-quick.
181EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimBoolean); // iget-boolean-quick.
182EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimByte); // iget-byte-quick.
183EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimChar); // iget-char-quick.
184EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimShort); // iget-short-quick.
185EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimLong); // iget-wide-quick.
186EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimNot); // iget-object-quick.
Ian Rogers54874942014-06-10 16:31:03 -0700187#undef EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL
188
189template<Primitive::Type field_type>
190static JValue GetFieldValue(const ShadowFrame& shadow_frame, uint32_t vreg)
191 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
192 JValue field_value;
193 switch (field_type) {
194 case Primitive::kPrimBoolean:
195 field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg)));
196 break;
197 case Primitive::kPrimByte:
198 field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg)));
199 break;
200 case Primitive::kPrimChar:
201 field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg)));
202 break;
203 case Primitive::kPrimShort:
204 field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg)));
205 break;
206 case Primitive::kPrimInt:
207 field_value.SetI(shadow_frame.GetVReg(vreg));
208 break;
209 case Primitive::kPrimLong:
210 field_value.SetJ(shadow_frame.GetVRegLong(vreg));
211 break;
212 case Primitive::kPrimNot:
213 field_value.SetL(shadow_frame.GetVRegReference(vreg));
214 break;
215 default:
216 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700217 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700218 }
219 return field_value;
220}
221
222template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check,
223 bool transaction_active>
224bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst,
225 uint16_t inst_data) {
226 bool do_assignability_check = do_access_check;
227 bool is_static = (find_type == StaticObjectWrite) || (find_type == StaticPrimitiveWrite);
228 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
229 ArtField* f = FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
Fred Shih37f05ef2014-07-16 18:38:08 -0700230 Primitive::ComponentSize(field_type));
Ian Rogers54874942014-06-10 16:31:03 -0700231 if (UNLIKELY(f == nullptr)) {
232 CHECK(self->IsExceptionPending());
233 return false;
234 }
235 Object* obj;
236 if (is_static) {
237 obj = f->GetDeclaringClass();
238 } else {
239 obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
240 if (UNLIKELY(obj == nullptr)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000241 ThrowNullPointerExceptionForFieldAccess(f, false);
Ian Rogers54874942014-06-10 16:31:03 -0700242 return false;
243 }
244 }
Sebastien Hertz1edbd8e2014-07-16 20:00:11 +0200245 f->GetDeclaringClass()->AssertInitializedOrInitializingInThread(self);
Ian Rogers54874942014-06-10 16:31:03 -0700246 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
247 // Report this field access to instrumentation if needed. Since we only have the offset of
248 // the field from the base of the object, we need to look for it first.
249 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
250 if (UNLIKELY(instrumentation->HasFieldWriteListeners())) {
251 JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA);
252 Object* this_object = f->IsStatic() ? nullptr : obj;
253 instrumentation->FieldWriteEvent(self, this_object, shadow_frame.GetMethod(),
254 shadow_frame.GetDexPC(), f, field_value);
255 }
256 switch (field_type) {
257 case Primitive::kPrimBoolean:
258 f->SetBoolean<transaction_active>(obj, shadow_frame.GetVReg(vregA));
259 break;
260 case Primitive::kPrimByte:
261 f->SetByte<transaction_active>(obj, shadow_frame.GetVReg(vregA));
262 break;
263 case Primitive::kPrimChar:
264 f->SetChar<transaction_active>(obj, shadow_frame.GetVReg(vregA));
265 break;
266 case Primitive::kPrimShort:
267 f->SetShort<transaction_active>(obj, shadow_frame.GetVReg(vregA));
268 break;
269 case Primitive::kPrimInt:
270 f->SetInt<transaction_active>(obj, shadow_frame.GetVReg(vregA));
271 break;
272 case Primitive::kPrimLong:
273 f->SetLong<transaction_active>(obj, shadow_frame.GetVRegLong(vregA));
274 break;
275 case Primitive::kPrimNot: {
276 Object* reg = shadow_frame.GetVRegReference(vregA);
277 if (do_assignability_check && reg != nullptr) {
278 // FieldHelper::GetType can resolve classes, use a handle wrapper which will restore the
279 // object in the destructor.
280 Class* field_class;
281 {
282 StackHandleScope<3> hs(self);
283 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
284 HandleWrapper<mirror::Object> h_reg(hs.NewHandleWrapper(&reg));
285 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&obj));
Ian Rogers08f1f502014-12-02 15:04:37 -0800286 field_class = h_f->GetType(true);
Ian Rogers54874942014-06-10 16:31:03 -0700287 }
288 if (!reg->VerifierInstanceOf(field_class)) {
289 // This should never happen.
Ian Rogers1ff3c982014-08-12 02:30:58 -0700290 std::string temp1, temp2, temp3;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000291 self->ThrowNewExceptionF("Ljava/lang/VirtualMachineError;",
Ian Rogers54874942014-06-10 16:31:03 -0700292 "Put '%s' that is not instance of field '%s' in '%s'",
Ian Rogers1ff3c982014-08-12 02:30:58 -0700293 reg->GetClass()->GetDescriptor(&temp1),
294 field_class->GetDescriptor(&temp2),
295 f->GetDeclaringClass()->GetDescriptor(&temp3));
Ian Rogers54874942014-06-10 16:31:03 -0700296 return false;
297 }
298 }
299 f->SetObj<transaction_active>(obj, reg);
300 break;
301 }
302 default:
303 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700304 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700305 }
306 return true;
307}
308
309// Explicitly instantiate all DoFieldPut functions.
310#define EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, _do_check, _transaction_active) \
311 template bool DoFieldPut<_find_type, _field_type, _do_check, _transaction_active>(Thread* self, \
312 const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
313
314#define EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(_find_type, _field_type) \
315 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, false); \
316 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, false); \
317 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, true); \
318 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, true);
319
320// iput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700321EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimBoolean)
322EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimByte)
323EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimChar)
324EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimShort)
325EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimInt)
326EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimLong)
327EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstanceObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700328
329// sput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700330EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimBoolean)
331EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimByte)
332EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimChar)
333EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimShort)
334EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimInt)
335EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimLong)
336EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700337
338#undef EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL
339#undef EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL
340
341template<Primitive::Type field_type, bool transaction_active>
342bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) {
343 Object* obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
344 if (UNLIKELY(obj == nullptr)) {
345 // We lost the reference to the field index so we cannot get a more
346 // precised exception message.
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000347 ThrowNullPointerExceptionFromDexPC();
Ian Rogers54874942014-06-10 16:31:03 -0700348 return false;
349 }
350 MemberOffset field_offset(inst->VRegC_22c());
351 const uint32_t vregA = inst->VRegA_22c(inst_data);
352 // Report this field modification to instrumentation if needed. Since we only have the offset of
353 // the field from the base of the object, we need to look for it first.
354 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
355 if (UNLIKELY(instrumentation->HasFieldWriteListeners())) {
356 ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(),
357 field_offset.Uint32Value());
358 DCHECK(f != nullptr);
359 DCHECK(!f->IsStatic());
360 JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA);
361 instrumentation->FieldWriteEvent(Thread::Current(), obj, shadow_frame.GetMethod(),
362 shadow_frame.GetDexPC(), f, field_value);
363 }
364 // Note: iput-x-quick instructions are only for non-volatile fields.
365 switch (field_type) {
Fred Shih37f05ef2014-07-16 18:38:08 -0700366 case Primitive::kPrimBoolean:
367 obj->SetFieldBoolean<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
368 break;
369 case Primitive::kPrimByte:
370 obj->SetFieldByte<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
371 break;
372 case Primitive::kPrimChar:
373 obj->SetFieldChar<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
374 break;
375 case Primitive::kPrimShort:
376 obj->SetFieldShort<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
377 break;
Ian Rogers54874942014-06-10 16:31:03 -0700378 case Primitive::kPrimInt:
379 obj->SetField32<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
380 break;
381 case Primitive::kPrimLong:
382 obj->SetField64<transaction_active>(field_offset, shadow_frame.GetVRegLong(vregA));
383 break;
384 case Primitive::kPrimNot:
385 obj->SetFieldObject<transaction_active>(field_offset, shadow_frame.GetVRegReference(vregA));
386 break;
387 default:
388 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700389 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700390 }
391 return true;
392}
393
394// Explicitly instantiate all DoIPutQuick functions.
395#define EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, _transaction_active) \
396 template bool DoIPutQuick<_field_type, _transaction_active>(const ShadowFrame& shadow_frame, \
397 const Instruction* inst, \
398 uint16_t inst_data)
399
400#define EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(_field_type) \
401 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, false); \
402 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, true);
403
Andreas Gampec8ccf682014-09-29 20:07:43 -0700404EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimInt) // iput-quick.
405EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimBoolean) // iput-boolean-quick.
406EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimByte) // iput-byte-quick.
407EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimChar) // iput-char-quick.
408EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimShort) // iput-short-quick.
409EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimLong) // iput-wide-quick.
410EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimNot) // iput-object-quick.
Ian Rogers54874942014-06-10 16:31:03 -0700411#undef EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL
412#undef EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL
413
414uint32_t FindNextInstructionFollowingException(Thread* self,
415 ShadowFrame& shadow_frame,
416 uint32_t dex_pc,
Ian Rogers54874942014-06-10 16:31:03 -0700417 const instrumentation::Instrumentation* instrumentation) {
418 self->VerifyStack();
Sebastien Hertz9f102032014-05-23 08:59:42 +0200419 StackHandleScope<3> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000420 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000421 if (instrumentation->HasExceptionCaughtListeners()
422 && self->IsExceptionThrownByCurrentMethod(exception.Get())) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000423 instrumentation->ExceptionCaughtEvent(self, exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +0200424 }
Ian Rogers54874942014-06-10 16:31:03 -0700425 bool clear_exception = false;
426 uint32_t found_dex_pc;
427 {
Ian Rogers54874942014-06-10 16:31:03 -0700428 Handle<mirror::Class> exception_class(hs.NewHandle(exception->GetClass()));
429 Handle<mirror::ArtMethod> h_method(hs.NewHandle(shadow_frame.GetMethod()));
Ian Rogers54874942014-06-10 16:31:03 -0700430 found_dex_pc = mirror::ArtMethod::FindCatchBlock(h_method, exception_class, dex_pc,
431 &clear_exception);
432 }
433 if (found_dex_pc == DexFile::kDexNoIndex) {
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000434 // Exception is not caught by the current method. We will unwind to the
435 // caller. Notify any instrumentation listener.
Sebastien Hertz9f102032014-05-23 08:59:42 +0200436 instrumentation->MethodUnwindEvent(self, shadow_frame.GetThisObject(),
Ian Rogers54874942014-06-10 16:31:03 -0700437 shadow_frame.GetMethod(), dex_pc);
438 } else {
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000439 // Exception is caught in the current method. We will jump to the found_dex_pc.
Ian Rogers54874942014-06-10 16:31:03 -0700440 if (clear_exception) {
441 self->ClearException();
442 }
443 }
444 return found_dex_pc;
445}
446
Ian Rogerse94652f2014-12-02 11:13:19 -0800447void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) {
448 LOG(FATAL) << "Unexpected instruction: "
449 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile());
450 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700451}
452
Ian Rogerse94652f2014-12-02 11:13:19 -0800453static void UnstartedRuntimeInvoke(Thread* self, const DexFile::CodeItem* code_item,
454 ShadowFrame* shadow_frame, JValue* result, size_t arg_offset)
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200455 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200456
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200457// Assign register 'src_reg' from shadow_frame to register 'dest_reg' into new_shadow_frame.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800458static inline void AssignRegister(ShadowFrame* new_shadow_frame, const ShadowFrame& shadow_frame,
459 size_t dest_reg, size_t src_reg)
460 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200461 // If both register locations contains the same value, the register probably holds a reference.
Andreas Gampe7104cbf2014-03-21 11:44:43 -0700462 // Uint required, so that sign extension does not make this wrong on 64b systems
463 uint32_t src_value = shadow_frame.GetVReg(src_reg);
Mathieu Chartier4e305412014-02-19 10:54:44 -0800464 mirror::Object* o = shadow_frame.GetVRegReference<kVerifyNone>(src_reg);
Andreas Gampe7104cbf2014-03-21 11:44:43 -0700465 if (src_value == reinterpret_cast<uintptr_t>(o)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800466 new_shadow_frame->SetVRegReference(dest_reg, o);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200467 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800468 new_shadow_frame->SetVReg(dest_reg, src_value);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200469 }
470}
471
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700472void AbortTransaction(Thread* self, const char* fmt, ...) {
473 CHECK(Runtime::Current()->IsActiveTransaction());
Sebastien Hertz1c80bec2015-02-03 11:58:06 +0100474 // Constructs abort message.
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700475 va_list args;
476 va_start(args, fmt);
Sebastien Hertz1c80bec2015-02-03 11:58:06 +0100477 std::string abort_msg;
478 StringAppendV(&abort_msg, fmt, args);
479 // Throws an exception so we can abort the transaction and rollback every change.
480 Runtime::Current()->AbortTransactionAndThrowInternalError(self, abort_msg);
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700481 va_end(args);
482}
483
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200484template<bool is_range, bool do_assignability_check>
Ian Rogerse94652f2014-12-02 11:13:19 -0800485bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200486 const Instruction* inst, uint16_t inst_data, JValue* result) {
487 // Compute method information.
Ian Rogerse94652f2014-12-02 11:13:19 -0800488 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200489 const uint16_t num_ins = (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200490 uint16_t num_regs;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200491 if (LIKELY(code_item != NULL)) {
492 num_regs = code_item->registers_size_;
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200493 DCHECK_EQ(num_ins, code_item->ins_size_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200494 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800495 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200496 num_regs = num_ins;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200497 }
498
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200499 // Allocate shadow frame on the stack.
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700500 const char* old_cause = self->StartAssertNoThreadSuspension("DoCall");
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200501 void* memory = alloca(ShadowFrame::ComputeSize(num_regs));
Ian Rogerse94652f2014-12-02 11:13:19 -0800502 ShadowFrame* new_shadow_frame(ShadowFrame::Create(num_regs, &shadow_frame, called_method, 0,
503 memory));
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200504
505 // Initialize new shadow frame.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200506 const size_t first_dest_reg = num_regs - num_ins;
Jeff Haoa3faaf42013-09-03 19:07:00 -0700507 if (do_assignability_check) {
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -0700508 // Slow path.
509 // We might need to do class loading, which incurs a thread state change to kNative. So
510 // register the shadow frame as under construction and allow suspension again.
511 self->SetShadowFrameUnderConstruction(new_shadow_frame);
512 self->EndAssertNoThreadSuspension(old_cause);
513
514 // We need to do runtime check on reference assignment. We need to load the shorty
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200515 // to get the exact type of each reference argument.
Ian Rogerse94652f2014-12-02 11:13:19 -0800516 const DexFile::TypeList* params = new_shadow_frame->GetMethod()->GetParameterTypeList();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700517 uint32_t shorty_len = 0;
Ian Rogerse94652f2014-12-02 11:13:19 -0800518 const char* shorty = new_shadow_frame->GetMethod()->GetShorty(&shorty_len);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200519
Ian Rogerse94652f2014-12-02 11:13:19 -0800520 // TODO: find a cleaner way to separate non-range and range information without duplicating
521 // code.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200522 uint32_t arg[5]; // only used in invoke-XXX.
523 uint32_t vregC; // only used in invoke-XXX-range.
524 if (is_range) {
525 vregC = inst->VRegC_3rc();
526 } else {
Ian Rogers29a26482014-05-02 15:27:29 -0700527 inst->GetVarArgs(arg, inst_data);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200528 }
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100529
530 // Handle receiver apart since it's not part of the shorty.
531 size_t dest_reg = first_dest_reg;
532 size_t arg_offset = 0;
Ian Rogerse94652f2014-12-02 11:13:19 -0800533 if (!new_shadow_frame->GetMethod()->IsStatic()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700534 size_t receiver_reg = is_range ? vregC : arg[0];
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100535 new_shadow_frame->SetVRegReference(dest_reg, shadow_frame.GetVRegReference(receiver_reg));
536 ++dest_reg;
537 ++arg_offset;
538 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800539 for (uint32_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700540 DCHECK_LT(shorty_pos + 1, shorty_len);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200541 const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset];
542 switch (shorty[shorty_pos + 1]) {
543 case 'L': {
544 Object* o = shadow_frame.GetVRegReference(src_reg);
545 if (do_assignability_check && o != NULL) {
Ian Rogersa0485602014-12-02 15:48:04 -0800546 Class* arg_type =
547 new_shadow_frame->GetMethod()->GetClassFromTypeIndex(
548 params->GetTypeItem(shorty_pos).type_idx_, true);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200549 if (arg_type == NULL) {
550 CHECK(self->IsExceptionPending());
551 return false;
552 }
553 if (!o->VerifierInstanceOf(arg_type)) {
554 // This should never happen.
Ian Rogers1ff3c982014-08-12 02:30:58 -0700555 std::string temp1, temp2;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000556 self->ThrowNewExceptionF("Ljava/lang/VirtualMachineError;",
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200557 "Invoking %s with bad arg %d, type '%s' not instance of '%s'",
Ian Rogerse94652f2014-12-02 11:13:19 -0800558 new_shadow_frame->GetMethod()->GetName(), shorty_pos,
Ian Rogers1ff3c982014-08-12 02:30:58 -0700559 o->GetClass()->GetDescriptor(&temp1),
560 arg_type->GetDescriptor(&temp2));
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200561 return false;
562 }
Jeff Haoa3faaf42013-09-03 19:07:00 -0700563 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200564 new_shadow_frame->SetVRegReference(dest_reg, o);
565 break;
Jeff Haoa3faaf42013-09-03 19:07:00 -0700566 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200567 case 'J': case 'D': {
568 uint64_t wide_value = (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << 32) |
569 static_cast<uint32_t>(shadow_frame.GetVReg(src_reg));
570 new_shadow_frame->SetVRegLong(dest_reg, wide_value);
571 ++dest_reg;
572 ++arg_offset;
573 break;
574 }
575 default:
576 new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg));
577 break;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200578 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200579 }
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -0700580 // We're done with the construction.
581 self->ClearShadowFrameUnderConstruction();
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200582 } else {
583 // Fast path: no extra checks.
584 if (is_range) {
585 const uint16_t first_src_reg = inst->VRegC_3rc();
586 for (size_t src_reg = first_src_reg, dest_reg = first_dest_reg; dest_reg < num_regs;
587 ++dest_reg, ++src_reg) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800588 AssignRegister(new_shadow_frame, shadow_frame, dest_reg, src_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200589 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200590 } else {
591 DCHECK_LE(num_ins, 5U);
592 uint16_t regList = inst->Fetch16(2);
593 uint16_t count = num_ins;
594 if (count == 5) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800595 AssignRegister(new_shadow_frame, shadow_frame, first_dest_reg + 4U,
596 (inst_data >> 8) & 0x0f);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200597 --count;
598 }
599 for (size_t arg_index = 0; arg_index < count; ++arg_index, regList >>= 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800600 AssignRegister(new_shadow_frame, shadow_frame, first_dest_reg + arg_index, regList & 0x0f);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200601 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200602 }
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -0700603 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200604 }
605
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200606 // Do the call now.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200607 if (LIKELY(Runtime::Current()->IsStarted())) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800608 if (kIsDebugBuild && new_shadow_frame->GetMethod()->GetEntryPointFromInterpreter() == nullptr) {
609 LOG(FATAL) << "Attempt to invoke non-executable method: "
610 << PrettyMethod(new_shadow_frame->GetMethod());
611 UNREACHABLE();
Ian Rogers1d99e452014-01-02 17:36:41 -0800612 }
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800613 if (kIsDebugBuild && Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly() &&
Ian Rogerse94652f2014-12-02 11:13:19 -0800614 !new_shadow_frame->GetMethod()->IsNative() &&
615 !new_shadow_frame->GetMethod()->IsProxyMethod() &&
616 new_shadow_frame->GetMethod()->GetEntryPointFromInterpreter()
617 == artInterpreterToCompiledCodeBridge) {
618 LOG(FATAL) << "Attempt to call compiled code when -Xint: "
619 << PrettyMethod(new_shadow_frame->GetMethod());
620 UNREACHABLE();
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800621 }
Ian Rogerse94652f2014-12-02 11:13:19 -0800622 (new_shadow_frame->GetMethod()->GetEntryPointFromInterpreter())(self, code_item,
623 new_shadow_frame, result);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200624 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800625 UnstartedRuntimeInvoke(self, code_item, new_shadow_frame, result, first_dest_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200626 }
627 return !self->IsExceptionPending();
628}
629
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100630template <bool is_range, bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200631bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
632 Thread* self, JValue* result) {
633 DCHECK(inst->Opcode() == Instruction::FILLED_NEW_ARRAY ||
634 inst->Opcode() == Instruction::FILLED_NEW_ARRAY_RANGE);
635 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c();
636 if (!is_range) {
637 // Checks FILLED_NEW_ARRAY's length does not exceed 5 arguments.
638 CHECK_LE(length, 5);
639 }
640 if (UNLIKELY(length < 0)) {
641 ThrowNegativeArraySizeException(length);
642 return false;
643 }
644 uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
645 Class* arrayClass = ResolveVerifyAndClinit(type_idx, shadow_frame.GetMethod(),
646 self, false, do_access_check);
647 if (UNLIKELY(arrayClass == NULL)) {
648 DCHECK(self->IsExceptionPending());
649 return false;
650 }
651 CHECK(arrayClass->IsArrayClass());
652 Class* componentClass = arrayClass->GetComponentType();
653 if (UNLIKELY(componentClass->IsPrimitive() && !componentClass->IsPrimitiveInt())) {
654 if (componentClass->IsPrimitiveLong() || componentClass->IsPrimitiveDouble()) {
655 ThrowRuntimeException("Bad filled array request for type %s",
656 PrettyDescriptor(componentClass).c_str());
657 } else {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000658 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800659 "Found type %s; filled-new-array not implemented for anything but 'int'",
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200660 PrettyDescriptor(componentClass).c_str());
661 }
662 return false;
663 }
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700664 Object* newArray = Array::Alloc<true>(self, arrayClass, length,
665 arrayClass->GetComponentSizeShift(),
Ian Rogers6fac4472014-02-25 17:01:10 -0800666 Runtime::Current()->GetHeap()->GetCurrentAllocator());
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200667 if (UNLIKELY(newArray == NULL)) {
668 DCHECK(self->IsExceptionPending());
669 return false;
670 }
Sebastien Hertzabff6432014-01-27 18:01:39 +0100671 uint32_t arg[5]; // only used in filled-new-array.
672 uint32_t vregC; // only used in filled-new-array-range.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200673 if (is_range) {
Sebastien Hertzabff6432014-01-27 18:01:39 +0100674 vregC = inst->VRegC_3rc();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200675 } else {
Ian Rogers29a26482014-05-02 15:27:29 -0700676 inst->GetVarArgs(arg);
Sebastien Hertzabff6432014-01-27 18:01:39 +0100677 }
678 const bool is_primitive_int_component = componentClass->IsPrimitiveInt();
679 for (int32_t i = 0; i < length; ++i) {
680 size_t src_reg = is_range ? vregC + i : arg[i];
681 if (is_primitive_int_component) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100682 newArray->AsIntArray()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVReg(src_reg));
Sebastien Hertzabff6432014-01-27 18:01:39 +0100683 } else {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100684 newArray->AsObjectArray<Object>()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVRegReference(src_reg));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200685 }
686 }
687
688 result->SetL(newArray);
689 return true;
690}
691
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100692// TODO fix thread analysis: should be SHARED_LOCKS_REQUIRED(Locks::mutator_lock_).
693template<typename T>
694static void RecordArrayElementsInTransactionImpl(mirror::PrimitiveArray<T>* array, int32_t count)
695 NO_THREAD_SAFETY_ANALYSIS {
696 Runtime* runtime = Runtime::Current();
697 for (int32_t i = 0; i < count; ++i) {
698 runtime->RecordWriteArray(array, i, array->GetWithoutChecks(i));
699 }
700}
701
702void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count)
703 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
704 DCHECK(Runtime::Current()->IsActiveTransaction());
705 DCHECK(array != nullptr);
706 DCHECK_LE(count, array->GetLength());
707 Primitive::Type primitive_component_type = array->GetClass()->GetComponentType()->GetPrimitiveType();
708 switch (primitive_component_type) {
709 case Primitive::kPrimBoolean:
710 RecordArrayElementsInTransactionImpl(array->AsBooleanArray(), count);
711 break;
712 case Primitive::kPrimByte:
713 RecordArrayElementsInTransactionImpl(array->AsByteArray(), count);
714 break;
715 case Primitive::kPrimChar:
716 RecordArrayElementsInTransactionImpl(array->AsCharArray(), count);
717 break;
718 case Primitive::kPrimShort:
719 RecordArrayElementsInTransactionImpl(array->AsShortArray(), count);
720 break;
721 case Primitive::kPrimInt:
722 case Primitive::kPrimFloat:
723 RecordArrayElementsInTransactionImpl(array->AsIntArray(), count);
724 break;
725 case Primitive::kPrimLong:
726 case Primitive::kPrimDouble:
727 RecordArrayElementsInTransactionImpl(array->AsLongArray(), count);
728 break;
729 default:
730 LOG(FATAL) << "Unsupported primitive type " << primitive_component_type
731 << " in fill-array-data";
732 break;
733 }
734}
735
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200736// Helper function to deal with class loading in an unstarted runtime.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700737static void UnstartedRuntimeFindClass(Thread* self, Handle<mirror::String> className,
738 Handle<mirror::ClassLoader> class_loader, JValue* result,
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200739 const std::string& method_name, bool initialize_class,
740 bool abort_if_not_found)
741 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
742 CHECK(className.Get() != nullptr);
743 std::string descriptor(DotToDescriptor(className->ToModifiedUtf8().c_str()));
744 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
745
746 Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader);
747 if (found == nullptr && abort_if_not_found) {
748 if (!self->IsExceptionPending()) {
749 AbortTransaction(self, "%s failed in un-started runtime for class: %s",
Ian Rogers1ff3c982014-08-12 02:30:58 -0700750 method_name.c_str(), PrettyDescriptor(descriptor.c_str()).c_str());
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200751 }
752 return;
753 }
754 if (found != nullptr && initialize_class) {
755 StackHandleScope<1> hs(self);
756 Handle<mirror::Class> h_class(hs.NewHandle(found));
Ian Rogers7b078e82014-09-10 14:44:24 -0700757 if (!class_linker->EnsureInitialized(self, h_class, true, true)) {
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200758 CHECK(self->IsExceptionPending());
759 return;
760 }
761 }
762 result->SetL(found);
763}
764
Andreas Gampef0e128a2015-02-27 20:08:34 -0800765// Common helper for class-loading cutouts in an unstarted runtime. We call Runtime methods that
766// rely on Java code to wrap errors in the correct exception class (i.e., NoClassDefFoundError into
767// ClassNotFoundException), so need to do the same. The only exception is if the exception is
768// actually InternalError. This must not be wrapped, as it signals an initialization abort.
769static void CheckExceptionGenerateClassNotFound(Thread* self)
770 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
771 if (self->IsExceptionPending()) {
772 // If it is not an InternalError, wrap it.
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000773 std::string type(PrettyTypeOf(self->GetException()));
Andreas Gampef0e128a2015-02-27 20:08:34 -0800774 if (type != "java.lang.InternalError") {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000775 self->ThrowNewWrappedException("Ljava/lang/ClassNotFoundException;",
Andreas Gampef0e128a2015-02-27 20:08:34 -0800776 "ClassNotFoundException");
777 }
778 }
779}
780
Ian Rogerse94652f2014-12-02 11:13:19 -0800781static void UnstartedRuntimeInvoke(Thread* self, const DexFile::CodeItem* code_item,
782 ShadowFrame* shadow_frame,
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200783 JValue* result, size_t arg_offset) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200784 // In a runtime that's not started we intercept certain methods to avoid complicated dependency
785 // problems in core libraries.
786 std::string name(PrettyMethod(shadow_frame->GetMethod()));
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200787 if (name == "java.lang.Class java.lang.Class.forName(java.lang.String)") {
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200788 mirror::String* class_name = shadow_frame->GetVRegReference(arg_offset)->AsString();
789 StackHandleScope<1> hs(self);
790 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
791 UnstartedRuntimeFindClass(self, h_class_name, NullHandle<mirror::ClassLoader>(), result, name,
Andreas Gampef0e128a2015-02-27 20:08:34 -0800792 true, false);
793 CheckExceptionGenerateClassNotFound(self);
794 } else if (name == "java.lang.Class java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader)") {
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200795 mirror::String* class_name = shadow_frame->GetVRegReference(arg_offset)->AsString();
Andreas Gampef0e128a2015-02-27 20:08:34 -0800796 bool initialize_class = shadow_frame->GetVReg(arg_offset + 1) != 0;
797 mirror::ClassLoader* class_loader =
798 down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset + 2));
799 StackHandleScope<2> hs(self);
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200800 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
Andreas Gampef0e128a2015-02-27 20:08:34 -0800801 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
802 UnstartedRuntimeFindClass(self, h_class_name, h_class_loader, result, name, initialize_class,
803 false);
804 CheckExceptionGenerateClassNotFound(self);
805 } else if (name == "java.lang.Class java.lang.Class.classForName(java.lang.String, boolean, java.lang.ClassLoader)") {
806 mirror::String* class_name = shadow_frame->GetVRegReference(arg_offset)->AsString();
807 bool initialize_class = shadow_frame->GetVReg(arg_offset + 1) != 0;
808 mirror::ClassLoader* class_loader =
809 down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset + 2));
810 StackHandleScope<2> hs(self);
811 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
812 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
813 UnstartedRuntimeFindClass(self, h_class_name, h_class_loader, result, name, initialize_class,
814 false);
815 CheckExceptionGenerateClassNotFound(self);
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200816 } else if (name == "java.lang.Class java.lang.VMClassLoader.findLoadedClass(java.lang.ClassLoader, java.lang.String)") {
817 mirror::String* class_name = shadow_frame->GetVRegReference(arg_offset + 1)->AsString();
818 mirror::ClassLoader* class_loader =
819 down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset));
820 StackHandleScope<2> hs(self);
821 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
822 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
823 UnstartedRuntimeFindClass(self, h_class_name, h_class_loader, result, name, false, false);
Andreas Gampef0e128a2015-02-27 20:08:34 -0800824 // This might have an error pending. But semantics are to just return null.
825 if (self->IsExceptionPending()) {
826 // If it is an InternalError, keep it. See CheckExceptionGenerateClassNotFound.
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000827 std::string type(PrettyTypeOf(self->GetException()));
Andreas Gampef0e128a2015-02-27 20:08:34 -0800828 if (type != "java.lang.InternalError") {
829 self->ClearException();
830 }
831 }
Ian Rogersc45b8b52014-05-03 01:39:59 -0700832 } else if (name == "java.lang.Class java.lang.Void.lookupType()") {
833 result->SetL(Runtime::Current()->GetClassLinker()->FindPrimitiveClass('V'));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200834 } else if (name == "java.lang.Object java.lang.Class.newInstance()") {
Andreas Gampe729699d2015-03-03 17:48:39 -0800835 StackHandleScope<3> hs(self); // Class, constructor, object.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200836 Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
Andreas Gampef0e128a2015-02-27 20:08:34 -0800837 Handle<Class> h_klass(hs.NewHandle(klass));
838 // There are two situations in which we'll abort this run.
839 // 1) If the class isn't yet initialized and initialization fails.
840 // 2) If we can't find the default constructor. We'll postpone the exception to runtime.
841 // Note that 2) could likely be handled here, but for safety abort the transaction.
842 bool ok = false;
843 if (Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_klass, true, true)) {
Andreas Gampe729699d2015-03-03 17:48:39 -0800844 Handle<ArtMethod> h_cons(hs.NewHandle(h_klass->FindDeclaredDirectMethod("<init>", "()V")));
845 if (h_cons.Get() != nullptr) {
846 Handle<Object> h_obj(hs.NewHandle(klass->AllocObject(self)));
847 CHECK(h_obj.Get() != nullptr); // We don't expect OOM at compile-time.
848 EnterInterpreterFromInvoke(self, h_cons.Get(), h_obj.Get(), nullptr, nullptr);
849 if (!self->IsExceptionPending()) {
850 result->SetL(h_obj.Get());
851 ok = true;
852 }
Andreas Gampef0e128a2015-02-27 20:08:34 -0800853 } else {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000854 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
Andreas Gampef0e128a2015-02-27 20:08:34 -0800855 "Could not find default constructor for '%s'",
856 PrettyClass(h_klass.Get()).c_str());
857 }
858 }
859 if (!ok) {
860 std::string error_msg = StringPrintf("Failed in Class.newInstance for '%s' with %s",
861 PrettyClass(h_klass.Get()).c_str(),
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000862 PrettyTypeOf(self->GetException()).c_str());
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000863 self->ThrowNewWrappedException("Ljava/lang/InternalError;", error_msg.c_str());
Andreas Gampef0e128a2015-02-27 20:08:34 -0800864 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200865 } else if (name == "java.lang.reflect.Field java.lang.Class.getDeclaredField(java.lang.String)") {
866 // Special managed code cut-out to allow field lookup in a un-started runtime that'd fail
867 // going the reflective Dex way.
868 Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800869 String* name2 = shadow_frame->GetVRegReference(arg_offset + 1)->AsString();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200870 ArtField* found = NULL;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200871 ObjectArray<ArtField>* fields = klass->GetIFields();
872 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
873 ArtField* f = fields->Get(i);
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800874 if (name2->Equals(f->GetName())) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200875 found = f;
876 }
877 }
878 if (found == NULL) {
879 fields = klass->GetSFields();
880 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
881 ArtField* f = fields->Get(i);
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800882 if (name2->Equals(f->GetName())) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200883 found = f;
884 }
885 }
886 }
887 CHECK(found != NULL)
Andreas Gampe729699d2015-03-03 17:48:39 -0800888 << "Failed to find field in Class.getDeclaredField in un-started runtime. name="
889 << name2->ToModifiedUtf8() << " class=" << PrettyDescriptor(klass);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200890 // TODO: getDeclaredField calls GetType once the field is found to ensure a
891 // NoClassDefFoundError is thrown if the field's type cannot be resolved.
892 Class* jlr_Field = self->DecodeJObject(WellKnownClasses::java_lang_reflect_Field)->AsClass();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700893 StackHandleScope<1> hs(self);
894 Handle<Object> field(hs.NewHandle(jlr_Field->AllocNonMovableObject(self)));
895 CHECK(field.Get() != NULL);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200896 ArtMethod* c = jlr_Field->FindDeclaredDirectMethod("<init>", "(Ljava/lang/reflect/ArtField;)V");
897 uint32_t args[1];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800898 args[0] = StackReference<mirror::Object>::FromMirrorPtr(found).AsVRegValue();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700899 EnterInterpreterFromInvoke(self, c, field.Get(), args, NULL);
900 result->SetL(field.Get());
Ian Rogersc45b8b52014-05-03 01:39:59 -0700901 } else if (name == "int java.lang.Object.hashCode()") {
902 Object* obj = shadow_frame->GetVRegReference(arg_offset);
903 result->SetI(obj->IdentityHashCode());
904 } else if (name == "java.lang.String java.lang.reflect.ArtMethod.getMethodName(java.lang.reflect.ArtMethod)") {
Ian Rogers6b14d552014-10-28 21:50:58 -0700905 mirror::ArtMethod* method = shadow_frame->GetVRegReference(arg_offset)->AsArtMethod();
906 result->SetL(method->GetNameAsString(self));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200907 } else if (name == "void java.lang.System.arraycopy(java.lang.Object, int, java.lang.Object, int, int)" ||
Andreas Gampee2be6532015-03-06 17:11:47 -0800908 name == "void java.lang.System.arraycopy(char[], int, char[], int, int)" ||
909 name == "void java.lang.System.arraycopy(int[], int, int[], int, int)") {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200910 // Special case array copying without initializing System.
911 Class* ctype = shadow_frame->GetVRegReference(arg_offset)->GetClass()->GetComponentType();
912 jint srcPos = shadow_frame->GetVReg(arg_offset + 1);
913 jint dstPos = shadow_frame->GetVReg(arg_offset + 3);
914 jint length = shadow_frame->GetVReg(arg_offset + 4);
915 if (!ctype->IsPrimitive()) {
916 ObjectArray<Object>* src = shadow_frame->GetVRegReference(arg_offset)->AsObjectArray<Object>();
917 ObjectArray<Object>* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsObjectArray<Object>();
918 for (jint i = 0; i < length; ++i) {
919 dst->Set(dstPos + i, src->Get(srcPos + i));
920 }
921 } else if (ctype->IsPrimitiveChar()) {
922 CharArray* src = shadow_frame->GetVRegReference(arg_offset)->AsCharArray();
923 CharArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsCharArray();
924 for (jint i = 0; i < length; ++i) {
925 dst->Set(dstPos + i, src->Get(srcPos + i));
926 }
927 } else if (ctype->IsPrimitiveInt()) {
928 IntArray* src = shadow_frame->GetVRegReference(arg_offset)->AsIntArray();
929 IntArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsIntArray();
930 for (jint i = 0; i < length; ++i) {
931 dst->Set(dstPos + i, src->Get(srcPos + i));
932 }
933 } else {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000934 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
Ian Rogersc45b8b52014-05-03 01:39:59 -0700935 "Unimplemented System.arraycopy for type '%s'",
936 PrettyDescriptor(ctype).c_str());
937 }
Andreas Gampef0e128a2015-02-27 20:08:34 -0800938 } else if (name == "long java.lang.Double.doubleToRawLongBits(double)") {
939 double in = shadow_frame->GetVRegDouble(arg_offset);
940 result->SetJ(bit_cast<int64_t>(in));
941 } else if (name == "double java.lang.Math.ceil(double)") {
942 double in = shadow_frame->GetVRegDouble(arg_offset);
943 double out;
944 // Special cases:
945 // 1) NaN, infinity, +0, -0 -> out := in. All are guaranteed by cmath.
946 // -1 < in < 0 -> out := -0.
947 if (-1.0 < in && in < 0) {
948 out = -0.0;
949 } else {
950 out = ceil(in);
951 }
952 result->SetD(out);
953 } else if (name == "java.lang.Object java.lang.ThreadLocal.get()") {
Ian Rogersc45b8b52014-05-03 01:39:59 -0700954 std::string caller(PrettyMethod(shadow_frame->GetLink()->GetMethod()));
Andreas Gampef0e128a2015-02-27 20:08:34 -0800955 bool ok = false;
Ian Rogersc45b8b52014-05-03 01:39:59 -0700956 if (caller == "java.lang.String java.lang.IntegralToString.convertInt(java.lang.AbstractStringBuilder, int)") {
957 // Allocate non-threadlocal buffer.
958 result->SetL(mirror::CharArray::Alloc(self, 11));
Andreas Gampef0e128a2015-02-27 20:08:34 -0800959 ok = true;
960 } else if (caller == "java.lang.RealToString java.lang.RealToString.getInstance()") {
961 // Note: RealToString is implemented and used in a different fashion than IntegralToString.
962 // Conversion is done over an actual object of RealToString (the conversion method is an
963 // instance method). This means it is not as clear whether it is correct to return a new
964 // object each time. The caller needs to be inspected by hand to see whether it (incorrectly)
965 // stores the object for later use.
966 // See also b/19548084 for a possible rewrite and bringing it in line with IntegralToString.
967 if (shadow_frame->GetLink()->GetLink() != nullptr) {
968 std::string caller2(PrettyMethod(shadow_frame->GetLink()->GetLink()->GetMethod()));
969 if (caller2 == "java.lang.String java.lang.Double.toString(double)") {
970 // Allocate new object.
Andreas Gampe729699d2015-03-03 17:48:39 -0800971 StackHandleScope<2> hs(self);
972 Handle<Class> h_real_to_string_class(hs.NewHandle(
973 shadow_frame->GetLink()->GetMethod()->GetDeclaringClass()));
974 Handle<Object> h_real_to_string_obj(hs.NewHandle(
975 h_real_to_string_class->AllocObject(self)));
976 if (h_real_to_string_obj.Get() != nullptr) {
Andreas Gampef0e128a2015-02-27 20:08:34 -0800977 mirror::ArtMethod* init_method =
Andreas Gampe729699d2015-03-03 17:48:39 -0800978 h_real_to_string_class->FindDirectMethod("<init>", "()V");
Andreas Gampef0e128a2015-02-27 20:08:34 -0800979 if (init_method == nullptr) {
Andreas Gampe729699d2015-03-03 17:48:39 -0800980 h_real_to_string_class->DumpClass(LOG(FATAL), mirror::Class::kDumpClassFullDetail);
981 } else {
982 JValue invoke_result;
983 EnterInterpreterFromInvoke(self, init_method, h_real_to_string_obj.Get(), nullptr,
984 nullptr);
985 if (!self->IsExceptionPending()) {
986 result->SetL(h_real_to_string_obj.Get());
987 ok = true;
988 }
Andreas Gampef0e128a2015-02-27 20:08:34 -0800989 }
990 }
991
992 if (!ok) {
993 // We'll abort, so clear exception.
994 self->ClearException();
995 }
996 }
997 }
998 }
999
1000 if (!ok) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +00001001 self->ThrowNewException("Ljava/lang/InternalError;", "Unimplemented ThreadLocal.get");
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001002 }
1003 } else {
1004 // Not special, continue with regular interpreter execution.
Ian Rogerse94652f2014-12-02 11:13:19 -08001005 artInterpreterToInterpreterBridge(self, code_item, shadow_frame, result);
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001006 }
1007}
1008
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001009// Explicit DoCall template function declarations.
Sebastien Hertzc6714852013-09-30 16:42:32 +02001010#define EXPLICIT_DO_CALL_TEMPLATE_DECL(_is_range, _do_assignability_check) \
1011 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001012 bool DoCall<_is_range, _do_assignability_check>(ArtMethod* method, Thread* self, \
1013 ShadowFrame& shadow_frame, \
Sebastien Hertzc6714852013-09-30 16:42:32 +02001014 const Instruction* inst, uint16_t inst_data, \
1015 JValue* result)
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001016EXPLICIT_DO_CALL_TEMPLATE_DECL(false, false);
1017EXPLICIT_DO_CALL_TEMPLATE_DECL(false, true);
1018EXPLICIT_DO_CALL_TEMPLATE_DECL(true, false);
1019EXPLICIT_DO_CALL_TEMPLATE_DECL(true, true);
1020#undef EXPLICIT_DO_CALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001021
1022// Explicit DoFilledNewArray template function declarations.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001023#define EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(_is_range_, _check, _transaction_active) \
1024 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
1025 bool DoFilledNewArray<_is_range_, _check, _transaction_active>(const Instruction* inst, \
1026 const ShadowFrame& shadow_frame, \
1027 Thread* self, JValue* result)
1028#define EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(_transaction_active) \
1029 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, false, _transaction_active); \
1030 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, true, _transaction_active); \
1031 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, false, _transaction_active); \
1032 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, true, _transaction_active)
1033EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(false);
1034EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(true);
1035#undef EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001036#undef EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL
1037
1038} // namespace interpreter
1039} // namespace art