blob: 96468bba60aa46371e744bfa9eb0e22285660bb5 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
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 Carlstromea46f952013-07-30 01:26:50 -070017#include "art_method.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080018
Andreas Gampe479b1de2016-07-19 18:27:17 -070019#include <cstddef>
20
Andreas Gampe46ee31b2016-12-14 10:11:49 -080021#include "android-base/stringprintf.h"
22
Ian Rogerse63db272014-07-15 15:36:11 -070023#include "arch/context.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070024#include "art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "base/stringpiece.h"
Hiroshi Yamauchi00370822015-08-18 14:47:25 -070026#include "class_linker-inl.h"
Andreas Gampe2a5c4682015-08-14 08:22:54 -070027#include "debugger.h"
David Sehr9e734c72018-01-04 17:56:19 -080028#include "dex/dex_file-inl.h"
29#include "dex/dex_file_exception_helpers.h"
30#include "dex/dex_instruction.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070031#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070032#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080034#include "jit/jit.h"
35#include "jit/jit_code_cache.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010036#include "jit/profiling_info.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "jni_internal.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070038#include "mirror/class-inl.h"
Alex Lighta01de592016-11-15 10:43:06 -080039#include "mirror/class_ext.h"
Neil Fuller0e844392016-09-08 13:43:31 +010040#include "mirror/executable.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070041#include "mirror/object-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070042#include "mirror/object_array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070043#include "mirror/string.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000044#include "oat_file-inl.h"
Alex Lightd78ddec2017-04-18 15:20:38 -070045#include "runtime_callbacks.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070046#include "scoped_thread_state_change-inl.h"
Nicolas Geoffrayb02ba932017-07-13 15:53:54 +010047#include "vdex_file.h"
Ian Rogers62f05122014-03-21 11:21:29 -070048#include "well_known_classes.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049
50namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051
Andreas Gampe46ee31b2016-12-14 10:11:49 -080052using android::base::StringPrintf;
53
Ian Rogers0177e532014-02-11 16:30:46 -080054extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
55 const char*);
Ian Rogers936b37f2014-02-14 00:52:24 -080056extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
57 const char*);
Jeff Hao5d917302013-02-27 17:57:33 -080058
Andreas Gampeaea05c12017-05-19 08:45:02 -070059DEFINE_RUNTIME_DEBUG_FLAG(ArtMethod, kCheckDeclaringClassState);
60
Andreas Gampec6ea7d02017-02-01 16:46:28 -080061// Enforce that we he have the right index for runtime methods.
Andreas Gampee2abbc62017-09-15 11:59:26 -070062static_assert(ArtMethod::kRuntimeMethodDexMethodIndex == dex::kDexNoIndex,
Andreas Gampec6ea7d02017-02-01 16:46:28 -080063 "Wrong runtime-method dex method index");
64
Alex Light97e78032017-06-27 17:51:55 -070065ArtMethod* ArtMethod::GetCanonicalMethod(PointerSize pointer_size) {
66 if (LIKELY(!IsDefault())) {
67 return this;
68 } else {
69 mirror::Class* declaring_class = GetDeclaringClass();
Vladimir Markoba118822017-06-12 15:41:56 +010070 DCHECK(declaring_class->IsInterface());
71 ArtMethod* ret = declaring_class->FindInterfaceMethod(declaring_class->GetDexCache(),
72 GetDexMethodIndex(),
73 pointer_size);
Alex Light97e78032017-06-27 17:51:55 -070074 DCHECK(ret != nullptr);
75 return ret;
76 }
77}
78
Alex Light4ba388a2017-01-27 10:26:49 -080079ArtMethod* ArtMethod::GetNonObsoleteMethod() {
80 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
81 if (LIKELY(!IsObsolete())) {
82 return this;
83 } else if (IsDirect()) {
84 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()];
85 } else {
86 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize);
87 }
88}
89
Mingyao Yange8fcd012017-01-20 10:43:30 -080090ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Mingyao Yang063fc772016-08-02 11:02:54 -070091 if (!IsAbstract()) {
92 // A non-abstract's single implementation is itself.
93 return this;
94 }
Mingyao Yange8fcd012017-01-20 10:43:30 -080095 return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size));
Mingyao Yang063fc772016-08-02 11:02:54 -070096}
97
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070098ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
99 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700100 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +0100101 DCHECK(executable != nullptr);
102 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -0700103}
104
Alex Lighta01de592016-11-15 10:43:06 -0800105mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
106 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
107 DCHECK(IsObsolete());
108 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
109 CHECK(!ext.IsNull());
110 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
111 CHECK(!obsolete_methods.IsNull());
112 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
113 int32_t len = obsolete_methods->GetLength();
114 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -0800115 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
116 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -0800117 PointerSize pointer_size = kRuntimePointerSize;
118 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
119 for (int32_t i = 0; i < len; i++) {
120 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
121 return ext->GetObsoleteDexCaches()->Get(i);
122 }
123 }
124 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
125 UNREACHABLE();
126}
127
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000128uint16_t ArtMethod::FindObsoleteDexClassDefIndex() {
129 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
130 DCHECK(IsObsolete());
131 const DexFile* dex_file = GetDexFile();
132 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
133 const DexFile::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type);
134 CHECK(class_def != nullptr);
135 return dex_file->GetIndexForClassDef(*class_def);
136}
137
Vladimir Marko28e012a2017-12-07 11:22:59 +0000138ObjPtr<mirror::String> ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700139 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -0700140 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700141 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
142 auto* dex_file = dex_cache->GetDexFile();
143 uint32_t dex_method_idx = GetDexMethodIndex();
144 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Vladimir Markoa64b52d2017-12-08 16:27:49 +0000145 return Runtime::Current()->GetClassLinker()->ResolveString(method_id.name_idx_, dex_cache);
Ian Rogers6b14d552014-10-28 21:50:58 -0700146}
147
Alex Light9139e002015-10-09 15:59:48 -0700148void ArtMethod::ThrowInvocationTimeError() {
149 DCHECK(!IsInvokable());
150 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
151 // due to the way we select it.
152 if (IsDefaultConflicting()) {
153 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
154 } else {
155 DCHECK(IsAbstract());
156 ThrowAbstractMethodError(this);
157 }
158}
159
Ian Rogersef7d42f2014-01-06 12:55:46 -0800160InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800161 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000162 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000163 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000164 } else if (GetDeclaringClass()->IsInterface()) {
165 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800166 } else if (IsDirect()) {
167 return kDirect;
Orion Hodson43f0cdb2017-10-10 14:47:32 +0100168 } else if (IsPolymorphicSignature()) {
169 return kPolymorphic;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800170 } else {
171 return kVirtual;
172 }
173}
174
Brian Carlstromea46f952013-07-30 01:26:50 -0700175size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700176 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800177 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700178 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800179 char ch = shorty[i];
180 if (ch == 'D' || ch == 'J') {
181 num_registers += 2;
182 } else {
183 num_registers += 1;
184 }
185 }
186 return num_registers;
187}
188
Alex Light6c8467f2015-11-20 15:03:26 -0800189bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700190 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800191 const DexFile* dex_file = GetDexFile();
192 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
193 if (GetDexCache() == other->GetDexCache()) {
194 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800195 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
196 }
Alex Light6c8467f2015-11-20 15:03:26 -0800197 const DexFile* dex_file2 = other->GetDexFile();
198 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800199 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
200 return false; // Name mismatch.
201 }
202 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
203}
204
Andreas Gampe542451c2016-07-26 09:02:02 -0700205ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800206 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800207 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800208 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700209 mirror::Class* declaring_class = GetDeclaringClass();
210 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800211 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800212 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800213 // Did this method override a super class method? If so load the result from the super class'
214 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700215 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700216 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800217 } else {
218 // Method didn't override superclass method so search interfaces
219 if (IsProxyMethod()) {
Vladimir Marko07bfbac2017-07-06 14:55:02 +0100220 result = GetInterfaceMethodIfProxy(pointer_size);
221 DCHECK(result != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800222 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700223 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800224 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700225 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800226 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
227 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
228 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800229 break;
230 }
231 }
232 }
233 }
234 }
Alex Light6c8467f2015-11-20 15:03:26 -0800235 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800236 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
237 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800238 return result;
239}
240
Ian Rogerse0a02da2014-12-02 14:10:53 -0800241uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
242 uint32_t name_and_signature_idx) {
243 const DexFile* dexfile = GetDexFile();
244 const uint32_t dex_method_idx = GetDexMethodIndex();
245 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
246 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
247 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
248 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
249 if (dexfile == &other_dexfile) {
250 return dex_method_idx;
251 }
252 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700253 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
254 if (other_type_id != nullptr) {
255 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
256 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
257 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
258 if (other_mid != nullptr) {
259 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800260 }
261 }
Andreas Gampee2abbc62017-09-15 11:59:26 -0700262 return dex::kDexNoIndex;
Ian Rogerse0a02da2014-12-02 14:10:53 -0800263}
264
Mathieu Chartiere401d142015-04-22 13:56:20 -0700265uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700266 uint32_t dex_pc, bool* has_no_move_exception) {
Jeff Haoaa961912014-04-22 13:54:32 -0700267 // Set aside the exception while we resolve its type.
268 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700269 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000270 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700271 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700272 // Default to handler not found.
Andreas Gampee2abbc62017-09-15 11:59:26 -0700273 uint32_t found_dex_pc = dex::kDexNoIndex;
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700274 // Iterate over the catch handlers associated with dex_pc.
David Sehr787784f2018-01-30 18:48:51 +0000275 CodeItemDataAccessor accessor(this);
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800276 for (CatchHandlerIterator it(accessor, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800277 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800278 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800279 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700280 found_dex_pc = it.GetHandlerAddress();
281 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800282 }
283 // Does this catch exception type apply?
Vladimir Markob45528c2017-07-27 14:14:28 +0100284 ObjPtr<mirror::Class> iter_exception_type = ResolveClassFromTypeIndex(iter_type_idx);
Ian Rogers822266b2014-05-29 16:55:06 -0700285 if (UNLIKELY(iter_exception_type == nullptr)) {
286 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
287 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700288 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700289 self->ClearException();
290 // Delete any long jump context as this routine is called during a stack walk which will
291 // release its in use context at the end.
292 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800293 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700294 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700295 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700296 found_dex_pc = it.GetHandlerAddress();
297 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800298 }
299 }
Andreas Gampee2abbc62017-09-15 11:59:26 -0700300 if (found_dex_pc != dex::kDexNoIndex) {
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800301 const Instruction& first_catch_instr = accessor.InstructionAt(found_dex_pc);
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800302 *has_no_move_exception = (first_catch_instr.Opcode() != Instruction::MOVE_EXCEPTION);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700303 }
Jeff Haoaa961912014-04-22 13:54:32 -0700304 // Put the exception back.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800305 if (exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000306 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700307 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700308 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800309}
310
Brian Carlstromea46f952013-07-30 01:26:50 -0700311void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800312 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700313 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
314 ThrowStackOverflowError(self);
315 return;
316 }
317
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800318 if (kIsDebugBuild) {
319 self->AssertThreadSuspensionIsAllowable();
320 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700321 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800322 }
323
324 // Push a transition back into managed code onto the linked list in thread.
325 ManagedStack fragment;
326 self->PushManagedStackFragment(&fragment);
327
Ian Rogers62d6c772013-02-27 08:32:07 -0800328 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700329 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200330 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700331 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
332 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200333 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700334 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700335 art::interpreter::EnterInterpreterFromInvoke(
336 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700337 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700338 mirror::Object* receiver =
339 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700340 art::interpreter::EnterInterpreterFromInvoke(
341 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800342 }
343 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700344 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700345
346 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800347 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800348 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700349 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700350 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700351 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700352 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700353 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700354
Elliott Hughes956af0f2014-12-11 14:34:28 -0800355 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800356 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100357 CHECK(!runtime->UseJitCompilation());
Alex Lightdb01a092017-04-03 15:39:55 -0700358 const void* oat_quick_code =
359 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100360 ? nullptr
361 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100362 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700363 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700364 }
365
Elliott Hughes956af0f2014-12-11 14:34:28 -0800366 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800367 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800368 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800369 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800370 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000371 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200372 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700373 // exception was thrown to force the activations to be removed from the
374 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000375 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700376 }
377 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700378 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800379 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800380 }
381 } else {
David Sehr709b0702016-10-13 09:12:37 -0700382 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800383 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800384 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800385 }
386 }
387 }
388
389 // Pop transition.
390 self->PopManagedStackFragment(fragment);
391}
392
Vladimir Markob0a6aee2017-10-27 10:34:04 +0100393const void* ArtMethod::RegisterNative(const void* native_method) {
David Sehr709b0702016-10-13 09:12:37 -0700394 CHECK(IsNative()) << PrettyMethod();
David Sehr709b0702016-10-13 09:12:37 -0700395 CHECK(native_method != nullptr) << PrettyMethod();
Alex Lightd78ddec2017-04-18 15:20:38 -0700396 void* new_native_method = nullptr;
397 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this,
398 native_method,
399 /*out*/&new_native_method);
400 SetEntryPointFromJni(new_native_method);
401 return new_native_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800402}
403
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700404void ArtMethod::UnregisterNative() {
Vladimir Markob0a6aee2017-10-27 10:34:04 +0100405 CHECK(IsNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800406 // restore stub to lookup native pointer via dlsym
Alex Lightd78ddec2017-04-18 15:20:38 -0700407 SetEntryPointFromJni(GetJniDlsymLookupStub());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800408}
409
Alex Light9139e002015-10-09 15:59:48 -0700410bool ArtMethod::IsOverridableByDefaultMethod() {
411 return GetDeclaringClass()->IsInterface();
412}
413
Orion Hodsoneb4d19b2017-11-06 15:49:23 +0000414bool ArtMethod::IsPolymorphicSignature() {
415 // Methods with a polymorphic signature have constraints that they
416 // are native and varargs and belong to either MethodHandle or VarHandle.
417 if (!IsNative() || !IsVarargs()) {
418 return false;
419 }
420 mirror::Class* cls = GetDeclaringClass();
421 return (cls == WellKnownClasses::ToClass(WellKnownClasses::java_lang_invoke_MethodHandle) ||
422 cls == WellKnownClasses::ToClass(WellKnownClasses::java_lang_invoke_VarHandle));
423}
424
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100425static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
426 uint16_t class_def_idx,
427 uint32_t method_idx) {
428 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
429 const uint8_t* class_data = dex_file.GetClassData(class_def);
430 CHECK(class_data != nullptr);
431 ClassDataItemIterator it(dex_file, class_data);
Mathieu Chartiere17cf242017-06-19 11:05:51 -0700432 it.SkipAllFields();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100433 // Process methods
434 size_t class_def_method_index = 0;
435 while (it.HasNextDirectMethod()) {
436 if (it.GetMemberIndex() == method_idx) {
437 return class_def_method_index;
438 }
439 class_def_method_index++;
440 it.Next();
441 }
442 while (it.HasNextVirtualMethod()) {
443 if (it.GetMemberIndex() == method_idx) {
444 return class_def_method_index;
445 }
446 class_def_method_index++;
447 it.Next();
448 }
449 DCHECK(!it.HasNext());
450 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
451 UNREACHABLE();
452}
453
Alex Lighteee0bd42017-02-14 15:31:45 +0000454// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
455// method. This is extremely slow but we need it if we want to be able to have obsolete native
456// methods since we need this to find the size of its stack frames.
457//
458// NB We could (potentially) do this differently and rely on the way the transformation is applied
459// in order to use the entrypoint to find this information. However, for debugging reasons (most
460// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
461// directly from the dex file.
462static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
463 REQUIRES_SHARED(Locks::mutator_lock_) {
464 DCHECK(method->IsObsolete() && method->IsNative());
465 const DexFile* dex_file = method->GetDexFile();
466
467 // recreate the class_def_index from the descriptor.
468 std::string descriptor_storage;
469 const DexFile::TypeId* declaring_class_type_id =
470 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
471 CHECK(declaring_class_type_id != nullptr);
472 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
473 const DexFile::ClassDef* declaring_class_type_def =
474 dex_file->FindClassDef(declaring_class_type_index);
475 CHECK(declaring_class_type_def != nullptr);
476 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
477
478 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
479 declaring_class_def_index,
480 method->GetDexMethodIndex());
481
482 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
483 declaring_class_def_index,
484 found);
485 if (!(*found)) {
486 return OatFile::OatMethod::Invalid();
487 }
488 return oat_class.GetOatMethod(oat_method_index);
489}
490
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100491static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
492 PointerSize pointer_size,
493 bool* found)
494 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000495 if (UNLIKELY(method->IsObsolete())) {
496 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
497 // which we need to use the oat method to figure out how large the quick frame is.
498 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
499 << "order to allow stack walking. Other obsolete methods should "
500 << "never need to access this information.";
501 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
502 return FindOatMethodFromDexFileFor(method, found);
503 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100504 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
505 // method for direct methods (or virtual methods made direct).
506 mirror::Class* declaring_class = method->GetDeclaringClass();
507 size_t oat_method_index;
508 if (method->IsStatic() || method->IsDirect()) {
509 // Simple case where the oat method index was stashed at load time.
510 oat_method_index = method->GetMethodIndex();
511 } else {
512 // Compute the oat_method_index by search for its position in the declared virtual methods.
513 oat_method_index = declaring_class->NumDirectMethods();
514 bool found_virtual = false;
515 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
516 // Check method index instead of identity in case of duplicate method definitions.
517 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
518 found_virtual = true;
519 break;
520 }
521 oat_method_index++;
522 }
523 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700524 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100525 }
526 DCHECK_EQ(oat_method_index,
527 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
528 method->GetDeclaringClass()->GetDexClassDefIndex(),
529 method->GetDexMethodIndex()));
530 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
531 declaring_class->GetDexClassDefIndex(),
532 found);
533 if (!(*found)) {
534 return OatFile::OatMethod::Invalid();
535 }
536 return oat_class.GetOatMethod(oat_method_index);
537}
538
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700539bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
540 auto* dex_cache = GetDexCache();
541 auto* dex_file = dex_cache->GetDexFile();
542 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
543 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
544 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
545 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
Andreas Gampefa4333d2017-02-14 11:10:34 -0800546 auto param_len = params != nullptr ? params->GetLength() : 0u;
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700547 if (param_len != count) {
548 return false;
549 }
550 auto* cl = Runtime::Current()->GetClassLinker();
551 for (size_t i = 0; i < count; ++i) {
Vladimir Marko28e012a2017-12-07 11:22:59 +0000552 dex::TypeIndex type_idx = proto_params->GetTypeItem(i).type_idx_;
553 ObjPtr<mirror::Class> type = cl->ResolveType(type_idx, this);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700554 if (type == nullptr) {
555 Thread::Current()->AssertPendingException();
556 return false;
557 }
558 if (type != params->GetWithoutChecks(i)) {
559 return false;
560 }
561 }
562 return true;
563}
564
Mathieu Chartier210531f2018-01-12 10:15:51 -0800565ArrayRef<const uint8_t> ArtMethod::GetQuickenedInfo() {
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000566 const DexFile& dex_file = GetDeclaringClass()->GetDexFile();
567 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile();
568 if (oat_dex_file == nullptr || (oat_dex_file->GetOatFile() == nullptr)) {
Mathieu Chartier210531f2018-01-12 10:15:51 -0800569 return ArrayRef<const uint8_t>();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100570 }
Mathieu Chartier210531f2018-01-12 10:15:51 -0800571 return oat_dex_file->GetOatFile()->GetVdexFile()->GetQuickenedInfoOf(dex_file,
572 GetDexMethodIndex());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100573}
574
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100575const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000576 // Our callers should make sure they don't pass the instrumentation exit pc,
577 // as this method does not look at the side instrumentation stack.
578 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
579
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000580 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100581 return nullptr;
582 }
583
584 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100585 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700586 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100587 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100588
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000589 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
590 DCHECK(IsProxyMethod() && !IsConstructor());
591 // The proxy entry point does not have any method header.
592 return nullptr;
593 }
594
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100595 // Check whether the current entry point contains this pc.
Vladimir Marko2196c652017-11-30 16:16:07 +0000596 if (!class_linker->IsQuickGenericJniStub(existing_entry_point) &&
597 !class_linker->IsQuickResolutionStub(existing_entry_point) &&
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100598 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
599 OatQuickMethodHeader* method_header =
600 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100601
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100602 if (method_header->Contains(pc)) {
603 return method_header;
604 }
605 }
606
607 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100608 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100609 if (jit != nullptr) {
610 jit::JitCodeCache* code_cache = jit->GetCodeCache();
611 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
612 if (method_header != nullptr) {
613 DCHECK(method_header->Contains(pc));
614 return method_header;
615 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000616 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700617 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000618 << ", pc=" << std::hex << pc
619 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
620 << ", copy=" << std::boolalpha << IsCopied()
621 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100622 }
623 }
624
625 // The code has to be in an oat file.
626 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100627 OatFile::OatMethod oat_method =
628 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100629 if (!found) {
Vladimir Marko2196c652017-11-30 16:16:07 +0000630 if (IsNative()) {
631 // We are running the GenericJNI stub. The entrypoint may point
632 // to different entrypoints or to a JIT-compiled JNI stub.
633 DCHECK(class_linker->IsQuickGenericJniStub(existing_entry_point) ||
634 class_linker->IsQuickResolutionStub(existing_entry_point) ||
635 existing_entry_point == GetQuickInstrumentationEntryPoint() ||
636 (jit != nullptr && jit->GetCodeCache()->ContainsPc(existing_entry_point)));
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000637 return nullptr;
638 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100639 // Only for unit tests.
640 // TODO(ngeoffray): Update these tests to pass the right pc?
641 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
642 }
643 const void* oat_entry_point = oat_method.GetQuickCode();
644 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700645 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100646 return nullptr;
647 }
648
649 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
650 if (pc == 0) {
651 // This is a downcall, it can only happen for a native method.
652 DCHECK(IsNative());
653 return method_header;
654 }
655
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100656 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700657 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100658 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700659 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100660 return method_header;
661}
662
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100663const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
664 bool found;
665 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
666 if (found) {
667 return oat_method.GetQuickCode();
668 }
669 return nullptr;
670}
671
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000672bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100673 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
674 return false;
675 }
676
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000677 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100678 Runtime* runtime = Runtime::Current();
679 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000680 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
681 return true;
682 }
683
684 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100685 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000686}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000687
Andreas Gampe542451c2016-07-26 09:02:02 -0700688void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000689 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
690 Size(image_pointer_size));
691 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
692
693 // If the entry point of the method we are copying from is from JIT code, we just
Vladimir Marko2196c652017-11-30 16:16:07 +0000694 // put the entry point of the new method to interpreter or GenericJNI. We could set
695 // the entry point to the JIT code, but this would require taking the JIT code cache
696 // lock to notify it, which we do not want at this level.
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000697 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100698 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000699 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
Vladimir Marko2196c652017-11-30 16:16:07 +0000700 SetEntryPointFromQuickCompiledCodePtrSize(
701 src->IsNative() ? GetQuickGenericJniStub() : GetQuickToInterpreterBridge(),
702 image_pointer_size);
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000703 }
704 }
705 // Clear the profiling info for the same reasons as the JIT code.
706 if (!src->IsNative()) {
707 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
708 }
709 // Clear hotness to let the JIT properly decide when to compile this method.
710 hotness_count_ = 0;
711}
712
Andreas Gampe542451c2016-07-26 09:02:02 -0700713bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700714 // Hijack this function to get access to PtrSizedFieldsOffset.
715 //
716 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
717 // 64-bit builds.
718 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700719 static_assert(
720 (sizeof(void*) != 4) ||
721 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
722 "Unexpected 32-bit class layout.");
723 static_assert(
724 (sizeof(void*) != 8) ||
725 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
726 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700727
Andreas Gampe75f08852016-07-19 08:06:07 -0700728 Runtime* runtime = Runtime::Current();
729 if (runtime == nullptr) {
730 return true;
731 }
732 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
733}
734
David Sehr709b0702016-10-13 09:12:37 -0700735std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
736 if (m == nullptr) {
737 return "null";
738 }
739 return m->PrettyMethod(with_signature);
740}
741
742std::string ArtMethod::PrettyMethod(bool with_signature) {
Vladimir Markob8a55f82017-09-21 16:21:43 +0100743 if (UNLIKELY(IsRuntimeMethod())) {
744 std::string result = GetDeclaringClassDescriptor();
745 result += '.';
746 result += GetName();
747 // Do not add "<no signature>" even if `with_signature` is true.
748 return result;
David Sehr709b0702016-10-13 09:12:37 -0700749 }
Vladimir Markob8a55f82017-09-21 16:21:43 +0100750 ArtMethod* m =
751 GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
752 return m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature);
David Sehr709b0702016-10-13 09:12:37 -0700753}
754
755std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800756 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700757}
758
759std::string ArtMethod::JniLongName() {
760 std::string long_name;
761 long_name += JniShortName();
762 long_name += "__";
763
764 std::string signature(GetSignature().ToString());
765 signature.erase(0, 1);
766 signature.erase(signature.begin() + signature.find(')'), signature.end());
767
768 long_name += MangleForJni(signature);
769
770 return long_name;
771}
772
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800773// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
774// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
775template <ReadBarrierOption kReadBarrierOption>
776ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method)
777 NO_THREAD_SAFETY_ANALYSIS {
778 CHECK(method->IsRuntimeMethod() ||
779 method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
780 method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
781}
782
783template <ReadBarrierOption kReadBarrierOption> void ArtMethod::GetAccessFlagsDCheck() {
784 if (kCheckDeclaringClassState) {
785 Thread* self = Thread::Current();
786 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
787 if (self->IsThreadSuspensionAllowable()) {
788 ScopedObjectAccess soa(self);
789 CHECK(IsRuntimeMethod() ||
790 GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
791 GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
792 }
793 } else {
794 // We cannot use SOA in this case. We might be holding the lock, but may not be in the
795 // runnable state (e.g., during GC).
796 Locks::mutator_lock_->AssertSharedHeld(self);
797 DoGetAccessFlagsHelper<kReadBarrierOption>(this);
798 }
799 }
800}
801template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithReadBarrier>();
802template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithoutReadBarrier>();
803
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800804} // namespace art