blob: f3c495957f9ad75700759201653a951c71ffd96c [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 Sehrb2ec9f52018-02-21 13:20:31 -080028#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080029#include "dex/dex_file-inl.h"
30#include "dex/dex_file_exception_helpers.h"
31#include "dex/dex_instruction.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070032#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070033#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080035#include "jit/jit.h"
36#include "jit/jit_code_cache.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010037#include "jit/profiling_info.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "jni_internal.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070039#include "mirror/class-inl.h"
Alex Lighta01de592016-11-15 10:43:06 -080040#include "mirror/class_ext.h"
Neil Fuller0e844392016-09-08 13:43:31 +010041#include "mirror/executable.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070042#include "mirror/object-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070043#include "mirror/object_array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070044#include "mirror/string.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000045#include "oat_file-inl.h"
Alex Lightd78ddec2017-04-18 15:20:38 -070046#include "runtime_callbacks.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070047#include "scoped_thread_state_change-inl.h"
Nicolas Geoffrayb02ba932017-07-13 15:53:54 +010048#include "vdex_file.h"
Ian Rogers62f05122014-03-21 11:21:29 -070049#include "well_known_classes.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050
51namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052
Andreas Gampe46ee31b2016-12-14 10:11:49 -080053using android::base::StringPrintf;
54
Ian Rogers0177e532014-02-11 16:30:46 -080055extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
56 const char*);
Ian Rogers936b37f2014-02-14 00:52:24 -080057extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
58 const char*);
Jeff Hao5d917302013-02-27 17:57:33 -080059
Andreas Gampeaea05c12017-05-19 08:45:02 -070060DEFINE_RUNTIME_DEBUG_FLAG(ArtMethod, kCheckDeclaringClassState);
61
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 {
70 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
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030091template <ReadBarrierOption kReadBarrierOption>
Mingyao Yange8fcd012017-01-20 10:43:30 -080092ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030093 if (!IsAbstract<kReadBarrierOption>()) {
Mingyao Yang063fc772016-08-02 11:02:54 -070094 // A non-abstract's single implementation is itself.
95 return this;
96 }
Mingyao Yange8fcd012017-01-20 10:43:30 -080097 return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size));
Mingyao Yang063fc772016-08-02 11:02:54 -070098}
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030099template ArtMethod* ArtMethod::GetSingleImplementation<ReadBarrierOption::kWithReadBarrier>(
100 PointerSize pointer_size);
101template ArtMethod* ArtMethod::GetSingleImplementation<ReadBarrierOption::kWithoutReadBarrier>(
102 PointerSize pointer_size);
Mingyao Yang063fc772016-08-02 11:02:54 -0700103
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700104ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
105 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700106 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +0100107 DCHECK(executable != nullptr);
108 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -0700109}
110
Alex Lighta01de592016-11-15 10:43:06 -0800111mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
112 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
113 DCHECK(IsObsolete());
114 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
115 CHECK(!ext.IsNull());
116 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
117 CHECK(!obsolete_methods.IsNull());
118 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
119 int32_t len = obsolete_methods->GetLength();
120 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -0800121 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
122 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -0800123 PointerSize pointer_size = kRuntimePointerSize;
124 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
125 for (int32_t i = 0; i < len; i++) {
126 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
127 return ext->GetObsoleteDexCaches()->Get(i);
128 }
129 }
130 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
131 UNREACHABLE();
132}
133
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000134uint16_t ArtMethod::FindObsoleteDexClassDefIndex() {
135 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
136 DCHECK(IsObsolete());
137 const DexFile* dex_file = GetDexFile();
138 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
139 const DexFile::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type);
140 CHECK(class_def != nullptr);
141 return dex_file->GetIndexForClassDef(*class_def);
142}
143
Vladimir Marko28e012a2017-12-07 11:22:59 +0000144ObjPtr<mirror::String> ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700145 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -0700146 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700147 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
148 auto* dex_file = dex_cache->GetDexFile();
149 uint32_t dex_method_idx = GetDexMethodIndex();
150 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Vladimir Markoa64b52d2017-12-08 16:27:49 +0000151 return Runtime::Current()->GetClassLinker()->ResolveString(method_id.name_idx_, dex_cache);
Ian Rogers6b14d552014-10-28 21:50:58 -0700152}
153
Alex Light9139e002015-10-09 15:59:48 -0700154void ArtMethod::ThrowInvocationTimeError() {
155 DCHECK(!IsInvokable());
156 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
157 // due to the way we select it.
158 if (IsDefaultConflicting()) {
159 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
160 } else {
161 DCHECK(IsAbstract());
162 ThrowAbstractMethodError(this);
163 }
164}
165
Ian Rogersef7d42f2014-01-06 12:55:46 -0800166InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800167 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000168 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000169 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000170 } else if (GetDeclaringClass()->IsInterface()) {
171 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800172 } else if (IsDirect()) {
173 return kDirect;
Orion Hodson43f0cdb2017-10-10 14:47:32 +0100174 } else if (IsPolymorphicSignature()) {
175 return kPolymorphic;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800176 } else {
177 return kVirtual;
178 }
179}
180
Brian Carlstromea46f952013-07-30 01:26:50 -0700181size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700182 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800183 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700184 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800185 char ch = shorty[i];
186 if (ch == 'D' || ch == 'J') {
187 num_registers += 2;
188 } else {
189 num_registers += 1;
190 }
191 }
192 return num_registers;
193}
194
Alex Light6c8467f2015-11-20 15:03:26 -0800195bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700196 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800197 const DexFile* dex_file = GetDexFile();
198 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
199 if (GetDexCache() == other->GetDexCache()) {
200 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800201 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
202 }
Alex Light6c8467f2015-11-20 15:03:26 -0800203 const DexFile* dex_file2 = other->GetDexFile();
204 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800205 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
206 return false; // Name mismatch.
207 }
208 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
209}
210
Andreas Gampe542451c2016-07-26 09:02:02 -0700211ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800212 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800213 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800214 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700215 mirror::Class* declaring_class = GetDeclaringClass();
216 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800217 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800218 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800219 // Did this method override a super class method? If so load the result from the super class'
220 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700221 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700222 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800223 } else {
224 // Method didn't override superclass method so search interfaces
225 if (IsProxyMethod()) {
Vladimir Marko07bfbac2017-07-06 14:55:02 +0100226 result = GetInterfaceMethodIfProxy(pointer_size);
227 DCHECK(result != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800228 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700229 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800230 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700231 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800232 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
233 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
234 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800235 break;
236 }
237 }
238 }
239 }
240 }
Alex Light6c8467f2015-11-20 15:03:26 -0800241 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800242 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
243 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800244 return result;
245}
246
Ian Rogerse0a02da2014-12-02 14:10:53 -0800247uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
248 uint32_t name_and_signature_idx) {
249 const DexFile* dexfile = GetDexFile();
250 const uint32_t dex_method_idx = GetDexMethodIndex();
251 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
252 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
253 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
254 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
255 if (dexfile == &other_dexfile) {
256 return dex_method_idx;
257 }
258 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700259 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
260 if (other_type_id != nullptr) {
261 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
262 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
263 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
264 if (other_mid != nullptr) {
265 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800266 }
267 }
Andreas Gampee2abbc62017-09-15 11:59:26 -0700268 return dex::kDexNoIndex;
Ian Rogerse0a02da2014-12-02 14:10:53 -0800269}
270
Mathieu Chartiere401d142015-04-22 13:56:20 -0700271uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700272 uint32_t dex_pc, bool* has_no_move_exception) {
Jeff Haoaa961912014-04-22 13:54:32 -0700273 // Set aside the exception while we resolve its type.
274 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700275 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000276 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700277 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700278 // Default to handler not found.
Andreas Gampee2abbc62017-09-15 11:59:26 -0700279 uint32_t found_dex_pc = dex::kDexNoIndex;
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700280 // Iterate over the catch handlers associated with dex_pc.
David Sehr0225f8e2018-01-31 08:52:24 +0000281 CodeItemDataAccessor accessor(DexInstructionData());
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800282 for (CatchHandlerIterator it(accessor, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800283 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800284 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800285 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700286 found_dex_pc = it.GetHandlerAddress();
287 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800288 }
289 // Does this catch exception type apply?
Vladimir Markob45528c2017-07-27 14:14:28 +0100290 ObjPtr<mirror::Class> iter_exception_type = ResolveClassFromTypeIndex(iter_type_idx);
Ian Rogers822266b2014-05-29 16:55:06 -0700291 if (UNLIKELY(iter_exception_type == nullptr)) {
292 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
293 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700294 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700295 self->ClearException();
296 // Delete any long jump context as this routine is called during a stack walk which will
297 // release its in use context at the end.
298 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800299 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700300 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700301 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700302 found_dex_pc = it.GetHandlerAddress();
303 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800304 }
305 }
Andreas Gampee2abbc62017-09-15 11:59:26 -0700306 if (found_dex_pc != dex::kDexNoIndex) {
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800307 const Instruction& first_catch_instr = accessor.InstructionAt(found_dex_pc);
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800308 *has_no_move_exception = (first_catch_instr.Opcode() != Instruction::MOVE_EXCEPTION);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700309 }
Jeff Haoaa961912014-04-22 13:54:32 -0700310 // Put the exception back.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800311 if (exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000312 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700313 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700314 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800315}
316
Brian Carlstromea46f952013-07-30 01:26:50 -0700317void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800318 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700319 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
320 ThrowStackOverflowError(self);
321 return;
322 }
323
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800324 if (kIsDebugBuild) {
325 self->AssertThreadSuspensionIsAllowable();
326 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700327 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800328 }
329
330 // Push a transition back into managed code onto the linked list in thread.
331 ManagedStack fragment;
332 self->PushManagedStackFragment(&fragment);
333
Ian Rogers62d6c772013-02-27 08:32:07 -0800334 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700335 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200336 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700337 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
338 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200339 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700340 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700341 art::interpreter::EnterInterpreterFromInvoke(
342 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700343 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700344 mirror::Object* receiver =
345 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700346 art::interpreter::EnterInterpreterFromInvoke(
347 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800348 }
349 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700350 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700351
352 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800353 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800354 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700355 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700356 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700357 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700358 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700359 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700360
Elliott Hughes956af0f2014-12-11 14:34:28 -0800361 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800362 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100363 CHECK(!runtime->UseJitCompilation());
Alex Lightdb01a092017-04-03 15:39:55 -0700364 const void* oat_quick_code =
365 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100366 ? nullptr
367 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100368 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700369 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700370 }
371
Elliott Hughes956af0f2014-12-11 14:34:28 -0800372 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800373 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800374 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800375 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800376 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000377 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200378 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700379 // exception was thrown to force the activations to be removed from the
380 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000381 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700382 }
383 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700384 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800385 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800386 }
387 } else {
David Sehr709b0702016-10-13 09:12:37 -0700388 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800389 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800390 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800391 }
392 }
393 }
394
395 // Pop transition.
396 self->PopManagedStackFragment(fragment);
397}
398
Vladimir Markob0a6aee2017-10-27 10:34:04 +0100399const void* ArtMethod::RegisterNative(const void* native_method) {
David Sehr709b0702016-10-13 09:12:37 -0700400 CHECK(IsNative()) << PrettyMethod();
David Sehr709b0702016-10-13 09:12:37 -0700401 CHECK(native_method != nullptr) << PrettyMethod();
Alex Lightd78ddec2017-04-18 15:20:38 -0700402 void* new_native_method = nullptr;
403 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this,
404 native_method,
405 /*out*/&new_native_method);
406 SetEntryPointFromJni(new_native_method);
407 return new_native_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800408}
409
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700410void ArtMethod::UnregisterNative() {
Vladimir Markob0a6aee2017-10-27 10:34:04 +0100411 CHECK(IsNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800412 // restore stub to lookup native pointer via dlsym
Alex Lightd78ddec2017-04-18 15:20:38 -0700413 SetEntryPointFromJni(GetJniDlsymLookupStub());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800414}
415
Alex Light9139e002015-10-09 15:59:48 -0700416bool ArtMethod::IsOverridableByDefaultMethod() {
417 return GetDeclaringClass()->IsInterface();
418}
419
Orion Hodsoneb4d19b2017-11-06 15:49:23 +0000420bool ArtMethod::IsPolymorphicSignature() {
421 // Methods with a polymorphic signature have constraints that they
422 // are native and varargs and belong to either MethodHandle or VarHandle.
423 if (!IsNative() || !IsVarargs()) {
424 return false;
425 }
426 mirror::Class* cls = GetDeclaringClass();
427 return (cls == WellKnownClasses::ToClass(WellKnownClasses::java_lang_invoke_MethodHandle) ||
428 cls == WellKnownClasses::ToClass(WellKnownClasses::java_lang_invoke_VarHandle));
429}
430
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100431static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
432 uint16_t class_def_idx,
433 uint32_t method_idx) {
434 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
435 const uint8_t* class_data = dex_file.GetClassData(class_def);
436 CHECK(class_data != nullptr);
437 ClassDataItemIterator it(dex_file, class_data);
Mathieu Chartiere17cf242017-06-19 11:05:51 -0700438 it.SkipAllFields();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100439 // Process methods
440 size_t class_def_method_index = 0;
441 while (it.HasNextDirectMethod()) {
442 if (it.GetMemberIndex() == method_idx) {
443 return class_def_method_index;
444 }
445 class_def_method_index++;
446 it.Next();
447 }
448 while (it.HasNextVirtualMethod()) {
449 if (it.GetMemberIndex() == method_idx) {
450 return class_def_method_index;
451 }
452 class_def_method_index++;
453 it.Next();
454 }
455 DCHECK(!it.HasNext());
456 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
457 UNREACHABLE();
458}
459
Alex Lighteee0bd42017-02-14 15:31:45 +0000460// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
461// method. This is extremely slow but we need it if we want to be able to have obsolete native
462// methods since we need this to find the size of its stack frames.
463//
464// NB We could (potentially) do this differently and rely on the way the transformation is applied
465// in order to use the entrypoint to find this information. However, for debugging reasons (most
466// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
467// directly from the dex file.
468static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
469 REQUIRES_SHARED(Locks::mutator_lock_) {
470 DCHECK(method->IsObsolete() && method->IsNative());
471 const DexFile* dex_file = method->GetDexFile();
472
473 // recreate the class_def_index from the descriptor.
474 std::string descriptor_storage;
475 const DexFile::TypeId* declaring_class_type_id =
476 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
477 CHECK(declaring_class_type_id != nullptr);
478 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
479 const DexFile::ClassDef* declaring_class_type_def =
480 dex_file->FindClassDef(declaring_class_type_index);
481 CHECK(declaring_class_type_def != nullptr);
482 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
483
484 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
485 declaring_class_def_index,
486 method->GetDexMethodIndex());
487
488 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
489 declaring_class_def_index,
490 found);
491 if (!(*found)) {
492 return OatFile::OatMethod::Invalid();
493 }
494 return oat_class.GetOatMethod(oat_method_index);
495}
496
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100497static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
498 PointerSize pointer_size,
499 bool* found)
500 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000501 if (UNLIKELY(method->IsObsolete())) {
502 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
503 // which we need to use the oat method to figure out how large the quick frame is.
504 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
505 << "order to allow stack walking. Other obsolete methods should "
506 << "never need to access this information.";
507 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
508 return FindOatMethodFromDexFileFor(method, found);
509 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100510 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
511 // method for direct methods (or virtual methods made direct).
512 mirror::Class* declaring_class = method->GetDeclaringClass();
513 size_t oat_method_index;
514 if (method->IsStatic() || method->IsDirect()) {
515 // Simple case where the oat method index was stashed at load time.
516 oat_method_index = method->GetMethodIndex();
517 } else {
518 // Compute the oat_method_index by search for its position in the declared virtual methods.
519 oat_method_index = declaring_class->NumDirectMethods();
520 bool found_virtual = false;
521 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
522 // Check method index instead of identity in case of duplicate method definitions.
523 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
524 found_virtual = true;
525 break;
526 }
527 oat_method_index++;
528 }
529 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700530 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100531 }
532 DCHECK_EQ(oat_method_index,
533 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
534 method->GetDeclaringClass()->GetDexClassDefIndex(),
535 method->GetDexMethodIndex()));
536 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
537 declaring_class->GetDexClassDefIndex(),
538 found);
539 if (!(*found)) {
540 return OatFile::OatMethod::Invalid();
541 }
542 return oat_class.GetOatMethod(oat_method_index);
543}
544
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700545bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
546 auto* dex_cache = GetDexCache();
547 auto* dex_file = dex_cache->GetDexFile();
548 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
549 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
550 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
551 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
Andreas Gampefa4333d2017-02-14 11:10:34 -0800552 auto param_len = params != nullptr ? params->GetLength() : 0u;
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700553 if (param_len != count) {
554 return false;
555 }
556 auto* cl = Runtime::Current()->GetClassLinker();
557 for (size_t i = 0; i < count; ++i) {
Vladimir Marko28e012a2017-12-07 11:22:59 +0000558 dex::TypeIndex type_idx = proto_params->GetTypeItem(i).type_idx_;
559 ObjPtr<mirror::Class> type = cl->ResolveType(type_idx, this);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700560 if (type == nullptr) {
561 Thread::Current()->AssertPendingException();
562 return false;
563 }
564 if (type != params->GetWithoutChecks(i)) {
565 return false;
566 }
567 }
568 return true;
569}
570
Mathieu Chartier210531f2018-01-12 10:15:51 -0800571ArrayRef<const uint8_t> ArtMethod::GetQuickenedInfo() {
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000572 const DexFile& dex_file = GetDeclaringClass()->GetDexFile();
573 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile();
574 if (oat_dex_file == nullptr || (oat_dex_file->GetOatFile() == nullptr)) {
Mathieu Chartier210531f2018-01-12 10:15:51 -0800575 return ArrayRef<const uint8_t>();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100576 }
Mathieu Chartier210531f2018-01-12 10:15:51 -0800577 return oat_dex_file->GetOatFile()->GetVdexFile()->GetQuickenedInfoOf(dex_file,
578 GetDexMethodIndex());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100579}
580
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100581const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000582 // Our callers should make sure they don't pass the instrumentation exit pc,
583 // as this method does not look at the side instrumentation stack.
584 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
585
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000586 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100587 return nullptr;
588 }
589
590 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100591 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700592 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100593 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100594
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000595 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
596 DCHECK(IsProxyMethod() && !IsConstructor());
597 // The proxy entry point does not have any method header.
598 return nullptr;
599 }
600
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100601 // Check whether the current entry point contains this pc.
Vladimir Marko2196c652017-11-30 16:16:07 +0000602 if (!class_linker->IsQuickGenericJniStub(existing_entry_point) &&
603 !class_linker->IsQuickResolutionStub(existing_entry_point) &&
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100604 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
605 OatQuickMethodHeader* method_header =
606 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100607
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100608 if (method_header->Contains(pc)) {
609 return method_header;
610 }
611 }
612
613 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100614 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100615 if (jit != nullptr) {
616 jit::JitCodeCache* code_cache = jit->GetCodeCache();
617 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
618 if (method_header != nullptr) {
619 DCHECK(method_header->Contains(pc));
620 return method_header;
621 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000622 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700623 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000624 << ", pc=" << std::hex << pc
625 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
626 << ", copy=" << std::boolalpha << IsCopied()
627 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100628 }
629 }
630
631 // The code has to be in an oat file.
632 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100633 OatFile::OatMethod oat_method =
634 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100635 if (!found) {
Vladimir Marko2196c652017-11-30 16:16:07 +0000636 if (IsNative()) {
637 // We are running the GenericJNI stub. The entrypoint may point
638 // to different entrypoints or to a JIT-compiled JNI stub.
639 DCHECK(class_linker->IsQuickGenericJniStub(existing_entry_point) ||
640 class_linker->IsQuickResolutionStub(existing_entry_point) ||
641 existing_entry_point == GetQuickInstrumentationEntryPoint() ||
642 (jit != nullptr && jit->GetCodeCache()->ContainsPc(existing_entry_point)));
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000643 return nullptr;
644 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100645 // Only for unit tests.
646 // TODO(ngeoffray): Update these tests to pass the right pc?
647 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
648 }
649 const void* oat_entry_point = oat_method.GetQuickCode();
650 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700651 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100652 return nullptr;
653 }
654
655 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
656 if (pc == 0) {
657 // This is a downcall, it can only happen for a native method.
658 DCHECK(IsNative());
659 return method_header;
660 }
661
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100662 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700663 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100664 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700665 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100666 return method_header;
667}
668
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100669const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
670 bool found;
671 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
672 if (found) {
673 return oat_method.GetQuickCode();
674 }
675 return nullptr;
676}
677
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000678bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100679 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
680 return false;
681 }
682
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000683 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100684 Runtime* runtime = Runtime::Current();
685 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000686 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
687 return true;
688 }
689
690 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100691 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000692}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000693
Andreas Gampe542451c2016-07-26 09:02:02 -0700694void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000695 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
696 Size(image_pointer_size));
697 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
698
699 // If the entry point of the method we are copying from is from JIT code, we just
Vladimir Marko2196c652017-11-30 16:16:07 +0000700 // put the entry point of the new method to interpreter or GenericJNI. We could set
701 // the entry point to the JIT code, but this would require taking the JIT code cache
702 // lock to notify it, which we do not want at this level.
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000703 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100704 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000705 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
Vladimir Marko2196c652017-11-30 16:16:07 +0000706 SetEntryPointFromQuickCompiledCodePtrSize(
707 src->IsNative() ? GetQuickGenericJniStub() : GetQuickToInterpreterBridge(),
708 image_pointer_size);
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000709 }
710 }
711 // Clear the profiling info for the same reasons as the JIT code.
712 if (!src->IsNative()) {
713 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
714 }
715 // Clear hotness to let the JIT properly decide when to compile this method.
716 hotness_count_ = 0;
717}
718
Andreas Gampe542451c2016-07-26 09:02:02 -0700719bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700720 // Hijack this function to get access to PtrSizedFieldsOffset.
721 //
722 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
723 // 64-bit builds.
724 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700725 static_assert(
726 (sizeof(void*) != 4) ||
727 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
728 "Unexpected 32-bit class layout.");
729 static_assert(
730 (sizeof(void*) != 8) ||
731 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
732 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700733
Andreas Gampe75f08852016-07-19 08:06:07 -0700734 Runtime* runtime = Runtime::Current();
735 if (runtime == nullptr) {
736 return true;
737 }
738 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
739}
740
David Sehr709b0702016-10-13 09:12:37 -0700741std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
742 if (m == nullptr) {
743 return "null";
744 }
745 return m->PrettyMethod(with_signature);
746}
747
748std::string ArtMethod::PrettyMethod(bool with_signature) {
Vladimir Markob8a55f82017-09-21 16:21:43 +0100749 if (UNLIKELY(IsRuntimeMethod())) {
750 std::string result = GetDeclaringClassDescriptor();
751 result += '.';
752 result += GetName();
753 // Do not add "<no signature>" even if `with_signature` is true.
754 return result;
David Sehr709b0702016-10-13 09:12:37 -0700755 }
Vladimir Markob8a55f82017-09-21 16:21:43 +0100756 ArtMethod* m =
757 GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
758 return m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature);
David Sehr709b0702016-10-13 09:12:37 -0700759}
760
761std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800762 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700763}
764
765std::string ArtMethod::JniLongName() {
766 std::string long_name;
767 long_name += JniShortName();
768 long_name += "__";
769
770 std::string signature(GetSignature().ToString());
771 signature.erase(0, 1);
772 signature.erase(signature.begin() + signature.find(')'), signature.end());
773
774 long_name += MangleForJni(signature);
775
776 return long_name;
777}
778
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800779// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
780// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
781template <ReadBarrierOption kReadBarrierOption>
782ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method)
783 NO_THREAD_SAFETY_ANALYSIS {
784 CHECK(method->IsRuntimeMethod() ||
785 method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
786 method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
787}
788
789template <ReadBarrierOption kReadBarrierOption> void ArtMethod::GetAccessFlagsDCheck() {
790 if (kCheckDeclaringClassState) {
791 Thread* self = Thread::Current();
792 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
793 if (self->IsThreadSuspensionAllowable()) {
794 ScopedObjectAccess soa(self);
795 CHECK(IsRuntimeMethod() ||
796 GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
797 GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
798 }
799 } else {
800 // We cannot use SOA in this case. We might be holding the lock, but may not be in the
801 // runnable state (e.g., during GC).
802 Locks::mutator_lock_->AssertSharedHeld(self);
803 DoGetAccessFlagsHelper<kReadBarrierOption>(this);
804 }
805 }
806}
807template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithReadBarrier>();
808template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithoutReadBarrier>();
809
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800810} // namespace art