Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Andreas Gampe | c1d4cd7 | 2017-04-21 13:24:52 -0700 | [diff] [blame] | 22 | #include "art_field-inl.h" |
Matthew Gharrity | 465ecc8 | 2016-07-19 21:32:52 +0000 | [diff] [blame] | 23 | #include "art_method-inl.h" |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 24 | #include "base/enums.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 25 | #include "class_linker-inl.h" |
| 26 | #include "common_throws.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 27 | #include "dex/dex_file.h" |
David Sehr | 8c0961f | 2018-01-23 16:11:38 -0800 | [diff] [blame] | 28 | #include "dex/invoke_type.h" |
Vladimir Marko | 5ea536a | 2015-04-20 20:11:30 +0100 | [diff] [blame] | 29 | #include "entrypoints/quick/callee_save_frame.h" |
| 30 | #include "handle_scope-inl.h" |
Andreas Gampe | 75a7db6 | 2016-09-26 12:04:26 -0700 | [diff] [blame] | 31 | #include "imt_conflict_table.h" |
| 32 | #include "imtable-inl.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 33 | #include "indirect_reference_table.h" |
Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 34 | #include "jni/jni_internal.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 35 | #include "mirror/array.h" |
| 36 | #include "mirror/class-inl.h" |
| 37 | #include "mirror/object-inl.h" |
| 38 | #include "mirror/throwable.h" |
Vladimir Marko | 5ea536a | 2015-04-20 20:11:30 +0100 | [diff] [blame] | 39 | #include "nth_caller_visitor.h" |
| 40 | #include "runtime.h" |
Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 41 | #include "stack_map.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 42 | #include "thread.h" |
Andreas Gampe | a1d2f95 | 2017-04-20 22:53:58 -0700 | [diff] [blame] | 43 | #include "well_known_classes.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 44 | |
| 45 | namespace art { |
| 46 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 47 | inline ArtMethod* GetResolvedMethod(ArtMethod* outer_method, |
David Srbecky | 8cd5454 | 2018-07-15 23:58:44 +0100 | [diff] [blame] | 48 | const CodeInfo& code_info, |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 49 | const BitTableRange<InlineInfo>& inline_infos) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 50 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Vladimir Marko | ba11882 | 2017-06-12 15:41:56 +0100 | [diff] [blame] | 51 | DCHECK(!outer_method->IsObsolete()); |
| 52 | |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 53 | // This method is being used by artQuickResolutionTrampoline, before it sets up |
| 54 | // the passed parameters in a GC friendly way. Therefore we must never be |
| 55 | // suspended while executing it. |
Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 56 | ScopedAssertNoThreadSuspension sants(__FUNCTION__); |
Nicolas Geoffray | c6df1e3 | 2016-07-04 10:15:47 +0100 | [diff] [blame] | 57 | |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 58 | { |
| 59 | InlineInfo inline_info = inline_infos.back(); |
Nicolas Geoffray | 5d37c15 | 2017-01-12 13:25:19 +0000 | [diff] [blame] | 60 | |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 61 | if (inline_info.EncodesArtMethod()) { |
| 62 | return inline_info.GetArtMethod(); |
| 63 | } |
| 64 | |
David Srbecky | 8cd5454 | 2018-07-15 23:58:44 +0100 | [diff] [blame] | 65 | uint32_t method_index = code_info.GetMethodIndexOf(inline_info); |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 66 | if (inline_info.GetDexPc() == static_cast<uint32_t>(-1)) { |
| 67 | // "charAt" special case. It is the only non-leaf method we inline across dex files. |
| 68 | ArtMethod* inlined_method = jni::DecodeArtMethod(WellKnownClasses::java_lang_String_charAt); |
| 69 | DCHECK_EQ(inlined_method->GetDexMethodIndex(), method_index); |
| 70 | return inlined_method; |
| 71 | } |
Mathieu Chartier | 45bf250 | 2016-03-31 11:07:09 -0700 | [diff] [blame] | 72 | } |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 73 | |
Nicolas Geoffray | 5d37c15 | 2017-01-12 13:25:19 +0000 | [diff] [blame] | 74 | // Find which method did the call in the inlining hierarchy. |
Nicolas Geoffray | 5d37c15 | 2017-01-12 13:25:19 +0000 | [diff] [blame] | 75 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Vladimir Marko | 63a9f3e | 2018-04-26 09:18:10 +0100 | [diff] [blame] | 76 | ArtMethod* method = outer_method; |
David Srbecky | 93bd361 | 2018-07-02 19:30:18 +0100 | [diff] [blame] | 77 | for (InlineInfo inline_info : inline_infos) { |
David Srbecky | 6e69e52 | 2018-06-03 12:00:14 +0100 | [diff] [blame] | 78 | DCHECK(!inline_info.EncodesArtMethod()); |
| 79 | DCHECK_NE(inline_info.GetDexPc(), static_cast<uint32_t>(-1)); |
David Srbecky | 8cd5454 | 2018-07-15 23:58:44 +0100 | [diff] [blame] | 80 | uint32_t method_index = code_info.GetMethodIndexOf(inline_info); |
Vladimir Marko | 63a9f3e | 2018-04-26 09:18:10 +0100 | [diff] [blame] | 81 | ArtMethod* inlined_method = class_linker->LookupResolvedMethod(method_index, |
| 82 | method->GetDexCache(), |
| 83 | method->GetClassLoader()); |
| 84 | if (UNLIKELY(inlined_method == nullptr)) { |
| 85 | LOG(FATAL) << "Could not find an inlined method from an .oat file: " |
| 86 | << method->GetDexFile()->PrettyMethod(method_index) << " . " |
| 87 | << "This must be due to duplicate classes or playing wrongly with class loaders"; |
| 88 | UNREACHABLE(); |
| 89 | } |
| 90 | DCHECK(!inlined_method->IsRuntimeMethod()); |
| 91 | if (UNLIKELY(inlined_method->GetDexFile() != method->GetDexFile())) { |
| 92 | // TODO: We could permit inlining within a multi-dex oat file and the boot image, |
| 93 | // even going back from boot image methods to the same oat file. However, this is |
| 94 | // not currently implemented in the compiler. Therefore crossing dex file boundary |
| 95 | // indicates that the inlined definition is not the same as the one used at runtime. |
| 96 | LOG(FATAL) << "Inlined method resolution crossed dex file boundary: from " |
| 97 | << method->PrettyMethod() |
| 98 | << " in " << method->GetDexFile()->GetLocation() << "/" |
| 99 | << static_cast<const void*>(method->GetDexFile()) |
| 100 | << " to " << inlined_method->PrettyMethod() |
| 101 | << " in " << inlined_method->GetDexFile()->GetLocation() << "/" |
| 102 | << static_cast<const void*>(inlined_method->GetDexFile()) << ". " |
| 103 | << "This must be due to duplicate classes or playing wrongly with class loaders"; |
| 104 | UNREACHABLE(); |
| 105 | } |
| 106 | method = inlined_method; |
Nicolas Geoffray | 5d37c15 | 2017-01-12 13:25:19 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Vladimir Marko | 63a9f3e | 2018-04-26 09:18:10 +0100 | [diff] [blame] | 109 | return method; |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 110 | } |
| 111 | |
Nicolas Geoffray | 0d3998b | 2017-01-12 15:35:12 +0000 | [diff] [blame] | 112 | ALWAYS_INLINE inline mirror::Class* CheckObjectAlloc(mirror::Class* klass, |
| 113 | Thread* self, |
| 114 | bool* slow_path) |
| 115 | REQUIRES_SHARED(Locks::mutator_lock_) |
| 116 | REQUIRES(!Roles::uninterruptible_) { |
| 117 | if (UNLIKELY(!klass->IsInstantiable())) { |
| 118 | self->ThrowNewException("Ljava/lang/InstantiationError;", klass->PrettyDescriptor().c_str()); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 119 | *slow_path = true; |
Nicolas Geoffray | 0d3998b | 2017-01-12 15:35:12 +0000 | [diff] [blame] | 120 | return nullptr; // Failure |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 121 | } |
Nicolas Geoffray | 0d3998b | 2017-01-12 15:35:12 +0000 | [diff] [blame] | 122 | if (UNLIKELY(klass->IsClassClass())) { |
| 123 | ThrowIllegalAccessError(nullptr, "Class %s is inaccessible", |
| 124 | klass->PrettyDescriptor().c_str()); |
| 125 | *slow_path = true; |
| 126 | return nullptr; // Failure |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 127 | } |
| 128 | if (UNLIKELY(!klass->IsInitialized())) { |
| 129 | StackHandleScope<1> hs(self); |
| 130 | Handle<mirror::Class> h_klass(hs.NewHandle(klass)); |
| 131 | // EnsureInitialized (the class initializer) might cause a GC. |
| 132 | // may cause us to suspend meaning that another thread may try to |
| 133 | // change the allocator while we are stuck in the entrypoints of |
| 134 | // an old allocator. Also, the class initialization may fail. To |
| 135 | // handle these cases we mark the slow path boolean as true so |
| 136 | // that the caller knows to check the allocator type to see if it |
| 137 | // has changed and to null-check the return value in case the |
| 138 | // initialization fails. |
| 139 | *slow_path = true; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 140 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_klass, true, true)) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 141 | DCHECK(self->IsExceptionPending()); |
| 142 | return nullptr; // Failure |
Mathieu Chartier | 524507a | 2014-08-27 15:28:28 -0700 | [diff] [blame] | 143 | } else { |
| 144 | DCHECK(!self->IsExceptionPending()); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 145 | } |
| 146 | return h_klass.Get(); |
| 147 | } |
| 148 | return klass; |
| 149 | } |
| 150 | |
Hiroshi Yamauchi | eb1e929 | 2014-08-06 12:41:15 -0700 | [diff] [blame] | 151 | ALWAYS_INLINE |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 152 | inline mirror::Class* CheckClassInitializedForObjectAlloc(mirror::Class* klass, |
| 153 | Thread* self, |
Nicolas Geoffray | 0d3998b | 2017-01-12 15:35:12 +0000 | [diff] [blame] | 154 | bool* slow_path) |
| 155 | REQUIRES_SHARED(Locks::mutator_lock_) |
| 156 | REQUIRES(!Roles::uninterruptible_) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 157 | if (UNLIKELY(!klass->IsInitialized())) { |
| 158 | StackHandleScope<1> hs(self); |
| 159 | Handle<mirror::Class> h_class(hs.NewHandle(klass)); |
| 160 | // EnsureInitialized (the class initializer) might cause a GC. |
| 161 | // may cause us to suspend meaning that another thread may try to |
| 162 | // change the allocator while we are stuck in the entrypoints of |
| 163 | // an old allocator. Also, the class initialization may fail. To |
| 164 | // handle these cases we mark the slow path boolean as true so |
| 165 | // that the caller knows to check the allocator type to see if it |
| 166 | // has changed and to null-check the return value in case the |
| 167 | // initialization fails. |
| 168 | *slow_path = true; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 169 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true, true)) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 170 | DCHECK(self->IsExceptionPending()); |
| 171 | return nullptr; // Failure |
| 172 | } |
| 173 | return h_class.Get(); |
| 174 | } |
| 175 | return klass; |
| 176 | } |
| 177 | |
Nicolas Geoffray | 0d3998b | 2017-01-12 15:35:12 +0000 | [diff] [blame] | 178 | // Allocate an instance of klass. Throws InstantationError if klass is not instantiable, |
| 179 | // or IllegalAccessError if klass is j.l.Class. Performs a clinit check too. |
| 180 | template <bool kInstrumented> |
Hiroshi Yamauchi | eb1e929 | 2014-08-06 12:41:15 -0700 | [diff] [blame] | 181 | ALWAYS_INLINE |
Nicolas Geoffray | 0d3998b | 2017-01-12 15:35:12 +0000 | [diff] [blame] | 182 | inline mirror::Object* AllocObjectFromCode(mirror::Class* klass, |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 183 | Thread* self, |
| 184 | gc::AllocatorType allocator_type) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 185 | bool slow_path = false; |
Nicolas Geoffray | 0d3998b | 2017-01-12 15:35:12 +0000 | [diff] [blame] | 186 | klass = CheckObjectAlloc(klass, self, &slow_path); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 187 | if (UNLIKELY(slow_path)) { |
| 188 | if (klass == nullptr) { |
| 189 | return nullptr; |
| 190 | } |
Mathieu Chartier | 14b0a5d | 2016-03-11 17:22:23 -0800 | [diff] [blame] | 191 | // CheckObjectAlloc can cause thread suspension which means we may now be instrumented. |
| 192 | return klass->Alloc</*kInstrumented*/true>( |
| 193 | self, |
Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 194 | Runtime::Current()->GetHeap()->GetCurrentAllocator()).Ptr(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 195 | } |
| 196 | DCHECK(klass != nullptr); |
Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 197 | return klass->Alloc<kInstrumented>(self, allocator_type).Ptr(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | // Given the context of a calling Method and a resolved class, create an instance. |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 201 | template <bool kInstrumented> |
Hiroshi Yamauchi | eb1e929 | 2014-08-06 12:41:15 -0700 | [diff] [blame] | 202 | ALWAYS_INLINE |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 203 | inline mirror::Object* AllocObjectFromCodeResolved(mirror::Class* klass, |
| 204 | Thread* self, |
| 205 | gc::AllocatorType allocator_type) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 206 | DCHECK(klass != nullptr); |
| 207 | bool slow_path = false; |
| 208 | klass = CheckClassInitializedForObjectAlloc(klass, self, &slow_path); |
| 209 | if (UNLIKELY(slow_path)) { |
| 210 | if (klass == nullptr) { |
| 211 | return nullptr; |
| 212 | } |
| 213 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Roland Levillain | 91d65e0 | 2016-01-19 15:59:16 +0000 | [diff] [blame] | 214 | // Pass in false since the object cannot be finalizable. |
Mathieu Chartier | 14b0a5d | 2016-03-11 17:22:23 -0800 | [diff] [blame] | 215 | // CheckClassInitializedForObjectAlloc can cause thread suspension which means we may now be |
| 216 | // instrumented. |
Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 217 | return klass->Alloc</*kInstrumented*/true, false>(self, heap->GetCurrentAllocator()).Ptr(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 218 | } |
Roland Levillain | 91d65e0 | 2016-01-19 15:59:16 +0000 | [diff] [blame] | 219 | // Pass in false since the object cannot be finalizable. |
Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 220 | return klass->Alloc<kInstrumented, false>(self, allocator_type).Ptr(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | // Given the context of a calling Method and an initialized class, create an instance. |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 224 | template <bool kInstrumented> |
Hiroshi Yamauchi | eb1e929 | 2014-08-06 12:41:15 -0700 | [diff] [blame] | 225 | ALWAYS_INLINE |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 226 | inline mirror::Object* AllocObjectFromCodeInitialized(mirror::Class* klass, |
| 227 | Thread* self, |
| 228 | gc::AllocatorType allocator_type) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 229 | DCHECK(klass != nullptr); |
Roland Levillain | 91d65e0 | 2016-01-19 15:59:16 +0000 | [diff] [blame] | 230 | // Pass in false since the object cannot be finalizable. |
Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 231 | return klass->Alloc<kInstrumented, false>(self, allocator_type).Ptr(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 235 | template <bool kAccessCheck> |
Hiroshi Yamauchi | eb1e929 | 2014-08-06 12:41:15 -0700 | [diff] [blame] | 236 | ALWAYS_INLINE |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 237 | inline mirror::Class* CheckArrayAlloc(dex::TypeIndex type_idx, |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 238 | int32_t component_count, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 239 | ArtMethod* method, |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 240 | bool* slow_path) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 241 | if (UNLIKELY(component_count < 0)) { |
| 242 | ThrowNegativeArraySizeException(component_count); |
| 243 | *slow_path = true; |
| 244 | return nullptr; // Failure |
| 245 | } |
Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 246 | ObjPtr<mirror::Class> klass = method->GetDexCache()->GetResolvedType(type_idx); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 247 | if (UNLIKELY(klass == nullptr)) { // Not in dex cache so try to resolve |
Vladimir Marko | 942fd31 | 2017-01-16 20:52:19 +0000 | [diff] [blame] | 248 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 249 | klass = class_linker->ResolveType(type_idx, method); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 250 | *slow_path = true; |
| 251 | if (klass == nullptr) { // Error |
| 252 | DCHECK(Thread::Current()->IsExceptionPending()); |
| 253 | return nullptr; // Failure |
| 254 | } |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 255 | CHECK(klass->IsArrayClass()) << klass->PrettyClass(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 256 | } |
| 257 | if (kAccessCheck) { |
Vladimir Marko | d93e374 | 2018-07-18 10:58:13 +0100 | [diff] [blame] | 258 | ObjPtr<mirror::Class> referrer = method->GetDeclaringClass(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 259 | if (UNLIKELY(!referrer->CanAccess(klass))) { |
| 260 | ThrowIllegalAccessErrorClass(referrer, klass); |
| 261 | *slow_path = true; |
| 262 | return nullptr; // Failure |
| 263 | } |
| 264 | } |
Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 265 | return klass.Ptr(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | // Given the context of a calling Method, use its DexCache to resolve a type to an array Class. If |
| 269 | // it cannot be resolved, throw an error. If it can, use it to create an array. |
| 270 | // When verification/compiler hasn't been able to verify access, optionally perform an access |
| 271 | // check. |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 272 | template <bool kAccessCheck, bool kInstrumented> |
Hiroshi Yamauchi | eb1e929 | 2014-08-06 12:41:15 -0700 | [diff] [blame] | 273 | ALWAYS_INLINE |
Vladimir Marko | bcf1752 | 2018-06-01 13:14:32 +0100 | [diff] [blame] | 274 | inline ObjPtr<mirror::Array> AllocArrayFromCode(dex::TypeIndex type_idx, |
| 275 | int32_t component_count, |
| 276 | ArtMethod* method, |
| 277 | Thread* self, |
| 278 | gc::AllocatorType allocator_type) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 279 | bool slow_path = false; |
Vladimir Marko | bcf1752 | 2018-06-01 13:14:32 +0100 | [diff] [blame] | 280 | ObjPtr<mirror::Class> klass = |
| 281 | CheckArrayAlloc<kAccessCheck>(type_idx, component_count, method, &slow_path); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 282 | if (UNLIKELY(slow_path)) { |
| 283 | if (klass == nullptr) { |
| 284 | return nullptr; |
| 285 | } |
| 286 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | 14b0a5d | 2016-03-11 17:22:23 -0800 | [diff] [blame] | 287 | // CheckArrayAlloc can cause thread suspension which means we may now be instrumented. |
| 288 | return mirror::Array::Alloc</*kInstrumented*/true>(self, |
| 289 | klass, |
| 290 | component_count, |
| 291 | klass->GetComponentSizeShift(), |
| 292 | heap->GetCurrentAllocator()); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 293 | } |
| 294 | return mirror::Array::Alloc<kInstrumented>(self, klass, component_count, |
Hiroshi Yamauchi | f0edfc3 | 2014-09-25 11:46:46 -0700 | [diff] [blame] | 295 | klass->GetComponentSizeShift(), allocator_type); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 296 | } |
| 297 | |
Nicolas Geoffray | e761bcc | 2017-01-19 08:59:37 +0000 | [diff] [blame] | 298 | template <bool kInstrumented> |
Hiroshi Yamauchi | eb1e929 | 2014-08-06 12:41:15 -0700 | [diff] [blame] | 299 | ALWAYS_INLINE |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 300 | inline mirror::Array* AllocArrayFromCodeResolved(mirror::Class* klass, |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 301 | int32_t component_count, |
| 302 | Thread* self, |
| 303 | gc::AllocatorType allocator_type) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 304 | DCHECK(klass != nullptr); |
| 305 | if (UNLIKELY(component_count < 0)) { |
| 306 | ThrowNegativeArraySizeException(component_count); |
| 307 | return nullptr; // Failure |
| 308 | } |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 309 | // No need to retry a slow-path allocation as the above code won't cause a GC or thread |
| 310 | // suspension. |
| 311 | return mirror::Array::Alloc<kInstrumented>(self, klass, component_count, |
Vladimir Marko | bcf1752 | 2018-06-01 13:14:32 +0100 | [diff] [blame] | 312 | klass->GetComponentSizeShift(), allocator_type).Ptr(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | template<FindFieldType type, bool access_check> |
Mathieu Chartier | bf36918 | 2016-02-04 18:13:32 -0800 | [diff] [blame] | 316 | inline ArtField* FindFieldFromCode(uint32_t field_idx, |
| 317 | ArtMethod* referrer, |
| 318 | Thread* self, |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 319 | size_t expected_size) { |
David Srbecky | ce32c10 | 2018-08-31 07:21:07 +0100 | [diff] [blame^] | 320 | constexpr bool is_primitive = (type & FindFieldFlags::PrimitiveBit) != 0; |
| 321 | constexpr bool is_set = (type & FindFieldFlags::WriteBit) != 0; |
| 322 | constexpr bool is_static = (type & FindFieldFlags::StaticBit) != 0; |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 323 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Igor Murashkin | f1b4c41 | 2016-02-01 17:40:19 -0800 | [diff] [blame] | 324 | |
| 325 | ArtField* resolved_field; |
| 326 | if (access_check) { |
| 327 | // Slow path: According to JLS 13.4.8, a linkage error may occur if a compile-time |
| 328 | // qualifying type of a field and the resolved run-time qualifying type of a field differed |
| 329 | // in their static-ness. |
| 330 | // |
| 331 | // In particular, don't assume the dex instruction already correctly knows if the |
| 332 | // real field is static or not. The resolution must not be aware of this. |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 333 | ArtMethod* method = referrer->GetInterfaceMethodIfProxy(kRuntimePointerSize); |
Igor Murashkin | f1b4c41 | 2016-02-01 17:40:19 -0800 | [diff] [blame] | 334 | |
| 335 | StackHandleScope<2> hs(self); |
| 336 | Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(method->GetDexCache())); |
| 337 | Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(method->GetClassLoader())); |
| 338 | |
Vladimir Marko | e11dd50 | 2017-12-08 14:09:45 +0000 | [diff] [blame] | 339 | resolved_field = class_linker->ResolveFieldJLS(field_idx, |
Igor Murashkin | f1b4c41 | 2016-02-01 17:40:19 -0800 | [diff] [blame] | 340 | h_dex_cache, |
| 341 | h_class_loader); |
| 342 | } else { |
| 343 | // Fast path: Verifier already would've called ResolveFieldJLS and we wouldn't |
| 344 | // be executing here if there was a static/non-static mismatch. |
| 345 | resolved_field = class_linker->ResolveField(field_idx, referrer, is_static); |
| 346 | } |
| 347 | |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 348 | if (UNLIKELY(resolved_field == nullptr)) { |
| 349 | DCHECK(self->IsExceptionPending()); // Throw exception and unwind. |
| 350 | return nullptr; // Failure. |
| 351 | } |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 352 | ObjPtr<mirror::Class> fields_class = resolved_field->GetDeclaringClass(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 353 | if (access_check) { |
| 354 | if (UNLIKELY(resolved_field->IsStatic() != is_static)) { |
| 355 | ThrowIncompatibleClassChangeErrorField(resolved_field, is_static, referrer); |
| 356 | return nullptr; |
| 357 | } |
Vladimir Marko | d93e374 | 2018-07-18 10:58:13 +0100 | [diff] [blame] | 358 | ObjPtr<mirror::Class> referring_class = referrer->GetDeclaringClass(); |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 359 | if (UNLIKELY(!referring_class->CheckResolvedFieldAccess(fields_class, |
| 360 | resolved_field, |
Vladimir Marko | f79aa7f | 2017-07-04 16:58:55 +0100 | [diff] [blame] | 361 | referrer->GetDexCache(), |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 362 | field_idx))) { |
| 363 | DCHECK(self->IsExceptionPending()); // Throw exception and unwind. |
| 364 | return nullptr; // Failure. |
| 365 | } |
| 366 | if (UNLIKELY(is_set && resolved_field->IsFinal() && (fields_class != referring_class))) { |
| 367 | ThrowIllegalAccessErrorFinalField(referrer, resolved_field); |
| 368 | return nullptr; // Failure. |
| 369 | } else { |
| 370 | if (UNLIKELY(resolved_field->IsPrimitiveType() != is_primitive || |
| 371 | resolved_field->FieldSize() != expected_size)) { |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 372 | self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;", |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 373 | "Attempted read of %zd-bit %s on field '%s'", |
| 374 | expected_size * (32 / sizeof(int32_t)), |
| 375 | is_primitive ? "primitive" : "non-primitive", |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 376 | resolved_field->PrettyField(true).c_str()); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 377 | return nullptr; // Failure. |
| 378 | } |
| 379 | } |
| 380 | } |
| 381 | if (!is_static) { |
| 382 | // instance fields must be being accessed on an initialized class |
| 383 | return resolved_field; |
| 384 | } else { |
| 385 | // If the class is initialized we're done. |
| 386 | if (LIKELY(fields_class->IsInitialized())) { |
| 387 | return resolved_field; |
| 388 | } else { |
| 389 | StackHandleScope<1> hs(self); |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 390 | if (LIKELY(class_linker->EnsureInitialized(self, hs.NewHandle(fields_class), true, true))) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 391 | // Otherwise let's ensure the class is initialized before resolving the field. |
| 392 | return resolved_field; |
| 393 | } |
| 394 | DCHECK(self->IsExceptionPending()); // Throw exception and unwind |
| 395 | return nullptr; // Failure. |
| 396 | } |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | // Explicit template declarations of FindFieldFromCode for all field access types. |
| 401 | #define EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, _access_check) \ |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 402 | template REQUIRES_SHARED(Locks::mutator_lock_) ALWAYS_INLINE \ |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 403 | ArtField* FindFieldFromCode<_type, _access_check>(uint32_t field_idx, \ |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 404 | ArtMethod* referrer, \ |
| 405 | Thread* self, size_t expected_size) \ |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 406 | |
| 407 | #define EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(_type) \ |
| 408 | EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, false); \ |
| 409 | EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL(_type, true) |
| 410 | |
| 411 | EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstanceObjectRead); |
| 412 | EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstanceObjectWrite); |
| 413 | EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstancePrimitiveRead); |
| 414 | EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(InstancePrimitiveWrite); |
| 415 | EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticObjectRead); |
| 416 | EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticObjectWrite); |
| 417 | EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticPrimitiveRead); |
| 418 | EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL(StaticPrimitiveWrite); |
| 419 | |
| 420 | #undef EXPLICIT_FIND_FIELD_FROM_CODE_TYPED_TEMPLATE_DECL |
| 421 | #undef EXPLICIT_FIND_FIELD_FROM_CODE_TEMPLATE_DECL |
| 422 | |
| 423 | template<InvokeType type, bool access_check> |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 424 | inline ArtMethod* FindMethodFromCode(uint32_t method_idx, |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 425 | ObjPtr<mirror::Object>* this_object, |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 426 | ArtMethod* referrer, |
| 427 | Thread* self) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 428 | ClassLinker* const class_linker = Runtime::Current()->GetClassLinker(); |
Vladimir Marko | ba11882 | 2017-06-12 15:41:56 +0100 | [diff] [blame] | 429 | constexpr ClassLinker::ResolveMode resolve_mode = |
| 430 | access_check ? ClassLinker::ResolveMode::kCheckICCEAndIAE |
| 431 | : ClassLinker::ResolveMode::kNoChecks; |
| 432 | ArtMethod* resolved_method; |
| 433 | if (type == kStatic) { |
| 434 | resolved_method = class_linker->ResolveMethod<resolve_mode>(self, method_idx, referrer, type); |
| 435 | } else { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 436 | StackHandleScope<1> hs(self); |
Vladimir Marko | ba11882 | 2017-06-12 15:41:56 +0100 | [diff] [blame] | 437 | HandleWrapperObjPtr<mirror::Object> h_this(hs.NewHandleWrapper(this_object)); |
Andreas Gampe | 42ef8ab | 2015-12-03 17:27:32 -0800 | [diff] [blame] | 438 | resolved_method = class_linker->ResolveMethod<resolve_mode>(self, method_idx, referrer, type); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 439 | } |
| 440 | if (UNLIKELY(resolved_method == nullptr)) { |
| 441 | DCHECK(self->IsExceptionPending()); // Throw exception and unwind. |
| 442 | return nullptr; // Failure. |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 443 | } |
Aart Bik | 2a1b7ac | 2016-06-29 14:54:26 -0700 | [diff] [blame] | 444 | // Next, null pointer check. |
| 445 | if (UNLIKELY(*this_object == nullptr && type != kStatic)) { |
| 446 | if (UNLIKELY(resolved_method->GetDeclaringClass()->IsStringClass() && |
| 447 | resolved_method->IsConstructor())) { |
| 448 | // Hack for String init: |
| 449 | // |
| 450 | // We assume that the input of String.<init> in verified code is always |
| 451 | // an unitialized reference. If it is a null constant, it must have been |
| 452 | // optimized out by the compiler. Do not throw NullPointerException. |
| 453 | } else { |
| 454 | // Maintain interpreter-like semantics where NullPointerException is thrown |
| 455 | // after potential NoSuchMethodError from class linker. |
| 456 | ThrowNullPointerExceptionForMethodAccess(method_idx, type); |
| 457 | return nullptr; // Failure. |
| 458 | } |
| 459 | } |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 460 | switch (type) { |
| 461 | case kStatic: |
| 462 | case kDirect: |
| 463 | return resolved_method; |
| 464 | case kVirtual: { |
Vladimir Marko | 302f69c | 2017-07-25 15:27:15 +0100 | [diff] [blame] | 465 | ObjPtr<mirror::Class> klass = (*this_object)->GetClass(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 466 | uint16_t vtable_index = resolved_method->GetMethodIndex(); |
| 467 | if (access_check && |
Mingyao Yang | 2cdbad7 | 2014-07-16 10:44:41 -0700 | [diff] [blame] | 468 | (!klass->HasVTable() || |
| 469 | vtable_index >= static_cast<uint32_t>(klass->GetVTableLength()))) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 470 | // Behavior to agree with that of the verifier. |
| 471 | ThrowNoSuchMethodError(type, resolved_method->GetDeclaringClass(), |
| 472 | resolved_method->GetName(), resolved_method->GetSignature()); |
| 473 | return nullptr; // Failure. |
| 474 | } |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 475 | DCHECK(klass->HasVTable()) << klass->PrettyClass(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 476 | return klass->GetVTableEntry(vtable_index, class_linker->GetImagePointerSize()); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 477 | } |
| 478 | case kSuper: { |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 479 | // TODO This lookup is quite slow. |
| 480 | // NB This is actually quite tricky to do any other way. We cannot use GetDeclaringClass since |
| 481 | // that will actually not be what we want in some cases where there are miranda methods or |
| 482 | // defaults. What we actually need is a GetContainingClass that says which classes virtuals |
| 483 | // this method is coming from. |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 484 | StackHandleScope<2> hs2(self); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 485 | HandleWrapperObjPtr<mirror::Object> h_this(hs2.NewHandleWrapper(this_object)); |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 486 | Handle<mirror::Class> h_referring_class(hs2.NewHandle(referrer->GetDeclaringClass())); |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 487 | const dex::TypeIndex method_type_idx = |
Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 488 | referrer->GetDexFile()->GetMethodId(method_idx).class_idx_; |
Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 489 | ObjPtr<mirror::Class> method_reference_class = |
| 490 | class_linker->ResolveType(method_type_idx, referrer); |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 491 | if (UNLIKELY(method_reference_class == nullptr)) { |
| 492 | // Bad type idx. |
| 493 | CHECK(self->IsExceptionPending()); |
| 494 | return nullptr; |
| 495 | } else if (!method_reference_class->IsInterface()) { |
Aart Bik | f663e34 | 2016-04-04 17:28:59 -0700 | [diff] [blame] | 496 | // It is not an interface. If the referring class is in the class hierarchy of the |
| 497 | // referenced class in the bytecode, we use its super class. Otherwise, we throw |
| 498 | // a NoSuchMethodError. |
Vladimir Marko | 302f69c | 2017-07-25 15:27:15 +0100 | [diff] [blame] | 499 | ObjPtr<mirror::Class> super_class = nullptr; |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 500 | if (method_reference_class->IsAssignableFrom(h_referring_class.Get())) { |
| 501 | super_class = h_referring_class->GetSuperClass(); |
Aart Bik | f663e34 | 2016-04-04 17:28:59 -0700 | [diff] [blame] | 502 | } |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 503 | uint16_t vtable_index = resolved_method->GetMethodIndex(); |
| 504 | if (access_check) { |
| 505 | // Check existence of super class. |
Aart Bik | f663e34 | 2016-04-04 17:28:59 -0700 | [diff] [blame] | 506 | if (super_class == nullptr || |
| 507 | !super_class->HasVTable() || |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 508 | vtable_index >= static_cast<uint32_t>(super_class->GetVTableLength())) { |
| 509 | // Behavior to agree with that of the verifier. |
| 510 | ThrowNoSuchMethodError(type, resolved_method->GetDeclaringClass(), |
| 511 | resolved_method->GetName(), resolved_method->GetSignature()); |
| 512 | return nullptr; // Failure. |
| 513 | } |
| 514 | } |
| 515 | DCHECK(super_class != nullptr); |
| 516 | DCHECK(super_class->HasVTable()); |
| 517 | return super_class->GetVTableEntry(vtable_index, class_linker->GetImagePointerSize()); |
| 518 | } else { |
| 519 | // It is an interface. |
| 520 | if (access_check) { |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 521 | if (!method_reference_class->IsAssignableFrom(h_this->GetClass())) { |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 522 | ThrowIncompatibleClassChangeErrorClassForInterfaceSuper(resolved_method, |
| 523 | method_reference_class, |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 524 | h_this.Get(), |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 525 | referrer); |
| 526 | return nullptr; // Failure. |
| 527 | } |
| 528 | } |
| 529 | // TODO We can do better than this for a (compiled) fastpath. |
| 530 | ArtMethod* result = method_reference_class->FindVirtualMethodForInterfaceSuper( |
| 531 | resolved_method, class_linker->GetImagePointerSize()); |
| 532 | // Throw an NSME if nullptr; |
| 533 | if (result == nullptr) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 534 | ThrowNoSuchMethodError(type, resolved_method->GetDeclaringClass(), |
| 535 | resolved_method->GetName(), resolved_method->GetSignature()); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 536 | } |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 537 | return result; |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 538 | } |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 539 | UNREACHABLE(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 540 | } |
| 541 | case kInterface: { |
Andreas Gampe | 75a7db6 | 2016-09-26 12:04:26 -0700 | [diff] [blame] | 542 | uint32_t imt_index = ImTable::GetImtIndex(resolved_method); |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 543 | PointerSize pointer_size = class_linker->GetImagePointerSize(); |
Vladimir Marko | 302f69c | 2017-07-25 15:27:15 +0100 | [diff] [blame] | 544 | ObjPtr<mirror::Class> klass = (*this_object)->GetClass(); |
| 545 | ArtMethod* imt_method = klass->GetImt(pointer_size)->Get(imt_index, pointer_size); |
Nicolas Geoffray | 796d630 | 2016-03-13 22:22:31 +0000 | [diff] [blame] | 546 | if (!imt_method->IsRuntimeMethod()) { |
Mathieu Chartier | 2d2621a | 2014-10-23 16:48:06 -0700 | [diff] [blame] | 547 | if (kIsDebugBuild) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 548 | ArtMethod* method = klass->FindVirtualMethodForInterface( |
| 549 | resolved_method, class_linker->GetImagePointerSize()); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 550 | CHECK_EQ(imt_method, method) << ArtMethod::PrettyMethod(resolved_method) << " / " |
| 551 | << imt_method->PrettyMethod() << " / " |
| 552 | << ArtMethod::PrettyMethod(method) << " / " |
| 553 | << klass->PrettyClass(); |
Mathieu Chartier | 2d2621a | 2014-10-23 16:48:06 -0700 | [diff] [blame] | 554 | } |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 555 | return imt_method; |
| 556 | } else { |
Vladimir Marko | 302f69c | 2017-07-25 15:27:15 +0100 | [diff] [blame] | 557 | ArtMethod* interface_method = klass->FindVirtualMethodForInterface( |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 558 | resolved_method, class_linker->GetImagePointerSize()); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 559 | if (UNLIKELY(interface_method == nullptr)) { |
| 560 | ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(resolved_method, |
Andreas Gampe | 3a35714 | 2015-08-07 17:20:11 -0700 | [diff] [blame] | 561 | *this_object, referrer); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 562 | return nullptr; // Failure. |
| 563 | } |
| 564 | return interface_method; |
| 565 | } |
| 566 | } |
| 567 | default: |
| 568 | LOG(FATAL) << "Unknown invoke type " << type; |
| 569 | return nullptr; // Failure. |
| 570 | } |
| 571 | } |
| 572 | |
| 573 | // Explicit template declarations of FindMethodFromCode for all invoke types. |
| 574 | #define EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, _access_check) \ |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 575 | template REQUIRES_SHARED(Locks::mutator_lock_) ALWAYS_INLINE \ |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 576 | ArtMethod* FindMethodFromCode<_type, _access_check>(uint32_t method_idx, \ |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 577 | ObjPtr<mirror::Object>* this_object, \ |
Andreas Gampe | 3a35714 | 2015-08-07 17:20:11 -0700 | [diff] [blame] | 578 | ArtMethod* referrer, \ |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 579 | Thread* self) |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 580 | #define EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(_type) \ |
| 581 | EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, false); \ |
| 582 | EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL(_type, true) |
| 583 | |
| 584 | EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kStatic); |
| 585 | EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kDirect); |
| 586 | EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kVirtual); |
| 587 | EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kSuper); |
| 588 | EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kInterface); |
| 589 | |
| 590 | #undef EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL |
| 591 | #undef EXPLICIT_FIND_METHOD_FROM_CODE_TEMPLATE_DECL |
| 592 | |
| 593 | // Fast path field resolution that can't initialize classes or throw exceptions. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 594 | inline ArtField* FindFieldFast(uint32_t field_idx, ArtMethod* referrer, FindFieldType type, |
| 595 | size_t expected_size) { |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 596 | ScopedAssertNoThreadSuspension ants(__FUNCTION__); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 597 | ArtField* resolved_field = |
Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 598 | referrer->GetDexCache()->GetResolvedField(field_idx, kRuntimePointerSize); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 599 | if (UNLIKELY(resolved_field == nullptr)) { |
| 600 | return nullptr; |
| 601 | } |
| 602 | // Check for incompatible class change. |
David Srbecky | ce32c10 | 2018-08-31 07:21:07 +0100 | [diff] [blame^] | 603 | const bool is_primitive = (type & FindFieldFlags::PrimitiveBit) != 0; |
| 604 | const bool is_set = (type & FindFieldFlags::WriteBit) != 0; |
| 605 | const bool is_static = (type & FindFieldFlags::StaticBit) != 0; |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 606 | if (UNLIKELY(resolved_field->IsStatic() != is_static)) { |
| 607 | // Incompatible class change. |
| 608 | return nullptr; |
| 609 | } |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 610 | ObjPtr<mirror::Class> fields_class = resolved_field->GetDeclaringClass(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 611 | if (is_static) { |
| 612 | // Check class is initialized else fail so that we can contend to initialize the class with |
| 613 | // other threads that may be racing to do this. |
| 614 | if (UNLIKELY(!fields_class->IsInitialized())) { |
| 615 | return nullptr; |
| 616 | } |
| 617 | } |
Vladimir Marko | f79aa7f | 2017-07-04 16:58:55 +0100 | [diff] [blame] | 618 | ObjPtr<mirror::Class> referring_class = referrer->GetDeclaringClass(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 619 | if (UNLIKELY(!referring_class->CanAccess(fields_class) || |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 620 | !referring_class->CanAccessMember(fields_class, resolved_field->GetAccessFlags()) || |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 621 | (is_set && resolved_field->IsFinal() && (fields_class != referring_class)))) { |
| 622 | // Illegal access. |
| 623 | return nullptr; |
| 624 | } |
| 625 | if (UNLIKELY(resolved_field->IsPrimitiveType() != is_primitive || |
| 626 | resolved_field->FieldSize() != expected_size)) { |
| 627 | return nullptr; |
| 628 | } |
| 629 | return resolved_field; |
| 630 | } |
| 631 | |
| 632 | // Fast path method resolution that can't throw exceptions. |
Vladimir Marko | f79aa7f | 2017-07-04 16:58:55 +0100 | [diff] [blame] | 633 | template <InvokeType type, bool access_check> |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 634 | inline ArtMethod* FindMethodFast(uint32_t method_idx, |
| 635 | ObjPtr<mirror::Object> this_object, |
Vladimir Marko | f79aa7f | 2017-07-04 16:58:55 +0100 | [diff] [blame] | 636 | ArtMethod* referrer) { |
Mathieu Chartier | be08cf5 | 2016-09-13 13:41:24 -0700 | [diff] [blame] | 637 | ScopedAssertNoThreadSuspension ants(__FUNCTION__); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 638 | if (UNLIKELY(this_object == nullptr && type != kStatic)) { |
| 639 | return nullptr; |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 640 | } |
Vladimir Marko | f79aa7f | 2017-07-04 16:58:55 +0100 | [diff] [blame] | 641 | ObjPtr<mirror::Class> referring_class = referrer->GetDeclaringClass(); |
| 642 | ObjPtr<mirror::DexCache> dex_cache = referrer->GetDexCache(); |
Vladimir Marko | ba11882 | 2017-06-12 15:41:56 +0100 | [diff] [blame] | 643 | constexpr ClassLinker::ResolveMode resolve_mode = access_check |
| 644 | ? ClassLinker::ResolveMode::kCheckICCEAndIAE |
| 645 | : ClassLinker::ResolveMode::kNoChecks; |
| 646 | ClassLinker* linker = Runtime::Current()->GetClassLinker(); |
| 647 | ArtMethod* resolved_method = linker->GetResolvedMethod<type, resolve_mode>(method_idx, referrer); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 648 | if (UNLIKELY(resolved_method == nullptr)) { |
| 649 | return nullptr; |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 650 | } |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 651 | if (type == kInterface) { // Most common form of slow path dispatch. |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 652 | return this_object->GetClass()->FindVirtualMethodForInterface(resolved_method, |
| 653 | kRuntimePointerSize); |
Jeff Hao | 207a37d | 2014-10-29 17:24:25 -0700 | [diff] [blame] | 654 | } else if (type == kStatic || type == kDirect) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 655 | return resolved_method; |
| 656 | } else if (type == kSuper) { |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 657 | // TODO This lookup is rather slow. |
Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 658 | dex::TypeIndex method_type_idx = dex_cache->GetDexFile()->GetMethodId(method_idx).class_idx_; |
Vladimir Marko | 666ee3d | 2017-12-11 18:37:36 +0000 | [diff] [blame] | 659 | ObjPtr<mirror::Class> method_reference_class = linker->LookupResolvedType( |
Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 660 | method_type_idx, dex_cache, referrer->GetClassLoader()); |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 661 | if (method_reference_class == nullptr) { |
| 662 | // Need to do full type resolution... |
Nicolas Geoffray | e523423 | 2015-12-02 09:06:11 +0000 | [diff] [blame] | 663 | return nullptr; |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 664 | } else if (!method_reference_class->IsInterface()) { |
Aart Bik | f663e34 | 2016-04-04 17:28:59 -0700 | [diff] [blame] | 665 | // It is not an interface. If the referring class is in the class hierarchy of the |
| 666 | // referenced class in the bytecode, we use its super class. Otherwise, we cannot |
| 667 | // resolve the method. |
| 668 | if (!method_reference_class->IsAssignableFrom(referring_class)) { |
| 669 | return nullptr; |
| 670 | } |
Vladimir Marko | f79aa7f | 2017-07-04 16:58:55 +0100 | [diff] [blame] | 671 | ObjPtr<mirror::Class> super_class = referring_class->GetSuperClass(); |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 672 | if (resolved_method->GetMethodIndex() >= super_class->GetVTableLength()) { |
| 673 | // The super class does not have the method. |
| 674 | return nullptr; |
| 675 | } |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 676 | return super_class->GetVTableEntry(resolved_method->GetMethodIndex(), kRuntimePointerSize); |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 677 | } else { |
| 678 | return method_reference_class->FindVirtualMethodForInterfaceSuper( |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 679 | resolved_method, kRuntimePointerSize); |
Nicolas Geoffray | e523423 | 2015-12-02 09:06:11 +0000 | [diff] [blame] | 680 | } |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 681 | } else { |
| 682 | DCHECK(type == kVirtual); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 683 | return this_object->GetClass()->GetVTableEntry( |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 684 | resolved_method->GetMethodIndex(), kRuntimePointerSize); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 685 | } |
| 686 | } |
| 687 | |
Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 688 | inline ObjPtr<mirror::Class> ResolveVerifyAndClinit(dex::TypeIndex type_idx, |
| 689 | ArtMethod* referrer, |
| 690 | Thread* self, |
| 691 | bool can_run_clinit, |
| 692 | bool verify_access) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 693 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 694 | ObjPtr<mirror::Class> klass = class_linker->ResolveType(type_idx, referrer); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 695 | if (UNLIKELY(klass == nullptr)) { |
| 696 | CHECK(self->IsExceptionPending()); |
| 697 | return nullptr; // Failure - Indicate to caller to deliver exception |
| 698 | } |
| 699 | // Perform access check if necessary. |
Vladimir Marko | d93e374 | 2018-07-18 10:58:13 +0100 | [diff] [blame] | 700 | ObjPtr<mirror::Class> referring_class = referrer->GetDeclaringClass(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 701 | if (verify_access && UNLIKELY(!referring_class->CanAccess(klass))) { |
| 702 | ThrowIllegalAccessErrorClass(referring_class, klass); |
| 703 | return nullptr; // Failure - Indicate to caller to deliver exception |
| 704 | } |
| 705 | // If we're just implementing const-class, we shouldn't call <clinit>. |
| 706 | if (!can_run_clinit) { |
| 707 | return klass; |
| 708 | } |
| 709 | // If we are the <clinit> of this class, just return our storage. |
| 710 | // |
| 711 | // Do not set the DexCache InitializedStaticStorage, since that implies <clinit> has finished |
| 712 | // running. |
| 713 | if (klass == referring_class && referrer->IsConstructor() && referrer->IsStatic()) { |
| 714 | return klass; |
| 715 | } |
| 716 | StackHandleScope<1> hs(self); |
| 717 | Handle<mirror::Class> h_class(hs.NewHandle(klass)); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 718 | if (!class_linker->EnsureInitialized(self, h_class, true, true)) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 719 | CHECK(self->IsExceptionPending()); |
| 720 | return nullptr; // Failure - Indicate to caller to deliver exception |
| 721 | } |
| 722 | return h_class.Get(); |
| 723 | } |
| 724 | |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 725 | inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 726 | // Save any pending exception over monitor exit call. |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 727 | mirror::Throwable* saved_exception = nullptr; |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 728 | if (UNLIKELY(self->IsExceptionPending())) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 729 | saved_exception = self->GetException(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 730 | self->ClearException(); |
| 731 | } |
| 732 | // Decode locked object and unlock, before popping local references. |
| 733 | self->DecodeJObject(locked)->MonitorExit(self); |
| 734 | if (UNLIKELY(self->IsExceptionPending())) { |
| 735 | LOG(FATAL) << "Synchronized JNI code returning with an exception:\n" |
| 736 | << saved_exception->Dump() |
| 737 | << "\nEncountered second exception during implicit MonitorExit:\n" |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 738 | << self->GetException()->Dump(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 739 | } |
| 740 | // Restore pending exception. |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 741 | if (saved_exception != nullptr) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 742 | self->SetException(saved_exception); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 743 | } |
| 744 | } |
| 745 | |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 746 | template <typename INT_TYPE, typename FLOAT_TYPE> |
Andreas Gampe | 9f612ff | 2014-11-24 13:42:22 -0800 | [diff] [blame] | 747 | inline INT_TYPE art_float_to_integral(FLOAT_TYPE f) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 748 | const INT_TYPE kMaxInt = static_cast<INT_TYPE>(std::numeric_limits<INT_TYPE>::max()); |
| 749 | const INT_TYPE kMinInt = static_cast<INT_TYPE>(std::numeric_limits<INT_TYPE>::min()); |
| 750 | const FLOAT_TYPE kMaxIntAsFloat = static_cast<FLOAT_TYPE>(kMaxInt); |
| 751 | const FLOAT_TYPE kMinIntAsFloat = static_cast<FLOAT_TYPE>(kMinInt); |
| 752 | if (LIKELY(f > kMinIntAsFloat)) { |
| 753 | if (LIKELY(f < kMaxIntAsFloat)) { |
| 754 | return static_cast<INT_TYPE>(f); |
| 755 | } else { |
| 756 | return kMaxInt; |
| 757 | } |
| 758 | } else { |
| 759 | return (f != f) ? 0 : kMinInt; // f != f implies NaN |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | } // namespace art |
| 764 | |
| 765 | #endif // ART_RUNTIME_ENTRYPOINTS_ENTRYPOINT_UTILS_INL_H_ |