blob: 82d412c50515f0ef8465b721c4adad9f52eb8ccc [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
Ian Rogers54874942014-06-10 16:31:03 -070026void ThrowNullPointerExceptionFromInterpreter(const ShadowFrame& shadow_frame) {
27 ThrowNullPointerExceptionFromDexPC(shadow_frame.GetCurrentLocationForThrow());
28}
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)) {
47 ThrowNullPointerExceptionForFieldAccess(shadow_frame.GetCurrentLocationForThrow(), f, true);
48 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.
129 ThrowNullPointerExceptionFromDexPC(shadow_frame.GetCurrentLocationForThrow());
130 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)) {
241 ThrowNullPointerExceptionForFieldAccess(shadow_frame.GetCurrentLocationForThrow(),
242 f, false);
243 return false;
244 }
245 }
Sebastien Hertz1edbd8e2014-07-16 20:00:11 +0200246 f->GetDeclaringClass()->AssertInitializedOrInitializingInThread(self);
Ian Rogers54874942014-06-10 16:31:03 -0700247 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
248 // Report this field access to instrumentation if needed. Since we only have the offset of
249 // the field from the base of the object, we need to look for it first.
250 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
251 if (UNLIKELY(instrumentation->HasFieldWriteListeners())) {
252 JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA);
253 Object* this_object = f->IsStatic() ? nullptr : obj;
254 instrumentation->FieldWriteEvent(self, this_object, shadow_frame.GetMethod(),
255 shadow_frame.GetDexPC(), f, field_value);
256 }
257 switch (field_type) {
258 case Primitive::kPrimBoolean:
259 f->SetBoolean<transaction_active>(obj, shadow_frame.GetVReg(vregA));
260 break;
261 case Primitive::kPrimByte:
262 f->SetByte<transaction_active>(obj, shadow_frame.GetVReg(vregA));
263 break;
264 case Primitive::kPrimChar:
265 f->SetChar<transaction_active>(obj, shadow_frame.GetVReg(vregA));
266 break;
267 case Primitive::kPrimShort:
268 f->SetShort<transaction_active>(obj, shadow_frame.GetVReg(vregA));
269 break;
270 case Primitive::kPrimInt:
271 f->SetInt<transaction_active>(obj, shadow_frame.GetVReg(vregA));
272 break;
273 case Primitive::kPrimLong:
274 f->SetLong<transaction_active>(obj, shadow_frame.GetVRegLong(vregA));
275 break;
276 case Primitive::kPrimNot: {
277 Object* reg = shadow_frame.GetVRegReference(vregA);
278 if (do_assignability_check && reg != nullptr) {
279 // FieldHelper::GetType can resolve classes, use a handle wrapper which will restore the
280 // object in the destructor.
281 Class* field_class;
282 {
283 StackHandleScope<3> hs(self);
284 HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f));
285 HandleWrapper<mirror::Object> h_reg(hs.NewHandleWrapper(&reg));
286 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&obj));
Ian Rogers08f1f502014-12-02 15:04:37 -0800287 field_class = h_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;
Ian Rogers54874942014-06-10 16:31:03 -0700292 self->ThrowNewExceptionF(self->GetCurrentLocationForThrow(),
293 "Ljava/lang/VirtualMachineError;",
294 "Put '%s' that is not instance of field '%s' in '%s'",
Ian Rogers1ff3c982014-08-12 02:30:58 -0700295 reg->GetClass()->GetDescriptor(&temp1),
296 field_class->GetDescriptor(&temp2),
297 f->GetDeclaringClass()->GetDescriptor(&temp3));
Ian Rogers54874942014-06-10 16:31:03 -0700298 return false;
299 }
300 }
301 f->SetObj<transaction_active>(obj, reg);
302 break;
303 }
304 default:
305 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700306 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700307 }
308 return true;
309}
310
311// Explicitly instantiate all DoFieldPut functions.
312#define EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, _do_check, _transaction_active) \
313 template bool DoFieldPut<_find_type, _field_type, _do_check, _transaction_active>(Thread* self, \
314 const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
315
316#define EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(_find_type, _field_type) \
317 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, false); \
318 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, false); \
319 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, true); \
320 EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, true);
321
322// iput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700323EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimBoolean)
324EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimByte)
325EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimChar)
326EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimShort)
327EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimInt)
328EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimLong)
329EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstanceObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700330
331// sput-XXX
Andreas Gampec8ccf682014-09-29 20:07:43 -0700332EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimBoolean)
333EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimByte)
334EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimChar)
335EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimShort)
336EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimInt)
337EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimLong)
338EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticObjectWrite, Primitive::kPrimNot)
Ian Rogers54874942014-06-10 16:31:03 -0700339
340#undef EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL
341#undef EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL
342
343template<Primitive::Type field_type, bool transaction_active>
344bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) {
345 Object* obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data));
346 if (UNLIKELY(obj == nullptr)) {
347 // We lost the reference to the field index so we cannot get a more
348 // precised exception message.
349 ThrowNullPointerExceptionFromDexPC(shadow_frame.GetCurrentLocationForThrow());
350 return false;
351 }
352 MemberOffset field_offset(inst->VRegC_22c());
353 const uint32_t vregA = inst->VRegA_22c(inst_data);
354 // Report this field modification to instrumentation if needed. Since we only have the offset of
355 // the field from the base of the object, we need to look for it first.
356 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
357 if (UNLIKELY(instrumentation->HasFieldWriteListeners())) {
358 ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(),
359 field_offset.Uint32Value());
360 DCHECK(f != nullptr);
361 DCHECK(!f->IsStatic());
362 JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA);
363 instrumentation->FieldWriteEvent(Thread::Current(), obj, shadow_frame.GetMethod(),
364 shadow_frame.GetDexPC(), f, field_value);
365 }
366 // Note: iput-x-quick instructions are only for non-volatile fields.
367 switch (field_type) {
Fred Shih37f05ef2014-07-16 18:38:08 -0700368 case Primitive::kPrimBoolean:
369 obj->SetFieldBoolean<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
370 break;
371 case Primitive::kPrimByte:
372 obj->SetFieldByte<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
373 break;
374 case Primitive::kPrimChar:
375 obj->SetFieldChar<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
376 break;
377 case Primitive::kPrimShort:
378 obj->SetFieldShort<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
379 break;
Ian Rogers54874942014-06-10 16:31:03 -0700380 case Primitive::kPrimInt:
381 obj->SetField32<transaction_active>(field_offset, shadow_frame.GetVReg(vregA));
382 break;
383 case Primitive::kPrimLong:
384 obj->SetField64<transaction_active>(field_offset, shadow_frame.GetVRegLong(vregA));
385 break;
386 case Primitive::kPrimNot:
387 obj->SetFieldObject<transaction_active>(field_offset, shadow_frame.GetVRegReference(vregA));
388 break;
389 default:
390 LOG(FATAL) << "Unreachable: " << field_type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700391 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700392 }
393 return true;
394}
395
396// Explicitly instantiate all DoIPutQuick functions.
397#define EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, _transaction_active) \
398 template bool DoIPutQuick<_field_type, _transaction_active>(const ShadowFrame& shadow_frame, \
399 const Instruction* inst, \
400 uint16_t inst_data)
401
402#define EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(_field_type) \
403 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, false); \
404 EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, true);
405
Andreas Gampec8ccf682014-09-29 20:07:43 -0700406EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimInt) // iput-quick.
407EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimBoolean) // iput-boolean-quick.
408EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimByte) // iput-byte-quick.
409EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimChar) // iput-char-quick.
410EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimShort) // iput-short-quick.
411EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimLong) // iput-wide-quick.
412EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimNot) // iput-object-quick.
Ian Rogers54874942014-06-10 16:31:03 -0700413#undef EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL
414#undef EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL
415
Sebastien Hertz9f102032014-05-23 08:59:42 +0200416/**
417 * Finds the location where this exception will be caught. We search until we reach either the top
418 * frame or a native frame, in which cases this exception is considered uncaught.
419 */
420class CatchLocationFinder : public StackVisitor {
421 public:
422 explicit CatchLocationFinder(Thread* self, Handle<mirror::Throwable>* exception)
423 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
424 : StackVisitor(self, nullptr), self_(self), handle_scope_(self), exception_(exception),
425 catch_method_(handle_scope_.NewHandle<mirror::ArtMethod>(nullptr)),
426 catch_dex_pc_(DexFile::kDexNoIndex), clear_exception_(false) {
427 }
428
429 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
430 mirror::ArtMethod* method = GetMethod();
431 if (method == nullptr) {
432 return true;
433 }
434 if (method->IsRuntimeMethod()) {
435 // Ignore callee save method.
436 DCHECK(method->IsCalleeSaveMethod());
437 return true;
438 }
439 if (method->IsNative()) {
440 return false; // End stack walk.
441 }
442 DCHECK(!method->IsNative());
443 uint32_t dex_pc = GetDexPc();
444 if (dex_pc != DexFile::kDexNoIndex) {
445 uint32_t found_dex_pc;
446 {
447 StackHandleScope<3> hs(self_);
448 Handle<mirror::Class> exception_class(hs.NewHandle((*exception_)->GetClass()));
449 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
450 found_dex_pc = mirror::ArtMethod::FindCatchBlock(h_method, exception_class, dex_pc,
451 &clear_exception_);
452 }
453 if (found_dex_pc != DexFile::kDexNoIndex) {
454 catch_method_.Assign(method);
455 catch_dex_pc_ = found_dex_pc;
456 return false; // End stack walk.
457 }
458 }
459 return true; // Continue stack walk.
460 }
461
462 ArtMethod* GetCatchMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
463 return catch_method_.Get();
464 }
465
466 uint32_t GetCatchDexPc() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
467 return catch_dex_pc_;
468 }
469
470 bool NeedClearException() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
471 return clear_exception_;
472 }
473
474 private:
475 Thread* const self_;
476 StackHandleScope<1> handle_scope_;
477 Handle<mirror::Throwable>* exception_;
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700478 MutableHandle<mirror::ArtMethod> catch_method_;
Sebastien Hertz9f102032014-05-23 08:59:42 +0200479 uint32_t catch_dex_pc_;
480 bool clear_exception_;
481
482
483 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
484};
485
Ian Rogers54874942014-06-10 16:31:03 -0700486uint32_t FindNextInstructionFollowingException(Thread* self,
487 ShadowFrame& shadow_frame,
488 uint32_t dex_pc,
Ian Rogers54874942014-06-10 16:31:03 -0700489 const instrumentation::Instrumentation* instrumentation) {
490 self->VerifyStack();
491 ThrowLocation throw_location;
Sebastien Hertz9f102032014-05-23 08:59:42 +0200492 StackHandleScope<3> hs(self);
493 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException(&throw_location)));
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000494 if (instrumentation->HasExceptionCaughtListeners()
495 && self->IsExceptionThrownByCurrentMethod(exception.Get())) {
Sebastien Hertz9f102032014-05-23 08:59:42 +0200496 CatchLocationFinder clf(self, &exception);
497 clf.WalkStack(false);
498 instrumentation->ExceptionCaughtEvent(self, throw_location, clf.GetCatchMethod(),
499 clf.GetCatchDexPc(), exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +0200500 }
Ian Rogers54874942014-06-10 16:31:03 -0700501 bool clear_exception = false;
502 uint32_t found_dex_pc;
503 {
Ian Rogers54874942014-06-10 16:31:03 -0700504 Handle<mirror::Class> exception_class(hs.NewHandle(exception->GetClass()));
505 Handle<mirror::ArtMethod> h_method(hs.NewHandle(shadow_frame.GetMethod()));
Ian Rogers54874942014-06-10 16:31:03 -0700506 found_dex_pc = mirror::ArtMethod::FindCatchBlock(h_method, exception_class, dex_pc,
507 &clear_exception);
508 }
509 if (found_dex_pc == DexFile::kDexNoIndex) {
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000510 // Exception is not caught by the current method. We will unwind to the
511 // caller. Notify any instrumentation listener.
Sebastien Hertz9f102032014-05-23 08:59:42 +0200512 instrumentation->MethodUnwindEvent(self, shadow_frame.GetThisObject(),
Ian Rogers54874942014-06-10 16:31:03 -0700513 shadow_frame.GetMethod(), dex_pc);
514 } else {
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +0000515 // Exception is caught in the current method. We will jump to the found_dex_pc.
Ian Rogers54874942014-06-10 16:31:03 -0700516 if (clear_exception) {
517 self->ClearException();
518 }
519 }
520 return found_dex_pc;
521}
522
Ian Rogerse94652f2014-12-02 11:13:19 -0800523void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) {
524 LOG(FATAL) << "Unexpected instruction: "
525 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile());
526 UNREACHABLE();
Ian Rogers54874942014-06-10 16:31:03 -0700527}
528
Ian Rogerse94652f2014-12-02 11:13:19 -0800529static void UnstartedRuntimeInvoke(Thread* self, const DexFile::CodeItem* code_item,
530 ShadowFrame* shadow_frame, JValue* result, size_t arg_offset)
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200531 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200532
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200533// Assign register 'src_reg' from shadow_frame to register 'dest_reg' into new_shadow_frame.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800534static inline void AssignRegister(ShadowFrame* new_shadow_frame, const ShadowFrame& shadow_frame,
535 size_t dest_reg, size_t src_reg)
536 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200537 // If both register locations contains the same value, the register probably holds a reference.
Andreas Gampe7104cbf2014-03-21 11:44:43 -0700538 // Uint required, so that sign extension does not make this wrong on 64b systems
539 uint32_t src_value = shadow_frame.GetVReg(src_reg);
Mathieu Chartier4e305412014-02-19 10:54:44 -0800540 mirror::Object* o = shadow_frame.GetVRegReference<kVerifyNone>(src_reg);
Andreas Gampe7104cbf2014-03-21 11:44:43 -0700541 if (src_value == reinterpret_cast<uintptr_t>(o)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800542 new_shadow_frame->SetVRegReference(dest_reg, o);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200543 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800544 new_shadow_frame->SetVReg(dest_reg, src_value);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200545 }
546}
547
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700548void AbortTransaction(Thread* self, const char* fmt, ...) {
549 CHECK(Runtime::Current()->IsActiveTransaction());
Sebastien Hertz1c80bec2015-02-03 11:58:06 +0100550 // Constructs abort message.
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700551 va_list args;
552 va_start(args, fmt);
Sebastien Hertz1c80bec2015-02-03 11:58:06 +0100553 std::string abort_msg;
554 StringAppendV(&abort_msg, fmt, args);
555 // Throws an exception so we can abort the transaction and rollback every change.
556 Runtime::Current()->AbortTransactionAndThrowInternalError(self, abort_msg);
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -0700557 va_end(args);
558}
559
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200560template<bool is_range, bool do_assignability_check>
Ian Rogerse94652f2014-12-02 11:13:19 -0800561bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200562 const Instruction* inst, uint16_t inst_data, JValue* result) {
563 // Compute method information.
Ian Rogerse94652f2014-12-02 11:13:19 -0800564 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200565 const uint16_t num_ins = (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200566 uint16_t num_regs;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200567 if (LIKELY(code_item != NULL)) {
568 num_regs = code_item->registers_size_;
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200569 DCHECK_EQ(num_ins, code_item->ins_size_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200570 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800571 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200572 num_regs = num_ins;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200573 }
574
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200575 // Allocate shadow frame on the stack.
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700576 const char* old_cause = self->StartAssertNoThreadSuspension("DoCall");
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200577 void* memory = alloca(ShadowFrame::ComputeSize(num_regs));
Ian Rogerse94652f2014-12-02 11:13:19 -0800578 ShadowFrame* new_shadow_frame(ShadowFrame::Create(num_regs, &shadow_frame, called_method, 0,
579 memory));
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200580
581 // Initialize new shadow frame.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200582 const size_t first_dest_reg = num_regs - num_ins;
Jeff Haoa3faaf42013-09-03 19:07:00 -0700583 if (do_assignability_check) {
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -0700584 // Slow path.
585 // We might need to do class loading, which incurs a thread state change to kNative. So
586 // register the shadow frame as under construction and allow suspension again.
587 self->SetShadowFrameUnderConstruction(new_shadow_frame);
588 self->EndAssertNoThreadSuspension(old_cause);
589
590 // We need to do runtime check on reference assignment. We need to load the shorty
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200591 // to get the exact type of each reference argument.
Ian Rogerse94652f2014-12-02 11:13:19 -0800592 const DexFile::TypeList* params = new_shadow_frame->GetMethod()->GetParameterTypeList();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700593 uint32_t shorty_len = 0;
Ian Rogerse94652f2014-12-02 11:13:19 -0800594 const char* shorty = new_shadow_frame->GetMethod()->GetShorty(&shorty_len);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200595
Ian Rogerse94652f2014-12-02 11:13:19 -0800596 // TODO: find a cleaner way to separate non-range and range information without duplicating
597 // code.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200598 uint32_t arg[5]; // only used in invoke-XXX.
599 uint32_t vregC; // only used in invoke-XXX-range.
600 if (is_range) {
601 vregC = inst->VRegC_3rc();
602 } else {
Ian Rogers29a26482014-05-02 15:27:29 -0700603 inst->GetVarArgs(arg, inst_data);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200604 }
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100605
606 // Handle receiver apart since it's not part of the shorty.
607 size_t dest_reg = first_dest_reg;
608 size_t arg_offset = 0;
Ian Rogerse94652f2014-12-02 11:13:19 -0800609 if (!new_shadow_frame->GetMethod()->IsStatic()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700610 size_t receiver_reg = is_range ? vregC : arg[0];
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100611 new_shadow_frame->SetVRegReference(dest_reg, shadow_frame.GetVRegReference(receiver_reg));
612 ++dest_reg;
613 ++arg_offset;
614 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800615 for (uint32_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700616 DCHECK_LT(shorty_pos + 1, shorty_len);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200617 const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset];
618 switch (shorty[shorty_pos + 1]) {
619 case 'L': {
620 Object* o = shadow_frame.GetVRegReference(src_reg);
621 if (do_assignability_check && o != NULL) {
Ian Rogersa0485602014-12-02 15:48:04 -0800622 Class* arg_type =
623 new_shadow_frame->GetMethod()->GetClassFromTypeIndex(
624 params->GetTypeItem(shorty_pos).type_idx_, true);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200625 if (arg_type == NULL) {
626 CHECK(self->IsExceptionPending());
627 return false;
628 }
629 if (!o->VerifierInstanceOf(arg_type)) {
630 // This should never happen.
Ian Rogers1ff3c982014-08-12 02:30:58 -0700631 std::string temp1, temp2;
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200632 self->ThrowNewExceptionF(self->GetCurrentLocationForThrow(),
633 "Ljava/lang/VirtualMachineError;",
634 "Invoking %s with bad arg %d, type '%s' not instance of '%s'",
Ian Rogerse94652f2014-12-02 11:13:19 -0800635 new_shadow_frame->GetMethod()->GetName(), shorty_pos,
Ian Rogers1ff3c982014-08-12 02:30:58 -0700636 o->GetClass()->GetDescriptor(&temp1),
637 arg_type->GetDescriptor(&temp2));
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200638 return false;
639 }
Jeff Haoa3faaf42013-09-03 19:07:00 -0700640 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200641 new_shadow_frame->SetVRegReference(dest_reg, o);
642 break;
Jeff Haoa3faaf42013-09-03 19:07:00 -0700643 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200644 case 'J': case 'D': {
645 uint64_t wide_value = (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << 32) |
646 static_cast<uint32_t>(shadow_frame.GetVReg(src_reg));
647 new_shadow_frame->SetVRegLong(dest_reg, wide_value);
648 ++dest_reg;
649 ++arg_offset;
650 break;
651 }
652 default:
653 new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg));
654 break;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200655 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200656 }
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -0700657 // We're done with the construction.
658 self->ClearShadowFrameUnderConstruction();
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200659 } else {
660 // Fast path: no extra checks.
661 if (is_range) {
662 const uint16_t first_src_reg = inst->VRegC_3rc();
663 for (size_t src_reg = first_src_reg, dest_reg = first_dest_reg; dest_reg < num_regs;
664 ++dest_reg, ++src_reg) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800665 AssignRegister(new_shadow_frame, shadow_frame, dest_reg, src_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200666 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200667 } else {
668 DCHECK_LE(num_ins, 5U);
669 uint16_t regList = inst->Fetch16(2);
670 uint16_t count = num_ins;
671 if (count == 5) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800672 AssignRegister(new_shadow_frame, shadow_frame, first_dest_reg + 4U,
673 (inst_data >> 8) & 0x0f);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200674 --count;
675 }
676 for (size_t arg_index = 0; arg_index < count; ++arg_index, regList >>= 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800677 AssignRegister(new_shadow_frame, shadow_frame, first_dest_reg + arg_index, regList & 0x0f);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200678 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200679 }
Andreas Gampe2a0d4ec2014-06-02 22:05:22 -0700680 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200681 }
682
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200683 // Do the call now.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200684 if (LIKELY(Runtime::Current()->IsStarted())) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800685 if (kIsDebugBuild && new_shadow_frame->GetMethod()->GetEntryPointFromInterpreter() == nullptr) {
686 LOG(FATAL) << "Attempt to invoke non-executable method: "
687 << PrettyMethod(new_shadow_frame->GetMethod());
688 UNREACHABLE();
Ian Rogers1d99e452014-01-02 17:36:41 -0800689 }
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800690 if (kIsDebugBuild && Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly() &&
Ian Rogerse94652f2014-12-02 11:13:19 -0800691 !new_shadow_frame->GetMethod()->IsNative() &&
692 !new_shadow_frame->GetMethod()->IsProxyMethod() &&
693 new_shadow_frame->GetMethod()->GetEntryPointFromInterpreter()
694 == artInterpreterToCompiledCodeBridge) {
695 LOG(FATAL) << "Attempt to call compiled code when -Xint: "
696 << PrettyMethod(new_shadow_frame->GetMethod());
697 UNREACHABLE();
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800698 }
Ian Rogerse94652f2014-12-02 11:13:19 -0800699 (new_shadow_frame->GetMethod()->GetEntryPointFromInterpreter())(self, code_item,
700 new_shadow_frame, result);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200701 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800702 UnstartedRuntimeInvoke(self, code_item, new_shadow_frame, result, first_dest_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200703 }
704 return !self->IsExceptionPending();
705}
706
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100707template <bool is_range, bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200708bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
709 Thread* self, JValue* result) {
710 DCHECK(inst->Opcode() == Instruction::FILLED_NEW_ARRAY ||
711 inst->Opcode() == Instruction::FILLED_NEW_ARRAY_RANGE);
712 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c();
713 if (!is_range) {
714 // Checks FILLED_NEW_ARRAY's length does not exceed 5 arguments.
715 CHECK_LE(length, 5);
716 }
717 if (UNLIKELY(length < 0)) {
718 ThrowNegativeArraySizeException(length);
719 return false;
720 }
721 uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
722 Class* arrayClass = ResolveVerifyAndClinit(type_idx, shadow_frame.GetMethod(),
723 self, false, do_access_check);
724 if (UNLIKELY(arrayClass == NULL)) {
725 DCHECK(self->IsExceptionPending());
726 return false;
727 }
728 CHECK(arrayClass->IsArrayClass());
729 Class* componentClass = arrayClass->GetComponentType();
730 if (UNLIKELY(componentClass->IsPrimitive() && !componentClass->IsPrimitiveInt())) {
731 if (componentClass->IsPrimitiveLong() || componentClass->IsPrimitiveDouble()) {
732 ThrowRuntimeException("Bad filled array request for type %s",
733 PrettyDescriptor(componentClass).c_str());
734 } else {
735 self->ThrowNewExceptionF(shadow_frame.GetCurrentLocationForThrow(),
736 "Ljava/lang/InternalError;",
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800737 "Found type %s; filled-new-array not implemented for anything but 'int'",
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200738 PrettyDescriptor(componentClass).c_str());
739 }
740 return false;
741 }
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700742 Object* newArray = Array::Alloc<true>(self, arrayClass, length,
743 arrayClass->GetComponentSizeShift(),
Ian Rogers6fac4472014-02-25 17:01:10 -0800744 Runtime::Current()->GetHeap()->GetCurrentAllocator());
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200745 if (UNLIKELY(newArray == NULL)) {
746 DCHECK(self->IsExceptionPending());
747 return false;
748 }
Sebastien Hertzabff6432014-01-27 18:01:39 +0100749 uint32_t arg[5]; // only used in filled-new-array.
750 uint32_t vregC; // only used in filled-new-array-range.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200751 if (is_range) {
Sebastien Hertzabff6432014-01-27 18:01:39 +0100752 vregC = inst->VRegC_3rc();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200753 } else {
Ian Rogers29a26482014-05-02 15:27:29 -0700754 inst->GetVarArgs(arg);
Sebastien Hertzabff6432014-01-27 18:01:39 +0100755 }
756 const bool is_primitive_int_component = componentClass->IsPrimitiveInt();
757 for (int32_t i = 0; i < length; ++i) {
758 size_t src_reg = is_range ? vregC + i : arg[i];
759 if (is_primitive_int_component) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100760 newArray->AsIntArray()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVReg(src_reg));
Sebastien Hertzabff6432014-01-27 18:01:39 +0100761 } else {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100762 newArray->AsObjectArray<Object>()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVRegReference(src_reg));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200763 }
764 }
765
766 result->SetL(newArray);
767 return true;
768}
769
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100770// TODO fix thread analysis: should be SHARED_LOCKS_REQUIRED(Locks::mutator_lock_).
771template<typename T>
772static void RecordArrayElementsInTransactionImpl(mirror::PrimitiveArray<T>* array, int32_t count)
773 NO_THREAD_SAFETY_ANALYSIS {
774 Runtime* runtime = Runtime::Current();
775 for (int32_t i = 0; i < count; ++i) {
776 runtime->RecordWriteArray(array, i, array->GetWithoutChecks(i));
777 }
778}
779
780void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count)
781 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
782 DCHECK(Runtime::Current()->IsActiveTransaction());
783 DCHECK(array != nullptr);
784 DCHECK_LE(count, array->GetLength());
785 Primitive::Type primitive_component_type = array->GetClass()->GetComponentType()->GetPrimitiveType();
786 switch (primitive_component_type) {
787 case Primitive::kPrimBoolean:
788 RecordArrayElementsInTransactionImpl(array->AsBooleanArray(), count);
789 break;
790 case Primitive::kPrimByte:
791 RecordArrayElementsInTransactionImpl(array->AsByteArray(), count);
792 break;
793 case Primitive::kPrimChar:
794 RecordArrayElementsInTransactionImpl(array->AsCharArray(), count);
795 break;
796 case Primitive::kPrimShort:
797 RecordArrayElementsInTransactionImpl(array->AsShortArray(), count);
798 break;
799 case Primitive::kPrimInt:
800 case Primitive::kPrimFloat:
801 RecordArrayElementsInTransactionImpl(array->AsIntArray(), count);
802 break;
803 case Primitive::kPrimLong:
804 case Primitive::kPrimDouble:
805 RecordArrayElementsInTransactionImpl(array->AsLongArray(), count);
806 break;
807 default:
808 LOG(FATAL) << "Unsupported primitive type " << primitive_component_type
809 << " in fill-array-data";
810 break;
811 }
812}
813
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200814// Helper function to deal with class loading in an unstarted runtime.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700815static void UnstartedRuntimeFindClass(Thread* self, Handle<mirror::String> className,
816 Handle<mirror::ClassLoader> class_loader, JValue* result,
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200817 const std::string& method_name, bool initialize_class,
818 bool abort_if_not_found)
819 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
820 CHECK(className.Get() != nullptr);
821 std::string descriptor(DotToDescriptor(className->ToModifiedUtf8().c_str()));
822 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
823
824 Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader);
825 if (found == nullptr && abort_if_not_found) {
826 if (!self->IsExceptionPending()) {
827 AbortTransaction(self, "%s failed in un-started runtime for class: %s",
Ian Rogers1ff3c982014-08-12 02:30:58 -0700828 method_name.c_str(), PrettyDescriptor(descriptor.c_str()).c_str());
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200829 }
830 return;
831 }
832 if (found != nullptr && initialize_class) {
833 StackHandleScope<1> hs(self);
834 Handle<mirror::Class> h_class(hs.NewHandle(found));
Ian Rogers7b078e82014-09-10 14:44:24 -0700835 if (!class_linker->EnsureInitialized(self, h_class, true, true)) {
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200836 CHECK(self->IsExceptionPending());
837 return;
838 }
839 }
840 result->SetL(found);
841}
842
Andreas Gampef0e128a2015-02-27 20:08:34 -0800843// Common helper for class-loading cutouts in an unstarted runtime. We call Runtime methods that
844// rely on Java code to wrap errors in the correct exception class (i.e., NoClassDefFoundError into
845// ClassNotFoundException), so need to do the same. The only exception is if the exception is
846// actually InternalError. This must not be wrapped, as it signals an initialization abort.
847static void CheckExceptionGenerateClassNotFound(Thread* self)
848 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
849 if (self->IsExceptionPending()) {
850 // If it is not an InternalError, wrap it.
851 std::string type(PrettyTypeOf(self->GetException(nullptr)));
852 if (type != "java.lang.InternalError") {
853 self->ThrowNewWrappedException(self->GetCurrentLocationForThrow(),
854 "Ljava/lang/ClassNotFoundException;",
855 "ClassNotFoundException");
856 }
857 }
858}
859
Ian Rogerse94652f2014-12-02 11:13:19 -0800860static void UnstartedRuntimeInvoke(Thread* self, const DexFile::CodeItem* code_item,
861 ShadowFrame* shadow_frame,
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200862 JValue* result, size_t arg_offset) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200863 // In a runtime that's not started we intercept certain methods to avoid complicated dependency
864 // problems in core libraries.
865 std::string name(PrettyMethod(shadow_frame->GetMethod()));
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200866 if (name == "java.lang.Class java.lang.Class.forName(java.lang.String)") {
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200867 mirror::String* class_name = shadow_frame->GetVRegReference(arg_offset)->AsString();
868 StackHandleScope<1> hs(self);
869 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
870 UnstartedRuntimeFindClass(self, h_class_name, NullHandle<mirror::ClassLoader>(), result, name,
Andreas Gampef0e128a2015-02-27 20:08:34 -0800871 true, false);
872 CheckExceptionGenerateClassNotFound(self);
873 } else if (name == "java.lang.Class java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader)") {
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200874 mirror::String* class_name = shadow_frame->GetVRegReference(arg_offset)->AsString();
Andreas Gampef0e128a2015-02-27 20:08:34 -0800875 bool initialize_class = shadow_frame->GetVReg(arg_offset + 1) != 0;
876 mirror::ClassLoader* class_loader =
877 down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset + 2));
878 StackHandleScope<2> hs(self);
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200879 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
Andreas Gampef0e128a2015-02-27 20:08:34 -0800880 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
881 UnstartedRuntimeFindClass(self, h_class_name, h_class_loader, result, name, initialize_class,
882 false);
883 CheckExceptionGenerateClassNotFound(self);
884 } else if (name == "java.lang.Class java.lang.Class.classForName(java.lang.String, boolean, java.lang.ClassLoader)") {
885 mirror::String* class_name = shadow_frame->GetVRegReference(arg_offset)->AsString();
886 bool initialize_class = shadow_frame->GetVReg(arg_offset + 1) != 0;
887 mirror::ClassLoader* class_loader =
888 down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset + 2));
889 StackHandleScope<2> hs(self);
890 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
891 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
892 UnstartedRuntimeFindClass(self, h_class_name, h_class_loader, result, name, initialize_class,
893 false);
894 CheckExceptionGenerateClassNotFound(self);
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200895 } else if (name == "java.lang.Class java.lang.VMClassLoader.findLoadedClass(java.lang.ClassLoader, java.lang.String)") {
896 mirror::String* class_name = shadow_frame->GetVRegReference(arg_offset + 1)->AsString();
897 mirror::ClassLoader* class_loader =
898 down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset));
899 StackHandleScope<2> hs(self);
900 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
901 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
902 UnstartedRuntimeFindClass(self, h_class_name, h_class_loader, result, name, false, false);
Andreas Gampef0e128a2015-02-27 20:08:34 -0800903 // This might have an error pending. But semantics are to just return null.
904 if (self->IsExceptionPending()) {
905 // If it is an InternalError, keep it. See CheckExceptionGenerateClassNotFound.
906 std::string type(PrettyTypeOf(self->GetException(nullptr)));
907 if (type != "java.lang.InternalError") {
908 self->ClearException();
909 }
910 }
Ian Rogersc45b8b52014-05-03 01:39:59 -0700911 } else if (name == "java.lang.Class java.lang.Void.lookupType()") {
912 result->SetL(Runtime::Current()->GetClassLinker()->FindPrimitiveClass('V'));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200913 } else if (name == "java.lang.Object java.lang.Class.newInstance()") {
Andreas Gampe729699d2015-03-03 17:48:39 -0800914 StackHandleScope<3> hs(self); // Class, constructor, object.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200915 Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
Andreas Gampef0e128a2015-02-27 20:08:34 -0800916 Handle<Class> h_klass(hs.NewHandle(klass));
917 // There are two situations in which we'll abort this run.
918 // 1) If the class isn't yet initialized and initialization fails.
919 // 2) If we can't find the default constructor. We'll postpone the exception to runtime.
920 // Note that 2) could likely be handled here, but for safety abort the transaction.
921 bool ok = false;
922 if (Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_klass, true, true)) {
Andreas Gampe729699d2015-03-03 17:48:39 -0800923 Handle<ArtMethod> h_cons(hs.NewHandle(h_klass->FindDeclaredDirectMethod("<init>", "()V")));
924 if (h_cons.Get() != nullptr) {
925 Handle<Object> h_obj(hs.NewHandle(klass->AllocObject(self)));
926 CHECK(h_obj.Get() != nullptr); // We don't expect OOM at compile-time.
927 EnterInterpreterFromInvoke(self, h_cons.Get(), h_obj.Get(), nullptr, nullptr);
928 if (!self->IsExceptionPending()) {
929 result->SetL(h_obj.Get());
930 ok = true;
931 }
Andreas Gampef0e128a2015-02-27 20:08:34 -0800932 } else {
933 self->ThrowNewExceptionF(self->GetCurrentLocationForThrow(), "Ljava/lang/InternalError;",
934 "Could not find default constructor for '%s'",
935 PrettyClass(h_klass.Get()).c_str());
936 }
937 }
938 if (!ok) {
939 std::string error_msg = StringPrintf("Failed in Class.newInstance for '%s' with %s",
940 PrettyClass(h_klass.Get()).c_str(),
941 PrettyTypeOf(self->GetException(nullptr)).c_str());
942 self->ThrowNewWrappedException(self->GetCurrentLocationForThrow(),
943 "Ljava/lang/InternalError;",
944 error_msg.c_str());
945 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200946 } else if (name == "java.lang.reflect.Field java.lang.Class.getDeclaredField(java.lang.String)") {
947 // Special managed code cut-out to allow field lookup in a un-started runtime that'd fail
948 // going the reflective Dex way.
949 Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800950 String* name2 = shadow_frame->GetVRegReference(arg_offset + 1)->AsString();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200951 ArtField* found = NULL;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200952 ObjectArray<ArtField>* fields = klass->GetIFields();
953 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
954 ArtField* f = fields->Get(i);
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800955 if (name2->Equals(f->GetName())) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200956 found = f;
957 }
958 }
959 if (found == NULL) {
960 fields = klass->GetSFields();
961 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
962 ArtField* f = fields->Get(i);
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800963 if (name2->Equals(f->GetName())) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200964 found = f;
965 }
966 }
967 }
968 CHECK(found != NULL)
Andreas Gampe729699d2015-03-03 17:48:39 -0800969 << "Failed to find field in Class.getDeclaredField in un-started runtime. name="
970 << name2->ToModifiedUtf8() << " class=" << PrettyDescriptor(klass);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200971 // TODO: getDeclaredField calls GetType once the field is found to ensure a
972 // NoClassDefFoundError is thrown if the field's type cannot be resolved.
973 Class* jlr_Field = self->DecodeJObject(WellKnownClasses::java_lang_reflect_Field)->AsClass();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700974 StackHandleScope<1> hs(self);
975 Handle<Object> field(hs.NewHandle(jlr_Field->AllocNonMovableObject(self)));
976 CHECK(field.Get() != NULL);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200977 ArtMethod* c = jlr_Field->FindDeclaredDirectMethod("<init>", "(Ljava/lang/reflect/ArtField;)V");
978 uint32_t args[1];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800979 args[0] = StackReference<mirror::Object>::FromMirrorPtr(found).AsVRegValue();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700980 EnterInterpreterFromInvoke(self, c, field.Get(), args, NULL);
981 result->SetL(field.Get());
Ian Rogersc45b8b52014-05-03 01:39:59 -0700982 } else if (name == "int java.lang.Object.hashCode()") {
983 Object* obj = shadow_frame->GetVRegReference(arg_offset);
984 result->SetI(obj->IdentityHashCode());
985 } else if (name == "java.lang.String java.lang.reflect.ArtMethod.getMethodName(java.lang.reflect.ArtMethod)") {
Ian Rogers6b14d552014-10-28 21:50:58 -0700986 mirror::ArtMethod* method = shadow_frame->GetVRegReference(arg_offset)->AsArtMethod();
987 result->SetL(method->GetNameAsString(self));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200988 } else if (name == "void java.lang.System.arraycopy(java.lang.Object, int, java.lang.Object, int, int)" ||
Andreas Gampee2be6532015-03-06 17:11:47 -0800989 name == "void java.lang.System.arraycopy(char[], int, char[], int, int)" ||
990 name == "void java.lang.System.arraycopy(int[], int, int[], int, int)") {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200991 // Special case array copying without initializing System.
992 Class* ctype = shadow_frame->GetVRegReference(arg_offset)->GetClass()->GetComponentType();
993 jint srcPos = shadow_frame->GetVReg(arg_offset + 1);
994 jint dstPos = shadow_frame->GetVReg(arg_offset + 3);
995 jint length = shadow_frame->GetVReg(arg_offset + 4);
996 if (!ctype->IsPrimitive()) {
997 ObjectArray<Object>* src = shadow_frame->GetVRegReference(arg_offset)->AsObjectArray<Object>();
998 ObjectArray<Object>* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsObjectArray<Object>();
999 for (jint i = 0; i < length; ++i) {
1000 dst->Set(dstPos + i, src->Get(srcPos + i));
1001 }
1002 } else if (ctype->IsPrimitiveChar()) {
1003 CharArray* src = shadow_frame->GetVRegReference(arg_offset)->AsCharArray();
1004 CharArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsCharArray();
1005 for (jint i = 0; i < length; ++i) {
1006 dst->Set(dstPos + i, src->Get(srcPos + i));
1007 }
1008 } else if (ctype->IsPrimitiveInt()) {
1009 IntArray* src = shadow_frame->GetVRegReference(arg_offset)->AsIntArray();
1010 IntArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsIntArray();
1011 for (jint i = 0; i < length; ++i) {
1012 dst->Set(dstPos + i, src->Get(srcPos + i));
1013 }
1014 } else {
Ian Rogersc45b8b52014-05-03 01:39:59 -07001015 self->ThrowNewExceptionF(self->GetCurrentLocationForThrow(), "Ljava/lang/InternalError;",
1016 "Unimplemented System.arraycopy for type '%s'",
1017 PrettyDescriptor(ctype).c_str());
1018 }
Andreas Gampef0e128a2015-02-27 20:08:34 -08001019 } else if (name == "long java.lang.Double.doubleToRawLongBits(double)") {
1020 double in = shadow_frame->GetVRegDouble(arg_offset);
1021 result->SetJ(bit_cast<int64_t>(in));
1022 } else if (name == "double java.lang.Math.ceil(double)") {
1023 double in = shadow_frame->GetVRegDouble(arg_offset);
1024 double out;
1025 // Special cases:
1026 // 1) NaN, infinity, +0, -0 -> out := in. All are guaranteed by cmath.
1027 // -1 < in < 0 -> out := -0.
1028 if (-1.0 < in && in < 0) {
1029 out = -0.0;
1030 } else {
1031 out = ceil(in);
1032 }
1033 result->SetD(out);
1034 } else if (name == "java.lang.Object java.lang.ThreadLocal.get()") {
Ian Rogersc45b8b52014-05-03 01:39:59 -07001035 std::string caller(PrettyMethod(shadow_frame->GetLink()->GetMethod()));
Andreas Gampef0e128a2015-02-27 20:08:34 -08001036 bool ok = false;
Ian Rogersc45b8b52014-05-03 01:39:59 -07001037 if (caller == "java.lang.String java.lang.IntegralToString.convertInt(java.lang.AbstractStringBuilder, int)") {
1038 // Allocate non-threadlocal buffer.
1039 result->SetL(mirror::CharArray::Alloc(self, 11));
Andreas Gampef0e128a2015-02-27 20:08:34 -08001040 ok = true;
1041 } else if (caller == "java.lang.RealToString java.lang.RealToString.getInstance()") {
1042 // Note: RealToString is implemented and used in a different fashion than IntegralToString.
1043 // Conversion is done over an actual object of RealToString (the conversion method is an
1044 // instance method). This means it is not as clear whether it is correct to return a new
1045 // object each time. The caller needs to be inspected by hand to see whether it (incorrectly)
1046 // stores the object for later use.
1047 // See also b/19548084 for a possible rewrite and bringing it in line with IntegralToString.
1048 if (shadow_frame->GetLink()->GetLink() != nullptr) {
1049 std::string caller2(PrettyMethod(shadow_frame->GetLink()->GetLink()->GetMethod()));
1050 if (caller2 == "java.lang.String java.lang.Double.toString(double)") {
1051 // Allocate new object.
Andreas Gampe729699d2015-03-03 17:48:39 -08001052 StackHandleScope<2> hs(self);
1053 Handle<Class> h_real_to_string_class(hs.NewHandle(
1054 shadow_frame->GetLink()->GetMethod()->GetDeclaringClass()));
1055 Handle<Object> h_real_to_string_obj(hs.NewHandle(
1056 h_real_to_string_class->AllocObject(self)));
1057 if (h_real_to_string_obj.Get() != nullptr) {
Andreas Gampef0e128a2015-02-27 20:08:34 -08001058 mirror::ArtMethod* init_method =
Andreas Gampe729699d2015-03-03 17:48:39 -08001059 h_real_to_string_class->FindDirectMethod("<init>", "()V");
Andreas Gampef0e128a2015-02-27 20:08:34 -08001060 if (init_method == nullptr) {
Andreas Gampe729699d2015-03-03 17:48:39 -08001061 h_real_to_string_class->DumpClass(LOG(FATAL), mirror::Class::kDumpClassFullDetail);
1062 } else {
1063 JValue invoke_result;
1064 EnterInterpreterFromInvoke(self, init_method, h_real_to_string_obj.Get(), nullptr,
1065 nullptr);
1066 if (!self->IsExceptionPending()) {
1067 result->SetL(h_real_to_string_obj.Get());
1068 ok = true;
1069 }
Andreas Gampef0e128a2015-02-27 20:08:34 -08001070 }
1071 }
1072
1073 if (!ok) {
1074 // We'll abort, so clear exception.
1075 self->ClearException();
1076 }
1077 }
1078 }
1079 }
1080
1081 if (!ok) {
Ian Rogersc45b8b52014-05-03 01:39:59 -07001082 self->ThrowNewException(self->GetCurrentLocationForThrow(), "Ljava/lang/InternalError;",
1083 "Unimplemented ThreadLocal.get");
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001084 }
1085 } else {
1086 // Not special, continue with regular interpreter execution.
Ian Rogerse94652f2014-12-02 11:13:19 -08001087 artInterpreterToInterpreterBridge(self, code_item, shadow_frame, result);
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001088 }
1089}
1090
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001091// Explicit DoCall template function declarations.
Sebastien Hertzc6714852013-09-30 16:42:32 +02001092#define EXPLICIT_DO_CALL_TEMPLATE_DECL(_is_range, _do_assignability_check) \
1093 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Sebastien Hertz9119c5f2013-12-16 11:31:45 +01001094 bool DoCall<_is_range, _do_assignability_check>(ArtMethod* method, Thread* self, \
1095 ShadowFrame& shadow_frame, \
Sebastien Hertzc6714852013-09-30 16:42:32 +02001096 const Instruction* inst, uint16_t inst_data, \
1097 JValue* result)
Sebastien Hertzc61124b2013-09-10 11:44:19 +02001098EXPLICIT_DO_CALL_TEMPLATE_DECL(false, false);
1099EXPLICIT_DO_CALL_TEMPLATE_DECL(false, true);
1100EXPLICIT_DO_CALL_TEMPLATE_DECL(true, false);
1101EXPLICIT_DO_CALL_TEMPLATE_DECL(true, true);
1102#undef EXPLICIT_DO_CALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001103
1104// Explicit DoFilledNewArray template function declarations.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001105#define EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(_is_range_, _check, _transaction_active) \
1106 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
1107 bool DoFilledNewArray<_is_range_, _check, _transaction_active>(const Instruction* inst, \
1108 const ShadowFrame& shadow_frame, \
1109 Thread* self, JValue* result)
1110#define EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(_transaction_active) \
1111 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, false, _transaction_active); \
1112 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, true, _transaction_active); \
1113 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, false, _transaction_active); \
1114 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, true, _transaction_active)
1115EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(false);
1116EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(true);
1117#undef EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +02001118#undef EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL
1119
1120} // namespace interpreter
1121} // namespace art