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