blob: 1d402935e6bc1185e63a7a1533e47d28e32da114 [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"
18
19namespace art {
20namespace interpreter {
21
Sebastien Hertzc61124b2013-09-10 11:44:19 +020022static void UnstartedRuntimeInvoke(Thread* self, MethodHelper& mh,
23 const DexFile::CodeItem* code_item, ShadowFrame* shadow_frame,
24 JValue* result, size_t arg_offset)
25 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020026
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020027// Assign register 'src_reg' from shadow_frame to register 'dest_reg' into new_shadow_frame.
28static inline void AssignRegister(ShadowFrame& new_shadow_frame, const ShadowFrame& shadow_frame,
29 size_t dest_reg, size_t src_reg) {
30 // If both register locations contains the same value, the register probably holds a reference.
31 int32_t src_value = shadow_frame.GetVReg(src_reg);
Mathieu Chartier590fee92013-09-13 13:46:47 -070032 mirror::Object* o = shadow_frame.GetVRegReference<false>(src_reg);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020033 if (src_value == reinterpret_cast<int32_t>(o)) {
34 new_shadow_frame.SetVRegReference(dest_reg, o);
35 } else {
36 new_shadow_frame.SetVReg(dest_reg, src_value);
37 }
38}
39
Sebastien Hertzc61124b2013-09-10 11:44:19 +020040template<bool is_range, bool do_assignability_check>
Sebastien Hertz9119c5f2013-12-16 11:31:45 +010041bool DoCall(ArtMethod* method, Thread* self, ShadowFrame& shadow_frame,
Sebastien Hertzc61124b2013-09-10 11:44:19 +020042 const Instruction* inst, uint16_t inst_data, JValue* result) {
43 // Compute method information.
Sebastien Hertz8ece0502013-08-07 11:26:41 +020044 MethodHelper mh(method);
45 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Sebastien Hertzc61124b2013-09-10 11:44:19 +020046 const uint16_t num_ins = (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020047 uint16_t num_regs;
Sebastien Hertz8ece0502013-08-07 11:26:41 +020048 if (LIKELY(code_item != NULL)) {
49 num_regs = code_item->registers_size_;
Sebastien Hertzc61124b2013-09-10 11:44:19 +020050 DCHECK_EQ(num_ins, code_item->ins_size_);
Sebastien Hertz8ece0502013-08-07 11:26:41 +020051 } else {
52 DCHECK(method->IsNative() || method->IsProxyMethod());
Sebastien Hertzc61124b2013-09-10 11:44:19 +020053 num_regs = num_ins;
Sebastien Hertz8ece0502013-08-07 11:26:41 +020054 }
55
Sebastien Hertzc61124b2013-09-10 11:44:19 +020056 // Allocate shadow frame on the stack.
Mathieu Chartiere861ebd2013-10-09 15:01:21 -070057 const char* old_cause = self->StartAssertNoThreadSuspension("DoCall");
Sebastien Hertz8ece0502013-08-07 11:26:41 +020058 void* memory = alloca(ShadowFrame::ComputeSize(num_regs));
59 ShadowFrame* new_shadow_frame(ShadowFrame::Create(num_regs, &shadow_frame, method, 0, memory));
Sebastien Hertzc61124b2013-09-10 11:44:19 +020060
61 // Initialize new shadow frame.
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020062 const size_t first_dest_reg = num_regs - num_ins;
Jeff Haoa3faaf42013-09-03 19:07:00 -070063 if (do_assignability_check) {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020064 // Slow path: we need to do runtime check on reference assignment. We need to load the shorty
65 // to get the exact type of each reference argument.
66 const DexFile::TypeList* params = mh.GetParameterTypeList();
67 const char* shorty = mh.GetShorty();
68
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020069 // TODO: find a cleaner way to separate non-range and range information without duplicating code.
70 uint32_t arg[5]; // only used in invoke-XXX.
71 uint32_t vregC; // only used in invoke-XXX-range.
72 if (is_range) {
73 vregC = inst->VRegC_3rc();
74 } else {
75 inst->GetArgs(arg, inst_data);
76 }
Sebastien Hertz9119c5f2013-12-16 11:31:45 +010077
78 // Handle receiver apart since it's not part of the shorty.
79 size_t dest_reg = first_dest_reg;
80 size_t arg_offset = 0;
81 if (!method->IsStatic()) {
82 size_t receiver_reg = (is_range) ? vregC : arg[0];
83 new_shadow_frame->SetVRegReference(dest_reg, shadow_frame.GetVRegReference(receiver_reg));
84 ++dest_reg;
85 ++arg_offset;
86 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020087 for (size_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) {
88 DCHECK_LT(shorty_pos + 1, mh.GetShortyLength());
89 const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset];
90 switch (shorty[shorty_pos + 1]) {
91 case 'L': {
92 Object* o = shadow_frame.GetVRegReference(src_reg);
93 if (do_assignability_check && o != NULL) {
94 Class* arg_type = mh.GetClassFromTypeIdx(params->GetTypeItem(shorty_pos).type_idx_);
95 if (arg_type == NULL) {
96 CHECK(self->IsExceptionPending());
Mathieu Chartiere861ebd2013-10-09 15:01:21 -070097 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +020098 return false;
99 }
100 if (!o->VerifierInstanceOf(arg_type)) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700101 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200102 // This should never happen.
103 self->ThrowNewExceptionF(self->GetCurrentLocationForThrow(),
104 "Ljava/lang/VirtualMachineError;",
105 "Invoking %s with bad arg %d, type '%s' not instance of '%s'",
106 mh.GetName(), shorty_pos,
107 ClassHelper(o->GetClass()).GetDescriptor(),
108 ClassHelper(arg_type).GetDescriptor());
109 return false;
110 }
Jeff Haoa3faaf42013-09-03 19:07:00 -0700111 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200112 new_shadow_frame->SetVRegReference(dest_reg, o);
113 break;
Jeff Haoa3faaf42013-09-03 19:07:00 -0700114 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200115 case 'J': case 'D': {
116 uint64_t wide_value = (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << 32) |
117 static_cast<uint32_t>(shadow_frame.GetVReg(src_reg));
118 new_shadow_frame->SetVRegLong(dest_reg, wide_value);
119 ++dest_reg;
120 ++arg_offset;
121 break;
122 }
123 default:
124 new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg));
125 break;
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200126 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200127 }
128 } else {
129 // Fast path: no extra checks.
130 if (is_range) {
131 const uint16_t first_src_reg = inst->VRegC_3rc();
132 for (size_t src_reg = first_src_reg, dest_reg = first_dest_reg; dest_reg < num_regs;
133 ++dest_reg, ++src_reg) {
134 AssignRegister(*new_shadow_frame, shadow_frame, dest_reg, src_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200135 }
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200136 } else {
137 DCHECK_LE(num_ins, 5U);
138 uint16_t regList = inst->Fetch16(2);
139 uint16_t count = num_ins;
140 if (count == 5) {
141 AssignRegister(*new_shadow_frame, shadow_frame, first_dest_reg + 4U, (inst_data >> 8) & 0x0f);
142 --count;
143 }
144 for (size_t arg_index = 0; arg_index < count; ++arg_index, regList >>= 4) {
145 AssignRegister(*new_shadow_frame, shadow_frame, first_dest_reg + arg_index, regList & 0x0f);
146 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200147 }
148 }
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700149 self->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200150
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200151 // Do the call now.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200152 if (LIKELY(Runtime::Current()->IsStarted())) {
153 (method->GetEntryPointFromInterpreter())(self, mh, code_item, new_shadow_frame, result);
154 } else {
Sebastien Hertz9ace87b2013-09-27 11:48:09 +0200155 UnstartedRuntimeInvoke(self, mh, code_item, new_shadow_frame, result, first_dest_reg);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200156 }
157 return !self->IsExceptionPending();
158}
159
160template <bool is_range, bool do_access_check>
161bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
162 Thread* self, JValue* result) {
163 DCHECK(inst->Opcode() == Instruction::FILLED_NEW_ARRAY ||
164 inst->Opcode() == Instruction::FILLED_NEW_ARRAY_RANGE);
165 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c();
166 if (!is_range) {
167 // Checks FILLED_NEW_ARRAY's length does not exceed 5 arguments.
168 CHECK_LE(length, 5);
169 }
170 if (UNLIKELY(length < 0)) {
171 ThrowNegativeArraySizeException(length);
172 return false;
173 }
174 uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
175 Class* arrayClass = ResolveVerifyAndClinit(type_idx, shadow_frame.GetMethod(),
176 self, false, do_access_check);
177 if (UNLIKELY(arrayClass == NULL)) {
178 DCHECK(self->IsExceptionPending());
179 return false;
180 }
181 CHECK(arrayClass->IsArrayClass());
182 Class* componentClass = arrayClass->GetComponentType();
183 if (UNLIKELY(componentClass->IsPrimitive() && !componentClass->IsPrimitiveInt())) {
184 if (componentClass->IsPrimitiveLong() || componentClass->IsPrimitiveDouble()) {
185 ThrowRuntimeException("Bad filled array request for type %s",
186 PrettyDescriptor(componentClass).c_str());
187 } else {
188 self->ThrowNewExceptionF(shadow_frame.GetCurrentLocationForThrow(),
189 "Ljava/lang/InternalError;",
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800190 "Found type %s; filled-new-array not implemented for anything but 'int'",
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200191 PrettyDescriptor(componentClass).c_str());
192 }
193 return false;
194 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800195 Object* newArray = Array::Alloc<true>(self, arrayClass, length);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200196 if (UNLIKELY(newArray == NULL)) {
197 DCHECK(self->IsExceptionPending());
198 return false;
199 }
200 if (is_range) {
201 uint32_t vregC = inst->VRegC_3rc();
202 const bool is_primitive_int_component = componentClass->IsPrimitiveInt();
203 for (int32_t i = 0; i < length; ++i) {
204 if (is_primitive_int_component) {
205 newArray->AsIntArray()->Set(i, shadow_frame.GetVReg(vregC + i));
206 } else {
207 newArray->AsObjectArray<Object>()->Set(i, shadow_frame.GetVRegReference(vregC + i));
208 }
209 }
210 } else {
211 uint32_t arg[5];
212 inst->GetArgs(arg);
213 const bool is_primitive_int_component = componentClass->IsPrimitiveInt();
214 for (int32_t i = 0; i < length; ++i) {
215 if (is_primitive_int_component) {
216 newArray->AsIntArray()->Set(i, shadow_frame.GetVReg(arg[i]));
217 } else {
218 newArray->AsObjectArray<Object>()->Set(i, shadow_frame.GetVRegReference(arg[i]));
219 }
220 }
221 }
222
223 result->SetL(newArray);
224 return true;
225}
226
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200227static void UnstartedRuntimeInvoke(Thread* self, MethodHelper& mh,
228 const DexFile::CodeItem* code_item, ShadowFrame* shadow_frame,
229 JValue* result, size_t arg_offset) {
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200230 // In a runtime that's not started we intercept certain methods to avoid complicated dependency
231 // problems in core libraries.
232 std::string name(PrettyMethod(shadow_frame->GetMethod()));
Kenny Rootfa31b3c2013-12-09 13:51:32 -0800233 if (name == "java.lang.Class java.lang.Class.forName(java.lang.String)"
234 || name == "java.lang.Class java.lang.VMClassLoader.loadClass(java.lang.String, boolean)") {
235 // TODO Class#forName should actually call Class::EnsureInitialized always. Support for the
236 // other variants that take more arguments should also be added.
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200237 std::string descriptor(DotToDescriptor(shadow_frame->GetVRegReference(arg_offset)->AsString()->ToModifiedUtf8().c_str()));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700238
239 SirtRef<ClassLoader> class_loader(self, nullptr); // shadow_frame.GetMethod()->GetDeclaringClass()->GetClassLoader();
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200240 Class* found = Runtime::Current()->GetClassLinker()->FindClass(descriptor.c_str(),
241 class_loader);
242 CHECK(found != NULL) << "Class.forName failed in un-started runtime for class: "
243 << PrettyDescriptor(descriptor);
244 result->SetL(found);
Kenny Rootfa31b3c2013-12-09 13:51:32 -0800245 } else if (name == "java.lang.Class java.lang.VMClassLoader.findLoadedClass(java.lang.ClassLoader, java.lang.String)") {
246 SirtRef<ClassLoader> class_loader(self, down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset)));
247 std::string descriptor(DotToDescriptor(shadow_frame->GetVRegReference(arg_offset + 1)->AsString()->ToModifiedUtf8().c_str()));
248
249 Class* found = Runtime::Current()->GetClassLinker()->FindClass(descriptor.c_str(),
250 class_loader);
251 result->SetL(found);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200252 } else if (name == "java.lang.Object java.lang.Class.newInstance()") {
253 Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
254 ArtMethod* c = klass->FindDeclaredDirectMethod("<init>", "()V");
255 CHECK(c != NULL);
256 SirtRef<Object> obj(self, klass->AllocObject(self));
257 CHECK(obj.get() != NULL);
258 EnterInterpreterFromInvoke(self, c, obj.get(), NULL, NULL);
259 result->SetL(obj.get());
260 } else if (name == "java.lang.reflect.Field java.lang.Class.getDeclaredField(java.lang.String)") {
261 // Special managed code cut-out to allow field lookup in a un-started runtime that'd fail
262 // going the reflective Dex way.
263 Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
264 String* name = shadow_frame->GetVRegReference(arg_offset + 1)->AsString();
265 ArtField* found = NULL;
266 FieldHelper fh;
267 ObjectArray<ArtField>* fields = klass->GetIFields();
268 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
269 ArtField* f = fields->Get(i);
270 fh.ChangeField(f);
271 if (name->Equals(fh.GetName())) {
272 found = f;
273 }
274 }
275 if (found == NULL) {
276 fields = klass->GetSFields();
277 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
278 ArtField* f = fields->Get(i);
279 fh.ChangeField(f);
280 if (name->Equals(fh.GetName())) {
281 found = f;
282 }
283 }
284 }
285 CHECK(found != NULL)
286 << "Failed to find field in Class.getDeclaredField in un-started runtime. name="
287 << name->ToModifiedUtf8() << " class=" << PrettyDescriptor(klass);
288 // TODO: getDeclaredField calls GetType once the field is found to ensure a
289 // NoClassDefFoundError is thrown if the field's type cannot be resolved.
290 Class* jlr_Field = self->DecodeJObject(WellKnownClasses::java_lang_reflect_Field)->AsClass();
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800291 SirtRef<Object> field(self, jlr_Field->AllocNonMovableObject(self));
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200292 CHECK(field.get() != NULL);
293 ArtMethod* c = jlr_Field->FindDeclaredDirectMethod("<init>", "(Ljava/lang/reflect/ArtField;)V");
294 uint32_t args[1];
295 args[0] = reinterpret_cast<uint32_t>(found);
296 EnterInterpreterFromInvoke(self, c, field.get(), args, NULL);
297 result->SetL(field.get());
298 } else if (name == "void java.lang.System.arraycopy(java.lang.Object, int, java.lang.Object, int, int)" ||
299 name == "void java.lang.System.arraycopy(char[], int, char[], int, int)") {
300 // Special case array copying without initializing System.
301 Class* ctype = shadow_frame->GetVRegReference(arg_offset)->GetClass()->GetComponentType();
302 jint srcPos = shadow_frame->GetVReg(arg_offset + 1);
303 jint dstPos = shadow_frame->GetVReg(arg_offset + 3);
304 jint length = shadow_frame->GetVReg(arg_offset + 4);
305 if (!ctype->IsPrimitive()) {
306 ObjectArray<Object>* src = shadow_frame->GetVRegReference(arg_offset)->AsObjectArray<Object>();
307 ObjectArray<Object>* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsObjectArray<Object>();
308 for (jint i = 0; i < length; ++i) {
309 dst->Set(dstPos + i, src->Get(srcPos + i));
310 }
311 } else if (ctype->IsPrimitiveChar()) {
312 CharArray* src = shadow_frame->GetVRegReference(arg_offset)->AsCharArray();
313 CharArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsCharArray();
314 for (jint i = 0; i < length; ++i) {
315 dst->Set(dstPos + i, src->Get(srcPos + i));
316 }
317 } else if (ctype->IsPrimitiveInt()) {
318 IntArray* src = shadow_frame->GetVRegReference(arg_offset)->AsIntArray();
319 IntArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsIntArray();
320 for (jint i = 0; i < length; ++i) {
321 dst->Set(dstPos + i, src->Get(srcPos + i));
322 }
323 } else {
324 UNIMPLEMENTED(FATAL) << "System.arraycopy of unexpected type: " << PrettyDescriptor(ctype);
325 }
326 } else {
327 // Not special, continue with regular interpreter execution.
328 artInterpreterToInterpreterBridge(self, mh, code_item, shadow_frame, result);
329 }
330}
331
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200332// Explicit DoCall template function declarations.
Sebastien Hertzc6714852013-09-30 16:42:32 +0200333#define EXPLICIT_DO_CALL_TEMPLATE_DECL(_is_range, _do_assignability_check) \
334 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
Sebastien Hertz9119c5f2013-12-16 11:31:45 +0100335 bool DoCall<_is_range, _do_assignability_check>(ArtMethod* method, Thread* self, \
336 ShadowFrame& shadow_frame, \
Sebastien Hertzc6714852013-09-30 16:42:32 +0200337 const Instruction* inst, uint16_t inst_data, \
338 JValue* result)
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200339EXPLICIT_DO_CALL_TEMPLATE_DECL(false, false);
340EXPLICIT_DO_CALL_TEMPLATE_DECL(false, true);
341EXPLICIT_DO_CALL_TEMPLATE_DECL(true, false);
342EXPLICIT_DO_CALL_TEMPLATE_DECL(true, true);
343#undef EXPLICIT_DO_CALL_TEMPLATE_DECL
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200344
345// Explicit DoFilledNewArray template function declarations.
346#define EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(_is_range_, _check) \
Sebastien Hertzc6714852013-09-30 16:42:32 +0200347 template SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) \
348 bool DoFilledNewArray<_is_range_, _check>(const Instruction* inst, \
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200349 const ShadowFrame& shadow_frame, \
350 Thread* self, JValue* result)
351EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, false);
352EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, true);
353EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, false);
354EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, true);
355#undef EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL
356
357} // namespace interpreter
358} // namespace art