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 | |
Nicolas Geoffray | 4ac0e15 | 2019-09-18 06:14:50 +0000 | [diff] [blame] | 19 | #include <algorithm> |
Andreas Gampe | 479b1de | 2016-07-19 18:27:17 -0700 | [diff] [blame] | 20 | #include <cstddef> |
| 21 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 22 | #include "android-base/stringprintf.h" |
Ulya Trafimovich | 5439f05 | 2020-07-29 10:03:46 +0100 | [diff] [blame] | 23 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 24 | #include "arch/context.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 25 | #include "art_method-inl.h" |
Nicolas Geoffray | 4ac0e15 | 2019-09-18 06:14:50 +0000 | [diff] [blame] | 26 | #include "base/enums.h" |
| 27 | #include "base/stl_util.h" |
Hiroshi Yamauchi | 0037082 | 2015-08-18 14:47:25 -0700 | [diff] [blame] | 28 | #include "class_linker-inl.h" |
Vladimir Marko | 5868ada | 2020-05-12 11:50:34 +0100 | [diff] [blame] | 29 | #include "class_root-inl.h" |
Andreas Gampe | 2a5c468 | 2015-08-14 08:22:54 -0700 | [diff] [blame] | 30 | #include "debugger.h" |
Mathieu Chartier | 1f1cb9f | 2018-06-04 09:22:46 -0700 | [diff] [blame] | 31 | #include "dex/class_accessor-inl.h" |
David Sehr | b2ec9f5 | 2018-02-21 13:20:31 -0800 | [diff] [blame] | 32 | #include "dex/descriptors_names.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 33 | #include "dex/dex_file-inl.h" |
| 34 | #include "dex/dex_file_exception_helpers.h" |
| 35 | #include "dex/dex_instruction.h" |
Andreas Gampe | ad1aa63 | 2019-01-02 10:30:54 -0800 | [diff] [blame] | 36 | #include "dex/signature-inl.h" |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 37 | #include "entrypoints/runtime_asm_entrypoints.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 38 | #include "gc/accounting/card_table-inl.h" |
David Brazdil | 8586569 | 2018-10-30 17:26:20 +0000 | [diff] [blame] | 39 | #include "hidden_api.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 40 | #include "interpreter/interpreter.h" |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 41 | #include "jit/jit.h" |
| 42 | #include "jit/jit_code_cache.h" |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 43 | #include "jit/profiling_info.h" |
Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 44 | #include "jni/jni_internal.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 45 | #include "mirror/class-inl.h" |
Vladimir Marko | bb206de | 2019-03-28 10:30:32 +0000 | [diff] [blame] | 46 | #include "mirror/class_ext-inl.h" |
Neil Fuller | 0e84439 | 2016-09-08 13:43:31 +0100 | [diff] [blame] | 47 | #include "mirror/executable.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 48 | #include "mirror/object-inl.h" |
Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 49 | #include "mirror/object_array-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 50 | #include "mirror/string.h" |
Nicolas Geoffray | 9523a3e | 2015-07-17 11:51:28 +0000 | [diff] [blame] | 51 | #include "oat_file-inl.h" |
Nicolas Geoffray | b041a40 | 2017-11-13 15:16:22 +0000 | [diff] [blame] | 52 | #include "quicken_info.h" |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 53 | #include "runtime_callbacks.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 54 | #include "scoped_thread_state_change-inl.h" |
Nicolas Geoffray | b02ba93 | 2017-07-13 15:53:54 +0100 | [diff] [blame] | 55 | #include "vdex_file.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 56 | |
| 57 | namespace art { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 58 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 59 | using android::base::StringPrintf; |
| 60 | |
Ian Rogers | 0177e53 | 2014-02-11 16:30:46 -0800 | [diff] [blame] | 61 | extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*, |
| 62 | const char*); |
Ian Rogers | 936b37f | 2014-02-14 00:52:24 -0800 | [diff] [blame] | 63 | extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*, |
| 64 | const char*); |
Jeff Hao | 5d91730 | 2013-02-27 17:57:33 -0800 | [diff] [blame] | 65 | |
Andrew Scull | 530f09a | 2020-07-22 11:52:06 +0100 | [diff] [blame] | 66 | // Enforce that we have the right index for runtime methods. |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 67 | static_assert(ArtMethod::kRuntimeMethodDexMethodIndex == dex::kDexNoIndex, |
Andreas Gampe | c6ea7d0 | 2017-02-01 16:46:28 -0800 | [diff] [blame] | 68 | "Wrong runtime-method dex method index"); |
| 69 | |
Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 70 | ArtMethod* ArtMethod::GetCanonicalMethod(PointerSize pointer_size) { |
Alex Light | fd4a79c | 2019-06-21 08:45:16 -0700 | [diff] [blame] | 71 | if (LIKELY(!IsCopied())) { |
Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 72 | return this; |
| 73 | } else { |
Vladimir Marko | c7aa87e | 2018-05-24 15:19:52 +0100 | [diff] [blame] | 74 | ObjPtr<mirror::Class> declaring_class = GetDeclaringClass(); |
Vladimir Marko | ba11882 | 2017-06-12 15:41:56 +0100 | [diff] [blame] | 75 | DCHECK(declaring_class->IsInterface()); |
Vladimir Marko | 813a863 | 2018-11-29 16:17:01 +0000 | [diff] [blame] | 76 | ArtMethod* ret = declaring_class->FindInterfaceMethod(GetDexCache(), |
Vladimir Marko | ba11882 | 2017-06-12 15:41:56 +0100 | [diff] [blame] | 77 | GetDexMethodIndex(), |
| 78 | pointer_size); |
Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 79 | DCHECK(ret != nullptr); |
| 80 | return ret; |
| 81 | } |
| 82 | } |
| 83 | |
Alex Light | 4ba388a | 2017-01-27 10:26:49 -0800 | [diff] [blame] | 84 | ArtMethod* ArtMethod::GetNonObsoleteMethod() { |
Alex Light | 4ba388a | 2017-01-27 10:26:49 -0800 | [diff] [blame] | 85 | if (LIKELY(!IsObsolete())) { |
| 86 | return this; |
Vladimir Marko | 813a863 | 2018-11-29 16:17:01 +0000 | [diff] [blame] | 87 | } |
| 88 | DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize()); |
| 89 | if (IsDirect()) { |
Alex Light | 4ba388a | 2017-01-27 10:26:49 -0800 | [diff] [blame] | 90 | return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()]; |
| 91 | } else { |
| 92 | return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize); |
| 93 | } |
| 94 | } |
| 95 | |
Mingyao Yang | e8fcd01 | 2017-01-20 10:43:30 -0800 | [diff] [blame] | 96 | ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) { |
Vladimir Marko | c945e0d | 2018-07-18 17:26:45 +0100 | [diff] [blame] | 97 | if (!IsAbstract()) { |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 98 | // A non-abstract's single implementation is itself. |
| 99 | return this; |
| 100 | } |
Mingyao Yang | e8fcd01 | 2017-01-20 10:43:30 -0800 | [diff] [blame] | 101 | return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size)); |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 102 | } |
| 103 | |
Mathieu Chartier | 2b7c4d1 | 2014-05-19 10:52:16 -0700 | [diff] [blame] | 104 | ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa, |
| 105 | jobject jlr_method) { |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 106 | ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method); |
Neil Fuller | 0e84439 | 2016-09-08 13:43:31 +0100 | [diff] [blame] | 107 | DCHECK(executable != nullptr); |
| 108 | return executable->GetArtMethod(); |
Ian Rogers | 62f0512 | 2014-03-21 11:21:29 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Vladimir Marko | c524e9e | 2019-03-26 10:54:50 +0000 | [diff] [blame] | 111 | ObjPtr<mirror::DexCache> ArtMethod::GetObsoleteDexCache() { |
Nicolas Geoffray | 4ac0e15 | 2019-09-18 06:14:50 +0000 | [diff] [blame] | 112 | PointerSize pointer_size = kRuntimePointerSize; |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 113 | DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod(); |
| 114 | DCHECK(IsObsolete()); |
| 115 | ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData()); |
Nicolas Geoffray | 4ac0e15 | 2019-09-18 06:14:50 +0000 | [diff] [blame] | 116 | ObjPtr<mirror::PointerArray> obsolete_methods(ext.IsNull() ? nullptr : ext->GetObsoleteMethods()); |
| 117 | int32_t len = (obsolete_methods.IsNull() ? 0 : obsolete_methods->GetLength()); |
| 118 | DCHECK(len == 0 || len == ext->GetObsoleteDexCaches()->GetLength()) |
| 119 | << "len=" << len << " ext->GetObsoleteDexCaches()=" << ext->GetObsoleteDexCaches(); |
Alex Light | 0b77257 | 2016-12-02 17:27:31 -0800 | [diff] [blame] | 120 | // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images |
| 121 | // should never have obsolete methods in them so they should always be the same. |
Nicolas Geoffray | 4ac0e15 | 2019-09-18 06:14:50 +0000 | [diff] [blame] | 122 | DCHECK_EQ(pointer_size, Runtime::Current()->GetClassLinker()->GetImagePointerSize()); |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 123 | for (int32_t i = 0; i < len; i++) { |
| 124 | if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) { |
| 125 | return ext->GetObsoleteDexCaches()->Get(i); |
| 126 | } |
| 127 | } |
Nicolas Geoffray | 4ac0e15 | 2019-09-18 06:14:50 +0000 | [diff] [blame] | 128 | CHECK(GetDeclaringClass()->IsObsoleteObject()) |
| 129 | << "This non-structurally obsolete method does not appear in the obsolete map of its class: " |
| 130 | << GetDeclaringClass()->PrettyClass() << " Searched " << len << " caches."; |
| 131 | CHECK_EQ(this, |
| 132 | std::clamp(this, |
| 133 | &(*GetDeclaringClass()->GetMethods(pointer_size).begin()), |
| 134 | &(*GetDeclaringClass()->GetMethods(pointer_size).end()))) |
| 135 | << "class is marked as structurally obsolete method but not found in normal obsolete-map " |
| 136 | << "despite not being the original method pointer for " << GetDeclaringClass()->PrettyClass(); |
| 137 | return GetDeclaringClass()->GetDexCache(); |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 138 | } |
| 139 | |
Alex Light | f2f1c9d | 2017-03-15 15:35:46 +0000 | [diff] [blame] | 140 | uint16_t ArtMethod::FindObsoleteDexClassDefIndex() { |
| 141 | DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod(); |
| 142 | DCHECK(IsObsolete()); |
| 143 | const DexFile* dex_file = GetDexFile(); |
| 144 | const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_; |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 145 | const dex::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type); |
Alex Light | f2f1c9d | 2017-03-15 15:35:46 +0000 | [diff] [blame] | 146 | CHECK(class_def != nullptr); |
| 147 | return dex_file->GetIndexForClassDef(*class_def); |
| 148 | } |
| 149 | |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 150 | void ArtMethod::ThrowInvocationTimeError() { |
| 151 | DCHECK(!IsInvokable()); |
| 152 | // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract |
| 153 | // due to the way we select it. |
| 154 | if (IsDefaultConflicting()) { |
| 155 | ThrowIncompatibleClassChangeErrorForMethodConflict(this); |
| 156 | } else { |
| 157 | DCHECK(IsAbstract()); |
| 158 | ThrowAbstractMethodError(this); |
| 159 | } |
| 160 | } |
| 161 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 162 | InvokeType ArtMethod::GetInvokeType() { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 163 | // TODO: kSuper? |
Nicolas Geoffray | 3aaf964 | 2016-06-07 14:14:37 +0000 | [diff] [blame] | 164 | if (IsStatic()) { |
Nicolas Geoffray | 12abcbd | 2016-06-06 15:51:58 +0000 | [diff] [blame] | 165 | return kStatic; |
Nicolas Geoffray | 3aaf964 | 2016-06-07 14:14:37 +0000 | [diff] [blame] | 166 | } else if (GetDeclaringClass()->IsInterface()) { |
| 167 | return kInterface; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 168 | } else if (IsDirect()) { |
| 169 | return kDirect; |
Orion Hodson | 43f0cdb | 2017-10-10 14:47:32 +0100 | [diff] [blame] | 170 | } else if (IsPolymorphicSignature()) { |
| 171 | return kPolymorphic; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 172 | } else { |
| 173 | return kVirtual; |
| 174 | } |
| 175 | } |
| 176 | |
Vladimir Marko | 6e78158 | 2019-02-04 10:58:06 +0000 | [diff] [blame] | 177 | size_t ArtMethod::NumArgRegisters(const char* shorty) { |
| 178 | CHECK_NE(shorty[0], '\0'); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 179 | uint32_t num_registers = 0; |
Vladimir Marko | 6e78158 | 2019-02-04 10:58:06 +0000 | [diff] [blame] | 180 | for (const char* s = shorty + 1; *s != '\0'; ++s) { |
| 181 | if (*s == 'D' || *s == 'J') { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 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(); |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 193 | const dex::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex()); |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 194 | if (GetDexCache() == other->GetDexCache()) { |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 195 | const dex::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(); |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 199 | const dex::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex()); |
Andreas Gampe | b8bca30 | 2019-01-02 10:28:38 -0800 | [diff] [blame] | 200 | if (!DexFile::StringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) { |
Ian Rogers | f224751 | 2014-12-02 16:17:08 -0800 | [diff] [blame] | 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 | } |
Vladimir Marko | c7aa87e | 2018-05-24 15:19:52 +0100 | [diff] [blame] | 210 | ObjPtr<mirror::Class> declaring_class = GetDeclaringClass(); |
| 211 | ObjPtr<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 { |
Vladimir Marko | c524e9e | 2019-03-26 10:54:50 +0000 | [diff] [blame] | 224 | ObjPtr<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++) { |
Vladimir Marko | c7aa87e | 2018-05-24 15:19:52 +0100 | [diff] [blame] | 226 | ObjPtr<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(); |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 246 | const dex::MethodId& mid = dexfile->GetMethodId(dex_method_idx); |
| 247 | const dex::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx); |
Ian Rogers | e0a02da | 2014-12-02 14:10:53 -0800 | [diff] [blame] | 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_); |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 254 | const dex::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor); |
Mathieu Chartier | 9507fa2 | 2015-10-29 15:08:57 -0700 | [diff] [blame] | 255 | if (other_type_id != nullptr) { |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 256 | const dex::MethodId* other_mid = other_dexfile.FindMethodId( |
Mathieu Chartier | 9507fa2 | 2015-10-29 15:08:57 -0700 | [diff] [blame] | 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) { |
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. |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 274 | uint32_t found_dex_pc = dex::kDexNoIndex; |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 275 | // Iterate over the catch handlers associated with dex_pc. |
David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 276 | CodeItemDataAccessor accessor(DexInstructionData()); |
Mathieu Chartier | dc578c7 | 2017-12-27 11:51:45 -0800 | [diff] [blame] | 277 | for (CatchHandlerIterator it(accessor, 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) { |
Mathieu Chartier | dc578c7 | 2017-12-27 11:51:45 -0800 | [diff] [blame] | 302 | const Instruction& first_catch_instr = accessor.InstructionAt(found_dex_pc); |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 303 | *has_no_move_exception = (first_catch_instr.Opcode() != Instruction::MOVE_EXCEPTION); |
Ian Rogers | 9e8f45e | 2013-07-31 10:58:53 -0700 | [diff] [blame] | 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. |
Alex Light | 3dacdd6 | 2019-03-12 15:45:47 +0000 | [diff] [blame] | 334 | if (UNLIKELY(!runtime->IsStarted() || |
Alex Light | fc58809 | 2020-01-23 15:39:08 -0800 | [diff] [blame] | 335 | (self->IsForceInterpreter() && !IsNative() && !IsProxyMethod() && IsInvokable()))) { |
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( |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 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( |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 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. |
Ulya Trafimovich | 5439f05 | 2020-07-29 10:03:46 +0100 | [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 | |
Ulya Trafimovich | 5439f05 | 2020-07-29 10:03:46 +0100 | [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 | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 395 | bool ArtMethod::IsOverridableByDefaultMethod() { |
| 396 | return GetDeclaringClass()->IsInterface(); |
| 397 | } |
| 398 | |
Orion Hodson | eb4d19b | 2017-11-06 15:49:23 +0000 | [diff] [blame] | 399 | bool ArtMethod::IsPolymorphicSignature() { |
| 400 | // Methods with a polymorphic signature have constraints that they |
| 401 | // are native and varargs and belong to either MethodHandle or VarHandle. |
| 402 | if (!IsNative() || !IsVarargs()) { |
| 403 | return false; |
| 404 | } |
Vladimir Marko | c7aa87e | 2018-05-24 15:19:52 +0100 | [diff] [blame] | 405 | ObjPtr<mirror::ObjectArray<mirror::Class>> class_roots = |
| 406 | Runtime::Current()->GetClassLinker()->GetClassRoots(); |
| 407 | ObjPtr<mirror::Class> cls = GetDeclaringClass(); |
| 408 | return (cls == GetClassRoot<mirror::MethodHandle>(class_roots) || |
| 409 | cls == GetClassRoot<mirror::VarHandle>(class_roots)); |
Orion Hodson | eb4d19b | 2017-11-06 15:49:23 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 412 | static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file, |
| 413 | uint16_t class_def_idx, |
| 414 | uint32_t method_idx) { |
Mathieu Chartier | 18e2687 | 2018-06-04 17:19:02 -0700 | [diff] [blame] | 415 | ClassAccessor accessor(dex_file, class_def_idx); |
Mathieu Chartier | 1f1cb9f | 2018-06-04 09:22:46 -0700 | [diff] [blame] | 416 | uint32_t class_def_method_index = 0u; |
| 417 | for (const ClassAccessor::Method& method : accessor.GetMethods()) { |
| 418 | if (method.GetIndex() == method_idx) { |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 419 | return class_def_method_index; |
| 420 | } |
| 421 | class_def_method_index++; |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 422 | } |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 423 | LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation(); |
| 424 | UNREACHABLE(); |
| 425 | } |
| 426 | |
Alex Light | eee0bd4 | 2017-02-14 15:31:45 +0000 | [diff] [blame] | 427 | // We use the method's DexFile and declaring class name to find the OatMethod for an obsolete |
| 428 | // method. This is extremely slow but we need it if we want to be able to have obsolete native |
| 429 | // methods since we need this to find the size of its stack frames. |
| 430 | // |
| 431 | // NB We could (potentially) do this differently and rely on the way the transformation is applied |
| 432 | // in order to use the entrypoint to find this information. However, for debugging reasons (most |
| 433 | // notably making sure that new invokes of obsolete methods fail) we choose to instead get the data |
| 434 | // directly from the dex file. |
| 435 | static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found) |
| 436 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 437 | DCHECK(method->IsObsolete() && method->IsNative()); |
| 438 | const DexFile* dex_file = method->GetDexFile(); |
| 439 | |
| 440 | // recreate the class_def_index from the descriptor. |
| 441 | std::string descriptor_storage; |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 442 | const dex::TypeId* declaring_class_type_id = |
Alex Light | eee0bd4 | 2017-02-14 15:31:45 +0000 | [diff] [blame] | 443 | dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage)); |
| 444 | CHECK(declaring_class_type_id != nullptr); |
| 445 | dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id); |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 446 | const dex::ClassDef* declaring_class_type_def = |
Alex Light | eee0bd4 | 2017-02-14 15:31:45 +0000 | [diff] [blame] | 447 | dex_file->FindClassDef(declaring_class_type_index); |
| 448 | CHECK(declaring_class_type_def != nullptr); |
| 449 | uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def); |
| 450 | |
| 451 | size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file, |
| 452 | declaring_class_def_index, |
| 453 | method->GetDexMethodIndex()); |
| 454 | |
| 455 | OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file, |
| 456 | declaring_class_def_index, |
| 457 | found); |
| 458 | if (!(*found)) { |
| 459 | return OatFile::OatMethod::Invalid(); |
| 460 | } |
| 461 | return oat_class.GetOatMethod(oat_method_index); |
| 462 | } |
| 463 | |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 464 | static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method, |
| 465 | PointerSize pointer_size, |
| 466 | bool* found) |
| 467 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Alex Light | eee0bd4 | 2017-02-14 15:31:45 +0000 | [diff] [blame] | 468 | if (UNLIKELY(method->IsObsolete())) { |
| 469 | // We shouldn't be calling this with obsolete methods except for native obsolete methods for |
| 470 | // which we need to use the oat method to figure out how large the quick frame is. |
| 471 | DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in " |
| 472 | << "order to allow stack walking. Other obsolete methods should " |
| 473 | << "never need to access this information."; |
| 474 | DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!"; |
| 475 | return FindOatMethodFromDexFileFor(method, found); |
| 476 | } |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 477 | // Although we overwrite the trampoline of non-static methods, we may get here via the resolution |
| 478 | // method for direct methods (or virtual methods made direct). |
Vladimir Marko | c7aa87e | 2018-05-24 15:19:52 +0100 | [diff] [blame] | 479 | ObjPtr<mirror::Class> declaring_class = method->GetDeclaringClass(); |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 480 | size_t oat_method_index; |
| 481 | if (method->IsStatic() || method->IsDirect()) { |
| 482 | // Simple case where the oat method index was stashed at load time. |
| 483 | oat_method_index = method->GetMethodIndex(); |
| 484 | } else { |
| 485 | // Compute the oat_method_index by search for its position in the declared virtual methods. |
| 486 | oat_method_index = declaring_class->NumDirectMethods(); |
| 487 | bool found_virtual = false; |
| 488 | for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) { |
| 489 | // Check method index instead of identity in case of duplicate method definitions. |
| 490 | if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) { |
| 491 | found_virtual = true; |
| 492 | break; |
| 493 | } |
| 494 | oat_method_index++; |
| 495 | } |
| 496 | CHECK(found_virtual) << "Didn't find oat method index for virtual method: " |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 497 | << method->PrettyMethod(); |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 498 | } |
| 499 | DCHECK_EQ(oat_method_index, |
Vladimir Marko | 813a863 | 2018-11-29 16:17:01 +0000 | [diff] [blame] | 500 | GetOatMethodIndexFromMethodIndex(declaring_class->GetDexFile(), |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 501 | method->GetDeclaringClass()->GetDexClassDefIndex(), |
| 502 | method->GetDexMethodIndex())); |
Vladimir Marko | 813a863 | 2018-11-29 16:17:01 +0000 | [diff] [blame] | 503 | OatFile::OatClass oat_class = OatFile::FindOatClass(declaring_class->GetDexFile(), |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 504 | declaring_class->GetDexClassDefIndex(), |
| 505 | found); |
| 506 | if (!(*found)) { |
| 507 | return OatFile::OatMethod::Invalid(); |
| 508 | } |
| 509 | return oat_class.GetOatMethod(oat_method_index); |
| 510 | } |
| 511 | |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 512 | bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) { |
Vladimir Marko | c524e9e | 2019-03-26 10:54:50 +0000 | [diff] [blame] | 513 | const DexFile* dex_file = GetDexFile(); |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 514 | const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex()); |
| 515 | const auto& proto_id = dex_file->GetMethodPrototype(method_id); |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 516 | const dex::TypeList* proto_params = dex_file->GetProtoParameters(proto_id); |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 517 | auto count = proto_params != nullptr ? proto_params->Size() : 0u; |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 518 | auto param_len = params != nullptr ? params->GetLength() : 0u; |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 519 | if (param_len != count) { |
| 520 | return false; |
| 521 | } |
| 522 | auto* cl = Runtime::Current()->GetClassLinker(); |
| 523 | for (size_t i = 0; i < count; ++i) { |
Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 524 | dex::TypeIndex type_idx = proto_params->GetTypeItem(i).type_idx_; |
| 525 | ObjPtr<mirror::Class> type = cl->ResolveType(type_idx, this); |
Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 526 | if (type == nullptr) { |
| 527 | Thread::Current()->AssertPendingException(); |
| 528 | return false; |
| 529 | } |
| 530 | if (type != params->GetWithoutChecks(i)) { |
| 531 | return false; |
| 532 | } |
| 533 | } |
| 534 | return true; |
| 535 | } |
| 536 | |
Mathieu Chartier | 210531f | 2018-01-12 10:15:51 -0800 | [diff] [blame] | 537 | ArrayRef<const uint8_t> ArtMethod::GetQuickenedInfo() { |
Vladimir Marko | 813a863 | 2018-11-29 16:17:01 +0000 | [diff] [blame] | 538 | const DexFile& dex_file = *GetDexFile(); |
Andreas Gampe | b40d361 | 2018-06-26 15:49:42 -0700 | [diff] [blame] | 539 | const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); |
Hans Boehm | 206348c | 2018-12-05 11:11:33 -0800 | [diff] [blame] | 540 | if (oat_dex_file == nullptr) { |
Mathieu Chartier | 210531f | 2018-01-12 10:15:51 -0800 | [diff] [blame] | 541 | return ArrayRef<const uint8_t>(); |
Nicolas Geoffray | 4acefd3 | 2016-10-24 13:14:58 +0100 | [diff] [blame] | 542 | } |
Hans Boehm | 206348c | 2018-12-05 11:11:33 -0800 | [diff] [blame] | 543 | return oat_dex_file->GetQuickenedInfoOf(dex_file, GetDexMethodIndex()); |
Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 544 | } |
| 545 | |
Nicolas Geoffray | b041a40 | 2017-11-13 15:16:22 +0000 | [diff] [blame] | 546 | uint16_t ArtMethod::GetIndexFromQuickening(uint32_t dex_pc) { |
| 547 | ArrayRef<const uint8_t> data = GetQuickenedInfo(); |
| 548 | if (data.empty()) { |
| 549 | return DexFile::kDexNoIndex16; |
| 550 | } |
| 551 | QuickenInfoTable table(data); |
| 552 | uint32_t quicken_index = 0; |
| 553 | for (const DexInstructionPcPair& pair : DexInstructions()) { |
| 554 | if (pair.DexPc() == dex_pc) { |
| 555 | return table.GetData(quicken_index); |
| 556 | } |
| 557 | if (QuickenInfoTable::NeedsIndexForInstruction(&pair.Inst())) { |
| 558 | ++quicken_index; |
| 559 | } |
| 560 | } |
| 561 | return DexFile::kDexNoIndex16; |
| 562 | } |
| 563 | |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 564 | const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) { |
Nicolas Geoffray | 5a23d2e | 2015-11-03 18:58:57 +0000 | [diff] [blame] | 565 | // Our callers should make sure they don't pass the instrumentation exit pc, |
| 566 | // as this method does not look at the side instrumentation stack. |
| 567 | DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc())); |
| 568 | |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 569 | if (IsRuntimeMethod()) { |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 570 | return nullptr; |
| 571 | } |
| 572 | |
| 573 | Runtime* runtime = Runtime::Current(); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 574 | const void* existing_entry_point = GetEntryPointFromQuickCompiledCode(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 575 | CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this; |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 576 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 577 | |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 578 | if (existing_entry_point == GetQuickProxyInvokeHandler()) { |
| 579 | DCHECK(IsProxyMethod() && !IsConstructor()); |
| 580 | // The proxy entry point does not have any method header. |
| 581 | return nullptr; |
| 582 | } |
| 583 | |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 584 | // Check whether the current entry point contains this pc. |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 585 | if (!class_linker->IsQuickGenericJniStub(existing_entry_point) && |
| 586 | !class_linker->IsQuickResolutionStub(existing_entry_point) && |
David Srbecky | 774232a | 2019-04-03 17:46:32 +0100 | [diff] [blame] | 587 | !class_linker->IsQuickToInterpreterBridge(existing_entry_point) && |
| 588 | existing_entry_point != GetQuickInstrumentationEntryPoint()) { |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 589 | OatQuickMethodHeader* method_header = |
| 590 | OatQuickMethodHeader::FromEntryPoint(existing_entry_point); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 591 | |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 592 | if (method_header->Contains(pc)) { |
| 593 | return method_header; |
| 594 | } |
| 595 | } |
| 596 | |
Nicolas Geoffray | 013d1ee | 2019-12-04 16:18:15 +0000 | [diff] [blame] | 597 | if (OatQuickMethodHeader::NterpMethodHeader != nullptr && |
| 598 | OatQuickMethodHeader::NterpMethodHeader->Contains(pc)) { |
| 599 | return OatQuickMethodHeader::NterpMethodHeader; |
| 600 | } |
| 601 | |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 602 | // Check whether the pc is in the JIT code cache. |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 603 | jit::Jit* jit = runtime->GetJit(); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 604 | if (jit != nullptr) { |
| 605 | jit::JitCodeCache* code_cache = jit->GetCodeCache(); |
| 606 | OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this); |
| 607 | if (method_header != nullptr) { |
| 608 | DCHECK(method_header->Contains(pc)); |
| 609 | return method_header; |
| 610 | } else { |
Nicolas Geoffray | 2a524bd | 2016-03-01 12:18:47 +0000 | [diff] [blame] | 611 | DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc))) |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 612 | << PrettyMethod() |
Nicolas Geoffray | 2a524bd | 2016-03-01 12:18:47 +0000 | [diff] [blame] | 613 | << ", pc=" << std::hex << pc |
| 614 | << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point) |
| 615 | << ", copy=" << std::boolalpha << IsCopied() |
| 616 | << ", proxy=" << std::boolalpha << IsProxyMethod(); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 617 | } |
| 618 | } |
| 619 | |
| 620 | // The code has to be in an oat file. |
| 621 | bool found; |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 622 | OatFile::OatMethod oat_method = |
| 623 | FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 624 | if (!found) { |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 625 | if (IsNative()) { |
| 626 | // We are running the GenericJNI stub. The entrypoint may point |
| 627 | // to different entrypoints or to a JIT-compiled JNI stub. |
| 628 | DCHECK(class_linker->IsQuickGenericJniStub(existing_entry_point) || |
| 629 | class_linker->IsQuickResolutionStub(existing_entry_point) || |
| 630 | existing_entry_point == GetQuickInstrumentationEntryPoint() || |
| 631 | (jit != nullptr && jit->GetCodeCache()->ContainsPc(existing_entry_point))); |
Nicolas Geoffray | 49e4396 | 2015-10-28 16:16:16 +0000 | [diff] [blame] | 632 | return nullptr; |
| 633 | } |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 634 | // Only for unit tests. |
| 635 | // TODO(ngeoffray): Update these tests to pass the right pc? |
| 636 | return OatQuickMethodHeader::FromEntryPoint(existing_entry_point); |
| 637 | } |
| 638 | const void* oat_entry_point = oat_method.GetQuickCode(); |
| 639 | if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 640 | DCHECK(IsNative()) << PrettyMethod(); |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 641 | return nullptr; |
| 642 | } |
| 643 | |
| 644 | OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point); |
| 645 | if (pc == 0) { |
| 646 | // This is a downcall, it can only happen for a native method. |
| 647 | DCHECK(IsNative()); |
| 648 | return method_header; |
| 649 | } |
| 650 | |
Nicolas Geoffray | 1dad3f6 | 2015-10-23 14:59:54 +0100 | [diff] [blame] | 651 | DCHECK(method_header->Contains(pc)) |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 652 | << PrettyMethod() |
Roland Levillain | 0b671c0 | 2016-08-19 12:02:34 +0100 | [diff] [blame] | 653 | << " " << std::hex << pc << " " << oat_entry_point |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 654 | << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize()); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 655 | return method_header; |
| 656 | } |
| 657 | |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 658 | const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) { |
| 659 | bool found; |
| 660 | OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); |
| 661 | if (found) { |
| 662 | return oat_method.GetQuickCode(); |
| 663 | } |
| 664 | return nullptr; |
| 665 | } |
| 666 | |
Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 667 | bool ArtMethod::HasAnyCompiledCode() { |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 668 | if (IsNative() || !IsInvokable() || IsProxyMethod()) { |
| 669 | return false; |
| 670 | } |
| 671 | |
Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 672 | // Check whether the JIT has compiled it. |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 673 | Runtime* runtime = Runtime::Current(); |
| 674 | jit::Jit* jit = runtime->GetJit(); |
Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 675 | if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) { |
| 676 | return true; |
| 677 | } |
| 678 | |
| 679 | // Check whether we have AOT code. |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 680 | return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr; |
Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 681 | } |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 682 | |
David Brazdil | 8586569 | 2018-10-30 17:26:20 +0000 | [diff] [blame] | 683 | void ArtMethod::SetIntrinsic(uint32_t intrinsic) { |
| 684 | // Currently we only do intrinsics for static/final methods or methods of final |
| 685 | // classes. We don't set kHasSingleImplementation for those methods. |
| 686 | DCHECK(IsStatic() || IsFinal() || GetDeclaringClass()->IsFinal()) << |
| 687 | "Potential conflict with kAccSingleImplementation"; |
| 688 | static const int kAccFlagsShift = CTZ(kAccIntrinsicBits); |
| 689 | DCHECK_LE(intrinsic, kAccIntrinsicBits >> kAccFlagsShift); |
| 690 | uint32_t intrinsic_bits = intrinsic << kAccFlagsShift; |
| 691 | uint32_t new_value = (GetAccessFlags() & ~kAccIntrinsicBits) | kAccIntrinsic | intrinsic_bits; |
| 692 | if (kIsDebugBuild) { |
| 693 | uint32_t java_flags = (GetAccessFlags() & kAccJavaFlagsMask); |
| 694 | bool is_constructor = IsConstructor(); |
| 695 | bool is_synchronized = IsSynchronized(); |
| 696 | bool skip_access_checks = SkipAccessChecks(); |
| 697 | bool is_fast_native = IsFastNative(); |
| 698 | bool is_critical_native = IsCriticalNative(); |
| 699 | bool is_copied = IsCopied(); |
| 700 | bool is_miranda = IsMiranda(); |
| 701 | bool is_default = IsDefault(); |
| 702 | bool is_default_conflict = IsDefaultConflicting(); |
| 703 | bool is_compilable = IsCompilable(); |
| 704 | bool must_count_locks = MustCountLocks(); |
David Brazdil | 31cc279 | 2019-04-10 00:31:15 +0100 | [diff] [blame] | 705 | // Recompute flags instead of getting them from the current access flags because |
| 706 | // access flags may have been changed to deduplicate warning messages (b/129063331). |
| 707 | uint32_t hiddenapi_flags = hiddenapi::CreateRuntimeFlags(this); |
David Brazdil | 8586569 | 2018-10-30 17:26:20 +0000 | [diff] [blame] | 708 | SetAccessFlags(new_value); |
| 709 | DCHECK_EQ(java_flags, (GetAccessFlags() & kAccJavaFlagsMask)); |
| 710 | DCHECK_EQ(is_constructor, IsConstructor()); |
| 711 | DCHECK_EQ(is_synchronized, IsSynchronized()); |
| 712 | DCHECK_EQ(skip_access_checks, SkipAccessChecks()); |
| 713 | DCHECK_EQ(is_fast_native, IsFastNative()); |
| 714 | DCHECK_EQ(is_critical_native, IsCriticalNative()); |
| 715 | DCHECK_EQ(is_copied, IsCopied()); |
| 716 | DCHECK_EQ(is_miranda, IsMiranda()); |
| 717 | DCHECK_EQ(is_default, IsDefault()); |
| 718 | DCHECK_EQ(is_default_conflict, IsDefaultConflicting()); |
| 719 | DCHECK_EQ(is_compilable, IsCompilable()); |
| 720 | DCHECK_EQ(must_count_locks, MustCountLocks()); |
| 721 | // Only DCHECK that we have preserved the hidden API access flags if the |
| 722 | // original method was not on the whitelist. This is because the core image |
David Brazdil | 31cc279 | 2019-04-10 00:31:15 +0100 | [diff] [blame] | 723 | // does not have the access flags set (b/77733081). |
David Brazdil | 90faceb | 2018-12-14 14:36:15 +0000 | [diff] [blame] | 724 | if ((hiddenapi_flags & kAccHiddenapiBits) != kAccPublicApi) { |
David Brazdil | 8586569 | 2018-10-30 17:26:20 +0000 | [diff] [blame] | 725 | DCHECK_EQ(hiddenapi_flags, hiddenapi::GetRuntimeFlags(this)) << PrettyMethod(); |
| 726 | } |
| 727 | } else { |
| 728 | SetAccessFlags(new_value); |
| 729 | } |
| 730 | } |
| 731 | |
David Brazdil | 904e75a | 2018-05-15 13:45:08 +0100 | [diff] [blame] | 732 | void ArtMethod::SetNotIntrinsic() { |
| 733 | if (!IsIntrinsic()) { |
| 734 | return; |
| 735 | } |
| 736 | |
David Brazdil | 8586569 | 2018-10-30 17:26:20 +0000 | [diff] [blame] | 737 | // Read the existing hiddenapi flags. |
| 738 | uint32_t hiddenapi_runtime_flags = hiddenapi::GetRuntimeFlags(this); |
David Brazdil | 904e75a | 2018-05-15 13:45:08 +0100 | [diff] [blame] | 739 | |
| 740 | // Clear intrinsic-related access flags. |
| 741 | ClearAccessFlags(kAccIntrinsic | kAccIntrinsicBits); |
| 742 | |
| 743 | // Re-apply hidden API access flags now that the method is not an intrinsic. |
David Brazdil | 8586569 | 2018-10-30 17:26:20 +0000 | [diff] [blame] | 744 | SetAccessFlags(GetAccessFlags() | hiddenapi_runtime_flags); |
| 745 | DCHECK_EQ(hiddenapi_runtime_flags, hiddenapi::GetRuntimeFlags(this)); |
David Brazdil | 904e75a | 2018-05-15 13:45:08 +0100 | [diff] [blame] | 746 | } |
| 747 | |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 748 | void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) { |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 749 | memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src), |
| 750 | Size(image_pointer_size)); |
| 751 | declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass()); |
| 752 | |
| 753 | // If the entry point of the method we are copying from is from JIT code, we just |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 754 | // put the entry point of the new method to interpreter or GenericJNI. We could set |
| 755 | // the entry point to the JIT code, but this would require taking the JIT code cache |
| 756 | // lock to notify it, which we do not want at this level. |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 757 | Runtime* runtime = Runtime::Current(); |
Calin Juravle | ffc8707 | 2016-04-20 14:22:09 +0100 | [diff] [blame] | 758 | if (runtime->UseJitCompilation()) { |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 759 | if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) { |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 760 | SetEntryPointFromQuickCompiledCodePtrSize( |
| 761 | src->IsNative() ? GetQuickGenericJniStub() : GetQuickToInterpreterBridge(), |
| 762 | image_pointer_size); |
Nicolas Geoffray | 22cf3d3 | 2015-11-02 11:57:11 +0000 | [diff] [blame] | 763 | } |
| 764 | } |
| 765 | // Clear the profiling info for the same reasons as the JIT code. |
| 766 | if (!src->IsNative()) { |
| 767 | SetProfilingInfoPtrSize(nullptr, image_pointer_size); |
| 768 | } |
| 769 | // Clear hotness to let the JIT properly decide when to compile this method. |
| 770 | hotness_count_ = 0; |
| 771 | } |
| 772 | |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 773 | bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) { |
Andreas Gampe | 479b1de | 2016-07-19 18:27:17 -0700 | [diff] [blame] | 774 | // Hijack this function to get access to PtrSizedFieldsOffset. |
| 775 | // |
| 776 | // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and |
| 777 | // 64-bit builds. |
| 778 | 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] | 779 | static_assert( |
| 780 | (sizeof(void*) != 4) || |
| 781 | (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)), |
| 782 | "Unexpected 32-bit class layout."); |
| 783 | static_assert( |
| 784 | (sizeof(void*) != 8) || |
| 785 | (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)), |
| 786 | "Unexpected 64-bit class layout."); |
Andreas Gampe | 479b1de | 2016-07-19 18:27:17 -0700 | [diff] [blame] | 787 | |
Andreas Gampe | 75f0885 | 2016-07-19 08:06:07 -0700 | [diff] [blame] | 788 | Runtime* runtime = Runtime::Current(); |
| 789 | if (runtime == nullptr) { |
| 790 | return true; |
| 791 | } |
| 792 | return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size; |
| 793 | } |
| 794 | |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 795 | std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { |
| 796 | if (m == nullptr) { |
| 797 | return "null"; |
| 798 | } |
| 799 | return m->PrettyMethod(with_signature); |
| 800 | } |
| 801 | |
| 802 | std::string ArtMethod::PrettyMethod(bool with_signature) { |
Vladimir Marko | b8a55f8 | 2017-09-21 16:21:43 +0100 | [diff] [blame] | 803 | if (UNLIKELY(IsRuntimeMethod())) { |
| 804 | std::string result = GetDeclaringClassDescriptor(); |
| 805 | result += '.'; |
| 806 | result += GetName(); |
| 807 | // Do not add "<no signature>" even if `with_signature` is true. |
| 808 | return result; |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 809 | } |
Vladimir Marko | b8a55f8 | 2017-09-21 16:21:43 +0100 | [diff] [blame] | 810 | ArtMethod* m = |
| 811 | GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize()); |
Alex Light | cbc9dda | 2018-12-07 15:38:29 -0800 | [diff] [blame] | 812 | std::string res(m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature)); |
| 813 | if (with_signature && m->IsObsolete()) { |
| 814 | return "<OBSOLETE> " + res; |
| 815 | } else { |
| 816 | return res; |
| 817 | } |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | std::string ArtMethod::JniShortName() { |
Alex Light | 888a59e | 2017-01-25 11:41:41 -0800 | [diff] [blame] | 821 | return GetJniShortName(GetDeclaringClassDescriptor(), GetName()); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | std::string ArtMethod::JniLongName() { |
| 825 | std::string long_name; |
| 826 | long_name += JniShortName(); |
| 827 | long_name += "__"; |
| 828 | |
| 829 | std::string signature(GetSignature().ToString()); |
| 830 | signature.erase(0, 1); |
| 831 | signature.erase(signature.begin() + signature.find(')'), signature.end()); |
| 832 | |
| 833 | long_name += MangleForJni(signature); |
| 834 | |
| 835 | return long_name; |
| 836 | } |
| 837 | |
Eric Holk | abdb459 | 2019-05-16 08:33:12 -0700 | [diff] [blame] | 838 | const char* ArtMethod::GetRuntimeMethodName() { |
| 839 | Runtime* const runtime = Runtime::Current(); |
| 840 | if (this == runtime->GetResolutionMethod()) { |
| 841 | return "<runtime internal resolution method>"; |
| 842 | } else if (this == runtime->GetImtConflictMethod()) { |
| 843 | return "<runtime internal imt conflict method>"; |
| 844 | } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveAllCalleeSaves)) { |
| 845 | return "<runtime internal callee-save all registers method>"; |
| 846 | } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveRefsOnly)) { |
| 847 | return "<runtime internal callee-save reference registers method>"; |
| 848 | } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveRefsAndArgs)) { |
| 849 | return "<runtime internal callee-save reference and argument registers method>"; |
| 850 | } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveEverything)) { |
| 851 | return "<runtime internal save-every-register method>"; |
| 852 | } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveEverythingForClinit)) { |
| 853 | return "<runtime internal save-every-register method for clinit>"; |
| 854 | } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveEverythingForSuspendCheck)) { |
| 855 | return "<runtime internal save-every-register method for suspend check>"; |
| 856 | } else { |
| 857 | return "<unknown runtime internal method>"; |
| 858 | } |
| 859 | } |
| 860 | |
Andreas Gampe | c6ea7d0 | 2017-02-01 16:46:28 -0800 | [diff] [blame] | 861 | // AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper. |
| 862 | // TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work. |
| 863 | template <ReadBarrierOption kReadBarrierOption> |
| 864 | ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method) |
| 865 | NO_THREAD_SAFETY_ANALYSIS { |
| 866 | CHECK(method->IsRuntimeMethod() || |
| 867 | method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() || |
| 868 | method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous()); |
| 869 | } |
| 870 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 871 | } // namespace art |