blob: 32946ef0b46934f2a32f662d15bdfff585086b65 [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"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070028#include "dex_file-inl.h"
David Sehr9323e6e2016-09-13 08:58:35 -070029#include "dex_file_annotations.h"
Ian Rogersc449aa82013-07-29 14:35:46 -070030#include "dex_instruction.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070031#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070032#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080034#include "jit/jit.h"
35#include "jit/jit_code_cache.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010036#include "jit/profiling_info.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "jni_internal.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070038#include "mirror/class-inl.h"
Alex Lighta01de592016-11-15 10:43:06 -080039#include "mirror/class_ext.h"
Neil Fuller0e844392016-09-08 13:43:31 +010040#include "mirror/executable.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070041#include "mirror/object_array-inl.h"
42#include "mirror/object-inl.h"
43#include "mirror/string.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000044#include "oat_file-inl.h"
Alex Lightd78ddec2017-04-18 15:20:38 -070045#include "runtime_callbacks.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070046#include "scoped_thread_state_change-inl.h"
Ian Rogers62f05122014-03-21 11:21:29 -070047#include "well_known_classes.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080048
49namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050
Andreas Gampe46ee31b2016-12-14 10:11:49 -080051using android::base::StringPrintf;
52
Ian Rogers0177e532014-02-11 16:30:46 -080053extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
54 const char*);
Ian Rogers936b37f2014-02-14 00:52:24 -080055extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
56 const char*);
Jeff Hao5d917302013-02-27 17:57:33 -080057
Andreas Gampec6ea7d02017-02-01 16:46:28 -080058// Enforce that we he have the right index for runtime methods.
59static_assert(ArtMethod::kRuntimeMethodDexMethodIndex == DexFile::kDexNoIndex,
60 "Wrong runtime-method dex method index");
61
Alex Light4ba388a2017-01-27 10:26:49 -080062ArtMethod* ArtMethod::GetNonObsoleteMethod() {
63 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
64 if (LIKELY(!IsObsolete())) {
65 return this;
66 } else if (IsDirect()) {
67 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()];
68 } else {
69 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize);
70 }
71}
72
Mingyao Yange8fcd012017-01-20 10:43:30 -080073ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Mingyao Yang063fc772016-08-02 11:02:54 -070074 if (!IsAbstract()) {
75 // A non-abstract's single implementation is itself.
76 return this;
77 }
Mingyao Yange8fcd012017-01-20 10:43:30 -080078 return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size));
Mingyao Yang063fc772016-08-02 11:02:54 -070079}
80
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070081ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
82 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -070083 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +010084 DCHECK(executable != nullptr);
85 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -070086}
87
Alex Lighta01de592016-11-15 10:43:06 -080088mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
89 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
90 DCHECK(IsObsolete());
91 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
92 CHECK(!ext.IsNull());
93 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
94 CHECK(!obsolete_methods.IsNull());
95 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
96 int32_t len = obsolete_methods->GetLength();
97 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -080098 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
99 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -0800100 PointerSize pointer_size = kRuntimePointerSize;
101 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
102 for (int32_t i = 0; i < len; i++) {
103 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
104 return ext->GetObsoleteDexCaches()->Get(i);
105 }
106 }
107 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
108 UNREACHABLE();
109}
110
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000111uint16_t ArtMethod::FindObsoleteDexClassDefIndex() {
112 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
113 DCHECK(IsObsolete());
114 const DexFile* dex_file = GetDexFile();
115 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
116 const DexFile::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type);
117 CHECK(class_def != nullptr);
118 return dex_file->GetIndexForClassDef(*class_def);
119}
120
Ian Rogers6b14d552014-10-28 21:50:58 -0700121mirror::String* ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700122 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -0700123 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700124 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
125 auto* dex_file = dex_cache->GetDexFile();
126 uint32_t dex_method_idx = GetDexMethodIndex();
127 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Ian Rogers6b14d552014-10-28 21:50:58 -0700128 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
129 dex_cache);
130}
131
Alex Light9139e002015-10-09 15:59:48 -0700132void ArtMethod::ThrowInvocationTimeError() {
133 DCHECK(!IsInvokable());
134 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
135 // due to the way we select it.
136 if (IsDefaultConflicting()) {
137 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
138 } else {
139 DCHECK(IsAbstract());
140 ThrowAbstractMethodError(this);
141 }
142}
143
Ian Rogersef7d42f2014-01-06 12:55:46 -0800144InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800145 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000146 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000147 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000148 } else if (GetDeclaringClass()->IsInterface()) {
149 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800150 } else if (IsDirect()) {
151 return kDirect;
152 } else {
153 return kVirtual;
154 }
155}
156
Brian Carlstromea46f952013-07-30 01:26:50 -0700157size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700158 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800159 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700160 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800161 char ch = shorty[i];
162 if (ch == 'D' || ch == 'J') {
163 num_registers += 2;
164 } else {
165 num_registers += 1;
166 }
167 }
168 return num_registers;
169}
170
Alex Light6c8467f2015-11-20 15:03:26 -0800171bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700172 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800173 const DexFile* dex_file = GetDexFile();
174 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
175 if (GetDexCache() == other->GetDexCache()) {
176 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800177 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
178 }
Alex Light6c8467f2015-11-20 15:03:26 -0800179 const DexFile* dex_file2 = other->GetDexFile();
180 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800181 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
182 return false; // Name mismatch.
183 }
184 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
185}
186
Andreas Gampe542451c2016-07-26 09:02:02 -0700187ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800188 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800189 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800190 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700191 mirror::Class* declaring_class = GetDeclaringClass();
192 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800193 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800194 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800195 // Did this method override a super class method? If so load the result from the super class'
196 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700197 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700198 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800199 } else {
200 // Method didn't override superclass method so search interfaces
201 if (IsProxyMethod()) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100202 result = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
203 GetDexMethodIndex(),
204 pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800205 CHECK_EQ(result,
206 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
207 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700208 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800209 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700210 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800211 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
212 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
213 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800214 break;
215 }
216 }
217 }
218 }
219 }
Alex Light6c8467f2015-11-20 15:03:26 -0800220 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800221 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
222 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800223 return result;
224}
225
Ian Rogerse0a02da2014-12-02 14:10:53 -0800226uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
227 uint32_t name_and_signature_idx) {
228 const DexFile* dexfile = GetDexFile();
229 const uint32_t dex_method_idx = GetDexMethodIndex();
230 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
231 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
232 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
233 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
234 if (dexfile == &other_dexfile) {
235 return dex_method_idx;
236 }
237 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700238 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
239 if (other_type_id != nullptr) {
240 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
241 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
242 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
243 if (other_mid != nullptr) {
244 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800245 }
246 }
247 return DexFile::kDexNoIndex;
248}
249
Mathieu Chartiere401d142015-04-22 13:56:20 -0700250uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700251 uint32_t dex_pc, bool* has_no_move_exception) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700252 const DexFile::CodeItem* code_item = GetCodeItem();
Jeff Haoaa961912014-04-22 13:54:32 -0700253 // Set aside the exception while we resolve its type.
254 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700255 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000256 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700257 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700258 // Default to handler not found.
259 uint32_t found_dex_pc = DexFile::kDexNoIndex;
260 // Iterate over the catch handlers associated with dex_pc.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800261 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800262 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800263 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800264 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700265 found_dex_pc = it.GetHandlerAddress();
266 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800267 }
268 // Does this catch exception type apply?
Vladimir Marko942fd312017-01-16 20:52:19 +0000269 mirror::Class* iter_exception_type = GetClassFromTypeIndex(iter_type_idx, true /* resolve */);
Ian Rogers822266b2014-05-29 16:55:06 -0700270 if (UNLIKELY(iter_exception_type == nullptr)) {
271 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
272 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700273 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700274 self->ClearException();
275 // Delete any long jump context as this routine is called during a stack walk which will
276 // release its in use context at the end.
277 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800278 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700279 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700280 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700281 found_dex_pc = it.GetHandlerAddress();
282 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800283 }
284 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700285 if (found_dex_pc != DexFile::kDexNoIndex) {
286 const Instruction* first_catch_instr =
Jeff Haoaa961912014-04-22 13:54:32 -0700287 Instruction::At(&code_item->insns_[found_dex_pc]);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700288 *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION);
289 }
Jeff Haoaa961912014-04-22 13:54:32 -0700290 // Put the exception back.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800291 if (exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000292 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700293 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700294 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800295}
296
Brian Carlstromea46f952013-07-30 01:26:50 -0700297void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800298 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700299 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
300 ThrowStackOverflowError(self);
301 return;
302 }
303
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800304 if (kIsDebugBuild) {
305 self->AssertThreadSuspensionIsAllowable();
306 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700307 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800308 }
309
310 // Push a transition back into managed code onto the linked list in thread.
311 ManagedStack fragment;
312 self->PushManagedStackFragment(&fragment);
313
Ian Rogers62d6c772013-02-27 08:32:07 -0800314 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700315 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200316 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700317 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
318 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200319 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700320 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700321 art::interpreter::EnterInterpreterFromInvoke(
322 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700323 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700324 mirror::Object* receiver =
325 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700326 art::interpreter::EnterInterpreterFromInvoke(
327 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800328 }
329 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700330 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700331
332 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800333 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800334 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700335 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700336 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700337 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700338 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700339 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700340
Elliott Hughes956af0f2014-12-11 14:34:28 -0800341 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800342 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100343 CHECK(!runtime->UseJitCompilation());
Alex Lightdb01a092017-04-03 15:39:55 -0700344 const void* oat_quick_code =
345 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100346 ? nullptr
347 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100348 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700349 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700350 }
351
Elliott Hughes956af0f2014-12-11 14:34:28 -0800352 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800353 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800354 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800355 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800356 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000357 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200358 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700359 // exception was thrown to force the activations to be removed from the
360 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000361 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700362 }
363 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700364 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800365 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800366 }
367 } else {
David Sehr709b0702016-10-13 09:12:37 -0700368 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800369 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800370 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800371 }
372 }
373 }
374
375 // Pop transition.
376 self->PopManagedStackFragment(fragment);
377}
378
Alex Lightd78ddec2017-04-18 15:20:38 -0700379const void* ArtMethod::RegisterNative(const void* native_method, bool is_fast) {
David Sehr709b0702016-10-13 09:12:37 -0700380 CHECK(IsNative()) << PrettyMethod();
381 CHECK(!IsFastNative()) << PrettyMethod();
382 CHECK(native_method != nullptr) << PrettyMethod();
Ian Rogers987560f2014-04-22 11:42:59 -0700383 if (is_fast) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700384 AddAccessFlags(kAccFastNative);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800385 }
Alex Lightd78ddec2017-04-18 15:20:38 -0700386 void* new_native_method = nullptr;
387 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this,
388 native_method,
389 /*out*/&new_native_method);
390 SetEntryPointFromJni(new_native_method);
391 return new_native_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800392}
393
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700394void ArtMethod::UnregisterNative() {
David Sehr709b0702016-10-13 09:12:37 -0700395 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800396 // restore stub to lookup native pointer via dlsym
Alex Lightd78ddec2017-04-18 15:20:38 -0700397 SetEntryPointFromJni(GetJniDlsymLookupStub());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800398}
399
Alex Light9139e002015-10-09 15:59:48 -0700400bool ArtMethod::IsOverridableByDefaultMethod() {
401 return GetDeclaringClass()->IsInterface();
402}
403
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700404bool ArtMethod::IsAnnotatedWithFastNative() {
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700405 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_FastNative,
406 DexFile::kDexVisibilityBuild);
407}
408
409bool ArtMethod::IsAnnotatedWithCriticalNative() {
410 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_CriticalNative,
411 DexFile::kDexVisibilityBuild);
412}
413
414bool ArtMethod::IsAnnotatedWith(jclass klass, uint32_t visibility) {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700415 Thread* self = Thread::Current();
416 ScopedObjectAccess soa(self);
417 StackHandleScope<1> shs(self);
418
Mathieu Chartier0795f232016-09-27 18:43:30 -0700419 ObjPtr<mirror::Class> annotation = soa.Decode<mirror::Class>(klass);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700420 DCHECK(annotation->IsAnnotation());
421 Handle<mirror::Class> annotation_handle(shs.NewHandle(annotation));
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700422
423 // Note: Resolves any method annotations' classes as a side-effect.
424 // -- This seems allowed by the spec since it says we can preload any classes
425 // referenced by another classes's constant pool table.
David Sehr9323e6e2016-09-13 08:58:35 -0700426 return annotations::IsMethodAnnotationPresent(this, annotation_handle, visibility);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700427}
428
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100429static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
430 uint16_t class_def_idx,
431 uint32_t method_idx) {
432 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
433 const uint8_t* class_data = dex_file.GetClassData(class_def);
434 CHECK(class_data != nullptr);
435 ClassDataItemIterator it(dex_file, class_data);
Mathieu Chartiere17cf242017-06-19 11:05:51 -0700436 it.SkipAllFields();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100437 // Process methods
438 size_t class_def_method_index = 0;
439 while (it.HasNextDirectMethod()) {
440 if (it.GetMemberIndex() == method_idx) {
441 return class_def_method_index;
442 }
443 class_def_method_index++;
444 it.Next();
445 }
446 while (it.HasNextVirtualMethod()) {
447 if (it.GetMemberIndex() == method_idx) {
448 return class_def_method_index;
449 }
450 class_def_method_index++;
451 it.Next();
452 }
453 DCHECK(!it.HasNext());
454 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
455 UNREACHABLE();
456}
457
Alex Lighteee0bd42017-02-14 15:31:45 +0000458// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
459// method. This is extremely slow but we need it if we want to be able to have obsolete native
460// methods since we need this to find the size of its stack frames.
461//
462// NB We could (potentially) do this differently and rely on the way the transformation is applied
463// in order to use the entrypoint to find this information. However, for debugging reasons (most
464// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
465// directly from the dex file.
466static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
467 REQUIRES_SHARED(Locks::mutator_lock_) {
468 DCHECK(method->IsObsolete() && method->IsNative());
469 const DexFile* dex_file = method->GetDexFile();
470
471 // recreate the class_def_index from the descriptor.
472 std::string descriptor_storage;
473 const DexFile::TypeId* declaring_class_type_id =
474 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
475 CHECK(declaring_class_type_id != nullptr);
476 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
477 const DexFile::ClassDef* declaring_class_type_def =
478 dex_file->FindClassDef(declaring_class_type_index);
479 CHECK(declaring_class_type_def != nullptr);
480 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
481
482 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
483 declaring_class_def_index,
484 method->GetDexMethodIndex());
485
486 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
487 declaring_class_def_index,
488 found);
489 if (!(*found)) {
490 return OatFile::OatMethod::Invalid();
491 }
492 return oat_class.GetOatMethod(oat_method_index);
493}
494
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100495static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
496 PointerSize pointer_size,
497 bool* found)
498 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000499 if (UNLIKELY(method->IsObsolete())) {
500 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
501 // which we need to use the oat method to figure out how large the quick frame is.
502 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
503 << "order to allow stack walking. Other obsolete methods should "
504 << "never need to access this information.";
505 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
506 return FindOatMethodFromDexFileFor(method, found);
507 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100508 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
509 // method for direct methods (or virtual methods made direct).
510 mirror::Class* declaring_class = method->GetDeclaringClass();
511 size_t oat_method_index;
512 if (method->IsStatic() || method->IsDirect()) {
513 // Simple case where the oat method index was stashed at load time.
514 oat_method_index = method->GetMethodIndex();
515 } else {
516 // Compute the oat_method_index by search for its position in the declared virtual methods.
517 oat_method_index = declaring_class->NumDirectMethods();
518 bool found_virtual = false;
519 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
520 // Check method index instead of identity in case of duplicate method definitions.
521 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
522 found_virtual = true;
523 break;
524 }
525 oat_method_index++;
526 }
527 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700528 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100529 }
530 DCHECK_EQ(oat_method_index,
531 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
532 method->GetDeclaringClass()->GetDexClassDefIndex(),
533 method->GetDexMethodIndex()));
534 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
535 declaring_class->GetDexClassDefIndex(),
536 found);
537 if (!(*found)) {
538 return OatFile::OatMethod::Invalid();
539 }
540 return oat_class.GetOatMethod(oat_method_index);
541}
542
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700543bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
544 auto* dex_cache = GetDexCache();
545 auto* dex_file = dex_cache->GetDexFile();
546 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
547 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
548 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
549 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
Andreas Gampefa4333d2017-02-14 11:10:34 -0800550 auto param_len = params != nullptr ? params->GetLength() : 0u;
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700551 if (param_len != count) {
552 return false;
553 }
554 auto* cl = Runtime::Current()->GetClassLinker();
555 for (size_t i = 0; i < count; ++i) {
556 auto type_idx = proto_params->GetTypeItem(i).type_idx_;
557 auto* type = cl->ResolveType(type_idx, this);
558 if (type == nullptr) {
559 Thread::Current()->AssertPendingException();
560 return false;
561 }
562 if (type != params->GetWithoutChecks(i)) {
563 return false;
564 }
565 }
566 return true;
567}
568
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100569const uint8_t* ArtMethod::GetQuickenedInfo(PointerSize pointer_size) {
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100570 bool found = false;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100571 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100572 if (!found || (oat_method.GetQuickCode() != nullptr)) {
573 return nullptr;
574 }
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100575 if (kIsVdexEnabled) {
576 const OatQuickMethodHeader* header = oat_method.GetOatQuickMethodHeader();
577 // OatMethod without a header: no quickening table.
578 if (header == nullptr) {
579 return nullptr;
580 }
581 // The table is in the .vdex file.
582 const OatFile::OatDexFile* oat_dex_file = GetDexCache()->GetDexFile()->GetOatDexFile();
Mathieu Chartier1b868492016-11-16 16:22:37 -0800583 const OatFile* oat_file = oat_dex_file->GetOatFile();
584 if (oat_file == nullptr) {
585 return nullptr;
586 }
Mingyao Yang063fc772016-08-02 11:02:54 -0700587 return oat_file->DexBegin() + header->GetVmapTableOffset();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100588 } else {
589 return oat_method.GetVmapTable();
590 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100591}
592
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100593const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000594 // Our callers should make sure they don't pass the instrumentation exit pc,
595 // as this method does not look at the side instrumentation stack.
596 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
597
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000598 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100599 return nullptr;
600 }
601
602 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100603 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700604 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100605 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100606
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100607 if (class_linker->IsQuickGenericJniStub(existing_entry_point)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100608 // The generic JNI does not have any method header.
609 return nullptr;
610 }
611
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000612 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
613 DCHECK(IsProxyMethod() && !IsConstructor());
614 // The proxy entry point does not have any method header.
615 return nullptr;
616 }
617
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100618 // Check whether the current entry point contains this pc.
619 if (!class_linker->IsQuickResolutionStub(existing_entry_point) &&
620 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
621 OatQuickMethodHeader* method_header =
622 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100623
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100624 if (method_header->Contains(pc)) {
625 return method_header;
626 }
627 }
628
629 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100630 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100631 if (jit != nullptr) {
632 jit::JitCodeCache* code_cache = jit->GetCodeCache();
633 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
634 if (method_header != nullptr) {
635 DCHECK(method_header->Contains(pc));
636 return method_header;
637 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000638 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700639 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000640 << ", pc=" << std::hex << pc
641 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
642 << ", copy=" << std::boolalpha << IsCopied()
643 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100644 }
645 }
646
647 // The code has to be in an oat file.
648 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100649 OatFile::OatMethod oat_method =
650 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100651 if (!found) {
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000652 if (class_linker->IsQuickResolutionStub(existing_entry_point)) {
653 // We are running the generic jni stub, but the entry point of the method has not
654 // been updated yet.
Nicolas Geoffray703c2822015-10-30 12:23:16 +0000655 DCHECK_EQ(pc, 0u) << "Should be a downcall";
656 DCHECK(IsNative());
657 return nullptr;
658 }
659 if (existing_entry_point == GetQuickInstrumentationEntryPoint()) {
660 // We are running the generic jni stub, but the method is being instrumented.
Alex Lightb7edcda2017-04-27 13:20:31 -0700661 // NB We would normally expect the pc to be zero but we can have non-zero pc's if
662 // instrumentation is installed or removed during the call which is using the generic jni
663 // trampoline.
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000664 DCHECK(IsNative());
665 return nullptr;
666 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100667 // Only for unit tests.
668 // TODO(ngeoffray): Update these tests to pass the right pc?
669 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
670 }
671 const void* oat_entry_point = oat_method.GetQuickCode();
672 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700673 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100674 return nullptr;
675 }
676
677 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
678 if (pc == 0) {
679 // This is a downcall, it can only happen for a native method.
680 DCHECK(IsNative());
681 return method_header;
682 }
683
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100684 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700685 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100686 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700687 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100688 return method_header;
689}
690
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100691const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
692 bool found;
693 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
694 if (found) {
695 return oat_method.GetQuickCode();
696 }
697 return nullptr;
698}
699
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000700bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100701 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
702 return false;
703 }
704
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000705 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100706 Runtime* runtime = Runtime::Current();
707 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000708 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
709 return true;
710 }
711
712 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100713 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000714}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000715
Andreas Gampe542451c2016-07-26 09:02:02 -0700716void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000717 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
718 Size(image_pointer_size));
719 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
720
721 // If the entry point of the method we are copying from is from JIT code, we just
722 // put the entry point of the new method to interpreter. We could set the entry point
723 // to the JIT code, but this would require taking the JIT code cache lock to notify
724 // it, which we do not want at this level.
725 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100726 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000727 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
728 SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(), image_pointer_size);
729 }
730 }
731 // Clear the profiling info for the same reasons as the JIT code.
732 if (!src->IsNative()) {
733 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
734 }
735 // Clear hotness to let the JIT properly decide when to compile this method.
736 hotness_count_ = 0;
737}
738
Andreas Gampe542451c2016-07-26 09:02:02 -0700739bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700740 // Hijack this function to get access to PtrSizedFieldsOffset.
741 //
742 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
743 // 64-bit builds.
744 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700745 static_assert(
746 (sizeof(void*) != 4) ||
747 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
748 "Unexpected 32-bit class layout.");
749 static_assert(
750 (sizeof(void*) != 8) ||
751 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
752 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700753
Andreas Gampe75f08852016-07-19 08:06:07 -0700754 Runtime* runtime = Runtime::Current();
755 if (runtime == nullptr) {
756 return true;
757 }
758 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
759}
760
David Sehr709b0702016-10-13 09:12:37 -0700761std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
762 if (m == nullptr) {
763 return "null";
764 }
765 return m->PrettyMethod(with_signature);
766}
767
768std::string ArtMethod::PrettyMethod(bool with_signature) {
769 ArtMethod* m = this;
770 if (!m->IsRuntimeMethod()) {
771 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
772 }
773 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
774 result += '.';
775 result += m->GetName();
776 if (UNLIKELY(m->IsFastNative())) {
777 result += "!";
778 }
779 if (with_signature) {
780 const Signature signature = m->GetSignature();
781 std::string sig_as_string(signature.ToString());
782 if (signature == Signature::NoSignature()) {
783 return result + sig_as_string;
784 }
785 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
786 PrettyArguments(sig_as_string.c_str());
787 }
788 return result;
789}
790
791std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800792 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700793}
794
795std::string ArtMethod::JniLongName() {
796 std::string long_name;
797 long_name += JniShortName();
798 long_name += "__";
799
800 std::string signature(GetSignature().ToString());
801 signature.erase(0, 1);
802 signature.erase(signature.begin() + signature.find(')'), signature.end());
803
804 long_name += MangleForJni(signature);
805
806 return long_name;
807}
808
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800809// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
810// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
811template <ReadBarrierOption kReadBarrierOption>
812ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method)
813 NO_THREAD_SAFETY_ANALYSIS {
814 CHECK(method->IsRuntimeMethod() ||
815 method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
816 method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
817}
818
819template <ReadBarrierOption kReadBarrierOption> void ArtMethod::GetAccessFlagsDCheck() {
820 if (kCheckDeclaringClassState) {
821 Thread* self = Thread::Current();
822 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
823 if (self->IsThreadSuspensionAllowable()) {
824 ScopedObjectAccess soa(self);
825 CHECK(IsRuntimeMethod() ||
826 GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
827 GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
828 }
829 } else {
830 // We cannot use SOA in this case. We might be holding the lock, but may not be in the
831 // runnable state (e.g., during GC).
832 Locks::mutator_lock_->AssertSharedHeld(self);
833 DoGetAccessFlagsHelper<kReadBarrierOption>(this);
834 }
835 }
836}
837template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithReadBarrier>();
838template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithoutReadBarrier>();
839
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800840} // namespace art