blob: da3e8ea09587adbdde436d96f650eb75562f8916 [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"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010018#include "mirror/array-inl.h"
Sebastien Hertz8ece0502013-08-07 11:26:41 +020019
20namespace art {
21namespace interpreter {
22
Sebastien Hertzc61124b2013-09-10 11:44:19 +020023static void UnstartedRuntimeInvoke(Thread* self, MethodHelper& mh,
24 const DexFile::CodeItem* code_item, ShadowFrame* shadow_frame,
25 JValue* result, size_t arg_offset)
26 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020027
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020028// Assign register 'src_reg' from shadow_frame to register 'dest_reg' into new_shadow_frame.
Ian Rogersef7d42f2014-01-06 12:55:46 -080029static inline void AssignRegister(ShadowFrame* new_shadow_frame, const ShadowFrame& shadow_frame,
30 size_t dest_reg, size_t src_reg)
31 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020032 // If both register locations contains the same value, the register probably holds a reference.
Andreas Gampe7104cbf2014-03-21 11:44:43 -070033 // Uint required, so that sign extension does not make this wrong on 64b systems
34 uint32_t src_value = shadow_frame.GetVReg(src_reg);
Mathieu Chartier4e305412014-02-19 10:54:44 -080035 mirror::Object* o = shadow_frame.GetVRegReference<kVerifyNone>(src_reg);
Andreas Gampe7104cbf2014-03-21 11:44:43 -070036 if (src_value == reinterpret_cast<uintptr_t>(o)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -080037 new_shadow_frame->SetVRegReference(dest_reg, o);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020038 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -080039 new_shadow_frame->SetVReg(dest_reg, src_value);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020040 }
41}
42
Mathieu Chartierb2c7ead2014-04-29 11:13:16 -070043void AbortTransaction(Thread* self, const char* fmt, ...) {
44 CHECK(Runtime::Current()->IsActiveTransaction());
45 // Throw an exception so we can abort the transaction and undo every change.
46 va_list args;
47 va_start(args, fmt);
48 self->ThrowNewExceptionV(self->GetCurrentLocationForThrow(), "Ljava/lang/InternalError;", fmt,
49 args);
50 va_end(args);
51}
52
Sebastien Hertzc61124b2013-09-10 11:44:19 +020053template<bool is_range, bool do_assignability_check>
Sebastien Hertz9119c5f2013-12-16 11:31:45 +010054bool DoCall(ArtMethod* method, Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertzc61124b2013-09-10 11:44:19 +020055 const Instruction* inst, uint16_t inst_data, JValue* result) {
56 // Compute method information.
Sebastien Hertz8ece0502013-08-07 11:26:41 +020057 MethodHelper mh(method);
58 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Sebastien Hertzc61124b2013-09-10 11:44:19 +020059 const uint16_t num_ins = (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020060 uint16_t num_regs;
Sebastien Hertz8ece0502013-08-07 11:26:41 +020061 if (LIKELY(code_item != NULL)) {
62 num_regs = code_item->registers_size_;
Sebastien Hertzc61124b2013-09-10 11:44:19 +020063 DCHECK_EQ(num_ins, code_item->ins_size_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020064 } else {
65 DCHECK(method->IsNative() || method->IsProxyMethod());
Sebastien Hertzc61124b2013-09-10 11:44:19 +020066 num_regs = num_ins;
Sebastien Hertz8ece0502013-08-07 11:26:41 +020067 }
68
Sebastien Hertzc61124b2013-09-10 11:44:19 +020069 // Allocate shadow frame on the stack.
Mathieu Chartiere861ebd2013-10-09 15:01:21 -070070 const char* old_cause = self->StartAssertNoThreadSuspension("DoCall");
Sebastien Hertz8ece0502013-08-07 11:26:41 +020071 void* memory = alloca(ShadowFrame::ComputeSize(num_regs));
72 ShadowFrame* new_shadow_frame(ShadowFrame::Create(num_regs, &shadow_frame, method, 0, memory));
Sebastien Hertzc61124b2013-09-10 11:44:19 +020073
74 // Initialize new shadow frame.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020075 const size_t first_dest_reg = num_regs - num_ins;
Jeff Haoa3faaf42013-09-03 19:07:00 -070076 if (do_assignability_check) {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020077 // Slow path: we need to do runtime check on reference assignment. We need to load the shorty
78 // to get the exact type of each reference argument.
79 const DexFile::TypeList* params = mh.GetParameterTypeList();
80 const char* shorty = mh.GetShorty();
81
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020082 // TODO: find a cleaner way to separate non-range and range information without duplicating code.
83 uint32_t arg[5]; // only used in invoke-XXX.
84 uint32_t vregC; // only used in invoke-XXX-range.
85 if (is_range) {
86 vregC = inst->VRegC_3rc();
87 } else {
Ian Rogers29a26482014-05-02 15:27:29 -070088 inst->GetVarArgs(arg, inst_data);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020089 }
Sebastien Hertz9119c5f2013-12-16 11:31:45 +010090
91 // Handle receiver apart since it's not part of the shorty.
92 size_t dest_reg = first_dest_reg;
93 size_t arg_offset = 0;
94 if (!method->IsStatic()) {
95 size_t receiver_reg = (is_range) ? vregC : arg[0];
96 new_shadow_frame->SetVRegReference(dest_reg, shadow_frame.GetVRegReference(receiver_reg));
97 ++dest_reg;
98 ++arg_offset;
99 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800100 for (uint32_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200101 DCHECK_LT(shorty_pos + 1, mh.GetShortyLength());
102 const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset];
103 switch (shorty[shorty_pos + 1]) {
104 case 'L': {
105 Object* o = shadow_frame.GetVRegReference(src_reg);
106 if (do_assignability_check && o != NULL) {
107 Class* arg_type = mh.GetClassFromTypeIdx(params->GetTypeItem(shorty_pos).type_idx_);
108 if (arg_type == NULL) {
109 CHECK(self->IsExceptionPending());
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700110 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200111 return false;
112 }
113 if (!o->VerifierInstanceOf(arg_type)) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700114 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200115 // This should never happen.
116 self->ThrowNewExceptionF(self->GetCurrentLocationForThrow(),
117 "Ljava/lang/VirtualMachineError;",
118 "Invoking %s with bad arg %d, type '%s' not instance of '%s'",
119 mh.GetName(), shorty_pos,
120 ClassHelper(o->GetClass()).GetDescriptor(),
121 ClassHelper(arg_type).GetDescriptor());
122 return false;
123 }
Jeff Haoa3faaf42013-09-03 19:07:00 -0700124 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200125 new_shadow_frame->SetVRegReference(dest_reg, o);
126 break;
Jeff Haoa3faaf42013-09-03 19:07:00 -0700127 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200128 case 'J': case 'D': {
129 uint64_t wide_value = (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << 32) |
130 static_cast<uint32_t>(shadow_frame.GetVReg(src_reg));
131 new_shadow_frame->SetVRegLong(dest_reg, wide_value);
132 ++dest_reg;
133 ++arg_offset;
134 break;
135 }
136 default:
137 new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg));
138 break;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200139 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200140 }
141 } else {
142 // Fast path: no extra checks.
143 if (is_range) {
144 const uint16_t first_src_reg = inst->VRegC_3rc();
145 for (size_t src_reg = first_src_reg, dest_reg = first_dest_reg; dest_reg < num_regs;
146 ++dest_reg, ++src_reg) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800147 AssignRegister(new_shadow_frame, shadow_frame, dest_reg, src_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200148 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200149 } else {
150 DCHECK_LE(num_ins, 5U);
151 uint16_t regList = inst->Fetch16(2);
152 uint16_t count = num_ins;
153 if (count == 5) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800154 AssignRegister(new_shadow_frame, shadow_frame, first_dest_reg + 4U, (inst_data >> 8) & 0x0f);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200155 --count;
156 }
157 for (size_t arg_index = 0; arg_index < count; ++arg_index, regList >>= 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800158 AssignRegister(new_shadow_frame, shadow_frame, first_dest_reg + arg_index, regList & 0x0f);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200159 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200160 }
161 }
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700162 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200163
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200164 // Do the call now.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200165 if (LIKELY(Runtime::Current()->IsStarted())) {
Ian Rogers1d99e452014-01-02 17:36:41 -0800166 if (kIsDebugBuild && method->GetEntryPointFromInterpreter() == nullptr) {
167 LOG(FATAL) << "Attempt to invoke non-executable method: " << PrettyMethod(method);
168 }
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800169 if (kIsDebugBuild && Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly() &&
170 !method->IsNative() && !method->IsProxyMethod() &&
171 method->GetEntryPointFromInterpreter() == artInterpreterToCompiledCodeBridge) {
172 LOG(FATAL) << "Attempt to call compiled code when -Xint: " << PrettyMethod(method);
173 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200174 (method->GetEntryPointFromInterpreter())(self, mh, code_item, new_shadow_frame, result);
175 } else {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200176 UnstartedRuntimeInvoke(self, mh, code_item, new_shadow_frame, result, first_dest_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200177 }
178 return !self->IsExceptionPending();
179}
180
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100181template <bool is_range, bool do_access_check, bool transaction_active>
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200182bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
183 Thread* self, JValue* result) {
184 DCHECK(inst->Opcode() == Instruction::FILLED_NEW_ARRAY ||
185 inst->Opcode() == Instruction::FILLED_NEW_ARRAY_RANGE);
186 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c();
187 if (!is_range) {
188 // Checks FILLED_NEW_ARRAY's length does not exceed 5 arguments.
189 CHECK_LE(length, 5);
190 }
191 if (UNLIKELY(length < 0)) {
192 ThrowNegativeArraySizeException(length);
193 return false;
194 }
195 uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
196 Class* arrayClass = ResolveVerifyAndClinit(type_idx, shadow_frame.GetMethod(),
197 self, false, do_access_check);
198 if (UNLIKELY(arrayClass == NULL)) {
199 DCHECK(self->IsExceptionPending());
200 return false;
201 }
202 CHECK(arrayClass->IsArrayClass());
203 Class* componentClass = arrayClass->GetComponentType();
204 if (UNLIKELY(componentClass->IsPrimitive() && !componentClass->IsPrimitiveInt())) {
205 if (componentClass->IsPrimitiveLong() || componentClass->IsPrimitiveDouble()) {
206 ThrowRuntimeException("Bad filled array request for type %s",
207 PrettyDescriptor(componentClass).c_str());
208 } else {
209 self->ThrowNewExceptionF(shadow_frame.GetCurrentLocationForThrow(),
210 "Ljava/lang/InternalError;",
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800211 "Found type %s; filled-new-array not implemented for anything but 'int'",
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200212 PrettyDescriptor(componentClass).c_str());
213 }
214 return false;
215 }
Ian Rogers6fac4472014-02-25 17:01:10 -0800216 Object* newArray = Array::Alloc<true>(self, arrayClass, length, arrayClass->GetComponentSize(),
217 Runtime::Current()->GetHeap()->GetCurrentAllocator());
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200218 if (UNLIKELY(newArray == NULL)) {
219 DCHECK(self->IsExceptionPending());
220 return false;
221 }
Sebastien Hertzabff6432014-01-27 18:01:39 +0100222 uint32_t arg[5]; // only used in filled-new-array.
223 uint32_t vregC; // only used in filled-new-array-range.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200224 if (is_range) {
Sebastien Hertzabff6432014-01-27 18:01:39 +0100225 vregC = inst->VRegC_3rc();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200226 } else {
Ian Rogers29a26482014-05-02 15:27:29 -0700227 inst->GetVarArgs(arg);
Sebastien Hertzabff6432014-01-27 18:01:39 +0100228 }
229 const bool is_primitive_int_component = componentClass->IsPrimitiveInt();
230 for (int32_t i = 0; i < length; ++i) {
231 size_t src_reg = is_range ? vregC + i : arg[i];
232 if (is_primitive_int_component) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100233 newArray->AsIntArray()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVReg(src_reg));
Sebastien Hertzabff6432014-01-27 18:01:39 +0100234 } else {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100235 newArray->AsObjectArray<Object>()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVRegReference(src_reg));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200236 }
237 }
238
239 result->SetL(newArray);
240 return true;
241}
242
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100243// TODO fix thread analysis: should be SHARED_LOCKS_REQUIRED(Locks::mutator_lock_).
244template<typename T>
245static void RecordArrayElementsInTransactionImpl(mirror::PrimitiveArray<T>* array, int32_t count)
246 NO_THREAD_SAFETY_ANALYSIS {
247 Runtime* runtime = Runtime::Current();
248 for (int32_t i = 0; i < count; ++i) {
249 runtime->RecordWriteArray(array, i, array->GetWithoutChecks(i));
250 }
251}
252
253void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count)
254 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
255 DCHECK(Runtime::Current()->IsActiveTransaction());
256 DCHECK(array != nullptr);
257 DCHECK_LE(count, array->GetLength());
258 Primitive::Type primitive_component_type = array->GetClass()->GetComponentType()->GetPrimitiveType();
259 switch (primitive_component_type) {
260 case Primitive::kPrimBoolean:
261 RecordArrayElementsInTransactionImpl(array->AsBooleanArray(), count);
262 break;
263 case Primitive::kPrimByte:
264 RecordArrayElementsInTransactionImpl(array->AsByteArray(), count);
265 break;
266 case Primitive::kPrimChar:
267 RecordArrayElementsInTransactionImpl(array->AsCharArray(), count);
268 break;
269 case Primitive::kPrimShort:
270 RecordArrayElementsInTransactionImpl(array->AsShortArray(), count);
271 break;
272 case Primitive::kPrimInt:
273 case Primitive::kPrimFloat:
274 RecordArrayElementsInTransactionImpl(array->AsIntArray(), count);
275 break;
276 case Primitive::kPrimLong:
277 case Primitive::kPrimDouble:
278 RecordArrayElementsInTransactionImpl(array->AsLongArray(), count);
279 break;
280 default:
281 LOG(FATAL) << "Unsupported primitive type " << primitive_component_type
282 << " in fill-array-data";
283 break;
284 }
285}
286
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200287static void UnstartedRuntimeInvoke(Thread* self, MethodHelper& mh,
288 const DexFile::CodeItem* code_item, ShadowFrame* shadow_frame,
289 JValue* result, size_t arg_offset) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200290 // In a runtime that's not started we intercept certain methods to avoid complicated dependency
291 // problems in core libraries.
292 std::string name(PrettyMethod(shadow_frame->GetMethod()));
Kenny Rootfa31b3c2013-12-09 13:51:32 -0800293 if (name == "java.lang.Class java.lang.Class.forName(java.lang.String)"
294 || name == "java.lang.Class java.lang.VMClassLoader.loadClass(java.lang.String, boolean)") {
295 // TODO Class#forName should actually call Class::EnsureInitialized always. Support for the
296 // other variants that take more arguments should also be added.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200297 std::string descriptor(DotToDescriptor(shadow_frame->GetVRegReference(arg_offset)->AsString()->ToModifiedUtf8().c_str()));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700298
299 SirtRef<ClassLoader> class_loader(self, nullptr); // shadow_frame.GetMethod()->GetDeclaringClass()->GetClassLoader();
Ian Rogers98379392014-02-24 16:53:16 -0800300 Class* found = Runtime::Current()->GetClassLinker()->FindClass(self, descriptor.c_str(),
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200301 class_loader);
302 CHECK(found != NULL) << "Class.forName failed in un-started runtime for class: "
303 << PrettyDescriptor(descriptor);
304 result->SetL(found);
Kenny Rootfa31b3c2013-12-09 13:51:32 -0800305 } else if (name == "java.lang.Class java.lang.VMClassLoader.findLoadedClass(java.lang.ClassLoader, java.lang.String)") {
306 SirtRef<ClassLoader> class_loader(self, down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset)));
307 std::string descriptor(DotToDescriptor(shadow_frame->GetVRegReference(arg_offset + 1)->AsString()->ToModifiedUtf8().c_str()));
308
Ian Rogers98379392014-02-24 16:53:16 -0800309 Class* found = Runtime::Current()->GetClassLinker()->FindClass(self, descriptor.c_str(),
Kenny Rootfa31b3c2013-12-09 13:51:32 -0800310 class_loader);
311 result->SetL(found);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200312 } else if (name == "java.lang.Object java.lang.Class.newInstance()") {
313 Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
314 ArtMethod* c = klass->FindDeclaredDirectMethod("<init>", "()V");
315 CHECK(c != NULL);
316 SirtRef<Object> obj(self, klass->AllocObject(self));
317 CHECK(obj.get() != NULL);
318 EnterInterpreterFromInvoke(self, c, obj.get(), NULL, NULL);
319 result->SetL(obj.get());
320 } else if (name == "java.lang.reflect.Field java.lang.Class.getDeclaredField(java.lang.String)") {
321 // Special managed code cut-out to allow field lookup in a un-started runtime that'd fail
322 // going the reflective Dex way.
323 Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
324 String* name = shadow_frame->GetVRegReference(arg_offset + 1)->AsString();
325 ArtField* found = NULL;
326 FieldHelper fh;
327 ObjectArray<ArtField>* fields = klass->GetIFields();
328 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
329 ArtField* f = fields->Get(i);
330 fh.ChangeField(f);
331 if (name->Equals(fh.GetName())) {
332 found = f;
333 }
334 }
335 if (found == NULL) {
336 fields = klass->GetSFields();
337 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
338 ArtField* f = fields->Get(i);
339 fh.ChangeField(f);
340 if (name->Equals(fh.GetName())) {
341 found = f;
342 }
343 }
344 }
345 CHECK(found != NULL)
346 << "Failed to find field in Class.getDeclaredField in un-started runtime. name="
347 << name->ToModifiedUtf8() << " class=" << PrettyDescriptor(klass);
348 // TODO: getDeclaredField calls GetType once the field is found to ensure a
349 // NoClassDefFoundError is thrown if the field's type cannot be resolved.
350 Class* jlr_Field = self->DecodeJObject(WellKnownClasses::java_lang_reflect_Field)->AsClass();
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800351 SirtRef<Object> field(self, jlr_Field->AllocNonMovableObject(self));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200352 CHECK(field.get() != NULL);
353 ArtMethod* c = jlr_Field->FindDeclaredDirectMethod("<init>", "(Ljava/lang/reflect/ArtField;)V");
354 uint32_t args[1];
Ian Rogersef7d42f2014-01-06 12:55:46 -0800355 args[0] = StackReference<mirror::Object>::FromMirrorPtr(found).AsVRegValue();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200356 EnterInterpreterFromInvoke(self, c, field.get(), args, NULL);
357 result->SetL(field.get());
358 } else if (name == "void java.lang.System.arraycopy(java.lang.Object, int, java.lang.Object, int, int)" ||
359 name == "void java.lang.System.arraycopy(char[], int, char[], int, int)") {
360 // Special case array copying without initializing System.
361 Class* ctype = shadow_frame->GetVRegReference(arg_offset)->GetClass()->GetComponentType();
362 jint srcPos = shadow_frame->GetVReg(arg_offset + 1);
363 jint dstPos = shadow_frame->GetVReg(arg_offset + 3);
364 jint length = shadow_frame->GetVReg(arg_offset + 4);
365 if (!ctype->IsPrimitive()) {
366 ObjectArray<Object>* src = shadow_frame->GetVRegReference(arg_offset)->AsObjectArray<Object>();
367 ObjectArray<Object>* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsObjectArray<Object>();
368 for (jint i = 0; i < length; ++i) {
369 dst->Set(dstPos + i, src->Get(srcPos + i));
370 }
371 } else if (ctype->IsPrimitiveChar()) {
372 CharArray* src = shadow_frame->GetVRegReference(arg_offset)->AsCharArray();
373 CharArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsCharArray();
374 for (jint i = 0; i < length; ++i) {
375 dst->Set(dstPos + i, src->Get(srcPos + i));
376 }
377 } else if (ctype->IsPrimitiveInt()) {
378 IntArray* src = shadow_frame->GetVRegReference(arg_offset)->AsIntArray();
379 IntArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsIntArray();
380 for (jint i = 0; i < length; ++i) {
381 dst->Set(dstPos + i, src->Get(srcPos + i));
382 }
383 } else {
384 UNIMPLEMENTED(FATAL) << "System.arraycopy of unexpected type: " << PrettyDescriptor(ctype);
385 }
386 } else {
387 // Not special, continue with regular interpreter execution.
388 artInterpreterToInterpreterBridge(self, mh, code_item, shadow_frame, result);
389 }
390}
391
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200392// Explicit DoCall template function declarations.
Sebastien Hertzc6714852013-09-30 16:42:32 +0200393#define EXPLICIT_DO_CALL_TEMPLATE_DECL(_is_range, _do_assignability_check) \
394 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100395 bool DoCall<_is_range, _do_assignability_check>(ArtMethod* method, Thread* self, \
396 ShadowFrame& shadow_frame, \
Sebastien Hertzc6714852013-09-30 16:42:32 +0200397 const Instruction* inst, uint16_t inst_data, \
398 JValue* result)
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200399EXPLICIT_DO_CALL_TEMPLATE_DECL(false, false);
400EXPLICIT_DO_CALL_TEMPLATE_DECL(false, true);
401EXPLICIT_DO_CALL_TEMPLATE_DECL(true, false);
402EXPLICIT_DO_CALL_TEMPLATE_DECL(true, true);
403#undef EXPLICIT_DO_CALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200404
405// Explicit DoFilledNewArray template function declarations.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100406#define EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(_is_range_, _check, _transaction_active) \
407 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
408 bool DoFilledNewArray<_is_range_, _check, _transaction_active>(const Instruction* inst, \
409 const ShadowFrame& shadow_frame, \
410 Thread* self, JValue* result)
411#define EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(_transaction_active) \
412 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, false, _transaction_active); \
413 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, true, _transaction_active); \
414 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, false, _transaction_active); \
415 EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, true, _transaction_active)
416EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(false);
417EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(true);
418#undef EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200419#undef EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL
420
421} // namespace interpreter
422} // namespace art