blob: 76fdd439926863858d69375df75deaa789f76df5 [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"
Ian Rogers62f05122014-03-21 11:21:29 -070024#include "art_field-inl.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070025#include "art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "base/stringpiece.h"
Hiroshi Yamauchi00370822015-08-18 14:47:25 -070027#include "class_linker-inl.h"
Andreas Gampe2a5c4682015-08-14 08:22:54 -070028#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070029#include "dex_file-inl.h"
David Sehr9323e6e2016-09-13 08:58:35 -070030#include "dex_file_annotations.h"
Ian Rogersc449aa82013-07-29 14:35:46 -070031#include "dex_instruction.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070032#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070033#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080035#include "jit/jit.h"
36#include "jit/jit_code_cache.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010037#include "jit/profiling_info.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "jni_internal.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070039#include "mirror/class-inl.h"
Alex Lighta01de592016-11-15 10:43:06 -080040#include "mirror/class_ext.h"
Neil Fuller0e844392016-09-08 13:43:31 +010041#include "mirror/executable.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070042#include "mirror/object_array-inl.h"
43#include "mirror/object-inl.h"
44#include "mirror/string.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000045#include "oat_file-inl.h"
Alex Lightd78ddec2017-04-18 15:20:38 -070046#include "runtime_callbacks.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070047#include "scoped_thread_state_change-inl.h"
Ian Rogers62f05122014-03-21 11:21:29 -070048#include "well_known_classes.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049
50namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051
Andreas Gampe46ee31b2016-12-14 10:11:49 -080052using android::base::StringPrintf;
53
Ian Rogers0177e532014-02-11 16:30:46 -080054extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
55 const char*);
Ian Rogers936b37f2014-02-14 00:52:24 -080056extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
57 const char*);
Jeff Hao5d917302013-02-27 17:57:33 -080058
Alex Light4ba388a2017-01-27 10:26:49 -080059ArtMethod* ArtMethod::GetNonObsoleteMethod() {
60 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
61 if (LIKELY(!IsObsolete())) {
62 return this;
63 } else if (IsDirect()) {
64 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()];
65 } else {
66 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize);
67 }
68}
69
Mingyao Yange8fcd012017-01-20 10:43:30 -080070ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Mingyao Yang063fc772016-08-02 11:02:54 -070071 if (!IsAbstract()) {
72 // A non-abstract's single implementation is itself.
73 return this;
74 }
Mingyao Yange8fcd012017-01-20 10:43:30 -080075 return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size));
Mingyao Yang063fc772016-08-02 11:02:54 -070076}
77
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070078ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
79 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -070080 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +010081 DCHECK(executable != nullptr);
82 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -070083}
84
Alex Lighta01de592016-11-15 10:43:06 -080085mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
86 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
87 DCHECK(IsObsolete());
88 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
89 CHECK(!ext.IsNull());
90 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
91 CHECK(!obsolete_methods.IsNull());
92 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
93 int32_t len = obsolete_methods->GetLength();
94 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -080095 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
96 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -080097 PointerSize pointer_size = kRuntimePointerSize;
98 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
99 for (int32_t i = 0; i < len; i++) {
100 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
101 return ext->GetObsoleteDexCaches()->Get(i);
102 }
103 }
104 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
105 UNREACHABLE();
106}
107
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000108uint16_t ArtMethod::FindObsoleteDexClassDefIndex() {
109 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
110 DCHECK(IsObsolete());
111 const DexFile* dex_file = GetDexFile();
112 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
113 const DexFile::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type);
114 CHECK(class_def != nullptr);
115 return dex_file->GetIndexForClassDef(*class_def);
116}
117
Ian Rogers6b14d552014-10-28 21:50:58 -0700118mirror::String* ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700119 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -0700120 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700121 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
122 auto* dex_file = dex_cache->GetDexFile();
123 uint32_t dex_method_idx = GetDexMethodIndex();
124 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Ian Rogers6b14d552014-10-28 21:50:58 -0700125 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
126 dex_cache);
127}
128
Alex Light9139e002015-10-09 15:59:48 -0700129void ArtMethod::ThrowInvocationTimeError() {
130 DCHECK(!IsInvokable());
131 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
132 // due to the way we select it.
133 if (IsDefaultConflicting()) {
134 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
135 } else {
136 DCHECK(IsAbstract());
137 ThrowAbstractMethodError(this);
138 }
139}
140
Ian Rogersef7d42f2014-01-06 12:55:46 -0800141InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800142 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000143 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000144 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000145 } else if (GetDeclaringClass()->IsInterface()) {
146 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800147 } else if (IsDirect()) {
148 return kDirect;
149 } else {
150 return kVirtual;
151 }
152}
153
Brian Carlstromea46f952013-07-30 01:26:50 -0700154size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700155 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800156 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700157 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800158 char ch = shorty[i];
159 if (ch == 'D' || ch == 'J') {
160 num_registers += 2;
161 } else {
162 num_registers += 1;
163 }
164 }
165 return num_registers;
166}
167
Alex Light6c8467f2015-11-20 15:03:26 -0800168bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700169 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800170 const DexFile* dex_file = GetDexFile();
171 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
172 if (GetDexCache() == other->GetDexCache()) {
173 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800174 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
175 }
Alex Light6c8467f2015-11-20 15:03:26 -0800176 const DexFile* dex_file2 = other->GetDexFile();
177 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800178 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
179 return false; // Name mismatch.
180 }
181 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
182}
183
Andreas Gampe542451c2016-07-26 09:02:02 -0700184ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800185 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800186 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800187 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700188 mirror::Class* declaring_class = GetDeclaringClass();
189 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800190 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800191 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800192 // Did this method override a super class method? If so load the result from the super class'
193 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700194 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700195 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800196 } else {
197 // Method didn't override superclass method so search interfaces
198 if (IsProxyMethod()) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100199 result = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
200 GetDexMethodIndex(),
201 pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800202 CHECK_EQ(result,
203 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
204 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700205 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800206 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700207 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800208 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
209 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
210 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800211 break;
212 }
213 }
214 }
215 }
216 }
Alex Light6c8467f2015-11-20 15:03:26 -0800217 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800218 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
219 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800220 return result;
221}
222
Ian Rogerse0a02da2014-12-02 14:10:53 -0800223uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
224 uint32_t name_and_signature_idx) {
225 const DexFile* dexfile = GetDexFile();
226 const uint32_t dex_method_idx = GetDexMethodIndex();
227 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
228 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
229 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
230 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
231 if (dexfile == &other_dexfile) {
232 return dex_method_idx;
233 }
234 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700235 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
236 if (other_type_id != nullptr) {
237 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
238 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
239 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
240 if (other_mid != nullptr) {
241 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800242 }
243 }
244 return DexFile::kDexNoIndex;
245}
246
Mathieu Chartiere401d142015-04-22 13:56:20 -0700247uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700248 uint32_t dex_pc, bool* has_no_move_exception) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700249 const DexFile::CodeItem* code_item = GetCodeItem();
Jeff Haoaa961912014-04-22 13:54:32 -0700250 // Set aside the exception while we resolve its type.
251 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700252 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000253 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700254 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700255 // Default to handler not found.
256 uint32_t found_dex_pc = DexFile::kDexNoIndex;
257 // Iterate over the catch handlers associated with dex_pc.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800258 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800259 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800260 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800261 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700262 found_dex_pc = it.GetHandlerAddress();
263 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800264 }
265 // Does this catch exception type apply?
Vladimir Marko942fd312017-01-16 20:52:19 +0000266 mirror::Class* iter_exception_type = GetClassFromTypeIndex(iter_type_idx, true /* resolve */);
Ian Rogers822266b2014-05-29 16:55:06 -0700267 if (UNLIKELY(iter_exception_type == nullptr)) {
268 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
269 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700270 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700271 self->ClearException();
272 // Delete any long jump context as this routine is called during a stack walk which will
273 // release its in use context at the end.
274 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800275 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700276 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700277 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700278 found_dex_pc = it.GetHandlerAddress();
279 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800280 }
281 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700282 if (found_dex_pc != DexFile::kDexNoIndex) {
283 const Instruction* first_catch_instr =
Jeff Haoaa961912014-04-22 13:54:32 -0700284 Instruction::At(&code_item->insns_[found_dex_pc]);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700285 *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION);
286 }
Jeff Haoaa961912014-04-22 13:54:32 -0700287 // Put the exception back.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800288 if (exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000289 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700290 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700291 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800292}
293
Brian Carlstromea46f952013-07-30 01:26:50 -0700294void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800295 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700296 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
297 ThrowStackOverflowError(self);
298 return;
299 }
300
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800301 if (kIsDebugBuild) {
302 self->AssertThreadSuspensionIsAllowable();
303 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700304 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800305 }
306
307 // Push a transition back into managed code onto the linked list in thread.
308 ManagedStack fragment;
309 self->PushManagedStackFragment(&fragment);
310
Ian Rogers62d6c772013-02-27 08:32:07 -0800311 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700312 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200313 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700314 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
315 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200316 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700317 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700318 art::interpreter::EnterInterpreterFromInvoke(
319 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700320 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700321 mirror::Object* receiver =
322 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700323 art::interpreter::EnterInterpreterFromInvoke(
324 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800325 }
326 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700327 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700328
329 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800330 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800331 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700332 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700333 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700334 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700335 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700336 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700337
Elliott Hughes956af0f2014-12-11 14:34:28 -0800338 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800339 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100340 CHECK(!runtime->UseJitCompilation());
Alex Lightdb01a092017-04-03 15:39:55 -0700341 const void* oat_quick_code =
342 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100343 ? nullptr
344 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100345 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700346 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700347 }
348
Elliott Hughes956af0f2014-12-11 14:34:28 -0800349 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800350 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800351 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800352 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800353 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000354 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200355 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700356 // exception was thrown to force the activations to be removed from the
357 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000358 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700359 }
360 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700361 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800362 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800363 }
364 } else {
David Sehr709b0702016-10-13 09:12:37 -0700365 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800366 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800367 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800368 }
369 }
370 }
371
372 // Pop transition.
373 self->PopManagedStackFragment(fragment);
374}
375
Alex Lightd78ddec2017-04-18 15:20:38 -0700376const void* ArtMethod::RegisterNative(const void* native_method, bool is_fast) {
David Sehr709b0702016-10-13 09:12:37 -0700377 CHECK(IsNative()) << PrettyMethod();
378 CHECK(!IsFastNative()) << PrettyMethod();
379 CHECK(native_method != nullptr) << PrettyMethod();
Ian Rogers987560f2014-04-22 11:42:59 -0700380 if (is_fast) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700381 AddAccessFlags(kAccFastNative);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800382 }
Alex Lightd78ddec2017-04-18 15:20:38 -0700383 void* new_native_method = nullptr;
384 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this,
385 native_method,
386 /*out*/&new_native_method);
387 SetEntryPointFromJni(new_native_method);
388 return new_native_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800389}
390
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700391void ArtMethod::UnregisterNative() {
David Sehr709b0702016-10-13 09:12:37 -0700392 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800393 // restore stub to lookup native pointer via dlsym
Alex Lightd78ddec2017-04-18 15:20:38 -0700394 SetEntryPointFromJni(GetJniDlsymLookupStub());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800395}
396
Alex Light9139e002015-10-09 15:59:48 -0700397bool ArtMethod::IsOverridableByDefaultMethod() {
398 return GetDeclaringClass()->IsInterface();
399}
400
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700401bool ArtMethod::IsAnnotatedWithFastNative() {
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700402 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_FastNative,
403 DexFile::kDexVisibilityBuild);
404}
405
406bool ArtMethod::IsAnnotatedWithCriticalNative() {
407 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_CriticalNative,
408 DexFile::kDexVisibilityBuild);
409}
410
411bool ArtMethod::IsAnnotatedWith(jclass klass, uint32_t visibility) {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700412 Thread* self = Thread::Current();
413 ScopedObjectAccess soa(self);
414 StackHandleScope<1> shs(self);
415
Mathieu Chartier0795f232016-09-27 18:43:30 -0700416 ObjPtr<mirror::Class> annotation = soa.Decode<mirror::Class>(klass);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700417 DCHECK(annotation->IsAnnotation());
418 Handle<mirror::Class> annotation_handle(shs.NewHandle(annotation));
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700419
420 // Note: Resolves any method annotations' classes as a side-effect.
421 // -- This seems allowed by the spec since it says we can preload any classes
422 // referenced by another classes's constant pool table.
David Sehr9323e6e2016-09-13 08:58:35 -0700423 return annotations::IsMethodAnnotationPresent(this, annotation_handle, visibility);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700424}
425
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100426static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
427 uint16_t class_def_idx,
428 uint32_t method_idx) {
429 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
430 const uint8_t* class_data = dex_file.GetClassData(class_def);
431 CHECK(class_data != nullptr);
432 ClassDataItemIterator it(dex_file, class_data);
433 // Skip fields
434 while (it.HasNextStaticField()) {
435 it.Next();
436 }
437 while (it.HasNextInstanceField()) {
438 it.Next();
439 }
440 // Process methods
441 size_t class_def_method_index = 0;
442 while (it.HasNextDirectMethod()) {
443 if (it.GetMemberIndex() == method_idx) {
444 return class_def_method_index;
445 }
446 class_def_method_index++;
447 it.Next();
448 }
449 while (it.HasNextVirtualMethod()) {
450 if (it.GetMemberIndex() == method_idx) {
451 return class_def_method_index;
452 }
453 class_def_method_index++;
454 it.Next();
455 }
456 DCHECK(!it.HasNext());
457 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
458 UNREACHABLE();
459}
460
Alex Lighteee0bd42017-02-14 15:31:45 +0000461// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
462// method. This is extremely slow but we need it if we want to be able to have obsolete native
463// methods since we need this to find the size of its stack frames.
464//
465// NB We could (potentially) do this differently and rely on the way the transformation is applied
466// in order to use the entrypoint to find this information. However, for debugging reasons (most
467// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
468// directly from the dex file.
469static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
470 REQUIRES_SHARED(Locks::mutator_lock_) {
471 DCHECK(method->IsObsolete() && method->IsNative());
472 const DexFile* dex_file = method->GetDexFile();
473
474 // recreate the class_def_index from the descriptor.
475 std::string descriptor_storage;
476 const DexFile::TypeId* declaring_class_type_id =
477 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
478 CHECK(declaring_class_type_id != nullptr);
479 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
480 const DexFile::ClassDef* declaring_class_type_def =
481 dex_file->FindClassDef(declaring_class_type_index);
482 CHECK(declaring_class_type_def != nullptr);
483 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
484
485 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
486 declaring_class_def_index,
487 method->GetDexMethodIndex());
488
489 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
490 declaring_class_def_index,
491 found);
492 if (!(*found)) {
493 return OatFile::OatMethod::Invalid();
494 }
495 return oat_class.GetOatMethod(oat_method_index);
496}
497
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100498static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
499 PointerSize pointer_size,
500 bool* found)
501 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000502 if (UNLIKELY(method->IsObsolete())) {
503 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
504 // which we need to use the oat method to figure out how large the quick frame is.
505 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
506 << "order to allow stack walking. Other obsolete methods should "
507 << "never need to access this information.";
508 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
509 return FindOatMethodFromDexFileFor(method, found);
510 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100511 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
512 // method for direct methods (or virtual methods made direct).
513 mirror::Class* declaring_class = method->GetDeclaringClass();
514 size_t oat_method_index;
515 if (method->IsStatic() || method->IsDirect()) {
516 // Simple case where the oat method index was stashed at load time.
517 oat_method_index = method->GetMethodIndex();
518 } else {
519 // Compute the oat_method_index by search for its position in the declared virtual methods.
520 oat_method_index = declaring_class->NumDirectMethods();
521 bool found_virtual = false;
522 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
523 // Check method index instead of identity in case of duplicate method definitions.
524 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
525 found_virtual = true;
526 break;
527 }
528 oat_method_index++;
529 }
530 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700531 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100532 }
533 DCHECK_EQ(oat_method_index,
534 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
535 method->GetDeclaringClass()->GetDexClassDefIndex(),
536 method->GetDexMethodIndex()));
537 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
538 declaring_class->GetDexClassDefIndex(),
539 found);
540 if (!(*found)) {
541 return OatFile::OatMethod::Invalid();
542 }
543 return oat_class.GetOatMethod(oat_method_index);
544}
545
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700546bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
547 auto* dex_cache = GetDexCache();
548 auto* dex_file = dex_cache->GetDexFile();
549 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
550 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
551 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
552 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
Andreas Gampefa4333d2017-02-14 11:10:34 -0800553 auto param_len = params != nullptr ? params->GetLength() : 0u;
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700554 if (param_len != count) {
555 return false;
556 }
557 auto* cl = Runtime::Current()->GetClassLinker();
558 for (size_t i = 0; i < count; ++i) {
559 auto type_idx = proto_params->GetTypeItem(i).type_idx_;
560 auto* type = cl->ResolveType(type_idx, this);
561 if (type == nullptr) {
562 Thread::Current()->AssertPendingException();
563 return false;
564 }
565 if (type != params->GetWithoutChecks(i)) {
566 return false;
567 }
568 }
569 return true;
570}
571
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100572const uint8_t* ArtMethod::GetQuickenedInfo(PointerSize pointer_size) {
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100573 bool found = false;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100574 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100575 if (!found || (oat_method.GetQuickCode() != nullptr)) {
576 return nullptr;
577 }
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100578 if (kIsVdexEnabled) {
579 const OatQuickMethodHeader* header = oat_method.GetOatQuickMethodHeader();
580 // OatMethod without a header: no quickening table.
581 if (header == nullptr) {
582 return nullptr;
583 }
584 // The table is in the .vdex file.
585 const OatFile::OatDexFile* oat_dex_file = GetDexCache()->GetDexFile()->GetOatDexFile();
Mathieu Chartier1b868492016-11-16 16:22:37 -0800586 const OatFile* oat_file = oat_dex_file->GetOatFile();
587 if (oat_file == nullptr) {
588 return nullptr;
589 }
Mingyao Yang063fc772016-08-02 11:02:54 -0700590 return oat_file->DexBegin() + header->GetVmapTableOffset();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100591 } else {
592 return oat_method.GetVmapTable();
593 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100594}
595
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100596const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000597 // Our callers should make sure they don't pass the instrumentation exit pc,
598 // as this method does not look at the side instrumentation stack.
599 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
600
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000601 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100602 return nullptr;
603 }
604
605 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100606 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700607 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100608 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100609
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100610 if (class_linker->IsQuickGenericJniStub(existing_entry_point)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100611 // The generic JNI does not have any method header.
612 return nullptr;
613 }
614
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000615 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
616 DCHECK(IsProxyMethod() && !IsConstructor());
617 // The proxy entry point does not have any method header.
618 return nullptr;
619 }
620
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100621 // Check whether the current entry point contains this pc.
622 if (!class_linker->IsQuickResolutionStub(existing_entry_point) &&
623 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
624 OatQuickMethodHeader* method_header =
625 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100626
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100627 if (method_header->Contains(pc)) {
628 return method_header;
629 }
630 }
631
632 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100633 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100634 if (jit != nullptr) {
635 jit::JitCodeCache* code_cache = jit->GetCodeCache();
636 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
637 if (method_header != nullptr) {
638 DCHECK(method_header->Contains(pc));
639 return method_header;
640 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000641 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700642 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000643 << ", pc=" << std::hex << pc
644 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
645 << ", copy=" << std::boolalpha << IsCopied()
646 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100647 }
648 }
649
650 // The code has to be in an oat file.
651 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100652 OatFile::OatMethod oat_method =
653 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100654 if (!found) {
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000655 if (class_linker->IsQuickResolutionStub(existing_entry_point)) {
656 // We are running the generic jni stub, but the entry point of the method has not
657 // been updated yet.
Nicolas Geoffray703c2822015-10-30 12:23:16 +0000658 DCHECK_EQ(pc, 0u) << "Should be a downcall";
659 DCHECK(IsNative());
660 return nullptr;
661 }
662 if (existing_entry_point == GetQuickInstrumentationEntryPoint()) {
663 // We are running the generic jni stub, but the method is being instrumented.
664 DCHECK_EQ(pc, 0u) << "Should be a downcall";
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000665 DCHECK(IsNative());
666 return nullptr;
667 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100668 // Only for unit tests.
669 // TODO(ngeoffray): Update these tests to pass the right pc?
670 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
671 }
672 const void* oat_entry_point = oat_method.GetQuickCode();
673 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700674 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100675 return nullptr;
676 }
677
678 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
679 if (pc == 0) {
680 // This is a downcall, it can only happen for a native method.
681 DCHECK(IsNative());
682 return method_header;
683 }
684
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100685 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700686 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100687 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700688 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100689 return method_header;
690}
691
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100692const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
693 bool found;
694 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
695 if (found) {
696 return oat_method.GetQuickCode();
697 }
698 return nullptr;
699}
700
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000701bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100702 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
703 return false;
704 }
705
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000706 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100707 Runtime* runtime = Runtime::Current();
708 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000709 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
710 return true;
711 }
712
713 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100714 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000715}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000716
Andreas Gampe542451c2016-07-26 09:02:02 -0700717void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000718 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
719 Size(image_pointer_size));
720 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
721
722 // If the entry point of the method we are copying from is from JIT code, we just
723 // put the entry point of the new method to interpreter. We could set the entry point
724 // to the JIT code, but this would require taking the JIT code cache lock to notify
725 // it, which we do not want at this level.
726 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100727 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000728 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
729 SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(), image_pointer_size);
730 }
731 }
732 // Clear the profiling info for the same reasons as the JIT code.
733 if (!src->IsNative()) {
734 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
735 }
736 // Clear hotness to let the JIT properly decide when to compile this method.
737 hotness_count_ = 0;
738}
739
Andreas Gampe542451c2016-07-26 09:02:02 -0700740bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700741 // Hijack this function to get access to PtrSizedFieldsOffset.
742 //
743 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
744 // 64-bit builds.
745 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700746 static_assert(
747 (sizeof(void*) != 4) ||
748 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
749 "Unexpected 32-bit class layout.");
750 static_assert(
751 (sizeof(void*) != 8) ||
752 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
753 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700754
Andreas Gampe75f08852016-07-19 08:06:07 -0700755 Runtime* runtime = Runtime::Current();
756 if (runtime == nullptr) {
757 return true;
758 }
759 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
760}
761
David Sehr709b0702016-10-13 09:12:37 -0700762std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
763 if (m == nullptr) {
764 return "null";
765 }
766 return m->PrettyMethod(with_signature);
767}
768
769std::string ArtMethod::PrettyMethod(bool with_signature) {
770 ArtMethod* m = this;
771 if (!m->IsRuntimeMethod()) {
772 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
773 }
774 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
775 result += '.';
776 result += m->GetName();
777 if (UNLIKELY(m->IsFastNative())) {
778 result += "!";
779 }
780 if (with_signature) {
781 const Signature signature = m->GetSignature();
782 std::string sig_as_string(signature.ToString());
783 if (signature == Signature::NoSignature()) {
784 return result + sig_as_string;
785 }
786 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
787 PrettyArguments(sig_as_string.c_str());
788 }
789 return result;
790}
791
792std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800793 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700794}
795
796std::string ArtMethod::JniLongName() {
797 std::string long_name;
798 long_name += JniShortName();
799 long_name += "__";
800
801 std::string signature(GetSignature().ToString());
802 signature.erase(0, 1);
803 signature.erase(signature.begin() + signature.find(')'), signature.end());
804
805 long_name += MangleForJni(signature);
806
807 return long_name;
808}
809
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800810} // namespace art