blob: 14110c24badca9165b7a73a2469322591c927de0 [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
Matthew Gharrity465ecc82016-07-19 21:32:52 +000022#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070023#include "base/enums.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070024#include "class_linker-inl.h"
25#include "common_throws.h"
26#include "dex_file.h"
Vladimir Marko5ea536a2015-04-20 20:11:30 +010027#include "entrypoints/quick/callee_save_frame.h"
28#include "handle_scope-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070029#include "indirect_reference_table.h"
30#include "invoke_type.h"
31#include "jni_internal.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070032#include "mirror/array.h"
33#include "mirror/class-inl.h"
34#include "mirror/object-inl.h"
35#include "mirror/throwable.h"
Vladimir Marko5ea536a2015-04-20 20:11:30 +010036#include "nth_caller_visitor.h"
37#include "runtime.h"
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010038#include "stack_map.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070039#include "thread.h"
40
41namespace art {
42
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)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070047 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +010048 // This method is being used by artQuickResolutionTrampoline, before it sets up
49 // the passed parameters in a GC friendly way. Therefore we must never be
50 // suspended while executing it.
Mathieu Chartier268764d2016-09-13 12:09:38 -070051 ScopedAssertNoThreadSuspension sants(__FUNCTION__);
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +010052
David Srbecky61b28a12016-02-25 21:55:03 +000053 uint32_t method_index = inline_info.GetMethodIndexAtDepth(encoding, inlining_depth);
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +010054 InvokeType invoke_type = static_cast<InvokeType>(
David Srbecky61b28a12016-02-25 21:55:03 +000055 inline_info.GetInvokeTypeAtDepth(encoding, inlining_depth));
Andreas Gampe542451c2016-07-26 09:02:02 -070056 ArtMethod* inlined_method = outer_method->GetDexCacheResolvedMethod(method_index,
57 kRuntimePointerSize);
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +010058 if (!inlined_method->IsRuntimeMethod()) {
59 return inlined_method;
Mathieu Chartier45bf2502016-03-31 11:07:09 -070060 }
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010061
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +010062 // The method in the dex cache is the runtime method responsible for invoking
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010063 // the stub that will then update the dex cache. Therefore, we need to do the
64 // resolution ourselves.
Nicolas Geoffray3976e5e2015-06-15 08:58:03 +010065
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +010066 // We first find the dex cache of our caller. If it is the outer method, we can directly
67 // use its dex cache. Otherwise, we also need to resolve our caller.
68 ArtMethod* caller = outer_method;
69 if (inlining_depth != 0) {
70 caller = GetResolvedMethod(outer_method,
71 inline_info,
72 encoding,
73 inlining_depth - 1);
74 }
75 DCHECK_EQ(caller->GetDexCache(), outer_method->GetDexCache())
76 << "Compiler only supports inlining calls within the same dex cache";
77 const DexFile* dex_file = outer_method->GetDexFile();
78 const DexFile::MethodId& method_id = dex_file->GetMethodId(method_index);
79
80 if (inline_info.GetDexPcAtDepth(encoding, inlining_depth) == static_cast<uint32_t>(-1)) {
81 // "charAt" special case. It is the only non-leaf method we inline across dex files.
82 if (kIsDebugBuild) {
83 const char* name = dex_file->StringDataByIdx(method_id.name_idx_);
84 DCHECK_EQ(std::string(name), "charAt");
85 DCHECK_EQ(std::string(dex_file->GetMethodShorty(method_id)), "CI")
86 << std::string(dex_file->GetMethodShorty(method_id));
87 DCHECK_EQ(std::string(dex_file->StringByTypeIdx(method_id.class_idx_)), "Ljava/lang/String;")
88 << std::string(dex_file->StringByTypeIdx(method_id.class_idx_));
89 }
90 mirror::Class* cls =
91 Runtime::Current()->GetClassLinker()->GetClassRoot(ClassLinker::kJavaLangString);
92 // Update the dex cache for future lookups.
93 caller->GetDexCache()->SetResolvedType(method_id.class_idx_, cls);
Andreas Gampe542451c2016-07-26 09:02:02 -070094 inlined_method = cls->FindVirtualMethod("charAt", "(I)C", kRuntimePointerSize);
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +010095 } else {
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +010096 mirror::Class* klass = caller->GetDexCache()->GetResolvedType(method_id.class_idx_);
97 DCHECK_EQ(klass->GetDexCache(), caller->GetDexCache())
98 << "Compiler only supports inlining calls within the same dex cache";
99 switch (invoke_type) {
100 case kDirect:
101 case kStatic:
102 inlined_method =
Andreas Gampe542451c2016-07-26 09:02:02 -0700103 klass->FindDirectMethod(klass->GetDexCache(), method_index, kRuntimePointerSize);
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100104 break;
105 case kSuper:
106 case kVirtual:
107 inlined_method =
Andreas Gampe542451c2016-07-26 09:02:02 -0700108 klass->FindVirtualMethod(klass->GetDexCache(), method_index, kRuntimePointerSize);
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100109 break;
110 default:
111 LOG(FATAL) << "Unimplemented inlined invocation type: " << invoke_type;
112 UNREACHABLE();
113 }
Nicolas Geoffray32c9ea52015-06-12 14:52:33 +0100114 }
115
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100116 // Update the dex cache for future lookups. Note that for static methods, this is safe
117 // when the class is being initialized, as the entrypoint for the ArtMethod is at
118 // this point still the resolution trampoline.
Andreas Gampe542451c2016-07-26 09:02:02 -0700119 outer_method->SetDexCacheResolvedMethod(method_index, inlined_method, kRuntimePointerSize);
Nicolas Geoffrayc6df1e32016-07-04 10:15:47 +0100120 return inlined_method;
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100121}
122
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700123inline ArtMethod* GetCalleeSaveMethodCaller(Thread* self, Runtime::CalleeSaveType type) {
Nicolas Geoffray7ea6a172015-05-19 18:58:54 +0100124 return GetCalleeSaveMethodCaller(
125 self->GetManagedStack()->GetTopQuickFrame(), type, true /* do_caller_check */);
126}
127
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700128template <const bool kAccessCheck>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700129ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800130inline mirror::Class* CheckObjectAlloc(uint32_t type_idx,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700131 ArtMethod* method,
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700132 Thread* self,
133 bool* slow_path) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100134 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampe542451c2016-07-26 09:02:02 -0700135 PointerSize pointer_size = class_linker->GetImagePointerSize();
Vladimir Marko05792b92015-08-03 11:56:49 +0100136 mirror::Class* klass = method->GetDexCacheResolvedType<false>(type_idx, pointer_size);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700137 if (UNLIKELY(klass == nullptr)) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100138 klass = class_linker->ResolveType(type_idx, method);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700139 *slow_path = true;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700140 if (klass == nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700141 DCHECK(self->IsExceptionPending());
142 return nullptr; // Failure
Mathieu Chartier524507a2014-08-27 15:28:28 -0700143 } else {
144 DCHECK(!self->IsExceptionPending());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700145 }
146 }
147 if (kAccessCheck) {
148 if (UNLIKELY(!klass->IsInstantiable())) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000149 self->ThrowNewException("Ljava/lang/InstantiationError;", PrettyDescriptor(klass).c_str());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700150 *slow_path = true;
151 return nullptr; // Failure
152 }
Aart Bikdb698f12016-07-25 17:52:22 -0700153 if (UNLIKELY(klass->IsClassClass())) {
154 ThrowIllegalAccessError(nullptr, "Class %s is inaccessible", PrettyDescriptor(klass).c_str());
155 *slow_path = true;
156 return nullptr; // Failure
157 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700158 mirror::Class* referrer = method->GetDeclaringClass();
159 if (UNLIKELY(!referrer->CanAccess(klass))) {
160 ThrowIllegalAccessErrorClass(referrer, klass);
161 *slow_path = true;
162 return nullptr; // Failure
163 }
164 }
165 if (UNLIKELY(!klass->IsInitialized())) {
166 StackHandleScope<1> hs(self);
167 Handle<mirror::Class> h_klass(hs.NewHandle(klass));
168 // EnsureInitialized (the class initializer) might cause a GC.
169 // may cause us to suspend meaning that another thread may try to
170 // change the allocator while we are stuck in the entrypoints of
171 // an old allocator. Also, the class initialization may fail. To
172 // handle these cases we mark the slow path boolean as true so
173 // that the caller knows to check the allocator type to see if it
174 // has changed and to null-check the return value in case the
175 // initialization fails.
176 *slow_path = true;
Ian Rogers7b078e82014-09-10 14:44:24 -0700177 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_klass, true, true)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700178 DCHECK(self->IsExceptionPending());
179 return nullptr; // Failure
Mathieu Chartier524507a2014-08-27 15:28:28 -0700180 } else {
181 DCHECK(!self->IsExceptionPending());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700182 }
183 return h_klass.Get();
184 }
185 return klass;
186}
187
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700188ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800189inline mirror::Class* CheckClassInitializedForObjectAlloc(mirror::Class* klass,
190 Thread* self,
191 bool* slow_path) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700192 if (UNLIKELY(!klass->IsInitialized())) {
193 StackHandleScope<1> hs(self);
194 Handle<mirror::Class> h_class(hs.NewHandle(klass));
195 // EnsureInitialized (the class initializer) might cause a GC.
196 // may cause us to suspend meaning that another thread may try to
197 // change the allocator while we are stuck in the entrypoints of
198 // an old allocator. Also, the class initialization may fail. To
199 // handle these cases we mark the slow path boolean as true so
200 // that the caller knows to check the allocator type to see if it
201 // has changed and to null-check the return value in case the
202 // initialization fails.
203 *slow_path = true;
Ian Rogers7b078e82014-09-10 14:44:24 -0700204 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true, true)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700205 DCHECK(self->IsExceptionPending());
206 return nullptr; // Failure
207 }
208 return h_class.Get();
209 }
210 return klass;
211}
212
213// Given the context of a calling Method, use its DexCache to resolve a type to a Class. If it
214// cannot be resolved, throw an error. If it can, use it to create an instance.
215// When verification/compiler hasn't been able to verify access, optionally perform an access
216// check.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700217template <bool kAccessCheck, bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700218ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800219inline mirror::Object* AllocObjectFromCode(uint32_t type_idx,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700220 ArtMethod* method,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800221 Thread* self,
222 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700223 bool slow_path = false;
224 mirror::Class* klass = CheckObjectAlloc<kAccessCheck>(type_idx, method, self, &slow_path);
225 if (UNLIKELY(slow_path)) {
226 if (klass == nullptr) {
227 return nullptr;
228 }
Mathieu Chartier14b0a5d2016-03-11 17:22:23 -0800229 // CheckObjectAlloc can cause thread suspension which means we may now be instrumented.
230 return klass->Alloc</*kInstrumented*/true>(
231 self,
232 Runtime::Current()->GetHeap()->GetCurrentAllocator());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700233 }
234 DCHECK(klass != nullptr);
235 return klass->Alloc<kInstrumented>(self, allocator_type);
236}
237
238// Given the context of a calling Method and a resolved class, create an instance.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700239template <bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700240ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800241inline mirror::Object* AllocObjectFromCodeResolved(mirror::Class* klass,
242 Thread* self,
243 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700244 DCHECK(klass != nullptr);
245 bool slow_path = false;
246 klass = CheckClassInitializedForObjectAlloc(klass, self, &slow_path);
247 if (UNLIKELY(slow_path)) {
248 if (klass == nullptr) {
249 return nullptr;
250 }
251 gc::Heap* heap = Runtime::Current()->GetHeap();
Roland Levillain91d65e02016-01-19 15:59:16 +0000252 // Pass in false since the object cannot be finalizable.
Mathieu Chartier14b0a5d2016-03-11 17:22:23 -0800253 // CheckClassInitializedForObjectAlloc can cause thread suspension which means we may now be
254 // instrumented.
255 return klass->Alloc</*kInstrumented*/true, false>(self, heap->GetCurrentAllocator());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700256 }
Roland Levillain91d65e02016-01-19 15:59:16 +0000257 // Pass in false since the object cannot be finalizable.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700258 return klass->Alloc<kInstrumented, false>(self, allocator_type);
259}
260
261// Given the context of a calling Method and an initialized class, create an instance.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700262template <bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700263ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800264inline mirror::Object* AllocObjectFromCodeInitialized(mirror::Class* klass,
265 Thread* self,
266 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700267 DCHECK(klass != nullptr);
Roland Levillain91d65e02016-01-19 15:59:16 +0000268 // Pass in false since the object cannot be finalizable.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700269 return klass->Alloc<kInstrumented, false>(self, allocator_type);
270}
271
272
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700273template <bool kAccessCheck>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700274ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800275inline mirror::Class* CheckArrayAlloc(uint32_t type_idx,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800276 int32_t component_count,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700277 ArtMethod* method,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800278 bool* slow_path) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700279 if (UNLIKELY(component_count < 0)) {
280 ThrowNegativeArraySizeException(component_count);
281 *slow_path = true;
282 return nullptr; // Failure
283 }
Vladimir Marko05792b92015-08-03 11:56:49 +0100284 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampe542451c2016-07-26 09:02:02 -0700285 PointerSize pointer_size = class_linker->GetImagePointerSize();
Vladimir Marko05792b92015-08-03 11:56:49 +0100286 mirror::Class* klass = method->GetDexCacheResolvedType<false>(type_idx, pointer_size);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700287 if (UNLIKELY(klass == nullptr)) { // Not in dex cache so try to resolve
Vladimir Marko05792b92015-08-03 11:56:49 +0100288 klass = class_linker->ResolveType(type_idx, method);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700289 *slow_path = true;
290 if (klass == nullptr) { // Error
291 DCHECK(Thread::Current()->IsExceptionPending());
292 return nullptr; // Failure
293 }
294 CHECK(klass->IsArrayClass()) << PrettyClass(klass);
295 }
296 if (kAccessCheck) {
297 mirror::Class* referrer = method->GetDeclaringClass();
298 if (UNLIKELY(!referrer->CanAccess(klass))) {
299 ThrowIllegalAccessErrorClass(referrer, klass);
300 *slow_path = true;
301 return nullptr; // Failure
302 }
303 }
304 return klass;
305}
306
307// Given the context of a calling Method, use its DexCache to resolve a type to an array Class. If
308// it cannot be resolved, throw an error. If it can, use it to create an array.
309// When verification/compiler hasn't been able to verify access, optionally perform an access
310// check.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700311template <bool kAccessCheck, bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700312ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800313inline mirror::Array* AllocArrayFromCode(uint32_t type_idx,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800314 int32_t component_count,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700315 ArtMethod* method,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800316 Thread* self,
317 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700318 bool slow_path = false;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800319 mirror::Class* klass = CheckArrayAlloc<kAccessCheck>(type_idx, component_count, method,
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700320 &slow_path);
321 if (UNLIKELY(slow_path)) {
322 if (klass == nullptr) {
323 return nullptr;
324 }
325 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier14b0a5d2016-03-11 17:22:23 -0800326 // CheckArrayAlloc can cause thread suspension which means we may now be instrumented.
327 return mirror::Array::Alloc</*kInstrumented*/true>(self,
328 klass,
329 component_count,
330 klass->GetComponentSizeShift(),
331 heap->GetCurrentAllocator());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700332 }
333 return mirror::Array::Alloc<kInstrumented>(self, klass, component_count,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700334 klass->GetComponentSizeShift(), allocator_type);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700335}
336
337template <bool kAccessCheck, bool kInstrumented>
Hiroshi Yamauchieb1e9292014-08-06 12:41:15 -0700338ALWAYS_INLINE
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800339inline mirror::Array* AllocArrayFromCodeResolved(mirror::Class* klass,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800340 int32_t component_count,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700341 ArtMethod* method,
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800342 Thread* self,
343 gc::AllocatorType allocator_type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700344 DCHECK(klass != nullptr);
345 if (UNLIKELY(component_count < 0)) {
346 ThrowNegativeArraySizeException(component_count);
347 return nullptr; // Failure
348 }
349 if (kAccessCheck) {
350 mirror::Class* referrer = method->GetDeclaringClass();
351 if (UNLIKELY(!referrer->CanAccess(klass))) {
352 ThrowIllegalAccessErrorClass(referrer, klass);
353 return nullptr; // Failure
354 }
355 }
356 // No need to retry a slow-path allocation as the above code won't cause a GC or thread
357 // suspension.
358 return mirror::Array::Alloc<kInstrumented>(self, klass, component_count,
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700359 klass->GetComponentSizeShift(), allocator_type);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700360}
361
362template<FindFieldType type, bool access_check>
Mathieu Chartierbf369182016-02-04 18:13:32 -0800363inline ArtField* FindFieldFromCode(uint32_t field_idx,
364 ArtMethod* referrer,
365 Thread* self,
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700366 size_t expected_size) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700367 bool is_primitive;
368 bool is_set;
369 bool is_static;
370 switch (type) {
371 case InstanceObjectRead: is_primitive = false; is_set = false; is_static = false; break;
372 case InstanceObjectWrite: is_primitive = false; is_set = true; is_static = false; break;
373 case InstancePrimitiveRead: is_primitive = true; is_set = false; is_static = false; break;
374 case InstancePrimitiveWrite: is_primitive = true; is_set = true; is_static = false; break;
375 case StaticObjectRead: is_primitive = false; is_set = false; is_static = true; break;
376 case StaticObjectWrite: is_primitive = false; is_set = true; is_static = true; break;
377 case StaticPrimitiveRead: is_primitive = true; is_set = false; is_static = true; break;
378 case StaticPrimitiveWrite: // Keep GCC happy by having a default handler, fall-through.
379 default: is_primitive = true; is_set = true; is_static = true; break;
380 }
381 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Igor Murashkinf1b4c412016-02-01 17:40:19 -0800382
383 ArtField* resolved_field;
384 if (access_check) {
385 // Slow path: According to JLS 13.4.8, a linkage error may occur if a compile-time
386 // qualifying type of a field and the resolved run-time qualifying type of a field differed
387 // in their static-ness.
388 //
389 // In particular, don't assume the dex instruction already correctly knows if the
390 // real field is static or not. The resolution must not be aware of this.
Andreas Gampe542451c2016-07-26 09:02:02 -0700391 ArtMethod* method = referrer->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Igor Murashkinf1b4c412016-02-01 17:40:19 -0800392
393 StackHandleScope<2> hs(self);
394 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(method->GetDexCache()));
395 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(method->GetClassLoader()));
396
397 resolved_field = class_linker->ResolveFieldJLS(*method->GetDexFile(),
398 field_idx,
399 h_dex_cache,
400 h_class_loader);
401 } else {
402 // Fast path: Verifier already would've called ResolveFieldJLS and we wouldn't
403 // be executing here if there was a static/non-static mismatch.
404 resolved_field = class_linker->ResolveField(field_idx, referrer, is_static);
405 }
406
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700407 if (UNLIKELY(resolved_field == nullptr)) {
408 DCHECK(self->IsExceptionPending()); // Throw exception and unwind.
409 return nullptr; // Failure.
410 }
411 mirror::Class* fields_class = resolved_field->GetDeclaringClass();
412 if (access_check) {
413 if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
414 ThrowIncompatibleClassChangeErrorField(resolved_field, is_static, referrer);
415 return nullptr;
416 }
417 mirror::Class* referring_class = referrer->GetDeclaringClass();
418 if (UNLIKELY(!referring_class->CheckResolvedFieldAccess(fields_class, resolved_field,
419 field_idx))) {
420 DCHECK(self->IsExceptionPending()); // Throw exception and unwind.
421 return nullptr; // Failure.
422 }
423 if (UNLIKELY(is_set && resolved_field->IsFinal() && (fields_class != referring_class))) {
424 ThrowIllegalAccessErrorFinalField(referrer, resolved_field);
425 return nullptr; // Failure.
426 } else {
427 if (UNLIKELY(resolved_field->IsPrimitiveType() != is_primitive ||
428 resolved_field->FieldSize() != expected_size)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000429 self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;",
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700430 "Attempted read of %zd-bit %s on field '%s'",
431 expected_size * (32 / sizeof(int32_t)),
432 is_primitive ? "primitive" : "non-primitive",
433 PrettyField(resolved_field, true).c_str());
434 return nullptr; // Failure.
435 }
436 }
437 }
438 if (!is_static) {
439 // instance fields must be being accessed on an initialized class
440 return resolved_field;
441 } else {
442 // If the class is initialized we're done.
443 if (LIKELY(fields_class->IsInitialized())) {
444 return resolved_field;
445 } else {
446 StackHandleScope<1> hs(self);
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700447 if (LIKELY(class_linker->EnsureInitialized(self, hs.NewHandle(fields_class), true, true))) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700448 // Otherwise let's ensure the class is initialized before resolving the field.
449 return resolved_field;
450 }
451 DCHECK(self->IsExceptionPending()); // Throw exception and unwind
452 return nullptr; // Failure.
453 }
454 }
455}
456
457// Explicit template declarations of FindFieldFromCode for all field access types.
458#define EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, _access_check) \
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700459template REQUIRES_SHARED(Locks::mutator_lock_) ALWAYS_INLINE \
Mathieu Chartierc7853442015-03-27 14:35:38 -0700460ArtField* FindFieldFromCode<_type, _access_check>(uint32_t field_idx, \
Mathieu Chartiere401d142015-04-22 13:56:20 -0700461 ArtMethod* referrer, \
462 Thread* self, size_t expected_size) \
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700463
464#define EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(_type) \
465 EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, false); \
466 EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, true)
467
468EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstanceObjectRead);
469EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstanceObjectWrite);
470EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstancePrimitiveRead);
471EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstancePrimitiveWrite);
472EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticObjectRead);
473EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticObjectWrite);
474EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticPrimitiveRead);
475EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticPrimitiveWrite);
476
477#undef EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL
478#undef EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL
479
480template<InvokeType type, bool access_check>
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700481inline ArtMethod* FindMethodFromCode(uint32_t method_idx,
482 mirror::Object** this_object,
483 ArtMethod* referrer,
484 Thread* self) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700485 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampe3a357142015-08-07 17:20:11 -0700486 ArtMethod* resolved_method = class_linker->GetResolvedMethod(method_idx, referrer);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700487 if (resolved_method == nullptr) {
488 StackHandleScope<1> hs(self);
489 mirror::Object* null_this = nullptr;
490 HandleWrapper<mirror::Object> h_this(
491 hs.NewHandleWrapper(type == kStatic ? &null_this : this_object));
Andreas Gampe42ef8ab2015-12-03 17:27:32 -0800492 constexpr ClassLinker::ResolveMode resolve_mode =
493 access_check ? ClassLinker::kForceICCECheck
494 : ClassLinker::kNoICCECheckForCache;
495 resolved_method = class_linker->ResolveMethod<resolve_mode>(self, method_idx, referrer, type);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700496 }
Aart Bik2a1b7ac2016-06-29 14:54:26 -0700497 // Resolution and access check.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700498 if (UNLIKELY(resolved_method == nullptr)) {
499 DCHECK(self->IsExceptionPending()); // Throw exception and unwind.
500 return nullptr; // Failure.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700501 } else if (access_check) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700502 mirror::Class* methods_class = resolved_method->GetDeclaringClass();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700503 bool can_access_resolved_method =
Alex Light705ad492015-09-21 11:36:30 -0700504 referrer->GetDeclaringClass()->CheckResolvedMethodAccess<type>(methods_class,
505 resolved_method,
506 method_idx);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700507 if (UNLIKELY(!can_access_resolved_method)) {
508 DCHECK(self->IsExceptionPending()); // Throw exception and unwind.
509 return nullptr; // Failure.
510 }
Nicolas Geoffray470d54f2015-10-02 17:14:53 +0100511 // Incompatible class change should have been handled in resolve method.
512 if (UNLIKELY(resolved_method->CheckIncompatibleClassChange(type))) {
513 ThrowIncompatibleClassChangeError(type, resolved_method->GetInvokeType(), resolved_method,
514 referrer);
515 return nullptr; // Failure.
516 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700517 }
Aart Bik2a1b7ac2016-06-29 14:54:26 -0700518 // Next, null pointer check.
519 if (UNLIKELY(*this_object == nullptr && type != kStatic)) {
520 if (UNLIKELY(resolved_method->GetDeclaringClass()->IsStringClass() &&
521 resolved_method->IsConstructor())) {
522 // Hack for String init:
523 //
524 // We assume that the input of String.<init> in verified code is always
525 // an unitialized reference. If it is a null constant, it must have been
526 // optimized out by the compiler. Do not throw NullPointerException.
527 } else {
528 // Maintain interpreter-like semantics where NullPointerException is thrown
529 // after potential NoSuchMethodError from class linker.
530 ThrowNullPointerExceptionForMethodAccess(method_idx, type);
531 return nullptr; // Failure.
532 }
533 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700534 switch (type) {
535 case kStatic:
536 case kDirect:
537 return resolved_method;
538 case kVirtual: {
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700539 mirror::Class* klass = (*this_object)->GetClass();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700540 uint16_t vtable_index = resolved_method->GetMethodIndex();
541 if (access_check &&
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700542 (!klass->HasVTable() ||
543 vtable_index >= static_cast<uint32_t>(klass->GetVTableLength()))) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700544 // Behavior to agree with that of the verifier.
545 ThrowNoSuchMethodError(type, resolved_method->GetDeclaringClass(),
546 resolved_method->GetName(), resolved_method->GetSignature());
547 return nullptr; // Failure.
548 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700549 DCHECK(klass->HasVTable()) << PrettyClass(klass);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700550 return klass->GetVTableEntry(vtable_index, class_linker->GetImagePointerSize());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700551 }
552 case kSuper: {
Alex Light705ad492015-09-21 11:36:30 -0700553 // TODO This lookup is quite slow.
554 // NB This is actually quite tricky to do any other way. We cannot use GetDeclaringClass since
555 // that will actually not be what we want in some cases where there are miranda methods or
556 // defaults. What we actually need is a GetContainingClass that says which classes virtuals
557 // this method is coming from.
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700558 StackHandleScope<2> hs2(self);
559 HandleWrapper<mirror::Object> h_this(hs2.NewHandleWrapper(this_object));
560 Handle<mirror::Class> h_referring_class(hs2.NewHandle(referrer->GetDeclaringClass()));
561 const uint16_t method_type_idx =
562 h_referring_class->GetDexFile().GetMethodId(method_idx).class_idx_;
Alex Light705ad492015-09-21 11:36:30 -0700563 mirror::Class* method_reference_class = class_linker->ResolveType(method_type_idx, referrer);
564 if (UNLIKELY(method_reference_class == nullptr)) {
565 // Bad type idx.
566 CHECK(self->IsExceptionPending());
567 return nullptr;
568 } else if (!method_reference_class->IsInterface()) {
Aart Bikf663e342016-04-04 17:28:59 -0700569 // It is not an interface. If the referring class is in the class hierarchy of the
570 // referenced class in the bytecode, we use its super class. Otherwise, we throw
571 // a NoSuchMethodError.
572 mirror::Class* super_class = nullptr;
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700573 if (method_reference_class->IsAssignableFrom(h_referring_class.Get())) {
574 super_class = h_referring_class->GetSuperClass();
Aart Bikf663e342016-04-04 17:28:59 -0700575 }
Alex Light705ad492015-09-21 11:36:30 -0700576 uint16_t vtable_index = resolved_method->GetMethodIndex();
577 if (access_check) {
578 // Check existence of super class.
Aart Bikf663e342016-04-04 17:28:59 -0700579 if (super_class == nullptr ||
580 !super_class->HasVTable() ||
Alex Light705ad492015-09-21 11:36:30 -0700581 vtable_index >= static_cast<uint32_t>(super_class->GetVTableLength())) {
582 // Behavior to agree with that of the verifier.
583 ThrowNoSuchMethodError(type, resolved_method->GetDeclaringClass(),
584 resolved_method->GetName(), resolved_method->GetSignature());
585 return nullptr; // Failure.
586 }
587 }
588 DCHECK(super_class != nullptr);
589 DCHECK(super_class->HasVTable());
590 return super_class->GetVTableEntry(vtable_index, class_linker->GetImagePointerSize());
591 } else {
592 // It is an interface.
593 if (access_check) {
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700594 if (!method_reference_class->IsAssignableFrom(h_this->GetClass())) {
Alex Light705ad492015-09-21 11:36:30 -0700595 ThrowIncompatibleClassChangeErrorClassForInterfaceSuper(resolved_method,
596 method_reference_class,
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700597 h_this.Get(),
Alex Light705ad492015-09-21 11:36:30 -0700598 referrer);
599 return nullptr; // Failure.
600 }
601 }
602 // TODO We can do better than this for a (compiled) fastpath.
603 ArtMethod* result = method_reference_class->FindVirtualMethodForInterfaceSuper(
604 resolved_method, class_linker->GetImagePointerSize());
605 // Throw an NSME if nullptr;
606 if (result == nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700607 ThrowNoSuchMethodError(type, resolved_method->GetDeclaringClass(),
608 resolved_method->GetName(), resolved_method->GetSignature());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700609 }
Alex Light705ad492015-09-21 11:36:30 -0700610 return result;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700611 }
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700612 UNREACHABLE();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700613 }
614 case kInterface: {
Matthew Gharrity465ecc82016-07-19 21:32:52 +0000615 uint32_t imt_index = resolved_method->GetImtIndex();
Andreas Gampe542451c2016-07-26 09:02:02 -0700616 PointerSize pointer_size = class_linker->GetImagePointerSize();
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000617 ArtMethod* imt_method = (*this_object)->GetClass()->GetImt(pointer_size)->
618 Get(imt_index, pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000619 if (!imt_method->IsRuntimeMethod()) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700620 if (kIsDebugBuild) {
621 mirror::Class* klass = (*this_object)->GetClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700622 ArtMethod* method = klass->FindVirtualMethodForInterface(
623 resolved_method, class_linker->GetImagePointerSize());
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700624 CHECK_EQ(imt_method, method) << PrettyMethod(resolved_method) << " / " <<
625 PrettyMethod(imt_method) << " / " << PrettyMethod(method) << " / " <<
626 PrettyClass(klass);
627 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700628 return imt_method;
629 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700630 ArtMethod* interface_method = (*this_object)->GetClass()->FindVirtualMethodForInterface(
631 resolved_method, class_linker->GetImagePointerSize());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700632 if (UNLIKELY(interface_method == nullptr)) {
633 ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(resolved_method,
Andreas Gampe3a357142015-08-07 17:20:11 -0700634 *this_object, referrer);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700635 return nullptr; // Failure.
636 }
637 return interface_method;
638 }
639 }
640 default:
641 LOG(FATAL) << "Unknown invoke type " << type;
642 return nullptr; // Failure.
643 }
644}
645
646// Explicit template declarations of FindMethodFromCode for all invoke types.
647#define EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, _access_check) \
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700648 template REQUIRES_SHARED(Locks::mutator_lock_) ALWAYS_INLINE \
Mathieu Chartiere401d142015-04-22 13:56:20 -0700649 ArtMethod* FindMethodFromCode<_type, _access_check>(uint32_t method_idx, \
650 mirror::Object** this_object, \
Andreas Gampe3a357142015-08-07 17:20:11 -0700651 ArtMethod* referrer, \
Mathieu Chartiere401d142015-04-22 13:56:20 -0700652 Thread* self)
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700653#define EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(_type) \
654 EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, false); \
655 EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, true)
656
657EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kStatic);
658EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kDirect);
659EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kVirtual);
660EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kSuper);
661EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kInterface);
662
663#undef EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL
664#undef EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL
665
666// Fast path field resolution that can't initialize classes or throw exceptions.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700667inline ArtField* FindFieldFast(uint32_t field_idx, ArtMethod* referrer, FindFieldType type,
668 size_t expected_size) {
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700669 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartierc7853442015-03-27 14:35:38 -0700670 ArtField* resolved_field =
Andreas Gampe542451c2016-07-26 09:02:02 -0700671 referrer->GetDeclaringClass()->GetDexCache()->GetResolvedField(field_idx,
672 kRuntimePointerSize);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700673 if (UNLIKELY(resolved_field == nullptr)) {
674 return nullptr;
675 }
676 // Check for incompatible class change.
677 bool is_primitive;
678 bool is_set;
679 bool is_static;
680 switch (type) {
681 case InstanceObjectRead: is_primitive = false; is_set = false; is_static = false; break;
682 case InstanceObjectWrite: is_primitive = false; is_set = true; is_static = false; break;
683 case InstancePrimitiveRead: is_primitive = true; is_set = false; is_static = false; break;
684 case InstancePrimitiveWrite: is_primitive = true; is_set = true; is_static = false; break;
685 case StaticObjectRead: is_primitive = false; is_set = false; is_static = true; break;
686 case StaticObjectWrite: is_primitive = false; is_set = true; is_static = true; break;
687 case StaticPrimitiveRead: is_primitive = true; is_set = false; is_static = true; break;
688 case StaticPrimitiveWrite: is_primitive = true; is_set = true; is_static = true; break;
689 default:
Ian Rogers2c4257b2014-10-24 14:20:06 -0700690 LOG(FATAL) << "UNREACHABLE";
691 UNREACHABLE();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700692 }
693 if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
694 // Incompatible class change.
695 return nullptr;
696 }
697 mirror::Class* fields_class = resolved_field->GetDeclaringClass();
698 if (is_static) {
699 // Check class is initialized else fail so that we can contend to initialize the class with
700 // other threads that may be racing to do this.
701 if (UNLIKELY(!fields_class->IsInitialized())) {
702 return nullptr;
703 }
704 }
705 mirror::Class* referring_class = referrer->GetDeclaringClass();
706 if (UNLIKELY(!referring_class->CanAccess(fields_class) ||
Mathieu Chartiere401d142015-04-22 13:56:20 -0700707 !referring_class->CanAccessMember(fields_class, resolved_field->GetAccessFlags()) ||
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700708 (is_set && resolved_field->IsFinal() && (fields_class != referring_class)))) {
709 // Illegal access.
710 return nullptr;
711 }
712 if (UNLIKELY(resolved_field->IsPrimitiveType() != is_primitive ||
713 resolved_field->FieldSize() != expected_size)) {
714 return nullptr;
715 }
716 return resolved_field;
717}
718
719// Fast path method resolution that can't throw exceptions.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700720inline ArtMethod* FindMethodFast(uint32_t method_idx, mirror::Object* this_object,
721 ArtMethod* referrer, bool access_check, InvokeType type) {
Mathieu Chartierbe08cf52016-09-13 13:41:24 -0700722 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700723 if (UNLIKELY(this_object == nullptr && type != kStatic)) {
724 return nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700725 }
Alex Light705ad492015-09-21 11:36:30 -0700726 mirror::Class* referring_class = referrer->GetDeclaringClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700727 ArtMethod* resolved_method =
Andreas Gampe542451c2016-07-26 09:02:02 -0700728 referring_class->GetDexCache()->GetResolvedMethod(method_idx, kRuntimePointerSize);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700729 if (UNLIKELY(resolved_method == nullptr)) {
730 return nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700731 }
732 if (access_check) {
733 // Check for incompatible class change errors and access.
734 bool icce = resolved_method->CheckIncompatibleClassChange(type);
735 if (UNLIKELY(icce)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700736 return nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700737 }
738 mirror::Class* methods_class = resolved_method->GetDeclaringClass();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700739 if (UNLIKELY(!referring_class->CanAccess(methods_class) ||
740 !referring_class->CanAccessMember(methods_class,
741 resolved_method->GetAccessFlags()))) {
742 // Potential illegal access, may need to refine the method's class.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700743 return nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700744 }
745 }
746 if (type == kInterface) { // Most common form of slow path dispatch.
Andreas Gampe542451c2016-07-26 09:02:02 -0700747 return this_object->GetClass()->FindVirtualMethodForInterface(resolved_method,
748 kRuntimePointerSize);
Jeff Hao207a37d2014-10-29 17:24:25 -0700749 } else if (type == kStatic || type == kDirect) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700750 return resolved_method;
751 } else if (type == kSuper) {
Alex Light705ad492015-09-21 11:36:30 -0700752 // TODO This lookup is rather slow.
753 uint16_t method_type_idx = referring_class->GetDexFile().GetMethodId(method_idx).class_idx_;
754 mirror::Class* method_reference_class =
755 referring_class->GetDexCache()->GetResolvedType(method_type_idx);
756 if (method_reference_class == nullptr) {
757 // Need to do full type resolution...
Nicolas Geoffraye5234232015-12-02 09:06:11 +0000758 return nullptr;
Alex Light705ad492015-09-21 11:36:30 -0700759 } else if (!method_reference_class->IsInterface()) {
Aart Bikf663e342016-04-04 17:28:59 -0700760 // It is not an interface. If the referring class is in the class hierarchy of the
761 // referenced class in the bytecode, we use its super class. Otherwise, we cannot
762 // resolve the method.
763 if (!method_reference_class->IsAssignableFrom(referring_class)) {
764 return nullptr;
765 }
766 mirror::Class* super_class = referring_class->GetSuperClass();
Alex Light705ad492015-09-21 11:36:30 -0700767 if (resolved_method->GetMethodIndex() >= super_class->GetVTableLength()) {
768 // The super class does not have the method.
769 return nullptr;
770 }
Andreas Gampe542451c2016-07-26 09:02:02 -0700771 return super_class->GetVTableEntry(resolved_method->GetMethodIndex(), kRuntimePointerSize);
Alex Light705ad492015-09-21 11:36:30 -0700772 } else {
773 return method_reference_class->FindVirtualMethodForInterfaceSuper(
Andreas Gampe542451c2016-07-26 09:02:02 -0700774 resolved_method, kRuntimePointerSize);
Nicolas Geoffraye5234232015-12-02 09:06:11 +0000775 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700776 } else {
777 DCHECK(type == kVirtual);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700778 return this_object->GetClass()->GetVTableEntry(
Andreas Gampe542451c2016-07-26 09:02:02 -0700779 resolved_method->GetMethodIndex(), kRuntimePointerSize);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700780 }
781}
782
Mathieu Chartiere401d142015-04-22 13:56:20 -0700783inline mirror::Class* ResolveVerifyAndClinit(uint32_t type_idx, ArtMethod* referrer, Thread* self,
784 bool can_run_clinit, bool verify_access) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700785 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
786 mirror::Class* klass = class_linker->ResolveType(type_idx, referrer);
787 if (UNLIKELY(klass == nullptr)) {
788 CHECK(self->IsExceptionPending());
789 return nullptr; // Failure - Indicate to caller to deliver exception
790 }
791 // Perform access check if necessary.
792 mirror::Class* referring_class = referrer->GetDeclaringClass();
793 if (verify_access && UNLIKELY(!referring_class->CanAccess(klass))) {
794 ThrowIllegalAccessErrorClass(referring_class, klass);
795 return nullptr; // Failure - Indicate to caller to deliver exception
796 }
797 // If we're just implementing const-class, we shouldn't call <clinit>.
798 if (!can_run_clinit) {
799 return klass;
800 }
801 // If we are the <clinit> of this class, just return our storage.
802 //
803 // Do not set the DexCache InitializedStaticStorage, since that implies <clinit> has finished
804 // running.
805 if (klass == referring_class && referrer->IsConstructor() && referrer->IsStatic()) {
806 return klass;
807 }
808 StackHandleScope<1> hs(self);
809 Handle<mirror::Class> h_class(hs.NewHandle(klass));
Ian Rogers7b078e82014-09-10 14:44:24 -0700810 if (!class_linker->EnsureInitialized(self, h_class, true, true)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700811 CHECK(self->IsExceptionPending());
812 return nullptr; // Failure - Indicate to caller to deliver exception
813 }
814 return h_class.Get();
815}
816
Mathieu Chartiere401d142015-04-22 13:56:20 -0700817inline mirror::String* ResolveStringFromCode(ArtMethod* referrer, uint32_t string_idx) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700818 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
819 return class_linker->ResolveString(string_idx, referrer);
820}
821
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800822inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700823 // Save any pending exception over monitor exit call.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700824 mirror::Throwable* saved_exception = nullptr;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700825 if (UNLIKELY(self->IsExceptionPending())) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000826 saved_exception = self->GetException();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700827 self->ClearException();
828 }
829 // Decode locked object and unlock, before popping local references.
830 self->DecodeJObject(locked)->MonitorExit(self);
831 if (UNLIKELY(self->IsExceptionPending())) {
832 LOG(FATAL) << "Synchronized JNI code returning with an exception:\n"
833 << saved_exception->Dump()
834 << "\nEncountered second exception during implicit MonitorExit:\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000835 << self->GetException()->Dump();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700836 }
837 // Restore pending exception.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700838 if (saved_exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000839 self->SetException(saved_exception);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700840 }
841}
842
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700843template <typename INT_TYPE, typename FLOAT_TYPE>
Andreas Gampe9f612ff2014-11-24 13:42:22 -0800844inline INT_TYPE art_float_to_integral(FLOAT_TYPE f) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700845 const INT_TYPE kMaxInt = static_cast<INT_TYPE>(std::numeric_limits<INT_TYPE>::max());
846 const INT_TYPE kMinInt = static_cast<INT_TYPE>(std::numeric_limits<INT_TYPE>::min());
847 const FLOAT_TYPE kMaxIntAsFloat = static_cast<FLOAT_TYPE>(kMaxInt);
848 const FLOAT_TYPE kMinIntAsFloat = static_cast<FLOAT_TYPE>(kMinInt);
849 if (LIKELY(f > kMinIntAsFloat)) {
850 if (LIKELY(f < kMaxIntAsFloat)) {
851 return static_cast<INT_TYPE>(f);
852 } else {
853 return kMaxInt;
854 }
855 } else {
856 return (f != f) ? 0 : kMinInt; // f != f implies NaN
857 }
858}
859
860} // namespace art
861
862#endif // ART_RUNTIME_ENTRYPOINTS_ENTRYPOINT_UTILS_INL_H_