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