blob: 07193b2546f9090cc451921011e5ef8f643727fb [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"
Andreas Gampead1aa632019-01-02 10:30:54 -080034#include "dex/signature-inl.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070035#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070036#include "gc/accounting/card_table-inl.h"
David Brazdil85865692018-10-30 17:26:20 +000037#include "hidden_api.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080039#include "jit/jit.h"
40#include "jit/jit_code_cache.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010041#include "jit/profiling_info.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010042#include "jni/jni_internal.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070043#include "mirror/class-inl.h"
Alex Lighta01de592016-11-15 10:43:06 -080044#include "mirror/class_ext.h"
Neil Fuller0e844392016-09-08 13:43:31 +010045#include "mirror/executable.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070046#include "mirror/object-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070047#include "mirror/object_array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070048#include "mirror/string.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000049#include "oat_file-inl.h"
Nicolas Geoffrayb041a402017-11-13 15:16:22 +000050#include "quicken_info.h"
Alex Lightd78ddec2017-04-18 15:20:38 -070051#include "runtime_callbacks.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070052#include "scoped_thread_state_change-inl.h"
Nicolas Geoffrayb02ba932017-07-13 15:53:54 +010053#include "vdex_file.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080054
55namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080056
Andreas Gampe46ee31b2016-12-14 10:11:49 -080057using android::base::StringPrintf;
58
Ian Rogers0177e532014-02-11 16:30:46 -080059extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
60 const char*);
Ian Rogers936b37f2014-02-14 00:52:24 -080061extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
62 const char*);
Jeff Hao5d917302013-02-27 17:57:33 -080063
Andreas Gampec6ea7d02017-02-01 16:46:28 -080064// Enforce that we he have the right index for runtime methods.
Andreas Gampee2abbc62017-09-15 11:59:26 -070065static_assert(ArtMethod::kRuntimeMethodDexMethodIndex == dex::kDexNoIndex,
Andreas Gampec6ea7d02017-02-01 16:46:28 -080066 "Wrong runtime-method dex method index");
67
Alex Light97e78032017-06-27 17:51:55 -070068ArtMethod* ArtMethod::GetCanonicalMethod(PointerSize pointer_size) {
69 if (LIKELY(!IsDefault())) {
70 return this;
71 } else {
Vladimir Markoc7aa87e2018-05-24 15:19:52 +010072 ObjPtr<mirror::Class> declaring_class = GetDeclaringClass();
Vladimir Markoba118822017-06-12 15:41:56 +010073 DCHECK(declaring_class->IsInterface());
Vladimir Marko813a8632018-11-29 16:17:01 +000074 ArtMethod* ret = declaring_class->FindInterfaceMethod(GetDexCache(),
Vladimir Markoba118822017-06-12 15:41:56 +010075 GetDexMethodIndex(),
76 pointer_size);
Alex Light97e78032017-06-27 17:51:55 -070077 DCHECK(ret != nullptr);
78 return ret;
79 }
80}
81
Alex Light4ba388a2017-01-27 10:26:49 -080082ArtMethod* ArtMethod::GetNonObsoleteMethod() {
Alex Light4ba388a2017-01-27 10:26:49 -080083 if (LIKELY(!IsObsolete())) {
84 return this;
Vladimir Marko813a8632018-11-29 16:17:01 +000085 }
86 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
87 if (IsDirect()) {
Alex Light4ba388a2017-01-27 10:26:49 -080088 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()];
89 } else {
90 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize);
91 }
92}
93
Mingyao Yange8fcd012017-01-20 10:43:30 -080094ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Vladimir Markoc945e0d2018-07-18 17:26:45 +010095 if (!IsAbstract()) {
Mingyao Yang063fc772016-08-02 11:02:54 -070096 // A non-abstract's single implementation is itself.
97 return this;
98 }
Mingyao Yange8fcd012017-01-20 10:43:30 -080099 return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size));
Mingyao Yang063fc772016-08-02 11:02:54 -0700100}
101
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700102ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
103 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700104 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +0100105 DCHECK(executable != nullptr);
106 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -0700107}
108
Alex Lighta01de592016-11-15 10:43:06 -0800109mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
110 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
111 DCHECK(IsObsolete());
112 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
113 CHECK(!ext.IsNull());
114 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
115 CHECK(!obsolete_methods.IsNull());
116 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
117 int32_t len = obsolete_methods->GetLength();
118 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -0800119 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
120 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -0800121 PointerSize pointer_size = kRuntimePointerSize;
122 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
123 for (int32_t i = 0; i < len; i++) {
124 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
125 return ext->GetObsoleteDexCaches()->Get(i);
126 }
127 }
128 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
129 UNREACHABLE();
130}
131
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000132uint16_t ArtMethod::FindObsoleteDexClassDefIndex() {
133 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
134 DCHECK(IsObsolete());
135 const DexFile* dex_file = GetDexFile();
136 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800137 const dex::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type);
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000138 CHECK(class_def != nullptr);
139 return dex_file->GetIndexForClassDef(*class_def);
140}
141
Alex Light9139e002015-10-09 15:59:48 -0700142void ArtMethod::ThrowInvocationTimeError() {
143 DCHECK(!IsInvokable());
144 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
145 // due to the way we select it.
146 if (IsDefaultConflicting()) {
147 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
148 } else {
149 DCHECK(IsAbstract());
150 ThrowAbstractMethodError(this);
151 }
152}
153
Ian Rogersef7d42f2014-01-06 12:55:46 -0800154InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800155 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000156 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000157 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000158 } else if (GetDeclaringClass()->IsInterface()) {
159 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800160 } else if (IsDirect()) {
161 return kDirect;
Orion Hodson43f0cdb2017-10-10 14:47:32 +0100162 } else if (IsPolymorphicSignature()) {
163 return kPolymorphic;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800164 } else {
165 return kVirtual;
166 }
167}
168
Brian Carlstromea46f952013-07-30 01:26:50 -0700169size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700170 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800171 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700172 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800173 char ch = shorty[i];
174 if (ch == 'D' || ch == 'J') {
175 num_registers += 2;
176 } else {
177 num_registers += 1;
178 }
179 }
180 return num_registers;
181}
182
Alex Light6c8467f2015-11-20 15:03:26 -0800183bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700184 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800185 const DexFile* dex_file = GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800186 const dex::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
Alex Light6c8467f2015-11-20 15:03:26 -0800187 if (GetDexCache() == other->GetDexCache()) {
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800188 const dex::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800189 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
190 }
Alex Light6c8467f2015-11-20 15:03:26 -0800191 const DexFile* dex_file2 = other->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800192 const dex::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Andreas Gampeb8bca302019-01-02 10:28:38 -0800193 if (!DexFile::StringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
Ian Rogersf2247512014-12-02 16:17:08 -0800194 return false; // Name mismatch.
195 }
196 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
197}
198
Andreas Gampe542451c2016-07-26 09:02:02 -0700199ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800200 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800201 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800202 }
Vladimir Markoc7aa87e2018-05-24 15:19:52 +0100203 ObjPtr<mirror::Class> declaring_class = GetDeclaringClass();
204 ObjPtr<mirror::Class> super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800205 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800206 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800207 // Did this method override a super class method? If so load the result from the super class'
208 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700209 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700210 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800211 } else {
212 // Method didn't override superclass method so search interfaces
213 if (IsProxyMethod()) {
Vladimir Marko07bfbac2017-07-06 14:55:02 +0100214 result = GetInterfaceMethodIfProxy(pointer_size);
215 DCHECK(result != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800216 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700217 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800218 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Vladimir Markoc7aa87e2018-05-24 15:19:52 +0100219 ObjPtr<mirror::Class> interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800220 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
221 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
222 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800223 break;
224 }
225 }
226 }
227 }
228 }
Alex Light6c8467f2015-11-20 15:03:26 -0800229 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800230 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
231 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800232 return result;
233}
234
Ian Rogerse0a02da2014-12-02 14:10:53 -0800235uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
236 uint32_t name_and_signature_idx) {
237 const DexFile* dexfile = GetDexFile();
238 const uint32_t dex_method_idx = GetDexMethodIndex();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800239 const dex::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
240 const dex::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800241 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
242 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
243 if (dexfile == &other_dexfile) {
244 return dex_method_idx;
245 }
246 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800247 const dex::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700248 if (other_type_id != nullptr) {
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800249 const dex::MethodId* other_mid = other_dexfile.FindMethodId(
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700250 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
251 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
252 if (other_mid != nullptr) {
253 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800254 }
255 }
Andreas Gampee2abbc62017-09-15 11:59:26 -0700256 return dex::kDexNoIndex;
Ian Rogerse0a02da2014-12-02 14:10:53 -0800257}
258
Mathieu Chartiere401d142015-04-22 13:56:20 -0700259uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700260 uint32_t dex_pc, bool* has_no_move_exception) {
Jeff Haoaa961912014-04-22 13:54:32 -0700261 // Set aside the exception while we resolve its type.
262 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700263 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000264 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700265 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700266 // Default to handler not found.
Andreas Gampee2abbc62017-09-15 11:59:26 -0700267 uint32_t found_dex_pc = dex::kDexNoIndex;
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700268 // Iterate over the catch handlers associated with dex_pc.
David Sehr0225f8e2018-01-31 08:52:24 +0000269 CodeItemDataAccessor accessor(DexInstructionData());
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800270 for (CatchHandlerIterator it(accessor, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800271 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800272 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800273 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700274 found_dex_pc = it.GetHandlerAddress();
275 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800276 }
277 // Does this catch exception type apply?
Vladimir Markob45528c2017-07-27 14:14:28 +0100278 ObjPtr<mirror::Class> iter_exception_type = ResolveClassFromTypeIndex(iter_type_idx);
Ian Rogers822266b2014-05-29 16:55:06 -0700279 if (UNLIKELY(iter_exception_type == nullptr)) {
280 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
281 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700282 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700283 self->ClearException();
284 // Delete any long jump context as this routine is called during a stack walk which will
285 // release its in use context at the end.
286 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800287 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700288 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700289 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700290 found_dex_pc = it.GetHandlerAddress();
291 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800292 }
293 }
Andreas Gampee2abbc62017-09-15 11:59:26 -0700294 if (found_dex_pc != dex::kDexNoIndex) {
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800295 const Instruction& first_catch_instr = accessor.InstructionAt(found_dex_pc);
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800296 *has_no_move_exception = (first_catch_instr.Opcode() != Instruction::MOVE_EXCEPTION);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700297 }
Jeff Haoaa961912014-04-22 13:54:32 -0700298 // Put the exception back.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800299 if (exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000300 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700301 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700302 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800303}
304
Brian Carlstromea46f952013-07-30 01:26:50 -0700305void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800306 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700307 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
308 ThrowStackOverflowError(self);
309 return;
310 }
311
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800312 if (kIsDebugBuild) {
313 self->AssertThreadSuspensionIsAllowable();
314 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700315 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800316 }
317
318 // Push a transition back into managed code onto the linked list in thread.
319 ManagedStack fragment;
320 self->PushManagedStackFragment(&fragment);
321
Ian Rogers62d6c772013-02-27 08:32:07 -0800322 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700323 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200324 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700325 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
326 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200327 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700328 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700329 art::interpreter::EnterInterpreterFromInvoke(
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700330 self, this, nullptr, args, result, /*stay_in_interpreter=*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700331 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700332 mirror::Object* receiver =
333 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700334 art::interpreter::EnterInterpreterFromInvoke(
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700335 self, this, receiver, args + 1, result, /*stay_in_interpreter=*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800336 }
337 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700338 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700339
340 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800341 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800342 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700343 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700344 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700345 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700346 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700347 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700348
Elliott Hughes956af0f2014-12-11 14:34:28 -0800349 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800350 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100351 CHECK(!runtime->UseJitCompilation());
Alex Lightdb01a092017-04-03 15:39:55 -0700352 const void* oat_quick_code =
353 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100354 ? nullptr
355 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100356 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700357 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700358 }
359
Elliott Hughes956af0f2014-12-11 14:34:28 -0800360 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800361 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800362 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800363 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800364 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000365 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200366 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700367 // exception was thrown to force the activations to be removed from the
368 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000369 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700370 }
371 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700372 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800373 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800374 }
375 } else {
David Sehr709b0702016-10-13 09:12:37 -0700376 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800377 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800378 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800379 }
380 }
381 }
382
383 // Pop transition.
384 self->PopManagedStackFragment(fragment);
385}
386
Vladimir Markob0a6aee2017-10-27 10:34:04 +0100387const void* ArtMethod::RegisterNative(const void* native_method) {
David Sehr709b0702016-10-13 09:12:37 -0700388 CHECK(IsNative()) << PrettyMethod();
David Sehr709b0702016-10-13 09:12:37 -0700389 CHECK(native_method != nullptr) << PrettyMethod();
Alex Lightd78ddec2017-04-18 15:20:38 -0700390 void* new_native_method = nullptr;
391 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this,
392 native_method,
393 /*out*/&new_native_method);
394 SetEntryPointFromJni(new_native_method);
395 return new_native_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800396}
397
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700398void ArtMethod::UnregisterNative() {
Vladimir Markob0a6aee2017-10-27 10:34:04 +0100399 CHECK(IsNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800400 // restore stub to lookup native pointer via dlsym
Alex Lightd78ddec2017-04-18 15:20:38 -0700401 SetEntryPointFromJni(GetJniDlsymLookupStub());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800402}
403
Alex Light9139e002015-10-09 15:59:48 -0700404bool ArtMethod::IsOverridableByDefaultMethod() {
405 return GetDeclaringClass()->IsInterface();
406}
407
Orion Hodsoneb4d19b2017-11-06 15:49:23 +0000408bool ArtMethod::IsPolymorphicSignature() {
409 // Methods with a polymorphic signature have constraints that they
410 // are native and varargs and belong to either MethodHandle or VarHandle.
411 if (!IsNative() || !IsVarargs()) {
412 return false;
413 }
Vladimir Markoc7aa87e2018-05-24 15:19:52 +0100414 ObjPtr<mirror::ObjectArray<mirror::Class>> class_roots =
415 Runtime::Current()->GetClassLinker()->GetClassRoots();
416 ObjPtr<mirror::Class> cls = GetDeclaringClass();
417 return (cls == GetClassRoot<mirror::MethodHandle>(class_roots) ||
418 cls == GetClassRoot<mirror::VarHandle>(class_roots));
Orion Hodsoneb4d19b2017-11-06 15:49:23 +0000419}
420
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100421static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
422 uint16_t class_def_idx,
423 uint32_t method_idx) {
Mathieu Chartier18e26872018-06-04 17:19:02 -0700424 ClassAccessor accessor(dex_file, class_def_idx);
Mathieu Chartier1f1cb9f2018-06-04 09:22:46 -0700425 uint32_t class_def_method_index = 0u;
426 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
427 if (method.GetIndex() == method_idx) {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100428 return class_def_method_index;
429 }
430 class_def_method_index++;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100431 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100432 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
433 UNREACHABLE();
434}
435
Alex Lighteee0bd42017-02-14 15:31:45 +0000436// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
437// method. This is extremely slow but we need it if we want to be able to have obsolete native
438// methods since we need this to find the size of its stack frames.
439//
440// NB We could (potentially) do this differently and rely on the way the transformation is applied
441// in order to use the entrypoint to find this information. However, for debugging reasons (most
442// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
443// directly from the dex file.
444static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
445 REQUIRES_SHARED(Locks::mutator_lock_) {
446 DCHECK(method->IsObsolete() && method->IsNative());
447 const DexFile* dex_file = method->GetDexFile();
448
449 // recreate the class_def_index from the descriptor.
450 std::string descriptor_storage;
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800451 const dex::TypeId* declaring_class_type_id =
Alex Lighteee0bd42017-02-14 15:31:45 +0000452 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
453 CHECK(declaring_class_type_id != nullptr);
454 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800455 const dex::ClassDef* declaring_class_type_def =
Alex Lighteee0bd42017-02-14 15:31:45 +0000456 dex_file->FindClassDef(declaring_class_type_index);
457 CHECK(declaring_class_type_def != nullptr);
458 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
459
460 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
461 declaring_class_def_index,
462 method->GetDexMethodIndex());
463
464 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
465 declaring_class_def_index,
466 found);
467 if (!(*found)) {
468 return OatFile::OatMethod::Invalid();
469 }
470 return oat_class.GetOatMethod(oat_method_index);
471}
472
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100473static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
474 PointerSize pointer_size,
475 bool* found)
476 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000477 if (UNLIKELY(method->IsObsolete())) {
478 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
479 // which we need to use the oat method to figure out how large the quick frame is.
480 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
481 << "order to allow stack walking. Other obsolete methods should "
482 << "never need to access this information.";
483 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
484 return FindOatMethodFromDexFileFor(method, found);
485 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100486 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
487 // method for direct methods (or virtual methods made direct).
Vladimir Markoc7aa87e2018-05-24 15:19:52 +0100488 ObjPtr<mirror::Class> declaring_class = method->GetDeclaringClass();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100489 size_t oat_method_index;
490 if (method->IsStatic() || method->IsDirect()) {
491 // Simple case where the oat method index was stashed at load time.
492 oat_method_index = method->GetMethodIndex();
493 } else {
494 // Compute the oat_method_index by search for its position in the declared virtual methods.
495 oat_method_index = declaring_class->NumDirectMethods();
496 bool found_virtual = false;
497 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
498 // Check method index instead of identity in case of duplicate method definitions.
499 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
500 found_virtual = true;
501 break;
502 }
503 oat_method_index++;
504 }
505 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700506 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100507 }
508 DCHECK_EQ(oat_method_index,
Vladimir Marko813a8632018-11-29 16:17:01 +0000509 GetOatMethodIndexFromMethodIndex(declaring_class->GetDexFile(),
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100510 method->GetDeclaringClass()->GetDexClassDefIndex(),
511 method->GetDexMethodIndex()));
Vladimir Marko813a8632018-11-29 16:17:01 +0000512 OatFile::OatClass oat_class = OatFile::FindOatClass(declaring_class->GetDexFile(),
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100513 declaring_class->GetDexClassDefIndex(),
514 found);
515 if (!(*found)) {
516 return OatFile::OatMethod::Invalid();
517 }
518 return oat_class.GetOatMethod(oat_method_index);
519}
520
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700521bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
522 auto* dex_cache = GetDexCache();
523 auto* dex_file = dex_cache->GetDexFile();
524 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
525 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800526 const dex::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700527 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
Andreas Gampefa4333d2017-02-14 11:10:34 -0800528 auto param_len = params != nullptr ? params->GetLength() : 0u;
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700529 if (param_len != count) {
530 return false;
531 }
532 auto* cl = Runtime::Current()->GetClassLinker();
533 for (size_t i = 0; i < count; ++i) {
Vladimir Marko28e012a2017-12-07 11:22:59 +0000534 dex::TypeIndex type_idx = proto_params->GetTypeItem(i).type_idx_;
535 ObjPtr<mirror::Class> type = cl->ResolveType(type_idx, this);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700536 if (type == nullptr) {
537 Thread::Current()->AssertPendingException();
538 return false;
539 }
540 if (type != params->GetWithoutChecks(i)) {
541 return false;
542 }
543 }
544 return true;
545}
546
Mathieu Chartier210531f2018-01-12 10:15:51 -0800547ArrayRef<const uint8_t> ArtMethod::GetQuickenedInfo() {
Vladimir Marko813a8632018-11-29 16:17:01 +0000548 const DexFile& dex_file = *GetDexFile();
Andreas Gampeb40d3612018-06-26 15:49:42 -0700549 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile();
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000550 if (oat_dex_file == nullptr || (oat_dex_file->GetOatFile() == nullptr)) {
Mathieu Chartier210531f2018-01-12 10:15:51 -0800551 return ArrayRef<const uint8_t>();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100552 }
Mathieu Chartier210531f2018-01-12 10:15:51 -0800553 return oat_dex_file->GetOatFile()->GetVdexFile()->GetQuickenedInfoOf(dex_file,
554 GetDexMethodIndex());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100555}
556
Nicolas Geoffrayb041a402017-11-13 15:16:22 +0000557uint16_t ArtMethod::GetIndexFromQuickening(uint32_t dex_pc) {
558 ArrayRef<const uint8_t> data = GetQuickenedInfo();
559 if (data.empty()) {
560 return DexFile::kDexNoIndex16;
561 }
562 QuickenInfoTable table(data);
563 uint32_t quicken_index = 0;
564 for (const DexInstructionPcPair& pair : DexInstructions()) {
565 if (pair.DexPc() == dex_pc) {
566 return table.GetData(quicken_index);
567 }
568 if (QuickenInfoTable::NeedsIndexForInstruction(&pair.Inst())) {
569 ++quicken_index;
570 }
571 }
572 return DexFile::kDexNoIndex16;
573}
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
David Brazdil85865692018-10-30 17:26:20 +0000688void ArtMethod::SetIntrinsic(uint32_t intrinsic) {
689 // Currently we only do intrinsics for static/final methods or methods of final
690 // classes. We don't set kHasSingleImplementation for those methods.
691 DCHECK(IsStatic() || IsFinal() || GetDeclaringClass()->IsFinal()) <<
692 "Potential conflict with kAccSingleImplementation";
693 static const int kAccFlagsShift = CTZ(kAccIntrinsicBits);
694 DCHECK_LE(intrinsic, kAccIntrinsicBits >> kAccFlagsShift);
695 uint32_t intrinsic_bits = intrinsic << kAccFlagsShift;
696 uint32_t new_value = (GetAccessFlags() & ~kAccIntrinsicBits) | kAccIntrinsic | intrinsic_bits;
697 if (kIsDebugBuild) {
698 uint32_t java_flags = (GetAccessFlags() & kAccJavaFlagsMask);
699 bool is_constructor = IsConstructor();
700 bool is_synchronized = IsSynchronized();
701 bool skip_access_checks = SkipAccessChecks();
702 bool is_fast_native = IsFastNative();
703 bool is_critical_native = IsCriticalNative();
704 bool is_copied = IsCopied();
705 bool is_miranda = IsMiranda();
706 bool is_default = IsDefault();
707 bool is_default_conflict = IsDefaultConflicting();
708 bool is_compilable = IsCompilable();
709 bool must_count_locks = MustCountLocks();
710 uint32_t hiddenapi_flags = hiddenapi::GetRuntimeFlags(this);
711 SetAccessFlags(new_value);
712 DCHECK_EQ(java_flags, (GetAccessFlags() & kAccJavaFlagsMask));
713 DCHECK_EQ(is_constructor, IsConstructor());
714 DCHECK_EQ(is_synchronized, IsSynchronized());
715 DCHECK_EQ(skip_access_checks, SkipAccessChecks());
716 DCHECK_EQ(is_fast_native, IsFastNative());
717 DCHECK_EQ(is_critical_native, IsCriticalNative());
718 DCHECK_EQ(is_copied, IsCopied());
719 DCHECK_EQ(is_miranda, IsMiranda());
720 DCHECK_EQ(is_default, IsDefault());
721 DCHECK_EQ(is_default_conflict, IsDefaultConflicting());
722 DCHECK_EQ(is_compilable, IsCompilable());
723 DCHECK_EQ(must_count_locks, MustCountLocks());
724 // Only DCHECK that we have preserved the hidden API access flags if the
725 // original method was not on the whitelist. This is because the core image
726 // does not have the access flags set (b/77733081). It is fine to hard-code
727 // these because (a) warnings on greylist do not change semantics, and
728 // (b) only VarHandle intrinsics are blacklisted at the moment and they
729 // should not be used outside tests with disabled API checks.
David Brazdil90faceb2018-12-14 14:36:15 +0000730 if ((hiddenapi_flags & kAccHiddenapiBits) != kAccPublicApi) {
David Brazdil85865692018-10-30 17:26:20 +0000731 DCHECK_EQ(hiddenapi_flags, hiddenapi::GetRuntimeFlags(this)) << PrettyMethod();
732 }
733 } else {
734 SetAccessFlags(new_value);
735 }
736}
737
David Brazdil904e75a2018-05-15 13:45:08 +0100738void ArtMethod::SetNotIntrinsic() {
739 if (!IsIntrinsic()) {
740 return;
741 }
742
David Brazdil85865692018-10-30 17:26:20 +0000743 // Read the existing hiddenapi flags.
744 uint32_t hiddenapi_runtime_flags = hiddenapi::GetRuntimeFlags(this);
David Brazdil904e75a2018-05-15 13:45:08 +0100745
746 // Clear intrinsic-related access flags.
747 ClearAccessFlags(kAccIntrinsic | kAccIntrinsicBits);
748
749 // Re-apply hidden API access flags now that the method is not an intrinsic.
David Brazdil85865692018-10-30 17:26:20 +0000750 SetAccessFlags(GetAccessFlags() | hiddenapi_runtime_flags);
751 DCHECK_EQ(hiddenapi_runtime_flags, hiddenapi::GetRuntimeFlags(this));
David Brazdil904e75a2018-05-15 13:45:08 +0100752}
753
Andreas Gampe542451c2016-07-26 09:02:02 -0700754void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000755 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
756 Size(image_pointer_size));
757 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
758
759 // If the entry point of the method we are copying from is from JIT code, we just
Vladimir Marko2196c652017-11-30 16:16:07 +0000760 // put the entry point of the new method to interpreter or GenericJNI. We could set
761 // the entry point to the JIT code, but this would require taking the JIT code cache
762 // lock to notify it, which we do not want at this level.
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000763 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100764 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000765 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
Vladimir Marko2196c652017-11-30 16:16:07 +0000766 SetEntryPointFromQuickCompiledCodePtrSize(
767 src->IsNative() ? GetQuickGenericJniStub() : GetQuickToInterpreterBridge(),
768 image_pointer_size);
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000769 }
770 }
771 // Clear the profiling info for the same reasons as the JIT code.
772 if (!src->IsNative()) {
773 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
774 }
775 // Clear hotness to let the JIT properly decide when to compile this method.
776 hotness_count_ = 0;
777}
778
Andreas Gampe542451c2016-07-26 09:02:02 -0700779bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700780 // Hijack this function to get access to PtrSizedFieldsOffset.
781 //
782 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
783 // 64-bit builds.
784 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700785 static_assert(
786 (sizeof(void*) != 4) ||
787 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
788 "Unexpected 32-bit class layout.");
789 static_assert(
790 (sizeof(void*) != 8) ||
791 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
792 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700793
Andreas Gampe75f08852016-07-19 08:06:07 -0700794 Runtime* runtime = Runtime::Current();
795 if (runtime == nullptr) {
796 return true;
797 }
798 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
799}
800
David Sehr709b0702016-10-13 09:12:37 -0700801std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
802 if (m == nullptr) {
803 return "null";
804 }
805 return m->PrettyMethod(with_signature);
806}
807
808std::string ArtMethod::PrettyMethod(bool with_signature) {
Vladimir Markob8a55f82017-09-21 16:21:43 +0100809 if (UNLIKELY(IsRuntimeMethod())) {
810 std::string result = GetDeclaringClassDescriptor();
811 result += '.';
812 result += GetName();
813 // Do not add "<no signature>" even if `with_signature` is true.
814 return result;
David Sehr709b0702016-10-13 09:12:37 -0700815 }
Vladimir Markob8a55f82017-09-21 16:21:43 +0100816 ArtMethod* m =
817 GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
Alex Lightcbc9dda2018-12-07 15:38:29 -0800818 std::string res(m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature));
819 if (with_signature && m->IsObsolete()) {
820 return "<OBSOLETE> " + res;
821 } else {
822 return res;
823 }
David Sehr709b0702016-10-13 09:12:37 -0700824}
825
826std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800827 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700828}
829
830std::string ArtMethod::JniLongName() {
831 std::string long_name;
832 long_name += JniShortName();
833 long_name += "__";
834
835 std::string signature(GetSignature().ToString());
836 signature.erase(0, 1);
837 signature.erase(signature.begin() + signature.find(')'), signature.end());
838
839 long_name += MangleForJni(signature);
840
841 return long_name;
842}
843
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800844// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
845// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
846template <ReadBarrierOption kReadBarrierOption>
847ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method)
848 NO_THREAD_SAFETY_ANALYSIS {
849 CHECK(method->IsRuntimeMethod() ||
850 method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
851 method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
852}
853
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800854} // namespace art