blob: 916ca29319605348372012cbf20ed86792ac87fe [file] [log] [blame]
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_RUNTIME_ENTRYPOINTS_ENTRYPOINT_UTILS_INL_H_
18#define ART_RUNTIME_ENTRYPOINTS_ENTRYPOINT_UTILS_INL_H_
19
20#include "entrypoint_utils.h"
21
Nicolas Geoffrayd4ceecc2016-06-29 08:39:47 +000022#include "art_method.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070023#include "class_linker-inl.h"
24#include "common_throws.h"
25#include "dex_file.h"
Vladimir Marko5ea536a2015-04-20 20:11:30 +010026#include "entrypoints/quick/callee_save_frame.h"
27#include "handle_scope-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070028#include "indirect_reference_table.h"
29#include "invoke_type.h"
30#include "jni_internal.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070031#include "mirror/array.h"
32#include "mirror/class-inl.h"
33#include "mirror/object-inl.h"
34#include "mirror/throwable.h"
Vladimir Marko5ea536a2015-04-20 20:11:30 +010035#include "nth_caller_visitor.h"
36#include "runtime.h"
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010037#include "stack_map.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070038#include "thread.h"
39
40namespace art {
41
Mathieu Chartier45bf2502016-03-31 11:07:09 -070042template <bool kResolve = true>
Mathieu Chartiere401d142015-04-22 13:56:20 -070043inline ArtMethod* GetResolvedMethod(ArtMethod* outer_method,
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +010044 const InlineInfo& inline_info,
David Srbecky61b28a12016-02-25 21:55:03 +000045 const InlineInfoEncoding& encoding,
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +010046 uint8_t inlining_depth)
Mathieu Chartier90443472015-07-16 20:32:27 -070047 SHARED_REQUIRES(Locks::mutator_lock_) {
David Srbecky61b28a12016-02-25 21:55:03 +000048 uint32_t method_index = inline_info.GetMethodIndexAtDepth(encoding, inlining_depth);
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +010049 InvokeType invoke_type = static_cast<InvokeType>(
David Srbecky61b28a12016-02-25 21:55:03 +000050 inline_info.GetInvokeTypeAtDepth(encoding, inlining_depth));
Mathieu Chartiere401d142015-04-22 13:56:20 -070051 ArtMethod* caller = outer_method->GetDexCacheResolvedMethod(method_index, sizeof(void*));
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010052 if (!caller->IsRuntimeMethod()) {
53 return caller;
54 }
Mathieu Chartier45bf2502016-03-31 11:07:09 -070055 if (!kResolve) {
56 return nullptr;
57 }
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010058
59 // The method in the dex cache can be the runtime method responsible for invoking
60 // the stub that will then update the dex cache. Therefore, we need to do the
61 // resolution ourselves.
Nicolas Geoffray3976e5e2015-06-15 08:58:03 +010062
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +010063 // We first find the class loader of our caller. If it is the outer method, we can directly
64 // use its class loader. Otherwise, we also need to resolve our caller.
Mathieu Chartiere401d142015-04-22 13:56:20 -070065 StackHandleScope<2> hs(Thread::Current());
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010066 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +010067 MutableHandle<mirror::ClassLoader> class_loader(hs.NewHandle<mirror::Class>(nullptr));
Mathieu Chartiere401d142015-04-22 13:56:20 -070068 Handle<mirror::DexCache> dex_cache(hs.NewHandle(outer_method->GetDexCache()));
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +010069 if (inlining_depth == 0) {
70 class_loader.Assign(outer_method->GetClassLoader());
71 } else {
David Srbecky61b28a12016-02-25 21:55:03 +000072 caller = GetResolvedMethod<kResolve>(outer_method,
73 inline_info,
74 encoding,
75 inlining_depth - 1);
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +010076 class_loader.Assign(caller->GetClassLoader());
77 }
78
Andreas Gampe42ef8ab2015-12-03 17:27:32 -080079 return class_linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
Mathieu Chartiere401d142015-04-22 13:56:20 -070080 *outer_method->GetDexFile(), method_index, dex_cache, class_loader, nullptr, invoke_type);
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010081}
82
Mathieu Chartiere401d142015-04-22 13:56:20 -070083inline ArtMethod* GetCalleeSaveMethodCaller(Thread* self, Runtime::CalleeSaveType type)
Mathieu Chartier90443472015-07-16 20:32:27 -070084 SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray7ea6a172015-05-19 18:58:54 +010085 return GetCalleeSaveMethodCaller(
86 self->GetManagedStack()->GetTopQuickFrame(), type, true /* do_caller_check */);
87}
88
Mingyao Yang98d1cc82014-05-15 17:02:16 -070089template <const bool kAccessCheck>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -070090ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -080091inline mirror::Class* CheckObjectAlloc(uint32_t type_idx,
Mathieu Chartiere401d142015-04-22 13:56:20 -070092 ArtMethod* method,
Andreas Gampe9f612ff2014-11-24 13:42:22 -080093 Thread* self, bool* slow_path) {
Vladimir Marko05792b92015-08-03 11:56:49 +010094 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
95 size_t pointer_size = class_linker->GetImagePointerSize();
96 mirror::Class* klass = method->GetDexCacheResolvedType<false>(type_idx, pointer_size);
Mathieu Chartier2cebb242015-04-21 16:50:40 -070097 if (UNLIKELY(klass == nullptr)) {
Vladimir Marko05792b92015-08-03 11:56:49 +010098 klass = class_linker->ResolveType(type_idx, method);
Mingyao Yang98d1cc82014-05-15 17:02:16 -070099 *slow_path = true;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700100 if (klass == nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700101 DCHECK(self->IsExceptionPending());
102 return nullptr; // Failure
Mathieu Chartier524507a2014-08-27 15:28:28 -0700103 } else {
104 DCHECK(!self->IsExceptionPending());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700105 }
106 }
107 if (kAccessCheck) {
108 if (UNLIKELY(!klass->IsInstantiable())) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000109 self->ThrowNewException("Ljava/lang/InstantiationError;", PrettyDescriptor(klass).c_str());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700110 *slow_path = true;
111 return nullptr; // Failure
112 }
113 mirror::Class* referrer = method->GetDeclaringClass();
114 if (UNLIKELY(!referrer->CanAccess(klass))) {
115 ThrowIllegalAccessErrorClass(referrer, klass);
116 *slow_path = true;
117 return nullptr; // Failure
118 }
119 }
120 if (UNLIKELY(!klass->IsInitialized())) {
121 StackHandleScope<1> hs(self);
122 Handle<mirror::Class> h_klass(hs.NewHandle(klass));
123 // EnsureInitialized (the class initializer) might cause a GC.
124 // may cause us to suspend meaning that another thread may try to
125 // change the allocator while we are stuck in the entrypoints of
126 // an old allocator. Also, the class initialization may fail. To
127 // handle these cases we mark the slow path boolean as true so
128 // that the caller knows to check the allocator type to see if it
129 // has changed and to null-check the return value in case the
130 // initialization fails.
131 *slow_path = true;
Ian Rogers7b078e82014-09-10 14:44:24 -0700132 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_klass, true, true)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700133 DCHECK(self->IsExceptionPending());
134 return nullptr; // Failure
Mathieu Chartier524507a2014-08-27 15:28:28 -0700135 } else {
136 DCHECK(!self->IsExceptionPending());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700137 }
138 return h_klass.Get();
139 }
140 return klass;
141}
142
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700143ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800144inline mirror::Class* CheckClassInitializedForObjectAlloc(mirror::Class* klass,
145 Thread* self,
146 bool* slow_path) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700147 if (UNLIKELY(!klass->IsInitialized())) {
148 StackHandleScope<1> hs(self);
149 Handle<mirror::Class> h_class(hs.NewHandle(klass));
150 // EnsureInitialized (the class initializer) might cause a GC.
151 // may cause us to suspend meaning that another thread may try to
152 // change the allocator while we are stuck in the entrypoints of
153 // an old allocator. Also, the class initialization may fail. To
154 // handle these cases we mark the slow path boolean as true so
155 // that the caller knows to check the allocator type to see if it
156 // has changed and to null-check the return value in case the
157 // initialization fails.
158 *slow_path = true;
Ian Rogers7b078e82014-09-10 14:44:24 -0700159 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true, true)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700160 DCHECK(self->IsExceptionPending());
161 return nullptr; // Failure
162 }
163 return h_class.Get();
164 }
165 return klass;
166}
167
168// Given the context of a calling Method, use its DexCache to resolve a type to a Class. If it
169// cannot be resolved, throw an error. If it can, use it to create an instance.
170// When verification/compiler hasn't been able to verify access, optionally perform an access
171// check.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700172template <bool kAccessCheck, bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700173ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800174inline mirror::Object* AllocObjectFromCode(uint32_t type_idx,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700175 ArtMethod* method,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800176 Thread* self,
177 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700178 bool slow_path = false;
179 mirror::Class* klass = CheckObjectAlloc<kAccessCheck>(type_idx, method, self, &slow_path);
180 if (UNLIKELY(slow_path)) {
181 if (klass == nullptr) {
182 return nullptr;
183 }
Mathieu Chartier14b0a5d2016-03-11 17:22:23 -0800184 // CheckObjectAlloc can cause thread suspension which means we may now be instrumented.
185 return klass->Alloc</*kInstrumented*/true>(
186 self,
187 Runtime::Current()->GetHeap()->GetCurrentAllocator());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700188 }
189 DCHECK(klass != nullptr);
190 return klass->Alloc<kInstrumented>(self, allocator_type);
191}
192
193// Given the context of a calling Method and a resolved class, create an instance.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700194template <bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700195ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800196inline mirror::Object* AllocObjectFromCodeResolved(mirror::Class* klass,
197 Thread* self,
198 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700199 DCHECK(klass != nullptr);
200 bool slow_path = false;
201 klass = CheckClassInitializedForObjectAlloc(klass, self, &slow_path);
202 if (UNLIKELY(slow_path)) {
203 if (klass == nullptr) {
204 return nullptr;
205 }
206 gc::Heap* heap = Runtime::Current()->GetHeap();
Roland Levillain91d65e02016-01-19 15:59:16 +0000207 // Pass in false since the object cannot be finalizable.
Mathieu Chartier14b0a5d2016-03-11 17:22:23 -0800208 // CheckClassInitializedForObjectAlloc can cause thread suspension which means we may now be
209 // instrumented.
210 return klass->Alloc</*kInstrumented*/true, false>(self, heap->GetCurrentAllocator());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700211 }
Roland Levillain91d65e02016-01-19 15:59:16 +0000212 // Pass in false since the object cannot be finalizable.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700213 return klass->Alloc<kInstrumented, false>(self, allocator_type);
214}
215
216// Given the context of a calling Method and an initialized class, create an instance.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700217template <bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700218ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800219inline mirror::Object* AllocObjectFromCodeInitialized(mirror::Class* klass,
220 Thread* self,
221 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700222 DCHECK(klass != nullptr);
Roland Levillain91d65e02016-01-19 15:59:16 +0000223 // Pass in false since the object cannot be finalizable.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700224 return klass->Alloc<kInstrumented, false>(self, allocator_type);
225}
226
227
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700228template <bool kAccessCheck>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700229ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800230inline mirror::Class* CheckArrayAlloc(uint32_t type_idx,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800231 int32_t component_count,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700232 ArtMethod* method,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800233 bool* slow_path) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700234 if (UNLIKELY(component_count < 0)) {
235 ThrowNegativeArraySizeException(component_count);
236 *slow_path = true;
237 return nullptr; // Failure
238 }
Vladimir Marko05792b92015-08-03 11:56:49 +0100239 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
240 size_t pointer_size = class_linker->GetImagePointerSize();
241 mirror::Class* klass = method->GetDexCacheResolvedType<false>(type_idx, pointer_size);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700242 if (UNLIKELY(klass == nullptr)) { // Not in dex cache so try to resolve
Vladimir Marko05792b92015-08-03 11:56:49 +0100243 klass = class_linker->ResolveType(type_idx, method);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700244 *slow_path = true;
245 if (klass == nullptr) { // Error
246 DCHECK(Thread::Current()->IsExceptionPending());
247 return nullptr; // Failure
248 }
249 CHECK(klass->IsArrayClass()) << PrettyClass(klass);
250 }
251 if (kAccessCheck) {
252 mirror::Class* referrer = method->GetDeclaringClass();
253 if (UNLIKELY(!referrer->CanAccess(klass))) {
254 ThrowIllegalAccessErrorClass(referrer, klass);
255 *slow_path = true;
256 return nullptr; // Failure
257 }
258 }
259 return klass;
260}
261
262// Given the context of a calling Method, use its DexCache to resolve a type to an array Class. If
263// it cannot be resolved, throw an error. If it can, use it to create an array.
264// When verification/compiler hasn't been able to verify access, optionally perform an access
265// check.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700266template <bool kAccessCheck, bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700267ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800268inline mirror::Array* AllocArrayFromCode(uint32_t type_idx,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800269 int32_t component_count,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700270 ArtMethod* method,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800271 Thread* self,
272 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700273 bool slow_path = false;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800274 mirror::Class* klass = CheckArrayAlloc<kAccessCheck>(type_idx, component_count, method,
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700275 &slow_path);
276 if (UNLIKELY(slow_path)) {
277 if (klass == nullptr) {
278 return nullptr;
279 }
280 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier14b0a5d2016-03-11 17:22:23 -0800281 // CheckArrayAlloc can cause thread suspension which means we may now be instrumented.
282 return mirror::Array::Alloc</*kInstrumented*/true>(self,
283 klass,
284 component_count,
285 klass->GetComponentSizeShift(),
286 heap->GetCurrentAllocator());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700287 }
288 return mirror::Array::Alloc<kInstrumented>(self, klass, component_count,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700289 klass->GetComponentSizeShift(), allocator_type);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700290}
291
292template <bool kAccessCheck, bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700293ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800294inline mirror::Array* AllocArrayFromCodeResolved(mirror::Class* klass,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800295 int32_t component_count,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700296 ArtMethod* method,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800297 Thread* self,
298 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700299 DCHECK(klass != nullptr);
300 if (UNLIKELY(component_count < 0)) {
301 ThrowNegativeArraySizeException(component_count);
302 return nullptr; // Failure
303 }
304 if (kAccessCheck) {
305 mirror::Class* referrer = method->GetDeclaringClass();
306 if (UNLIKELY(!referrer->CanAccess(klass))) {
307 ThrowIllegalAccessErrorClass(referrer, klass);
308 return nullptr; // Failure
309 }
310 }
311 // No need to retry a slow-path allocation as the above code won't cause a GC or thread
312 // suspension.
313 return mirror::Array::Alloc<kInstrumented>(self, klass, component_count,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700314 klass->GetComponentSizeShift(), allocator_type);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700315}
316
317template<FindFieldType type, bool access_check>
Mathieu Chartierbf369182016-02-04 18:13:32 -0800318inline ArtField* FindFieldFromCode(uint32_t field_idx,
319 ArtMethod* referrer,
320 Thread* self,
321 size_t expected_size) REQUIRES(!Roles::uninterruptible_) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700322 bool is_primitive;
323 bool is_set;
324 bool is_static;
325 switch (type) {
326 case InstanceObjectRead: is_primitive = false; is_set = false; is_static = false; break;
327 case InstanceObjectWrite: is_primitive = false; is_set = true; is_static = false; break;
328 case InstancePrimitiveRead: is_primitive = true; is_set = false; is_static = false; break;
329 case InstancePrimitiveWrite: is_primitive = true; is_set = true; is_static = false; break;
330 case StaticObjectRead: is_primitive = false; is_set = false; is_static = true; break;
331 case StaticObjectWrite: is_primitive = false; is_set = true; is_static = true; break;
332 case StaticPrimitiveRead: is_primitive = true; is_set = false; is_static = true; break;
333 case StaticPrimitiveWrite: // Keep GCC happy by having a default handler, fall-through.
334 default: is_primitive = true; is_set = true; is_static = true; break;
335 }
336 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Igor Murashkinf1b4c412016-02-01 17:40:19 -0800337
338 ArtField* resolved_field;
339 if (access_check) {
340 // Slow path: According to JLS 13.4.8, a linkage error may occur if a compile-time
341 // qualifying type of a field and the resolved run-time qualifying type of a field differed
342 // in their static-ness.
343 //
344 // In particular, don't assume the dex instruction already correctly knows if the
345 // real field is static or not. The resolution must not be aware of this.
346 ArtMethod* method = referrer->GetInterfaceMethodIfProxy(sizeof(void*));
347
348 StackHandleScope<2> hs(self);
349 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(method->GetDexCache()));
350 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(method->GetClassLoader()));
351
352 resolved_field = class_linker->ResolveFieldJLS(*method->GetDexFile(),
353 field_idx,
354 h_dex_cache,
355 h_class_loader);
356 } else {
357 // Fast path: Verifier already would've called ResolveFieldJLS and we wouldn't
358 // be executing here if there was a static/non-static mismatch.
359 resolved_field = class_linker->ResolveField(field_idx, referrer, is_static);
360 }
361
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700362 if (UNLIKELY(resolved_field == nullptr)) {
363 DCHECK(self->IsExceptionPending()); // Throw exception and unwind.
364 return nullptr; // Failure.
365 }
366 mirror::Class* fields_class = resolved_field->GetDeclaringClass();
367 if (access_check) {
368 if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
369 ThrowIncompatibleClassChangeErrorField(resolved_field, is_static, referrer);
370 return nullptr;
371 }
372 mirror::Class* referring_class = referrer->GetDeclaringClass();
373 if (UNLIKELY(!referring_class->CheckResolvedFieldAccess(fields_class, resolved_field,
374 field_idx))) {
375 DCHECK(self->IsExceptionPending()); // Throw exception and unwind.
376 return nullptr; // Failure.
377 }
378 if (UNLIKELY(is_set && resolved_field->IsFinal() && (fields_class != referring_class))) {
379 ThrowIllegalAccessErrorFinalField(referrer, resolved_field);
380 return nullptr; // Failure.
381 } else {
382 if (UNLIKELY(resolved_field->IsPrimitiveType() != is_primitive ||
383 resolved_field->FieldSize() != expected_size)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000384 self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700385 "Attempted read of %zd-bit %s on field '%s'",
386 expected_size * (32 / sizeof(int32_t)),
387 is_primitive ? "primitive" : "non-primitive",
388 PrettyField(resolved_field, true).c_str());
389 return nullptr; // Failure.
390 }
391 }
392 }
393 if (!is_static) {
394 // instance fields must be being accessed on an initialized class
395 return resolved_field;
396 } else {
397 // If the class is initialized we're done.
398 if (LIKELY(fields_class->IsInitialized())) {
399 return resolved_field;
400 } else {
401 StackHandleScope<1> hs(self);
402 Handle<mirror::Class> h_class(hs.NewHandle(fields_class));
Ian Rogers7b078e82014-09-10 14:44:24 -0700403 if (LIKELY(class_linker->EnsureInitialized(self, h_class, true, true))) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700404 // Otherwise let's ensure the class is initialized before resolving the field.
405 return resolved_field;
406 }
407 DCHECK(self->IsExceptionPending()); // Throw exception and unwind
408 return nullptr; // Failure.
409 }
410 }
411}
412
413// Explicit template declarations of FindFieldFromCode for all field access types.
414#define EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, _access_check) \
Mathieu Chartier90443472015-07-16 20:32:27 -0700415template SHARED_REQUIRES(Locks::mutator_lock_) ALWAYS_INLINE \
Mathieu Chartierc7853442015-03-27 14:35:38 -0700416ArtField* FindFieldFromCode<_type, _access_check>(uint32_t field_idx, \
Mathieu Chartiere401d142015-04-22 13:56:20 -0700417 ArtMethod* referrer, \
418 Thread* self, size_t expected_size) \
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700419
420#define EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(_type) \
421 EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, false); \
422 EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, true)
423
424EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstanceObjectRead);
425EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstanceObjectWrite);
426EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstancePrimitiveRead);
427EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstancePrimitiveWrite);
428EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticObjectRead);
429EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticObjectWrite);
430EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticPrimitiveRead);
431EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticPrimitiveWrite);
432
433#undef EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL
434#undef EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL
435
436template<InvokeType type, bool access_check>
Mathieu Chartiere401d142015-04-22 13:56:20 -0700437inline ArtMethod* FindMethodFromCode(uint32_t method_idx, mirror::Object** this_object,
Andreas Gampe3a357142015-08-07 17:20:11 -0700438 ArtMethod* referrer, Thread* self) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700439 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampe3a357142015-08-07 17:20:11 -0700440 ArtMethod* resolved_method = class_linker->GetResolvedMethod(method_idx, referrer);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700441 if (resolved_method == nullptr) {
442 StackHandleScope<1> hs(self);
443 mirror::Object* null_this = nullptr;
444 HandleWrapper<mirror::Object> h_this(
445 hs.NewHandleWrapper(type == kStatic ? &null_this : this_object));
Andreas Gampe42ef8ab2015-12-03 17:27:32 -0800446 constexpr ClassLinker::ResolveMode resolve_mode =
447 access_check ? ClassLinker::kForceICCECheck
448 : ClassLinker::kNoICCECheckForCache;
449 resolved_method = class_linker->ResolveMethod<resolve_mode>(self, method_idx, referrer, type);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700450 }
451 if (UNLIKELY(resolved_method == nullptr)) {
452 DCHECK(self->IsExceptionPending()); // Throw exception and unwind.
453 return nullptr; // Failure.
454 } else if (UNLIKELY(*this_object == nullptr && type != kStatic)) {
David Brazdil65902e82016-01-15 09:35:13 +0000455 if (UNLIKELY(resolved_method->GetDeclaringClass()->IsStringClass() &&
456 resolved_method->IsConstructor())) {
457 // Hack for String init:
458 //
459 // We assume that the input of String.<init> in verified code is always
460 // an unitialized reference. If it is a null constant, it must have been
461 // optimized out by the compiler. Do not throw NullPointerException.
462 } else {
463 // Maintain interpreter-like semantics where NullPointerException is thrown
464 // after potential NoSuchMethodError from class linker.
465 ThrowNullPointerExceptionForMethodAccess(method_idx, type);
466 return nullptr; // Failure.
467 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700468 } else if (access_check) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700469 mirror::Class* methods_class = resolved_method->GetDeclaringClass();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700470 bool can_access_resolved_method =
Alex Light705ad492015-09-21 11:36:30 -0700471 referrer->GetDeclaringClass()->CheckResolvedMethodAccess<type>(methods_class,
472 resolved_method,
473 method_idx);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700474 if (UNLIKELY(!can_access_resolved_method)) {
475 DCHECK(self->IsExceptionPending()); // Throw exception and unwind.
476 return nullptr; // Failure.
477 }
Nicolas Geoffray470d54f2015-10-02 17:14:53 +0100478 // Incompatible class change should have been handled in resolve method.
479 if (UNLIKELY(resolved_method->CheckIncompatibleClassChange(type))) {
480 ThrowIncompatibleClassChangeError(type, resolved_method->GetInvokeType(), resolved_method,
481 referrer);
482 return nullptr; // Failure.
483 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700484 }
485 switch (type) {
486 case kStatic:
487 case kDirect:
488 return resolved_method;
489 case kVirtual: {
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700490 mirror::Class* klass = (*this_object)->GetClass();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700491 uint16_t vtable_index = resolved_method->GetMethodIndex();
492 if (access_check &&
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700493 (!klass->HasVTable() ||
494 vtable_index >= static_cast<uint32_t>(klass->GetVTableLength()))) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700495 // Behavior to agree with that of the verifier.
496 ThrowNoSuchMethodError(type, resolved_method->GetDeclaringClass(),
497 resolved_method->GetName(), resolved_method->GetSignature());
498 return nullptr; // Failure.
499 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700500 DCHECK(klass->HasVTable()) << PrettyClass(klass);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700501 return klass->GetVTableEntry(vtable_index, class_linker->GetImagePointerSize());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700502 }
503 case kSuper: {
Alex Light705ad492015-09-21 11:36:30 -0700504 // TODO This lookup is quite slow.
505 // NB This is actually quite tricky to do any other way. We cannot use GetDeclaringClass since
506 // that will actually not be what we want in some cases where there are miranda methods or
507 // defaults. What we actually need is a GetContainingClass that says which classes virtuals
508 // this method is coming from.
509 mirror::Class* referring_class = referrer->GetDeclaringClass();
510 uint16_t method_type_idx = referring_class->GetDexFile().GetMethodId(method_idx).class_idx_;
511 mirror::Class* method_reference_class = class_linker->ResolveType(method_type_idx, referrer);
512 if (UNLIKELY(method_reference_class == nullptr)) {
513 // Bad type idx.
514 CHECK(self->IsExceptionPending());
515 return nullptr;
516 } else if (!method_reference_class->IsInterface()) {
Aart Bikf663e342016-04-04 17:28:59 -0700517 // It is not an interface. If the referring class is in the class hierarchy of the
518 // referenced class in the bytecode, we use its super class. Otherwise, we throw
519 // a NoSuchMethodError.
520 mirror::Class* super_class = nullptr;
521 if (method_reference_class->IsAssignableFrom(referring_class)) {
522 super_class = referring_class->GetSuperClass();
523 }
Alex Light705ad492015-09-21 11:36:30 -0700524 uint16_t vtable_index = resolved_method->GetMethodIndex();
525 if (access_check) {
526 // Check existence of super class.
Aart Bikf663e342016-04-04 17:28:59 -0700527 if (super_class == nullptr ||
528 !super_class->HasVTable() ||
Alex Light705ad492015-09-21 11:36:30 -0700529 vtable_index >= static_cast<uint32_t>(super_class->GetVTableLength())) {
530 // Behavior to agree with that of the verifier.
531 ThrowNoSuchMethodError(type, resolved_method->GetDeclaringClass(),
532 resolved_method->GetName(), resolved_method->GetSignature());
533 return nullptr; // Failure.
534 }
535 }
536 DCHECK(super_class != nullptr);
537 DCHECK(super_class->HasVTable());
538 return super_class->GetVTableEntry(vtable_index, class_linker->GetImagePointerSize());
539 } else {
540 // It is an interface.
541 if (access_check) {
542 if (!method_reference_class->IsAssignableFrom((*this_object)->GetClass())) {
543 ThrowIncompatibleClassChangeErrorClassForInterfaceSuper(resolved_method,
544 method_reference_class,
545 *this_object,
546 referrer);
547 return nullptr; // Failure.
548 }
549 }
550 // TODO We can do better than this for a (compiled) fastpath.
551 ArtMethod* result = method_reference_class->FindVirtualMethodForInterfaceSuper(
552 resolved_method, class_linker->GetImagePointerSize());
553 // Throw an NSME if nullptr;
554 if (result == nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700555 ThrowNoSuchMethodError(type, resolved_method->GetDeclaringClass(),
556 resolved_method->GetName(), resolved_method->GetSignature());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700557 }
Alex Light705ad492015-09-21 11:36:30 -0700558 return result;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700559 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700560 }
561 case kInterface: {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000562 uint32_t imt_index = resolved_method->GetDexMethodIndex() % ImTable::kSize;
563 size_t pointer_size = class_linker->GetImagePointerSize();
564 ArtMethod* imt_method = (*this_object)->GetClass()->GetImt(pointer_size)->
565 Get(imt_index, pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000566 if (!imt_method->IsRuntimeMethod()) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700567 if (kIsDebugBuild) {
568 mirror::Class* klass = (*this_object)->GetClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700569 ArtMethod* method = klass->FindVirtualMethodForInterface(
570 resolved_method, class_linker->GetImagePointerSize());
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700571 CHECK_EQ(imt_method, method) << PrettyMethod(resolved_method) << " / " <<
572 PrettyMethod(imt_method) << " / " << PrettyMethod(method) << " / " <<
573 PrettyClass(klass);
574 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700575 return imt_method;
576 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700577 ArtMethod* interface_method = (*this_object)->GetClass()->FindVirtualMethodForInterface(
578 resolved_method, class_linker->GetImagePointerSize());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700579 if (UNLIKELY(interface_method == nullptr)) {
580 ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(resolved_method,
Andreas Gampe3a357142015-08-07 17:20:11 -0700581 *this_object, referrer);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700582 return nullptr; // Failure.
583 }
584 return interface_method;
585 }
586 }
587 default:
588 LOG(FATAL) << "Unknown invoke type " << type;
589 return nullptr; // Failure.
590 }
591}
592
593// Explicit template declarations of FindMethodFromCode for all invoke types.
594#define EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, _access_check) \
Mathieu Chartier90443472015-07-16 20:32:27 -0700595 template SHARED_REQUIRES(Locks::mutator_lock_) ALWAYS_INLINE \
Mathieu Chartiere401d142015-04-22 13:56:20 -0700596 ArtMethod* FindMethodFromCode<_type, _access_check>(uint32_t method_idx, \
597 mirror::Object** this_object, \
Andreas Gampe3a357142015-08-07 17:20:11 -0700598 ArtMethod* referrer, \
Mathieu Chartiere401d142015-04-22 13:56:20 -0700599 Thread* self)
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700600#define EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(_type) \
601 EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, false); \
602 EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, true)
603
604EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kStatic);
605EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kDirect);
606EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kVirtual);
607EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kSuper);
608EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kInterface);
609
610#undef EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL
611#undef EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL
612
613// Fast path field resolution that can't initialize classes or throw exceptions.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700614inline ArtField* FindFieldFast(uint32_t field_idx, ArtMethod* referrer, FindFieldType type,
615 size_t expected_size) {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700616 ArtField* resolved_field =
617 referrer->GetDeclaringClass()->GetDexCache()->GetResolvedField(field_idx, sizeof(void*));
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700618 if (UNLIKELY(resolved_field == nullptr)) {
619 return nullptr;
620 }
621 // Check for incompatible class change.
622 bool is_primitive;
623 bool is_set;
624 bool is_static;
625 switch (type) {
626 case InstanceObjectRead: is_primitive = false; is_set = false; is_static = false; break;
627 case InstanceObjectWrite: is_primitive = false; is_set = true; is_static = false; break;
628 case InstancePrimitiveRead: is_primitive = true; is_set = false; is_static = false; break;
629 case InstancePrimitiveWrite: is_primitive = true; is_set = true; is_static = false; break;
630 case StaticObjectRead: is_primitive = false; is_set = false; is_static = true; break;
631 case StaticObjectWrite: is_primitive = false; is_set = true; is_static = true; break;
632 case StaticPrimitiveRead: is_primitive = true; is_set = false; is_static = true; break;
633 case StaticPrimitiveWrite: is_primitive = true; is_set = true; is_static = true; break;
634 default:
Ian Rogers2c4257b2014-10-24 14:20:06 -0700635 LOG(FATAL) << "UNREACHABLE";
636 UNREACHABLE();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700637 }
638 if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
639 // Incompatible class change.
640 return nullptr;
641 }
642 mirror::Class* fields_class = resolved_field->GetDeclaringClass();
643 if (is_static) {
644 // Check class is initialized else fail so that we can contend to initialize the class with
645 // other threads that may be racing to do this.
646 if (UNLIKELY(!fields_class->IsInitialized())) {
647 return nullptr;
648 }
649 }
650 mirror::Class* referring_class = referrer->GetDeclaringClass();
651 if (UNLIKELY(!referring_class->CanAccess(fields_class) ||
Mathieu Chartiere401d142015-04-22 13:56:20 -0700652 !referring_class->CanAccessMember(fields_class, resolved_field->GetAccessFlags()) ||
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700653 (is_set && resolved_field->IsFinal() && (fields_class != referring_class)))) {
654 // Illegal access.
655 return nullptr;
656 }
657 if (UNLIKELY(resolved_field->IsPrimitiveType() != is_primitive ||
658 resolved_field->FieldSize() != expected_size)) {
659 return nullptr;
660 }
661 return resolved_field;
662}
663
664// Fast path method resolution that can't throw exceptions.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700665inline ArtMethod* FindMethodFast(uint32_t method_idx, mirror::Object* this_object,
666 ArtMethod* referrer, bool access_check, InvokeType type) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700667 if (UNLIKELY(this_object == nullptr && type != kStatic)) {
668 return nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700669 }
Alex Light705ad492015-09-21 11:36:30 -0700670 mirror::Class* referring_class = referrer->GetDeclaringClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700671 ArtMethod* resolved_method =
Alex Light705ad492015-09-21 11:36:30 -0700672 referring_class->GetDexCache()->GetResolvedMethod(method_idx, sizeof(void*));
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700673 if (UNLIKELY(resolved_method == nullptr)) {
674 return nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700675 }
676 if (access_check) {
677 // Check for incompatible class change errors and access.
678 bool icce = resolved_method->CheckIncompatibleClassChange(type);
679 if (UNLIKELY(icce)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700680 return nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700681 }
682 mirror::Class* methods_class = resolved_method->GetDeclaringClass();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700683 if (UNLIKELY(!referring_class->CanAccess(methods_class) ||
684 !referring_class->CanAccessMember(methods_class,
685 resolved_method->GetAccessFlags()))) {
686 // Potential illegal access, may need to refine the method's class.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700687 return nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700688 }
689 }
690 if (type == kInterface) { // Most common form of slow path dispatch.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700691 return this_object->GetClass()->FindVirtualMethodForInterface(resolved_method, sizeof(void*));
Jeff Hao207a37d2014-10-29 17:24:25 -0700692 } else if (type == kStatic || type == kDirect) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700693 return resolved_method;
694 } else if (type == kSuper) {
Alex Light705ad492015-09-21 11:36:30 -0700695 // TODO This lookup is rather slow.
696 uint16_t method_type_idx = referring_class->GetDexFile().GetMethodId(method_idx).class_idx_;
697 mirror::Class* method_reference_class =
698 referring_class->GetDexCache()->GetResolvedType(method_type_idx);
699 if (method_reference_class == nullptr) {
700 // Need to do full type resolution...
Nicolas Geoffraye5234232015-12-02 09:06:11 +0000701 return nullptr;
Alex Light705ad492015-09-21 11:36:30 -0700702 } else if (!method_reference_class->IsInterface()) {
Aart Bikf663e342016-04-04 17:28:59 -0700703 // It is not an interface. If the referring class is in the class hierarchy of the
704 // referenced class in the bytecode, we use its super class. Otherwise, we cannot
705 // resolve the method.
706 if (!method_reference_class->IsAssignableFrom(referring_class)) {
707 return nullptr;
708 }
709 mirror::Class* super_class = referring_class->GetSuperClass();
Alex Light705ad492015-09-21 11:36:30 -0700710 if (resolved_method->GetMethodIndex() >= super_class->GetVTableLength()) {
711 // The super class does not have the method.
712 return nullptr;
713 }
714 return super_class->GetVTableEntry(resolved_method->GetMethodIndex(), sizeof(void*));
715 } else {
716 return method_reference_class->FindVirtualMethodForInterfaceSuper(
717 resolved_method, sizeof(void*));
Nicolas Geoffraye5234232015-12-02 09:06:11 +0000718 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700719 } else {
720 DCHECK(type == kVirtual);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700721 return this_object->GetClass()->GetVTableEntry(
722 resolved_method->GetMethodIndex(), sizeof(void*));
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700723 }
724}
725
Mathieu Chartiere401d142015-04-22 13:56:20 -0700726inline mirror::Class* ResolveVerifyAndClinit(uint32_t type_idx, ArtMethod* referrer, Thread* self,
727 bool can_run_clinit, bool verify_access) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700728 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
729 mirror::Class* klass = class_linker->ResolveType(type_idx, referrer);
730 if (UNLIKELY(klass == nullptr)) {
731 CHECK(self->IsExceptionPending());
732 return nullptr; // Failure - Indicate to caller to deliver exception
733 }
734 // Perform access check if necessary.
735 mirror::Class* referring_class = referrer->GetDeclaringClass();
736 if (verify_access && UNLIKELY(!referring_class->CanAccess(klass))) {
737 ThrowIllegalAccessErrorClass(referring_class, klass);
738 return nullptr; // Failure - Indicate to caller to deliver exception
739 }
740 // If we're just implementing const-class, we shouldn't call <clinit>.
741 if (!can_run_clinit) {
742 return klass;
743 }
744 // If we are the <clinit> of this class, just return our storage.
745 //
746 // Do not set the DexCache InitializedStaticStorage, since that implies <clinit> has finished
747 // running.
748 if (klass == referring_class && referrer->IsConstructor() && referrer->IsStatic()) {
749 return klass;
750 }
751 StackHandleScope<1> hs(self);
752 Handle<mirror::Class> h_class(hs.NewHandle(klass));
Ian Rogers7b078e82014-09-10 14:44:24 -0700753 if (!class_linker->EnsureInitialized(self, h_class, true, true)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700754 CHECK(self->IsExceptionPending());
755 return nullptr; // Failure - Indicate to caller to deliver exception
756 }
757 return h_class.Get();
758}
759
Mathieu Chartiere401d142015-04-22 13:56:20 -0700760inline mirror::String* ResolveStringFromCode(ArtMethod* referrer, uint32_t string_idx) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700761 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
762 return class_linker->ResolveString(string_idx, referrer);
763}
764
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800765inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700766 // Save any pending exception over monitor exit call.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700767 mirror::Throwable* saved_exception = nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700768 if (UNLIKELY(self->IsExceptionPending())) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000769 saved_exception = self->GetException();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700770 self->ClearException();
771 }
772 // Decode locked object and unlock, before popping local references.
773 self->DecodeJObject(locked)->MonitorExit(self);
774 if (UNLIKELY(self->IsExceptionPending())) {
775 LOG(FATAL) << "Synchronized JNI code returning with an exception:\n"
776 << saved_exception->Dump()
777 << "\nEncountered second exception during implicit MonitorExit:\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000778 << self->GetException()->Dump();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700779 }
780 // Restore pending exception.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700781 if (saved_exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000782 self->SetException(saved_exception);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700783 }
784}
785
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700786template <typename INT_TYPE, typename FLOAT_TYPE>
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800787inline INT_TYPE art_float_to_integral(FLOAT_TYPE f) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700788 const INT_TYPE kMaxInt = static_cast<INT_TYPE>(std::numeric_limits<INT_TYPE>::max());
789 const INT_TYPE kMinInt = static_cast<INT_TYPE>(std::numeric_limits<INT_TYPE>::min());
790 const FLOAT_TYPE kMaxIntAsFloat = static_cast<FLOAT_TYPE>(kMaxInt);
791 const FLOAT_TYPE kMinIntAsFloat = static_cast<FLOAT_TYPE>(kMinInt);
792 if (LIKELY(f > kMinIntAsFloat)) {
793 if (LIKELY(f < kMaxIntAsFloat)) {
794 return static_cast<INT_TYPE>(f);
795 } else {
796 return kMaxInt;
797 }
798 } else {
799 return (f != f) ? 0 : kMinInt; // f != f implies NaN
800 }
801}
802
803} // namespace art
804
805#endif // ART_RUNTIME_ENTRYPOINTS_ENTRYPOINT_UTILS_INL_H_