Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 17 | #include "art_method.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 18 | |
Andreas Gampe | 479b1de | 2016-07-19 18:27:17 -0700 | [diff] [blame] | 19 | #include <cstddef> |
| 20 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 21 | #include "android-base/stringprintf.h" |
| 22 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 23 | #include "arch/context.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 24 | #include "art_method-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 25 | #include "base/stringpiece.h" |
Hiroshi Yamauchi | 0037082 | 2015-08-18 14:47:25 -0700 | [diff] [blame] | 26 | #include "class_linker-inl.h" |
Andreas Gampe | 2a5c468 | 2015-08-14 08:22:54 -0700 | [diff] [blame] | 27 | #include "debugger.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 28 | #include "dex/dex_file-inl.h" |
| 29 | #include "dex/dex_file_exception_helpers.h" |
| 30 | #include "dex/dex_instruction.h" |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 31 | #include "entrypoints/runtime_asm_entrypoints.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 32 | #include "gc/accounting/card_table-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 33 | #include "interpreter/interpreter.h" |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 34 | #include "jit/jit.h" |
| 35 | #include "jit/jit_code_cache.h" |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 36 | #include "jit/profiling_info.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 37 | #include "jni_internal.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 38 | #include "mirror/class-inl.h" |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 39 | #include "mirror/class_ext.h" |
Neil Fuller | 0e84439 | 2016-09-08 13:43:31 +0100 | [diff] [blame] | 40 | #include "mirror/executable.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 41 | #include "mirror/object-inl.h" |
Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 42 | #include "mirror/object_array-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 43 | #include "mirror/string.h" |
Nicolas Geoffray | 9523a3e | 2015-07-17 11:51:28 +0000 | [diff] [blame] | 44 | #include "oat_file-inl.h" |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 45 | #include "runtime_callbacks.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 46 | #include "scoped_thread_state_change-inl.h" |
Nicolas Geoffray | b02ba93 | 2017-07-13 15:53:54 +0100 | [diff] [blame] | 47 | #include "vdex_file.h" |
Ian Rogers | 62f0512 | 2014-03-21 11:21:29 -0700 | [diff] [blame] | 48 | #include "well_known_classes.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 49 | |
| 50 | namespace art { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 51 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 52 | using android::base::StringPrintf; |
| 53 | |
Ian Rogers | 0177e53 | 2014-02-11 16:30:46 -0800 | [diff] [blame] | 54 | extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*, |
| 55 | const char*); |
Ian Rogers | 936b37f | 2014-02-14 00:52:24 -0800 | [diff] [blame] | 56 | extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*, |
| 57 | const char*); |
Jeff Hao | 5d91730 | 2013-02-27 17:57:33 -0800 | [diff] [blame] | 58 | |
Andreas Gampe | aea05c1 | 2017-05-19 08:45:02 -0700 | [diff] [blame] | 59 | DEFINE_RUNTIME_DEBUG_FLAG(ArtMethod, kCheckDeclaringClassState); |
| 60 | |
Andreas Gampe | c6ea7d0 | 2017-02-01 16:46:28 -0800 | [diff] [blame] | 61 | // Enforce that we he have the right index for runtime methods. |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 62 | static_assert(ArtMethod::kRuntimeMethodDexMethodIndex == dex::kDexNoIndex, |
Andreas Gampe | c6ea7d0 | 2017-02-01 16:46:28 -0800 | [diff] [blame] | 63 | "Wrong runtime-method dex method index"); |
| 64 | |
Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 65 | ArtMethod* ArtMethod::GetCanonicalMethod(PointerSize pointer_size) { |
| 66 | if (LIKELY(!IsDefault())) { |
| 67 | return this; |
| 68 | } else { |
| 69 | mirror::Class* declaring_class = GetDeclaringClass(); |
Vladimir Marko | ba11882 | 2017-06-12 15:41:56 +0100 | [diff] [blame] | 70 | DCHECK(declaring_class->IsInterface()); |
| 71 | ArtMethod* ret = declaring_class->FindInterfaceMethod(declaring_class->GetDexCache(), |
| 72 | GetDexMethodIndex(), |
| 73 | pointer_size); |
Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 74 | DCHECK(ret != nullptr); |
| 75 | return ret; |
| 76 | } |
| 77 | } |
| 78 | |
Alex Light | 4ba388a | 2017-01-27 10:26:49 -0800 | [diff] [blame] | 79 | ArtMethod* ArtMethod::GetNonObsoleteMethod() { |
| 80 | DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize()); |
| 81 | if (LIKELY(!IsObsolete())) { |
| 82 | return this; |
| 83 | } else if (IsDirect()) { |
| 84 | return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()]; |
| 85 | } else { |
| 86 | return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize); |
| 87 | } |
| 88 | } |
| 89 | |
Mingyao Yang | e8fcd01 | 2017-01-20 10:43:30 -0800 | [diff] [blame] | 90 | ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) { |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 91 | if (!IsAbstract()) { |
| 92 | // A non-abstract's single implementation is itself. |
| 93 | return this; |
| 94 | } |
Mingyao Yang | e8fcd01 | 2017-01-20 10:43:30 -0800 | [diff] [blame] | 95 | return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size)); |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Mathieu Chartier | 2b7c4d1 | 2014-05-19 10:52:16 -0700 | [diff] [blame] | 98 | ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa, |
| 99 | jobject jlr_method) { |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 100 | ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method); |
Neil Fuller | 0e84439 | 2016-09-08 13:43:31 +0100 | [diff] [blame] | 101 | DCHECK(executable != nullptr); |
| 102 | return executable->GetArtMethod(); |
Ian Rogers | 62f0512 | 2014-03-21 11:21:29 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 105 | mirror::DexCache* ArtMethod::GetObsoleteDexCache() { |
| 106 | DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod(); |
| 107 | DCHECK(IsObsolete()); |
| 108 | ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData()); |
| 109 | CHECK(!ext.IsNull()); |
| 110 | ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods()); |
| 111 | CHECK(!obsolete_methods.IsNull()); |
| 112 | DCHECK(ext->GetObsoleteDexCaches() != nullptr); |
| 113 | int32_t len = obsolete_methods->GetLength(); |
| 114 | DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength()); |
Alex Light | 0b77257 | 2016-12-02 17:27:31 -0800 | [diff] [blame] | 115 | // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images |
| 116 | // should never have obsolete methods in them so they should always be the same. |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 117 | PointerSize pointer_size = kRuntimePointerSize; |
| 118 | DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize()); |
| 119 | for (int32_t i = 0; i < len; i++) { |
| 120 | if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) { |
| 121 | return ext->GetObsoleteDexCaches()->Get(i); |
| 122 | } |
| 123 | } |
| 124 | LOG(FATAL) << "This method does not appear in the obsolete map of its class!"; |
| 125 | UNREACHABLE(); |
| 126 | } |
| 127 | |
Alex Light | f2f1c9d | 2017-03-15 15:35:46 +0000 | [diff] [blame] | 128 | uint16_t ArtMethod::FindObsoleteDexClassDefIndex() { |
| 129 | DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod(); |
| 130 | DCHECK(IsObsolete()); |
| 131 | const DexFile* dex_file = GetDexFile(); |
| 132 | const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_; |
| 133 | const DexFile::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type); |
| 134 | CHECK(class_def != nullptr); |
| 135 | return dex_file->GetIndexForClassDef(*class_def); |
| 136 | } |
| 137 | |
Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 138 | ObjPtr<mirror::String> ArtMethod::GetNameAsString(Thread* self) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 139 | CHECK(!IsProxyMethod()); |
Ian Rogers | 6b14d55 | 2014-10-28 21:50:58 -0700 | [diff] [blame] | 140 | StackHandleScope<1> hs(self); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 141 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache())); |
| 142 | auto* dex_file = dex_cache->GetDexFile(); |
| 143 | uint32_t dex_method_idx = GetDexMethodIndex(); |
| 144 | const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx); |
Vladimir Marko | a64b52d | 2017-12-08 16:27:49 +0000 | [diff] [blame] | 145 | return Runtime::Current()->GetClassLinker()->ResolveString(method_id.name_idx_, dex_cache); |
Ian Rogers | 6b14d55 | 2014-10-28 21:50:58 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 148 | void ArtMethod::ThrowInvocationTimeError() { |
| 149 | DCHECK(!IsInvokable()); |
| 150 | // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract |
| 151 | // due to the way we select it. |
| 152 | if (IsDefaultConflicting()) { |
| 153 | ThrowIncompatibleClassChangeErrorForMethodConflict(this); |
| 154 | } else { |
| 155 | DCHECK(IsAbstract()); |
| 156 | ThrowAbstractMethodError(this); |
| 157 | } |
| 158 | } |
| 159 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 160 | InvokeType ArtMethod::GetInvokeType() { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 161 | // TODO: kSuper? |
Nicolas Geoffray | 3aaf964 | 2016-06-07 14:14:37 +0000 | [diff] [blame] | 162 | if (IsStatic()) { |
Nicolas Geoffray | 12abcbd | 2016-06-06 15:51:58 +0000 | [diff] [blame] | 163 | return kStatic; |
Nicolas Geoffray | 3aaf964 | 2016-06-07 14:14:37 +0000 | [diff] [blame] | 164 | } else if (GetDeclaringClass()->IsInterface()) { |
| 165 | return kInterface; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 166 | } else if (IsDirect()) { |
| 167 | return kDirect; |
Orion Hodson | 43f0cdb | 2017-10-10 14:47:32 +0100 | [diff] [blame] | 168 | } else if (IsPolymorphicSignature()) { |
| 169 | return kPolymorphic; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 170 | } else { |
| 171 | return kVirtual; |
| 172 | } |
| 173 | } |
| 174 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 175 | size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) { |
Ian Rogers | 6b604a1 | 2014-09-25 15:35:37 -0700 | [diff] [blame] | 176 | CHECK_LE(1U, shorty.length()); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 177 | uint32_t num_registers = 0; |
Ian Rogers | 6b604a1 | 2014-09-25 15:35:37 -0700 | [diff] [blame] | 178 | for (size_t i = 1; i < shorty.length(); ++i) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 179 | char ch = shorty[i]; |
| 180 | if (ch == 'D' || ch == 'J') { |
| 181 | num_registers += 2; |
| 182 | } else { |
| 183 | num_registers += 1; |
| 184 | } |
| 185 | } |
| 186 | return num_registers; |
| 187 | } |
| 188 | |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 189 | bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) { |
Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 190 | ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature"); |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 191 | const DexFile* dex_file = GetDexFile(); |
| 192 | const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex()); |
| 193 | if (GetDexCache() == other->GetDexCache()) { |
| 194 | const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex()); |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 195 | return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_; |
| 196 | } |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 197 | const DexFile* dex_file2 = other->GetDexFile(); |
| 198 | const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex()); |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 199 | if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) { |
| 200 | return false; // Name mismatch. |
| 201 | } |
| 202 | return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2); |
| 203 | } |
| 204 | |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 205 | ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 206 | if (IsStatic()) { |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 207 | return nullptr; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 208 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 209 | mirror::Class* declaring_class = GetDeclaringClass(); |
| 210 | mirror::Class* super_class = declaring_class->GetSuperClass(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 211 | uint16_t method_index = GetMethodIndex(); |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 212 | ArtMethod* result = nullptr; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 213 | // Did this method override a super class method? If so load the result from the super class' |
| 214 | // vtable |
Mingyao Yang | 2cdbad7 | 2014-07-16 10:44:41 -0700 | [diff] [blame] | 215 | if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 216 | result = super_class->GetVTableEntry(method_index, pointer_size); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 217 | } else { |
| 218 | // Method didn't override superclass method so search interfaces |
| 219 | if (IsProxyMethod()) { |
Vladimir Marko | 07bfbac | 2017-07-06 14:55:02 +0100 | [diff] [blame] | 220 | result = GetInterfaceMethodIfProxy(pointer_size); |
| 221 | DCHECK(result != nullptr); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 222 | } else { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 223 | mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable(); |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 224 | for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 225 | mirror::Class* interface = iftable->GetInterface(i); |
Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 226 | for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) { |
| 227 | if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) { |
| 228 | result = &interface_method; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 229 | break; |
| 230 | } |
| 231 | } |
| 232 | } |
| 233 | } |
| 234 | } |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 235 | DCHECK(result == nullptr || |
Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 236 | GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature( |
| 237 | result->GetInterfaceMethodIfProxy(pointer_size))); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 238 | return result; |
| 239 | } |
| 240 | |
Ian Rogers | e0a02da | 2014-12-02 14:10:53 -0800 | [diff] [blame] | 241 | uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile, |
| 242 | uint32_t name_and_signature_idx) { |
| 243 | const DexFile* dexfile = GetDexFile(); |
| 244 | const uint32_t dex_method_idx = GetDexMethodIndex(); |
| 245 | const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx); |
| 246 | const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx); |
| 247 | DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid)); |
| 248 | DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid)); |
| 249 | if (dexfile == &other_dexfile) { |
| 250 | return dex_method_idx; |
| 251 | } |
| 252 | const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_); |
Mathieu Chartier | 9507fa2 | 2015-10-29 15:08:57 -0700 | [diff] [blame] | 253 | const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor); |
| 254 | if (other_type_id != nullptr) { |
| 255 | const DexFile::MethodId* other_mid = other_dexfile.FindMethodId( |
| 256 | *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_), |
| 257 | other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_)); |
| 258 | if (other_mid != nullptr) { |
| 259 | return other_dexfile.GetIndexForMethodId(*other_mid); |
Ian Rogers | e0a02da | 2014-12-02 14:10:53 -0800 | [diff] [blame] | 260 | } |
| 261 | } |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 262 | return dex::kDexNoIndex; |
Ian Rogers | e0a02da | 2014-12-02 14:10:53 -0800 | [diff] [blame] | 263 | } |
| 264 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 265 | uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type, |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 266 | uint32_t dex_pc, bool* has_no_move_exception) { |
Jeff Hao | aa96191 | 2014-04-22 13:54:32 -0700 | [diff] [blame] | 267 | // Set aside the exception while we resolve its type. |
| 268 | Thread* self = Thread::Current(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 269 | StackHandleScope<1> hs(self); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 270 | Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); |
Jeff Hao | aa96191 | 2014-04-22 13:54:32 -0700 | [diff] [blame] | 271 | self->ClearException(); |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 272 | // Default to handler not found. |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 273 | uint32_t found_dex_pc = dex::kDexNoIndex; |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 274 | // Iterate over the catch handlers associated with dex_pc. |
Mathieu Chartier | dc578c7 | 2017-12-27 11:51:45 -0800 | [diff] [blame] | 275 | CodeItemDataAccessor accessor(this); |
| 276 | for (CatchHandlerIterator it(accessor, dex_pc); it.HasNext(); it.Next()) { |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 277 | dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 278 | // Catch all case |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 279 | if (!iter_type_idx.IsValid()) { |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 280 | found_dex_pc = it.GetHandlerAddress(); |
| 281 | break; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 282 | } |
| 283 | // Does this catch exception type apply? |
Vladimir Marko | b45528c | 2017-07-27 14:14:28 +0100 | [diff] [blame] | 284 | ObjPtr<mirror::Class> iter_exception_type = ResolveClassFromTypeIndex(iter_type_idx); |
Ian Rogers | 822266b | 2014-05-29 16:55:06 -0700 | [diff] [blame] | 285 | if (UNLIKELY(iter_exception_type == nullptr)) { |
| 286 | // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was |
| 287 | // removed by a pro-guard like tool. |
Andreas Gampe | 72b3e43 | 2014-05-13 21:42:05 -0700 | [diff] [blame] | 288 | // Note: this is not RI behavior. RI would have failed when loading the class. |
Ian Rogers | 822266b | 2014-05-29 16:55:06 -0700 | [diff] [blame] | 289 | self->ClearException(); |
| 290 | // Delete any long jump context as this routine is called during a stack walk which will |
| 291 | // release its in use context at the end. |
| 292 | delete self->GetLongJumpContext(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 293 | LOG(WARNING) << "Unresolved exception class when finding catch block: " |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 294 | << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx)); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 295 | } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) { |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 296 | found_dex_pc = it.GetHandlerAddress(); |
| 297 | break; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 298 | } |
| 299 | } |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 300 | if (found_dex_pc != dex::kDexNoIndex) { |
Mathieu Chartier | dc578c7 | 2017-12-27 11:51:45 -0800 | [diff] [blame] | 301 | const Instruction& first_catch_instr = accessor.InstructionAt(found_dex_pc); |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 302 | *has_no_move_exception = (first_catch_instr.Opcode() != Instruction::MOVE_EXCEPTION); |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 303 | } |
Jeff Hao | aa96191 | 2014-04-22 13:54:32 -0700 | [diff] [blame] | 304 | // Put the exception back. |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 305 | if (exception != nullptr) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 306 | self->SetException(exception.Get()); |
Jeff Hao | aa96191 | 2014-04-22 13:54:32 -0700 | [diff] [blame] | 307 | } |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 308 | return found_dex_pc; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 309 | } |
| 310 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 311 | void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result, |
Ian Rogers | 0177e53 | 2014-02-11 16:30:46 -0800 | [diff] [blame] | 312 | const char* shorty) { |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 313 | if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) { |
| 314 | ThrowStackOverflowError(self); |
| 315 | return; |
| 316 | } |
| 317 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 318 | if (kIsDebugBuild) { |
| 319 | self->AssertThreadSuspensionIsAllowable(); |
| 320 | CHECK_EQ(kRunnable, self->GetState()); |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 321 | CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty); |
Alex Light | 94730ef | 2018-01-10 15:33:34 -0800 | [diff] [blame] | 322 | |
| 323 | if (!IsNative() && |
| 324 | !IsObsolete() && |
| 325 | !IsProxyMethod() && |
| 326 | IsInvokable() && |
| 327 | ClassLinker::ShouldUseInterpreterEntrypoint(this, GetEntryPointFromQuickCompiledCode())) { |
| 328 | ClassLinker* cl = Runtime::Current()->GetClassLinker(); |
| 329 | const void* entry_point = GetEntryPointFromQuickCompiledCode(); |
| 330 | DCHECK(cl->IsQuickToInterpreterBridge(entry_point) || |
| 331 | cl->IsQuickResolutionStub(entry_point) || |
| 332 | entry_point == GetQuickInstrumentationEntryPoint()) |
| 333 | << PrettyMethod() << " is expected to be interpreted but has an unexpected entrypoint." |
| 334 | << " The entrypoint is " << entry_point << " (incorrect) oat entrypoint would be " |
| 335 | << GetOatMethodQuickCode(cl->GetImagePointerSize()); |
| 336 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | // Push a transition back into managed code onto the linked list in thread. |
| 340 | ManagedStack fragment; |
| 341 | self->PushManagedStackFragment(&fragment); |
| 342 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 343 | Runtime* runtime = Runtime::Current(); |
Jeff Hao | 74180ca | 2013-03-27 15:29:11 -0700 | [diff] [blame] | 344 | // Call the invoke stub, passing everything as arguments. |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 345 | // If the runtime is not yet started or it is required by the debugger, then perform the |
Aart Bik | 0122320 | 2016-05-05 15:10:42 -0700 | [diff] [blame] | 346 | // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent |
| 347 | // cycling around the various JIT/Interpreter methods that handle method invocation. |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 348 | if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) { |
Ian Rogers | 5d27faf | 2014-05-02 17:17:18 -0700 | [diff] [blame] | 349 | if (IsStatic()) { |
Aart Bik | 0122320 | 2016-05-05 15:10:42 -0700 | [diff] [blame] | 350 | art::interpreter::EnterInterpreterFromInvoke( |
| 351 | self, this, nullptr, args, result, /*stay_in_interpreter*/ true); |
Ian Rogers | 5d27faf | 2014-05-02 17:17:18 -0700 | [diff] [blame] | 352 | } else { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 353 | mirror::Object* receiver = |
| 354 | reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr(); |
Aart Bik | 0122320 | 2016-05-05 15:10:42 -0700 | [diff] [blame] | 355 | art::interpreter::EnterInterpreterFromInvoke( |
| 356 | self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 357 | } |
| 358 | } else { |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 359 | DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 360 | |
| 361 | constexpr bool kLogInvocationStartAndReturn = false; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 362 | bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr; |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 363 | if (LIKELY(have_quick_code)) { |
Jeff Hao | 790ad90 | 2013-05-22 15:02:08 -0700 | [diff] [blame] | 364 | if (kLogInvocationStartAndReturn) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 365 | LOG(INFO) << StringPrintf( |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 366 | "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(), |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 367 | GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0)); |
Jeff Hao | 790ad90 | 2013-05-22 15:02:08 -0700 | [diff] [blame] | 368 | } |
Hiroshi Yamauchi | 9bdec88 | 2014-08-15 17:11:12 -0700 | [diff] [blame] | 369 | |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 370 | // Ensure that we won't be accidentally calling quick compiled code when -Xint. |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 371 | if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) { |
Calin Juravle | ffc8707 | 2016-04-20 14:22:09 +0100 | [diff] [blame] | 372 | CHECK(!runtime->UseJitCompilation()); |
Alex Light | db01a09 | 2017-04-03 15:39:55 -0700 | [diff] [blame] | 373 | const void* oat_quick_code = |
| 374 | (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete()) |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 375 | ? nullptr |
| 376 | : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()); |
Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 377 | CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode()) |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 378 | << "Don't call compiled code when -Xint " << PrettyMethod(); |
Hiroshi Yamauchi | 9bdec88 | 2014-08-15 17:11:12 -0700 | [diff] [blame] | 379 | } |
| 380 | |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 381 | if (!IsStatic()) { |
Ian Rogers | 0177e53 | 2014-02-11 16:30:46 -0800 | [diff] [blame] | 382 | (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 383 | } else { |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 384 | (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 385 | } |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 386 | if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) { |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 387 | // Unusual case where we were running generated code and an |
Jeff Hao | 790ad90 | 2013-05-22 15:02:08 -0700 | [diff] [blame] | 388 | // exception was thrown to force the activations to be removed from the |
| 389 | // stack. Continue execution in the interpreter. |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 390 | self->DeoptimizeWithDeoptimizationException(result); |
Jeff Hao | 790ad90 | 2013-05-22 15:02:08 -0700 | [diff] [blame] | 391 | } |
| 392 | if (kLogInvocationStartAndReturn) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 393 | LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(), |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 394 | GetEntryPointFromQuickCompiledCode()); |
Jeff Hao | 5d91730 | 2013-02-27 17:57:33 -0800 | [diff] [blame] | 395 | } |
| 396 | } else { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 397 | LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null"; |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 398 | if (result != nullptr) { |
Jeff Hao | 5d91730 | 2013-02-27 17:57:33 -0800 | [diff] [blame] | 399 | result->SetJ(0); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 400 | } |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | // Pop transition. |
| 405 | self->PopManagedStackFragment(fragment); |
| 406 | } |
| 407 | |
Vladimir Marko | b0a6aee | 2017-10-27 10:34:04 +0100 | [diff] [blame] | 408 | const void* ArtMethod::RegisterNative(const void* native_method) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 409 | CHECK(IsNative()) << PrettyMethod(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 410 | CHECK(native_method != nullptr) << PrettyMethod(); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 411 | void* new_native_method = nullptr; |
| 412 | Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this, |
| 413 | native_method, |
| 414 | /*out*/&new_native_method); |
| 415 | SetEntryPointFromJni(new_native_method); |
| 416 | return new_native_method; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 417 | } |
| 418 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 419 | void ArtMethod::UnregisterNative() { |
Vladimir Marko | b0a6aee | 2017-10-27 10:34:04 +0100 | [diff] [blame] | 420 | CHECK(IsNative()) << PrettyMethod(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 421 | // restore stub to lookup native pointer via dlsym |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 422 | SetEntryPointFromJni(GetJniDlsymLookupStub()); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 423 | } |
| 424 | |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 425 | bool ArtMethod::IsOverridableByDefaultMethod() { |
| 426 | return GetDeclaringClass()->IsInterface(); |
| 427 | } |
| 428 | |
Orion Hodson | eb4d19b | 2017-11-06 15:49:23 +0000 | [diff] [blame] | 429 | bool ArtMethod::IsPolymorphicSignature() { |
| 430 | // Methods with a polymorphic signature have constraints that they |
| 431 | // are native and varargs and belong to either MethodHandle or VarHandle. |
| 432 | if (!IsNative() || !IsVarargs()) { |
| 433 | return false; |
| 434 | } |
| 435 | mirror::Class* cls = GetDeclaringClass(); |
| 436 | return (cls == WellKnownClasses::ToClass(WellKnownClasses::java_lang_invoke_MethodHandle) || |
| 437 | cls == WellKnownClasses::ToClass(WellKnownClasses::java_lang_invoke_VarHandle)); |
| 438 | } |
| 439 | |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 440 | static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file, |
| 441 | uint16_t class_def_idx, |
| 442 | uint32_t method_idx) { |
| 443 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx); |
| 444 | const uint8_t* class_data = dex_file.GetClassData(class_def); |
| 445 | CHECK(class_data != nullptr); |
| 446 | ClassDataItemIterator it(dex_file, class_data); |
Mathieu Chartier | e17cf24 | 2017-06-19 11:05:51 -0700 | [diff] [blame] | 447 | it.SkipAllFields(); |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 448 | // Process methods |
| 449 | size_t class_def_method_index = 0; |
| 450 | while (it.HasNextDirectMethod()) { |
| 451 | if (it.GetMemberIndex() == method_idx) { |
| 452 | return class_def_method_index; |
| 453 | } |
| 454 | class_def_method_index++; |
| 455 | it.Next(); |
| 456 | } |
| 457 | while (it.HasNextVirtualMethod()) { |
| 458 | if (it.GetMemberIndex() == method_idx) { |
| 459 | return class_def_method_index; |
| 460 | } |
| 461 | class_def_method_index++; |
| 462 | it.Next(); |
| 463 | } |
| 464 | DCHECK(!it.HasNext()); |
| 465 | LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation(); |
| 466 | UNREACHABLE(); |
| 467 | } |
| 468 | |
Alex Light | eee0bd4 | 2017-02-14 15:31:45 +0000 | [diff] [blame] | 469 | // We use the method's DexFile and declaring class name to find the OatMethod for an obsolete |
| 470 | // method. This is extremely slow but we need it if we want to be able to have obsolete native |
| 471 | // methods since we need this to find the size of its stack frames. |
| 472 | // |
| 473 | // NB We could (potentially) do this differently and rely on the way the transformation is applied |
| 474 | // in order to use the entrypoint to find this information. However, for debugging reasons (most |
| 475 | // notably making sure that new invokes of obsolete methods fail) we choose to instead get the data |
| 476 | // directly from the dex file. |
| 477 | static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found) |
| 478 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 479 | DCHECK(method->IsObsolete() && method->IsNative()); |
| 480 | const DexFile* dex_file = method->GetDexFile(); |
| 481 | |
| 482 | // recreate the class_def_index from the descriptor. |
| 483 | std::string descriptor_storage; |
| 484 | const DexFile::TypeId* declaring_class_type_id = |
| 485 | dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage)); |
| 486 | CHECK(declaring_class_type_id != nullptr); |
| 487 | dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id); |
| 488 | const DexFile::ClassDef* declaring_class_type_def = |
| 489 | dex_file->FindClassDef(declaring_class_type_index); |
| 490 | CHECK(declaring_class_type_def != nullptr); |
| 491 | uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def); |
| 492 | |
| 493 | size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file, |
| 494 | declaring_class_def_index, |
| 495 | method->GetDexMethodIndex()); |
| 496 | |
| 497 | OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file, |
| 498 | declaring_class_def_index, |
| 499 | found); |
| 500 | if (!(*found)) { |
| 501 | return OatFile::OatMethod::Invalid(); |
| 502 | } |
| 503 | return oat_class.GetOatMethod(oat_method_index); |
| 504 | } |
| 505 | |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 506 | static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method, |
| 507 | PointerSize pointer_size, |
| 508 | bool* found) |
| 509 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Alex Light | eee0bd4 | 2017-02-14 15:31:45 +0000 | [diff] [blame] | 510 | if (UNLIKELY(method->IsObsolete())) { |
| 511 | // We shouldn't be calling this with obsolete methods except for native obsolete methods for |
| 512 | // which we need to use the oat method to figure out how large the quick frame is. |
| 513 | DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in " |
| 514 | << "order to allow stack walking. Other obsolete methods should " |
| 515 | << "never need to access this information."; |
| 516 | DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!"; |
| 517 | return FindOatMethodFromDexFileFor(method, found); |
| 518 | } |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 519 | // Although we overwrite the trampoline of non-static methods, we may get here via the resolution |
| 520 | // method for direct methods (or virtual methods made direct). |
| 521 | mirror::Class* declaring_class = method->GetDeclaringClass(); |
| 522 | size_t oat_method_index; |
| 523 | if (method->IsStatic() || method->IsDirect()) { |
| 524 | // Simple case where the oat method index was stashed at load time. |
| 525 | oat_method_index = method->GetMethodIndex(); |
| 526 | } else { |
| 527 | // Compute the oat_method_index by search for its position in the declared virtual methods. |
| 528 | oat_method_index = declaring_class->NumDirectMethods(); |
| 529 | bool found_virtual = false; |
| 530 | for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) { |
| 531 | // Check method index instead of identity in case of duplicate method definitions. |
| 532 | if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) { |
| 533 | found_virtual = true; |
| 534 | break; |
| 535 | } |
| 536 | oat_method_index++; |
| 537 | } |
| 538 | CHECK(found_virtual) << "Didn't find oat method index for virtual method: " |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 539 | << method->PrettyMethod(); |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 540 | } |
| 541 | DCHECK_EQ(oat_method_index, |
| 542 | GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(), |
| 543 | method->GetDeclaringClass()->GetDexClassDefIndex(), |
| 544 | method->GetDexMethodIndex())); |
| 545 | OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(), |
| 546 | declaring_class->GetDexClassDefIndex(), |
| 547 | found); |
| 548 | if (!(*found)) { |
| 549 | return OatFile::OatMethod::Invalid(); |
| 550 | } |
| 551 | return oat_class.GetOatMethod(oat_method_index); |
| 552 | } |
| 553 | |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 554 | bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) { |
| 555 | auto* dex_cache = GetDexCache(); |
| 556 | auto* dex_file = dex_cache->GetDexFile(); |
| 557 | const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex()); |
| 558 | const auto& proto_id = dex_file->GetMethodPrototype(method_id); |
| 559 | const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id); |
| 560 | auto count = proto_params != nullptr ? proto_params->Size() : 0u; |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 561 | auto param_len = params != nullptr ? params->GetLength() : 0u; |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 562 | if (param_len != count) { |
| 563 | return false; |
| 564 | } |
| 565 | auto* cl = Runtime::Current()->GetClassLinker(); |
| 566 | for (size_t i = 0; i < count; ++i) { |
Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 567 | dex::TypeIndex type_idx = proto_params->GetTypeItem(i).type_idx_; |
| 568 | ObjPtr<mirror::Class> type = cl->ResolveType(type_idx, this); |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 569 | if (type == nullptr) { |
| 570 | Thread::Current()->AssertPendingException(); |
| 571 | return false; |
| 572 | } |
| 573 | if (type != params->GetWithoutChecks(i)) { |
| 574 | return false; |
| 575 | } |
| 576 | } |
| 577 | return true; |
| 578 | } |
| 579 | |
Mathieu Chartier | 210531f | 2018-01-12 10:15:51 -0800 | [diff] [blame^] | 580 | ArrayRef<const uint8_t> ArtMethod::GetQuickenedInfo() { |
Nicolas Geoffray | 8eaa8e5 | 2017-11-13 17:47:50 +0000 | [diff] [blame] | 581 | const DexFile& dex_file = GetDeclaringClass()->GetDexFile(); |
| 582 | const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); |
| 583 | if (oat_dex_file == nullptr || (oat_dex_file->GetOatFile() == nullptr)) { |
Mathieu Chartier | 210531f | 2018-01-12 10:15:51 -0800 | [diff] [blame^] | 584 | return ArrayRef<const uint8_t>(); |
Nicolas Geoffray | 4acefd3 | 2016-10-24 13:14:58 +0100 | [diff] [blame] | 585 | } |
Mathieu Chartier | 210531f | 2018-01-12 10:15:51 -0800 | [diff] [blame^] | 586 | return oat_dex_file->GetOatFile()->GetVdexFile()->GetQuickenedInfoOf(dex_file, |
| 587 | GetDexMethodIndex()); |
Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 588 | } |
| 589 | |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 590 | const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) { |
Nicolas Geoffray | 5a23d2e | 2015-11-03 18:58:57 +0000 | [diff] [blame] | 591 | // Our callers should make sure they don't pass the instrumentation exit pc, |
| 592 | // as this method does not look at the side instrumentation stack. |
| 593 | DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc())); |
| 594 | |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 595 | if (IsRuntimeMethod()) { |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 596 | return nullptr; |
| 597 | } |
| 598 | |
| 599 | Runtime* runtime = Runtime::Current(); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 600 | const void* existing_entry_point = GetEntryPointFromQuickCompiledCode(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 601 | CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this; |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 602 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 603 | |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 604 | if (existing_entry_point == GetQuickProxyInvokeHandler()) { |
| 605 | DCHECK(IsProxyMethod() && !IsConstructor()); |
| 606 | // The proxy entry point does not have any method header. |
| 607 | return nullptr; |
| 608 | } |
| 609 | |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 610 | // Check whether the current entry point contains this pc. |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 611 | if (!class_linker->IsQuickGenericJniStub(existing_entry_point) && |
| 612 | !class_linker->IsQuickResolutionStub(existing_entry_point) && |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 613 | !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) { |
| 614 | OatQuickMethodHeader* method_header = |
| 615 | OatQuickMethodHeader::FromEntryPoint(existing_entry_point); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 616 | |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 617 | if (method_header->Contains(pc)) { |
| 618 | return method_header; |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | // Check whether the pc is in the JIT code cache. |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 623 | jit::Jit* jit = runtime->GetJit(); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 624 | if (jit != nullptr) { |
| 625 | jit::JitCodeCache* code_cache = jit->GetCodeCache(); |
| 626 | OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this); |
| 627 | if (method_header != nullptr) { |
| 628 | DCHECK(method_header->Contains(pc)); |
| 629 | return method_header; |
| 630 | } else { |
Nicolas Geoffray | 2a524bd | 2016-03-01 12:18:47 +0000 | [diff] [blame] | 631 | DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc))) |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 632 | << PrettyMethod() |
Nicolas Geoffray | 2a524bd | 2016-03-01 12:18:47 +0000 | [diff] [blame] | 633 | << ", pc=" << std::hex << pc |
| 634 | << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point) |
| 635 | << ", copy=" << std::boolalpha << IsCopied() |
| 636 | << ", proxy=" << std::boolalpha << IsProxyMethod(); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 637 | } |
| 638 | } |
| 639 | |
| 640 | // The code has to be in an oat file. |
| 641 | bool found; |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 642 | OatFile::OatMethod oat_method = |
| 643 | FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 644 | if (!found) { |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 645 | if (IsNative()) { |
| 646 | // We are running the GenericJNI stub. The entrypoint may point |
| 647 | // to different entrypoints or to a JIT-compiled JNI stub. |
| 648 | DCHECK(class_linker->IsQuickGenericJniStub(existing_entry_point) || |
| 649 | class_linker->IsQuickResolutionStub(existing_entry_point) || |
| 650 | existing_entry_point == GetQuickInstrumentationEntryPoint() || |
| 651 | (jit != nullptr && jit->GetCodeCache()->ContainsPc(existing_entry_point))); |
Nicolas Geoffray | 49e4396 | 2015-10-28 16:16:16 +0000 | [diff] [blame] | 652 | return nullptr; |
| 653 | } |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 654 | // Only for unit tests. |
| 655 | // TODO(ngeoffray): Update these tests to pass the right pc? |
| 656 | return OatQuickMethodHeader::FromEntryPoint(existing_entry_point); |
| 657 | } |
| 658 | const void* oat_entry_point = oat_method.GetQuickCode(); |
| 659 | if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 660 | DCHECK(IsNative()) << PrettyMethod(); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 661 | return nullptr; |
| 662 | } |
| 663 | |
| 664 | OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point); |
| 665 | if (pc == 0) { |
| 666 | // This is a downcall, it can only happen for a native method. |
| 667 | DCHECK(IsNative()); |
| 668 | return method_header; |
| 669 | } |
| 670 | |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 671 | DCHECK(method_header->Contains(pc)) |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 672 | << PrettyMethod() |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 673 | << " " << std::hex << pc << " " << oat_entry_point |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 674 | << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize()); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 675 | return method_header; |
| 676 | } |
| 677 | |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 678 | const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) { |
| 679 | bool found; |
| 680 | OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); |
| 681 | if (found) { |
| 682 | return oat_method.GetQuickCode(); |
| 683 | } |
| 684 | return nullptr; |
| 685 | } |
| 686 | |
Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 687 | bool ArtMethod::HasAnyCompiledCode() { |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 688 | if (IsNative() || !IsInvokable() || IsProxyMethod()) { |
| 689 | return false; |
| 690 | } |
| 691 | |
Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 692 | // Check whether the JIT has compiled it. |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 693 | Runtime* runtime = Runtime::Current(); |
| 694 | jit::Jit* jit = runtime->GetJit(); |
Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 695 | if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) { |
| 696 | return true; |
| 697 | } |
| 698 | |
| 699 | // Check whether we have AOT code. |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 700 | return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr; |
Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 701 | } |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 702 | |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 703 | void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) { |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 704 | memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src), |
| 705 | Size(image_pointer_size)); |
| 706 | declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass()); |
| 707 | |
| 708 | // If the entry point of the method we are copying from is from JIT code, we just |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 709 | // put the entry point of the new method to interpreter or GenericJNI. We could set |
| 710 | // the entry point to the JIT code, but this would require taking the JIT code cache |
| 711 | // lock to notify it, which we do not want at this level. |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 712 | Runtime* runtime = Runtime::Current(); |
Calin Juravle | ffc8707 | 2016-04-20 14:22:09 +0100 | [diff] [blame] | 713 | if (runtime->UseJitCompilation()) { |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 714 | if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) { |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 715 | SetEntryPointFromQuickCompiledCodePtrSize( |
| 716 | src->IsNative() ? GetQuickGenericJniStub() : GetQuickToInterpreterBridge(), |
| 717 | image_pointer_size); |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 718 | } |
| 719 | } |
| 720 | // Clear the profiling info for the same reasons as the JIT code. |
| 721 | if (!src->IsNative()) { |
| 722 | SetProfilingInfoPtrSize(nullptr, image_pointer_size); |
| 723 | } |
| 724 | // Clear hotness to let the JIT properly decide when to compile this method. |
| 725 | hotness_count_ = 0; |
| 726 | } |
| 727 | |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 728 | bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) { |
Andreas Gampe | 479b1de | 2016-07-19 18:27:17 -0700 | [diff] [blame] | 729 | // Hijack this function to get access to PtrSizedFieldsOffset. |
| 730 | // |
| 731 | // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and |
| 732 | // 64-bit builds. |
| 733 | static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout."); |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 734 | static_assert( |
| 735 | (sizeof(void*) != 4) || |
| 736 | (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)), |
| 737 | "Unexpected 32-bit class layout."); |
| 738 | static_assert( |
| 739 | (sizeof(void*) != 8) || |
| 740 | (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)), |
| 741 | "Unexpected 64-bit class layout."); |
Andreas Gampe | 479b1de | 2016-07-19 18:27:17 -0700 | [diff] [blame] | 742 | |
Andreas Gampe | 75f0885 | 2016-07-19 08:06:07 -0700 | [diff] [blame] | 743 | Runtime* runtime = Runtime::Current(); |
| 744 | if (runtime == nullptr) { |
| 745 | return true; |
| 746 | } |
| 747 | return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size; |
| 748 | } |
| 749 | |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 750 | std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { |
| 751 | if (m == nullptr) { |
| 752 | return "null"; |
| 753 | } |
| 754 | return m->PrettyMethod(with_signature); |
| 755 | } |
| 756 | |
| 757 | std::string ArtMethod::PrettyMethod(bool with_signature) { |
Vladimir Marko | b8a55f8 | 2017-09-21 16:21:43 +0100 | [diff] [blame] | 758 | if (UNLIKELY(IsRuntimeMethod())) { |
| 759 | std::string result = GetDeclaringClassDescriptor(); |
| 760 | result += '.'; |
| 761 | result += GetName(); |
| 762 | // Do not add "<no signature>" even if `with_signature` is true. |
| 763 | return result; |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 764 | } |
Vladimir Marko | b8a55f8 | 2017-09-21 16:21:43 +0100 | [diff] [blame] | 765 | ArtMethod* m = |
| 766 | GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize()); |
| 767 | return m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | std::string ArtMethod::JniShortName() { |
Alex Light | 888a59e | 2017-01-25 11:41:41 -0800 | [diff] [blame] | 771 | return GetJniShortName(GetDeclaringClassDescriptor(), GetName()); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | std::string ArtMethod::JniLongName() { |
| 775 | std::string long_name; |
| 776 | long_name += JniShortName(); |
| 777 | long_name += "__"; |
| 778 | |
| 779 | std::string signature(GetSignature().ToString()); |
| 780 | signature.erase(0, 1); |
| 781 | signature.erase(signature.begin() + signature.find(')'), signature.end()); |
| 782 | |
| 783 | long_name += MangleForJni(signature); |
| 784 | |
| 785 | return long_name; |
| 786 | } |
| 787 | |
Andreas Gampe | c6ea7d0 | 2017-02-01 16:46:28 -0800 | [diff] [blame] | 788 | // AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper. |
| 789 | // TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work. |
| 790 | template <ReadBarrierOption kReadBarrierOption> |
| 791 | ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method) |
| 792 | NO_THREAD_SAFETY_ANALYSIS { |
| 793 | CHECK(method->IsRuntimeMethod() || |
| 794 | method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() || |
| 795 | method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous()); |
| 796 | } |
| 797 | |
| 798 | template <ReadBarrierOption kReadBarrierOption> void ArtMethod::GetAccessFlagsDCheck() { |
| 799 | if (kCheckDeclaringClassState) { |
| 800 | Thread* self = Thread::Current(); |
| 801 | if (!Locks::mutator_lock_->IsSharedHeld(self)) { |
| 802 | if (self->IsThreadSuspensionAllowable()) { |
| 803 | ScopedObjectAccess soa(self); |
| 804 | CHECK(IsRuntimeMethod() || |
| 805 | GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() || |
| 806 | GetDeclaringClass<kReadBarrierOption>()->IsErroneous()); |
| 807 | } |
| 808 | } else { |
| 809 | // We cannot use SOA in this case. We might be holding the lock, but may not be in the |
| 810 | // runnable state (e.g., during GC). |
| 811 | Locks::mutator_lock_->AssertSharedHeld(self); |
| 812 | DoGetAccessFlagsHelper<kReadBarrierOption>(this); |
| 813 | } |
| 814 | } |
| 815 | } |
| 816 | template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithReadBarrier>(); |
| 817 | template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithoutReadBarrier>(); |
| 818 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 819 | } // namespace art |