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