blob: f1939993f7dc2f7e9be0c4a073b45664b03e06ce [file] [log] [blame]
Shih-wei Liao2d831012011-09-28 22:06:53 -07001/*
Elliott Hughes0f3c5532012-03-30 14:51:51 -07002 * Copyright (C) 2012 The Android Open Source Project
Shih-wei Liao2d831012011-09-28 22:06:53 -07003 *
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
Ian Rogers7655f292013-07-29 11:07:13 -070017#include "entrypoints/entrypoint_utils.h"
Shih-wei Liao2d831012011-09-28 22:06:53 -070018
Mathieu Chartierc7853442015-03-27 14:35:38 -070019#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070020#include "art_method-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070021#include "base/mutex.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070023#include "dex_file-inl.h"
Nicolas Geoffray1920c102015-09-29 18:00:03 +000024#include "entrypoints/entrypoint_utils-inl.h"
25#include "entrypoints/quick/callee_save_frame.h"
26#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070027#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "mirror/class-inl.h"
Mathieu Chartierfc58af42015-04-16 18:00:39 -070029#include "mirror/method.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030#include "mirror/object-inl.h"
31#include "mirror/object_array-inl.h"
Nicolas Geoffray1920c102015-09-29 18:00:03 +000032#include "nth_caller_visitor.h"
Ian Rogersaf6e67a2013-01-16 08:38:37 -080033#include "reflection.h"
34#include "scoped_thread_state_change.h"
TDYa1275bb86012012-04-11 05:57:28 -070035#include "ScopedLocalRef.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070036#include "well_known_classes.h"
TDYa1275bb86012012-04-11 05:57:28 -070037
jeffhao41005dd2012-05-09 17:58:52 -070038namespace art {
39
Brian Carlstrom34375312014-09-10 23:10:47 -070040static inline mirror::Class* CheckFilledNewArrayAlloc(uint32_t type_idx,
Brian Carlstrom34375312014-09-10 23:10:47 -070041 int32_t component_count,
Mathieu Chartiere401d142015-04-22 13:56:20 -070042 ArtMethod* referrer,
Brian Carlstrom34375312014-09-10 23:10:47 -070043 Thread* self,
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080044 bool access_check)
Mathieu Chartier90443472015-07-16 20:32:27 -070045 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers57b86d42012-03-27 16:05:41 -070046 if (UNLIKELY(component_count < 0)) {
Ian Rogers62d6c772013-02-27 08:32:07 -080047 ThrowNegativeArraySizeException(component_count);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080048 return nullptr; // Failure
Elliott Hughes6c8867d2011-10-03 16:34:05 -070049 }
Vladimir Marko05792b92015-08-03 11:56:49 +010050 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
51 size_t pointer_size = class_linker->GetImagePointerSize();
52 mirror::Class* klass = referrer->GetDexCacheResolvedType<false>(type_idx, pointer_size);
Mathieu Chartier2cebb242015-04-21 16:50:40 -070053 if (UNLIKELY(klass == nullptr)) { // Not in dex cache so try to resolve
Vladimir Marko05792b92015-08-03 11:56:49 +010054 klass = class_linker->ResolveType(type_idx, referrer);
Mathieu Chartier2cebb242015-04-21 16:50:40 -070055 if (klass == nullptr) { // Error
Ian Rogers50b35e22012-10-04 10:09:15 -070056 DCHECK(self->IsExceptionPending());
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080057 return nullptr; // Failure
Ian Rogers19846512012-02-24 11:42:47 -080058 }
Ian Rogersea2a11d2011-10-11 16:48:51 -070059 }
Ian Rogers57b86d42012-03-27 16:05:41 -070060 if (UNLIKELY(klass->IsPrimitive() && !klass->IsPrimitiveInt())) {
61 if (klass->IsPrimitiveLong() || klass->IsPrimitiveDouble()) {
Ian Rogers62d6c772013-02-27 08:32:07 -080062 ThrowRuntimeException("Bad filled array request for type %s",
63 PrettyDescriptor(klass).c_str());
Ian Rogers573db4a2011-12-13 15:30:50 -080064 } else {
Brian Carlstrom34375312014-09-10 23:10:47 -070065 self->ThrowNewExceptionF(
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000066 "Ljava/lang/InternalError;",
Brian Carlstrom34375312014-09-10 23:10:47 -070067 "Found type %s; filled-new-array not implemented for anything but 'int'",
68 PrettyDescriptor(klass).c_str());
Ian Rogers573db4a2011-12-13 15:30:50 -080069 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080070 return nullptr; // Failure
Ian Rogers57b86d42012-03-27 16:05:41 -070071 }
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070072 if (access_check) {
73 mirror::Class* referrer_klass = referrer->GetDeclaringClass();
74 if (UNLIKELY(!referrer_klass->CanAccess(klass))) {
75 ThrowIllegalAccessErrorClass(referrer_klass, klass);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080076 return nullptr; // Failure
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070077 }
78 }
79 DCHECK(klass->IsArrayClass()) << PrettyClass(klass);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080080 return klass;
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070081}
82
83// Helper function to allocate array for FILLED_NEW_ARRAY.
Andreas Gampe1cc7dba2014-12-17 18:43:01 -080084mirror::Array* CheckAndAllocArrayFromCode(uint32_t type_idx, int32_t component_count,
Mathieu Chartiere401d142015-04-22 13:56:20 -070085 ArtMethod* referrer, Thread* self,
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080086 bool access_check,
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080087 gc::AllocatorType /* allocator_type */) {
Andreas Gampe1cc7dba2014-12-17 18:43:01 -080088 mirror::Class* klass = CheckFilledNewArrayAlloc(type_idx, component_count, referrer, self,
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080089 access_check);
90 if (UNLIKELY(klass == nullptr)) {
91 return nullptr;
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070092 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -080093 // Always go slow path for now, filled new array is not common.
94 gc::Heap* heap = Runtime::Current()->GetHeap();
95 // Use the current allocator type in case CheckFilledNewArrayAlloc caused us to suspend and then
96 // the heap switched the allocator type while we were suspended.
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -070097 return mirror::Array::Alloc<false>(self, klass, component_count,
98 klass->GetComponentSizeShift(),
Ian Rogers6fac4472014-02-25 17:01:10 -080099 heap->GetCurrentAllocator());
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700100}
101
102// Helper function to allocate array for FILLED_NEW_ARRAY.
Brian Carlstrom34375312014-09-10 23:10:47 -0700103mirror::Array* CheckAndAllocArrayFromCodeInstrumented(uint32_t type_idx,
Brian Carlstrom34375312014-09-10 23:10:47 -0700104 int32_t component_count,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700105 ArtMethod* referrer,
Brian Carlstrom34375312014-09-10 23:10:47 -0700106 Thread* self,
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800107 bool access_check,
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800108 gc::AllocatorType /* allocator_type */) {
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800109 mirror::Class* klass = CheckFilledNewArrayAlloc(type_idx, component_count, referrer, self,
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800110 access_check);
111 if (UNLIKELY(klass == nullptr)) {
112 return nullptr;
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700113 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800114 gc::Heap* heap = Runtime::Current()->GetHeap();
115 // Use the current allocator type in case CheckFilledNewArrayAlloc caused us to suspend and then
116 // the heap switched the allocator type while we were suspended.
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700117 return mirror::Array::Alloc<true>(self, klass, component_count,
118 klass->GetComponentSizeShift(),
Ian Rogers6fac4472014-02-25 17:01:10 -0800119 heap->GetCurrentAllocator());
Ian Rogers57b86d42012-03-27 16:05:41 -0700120}
121
jeffhaod7521322012-11-21 15:38:24 -0800122void ThrowStackOverflowError(Thread* self) {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700123 if (self->IsHandlingStackOverflow()) {
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700124 LOG(ERROR) << "Recursive stack overflow.";
125 // We don't fail here because SetStackEndForStackOverflow will print better diagnostics.
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700126 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800127
jeffhaod7521322012-11-21 15:38:24 -0800128 self->SetStackEndForStackOverflow(); // Allow space on the stack for constructor to execute.
129 JNIEnvExt* env = self->GetJniEnv();
130 std::string msg("stack size ");
131 msg += PrettySize(self->GetStackSize());
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700132
133 // Avoid running Java code for exception initialization.
134 // TODO: Checks to make this a bit less brittle.
135
136 std::string error_msg;
137
138 // Allocate an uninitialized object.
139 ScopedLocalRef<jobject> exc(env,
140 env->AllocObject(WellKnownClasses::java_lang_StackOverflowError));
141 if (exc.get() != nullptr) {
142 // "Initialize".
143 // StackOverflowError -> VirtualMachineError -> Error -> Throwable -> Object.
144 // Only Throwable has "custom" fields:
145 // String detailMessage.
146 // Throwable cause (= this).
147 // List<Throwable> suppressedExceptions (= Collections.emptyList()).
148 // Object stackState;
149 // StackTraceElement[] stackTrace;
150 // Only Throwable has a non-empty constructor:
151 // this.stackTrace = EmptyArray.STACK_TRACE_ELEMENT;
152 // fillInStackTrace();
153
154 // detailMessage.
155 // TODO: Use String::FromModifiedUTF...?
156 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg.c_str()));
157 if (s.get() != nullptr) {
Brian Carlstrom34375312014-09-10 23:10:47 -0700158 env->SetObjectField(exc.get(), WellKnownClasses::java_lang_Throwable_detailMessage, s.get());
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700159
160 // cause.
Brian Carlstrom34375312014-09-10 23:10:47 -0700161 env->SetObjectField(exc.get(), WellKnownClasses::java_lang_Throwable_cause, exc.get());
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700162
163 // suppressedExceptions.
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700164 ScopedLocalRef<jobject> emptylist(env, env->GetStaticObjectField(
Brian Carlstrom34375312014-09-10 23:10:47 -0700165 WellKnownClasses::java_util_Collections,
166 WellKnownClasses::java_util_Collections_EMPTY_LIST));
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700167 CHECK(emptylist.get() != nullptr);
Brian Carlstrom34375312014-09-10 23:10:47 -0700168 env->SetObjectField(exc.get(),
169 WellKnownClasses::java_lang_Throwable_suppressedExceptions,
170 emptylist.get());
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700171
172 // stackState is set as result of fillInStackTrace. fillInStackTrace calls
173 // nativeFillInStackTrace.
174 ScopedLocalRef<jobject> stack_state_val(env, nullptr);
175 {
176 ScopedObjectAccessUnchecked soa(env);
177 stack_state_val.reset(soa.Self()->CreateInternalStackTrace<false>(soa));
178 }
179 if (stack_state_val.get() != nullptr) {
Brian Carlstrom34375312014-09-10 23:10:47 -0700180 env->SetObjectField(exc.get(),
181 WellKnownClasses::java_lang_Throwable_stackState,
182 stack_state_val.get());
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700183
184 // stackTrace.
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700185 ScopedLocalRef<jobject> stack_trace_elem(env, env->GetStaticObjectField(
Brian Carlstrom34375312014-09-10 23:10:47 -0700186 WellKnownClasses::libcore_util_EmptyArray,
187 WellKnownClasses::libcore_util_EmptyArray_STACK_TRACE_ELEMENT));
188 env->SetObjectField(exc.get(),
189 WellKnownClasses::java_lang_Throwable_stackTrace,
190 stack_trace_elem.get());
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700191 } else {
192 error_msg = "Could not create stack trace.";
193 }
Mathieu Chartier50c138f2015-01-07 16:00:03 -0800194 // Throw the exception.
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000195 self->SetException(reinterpret_cast<mirror::Throwable*>(self->DecodeJObject(exc.get())));
Andreas Gampe7ea6f792014-07-14 16:21:44 -0700196 } else {
197 // Could not allocate a string object.
198 error_msg = "Couldn't throw new StackOverflowError because JNI NewStringUTF failed.";
199 }
200 } else {
201 error_msg = "Could not allocate StackOverflowError object.";
202 }
203
204 if (!error_msg.empty()) {
Andreas Gampe1de0f5c2015-02-19 10:54:31 -0800205 LOG(WARNING) << error_msg;
jeffhaod7521322012-11-21 15:38:24 -0800206 CHECK(self->IsExceptionPending());
207 }
Dave Allisonf9439142014-03-27 15:10:22 -0700208
209 bool explicit_overflow_check = Runtime::Current()->ExplicitStackOverflowChecks();
Dave Allisonb090a182014-08-14 17:02:48 +0000210 self->ResetDefaultStackEnd(); // Return to default stack size.
Dave Allison648d7112014-07-25 16:15:27 -0700211
212 // And restore protection if implicit checks are on.
213 if (!explicit_overflow_check) {
214 self->ProtectStack();
215 }
jeffhaod7521322012-11-21 15:38:24 -0800216}
217
Ian Rogerse5877a12014-07-16 12:06:35 -0700218void CheckReferenceResult(mirror::Object* o, Thread* self) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700219 if (o == nullptr) {
Ian Rogerse5877a12014-07-16 12:06:35 -0700220 return;
221 }
Ian Rogerse5877a12014-07-16 12:06:35 -0700222 // Make sure that the result is an instance of the type this method was expected to return.
Vladimir Marko05792b92015-08-03 11:56:49 +0100223 mirror::Class* return_type = self->GetCurrentMethod(nullptr)->GetReturnType(true /* resolve */,
224 sizeof(void*));
Ian Rogerse5877a12014-07-16 12:06:35 -0700225
226 if (!o->InstanceOf(return_type)) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700227 Runtime::Current()->GetJavaVM()->JniAbortF(nullptr,
228 "attempt to return an instance of %s from %s",
Ian Rogers68d8b422014-07-17 11:09:10 -0700229 PrettyTypeOf(o).c_str(),
Ian Rogersded66a02014-10-28 18:12:55 -0700230 PrettyMethod(self->GetCurrentMethod(nullptr)).c_str());
Ian Rogerse5877a12014-07-16 12:06:35 -0700231 }
232}
233
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700234JValue InvokeProxyInvocationHandler(ScopedObjectAccessAlreadyRunnable& soa, const char* shorty,
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800235 jobject rcvr_jobj, jobject interface_method_jobj,
236 std::vector<jvalue>& args) {
237 DCHECK(soa.Env()->IsInstanceOf(rcvr_jobj, WellKnownClasses::java_lang_reflect_Proxy));
238
239 // Build argument array possibly triggering GC.
240 soa.Self()->AssertThreadSuspensionIsAllowable();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700241 jobjectArray args_jobj = nullptr;
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800242 const JValue zero;
Jeff Haof00571c2014-05-29 17:29:47 -0700243 int32_t target_sdk_version = Runtime::Current()->GetTargetSdkVersion();
244 // Do not create empty arrays unless needed to maintain Dalvik bug compatibility.
245 if (args.size() > 0 || (target_sdk_version > 0 && target_sdk_version <= 21)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700246 args_jobj = soa.Env()->NewObjectArray(args.size(), WellKnownClasses::java_lang_Object, nullptr);
247 if (args_jobj == nullptr) {
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800248 CHECK(soa.Self()->IsExceptionPending());
249 return zero;
250 }
251 for (size_t i = 0; i < args.size(); ++i) {
252 if (shorty[i + 1] == 'L') {
253 jobject val = args.at(i).l;
254 soa.Env()->SetObjectArrayElement(args_jobj, i, val);
255 } else {
256 JValue jv;
257 jv.SetJ(args.at(i).j);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800258 mirror::Object* val = BoxPrimitive(Primitive::GetType(shorty[i + 1]), jv);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700259 if (val == nullptr) {
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800260 CHECK(soa.Self()->IsExceptionPending());
261 return zero;
262 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100263 soa.Decode<mirror::ObjectArray<mirror::Object>* >(args_jobj)->Set<false>(i, val);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800264 }
265 }
266 }
267
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700268 // Call Proxy.invoke(Proxy proxy, Method method, Object[] args).
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800269 jvalue invocation_args[3];
270 invocation_args[0].l = rcvr_jobj;
271 invocation_args[1].l = interface_method_jobj;
272 invocation_args[2].l = args_jobj;
273 jobject result =
Brian Carlstromea46f952013-07-30 01:26:50 -0700274 soa.Env()->CallStaticObjectMethodA(WellKnownClasses::java_lang_reflect_Proxy,
275 WellKnownClasses::java_lang_reflect_Proxy_invoke,
276 invocation_args);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800277
278 // Unbox result and handle error conditions.
Ian Rogers62d6c772013-02-27 08:32:07 -0800279 if (LIKELY(!soa.Self()->IsExceptionPending())) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700280 if (shorty[0] == 'V' || (shorty[0] == 'L' && result == nullptr)) {
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800281 // Do nothing.
282 return zero;
283 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700284 StackHandleScope<1> hs(soa.Self());
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700285 auto h_interface_method(hs.NewHandle(soa.Decode<mirror::Method*>(interface_method_jobj)));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700286 // This can cause thread suspension.
Vladimir Marko05792b92015-08-03 11:56:49 +0100287 size_t pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
288 mirror::Class* result_type =
289 h_interface_method->GetArtMethod()->GetReturnType(true /* resolve */, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800290 mirror::Object* result_ref = soa.Decode<mirror::Object*>(result);
Ian Rogers62d6c772013-02-27 08:32:07 -0800291 JValue result_unboxed;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000292 if (!UnboxPrimitiveForResult(result_ref, result_type, &result_unboxed)) {
Ian Rogers530f71c2013-02-22 23:29:00 -0800293 DCHECK(soa.Self()->IsExceptionPending());
Ian Rogers62d6c772013-02-27 08:32:07 -0800294 return zero;
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800295 }
296 return result_unboxed;
297 }
298 } else {
299 // In the case of checked exceptions that aren't declared, the exception must be wrapped by
300 // a UndeclaredThrowableException.
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000301 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800302 if (exception->IsCheckedException()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800303 mirror::Object* rcvr = soa.Decode<mirror::Object*>(rcvr_jobj);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700304 mirror::Class* proxy_class = rcvr->GetClass();
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700305 mirror::Method* interface_method = soa.Decode<mirror::Method*>(interface_method_jobj);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700306 ArtMethod* proxy_method = rcvr->GetClass()->FindVirtualMethodForInterface(
307 interface_method->GetArtMethod(), sizeof(void*));
308 auto* virtual_methods = proxy_class->GetVirtualMethodsPtr();
309 size_t num_virtuals = proxy_class->NumVirtualMethods();
Vladimir Marko14632852015-08-17 12:07:23 +0100310 size_t method_size = ArtMethod::Size(sizeof(void*));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700311 int throws_index = (reinterpret_cast<uintptr_t>(proxy_method) -
312 reinterpret_cast<uintptr_t>(virtual_methods)) / method_size;
313 CHECK_LT(throws_index, static_cast<int>(num_virtuals));
Brian Carlstrom34375312014-09-10 23:10:47 -0700314 mirror::ObjectArray<mirror::Class>* declared_exceptions =
315 proxy_class->GetThrows()->Get(throws_index);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800316 mirror::Class* exception_class = exception->GetClass();
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800317 bool declares_exception = false;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700318 for (int32_t i = 0; i < declared_exceptions->GetLength() && !declares_exception; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800319 mirror::Class* declared_exception = declared_exceptions->Get(i);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800320 declares_exception = declared_exception->IsAssignableFrom(exception_class);
321 }
322 if (!declares_exception) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000323 soa.Self()->ThrowNewWrappedException("Ljava/lang/reflect/UndeclaredThrowableException;",
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700324 nullptr);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800325 }
326 }
327 return zero;
328 }
329}
Ian Rogers832336b2014-10-08 15:35:22 -0700330
331bool FillArrayData(mirror::Object* obj, const Instruction::ArrayDataPayload* payload) {
332 DCHECK_EQ(payload->ident, static_cast<uint16_t>(Instruction::kArrayDataSignature));
333 if (UNLIKELY(obj == nullptr)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000334 ThrowNullPointerException("null array in FILL_ARRAY_DATA");
Ian Rogers832336b2014-10-08 15:35:22 -0700335 return false;
336 }
337 mirror::Array* array = obj->AsArray();
338 DCHECK(!array->IsObjectArray());
339 if (UNLIKELY(static_cast<int32_t>(payload->element_count) > array->GetLength())) {
340 Thread* self = Thread::Current();
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000341 self->ThrowNewExceptionF("Ljava/lang/ArrayIndexOutOfBoundsException;",
Ian Rogers832336b2014-10-08 15:35:22 -0700342 "failed FILL_ARRAY_DATA; length=%d, index=%d",
343 array->GetLength(), payload->element_count);
344 return false;
345 }
346 // Copy data from dex file to memory assuming both are little endian.
347 uint32_t size_in_bytes = payload->element_count * payload->element_width;
348 memcpy(array->GetRawData(payload->element_width, 0), payload->data, size_in_bytes);
349 return true;
350}
351
Nicolas Geoffray1920c102015-09-29 18:00:03 +0000352ArtMethod* GetCalleeSaveMethodCaller(ArtMethod** sp,
353 Runtime::CalleeSaveType type,
354 bool do_caller_check)
355 SHARED_REQUIRES(Locks::mutator_lock_) {
356 DCHECK_EQ(*sp, Runtime::Current()->GetCalleeSaveMethod(type));
357
358 const size_t callee_frame_size = GetCalleeSaveFrameSize(kRuntimeISA, type);
359 auto** caller_sp = reinterpret_cast<ArtMethod**>(
360 reinterpret_cast<uintptr_t>(sp) + callee_frame_size);
361 ArtMethod* outer_method = *caller_sp;
362 ArtMethod* caller = outer_method;
363
364 if ((outer_method != nullptr) && outer_method->IsOptimized(sizeof(void*))) {
365 const size_t callee_return_pc_offset = GetCalleeSaveReturnPcOffset(kRuntimeISA, type);
366 uintptr_t caller_pc = *reinterpret_cast<uintptr_t*>(
367 (reinterpret_cast<uint8_t*>(sp) + callee_return_pc_offset));
368 if (LIKELY(caller_pc != reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()))) {
369 uintptr_t native_pc_offset = outer_method->NativeQuickPcOffset(caller_pc);
370 CodeInfo code_info = outer_method->GetOptimizedCodeInfo();
371 StackMapEncoding encoding = code_info.ExtractEncoding();
372 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
373 DCHECK(stack_map.IsValid());
374 if (stack_map.HasInlineInfo(encoding)) {
375 InlineInfo inline_info = code_info.GetInlineInfoOf(stack_map, encoding);
376 caller = GetResolvedMethod(outer_method, inline_info, inline_info.GetDepth() - 1);
377 }
378 } else {
379 // We're instrumenting, just use the StackVisitor which knows how to
380 // handle instrumented frames.
381 NthCallerVisitor visitor(Thread::Current(), 1, true);
382 visitor.WalkStack();
383 caller = visitor.caller;
384 if (kIsDebugBuild) {
385 // Avoid doing the check below.
386 do_caller_check = false;
387 }
388 }
389 }
390
391 if (kIsDebugBuild && do_caller_check) {
392 // Note that do_caller_check is optional, as this method can be called by
393 // stubs, and tests without a proper call stack.
394 NthCallerVisitor visitor(Thread::Current(), 1, true);
395 visitor.WalkStack();
396 CHECK_EQ(caller, visitor.caller);
397 }
398
399 return caller;
400}
401
Shih-wei Liao2d831012011-09-28 22:06:53 -0700402} // namespace art