blob: 4a19b108ab4c561a2a77d8e69f90bda1232343ec [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"
Vladimir Markoc7aa87e2018-05-24 15:19:52 +010027#include "class_root.h"
Andreas Gampe2a5c4682015-08-14 08:22:54 -070028#include "debugger.h"
Mathieu Chartier1f1cb9f2018-06-04 09:22:46 -070029#include "dex/class_accessor-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080030#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080031#include "dex/dex_file-inl.h"
32#include "dex/dex_file_exception_helpers.h"
33#include "dex/dex_instruction.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070034#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070035#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080037#include "jit/jit.h"
38#include "jit/jit_code_cache.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010039#include "jit/profiling_info.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010040#include "jni/jni_internal.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070041#include "mirror/class-inl.h"
Alex Lighta01de592016-11-15 10:43:06 -080042#include "mirror/class_ext.h"
Neil Fuller0e844392016-09-08 13:43:31 +010043#include "mirror/executable.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070044#include "mirror/object-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070045#include "mirror/object_array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070046#include "mirror/string.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000047#include "oat_file-inl.h"
Nicolas Geoffrayb041a402017-11-13 15:16:22 +000048#include "quicken_info.h"
Alex Lightd78ddec2017-04-18 15:20:38 -070049#include "runtime_callbacks.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070050#include "scoped_thread_state_change-inl.h"
Nicolas Geoffrayb02ba932017-07-13 15:53:54 +010051#include "vdex_file.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052
53namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080054
Andreas Gampe46ee31b2016-12-14 10:11:49 -080055using android::base::StringPrintf;
56
Ian Rogers0177e532014-02-11 16:30:46 -080057extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
58 const char*);
Ian Rogers936b37f2014-02-14 00:52:24 -080059extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
60 const char*);
Jeff Hao5d917302013-02-27 17:57:33 -080061
Andreas Gampec6ea7d02017-02-01 16:46:28 -080062// Enforce that we he have the right index for runtime methods.
Andreas Gampee2abbc62017-09-15 11:59:26 -070063static_assert(ArtMethod::kRuntimeMethodDexMethodIndex == dex::kDexNoIndex,
Andreas Gampec6ea7d02017-02-01 16:46:28 -080064 "Wrong runtime-method dex method index");
65
Alex Light97e78032017-06-27 17:51:55 -070066ArtMethod* ArtMethod::GetCanonicalMethod(PointerSize pointer_size) {
67 if (LIKELY(!IsDefault())) {
68 return this;
69 } else {
Vladimir Markoc7aa87e2018-05-24 15:19:52 +010070 ObjPtr<mirror::Class> declaring_class = GetDeclaringClass();
Vladimir Markoba118822017-06-12 15:41:56 +010071 DCHECK(declaring_class->IsInterface());
72 ArtMethod* ret = declaring_class->FindInterfaceMethod(declaring_class->GetDexCache(),
73 GetDexMethodIndex(),
74 pointer_size);
Alex Light97e78032017-06-27 17:51:55 -070075 DCHECK(ret != nullptr);
76 return ret;
77 }
78}
79
Alex Light4ba388a2017-01-27 10:26:49 -080080ArtMethod* ArtMethod::GetNonObsoleteMethod() {
81 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
82 if (LIKELY(!IsObsolete())) {
83 return this;
84 } else if (IsDirect()) {
85 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()];
86 } else {
87 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize);
88 }
89}
90
Mingyao Yange8fcd012017-01-20 10:43:30 -080091ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Vladimir Markoc945e0d2018-07-18 17:26:45 +010092 if (!IsAbstract()) {
Mingyao Yang063fc772016-08-02 11:02:54 -070093 // A non-abstract's single implementation is itself.
94 return this;
95 }
Mingyao Yange8fcd012017-01-20 10:43:30 -080096 return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size));
Mingyao Yang063fc772016-08-02 11:02:54 -070097}
98
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070099ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
100 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700101 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +0100102 DCHECK(executable != nullptr);
103 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -0700104}
105
Alex Lighta01de592016-11-15 10:43:06 -0800106mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
107 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
108 DCHECK(IsObsolete());
109 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
110 CHECK(!ext.IsNull());
111 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
112 CHECK(!obsolete_methods.IsNull());
113 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
114 int32_t len = obsolete_methods->GetLength();
115 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -0800116 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
117 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -0800118 PointerSize pointer_size = kRuntimePointerSize;
119 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
120 for (int32_t i = 0; i < len; i++) {
121 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
122 return ext->GetObsoleteDexCaches()->Get(i);
123 }
124 }
125 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
126 UNREACHABLE();
127}
128
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000129uint16_t ArtMethod::FindObsoleteDexClassDefIndex() {
130 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
131 DCHECK(IsObsolete());
132 const DexFile* dex_file = GetDexFile();
133 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
134 const DexFile::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type);
135 CHECK(class_def != nullptr);
136 return dex_file->GetIndexForClassDef(*class_def);
137}
138
Alex Light9139e002015-10-09 15:59:48 -0700139void ArtMethod::ThrowInvocationTimeError() {
140 DCHECK(!IsInvokable());
141 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
142 // due to the way we select it.
143 if (IsDefaultConflicting()) {
144 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
145 } else {
146 DCHECK(IsAbstract());
147 ThrowAbstractMethodError(this);
148 }
149}
150
Ian Rogersef7d42f2014-01-06 12:55:46 -0800151InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800152 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000153 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000154 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000155 } else if (GetDeclaringClass()->IsInterface()) {
156 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800157 } else if (IsDirect()) {
158 return kDirect;
Orion Hodson43f0cdb2017-10-10 14:47:32 +0100159 } else if (IsPolymorphicSignature()) {
160 return kPolymorphic;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800161 } else {
162 return kVirtual;
163 }
164}
165
Brian Carlstromea46f952013-07-30 01:26:50 -0700166size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700167 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800168 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700169 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800170 char ch = shorty[i];
171 if (ch == 'D' || ch == 'J') {
172 num_registers += 2;
173 } else {
174 num_registers += 1;
175 }
176 }
177 return num_registers;
178}
179
Alex Light6c8467f2015-11-20 15:03:26 -0800180bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700181 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800182 const DexFile* dex_file = GetDexFile();
183 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
184 if (GetDexCache() == other->GetDexCache()) {
185 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800186 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
187 }
Alex Light6c8467f2015-11-20 15:03:26 -0800188 const DexFile* dex_file2 = other->GetDexFile();
189 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800190 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
191 return false; // Name mismatch.
192 }
193 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
194}
195
Andreas Gampe542451c2016-07-26 09:02:02 -0700196ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800197 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800198 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800199 }
Vladimir Markoc7aa87e2018-05-24 15:19:52 +0100200 ObjPtr<mirror::Class> declaring_class = GetDeclaringClass();
201 ObjPtr<mirror::Class> super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800202 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800203 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800204 // Did this method override a super class method? If so load the result from the super class'
205 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700206 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700207 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800208 } else {
209 // Method didn't override superclass method so search interfaces
210 if (IsProxyMethod()) {
Vladimir Marko07bfbac2017-07-06 14:55:02 +0100211 result = GetInterfaceMethodIfProxy(pointer_size);
212 DCHECK(result != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800213 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700214 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800215 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Vladimir Markoc7aa87e2018-05-24 15:19:52 +0100216 ObjPtr<mirror::Class> interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800217 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
218 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
219 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800220 break;
221 }
222 }
223 }
224 }
225 }
Alex Light6c8467f2015-11-20 15:03:26 -0800226 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800227 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
228 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800229 return result;
230}
231
Ian Rogerse0a02da2014-12-02 14:10:53 -0800232uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
233 uint32_t name_and_signature_idx) {
234 const DexFile* dexfile = GetDexFile();
235 const uint32_t dex_method_idx = GetDexMethodIndex();
236 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
237 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
238 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
239 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
240 if (dexfile == &other_dexfile) {
241 return dex_method_idx;
242 }
243 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700244 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
245 if (other_type_id != nullptr) {
246 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
247 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
248 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
249 if (other_mid != nullptr) {
250 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800251 }
252 }
Andreas Gampee2abbc62017-09-15 11:59:26 -0700253 return dex::kDexNoIndex;
Ian Rogerse0a02da2014-12-02 14:10:53 -0800254}
255
Mathieu Chartiere401d142015-04-22 13:56:20 -0700256uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700257 uint32_t dex_pc, bool* has_no_move_exception) {
Jeff Haoaa961912014-04-22 13:54:32 -0700258 // Set aside the exception while we resolve its type.
259 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700260 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000261 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700262 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700263 // Default to handler not found.
Andreas Gampee2abbc62017-09-15 11:59:26 -0700264 uint32_t found_dex_pc = dex::kDexNoIndex;
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700265 // Iterate over the catch handlers associated with dex_pc.
David Sehr0225f8e2018-01-31 08:52:24 +0000266 CodeItemDataAccessor accessor(DexInstructionData());
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800267 for (CatchHandlerIterator it(accessor, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800268 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800269 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800270 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700271 found_dex_pc = it.GetHandlerAddress();
272 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800273 }
274 // Does this catch exception type apply?
Vladimir Markob45528c2017-07-27 14:14:28 +0100275 ObjPtr<mirror::Class> iter_exception_type = ResolveClassFromTypeIndex(iter_type_idx);
Ian Rogers822266b2014-05-29 16:55:06 -0700276 if (UNLIKELY(iter_exception_type == nullptr)) {
277 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
278 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700279 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700280 self->ClearException();
281 // Delete any long jump context as this routine is called during a stack walk which will
282 // release its in use context at the end.
283 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800284 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700285 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700286 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700287 found_dex_pc = it.GetHandlerAddress();
288 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800289 }
290 }
Andreas Gampee2abbc62017-09-15 11:59:26 -0700291 if (found_dex_pc != dex::kDexNoIndex) {
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800292 const Instruction& first_catch_instr = accessor.InstructionAt(found_dex_pc);
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800293 *has_no_move_exception = (first_catch_instr.Opcode() != Instruction::MOVE_EXCEPTION);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700294 }
Jeff Haoaa961912014-04-22 13:54:32 -0700295 // Put the exception back.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800296 if (exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000297 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700298 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700299 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800300}
301
Brian Carlstromea46f952013-07-30 01:26:50 -0700302void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800303 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700304 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
305 ThrowStackOverflowError(self);
306 return;
307 }
308
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800309 if (kIsDebugBuild) {
310 self->AssertThreadSuspensionIsAllowable();
311 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700312 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800313 }
314
315 // Push a transition back into managed code onto the linked list in thread.
316 ManagedStack fragment;
317 self->PushManagedStackFragment(&fragment);
318
Ian Rogers62d6c772013-02-27 08:32:07 -0800319 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700320 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200321 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700322 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
323 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200324 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700325 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700326 art::interpreter::EnterInterpreterFromInvoke(
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700327 self, this, nullptr, args, result, /*stay_in_interpreter=*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700328 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700329 mirror::Object* receiver =
330 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700331 art::interpreter::EnterInterpreterFromInvoke(
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700332 self, this, receiver, args + 1, result, /*stay_in_interpreter=*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800333 }
334 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700335 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700336
337 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800338 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800339 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700340 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700341 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700342 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700343 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700344 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700345
Elliott Hughes956af0f2014-12-11 14:34:28 -0800346 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800347 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100348 CHECK(!runtime->UseJitCompilation());
Alex Lightdb01a092017-04-03 15:39:55 -0700349 const void* oat_quick_code =
350 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100351 ? nullptr
352 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100353 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700354 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700355 }
356
Elliott Hughes956af0f2014-12-11 14:34:28 -0800357 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800358 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800359 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800360 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800361 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000362 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200363 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700364 // exception was thrown to force the activations to be removed from the
365 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000366 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700367 }
368 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700369 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800370 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800371 }
372 } else {
David Sehr709b0702016-10-13 09:12:37 -0700373 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800374 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800375 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800376 }
377 }
378 }
379
380 // Pop transition.
381 self->PopManagedStackFragment(fragment);
382}
383
Vladimir Markob0a6aee2017-10-27 10:34:04 +0100384const void* ArtMethod::RegisterNative(const void* native_method) {
David Sehr709b0702016-10-13 09:12:37 -0700385 CHECK(IsNative()) << PrettyMethod();
David Sehr709b0702016-10-13 09:12:37 -0700386 CHECK(native_method != nullptr) << PrettyMethod();
Alex Lightd78ddec2017-04-18 15:20:38 -0700387 void* new_native_method = nullptr;
388 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this,
389 native_method,
390 /*out*/&new_native_method);
391 SetEntryPointFromJni(new_native_method);
392 return new_native_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800393}
394
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700395void ArtMethod::UnregisterNative() {
Vladimir Markob0a6aee2017-10-27 10:34:04 +0100396 CHECK(IsNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800397 // restore stub to lookup native pointer via dlsym
Alex Lightd78ddec2017-04-18 15:20:38 -0700398 SetEntryPointFromJni(GetJniDlsymLookupStub());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800399}
400
Alex Light9139e002015-10-09 15:59:48 -0700401bool ArtMethod::IsOverridableByDefaultMethod() {
402 return GetDeclaringClass()->IsInterface();
403}
404
Orion Hodsoneb4d19b2017-11-06 15:49:23 +0000405bool ArtMethod::IsPolymorphicSignature() {
406 // Methods with a polymorphic signature have constraints that they
407 // are native and varargs and belong to either MethodHandle or VarHandle.
408 if (!IsNative() || !IsVarargs()) {
409 return false;
410 }
Vladimir Markoc7aa87e2018-05-24 15:19:52 +0100411 ObjPtr<mirror::ObjectArray<mirror::Class>> class_roots =
412 Runtime::Current()->GetClassLinker()->GetClassRoots();
413 ObjPtr<mirror::Class> cls = GetDeclaringClass();
414 return (cls == GetClassRoot<mirror::MethodHandle>(class_roots) ||
415 cls == GetClassRoot<mirror::VarHandle>(class_roots));
Orion Hodsoneb4d19b2017-11-06 15:49:23 +0000416}
417
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100418static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
419 uint16_t class_def_idx,
420 uint32_t method_idx) {
Mathieu Chartier18e26872018-06-04 17:19:02 -0700421 ClassAccessor accessor(dex_file, class_def_idx);
Mathieu Chartier1f1cb9f2018-06-04 09:22:46 -0700422 uint32_t class_def_method_index = 0u;
423 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
424 if (method.GetIndex() == method_idx) {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100425 return class_def_method_index;
426 }
427 class_def_method_index++;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100428 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100429 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
430 UNREACHABLE();
431}
432
Alex Lighteee0bd42017-02-14 15:31:45 +0000433// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
434// method. This is extremely slow but we need it if we want to be able to have obsolete native
435// methods since we need this to find the size of its stack frames.
436//
437// NB We could (potentially) do this differently and rely on the way the transformation is applied
438// in order to use the entrypoint to find this information. However, for debugging reasons (most
439// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
440// directly from the dex file.
441static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
442 REQUIRES_SHARED(Locks::mutator_lock_) {
443 DCHECK(method->IsObsolete() && method->IsNative());
444 const DexFile* dex_file = method->GetDexFile();
445
446 // recreate the class_def_index from the descriptor.
447 std::string descriptor_storage;
448 const DexFile::TypeId* declaring_class_type_id =
449 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
450 CHECK(declaring_class_type_id != nullptr);
451 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
452 const DexFile::ClassDef* declaring_class_type_def =
453 dex_file->FindClassDef(declaring_class_type_index);
454 CHECK(declaring_class_type_def != nullptr);
455 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
456
457 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
458 declaring_class_def_index,
459 method->GetDexMethodIndex());
460
461 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
462 declaring_class_def_index,
463 found);
464 if (!(*found)) {
465 return OatFile::OatMethod::Invalid();
466 }
467 return oat_class.GetOatMethod(oat_method_index);
468}
469
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100470static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
471 PointerSize pointer_size,
472 bool* found)
473 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000474 if (UNLIKELY(method->IsObsolete())) {
475 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
476 // which we need to use the oat method to figure out how large the quick frame is.
477 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
478 << "order to allow stack walking. Other obsolete methods should "
479 << "never need to access this information.";
480 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
481 return FindOatMethodFromDexFileFor(method, found);
482 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100483 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
484 // method for direct methods (or virtual methods made direct).
Vladimir Markoc7aa87e2018-05-24 15:19:52 +0100485 ObjPtr<mirror::Class> declaring_class = method->GetDeclaringClass();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100486 size_t oat_method_index;
487 if (method->IsStatic() || method->IsDirect()) {
488 // Simple case where the oat method index was stashed at load time.
489 oat_method_index = method->GetMethodIndex();
490 } else {
491 // Compute the oat_method_index by search for its position in the declared virtual methods.
492 oat_method_index = declaring_class->NumDirectMethods();
493 bool found_virtual = false;
494 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
495 // Check method index instead of identity in case of duplicate method definitions.
496 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
497 found_virtual = true;
498 break;
499 }
500 oat_method_index++;
501 }
502 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700503 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100504 }
505 DCHECK_EQ(oat_method_index,
506 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
507 method->GetDeclaringClass()->GetDexClassDefIndex(),
508 method->GetDexMethodIndex()));
509 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
510 declaring_class->GetDexClassDefIndex(),
511 found);
512 if (!(*found)) {
513 return OatFile::OatMethod::Invalid();
514 }
515 return oat_class.GetOatMethod(oat_method_index);
516}
517
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700518bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
519 auto* dex_cache = GetDexCache();
520 auto* dex_file = dex_cache->GetDexFile();
521 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
522 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
523 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
524 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
Andreas Gampefa4333d2017-02-14 11:10:34 -0800525 auto param_len = params != nullptr ? params->GetLength() : 0u;
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700526 if (param_len != count) {
527 return false;
528 }
529 auto* cl = Runtime::Current()->GetClassLinker();
530 for (size_t i = 0; i < count; ++i) {
Vladimir Marko28e012a2017-12-07 11:22:59 +0000531 dex::TypeIndex type_idx = proto_params->GetTypeItem(i).type_idx_;
532 ObjPtr<mirror::Class> type = cl->ResolveType(type_idx, this);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700533 if (type == nullptr) {
534 Thread::Current()->AssertPendingException();
535 return false;
536 }
537 if (type != params->GetWithoutChecks(i)) {
538 return false;
539 }
540 }
541 return true;
542}
543
Mathieu Chartier210531f2018-01-12 10:15:51 -0800544ArrayRef<const uint8_t> ArtMethod::GetQuickenedInfo() {
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000545 const DexFile& dex_file = GetDeclaringClass()->GetDexFile();
Andreas Gampeb40d3612018-06-26 15:49:42 -0700546 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile();
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000547 if (oat_dex_file == nullptr || (oat_dex_file->GetOatFile() == nullptr)) {
Mathieu Chartier210531f2018-01-12 10:15:51 -0800548 return ArrayRef<const uint8_t>();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100549 }
Mathieu Chartier210531f2018-01-12 10:15:51 -0800550 return oat_dex_file->GetOatFile()->GetVdexFile()->GetQuickenedInfoOf(dex_file,
551 GetDexMethodIndex());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100552}
553
Nicolas Geoffrayb041a402017-11-13 15:16:22 +0000554uint16_t ArtMethod::GetIndexFromQuickening(uint32_t dex_pc) {
555 ArrayRef<const uint8_t> data = GetQuickenedInfo();
556 if (data.empty()) {
557 return DexFile::kDexNoIndex16;
558 }
559 QuickenInfoTable table(data);
560 uint32_t quicken_index = 0;
561 for (const DexInstructionPcPair& pair : DexInstructions()) {
562 if (pair.DexPc() == dex_pc) {
563 return table.GetData(quicken_index);
564 }
565 if (QuickenInfoTable::NeedsIndexForInstruction(&pair.Inst())) {
566 ++quicken_index;
567 }
568 }
569 return DexFile::kDexNoIndex16;
570}
571
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100572const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000573 // Our callers should make sure they don't pass the instrumentation exit pc,
574 // as this method does not look at the side instrumentation stack.
575 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
576
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000577 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100578 return nullptr;
579 }
580
581 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100582 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700583 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100584 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100585
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000586 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
587 DCHECK(IsProxyMethod() && !IsConstructor());
588 // The proxy entry point does not have any method header.
589 return nullptr;
590 }
591
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100592 // Check whether the current entry point contains this pc.
Vladimir Marko2196c652017-11-30 16:16:07 +0000593 if (!class_linker->IsQuickGenericJniStub(existing_entry_point) &&
594 !class_linker->IsQuickResolutionStub(existing_entry_point) &&
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100595 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
596 OatQuickMethodHeader* method_header =
597 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100598
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100599 if (method_header->Contains(pc)) {
600 return method_header;
601 }
602 }
603
604 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100605 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100606 if (jit != nullptr) {
607 jit::JitCodeCache* code_cache = jit->GetCodeCache();
608 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
609 if (method_header != nullptr) {
610 DCHECK(method_header->Contains(pc));
611 return method_header;
612 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000613 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700614 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000615 << ", pc=" << std::hex << pc
616 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
617 << ", copy=" << std::boolalpha << IsCopied()
618 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100619 }
620 }
621
622 // The code has to be in an oat file.
623 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100624 OatFile::OatMethod oat_method =
625 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100626 if (!found) {
Vladimir Marko2196c652017-11-30 16:16:07 +0000627 if (IsNative()) {
628 // We are running the GenericJNI stub. The entrypoint may point
629 // to different entrypoints or to a JIT-compiled JNI stub.
630 DCHECK(class_linker->IsQuickGenericJniStub(existing_entry_point) ||
631 class_linker->IsQuickResolutionStub(existing_entry_point) ||
632 existing_entry_point == GetQuickInstrumentationEntryPoint() ||
633 (jit != nullptr && jit->GetCodeCache()->ContainsPc(existing_entry_point)));
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000634 return nullptr;
635 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100636 // Only for unit tests.
637 // TODO(ngeoffray): Update these tests to pass the right pc?
638 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
639 }
640 const void* oat_entry_point = oat_method.GetQuickCode();
641 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700642 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100643 return nullptr;
644 }
645
646 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
647 if (pc == 0) {
648 // This is a downcall, it can only happen for a native method.
649 DCHECK(IsNative());
650 return method_header;
651 }
652
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100653 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700654 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100655 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700656 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100657 return method_header;
658}
659
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100660const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
661 bool found;
662 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
663 if (found) {
664 return oat_method.GetQuickCode();
665 }
666 return nullptr;
667}
668
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000669bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100670 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
671 return false;
672 }
673
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000674 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100675 Runtime* runtime = Runtime::Current();
676 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000677 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
678 return true;
679 }
680
681 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100682 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000683}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000684
David Brazdil904e75a2018-05-15 13:45:08 +0100685void ArtMethod::SetNotIntrinsic() {
686 if (!IsIntrinsic()) {
687 return;
688 }
689
690 // Query the hidden API access flags of the intrinsic.
691 HiddenApiAccessFlags::ApiList intrinsic_api_list = GetHiddenApiAccessFlags();
692
693 // Clear intrinsic-related access flags.
694 ClearAccessFlags(kAccIntrinsic | kAccIntrinsicBits);
695
696 // Re-apply hidden API access flags now that the method is not an intrinsic.
697 SetAccessFlags(HiddenApiAccessFlags::EncodeForRuntime(GetAccessFlags(), intrinsic_api_list));
698 DCHECK_EQ(GetHiddenApiAccessFlags(), intrinsic_api_list);
699}
700
701
Andreas Gampe542451c2016-07-26 09:02:02 -0700702void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000703 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
704 Size(image_pointer_size));
705 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
706
707 // If the entry point of the method we are copying from is from JIT code, we just
Vladimir Marko2196c652017-11-30 16:16:07 +0000708 // put the entry point of the new method to interpreter or GenericJNI. We could set
709 // the entry point to the JIT code, but this would require taking the JIT code cache
710 // lock to notify it, which we do not want at this level.
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000711 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100712 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000713 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
Vladimir Marko2196c652017-11-30 16:16:07 +0000714 SetEntryPointFromQuickCompiledCodePtrSize(
715 src->IsNative() ? GetQuickGenericJniStub() : GetQuickToInterpreterBridge(),
716 image_pointer_size);
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000717 }
718 }
719 // Clear the profiling info for the same reasons as the JIT code.
720 if (!src->IsNative()) {
721 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
722 }
723 // Clear hotness to let the JIT properly decide when to compile this method.
724 hotness_count_ = 0;
725}
726
Andreas Gampe542451c2016-07-26 09:02:02 -0700727bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700728 // Hijack this function to get access to PtrSizedFieldsOffset.
729 //
730 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
731 // 64-bit builds.
732 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700733 static_assert(
734 (sizeof(void*) != 4) ||
735 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
736 "Unexpected 32-bit class layout.");
737 static_assert(
738 (sizeof(void*) != 8) ||
739 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
740 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700741
Andreas Gampe75f08852016-07-19 08:06:07 -0700742 Runtime* runtime = Runtime::Current();
743 if (runtime == nullptr) {
744 return true;
745 }
746 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
747}
748
David Sehr709b0702016-10-13 09:12:37 -0700749std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
750 if (m == nullptr) {
751 return "null";
752 }
753 return m->PrettyMethod(with_signature);
754}
755
756std::string ArtMethod::PrettyMethod(bool with_signature) {
Vladimir Markob8a55f82017-09-21 16:21:43 +0100757 if (UNLIKELY(IsRuntimeMethod())) {
758 std::string result = GetDeclaringClassDescriptor();
759 result += '.';
760 result += GetName();
761 // Do not add "<no signature>" even if `with_signature` is true.
762 return result;
David Sehr709b0702016-10-13 09:12:37 -0700763 }
Vladimir Markob8a55f82017-09-21 16:21:43 +0100764 ArtMethod* m =
765 GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
766 return m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature);
David Sehr709b0702016-10-13 09:12:37 -0700767}
768
769std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800770 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700771}
772
773std::string ArtMethod::JniLongName() {
774 std::string long_name;
775 long_name += JniShortName();
776 long_name += "__";
777
778 std::string signature(GetSignature().ToString());
779 signature.erase(0, 1);
780 signature.erase(signature.begin() + signature.find(')'), signature.end());
781
782 long_name += MangleForJni(signature);
783
784 return long_name;
785}
786
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800787// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
788// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
789template <ReadBarrierOption kReadBarrierOption>
790ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method)
791 NO_THREAD_SAFETY_ANALYSIS {
792 CHECK(method->IsRuntimeMethod() ||
793 method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
794 method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
795}
796
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800797} // namespace art