blob: 12226265cd25bb32911ede7b4bc51f85bd21f31f [file] [log] [blame]
Shih-wei Liao2d831012011-09-28 22:06:53 -07001/*
2 * Copyright 2011 Google Inc. All Rights Reserved.
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 "runtime_support.h"
18
Ian Rogerscaab8c42011-10-12 12:11:18 -070019#include "dex_cache.h"
Elliott Hughes6c8867d2011-10-03 16:34:05 -070020#include "dex_verifier.h"
Ian Rogerscaab8c42011-10-12 12:11:18 -070021#include "macros.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080022#include "object.h"
23#include "object_utils.h"
Ian Rogersdfcdf1a2011-10-10 17:50:35 -070024#include "reflection.h"
jeffhaoe343b762011-12-05 16:36:44 -080025#include "trace.h"
Ian Rogersdfcdf1a2011-10-10 17:50:35 -070026#include "ScopedLocalRef.h"
Elliott Hughes6c8867d2011-10-03 16:34:05 -070027
Shih-wei Liao2d831012011-09-28 22:06:53 -070028namespace art {
29
Ian Rogers4f0d07c2011-10-06 23:38:47 -070030// Place a special frame at the TOS that will save the callee saves for the given type
31static void FinishCalleeSaveFrameSetup(Thread* self, Method** sp, Runtime::CalleeSaveType type) {
Ian Rogersce9eca62011-10-07 17:11:03 -070032 // Be aware the store below may well stomp on an incoming argument
Ian Rogers4f0d07c2011-10-06 23:38:47 -070033 *sp = Runtime::Current()->GetCalleeSaveMethod(type);
34 self->SetTopOfStack(sp, 0);
35}
36
Shih-wei Liao2d831012011-09-28 22:06:53 -070037// Temporary debugging hook for compiler.
38extern void DebugMe(Method* method, uint32_t info) {
39 LOG(INFO) << "DebugMe";
40 if (method != NULL) {
41 LOG(INFO) << PrettyMethod(method);
42 }
43 LOG(INFO) << "Info: " << info;
44}
45
Brian Carlstrom6fd03fb2011-10-17 16:11:00 -070046extern "C" uint32_t artObjectInitFromCode(Object* o, Thread* self, Method** sp) {
47 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Ian Rogerscaab8c42011-10-12 12:11:18 -070048 Class* c = o->GetClass();
49 if (UNLIKELY(c->IsFinalizable())) {
Ian Rogers5d4bdc22011-11-02 22:15:43 -070050 Heap::AddFinalizerReference(self, o);
Ian Rogerscaab8c42011-10-12 12:11:18 -070051 }
52 /*
53 * NOTE: once debugger/profiler support is added, we'll need to check
54 * here and branch to actual compiled object.<init> to handle any
Ian Rogers0571d352011-11-03 19:51:38 -070055 * breakpoint/logging activities if either is active.
Ian Rogerscaab8c42011-10-12 12:11:18 -070056 */
Brian Carlstrom6fd03fb2011-10-17 16:11:00 -070057 return self->IsExceptionPending() ? -1 : 0;
Ian Rogerscaab8c42011-10-12 12:11:18 -070058}
59
Shih-wei Liao2d831012011-09-28 22:06:53 -070060// Return value helper for jobject return types
61extern Object* DecodeJObjectInThread(Thread* thread, jobject obj) {
Brian Carlstrom6f495f22011-10-10 15:05:03 -070062 if (thread->IsExceptionPending()) {
63 return NULL;
64 }
Shih-wei Liao2d831012011-09-28 22:06:53 -070065 return thread->DecodeJObject(obj);
66}
67
68extern void* FindNativeMethod(Thread* thread) {
69 DCHECK(Thread::Current() == thread);
70
71 Method* method = const_cast<Method*>(thread->GetCurrentMethod());
72 DCHECK(method != NULL);
73
74 // Lookup symbol address for method, on failure we'll return NULL with an
75 // exception set, otherwise we return the address of the method we found.
76 void* native_code = thread->GetJniEnv()->vm->FindCodeForNativeMethod(method);
77 if (native_code == NULL) {
78 DCHECK(thread->IsExceptionPending());
79 return NULL;
80 } else {
81 // Register so that future calls don't come here
82 method->RegisterNative(native_code);
83 return native_code;
84 }
85}
86
87// Called by generated call to throw an exception
88extern "C" void artDeliverExceptionFromCode(Throwable* exception, Thread* thread, Method** sp) {
89 /*
90 * exception may be NULL, in which case this routine should
91 * throw NPE. NOTE: this is a convenience for generated code,
92 * which previously did the null check inline and constructed
93 * and threw a NPE if NULL. This routine responsible for setting
94 * exception_ in thread and delivering the exception.
95 */
Ian Rogers4f0d07c2011-10-06 23:38:47 -070096 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
Shih-wei Liao2d831012011-09-28 22:06:53 -070097 if (exception == NULL) {
98 thread->ThrowNewException("Ljava/lang/NullPointerException;", "throw with null exception");
99 } else {
100 thread->SetException(exception);
101 }
102 thread->DeliverException();
103}
104
105// Deliver an exception that's pending on thread helping set up a callee save frame on the way
106extern "C" void artDeliverPendingExceptionFromCode(Thread* thread, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700107 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700108 thread->DeliverException();
109}
110
111// Called by generated call to throw a NPE exception
112extern "C" void artThrowNullPointerExceptionFromCode(Thread* thread, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700113 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700114 thread->ThrowNewException("Ljava/lang/NullPointerException;", NULL);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700115 thread->DeliverException();
116}
117
118// Called by generated call to throw an arithmetic divide by zero exception
119extern "C" void artThrowDivZeroFromCode(Thread* thread, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700120 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700121 thread->ThrowNewException("Ljava/lang/ArithmeticException;", "divide by zero");
122 thread->DeliverException();
123}
124
125// Called by generated call to throw an arithmetic divide by zero exception
126extern "C" void artThrowArrayBoundsFromCode(int index, int limit, Thread* thread, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700127 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
128 thread->ThrowNewExceptionF("Ljava/lang/ArrayIndexOutOfBoundsException;",
129 "length=%d; index=%d", limit, index);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700130 thread->DeliverException();
131}
132
133// Called by the AbstractMethodError stub (not runtime support)
134extern void ThrowAbstractMethodErrorFromCode(Method* method, Thread* thread, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700135 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
136 thread->ThrowNewExceptionF("Ljava/lang/AbstractMethodError;",
137 "abstract method \"%s\"", PrettyMethod(method).c_str());
Shih-wei Liao2d831012011-09-28 22:06:53 -0700138 thread->DeliverException();
139}
140
141extern "C" void artThrowStackOverflowFromCode(Method* method, Thread* thread, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700142 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
jeffhaoe343b762011-12-05 16:36:44 -0800143 // Remove extra entry pushed onto second stack during method tracing
144 if (Trace::IsMethodTracingActive()) {
145 artTraceMethodUnwindFromCode(thread);
146 }
Shih-wei Liao2d831012011-09-28 22:06:53 -0700147 thread->SetStackEndForStackOverflow(); // Allow space on the stack for constructor to execute
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700148 thread->ThrowNewExceptionF("Ljava/lang/StackOverflowError;",
149 "stack size %zdkb; default stack size: %zdkb",
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700150 thread->GetStackSize() / KB, Runtime::Current()->GetDefaultStackSize() / KB);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700151 thread->ResetDefaultStackEnd(); // Return to default stack size
152 thread->DeliverException();
153}
154
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700155static std::string ClassNameFromIndex(Method* method, uint32_t ref,
Ian Rogersd81871c2011-10-03 13:57:23 -0700156 verifier::VerifyErrorRefType ref_type, bool access) {
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700157 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
158 const DexFile& dex_file = class_linker->FindDexFile(method->GetDeclaringClass()->GetDexCache());
159
160 uint16_t type_idx = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -0700161 if (ref_type == verifier::VERIFY_ERROR_REF_FIELD) {
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700162 const DexFile::FieldId& id = dex_file.GetFieldId(ref);
163 type_idx = id.class_idx_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700164 } else if (ref_type == verifier::VERIFY_ERROR_REF_METHOD) {
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700165 const DexFile::MethodId& id = dex_file.GetMethodId(ref);
166 type_idx = id.class_idx_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700167 } else if (ref_type == verifier::VERIFY_ERROR_REF_CLASS) {
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700168 type_idx = ref;
169 } else {
170 CHECK(false) << static_cast<int>(ref_type);
171 }
172
Ian Rogers0571d352011-11-03 19:51:38 -0700173 std::string class_name(PrettyDescriptor(dex_file.StringByTypeIdx(type_idx)));
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700174 if (!access) {
175 return class_name;
176 }
177
178 std::string result;
179 result += "tried to access class ";
180 result += class_name;
181 result += " from class ";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800182 result += PrettyDescriptor(method->GetDeclaringClass());
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700183 return result;
184}
185
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700186static std::string FieldNameFromIndex(const Method* method, uint32_t ref,
Ian Rogersd81871c2011-10-03 13:57:23 -0700187 verifier::VerifyErrorRefType ref_type, bool access) {
188 CHECK_EQ(static_cast<int>(ref_type), static_cast<int>(verifier::VERIFY_ERROR_REF_FIELD));
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700189
190 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
191 const DexFile& dex_file = class_linker->FindDexFile(method->GetDeclaringClass()->GetDexCache());
192
193 const DexFile::FieldId& id = dex_file.GetFieldId(ref);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700194 std::string class_name(PrettyDescriptor(dex_file.GetFieldDeclaringClassDescriptor(id)));
Ian Rogers0571d352011-11-03 19:51:38 -0700195 const char* field_name = dex_file.StringDataByIdx(id.name_idx_);
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700196 if (!access) {
197 return class_name + "." + field_name;
198 }
199
200 std::string result;
201 result += "tried to access field ";
202 result += class_name + "." + field_name;
203 result += " from class ";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800204 result += PrettyDescriptor(method->GetDeclaringClass());
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700205 return result;
206}
207
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700208static std::string MethodNameFromIndex(const Method* method, uint32_t ref,
Ian Rogersd81871c2011-10-03 13:57:23 -0700209 verifier::VerifyErrorRefType ref_type, bool access) {
210 CHECK_EQ(static_cast<int>(ref_type), static_cast<int>(verifier::VERIFY_ERROR_REF_METHOD));
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700211
212 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
213 const DexFile& dex_file = class_linker->FindDexFile(method->GetDeclaringClass()->GetDexCache());
214
215 const DexFile::MethodId& id = dex_file.GetMethodId(ref);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700216 std::string class_name(PrettyDescriptor(dex_file.GetMethodDeclaringClassDescriptor(id)));
Ian Rogers0571d352011-11-03 19:51:38 -0700217 const char* method_name = dex_file.StringDataByIdx(id.name_idx_);
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700218 if (!access) {
219 return class_name + "." + method_name;
220 }
221
222 std::string result;
223 result += "tried to access method ";
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700224 result += class_name + "." + method_name + ":" +
Ian Rogers0571d352011-11-03 19:51:38 -0700225 dex_file.CreateMethodSignature(id.proto_idx_, NULL);
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700226 result += " from class ";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800227 result += PrettyDescriptor(method->GetDeclaringClass());
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700228 return result;
229}
230
231extern "C" void artThrowVerificationErrorFromCode(int32_t kind, int32_t ref, Thread* self, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700232 FinishCalleeSaveFrameSetup(self, sp, Runtime::kSaveAll);
233 Frame frame = self->GetTopOfStack(); // We need the calling method as context to interpret 'ref'
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700234 frame.Next();
235 Method* method = frame.GetMethod();
236
Ian Rogersd81871c2011-10-03 13:57:23 -0700237 verifier::VerifyErrorRefType ref_type =
238 static_cast<verifier::VerifyErrorRefType>(kind >> verifier::kVerifyErrorRefTypeShift);
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700239
240 const char* exception_class = "Ljava/lang/VerifyError;";
241 std::string msg;
242
Ian Rogersd81871c2011-10-03 13:57:23 -0700243 switch (static_cast<verifier::VerifyError>(kind & ~(0xff << verifier::kVerifyErrorRefTypeShift))) {
244 case verifier::VERIFY_ERROR_NO_CLASS:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700245 exception_class = "Ljava/lang/NoClassDefFoundError;";
246 msg = ClassNameFromIndex(method, ref, ref_type, false);
247 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700248 case verifier::VERIFY_ERROR_NO_FIELD:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700249 exception_class = "Ljava/lang/NoSuchFieldError;";
250 msg = FieldNameFromIndex(method, ref, ref_type, false);
251 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700252 case verifier::VERIFY_ERROR_NO_METHOD:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700253 exception_class = "Ljava/lang/NoSuchMethodError;";
254 msg = MethodNameFromIndex(method, ref, ref_type, false);
255 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700256 case verifier::VERIFY_ERROR_ACCESS_CLASS:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700257 exception_class = "Ljava/lang/IllegalAccessError;";
258 msg = ClassNameFromIndex(method, ref, ref_type, true);
259 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700260 case verifier::VERIFY_ERROR_ACCESS_FIELD:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700261 exception_class = "Ljava/lang/IllegalAccessError;";
262 msg = FieldNameFromIndex(method, ref, ref_type, true);
263 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700264 case verifier::VERIFY_ERROR_ACCESS_METHOD:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700265 exception_class = "Ljava/lang/IllegalAccessError;";
266 msg = MethodNameFromIndex(method, ref, ref_type, true);
267 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700268 case verifier::VERIFY_ERROR_CLASS_CHANGE:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700269 exception_class = "Ljava/lang/IncompatibleClassChangeError;";
270 msg = ClassNameFromIndex(method, ref, ref_type, false);
271 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700272 case verifier::VERIFY_ERROR_INSTANTIATION:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700273 exception_class = "Ljava/lang/InstantiationError;";
274 msg = ClassNameFromIndex(method, ref, ref_type, false);
275 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700276 case verifier::VERIFY_ERROR_GENERIC:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700277 // Generic VerifyError; use default exception, no message.
278 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700279 case verifier::VERIFY_ERROR_NONE:
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700280 CHECK(false);
281 break;
282 }
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700283 self->ThrowNewException(exception_class, msg.c_str());
284 self->DeliverException();
Shih-wei Liao2d831012011-09-28 22:06:53 -0700285}
286
287extern "C" void artThrowInternalErrorFromCode(int32_t errnum, Thread* thread, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700288 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700289 LOG(WARNING) << "TODO: internal error detail message. errnum=" << errnum;
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700290 thread->ThrowNewExceptionF("Ljava/lang/InternalError;", "errnum=%d", errnum);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700291 thread->DeliverException();
292}
293
294extern "C" void artThrowRuntimeExceptionFromCode(int32_t errnum, Thread* thread, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700295 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700296 LOG(WARNING) << "TODO: runtime exception detail message. errnum=" << errnum;
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700297 thread->ThrowNewExceptionF("Ljava/lang/RuntimeException;", "errnum=%d", errnum);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700298 thread->DeliverException();
299}
300
Elliott Hughese1410a22011-10-04 12:10:24 -0700301extern "C" void artThrowNoSuchMethodFromCode(int32_t method_idx, Thread* self, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700302 FinishCalleeSaveFrameSetup(self, sp, Runtime::kSaveAll);
303 Frame frame = self->GetTopOfStack(); // We need the calling method as context for the method_idx
Elliott Hughese1410a22011-10-04 12:10:24 -0700304 frame.Next();
305 Method* method = frame.GetMethod();
Elliott Hughese1410a22011-10-04 12:10:24 -0700306 self->ThrowNewException("Ljava/lang/NoSuchMethodError;",
Ian Rogersd81871c2011-10-03 13:57:23 -0700307 MethodNameFromIndex(method, method_idx, verifier::VERIFY_ERROR_REF_METHOD, false).c_str());
Elliott Hughese1410a22011-10-04 12:10:24 -0700308 self->DeliverException();
Shih-wei Liao2d831012011-09-28 22:06:53 -0700309}
310
311extern "C" void artThrowNegArraySizeFromCode(int32_t size, Thread* thread, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700312 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kSaveAll);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700313 LOG(WARNING) << "UNTESTED artThrowNegArraySizeFromCode";
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700314 thread->ThrowNewExceptionF("Ljava/lang/NegativeArraySizeException;", "%d", size);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700315 thread->DeliverException();
316}
317
Brian Carlstrom6a4be3a2011-10-20 16:34:03 -0700318void* UnresolvedDirectMethodTrampolineFromCode(int32_t method_idx, Method** sp, Thread* thread,
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700319 Runtime::TrampolineType type) {
Ian Rogersad25ac52011-10-04 19:13:33 -0700320 // TODO: this code is specific to ARM
321 // On entry the stack pointed by sp is:
322 // | argN | |
323 // | ... | |
324 // | arg4 | |
325 // | arg3 spill | | Caller's frame
326 // | arg2 spill | |
327 // | arg1 spill | |
328 // | Method* | ---
329 // | LR |
Brian Carlstrom6a4be3a2011-10-20 16:34:03 -0700330 // | ... | callee saves
Ian Rogersad25ac52011-10-04 19:13:33 -0700331 // | R3 | arg3
332 // | R2 | arg2
333 // | R1 | arg1
Brian Carlstrom6a4be3a2011-10-20 16:34:03 -0700334 // | R0 |
335 // | Method* | <- sp
336 uintptr_t* regs = reinterpret_cast<uintptr_t*>(reinterpret_cast<byte*>(sp) + kPointerSize);
337 DCHECK_EQ(48U, Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs)->GetFrameSizeInBytes());
338 Method** caller_sp = reinterpret_cast<Method**>(reinterpret_cast<byte*>(sp) + 48);
339 uintptr_t caller_pc = regs[10];
340 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kRefsAndArgs);
Ian Rogersad25ac52011-10-04 19:13:33 -0700341 // Start new JNI local reference state
342 JNIEnvExt* env = thread->GetJniEnv();
Ian Rogersdfcdf1a2011-10-10 17:50:35 -0700343 ScopedJniEnvLocalRefState env_state(env);
Ian Rogersad25ac52011-10-04 19:13:33 -0700344 // Discover shorty (avoid GCs)
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700345 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Ian Rogersad25ac52011-10-04 19:13:33 -0700346 const char* shorty = linker->MethodShorty(method_idx, *caller_sp);
347 size_t shorty_len = strlen(shorty);
Ian Rogers14b1b242011-10-11 18:54:34 -0700348 size_t args_in_regs = 0;
349 for (size_t i = 1; i < shorty_len; i++) {
350 char c = shorty[i];
351 args_in_regs = args_in_regs + (c == 'J' || c == 'D' ? 2 : 1);
352 if (args_in_regs > 3) {
353 args_in_regs = 3;
354 break;
355 }
356 }
Ian Rogersea2a11d2011-10-11 16:48:51 -0700357 bool is_static;
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700358 if (type == Runtime::kUnknownMethod) {
Ian Rogersea2a11d2011-10-11 16:48:51 -0700359 Method* caller = *caller_sp;
Ian Rogersdf9a7822011-10-11 16:53:22 -0700360 // less two as return address may span into next dex instruction
361 uint32_t dex_pc = caller->ToDexPC(caller_pc - 2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800362 const DexFile::CodeItem* code = MethodHelper(caller).GetCodeItem();
Ian Rogersd81871c2011-10-03 13:57:23 -0700363 CHECK_LT(dex_pc, code->insns_size_in_code_units_);
364 const Instruction* instr = Instruction::At(&code->insns_[dex_pc]);
Ian Rogersea2a11d2011-10-11 16:48:51 -0700365 Instruction::Code instr_code = instr->Opcode();
366 is_static = (instr_code == Instruction::INVOKE_STATIC) ||
367 (instr_code == Instruction::INVOKE_STATIC_RANGE);
368 DCHECK(is_static || (instr_code == Instruction::INVOKE_DIRECT) ||
369 (instr_code == Instruction::INVOKE_DIRECT_RANGE));
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700370 } else {
Ian Rogersea2a11d2011-10-11 16:48:51 -0700371 is_static = type == Runtime::kStaticMethod;
372 }
Ian Rogerscaab8c42011-10-12 12:11:18 -0700373 // Place into local references incoming arguments from the caller's register arguments
Ian Rogers14b1b242011-10-11 18:54:34 -0700374 size_t cur_arg = 1; // skip method_idx in R0, first arg is in R1
Ian Rogersea2a11d2011-10-11 16:48:51 -0700375 if (!is_static) {
376 Object* obj = reinterpret_cast<Object*>(regs[cur_arg]);
377 cur_arg++;
Ian Rogers14b1b242011-10-11 18:54:34 -0700378 if (args_in_regs < 3) {
379 // If we thought we had fewer than 3 arguments in registers, account for the receiver
380 args_in_regs++;
381 }
Ian Rogersea2a11d2011-10-11 16:48:51 -0700382 AddLocalReference<jobject>(env, obj);
383 }
Ian Rogers14b1b242011-10-11 18:54:34 -0700384 size_t shorty_index = 1; // skip return value
385 // Iterate while arguments and arguments in registers (less 1 from cur_arg which is offset to skip
386 // R0)
387 while ((cur_arg - 1) < args_in_regs && shorty_index < shorty_len) {
388 char c = shorty[shorty_index];
389 shorty_index++;
Ian Rogersea2a11d2011-10-11 16:48:51 -0700390 if (c == 'L') {
Ian Rogersad25ac52011-10-04 19:13:33 -0700391 Object* obj = reinterpret_cast<Object*>(regs[cur_arg]);
392 AddLocalReference<jobject>(env, obj);
393 }
Ian Rogersea2a11d2011-10-11 16:48:51 -0700394 cur_arg = cur_arg + (c == 'J' || c == 'D' ? 2 : 1);
395 }
Ian Rogerscaab8c42011-10-12 12:11:18 -0700396 // Place into local references incoming arguments from the caller's stack arguments
Brian Carlstrom6a4be3a2011-10-20 16:34:03 -0700397 cur_arg += 11; // skip LR, Method* and spills for R1 to R3 and callee saves
Ian Rogers14b1b242011-10-11 18:54:34 -0700398 while (shorty_index < shorty_len) {
399 char c = shorty[shorty_index];
400 shorty_index++;
Ian Rogersea2a11d2011-10-11 16:48:51 -0700401 if (c == 'L') {
Ian Rogers14b1b242011-10-11 18:54:34 -0700402 Object* obj = reinterpret_cast<Object*>(regs[cur_arg]);
Ian Rogersea2a11d2011-10-11 16:48:51 -0700403 AddLocalReference<jobject>(env, obj);
Ian Rogersad25ac52011-10-04 19:13:33 -0700404 }
Ian Rogersea2a11d2011-10-11 16:48:51 -0700405 cur_arg = cur_arg + (c == 'J' || c == 'D' ? 2 : 1);
Ian Rogersad25ac52011-10-04 19:13:33 -0700406 }
407 // Resolve method filling in dex cache
408 Method* called = linker->ResolveMethod(method_idx, *caller_sp, true);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700409 if (LIKELY(!thread->IsExceptionPending())) {
Ian Rogers573db4a2011-12-13 15:30:50 -0800410 if (LIKELY(called->IsDirect())) {
411 // Update CodeAndDirectMethod table
412 Method* caller = *caller_sp;
413 DexCache* dex_cache = caller->GetDeclaringClass()->GetDexCache();
414 dex_cache->GetCodeAndDirectMethods()->SetResolvedDirectMethod(method_idx, called);
415 // We got this far, ensure that the declaring class is initialized
416 linker->EnsureInitialized(called->GetDeclaringClass(), true);
417 } else {
418 // Direct method has been made virtual
419 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
420 "Expected direct method but found virtual: %s",
421 PrettyMethod(called, true).c_str());
422 }
Ian Rogersad25ac52011-10-04 19:13:33 -0700423 }
Ian Rogersad25ac52011-10-04 19:13:33 -0700424 void* code;
Ian Rogerscaab8c42011-10-12 12:11:18 -0700425 if (UNLIKELY(thread->IsExceptionPending())) {
Brian Carlstromb2062cf2011-11-03 01:24:44 -0700426 // Something went wrong in ResolveMethod or EnsureInitialized,
427 // go into deliver exception with the pending exception in r0
Ian Rogersad25ac52011-10-04 19:13:33 -0700428 code = reinterpret_cast<void*>(art_deliver_exception_from_code);
Brian Carlstromb2062cf2011-11-03 01:24:44 -0700429 regs[0] = reinterpret_cast<uintptr_t>(thread->GetException());
Ian Rogersad25ac52011-10-04 19:13:33 -0700430 thread->ClearException();
431 } else {
432 // Expect class to at least be initializing
433 CHECK(called->GetDeclaringClass()->IsInitializing());
434 // Set up entry into main method
Brian Carlstromb2062cf2011-11-03 01:24:44 -0700435 regs[0] = reinterpret_cast<uintptr_t>(called);
Ian Rogersad25ac52011-10-04 19:13:33 -0700436 code = const_cast<void*>(called->GetCode());
437 }
438 return code;
439}
440
Ian Rogerscaab8c42011-10-12 12:11:18 -0700441// Fast path field resolution that can't throw exceptions
442static Field* FindFieldFast(uint32_t field_idx, const Method* referrer) {
443 Field* resolved_field = referrer->GetDexCacheResolvedFields()->Get(field_idx);
444 if (UNLIKELY(resolved_field == NULL)) {
445 return NULL;
446 }
447 Class* fields_class = resolved_field->GetDeclaringClass();
448 // Check class is initilaized or initializing
449 if (UNLIKELY(!fields_class->IsInitializing())) {
450 return NULL;
451 }
452 return resolved_field;
453}
454
455// Slow path field resolution and declaring class initialization
Ian Rogersce9eca62011-10-07 17:11:03 -0700456Field* FindFieldFromCode(uint32_t field_idx, const Method* referrer, bool is_static) {
457 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogerscaab8c42011-10-12 12:11:18 -0700458 Field* resolved_field = class_linker->ResolveField(field_idx, referrer, is_static);
459 if (LIKELY(resolved_field != NULL)) {
460 Class* fields_class = resolved_field->GetDeclaringClass();
Ian Rogersce9eca62011-10-07 17:11:03 -0700461 // If the class is already initializing, we must be inside <clinit>, or
462 // we'd still be waiting for the lock.
Ian Rogerscaab8c42011-10-12 12:11:18 -0700463 if (fields_class->IsInitializing()) {
464 return resolved_field;
465 }
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700466 if (Runtime::Current()->GetClassLinker()->EnsureInitialized(fields_class, true)) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700467 return resolved_field;
Ian Rogersce9eca62011-10-07 17:11:03 -0700468 }
469 }
470 DCHECK(Thread::Current()->IsExceptionPending()); // Throw exception and unwind
471 return NULL;
472}
473
474extern "C" Field* artFindInstanceFieldFromCode(uint32_t field_idx, const Method* referrer,
475 Thread* self, Method** sp) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700476 Field* resolved_field = FindFieldFast(field_idx, referrer);
477 if (UNLIKELY(resolved_field == NULL)) {
478 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
479 resolved_field = FindFieldFromCode(field_idx, referrer, false);
480 }
481 return resolved_field;
Ian Rogersce9eca62011-10-07 17:11:03 -0700482}
483
484extern "C" uint32_t artGet32StaticFromCode(uint32_t field_idx, const Method* referrer,
485 Thread* self, Method** sp) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700486 Field* field = FindFieldFast(field_idx, referrer);
487 if (LIKELY(field != NULL)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800488 FieldHelper fh(field);
489 if (LIKELY(fh.IsPrimitiveType() && fh.FieldSize() == sizeof(int32_t))) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700490 return field->Get32(NULL);
491 }
492 }
Ian Rogersce9eca62011-10-07 17:11:03 -0700493 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700494 field = FindFieldFromCode(field_idx, referrer, true);
Ian Rogersce9eca62011-10-07 17:11:03 -0700495 if (field != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800496 FieldHelper fh(field);
497 if (!fh.IsPrimitiveType() || fh.FieldSize() != sizeof(int32_t)) {
Ian Rogersce9eca62011-10-07 17:11:03 -0700498 self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
499 "Attempted read of 32-bit primitive on field '%s'",
500 PrettyField(field, true).c_str());
501 } else {
502 return field->Get32(NULL);
503 }
504 }
505 return 0; // Will throw exception by checking with Thread::Current
506}
507
508extern "C" uint64_t artGet64StaticFromCode(uint32_t field_idx, const Method* referrer,
509 Thread* self, Method** sp) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700510 Field* field = FindFieldFast(field_idx, referrer);
511 if (LIKELY(field != NULL)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800512 FieldHelper fh(field);
513 if (LIKELY(fh.IsPrimitiveType() && fh.FieldSize() == sizeof(int64_t))) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700514 return field->Get64(NULL);
515 }
516 }
Ian Rogersce9eca62011-10-07 17:11:03 -0700517 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700518 field = FindFieldFromCode(field_idx, referrer, true);
Ian Rogersce9eca62011-10-07 17:11:03 -0700519 if (field != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800520 FieldHelper fh(field);
521 if (!fh.IsPrimitiveType() || fh.FieldSize() != sizeof(int64_t)) {
Ian Rogersce9eca62011-10-07 17:11:03 -0700522 self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
523 "Attempted read of 64-bit primitive on field '%s'",
524 PrettyField(field, true).c_str());
525 } else {
526 return field->Get64(NULL);
527 }
528 }
529 return 0; // Will throw exception by checking with Thread::Current
530}
531
532extern "C" Object* artGetObjStaticFromCode(uint32_t field_idx, const Method* referrer,
533 Thread* self, Method** sp) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700534 Field* field = FindFieldFast(field_idx, referrer);
535 if (LIKELY(field != NULL)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800536 FieldHelper fh(field);
537 if (LIKELY(!fh.IsPrimitiveType())) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700538 return field->GetObj(NULL);
539 }
540 }
Ian Rogersce9eca62011-10-07 17:11:03 -0700541 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700542 field = FindFieldFromCode(field_idx, referrer, true);
Ian Rogersce9eca62011-10-07 17:11:03 -0700543 if (field != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800544 FieldHelper fh(field);
545 if (fh.IsPrimitiveType()) {
Ian Rogersce9eca62011-10-07 17:11:03 -0700546 self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
547 "Attempted read of reference on primitive field '%s'",
548 PrettyField(field, true).c_str());
549 } else {
550 return field->GetObj(NULL);
551 }
552 }
553 return NULL; // Will throw exception by checking with Thread::Current
554}
555
556extern "C" int artSet32StaticFromCode(uint32_t field_idx, const Method* referrer,
557 uint32_t new_value, Thread* self, Method** sp) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700558 Field* field = FindFieldFast(field_idx, referrer);
559 if (LIKELY(field != NULL)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800560 FieldHelper fh(field);
561 if (LIKELY(fh.IsPrimitiveType() && fh.FieldSize() == sizeof(int32_t))) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700562 field->Set32(NULL, new_value);
563 return 0; // success
564 }
565 }
Ian Rogersce9eca62011-10-07 17:11:03 -0700566 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700567 field = FindFieldFromCode(field_idx, referrer, true);
Ian Rogersce9eca62011-10-07 17:11:03 -0700568 if (field != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800569 FieldHelper fh(field);
570 if (!fh.IsPrimitiveType() || fh.FieldSize() != sizeof(int32_t)) {
Ian Rogersce9eca62011-10-07 17:11:03 -0700571 self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
572 "Attempted write of 32-bit primitive to field '%s'",
573 PrettyField(field, true).c_str());
574 } else {
575 field->Set32(NULL, new_value);
576 return 0; // success
577 }
578 }
579 return -1; // failure
580}
581
582extern "C" int artSet64StaticFromCode(uint32_t field_idx, const Method* referrer,
583 uint64_t new_value, Thread* self, Method** sp) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700584 Field* field = FindFieldFast(field_idx, referrer);
585 if (LIKELY(field != NULL)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800586 FieldHelper fh(field);
587 if (LIKELY(fh.IsPrimitiveType() && fh.FieldSize() == sizeof(int64_t))) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700588 field->Set64(NULL, new_value);
589 return 0; // success
590 }
591 }
592 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
593 field = FindFieldFromCode(field_idx, referrer, true);
594 if (LIKELY(field != NULL)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800595 FieldHelper fh(field);
596 if (UNLIKELY(!fh.IsPrimitiveType() || fh.FieldSize() != sizeof(int64_t))) {
Ian Rogersce9eca62011-10-07 17:11:03 -0700597 self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
598 "Attempted write of 64-bit primitive to field '%s'",
599 PrettyField(field, true).c_str());
600 } else {
601 field->Set64(NULL, new_value);
602 return 0; // success
603 }
604 }
605 return -1; // failure
606}
607
608extern "C" int artSetObjStaticFromCode(uint32_t field_idx, const Method* referrer,
609 Object* new_value, Thread* self, Method** sp) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700610 Field* field = FindFieldFast(field_idx, referrer);
611 if (LIKELY(field != NULL)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800612 if (LIKELY(!FieldHelper(field).IsPrimitiveType())) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700613 field->SetObj(NULL, new_value);
614 return 0; // success
615 }
616 }
Ian Rogersce9eca62011-10-07 17:11:03 -0700617 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700618 field = FindFieldFromCode(field_idx, referrer, true);
Ian Rogersce9eca62011-10-07 17:11:03 -0700619 if (field != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800620 if (FieldHelper(field).IsPrimitiveType()) {
Ian Rogersce9eca62011-10-07 17:11:03 -0700621 self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
622 "Attempted write of reference to primitive field '%s'",
623 PrettyField(field, true).c_str());
624 } else {
625 field->SetObj(NULL, new_value);
626 return 0; // success
627 }
628 }
629 return -1; // failure
630}
631
Shih-wei Liao2d831012011-09-28 22:06:53 -0700632// Given the context of a calling Method, use its DexCache to resolve a type to a Class. If it
633// cannot be resolved, throw an error. If it can, use it to create an instance.
Ian Rogerscaab8c42011-10-12 12:11:18 -0700634extern "C" Object* artAllocObjectFromCode(uint32_t type_idx, Method* method,
635 Thread* self, Method** sp) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700636 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700637 Class* klass = method->GetDexCacheResolvedTypes()->Get(type_idx);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700638 Runtime* runtime = Runtime::Current();
Ian Rogerscaab8c42011-10-12 12:11:18 -0700639 if (UNLIKELY(klass == NULL)) {
buzbee33a129c2011-10-06 16:53:20 -0700640 klass = runtime->GetClassLinker()->ResolveType(type_idx, method);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700641 if (klass == NULL) {
buzbee33a129c2011-10-06 16:53:20 -0700642 DCHECK(self->IsExceptionPending());
Shih-wei Liao2d831012011-09-28 22:06:53 -0700643 return NULL; // Failure
644 }
645 }
buzbee33a129c2011-10-06 16:53:20 -0700646 if (!runtime->GetClassLinker()->EnsureInitialized(klass, true)) {
647 DCHECK(self->IsExceptionPending());
Shih-wei Liao2d831012011-09-28 22:06:53 -0700648 return NULL; // Failure
649 }
650 return klass->AllocObject();
651}
652
Ian Rogers28ad40d2011-10-27 15:19:26 -0700653extern "C" Object* artAllocObjectFromCodeWithAccessCheck(uint32_t type_idx, Method* method,
654 Thread* self, Method** sp) {
655 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
656 Class* klass = method->GetDexCacheResolvedTypes()->Get(type_idx);
657 Runtime* runtime = Runtime::Current();
658 if (UNLIKELY(klass == NULL)) {
659 klass = runtime->GetClassLinker()->ResolveType(type_idx, method);
660 if (klass == NULL) {
661 DCHECK(self->IsExceptionPending());
662 return NULL; // Failure
663 }
664 }
665 Class* referrer = method->GetDeclaringClass();
666 if (UNLIKELY(!referrer->CanAccess(klass))) {
667 self->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;", "illegal class access: '%s' -> '%s'",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800668 PrettyDescriptor(referrer).c_str(),
669 PrettyDescriptor(klass).c_str());
Ian Rogers28ad40d2011-10-27 15:19:26 -0700670 return NULL; // Failure
671 }
672 if (!runtime->GetClassLinker()->EnsureInitialized(klass, true)) {
673 DCHECK(self->IsExceptionPending());
674 return NULL; // Failure
675 }
676 return klass->AllocObject();
buzbeecc4540e2011-10-27 13:06:03 -0700677}
678
Ian Rogersce9eca62011-10-07 17:11:03 -0700679Array* CheckAndAllocArrayFromCode(uint32_t type_idx, Method* method, int32_t component_count,
680 Thread* self) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700681 if (UNLIKELY(component_count < 0)) {
Ian Rogersce9eca62011-10-07 17:11:03 -0700682 self->ThrowNewExceptionF("Ljava/lang/NegativeArraySizeException;", "%d", component_count);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700683 return NULL; // Failure
684 }
685 Class* klass = method->GetDexCacheResolvedTypes()->Get(type_idx);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700686 if (UNLIKELY(klass == NULL)) { // Not in dex cache so try to resolve
Shih-wei Liao2d831012011-09-28 22:06:53 -0700687 klass = Runtime::Current()->GetClassLinker()->ResolveType(type_idx, method);
688 if (klass == NULL) { // Error
689 DCHECK(Thread::Current()->IsExceptionPending());
690 return NULL; // Failure
691 }
692 }
Ian Rogerscaab8c42011-10-12 12:11:18 -0700693 if (UNLIKELY(klass->IsPrimitive() && !klass->IsPrimitiveInt())) {
Shih-wei Liao2d831012011-09-28 22:06:53 -0700694 if (klass->IsPrimitiveLong() || klass->IsPrimitiveDouble()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700695 Thread::Current()->ThrowNewExceptionF("Ljava/lang/RuntimeException;",
Shih-wei Liao2d831012011-09-28 22:06:53 -0700696 "Bad filled array request for type %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800697 PrettyDescriptor(klass).c_str());
Shih-wei Liao2d831012011-09-28 22:06:53 -0700698 } else {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700699 Thread::Current()->ThrowNewExceptionF("Ljava/lang/InternalError;",
Shih-wei Liao2d831012011-09-28 22:06:53 -0700700 "Found type %s; filled-new-array not implemented for anything but \'int\'",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800701 PrettyDescriptor(klass).c_str());
Shih-wei Liao2d831012011-09-28 22:06:53 -0700702 }
703 return NULL; // Failure
704 } else {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700705 DCHECK(klass->IsArrayClass()) << PrettyClass(klass);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700706 return Array::Alloc(klass, component_count);
707 }
708}
709
Ian Rogersce9eca62011-10-07 17:11:03 -0700710// Helper function to alloc array for OP_FILLED_NEW_ARRAY
711extern "C" Array* artCheckAndAllocArrayFromCode(uint32_t type_idx, Method* method,
712 int32_t component_count, Thread* self, Method** sp) {
713 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
714 return CheckAndAllocArrayFromCode(type_idx, method, component_count, self);
715}
716
Shih-wei Liao2d831012011-09-28 22:06:53 -0700717// Given the context of a calling Method, use its DexCache to resolve a type to an array Class. If
718// it cannot be resolved, throw an error. If it can, use it to create an array.
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700719extern "C" Array* artAllocArrayFromCode(uint32_t type_idx, Method* method, int32_t component_count,
720 Thread* self, Method** sp) {
721 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700722 if (UNLIKELY(component_count < 0)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700723 Thread::Current()->ThrowNewExceptionF("Ljava/lang/NegativeArraySizeException;", "%d",
Shih-wei Liao2d831012011-09-28 22:06:53 -0700724 component_count);
725 return NULL; // Failure
726 }
727 Class* klass = method->GetDexCacheResolvedTypes()->Get(type_idx);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700728 if (UNLIKELY(klass == NULL)) { // Not in dex cache so try to resolve
Shih-wei Liao2d831012011-09-28 22:06:53 -0700729 klass = Runtime::Current()->GetClassLinker()->ResolveType(type_idx, method);
730 if (klass == NULL) { // Error
731 DCHECK(Thread::Current()->IsExceptionPending());
732 return NULL; // Failure
733 }
734 CHECK(klass->IsArrayClass()) << PrettyClass(klass);
735 }
736 return Array::Alloc(klass, component_count);
737}
738
Ian Rogerscaab8c42011-10-12 12:11:18 -0700739// Assignable test for code, won't throw. Null and equality tests already performed
740uint32_t IsAssignableFromCode(const Class* klass, const Class* ref_class) {
741 DCHECK(klass != NULL);
742 DCHECK(ref_class != NULL);
743 return klass->IsAssignableFrom(ref_class) ? 1 : 0;
744}
745
Shih-wei Liao2d831012011-09-28 22:06:53 -0700746// Check whether it is safe to cast one class to the other, throw exception and return -1 on failure
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700747extern "C" int artCheckCastFromCode(const Class* a, const Class* b, Thread* self, Method** sp) {
Shih-wei Liao2d831012011-09-28 22:06:53 -0700748 DCHECK(a->IsClass()) << PrettyClass(a);
749 DCHECK(b->IsClass()) << PrettyClass(b);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700750 if (LIKELY(b->IsAssignableFrom(a))) {
Shih-wei Liao2d831012011-09-28 22:06:53 -0700751 return 0; // Success
752 } else {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700753 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700754 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassCastException;",
Shih-wei Liao2d831012011-09-28 22:06:53 -0700755 "%s cannot be cast to %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800756 PrettyDescriptor(a).c_str(),
757 PrettyDescriptor(b).c_str());
Shih-wei Liao2d831012011-09-28 22:06:53 -0700758 return -1; // Failure
759 }
760}
761
762// Tests whether 'element' can be assigned into an array of type 'array_class'.
763// Returns 0 on success and -1 if an exception is pending.
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700764extern "C" int artCanPutArrayElementFromCode(const Object* element, const Class* array_class,
765 Thread* self, Method** sp) {
Shih-wei Liao2d831012011-09-28 22:06:53 -0700766 DCHECK(array_class != NULL);
767 // element can't be NULL as we catch this is screened in runtime_support
768 Class* element_class = element->GetClass();
769 Class* component_type = array_class->GetComponentType();
Ian Rogerscaab8c42011-10-12 12:11:18 -0700770 if (LIKELY(component_type->IsAssignableFrom(element_class))) {
Shih-wei Liao2d831012011-09-28 22:06:53 -0700771 return 0; // Success
772 } else {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700773 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700774 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ArrayStoreException;",
Shih-wei Liao2d831012011-09-28 22:06:53 -0700775 "Cannot store an object of type %s in to an array of type %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800776 PrettyDescriptor(element_class).c_str(),
777 PrettyDescriptor(array_class).c_str());
Shih-wei Liao2d831012011-09-28 22:06:53 -0700778 return -1; // Failure
779 }
780}
781
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700782Class* InitializeStaticStorage(uint32_t type_idx, const Method* referrer, Thread* self) {
783 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
784 Class* klass = class_linker->ResolveType(type_idx, referrer);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700785 if (UNLIKELY(klass == NULL)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700786 CHECK(self->IsExceptionPending());
787 return NULL; // Failure - Indicate to caller to deliver exception
788 }
Ian Rogersb093c6b2011-10-31 16:19:55 -0700789 DCHECK(referrer->GetDeclaringClass()->CanAccess(klass));
790 // If we are the <clinit> of this class, just return our storage.
791 //
792 // Do not set the DexCache InitializedStaticStorage, since that implies <clinit> has finished
793 // running.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800794 if (klass == referrer->GetDeclaringClass() && MethodHelper(referrer).IsClassInitializer()) {
Ian Rogersb093c6b2011-10-31 16:19:55 -0700795 return klass;
796 }
797 if (!class_linker->EnsureInitialized(klass, true)) {
798 CHECK(self->IsExceptionPending());
799 return NULL; // Failure - Indicate to caller to deliver exception
800 }
801 referrer->GetDexCacheInitializedStaticStorage()->Set(type_idx, klass);
802 return klass;
803}
804
805Class* InitializeStaticStorageAndVerifyAccess(uint32_t type_idx, const Method* referrer,
806 Thread* self) {
807 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
808 Class* klass = class_linker->ResolveType(type_idx, referrer);
809 if (UNLIKELY(klass == NULL)) {
810 CHECK(self->IsExceptionPending());
811 return NULL; // Failure - Indicate to caller to deliver exception
812 }
813 // Perform access check
814 if (UNLIKELY(!referrer->GetDeclaringClass()->CanAccess(klass))) {
815 self->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
816 "Class %s is inaccessible to method %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800817 PrettyDescriptor(klass).c_str(),
Ian Rogersb093c6b2011-10-31 16:19:55 -0700818 PrettyMethod(referrer, true).c_str());
819 }
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700820 // If we are the <clinit> of this class, just return our storage.
821 //
822 // Do not set the DexCache InitializedStaticStorage, since that implies <clinit> has finished
823 // running.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800824 if (klass == referrer->GetDeclaringClass() && MethodHelper(referrer).IsClassInitializer()) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700825 return klass;
826 }
827 if (!class_linker->EnsureInitialized(klass, true)) {
828 CHECK(self->IsExceptionPending());
829 return NULL; // Failure - Indicate to caller to deliver exception
830 }
831 referrer->GetDexCacheInitializedStaticStorage()->Set(type_idx, klass);
832 return klass;
Shih-wei Liao2d831012011-09-28 22:06:53 -0700833}
834
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700835extern "C" Class* artInitializeStaticStorageFromCode(uint32_t type_idx, const Method* referrer,
836 Thread* self, Method** sp) {
837 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
838 return InitializeStaticStorage(type_idx, referrer, self);
839}
840
Ian Rogers28ad40d2011-10-27 15:19:26 -0700841extern "C" Class* artInitializeTypeFromCode(uint32_t type_idx, const Method* referrer, Thread* self,
842 Method** sp) {
843 // Called when method->dex_cache_resolved_types_[] misses
844 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
845 return InitializeStaticStorage(type_idx, referrer, self);
846}
847
Ian Rogersb093c6b2011-10-31 16:19:55 -0700848extern "C" Class* artInitializeTypeAndVerifyAccessFromCode(uint32_t type_idx,
849 const Method* referrer, Thread* self,
850 Method** sp) {
851 // Called when caller isn't guaranteed to have access to a type and the dex cache may be
852 // unpopulated
853 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
854 return InitializeStaticStorageAndVerifyAccess(type_idx, referrer, self);
855}
856
Ian Rogers28ad40d2011-10-27 15:19:26 -0700857// TODO: placeholder. Helper function to resolve virtual method
858void ResolveMethodFromCode(Method* method, uint32_t method_idx) {
859 /*
860 * Slow-path handler on invoke virtual method path in which
861 * base method is unresolved at compile-time. Doesn't need to
862 * return anything - just either ensure that
863 * method->dex_cache_resolved_methods_(method_idx) != NULL or
864 * throw and unwind. The caller will restart call sequence
865 * from the beginning.
866 */
867}
868
Brian Carlstromaded5f72011-10-07 17:15:04 -0700869String* ResolveStringFromCode(const Method* referrer, uint32_t string_idx) {
870 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
871 return class_linker->ResolveString(string_idx, referrer);
872}
873
874extern "C" String* artResolveStringFromCode(Method* referrer, int32_t string_idx,
875 Thread* self, Method** sp) {
876 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
877 return ResolveStringFromCode(referrer, string_idx);
878}
879
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700880extern "C" int artUnlockObjectFromCode(Object* obj, Thread* self, Method** sp) {
881 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700882 DCHECK(obj != NULL); // Assumed to have been checked before entry
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700883 // MonitorExit may throw exception
884 return obj->MonitorExit(self) ? 0 /* Success */ : -1 /* Failure */;
885}
886
887extern "C" void artLockObjectFromCode(Object* obj, Thread* thread, Method** sp) {
888 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kRefsOnly);
889 DCHECK(obj != NULL); // Assumed to have been checked before entry
890 obj->MonitorEnter(thread); // May block
Shih-wei Liao2d831012011-09-28 22:06:53 -0700891 DCHECK(thread->HoldsLock(obj));
892 // Only possible exception is NPE and is handled before entry
893 DCHECK(!thread->IsExceptionPending());
894}
895
Ian Rogers4a510d82011-10-09 14:30:24 -0700896void CheckSuspendFromCode(Thread* thread) {
897 // Called when thread->suspend_count_ != 0
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700898 Runtime::Current()->GetThreadList()->FullSuspendCheck(thread);
899}
900
Ian Rogers4a510d82011-10-09 14:30:24 -0700901extern "C" void artTestSuspendFromCode(Thread* thread, Method** sp) {
902 // Called when suspend count check value is 0 and thread->suspend_count_ != 0
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700903 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kRefsOnly);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700904 Runtime::Current()->GetThreadList()->FullSuspendCheck(thread);
905}
906
907/*
908 * Fill the array with predefined constant values, throwing exceptions if the array is null or
909 * not of sufficient length.
910 *
911 * NOTE: When dealing with a raw dex file, the data to be copied uses
912 * little-endian ordering. Require that oat2dex do any required swapping
913 * so this routine can get by with a memcpy().
914 *
915 * Format of the data:
916 * ushort ident = 0x0300 magic value
917 * ushort width width of each element in the table
918 * uint size number of elements in the table
919 * ubyte data[size*width] table of data values (may contain a single-byte
920 * padding at the end)
921 */
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700922extern "C" int artHandleFillArrayDataFromCode(Array* array, const uint16_t* table,
923 Thread* self, Method** sp) {
924 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700925 DCHECK_EQ(table[0], 0x0300);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700926 if (UNLIKELY(array == NULL)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700927 Thread::Current()->ThrowNewExceptionF("Ljava/lang/NullPointerException;",
928 "null array in fill array");
Shih-wei Liao2d831012011-09-28 22:06:53 -0700929 return -1; // Error
930 }
931 DCHECK(array->IsArrayInstance() && !array->IsObjectArray());
932 uint32_t size = (uint32_t)table[2] | (((uint32_t)table[3]) << 16);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700933 if (UNLIKELY(static_cast<int32_t>(size) > array->GetLength())) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700934 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ArrayIndexOutOfBoundsException;",
935 "failed array fill. length=%d; index=%d", array->GetLength(), size);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700936 return -1; // Error
937 }
938 uint16_t width = table[1];
939 uint32_t size_in_bytes = size * width;
940 memcpy((char*)array + Array::DataOffset().Int32Value(), (char*)&table[4], size_in_bytes);
941 return 0; // Success
942}
943
944// See comments in runtime_support_asm.S
945extern "C" uint64_t artFindInterfaceMethodInCacheFromCode(uint32_t method_idx,
Ian Rogerscaab8c42011-10-12 12:11:18 -0700946 Object* this_object,
947 Method* caller_method,
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700948 Thread* thread, Method** sp) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700949 Method* interface_method = caller_method->GetDexCacheResolvedMethods()->Get(method_idx);
950 Method* found_method = NULL; // The found method
951 if (LIKELY(interface_method != NULL && this_object != NULL)) {
Ian Rogersb04f69f2011-10-17 00:40:54 -0700952 found_method = this_object->GetClass()->FindVirtualMethodForInterface(interface_method, false);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700953 }
Ian Rogerscaab8c42011-10-12 12:11:18 -0700954 if (UNLIKELY(found_method == NULL)) {
955 FinishCalleeSaveFrameSetup(thread, sp, Runtime::kRefsAndArgs);
956 if (this_object == NULL) {
957 thread->ThrowNewExceptionF("Ljava/lang/NullPointerException;",
958 "null receiver during interface dispatch");
959 return 0;
960 }
961 if (interface_method == NULL) {
962 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
963 interface_method = class_linker->ResolveMethod(method_idx, caller_method, false);
964 if (interface_method == NULL) {
965 // Could not resolve interface method. Throw error and unwind
966 CHECK(thread->IsExceptionPending());
967 return 0;
968 }
969 }
Ian Rogersb04f69f2011-10-17 00:40:54 -0700970 found_method = this_object->GetClass()->FindVirtualMethodForInterface(interface_method, true);
Ian Rogerscaab8c42011-10-12 12:11:18 -0700971 if (found_method == NULL) {
972 CHECK(thread->IsExceptionPending());
973 return 0;
974 }
Shih-wei Liao2d831012011-09-28 22:06:53 -0700975 }
Ian Rogerscaab8c42011-10-12 12:11:18 -0700976 const void* code = found_method->GetCode();
Shih-wei Liao2d831012011-09-28 22:06:53 -0700977
Ian Rogerscaab8c42011-10-12 12:11:18 -0700978 uint32_t method_uint = reinterpret_cast<uint32_t>(found_method);
Shih-wei Liao2d831012011-09-28 22:06:53 -0700979 uint64_t code_uint = reinterpret_cast<uint32_t>(code);
980 uint64_t result = ((code_uint << 32) | method_uint);
981 return result;
982}
983
Ian Rogers466bb252011-10-14 03:29:56 -0700984static void ThrowNewUndeclaredThrowableException(Thread* self, JNIEnv* env, Throwable* exception) {
985 ScopedLocalRef<jclass> jlr_UTE_class(env,
986 env->FindClass("java/lang/reflect/UndeclaredThrowableException"));
987 if (jlr_UTE_class.get() == NULL) {
988 LOG(ERROR) << "Couldn't throw new \"java/lang/reflect/UndeclaredThrowableException\"";
989 } else {
990 jmethodID jlre_UTE_constructor = env->GetMethodID(jlr_UTE_class.get(), "<init>",
991 "(Ljava/lang/Throwable;)V");
992 jthrowable jexception = AddLocalReference<jthrowable>(env, exception);
993 ScopedLocalRef<jthrowable> jlr_UTE(env,
994 reinterpret_cast<jthrowable>(env->NewObject(jlr_UTE_class.get(), jlre_UTE_constructor,
995 jexception)));
996 int rc = env->Throw(jlr_UTE.get());
997 if (rc != JNI_OK) {
998 LOG(ERROR) << "Couldn't throw new \"java/lang/reflect/UndeclaredThrowableException\"";
999 }
1000 }
1001 CHECK(self->IsExceptionPending());
1002}
1003
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001004// Handler for invocation on proxy methods. On entry a frame will exist for the proxy object method
1005// which is responsible for recording callee save registers. We explicitly handlerize incoming
1006// reference arguments (so they survive GC) and create a boxed argument array. Finally we invoke
1007// the invocation handler which is a field within the proxy object receiver.
1008extern "C" void artProxyInvokeHandler(Method* proxy_method, Object* receiver,
Ian Rogers466bb252011-10-14 03:29:56 -07001009 Thread* self, byte* stack_args) {
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001010 // Register the top of the managed stack
Ian Rogers466bb252011-10-14 03:29:56 -07001011 Method** proxy_sp = reinterpret_cast<Method**>(stack_args - 12);
1012 DCHECK_EQ(*proxy_sp, proxy_method);
1013 self->SetTopOfStack(proxy_sp, 0);
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001014 // TODO: ARM specific
1015 DCHECK_EQ(proxy_method->GetFrameSizeInBytes(), 48u);
1016 // Start new JNI local reference state
1017 JNIEnvExt* env = self->GetJniEnv();
1018 ScopedJniEnvLocalRefState env_state(env);
1019 // Create local ref. copies of proxy method and the receiver
1020 jobject rcvr_jobj = AddLocalReference<jobject>(env, receiver);
1021 jobject proxy_method_jobj = AddLocalReference<jobject>(env, proxy_method);
1022
Ian Rogers14b1b242011-10-11 18:54:34 -07001023 // Placing into local references incoming arguments from the caller's register arguments,
1024 // replacing original Object* with jobject
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001025 MethodHelper proxy_mh(proxy_method);
1026 const size_t num_params = proxy_mh.NumArgs();
Ian Rogers14b1b242011-10-11 18:54:34 -07001027 size_t args_in_regs = 0;
1028 for (size_t i = 1; i < num_params; i++) { // skip receiver
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001029 args_in_regs = args_in_regs + (proxy_mh.IsParamALongOrDouble(i) ? 2 : 1);
Ian Rogers14b1b242011-10-11 18:54:34 -07001030 if (args_in_regs > 2) {
1031 args_in_regs = 2;
1032 break;
1033 }
1034 }
1035 size_t cur_arg = 0; // current stack location to read
1036 size_t param_index = 1; // skip receiver
1037 while (cur_arg < args_in_regs && param_index < num_params) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001038 if (proxy_mh.IsParamAReference(param_index)) {
Ian Rogers14b1b242011-10-11 18:54:34 -07001039 Object* obj = *reinterpret_cast<Object**>(stack_args + (cur_arg * kPointerSize));
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001040 jobject jobj = AddLocalReference<jobject>(env, obj);
Ian Rogers14b1b242011-10-11 18:54:34 -07001041 *reinterpret_cast<jobject*>(stack_args + (cur_arg * kPointerSize)) = jobj;
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001042 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001043 cur_arg = cur_arg + (proxy_mh.IsParamALongOrDouble(param_index) ? 2 : 1);
Ian Rogers14b1b242011-10-11 18:54:34 -07001044 param_index++;
1045 }
1046 // Placing into local references incoming arguments from the caller's stack arguments
Ian Rogers466bb252011-10-14 03:29:56 -07001047 cur_arg += 11; // skip callee saves, LR, Method* and out arg spills for R1 to R3
Ian Rogers14b1b242011-10-11 18:54:34 -07001048 while (param_index < num_params) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001049 if (proxy_mh.IsParamAReference(param_index)) {
Ian Rogers14b1b242011-10-11 18:54:34 -07001050 Object* obj = *reinterpret_cast<Object**>(stack_args + (cur_arg * kPointerSize));
1051 jobject jobj = AddLocalReference<jobject>(env, obj);
1052 *reinterpret_cast<jobject*>(stack_args + (cur_arg * kPointerSize)) = jobj;
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001053 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001054 cur_arg = cur_arg + (proxy_mh.IsParamALongOrDouble(param_index) ? 2 : 1);
Ian Rogers14b1b242011-10-11 18:54:34 -07001055 param_index++;
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001056 }
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001057 // Set up arguments array and place in local IRT during boxing (which may allocate/GC)
1058 jvalue args_jobj[3];
1059 args_jobj[0].l = rcvr_jobj;
1060 args_jobj[1].l = proxy_method_jobj;
Ian Rogers466bb252011-10-14 03:29:56 -07001061 // Args array, if no arguments then NULL (don't include receiver in argument count)
1062 args_jobj[2].l = NULL;
1063 ObjectArray<Object>* args = NULL;
1064 if ((num_params - 1) > 0) {
1065 args = Runtime::Current()->GetClassLinker()->AllocObjectArray<Object>(num_params - 1);
Elliott Hughes362f9bc2011-10-17 18:56:41 -07001066 if (args == NULL) {
Ian Rogers466bb252011-10-14 03:29:56 -07001067 CHECK(self->IsExceptionPending());
1068 return;
1069 }
1070 args_jobj[2].l = AddLocalReference<jobjectArray>(env, args);
1071 }
1072 // Convert proxy method into expected interface method
1073 Method* interface_method = proxy_method->FindOverriddenMethod();
1074 CHECK(interface_method != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001075 CHECK(!interface_method->IsProxyMethod()) << PrettyMethod(interface_method);
Ian Rogers466bb252011-10-14 03:29:56 -07001076 args_jobj[1].l = AddLocalReference<jobject>(env, interface_method);
1077 LOG(INFO) << "Interface method is " << PrettyMethod(interface_method, true);
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001078 // Box arguments
Ian Rogers14b1b242011-10-11 18:54:34 -07001079 cur_arg = 0; // reset stack location to read to start
1080 // reset index, will index into param type array which doesn't include the receiver
1081 param_index = 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001082 ObjectArray<Class>* param_types = proxy_mh.GetParameterTypes();
Ian Rogers14b1b242011-10-11 18:54:34 -07001083 CHECK(param_types != NULL);
1084 // Check number of parameter types agrees with number from the Method - less 1 for the receiver.
1085 CHECK_EQ(static_cast<size_t>(param_types->GetLength()), num_params - 1);
1086 while (cur_arg < args_in_regs && param_index < (num_params - 1)) {
1087 Class* param_type = param_types->Get(param_index);
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001088 Object* obj;
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001089 if (!param_type->IsPrimitive()) {
Ian Rogers14b1b242011-10-11 18:54:34 -07001090 obj = self->DecodeJObject(*reinterpret_cast<jobject*>(stack_args + (cur_arg * kPointerSize)));
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001091 } else {
Ian Rogers14b1b242011-10-11 18:54:34 -07001092 JValue val = *reinterpret_cast<JValue*>(stack_args + (cur_arg * kPointerSize));
1093 if (cur_arg == 1 && (param_type->IsPrimitiveLong() || param_type->IsPrimitiveDouble())) {
1094 // long/double split over regs and stack, mask in high half from stack arguments
Ian Rogers466bb252011-10-14 03:29:56 -07001095 uint64_t high_half = *reinterpret_cast<uint32_t*>(stack_args + (13 * kPointerSize));
Ian Rogerscaab8c42011-10-12 12:11:18 -07001096 val.j = (val.j & 0xffffffffULL) | (high_half << 32);
Ian Rogers14b1b242011-10-11 18:54:34 -07001097 }
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001098 BoxPrimitive(env, param_type->GetPrimitiveType(), val);
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001099 if (self->IsExceptionPending()) {
1100 return;
1101 }
1102 obj = val.l;
1103 }
Ian Rogers14b1b242011-10-11 18:54:34 -07001104 args->Set(param_index, obj);
1105 cur_arg = cur_arg + (param_type->IsPrimitiveLong() || param_type->IsPrimitiveDouble() ? 2 : 1);
1106 param_index++;
1107 }
1108 // Placing into local references incoming arguments from the caller's stack arguments
Ian Rogers466bb252011-10-14 03:29:56 -07001109 cur_arg += 11; // skip callee saves, LR, Method* and out arg spills for R1 to R3
1110 while (param_index < (num_params - 1)) {
Ian Rogers14b1b242011-10-11 18:54:34 -07001111 Class* param_type = param_types->Get(param_index);
1112 Object* obj;
1113 if (!param_type->IsPrimitive()) {
1114 obj = self->DecodeJObject(*reinterpret_cast<jobject*>(stack_args + (cur_arg * kPointerSize)));
1115 } else {
1116 JValue val = *reinterpret_cast<JValue*>(stack_args + (cur_arg * kPointerSize));
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001117 BoxPrimitive(env, param_type->GetPrimitiveType(), val);
Ian Rogers14b1b242011-10-11 18:54:34 -07001118 if (self->IsExceptionPending()) {
1119 return;
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001120 }
Ian Rogers14b1b242011-10-11 18:54:34 -07001121 obj = val.l;
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001122 }
Ian Rogers14b1b242011-10-11 18:54:34 -07001123 args->Set(param_index, obj);
1124 cur_arg = cur_arg + (param_type->IsPrimitiveLong() || param_type->IsPrimitiveDouble() ? 2 : 1);
1125 param_index++;
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001126 }
1127 // Get the InvocationHandler method and the field that holds it within the Proxy object
1128 static jmethodID inv_hand_invoke_mid = NULL;
1129 static jfieldID proxy_inv_hand_fid = NULL;
1130 if (proxy_inv_hand_fid == NULL) {
Ian Rogers466bb252011-10-14 03:29:56 -07001131 ScopedLocalRef<jclass> proxy(env, env->FindClass("java/lang/reflect/Proxy"));
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001132 proxy_inv_hand_fid = env->GetFieldID(proxy.get(), "h", "Ljava/lang/reflect/InvocationHandler;");
Ian Rogers466bb252011-10-14 03:29:56 -07001133 ScopedLocalRef<jclass> inv_hand_class(env, env->FindClass("java/lang/reflect/InvocationHandler"));
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001134 inv_hand_invoke_mid = env->GetMethodID(inv_hand_class.get(), "invoke",
1135 "(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;");
1136 }
Ian Rogers466bb252011-10-14 03:29:56 -07001137 DCHECK(env->IsInstanceOf(rcvr_jobj, env->FindClass("java/lang/reflect/Proxy")));
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001138 jobject inv_hand = env->GetObjectField(rcvr_jobj, proxy_inv_hand_fid);
1139 // Call InvocationHandler.invoke
1140 jobject result = env->CallObjectMethodA(inv_hand, inv_hand_invoke_mid, args_jobj);
1141 // Place result in stack args
1142 if (!self->IsExceptionPending()) {
1143 Object* result_ref = self->DecodeJObject(result);
1144 if (result_ref != NULL) {
1145 JValue result_unboxed;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001146 UnboxPrimitive(env, result_ref, proxy_mh.GetReturnType(), result_unboxed);
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001147 *reinterpret_cast<JValue*>(stack_args) = result_unboxed;
1148 } else {
1149 *reinterpret_cast<jobject*>(stack_args) = NULL;
1150 }
Ian Rogers466bb252011-10-14 03:29:56 -07001151 } else {
1152 // In the case of checked exceptions that aren't declared, the exception must be wrapped by
1153 // a UndeclaredThrowableException.
1154 Throwable* exception = self->GetException();
1155 self->ClearException();
1156 if (!exception->IsCheckedException()) {
1157 self->SetException(exception);
1158 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001159 // TODO: get the correct intersection of exceptions as passed to the class linker's create
1160 // proxy code.
1161 UNIMPLEMENTED(FATAL);
1162 ObjectArray<Class>* declared_exceptions = NULL; // proxy_mh.GetExceptionTypes();
Ian Rogers466bb252011-10-14 03:29:56 -07001163 Class* exception_class = exception->GetClass();
1164 bool declares_exception = false;
1165 for (int i = 0; i < declared_exceptions->GetLength() && !declares_exception; i++) {
1166 Class* declared_exception = declared_exceptions->Get(i);
1167 declares_exception = declared_exception->IsAssignableFrom(exception_class);
1168 }
1169 if (declares_exception) {
1170 self->SetException(exception);
1171 } else {
1172 ThrowNewUndeclaredThrowableException(self, env, exception);
1173 }
1174 }
Ian Rogersdfcdf1a2011-10-10 17:50:35 -07001175 }
1176}
1177
jeffhaoe343b762011-12-05 16:36:44 -08001178extern "C" const void* artTraceMethodEntryFromCode(Method* method, Thread* self, uintptr_t lr) {
1179 LOG(INFO) << "Tracer - entering: " << PrettyMethod(method);
1180 TraceStackFrame trace_frame = TraceStackFrame(method, lr);
1181 self->PushTraceStackFrame(trace_frame);
1182
1183 return Trace::GetSavedCodeFromMap(method);
1184}
1185
1186extern "C" uintptr_t artTraceMethodExitFromCode() {
1187 TraceStackFrame trace_frame = Thread::Current()->PopTraceStackFrame();
1188 Method* method = trace_frame.method_;
1189 uintptr_t lr = trace_frame.return_pc_;
1190 LOG(INFO) << "Tracer - exiting: " << PrettyMethod(method);
1191
1192 return lr;
1193}
1194
1195uintptr_t artTraceMethodUnwindFromCode(Thread* self) {
1196 TraceStackFrame trace_frame = self->PopTraceStackFrame();
1197 Method* method = trace_frame.method_;
1198 uintptr_t lr = trace_frame.return_pc_;
1199 LOG(INFO) << "Tracer - unwinding: " << PrettyMethod(method);
1200
1201 return lr;
1202}
1203
Shih-wei Liao2d831012011-09-28 22:06:53 -07001204/*
1205 * Float/double conversion requires clamping to min and max of integer form. If
1206 * target doesn't support this normally, use these.
1207 */
1208int64_t D2L(double d) {
1209 static const double kMaxLong = (double)(int64_t)0x7fffffffffffffffULL;
1210 static const double kMinLong = (double)(int64_t)0x8000000000000000ULL;
1211 if (d >= kMaxLong)
1212 return (int64_t)0x7fffffffffffffffULL;
1213 else if (d <= kMinLong)
1214 return (int64_t)0x8000000000000000ULL;
1215 else if (d != d) // NaN case
1216 return 0;
1217 else
1218 return (int64_t)d;
1219}
1220
1221int64_t F2L(float f) {
1222 static const float kMaxLong = (float)(int64_t)0x7fffffffffffffffULL;
1223 static const float kMinLong = (float)(int64_t)0x8000000000000000ULL;
1224 if (f >= kMaxLong)
1225 return (int64_t)0x7fffffffffffffffULL;
1226 else if (f <= kMinLong)
1227 return (int64_t)0x8000000000000000ULL;
1228 else if (f != f) // NaN case
1229 return 0;
1230 else
1231 return (int64_t)f;
1232}
1233
1234} // namespace art