blob: ac433dd403793c56d84067b434fddfefaeb18910 [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 Gampeaea05c12017-05-19 08:45:02 -070058DEFINE_RUNTIME_DEBUG_FLAG(ArtMethod, kCheckDeclaringClassState);
59
Andreas Gampec6ea7d02017-02-01 16:46:28 -080060// Enforce that we he have the right index for runtime methods.
61static_assert(ArtMethod::kRuntimeMethodDexMethodIndex == DexFile::kDexNoIndex,
62 "Wrong runtime-method dex method index");
63
Alex Light4ba388a2017-01-27 10:26:49 -080064ArtMethod* ArtMethod::GetNonObsoleteMethod() {
65 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
66 if (LIKELY(!IsObsolete())) {
67 return this;
68 } else if (IsDirect()) {
69 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()];
70 } else {
71 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize);
72 }
73}
74
Mingyao Yange8fcd012017-01-20 10:43:30 -080075ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Mingyao Yang063fc772016-08-02 11:02:54 -070076 if (!IsAbstract()) {
77 // A non-abstract's single implementation is itself.
78 return this;
79 }
Mingyao Yange8fcd012017-01-20 10:43:30 -080080 return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size));
Mingyao Yang063fc772016-08-02 11:02:54 -070081}
82
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070083ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
84 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -070085 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +010086 DCHECK(executable != nullptr);
87 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -070088}
89
Alex Lighta01de592016-11-15 10:43:06 -080090mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
91 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
92 DCHECK(IsObsolete());
93 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
94 CHECK(!ext.IsNull());
95 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
96 CHECK(!obsolete_methods.IsNull());
97 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
98 int32_t len = obsolete_methods->GetLength();
99 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -0800100 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
101 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -0800102 PointerSize pointer_size = kRuntimePointerSize;
103 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
104 for (int32_t i = 0; i < len; i++) {
105 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
106 return ext->GetObsoleteDexCaches()->Get(i);
107 }
108 }
109 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
110 UNREACHABLE();
111}
112
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000113uint16_t ArtMethod::FindObsoleteDexClassDefIndex() {
114 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
115 DCHECK(IsObsolete());
116 const DexFile* dex_file = GetDexFile();
117 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
118 const DexFile::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type);
119 CHECK(class_def != nullptr);
120 return dex_file->GetIndexForClassDef(*class_def);
121}
122
Ian Rogers6b14d552014-10-28 21:50:58 -0700123mirror::String* ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700124 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -0700125 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700126 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
127 auto* dex_file = dex_cache->GetDexFile();
128 uint32_t dex_method_idx = GetDexMethodIndex();
129 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Ian Rogers6b14d552014-10-28 21:50:58 -0700130 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
131 dex_cache);
132}
133
Alex Light9139e002015-10-09 15:59:48 -0700134void ArtMethod::ThrowInvocationTimeError() {
135 DCHECK(!IsInvokable());
136 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
137 // due to the way we select it.
138 if (IsDefaultConflicting()) {
139 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
140 } else {
141 DCHECK(IsAbstract());
142 ThrowAbstractMethodError(this);
143 }
144}
145
Ian Rogersef7d42f2014-01-06 12:55:46 -0800146InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800147 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000148 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000149 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000150 } else if (GetDeclaringClass()->IsInterface()) {
151 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800152 } else if (IsDirect()) {
153 return kDirect;
154 } else {
155 return kVirtual;
156 }
157}
158
Brian Carlstromea46f952013-07-30 01:26:50 -0700159size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700160 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800161 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700162 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800163 char ch = shorty[i];
164 if (ch == 'D' || ch == 'J') {
165 num_registers += 2;
166 } else {
167 num_registers += 1;
168 }
169 }
170 return num_registers;
171}
172
Alex Light6c8467f2015-11-20 15:03:26 -0800173bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700174 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800175 const DexFile* dex_file = GetDexFile();
176 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
177 if (GetDexCache() == other->GetDexCache()) {
178 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800179 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
180 }
Alex Light6c8467f2015-11-20 15:03:26 -0800181 const DexFile* dex_file2 = other->GetDexFile();
182 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800183 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
184 return false; // Name mismatch.
185 }
186 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
187}
188
Andreas Gampe542451c2016-07-26 09:02:02 -0700189ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800190 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800191 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800192 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700193 mirror::Class* declaring_class = GetDeclaringClass();
194 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800195 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800196 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800197 // Did this method override a super class method? If so load the result from the super class'
198 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700199 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700200 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800201 } else {
202 // Method didn't override superclass method so search interfaces
203 if (IsProxyMethod()) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100204 result = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
205 GetDexMethodIndex(),
206 pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800207 CHECK_EQ(result,
208 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
209 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700210 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800211 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700212 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800213 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
214 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
215 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800216 break;
217 }
218 }
219 }
220 }
221 }
Alex Light6c8467f2015-11-20 15:03:26 -0800222 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800223 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
224 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800225 return result;
226}
227
Ian Rogerse0a02da2014-12-02 14:10:53 -0800228uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
229 uint32_t name_and_signature_idx) {
230 const DexFile* dexfile = GetDexFile();
231 const uint32_t dex_method_idx = GetDexMethodIndex();
232 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
233 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
234 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
235 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
236 if (dexfile == &other_dexfile) {
237 return dex_method_idx;
238 }
239 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700240 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
241 if (other_type_id != nullptr) {
242 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
243 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
244 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
245 if (other_mid != nullptr) {
246 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800247 }
248 }
249 return DexFile::kDexNoIndex;
250}
251
Mathieu Chartiere401d142015-04-22 13:56:20 -0700252uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700253 uint32_t dex_pc, bool* has_no_move_exception) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700254 const DexFile::CodeItem* code_item = GetCodeItem();
Jeff Haoaa961912014-04-22 13:54:32 -0700255 // Set aside the exception while we resolve its type.
256 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700257 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000258 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700259 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700260 // Default to handler not found.
261 uint32_t found_dex_pc = DexFile::kDexNoIndex;
262 // Iterate over the catch handlers associated with dex_pc.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800263 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800264 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800265 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800266 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700267 found_dex_pc = it.GetHandlerAddress();
268 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800269 }
270 // Does this catch exception type apply?
Vladimir Marko942fd312017-01-16 20:52:19 +0000271 mirror::Class* iter_exception_type = GetClassFromTypeIndex(iter_type_idx, true /* resolve */);
Ian Rogers822266b2014-05-29 16:55:06 -0700272 if (UNLIKELY(iter_exception_type == nullptr)) {
273 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
274 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700275 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700276 self->ClearException();
277 // Delete any long jump context as this routine is called during a stack walk which will
278 // release its in use context at the end.
279 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800280 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700281 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700282 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700283 found_dex_pc = it.GetHandlerAddress();
284 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800285 }
286 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700287 if (found_dex_pc != DexFile::kDexNoIndex) {
288 const Instruction* first_catch_instr =
Jeff Haoaa961912014-04-22 13:54:32 -0700289 Instruction::At(&code_item->insns_[found_dex_pc]);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700290 *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION);
291 }
Jeff Haoaa961912014-04-22 13:54:32 -0700292 // Put the exception back.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800293 if (exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000294 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700295 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700296 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800297}
298
Brian Carlstromea46f952013-07-30 01:26:50 -0700299void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800300 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700301 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
302 ThrowStackOverflowError(self);
303 return;
304 }
305
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800306 if (kIsDebugBuild) {
307 self->AssertThreadSuspensionIsAllowable();
308 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700309 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800310 }
311
312 // Push a transition back into managed code onto the linked list in thread.
313 ManagedStack fragment;
314 self->PushManagedStackFragment(&fragment);
315
Ian Rogers62d6c772013-02-27 08:32:07 -0800316 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700317 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200318 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700319 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
320 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200321 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700322 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700323 art::interpreter::EnterInterpreterFromInvoke(
324 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700325 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700326 mirror::Object* receiver =
327 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700328 art::interpreter::EnterInterpreterFromInvoke(
329 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800330 }
331 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700332 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700333
334 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800335 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800336 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700337 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700338 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700339 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700340 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700341 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700342
Elliott Hughes956af0f2014-12-11 14:34:28 -0800343 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800344 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100345 CHECK(!runtime->UseJitCompilation());
Alex Lightdb01a092017-04-03 15:39:55 -0700346 const void* oat_quick_code =
347 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100348 ? nullptr
349 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100350 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700351 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700352 }
353
Elliott Hughes956af0f2014-12-11 14:34:28 -0800354 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800355 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800356 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800357 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800358 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000359 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200360 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700361 // exception was thrown to force the activations to be removed from the
362 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000363 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700364 }
365 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700366 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800367 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800368 }
369 } else {
David Sehr709b0702016-10-13 09:12:37 -0700370 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800371 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800372 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800373 }
374 }
375 }
376
377 // Pop transition.
378 self->PopManagedStackFragment(fragment);
379}
380
Alex Lightd78ddec2017-04-18 15:20:38 -0700381const void* ArtMethod::RegisterNative(const void* native_method, bool is_fast) {
David Sehr709b0702016-10-13 09:12:37 -0700382 CHECK(IsNative()) << PrettyMethod();
383 CHECK(!IsFastNative()) << PrettyMethod();
384 CHECK(native_method != nullptr) << PrettyMethod();
Ian Rogers987560f2014-04-22 11:42:59 -0700385 if (is_fast) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700386 AddAccessFlags(kAccFastNative);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800387 }
Alex Lightd78ddec2017-04-18 15:20:38 -0700388 void* new_native_method = nullptr;
389 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this,
390 native_method,
391 /*out*/&new_native_method);
392 SetEntryPointFromJni(new_native_method);
393 return new_native_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800394}
395
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700396void ArtMethod::UnregisterNative() {
David Sehr709b0702016-10-13 09:12:37 -0700397 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800398 // restore stub to lookup native pointer via dlsym
Alex Lightd78ddec2017-04-18 15:20:38 -0700399 SetEntryPointFromJni(GetJniDlsymLookupStub());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800400}
401
Alex Light9139e002015-10-09 15:59:48 -0700402bool ArtMethod::IsOverridableByDefaultMethod() {
403 return GetDeclaringClass()->IsInterface();
404}
405
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700406bool ArtMethod::IsAnnotatedWithFastNative() {
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700407 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_FastNative,
408 DexFile::kDexVisibilityBuild);
409}
410
411bool ArtMethod::IsAnnotatedWithCriticalNative() {
412 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_CriticalNative,
413 DexFile::kDexVisibilityBuild);
414}
415
416bool ArtMethod::IsAnnotatedWith(jclass klass, uint32_t visibility) {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700417 Thread* self = Thread::Current();
418 ScopedObjectAccess soa(self);
419 StackHandleScope<1> shs(self);
420
Mathieu Chartier0795f232016-09-27 18:43:30 -0700421 ObjPtr<mirror::Class> annotation = soa.Decode<mirror::Class>(klass);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700422 DCHECK(annotation->IsAnnotation());
423 Handle<mirror::Class> annotation_handle(shs.NewHandle(annotation));
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700424
425 // Note: Resolves any method annotations' classes as a side-effect.
426 // -- This seems allowed by the spec since it says we can preload any classes
427 // referenced by another classes's constant pool table.
David Sehr9323e6e2016-09-13 08:58:35 -0700428 return annotations::IsMethodAnnotationPresent(this, annotation_handle, visibility);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700429}
430
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100431static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
432 uint16_t class_def_idx,
433 uint32_t method_idx) {
434 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
435 const uint8_t* class_data = dex_file.GetClassData(class_def);
436 CHECK(class_data != nullptr);
437 ClassDataItemIterator it(dex_file, class_data);
Mathieu Chartiere17cf242017-06-19 11:05:51 -0700438 it.SkipAllFields();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100439 // Process methods
440 size_t class_def_method_index = 0;
441 while (it.HasNextDirectMethod()) {
442 if (it.GetMemberIndex() == method_idx) {
443 return class_def_method_index;
444 }
445 class_def_method_index++;
446 it.Next();
447 }
448 while (it.HasNextVirtualMethod()) {
449 if (it.GetMemberIndex() == method_idx) {
450 return class_def_method_index;
451 }
452 class_def_method_index++;
453 it.Next();
454 }
455 DCHECK(!it.HasNext());
456 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
457 UNREACHABLE();
458}
459
Alex Lighteee0bd42017-02-14 15:31:45 +0000460// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
461// method. This is extremely slow but we need it if we want to be able to have obsolete native
462// methods since we need this to find the size of its stack frames.
463//
464// NB We could (potentially) do this differently and rely on the way the transformation is applied
465// in order to use the entrypoint to find this information. However, for debugging reasons (most
466// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
467// directly from the dex file.
468static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
469 REQUIRES_SHARED(Locks::mutator_lock_) {
470 DCHECK(method->IsObsolete() && method->IsNative());
471 const DexFile* dex_file = method->GetDexFile();
472
473 // recreate the class_def_index from the descriptor.
474 std::string descriptor_storage;
475 const DexFile::TypeId* declaring_class_type_id =
476 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
477 CHECK(declaring_class_type_id != nullptr);
478 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
479 const DexFile::ClassDef* declaring_class_type_def =
480 dex_file->FindClassDef(declaring_class_type_index);
481 CHECK(declaring_class_type_def != nullptr);
482 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
483
484 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
485 declaring_class_def_index,
486 method->GetDexMethodIndex());
487
488 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
489 declaring_class_def_index,
490 found);
491 if (!(*found)) {
492 return OatFile::OatMethod::Invalid();
493 }
494 return oat_class.GetOatMethod(oat_method_index);
495}
496
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100497static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
498 PointerSize pointer_size,
499 bool* found)
500 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000501 if (UNLIKELY(method->IsObsolete())) {
502 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
503 // which we need to use the oat method to figure out how large the quick frame is.
504 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
505 << "order to allow stack walking. Other obsolete methods should "
506 << "never need to access this information.";
507 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
508 return FindOatMethodFromDexFileFor(method, found);
509 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100510 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
511 // method for direct methods (or virtual methods made direct).
512 mirror::Class* declaring_class = method->GetDeclaringClass();
513 size_t oat_method_index;
514 if (method->IsStatic() || method->IsDirect()) {
515 // Simple case where the oat method index was stashed at load time.
516 oat_method_index = method->GetMethodIndex();
517 } else {
518 // Compute the oat_method_index by search for its position in the declared virtual methods.
519 oat_method_index = declaring_class->NumDirectMethods();
520 bool found_virtual = false;
521 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
522 // Check method index instead of identity in case of duplicate method definitions.
523 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
524 found_virtual = true;
525 break;
526 }
527 oat_method_index++;
528 }
529 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700530 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100531 }
532 DCHECK_EQ(oat_method_index,
533 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
534 method->GetDeclaringClass()->GetDexClassDefIndex(),
535 method->GetDexMethodIndex()));
536 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
537 declaring_class->GetDexClassDefIndex(),
538 found);
539 if (!(*found)) {
540 return OatFile::OatMethod::Invalid();
541 }
542 return oat_class.GetOatMethod(oat_method_index);
543}
544
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700545bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
546 auto* dex_cache = GetDexCache();
547 auto* dex_file = dex_cache->GetDexFile();
548 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
549 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
550 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
551 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
Andreas Gampefa4333d2017-02-14 11:10:34 -0800552 auto param_len = params != nullptr ? params->GetLength() : 0u;
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700553 if (param_len != count) {
554 return false;
555 }
556 auto* cl = Runtime::Current()->GetClassLinker();
557 for (size_t i = 0; i < count; ++i) {
558 auto type_idx = proto_params->GetTypeItem(i).type_idx_;
559 auto* type = cl->ResolveType(type_idx, this);
560 if (type == nullptr) {
561 Thread::Current()->AssertPendingException();
562 return false;
563 }
564 if (type != params->GetWithoutChecks(i)) {
565 return false;
566 }
567 }
568 return true;
569}
570
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100571const uint8_t* ArtMethod::GetQuickenedInfo(PointerSize pointer_size) {
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100572 bool found = false;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100573 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100574 if (!found || (oat_method.GetQuickCode() != nullptr)) {
575 return nullptr;
576 }
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100577 if (kIsVdexEnabled) {
578 const OatQuickMethodHeader* header = oat_method.GetOatQuickMethodHeader();
579 // OatMethod without a header: no quickening table.
580 if (header == nullptr) {
581 return nullptr;
582 }
583 // The table is in the .vdex file.
584 const OatFile::OatDexFile* oat_dex_file = GetDexCache()->GetDexFile()->GetOatDexFile();
Mathieu Chartier1b868492016-11-16 16:22:37 -0800585 const OatFile* oat_file = oat_dex_file->GetOatFile();
586 if (oat_file == nullptr) {
587 return nullptr;
588 }
Mingyao Yang063fc772016-08-02 11:02:54 -0700589 return oat_file->DexBegin() + header->GetVmapTableOffset();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100590 } else {
591 return oat_method.GetVmapTable();
592 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100593}
594
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100595const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000596 // Our callers should make sure they don't pass the instrumentation exit pc,
597 // as this method does not look at the side instrumentation stack.
598 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
599
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000600 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100601 return nullptr;
602 }
603
604 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100605 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700606 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100607 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100608
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100609 if (class_linker->IsQuickGenericJniStub(existing_entry_point)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100610 // The generic JNI does not have any method header.
611 return nullptr;
612 }
613
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000614 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
615 DCHECK(IsProxyMethod() && !IsConstructor());
616 // The proxy entry point does not have any method header.
617 return nullptr;
618 }
619
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100620 // Check whether the current entry point contains this pc.
621 if (!class_linker->IsQuickResolutionStub(existing_entry_point) &&
622 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
623 OatQuickMethodHeader* method_header =
624 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100625
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100626 if (method_header->Contains(pc)) {
627 return method_header;
628 }
629 }
630
631 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100632 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100633 if (jit != nullptr) {
634 jit::JitCodeCache* code_cache = jit->GetCodeCache();
635 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
636 if (method_header != nullptr) {
637 DCHECK(method_header->Contains(pc));
638 return method_header;
639 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000640 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700641 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000642 << ", pc=" << std::hex << pc
643 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
644 << ", copy=" << std::boolalpha << IsCopied()
645 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100646 }
647 }
648
649 // The code has to be in an oat file.
650 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100651 OatFile::OatMethod oat_method =
652 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100653 if (!found) {
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000654 if (class_linker->IsQuickResolutionStub(existing_entry_point)) {
655 // We are running the generic jni stub, but the entry point of the method has not
656 // been updated yet.
Nicolas Geoffray703c2822015-10-30 12:23:16 +0000657 DCHECK_EQ(pc, 0u) << "Should be a downcall";
658 DCHECK(IsNative());
659 return nullptr;
660 }
661 if (existing_entry_point == GetQuickInstrumentationEntryPoint()) {
662 // We are running the generic jni stub, but the method is being instrumented.
Alex Lightb7edcda2017-04-27 13:20:31 -0700663 // NB We would normally expect the pc to be zero but we can have non-zero pc's if
664 // instrumentation is installed or removed during the call which is using the generic jni
665 // trampoline.
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000666 DCHECK(IsNative());
667 return nullptr;
668 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100669 // Only for unit tests.
670 // TODO(ngeoffray): Update these tests to pass the right pc?
671 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
672 }
673 const void* oat_entry_point = oat_method.GetQuickCode();
674 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700675 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100676 return nullptr;
677 }
678
679 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
680 if (pc == 0) {
681 // This is a downcall, it can only happen for a native method.
682 DCHECK(IsNative());
683 return method_header;
684 }
685
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100686 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700687 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100688 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700689 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100690 return method_header;
691}
692
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100693const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
694 bool found;
695 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
696 if (found) {
697 return oat_method.GetQuickCode();
698 }
699 return nullptr;
700}
701
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000702bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100703 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
704 return false;
705 }
706
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000707 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100708 Runtime* runtime = Runtime::Current();
709 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000710 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
711 return true;
712 }
713
714 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100715 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000716}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000717
Andreas Gampe542451c2016-07-26 09:02:02 -0700718void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000719 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
720 Size(image_pointer_size));
721 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
722
723 // If the entry point of the method we are copying from is from JIT code, we just
724 // put the entry point of the new method to interpreter. We could set the entry point
725 // to the JIT code, but this would require taking the JIT code cache lock to notify
726 // it, which we do not want at this level.
727 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100728 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000729 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
730 SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(), image_pointer_size);
731 }
732 }
733 // Clear the profiling info for the same reasons as the JIT code.
734 if (!src->IsNative()) {
735 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
736 }
737 // Clear hotness to let the JIT properly decide when to compile this method.
738 hotness_count_ = 0;
739}
740
Andreas Gampe542451c2016-07-26 09:02:02 -0700741bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700742 // Hijack this function to get access to PtrSizedFieldsOffset.
743 //
744 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
745 // 64-bit builds.
746 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700747 static_assert(
748 (sizeof(void*) != 4) ||
749 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
750 "Unexpected 32-bit class layout.");
751 static_assert(
752 (sizeof(void*) != 8) ||
753 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
754 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700755
Andreas Gampe75f08852016-07-19 08:06:07 -0700756 Runtime* runtime = Runtime::Current();
757 if (runtime == nullptr) {
758 return true;
759 }
760 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
761}
762
David Sehr709b0702016-10-13 09:12:37 -0700763std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
764 if (m == nullptr) {
765 return "null";
766 }
767 return m->PrettyMethod(with_signature);
768}
769
770std::string ArtMethod::PrettyMethod(bool with_signature) {
771 ArtMethod* m = this;
772 if (!m->IsRuntimeMethod()) {
773 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
774 }
775 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
776 result += '.';
777 result += m->GetName();
778 if (UNLIKELY(m->IsFastNative())) {
779 result += "!";
780 }
781 if (with_signature) {
782 const Signature signature = m->GetSignature();
783 std::string sig_as_string(signature.ToString());
784 if (signature == Signature::NoSignature()) {
785 return result + sig_as_string;
786 }
787 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
788 PrettyArguments(sig_as_string.c_str());
789 }
790 return result;
791}
792
793std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800794 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700795}
796
797std::string ArtMethod::JniLongName() {
798 std::string long_name;
799 long_name += JniShortName();
800 long_name += "__";
801
802 std::string signature(GetSignature().ToString());
803 signature.erase(0, 1);
804 signature.erase(signature.begin() + signature.find(')'), signature.end());
805
806 long_name += MangleForJni(signature);
807
808 return long_name;
809}
810
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800811// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
812// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
813template <ReadBarrierOption kReadBarrierOption>
814ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method)
815 NO_THREAD_SAFETY_ANALYSIS {
816 CHECK(method->IsRuntimeMethod() ||
817 method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
818 method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
819}
820
821template <ReadBarrierOption kReadBarrierOption> void ArtMethod::GetAccessFlagsDCheck() {
822 if (kCheckDeclaringClassState) {
823 Thread* self = Thread::Current();
824 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
825 if (self->IsThreadSuspensionAllowable()) {
826 ScopedObjectAccess soa(self);
827 CHECK(IsRuntimeMethod() ||
828 GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
829 GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
830 }
831 } else {
832 // We cannot use SOA in this case. We might be holding the lock, but may not be in the
833 // runnable state (e.g., during GC).
834 Locks::mutator_lock_->AssertSharedHeld(self);
835 DoGetAccessFlagsHelper<kReadBarrierOption>(this);
836 }
837 }
838}
839template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithReadBarrier>();
840template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithoutReadBarrier>();
841
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800842} // namespace art