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