blob: b26f9e1d02c889fcd57fd8ac29be2e209ef9f1f1 [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"
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
Alex Light4ba388a2017-01-27 10:26:49 -080058ArtMethod* ArtMethod::GetNonObsoleteMethod() {
59 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
60 if (LIKELY(!IsObsolete())) {
61 return this;
62 } else if (IsDirect()) {
63 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()];
64 } else {
65 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize);
66 }
67}
68
Mingyao Yange8fcd012017-01-20 10:43:30 -080069ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Mingyao Yang063fc772016-08-02 11:02:54 -070070 DCHECK(!IsNative());
71 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
Ian Rogers6b14d552014-10-28 21:50:58 -0700108mirror::String* ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700109 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -0700110 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700111 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
112 auto* dex_file = dex_cache->GetDexFile();
113 uint32_t dex_method_idx = GetDexMethodIndex();
114 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Ian Rogers6b14d552014-10-28 21:50:58 -0700115 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
116 dex_cache);
117}
118
Alex Light9139e002015-10-09 15:59:48 -0700119void ArtMethod::ThrowInvocationTimeError() {
120 DCHECK(!IsInvokable());
121 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
122 // due to the way we select it.
123 if (IsDefaultConflicting()) {
124 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
125 } else {
126 DCHECK(IsAbstract());
127 ThrowAbstractMethodError(this);
128 }
129}
130
Ian Rogersef7d42f2014-01-06 12:55:46 -0800131InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800132 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000133 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000134 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000135 } else if (GetDeclaringClass()->IsInterface()) {
136 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800137 } else if (IsDirect()) {
138 return kDirect;
139 } else {
140 return kVirtual;
141 }
142}
143
Brian Carlstromea46f952013-07-30 01:26:50 -0700144size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700145 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800146 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700147 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800148 char ch = shorty[i];
149 if (ch == 'D' || ch == 'J') {
150 num_registers += 2;
151 } else {
152 num_registers += 1;
153 }
154 }
155 return num_registers;
156}
157
Alex Light6c8467f2015-11-20 15:03:26 -0800158bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700159 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800160 const DexFile* dex_file = GetDexFile();
161 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
162 if (GetDexCache() == other->GetDexCache()) {
163 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800164 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
165 }
Alex Light6c8467f2015-11-20 15:03:26 -0800166 const DexFile* dex_file2 = other->GetDexFile();
167 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800168 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
169 return false; // Name mismatch.
170 }
171 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
172}
173
Andreas Gampe542451c2016-07-26 09:02:02 -0700174ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800175 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800176 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800177 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700178 mirror::Class* declaring_class = GetDeclaringClass();
179 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800180 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800181 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800182 // Did this method override a super class method? If so load the result from the super class'
183 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700184 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700185 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800186 } else {
187 // Method didn't override superclass method so search interfaces
188 if (IsProxyMethod()) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100189 result = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
190 GetDexMethodIndex(),
191 pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800192 CHECK_EQ(result,
193 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
194 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700195 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800196 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700197 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800198 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
199 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
200 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800201 break;
202 }
203 }
204 }
205 }
206 }
Alex Light6c8467f2015-11-20 15:03:26 -0800207 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800208 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
209 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800210 return result;
211}
212
Ian Rogerse0a02da2014-12-02 14:10:53 -0800213uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
214 uint32_t name_and_signature_idx) {
215 const DexFile* dexfile = GetDexFile();
216 const uint32_t dex_method_idx = GetDexMethodIndex();
217 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
218 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
219 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
220 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
221 if (dexfile == &other_dexfile) {
222 return dex_method_idx;
223 }
224 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700225 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
226 if (other_type_id != nullptr) {
227 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
228 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
229 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
230 if (other_mid != nullptr) {
231 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800232 }
233 }
234 return DexFile::kDexNoIndex;
235}
236
Mathieu Chartiere401d142015-04-22 13:56:20 -0700237uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700238 uint32_t dex_pc, bool* has_no_move_exception) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700239 const DexFile::CodeItem* code_item = GetCodeItem();
Jeff Haoaa961912014-04-22 13:54:32 -0700240 // Set aside the exception while we resolve its type.
241 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700242 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000243 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700244 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700245 // Default to handler not found.
246 uint32_t found_dex_pc = DexFile::kDexNoIndex;
247 // Iterate over the catch handlers associated with dex_pc.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800248 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800249 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800250 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800251 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700252 found_dex_pc = it.GetHandlerAddress();
253 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800254 }
255 // Does this catch exception type apply?
Vladimir Marko942fd312017-01-16 20:52:19 +0000256 mirror::Class* iter_exception_type = GetClassFromTypeIndex(iter_type_idx, true /* resolve */);
Ian Rogers822266b2014-05-29 16:55:06 -0700257 if (UNLIKELY(iter_exception_type == nullptr)) {
258 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
259 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700260 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700261 self->ClearException();
262 // Delete any long jump context as this routine is called during a stack walk which will
263 // release its in use context at the end.
264 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800265 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700266 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700267 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700268 found_dex_pc = it.GetHandlerAddress();
269 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800270 }
271 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700272 if (found_dex_pc != DexFile::kDexNoIndex) {
273 const Instruction* first_catch_instr =
Jeff Haoaa961912014-04-22 13:54:32 -0700274 Instruction::At(&code_item->insns_[found_dex_pc]);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700275 *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION);
276 }
Jeff Haoaa961912014-04-22 13:54:32 -0700277 // Put the exception back.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700278 if (exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000279 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700280 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700281 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800282}
283
Brian Carlstromea46f952013-07-30 01:26:50 -0700284void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800285 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700286 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
287 ThrowStackOverflowError(self);
288 return;
289 }
290
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800291 if (kIsDebugBuild) {
292 self->AssertThreadSuspensionIsAllowable();
293 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700294 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800295 }
296
297 // Push a transition back into managed code onto the linked list in thread.
298 ManagedStack fragment;
299 self->PushManagedStackFragment(&fragment);
300
Ian Rogers62d6c772013-02-27 08:32:07 -0800301 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700302 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200303 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700304 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
305 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200306 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700307 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700308 art::interpreter::EnterInterpreterFromInvoke(
309 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700310 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700311 mirror::Object* receiver =
312 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700313 art::interpreter::EnterInterpreterFromInvoke(
314 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800315 }
316 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700317 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700318
319 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800320 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800321 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700322 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700323 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700324 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700325 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700326 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700327
Elliott Hughes956af0f2014-12-11 14:34:28 -0800328 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800329 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100330 CHECK(!runtime->UseJitCompilation());
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100331 const void* oat_quick_code = (IsNative() || !IsInvokable() || IsProxyMethod())
332 ? nullptr
333 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100334 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700335 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700336 }
337
Elliott Hughes956af0f2014-12-11 14:34:28 -0800338 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800339 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800340 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800341 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800342 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000343 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200344 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700345 // exception was thrown to force the activations to be removed from the
346 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000347 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700348 }
349 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700350 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800351 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800352 }
353 } else {
David Sehr709b0702016-10-13 09:12:37 -0700354 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800355 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800356 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800357 }
358 }
359 }
360
361 // Pop transition.
362 self->PopManagedStackFragment(fragment);
363}
364
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700365void ArtMethod::RegisterNative(const void* native_method, bool is_fast) {
David Sehr709b0702016-10-13 09:12:37 -0700366 CHECK(IsNative()) << PrettyMethod();
367 CHECK(!IsFastNative()) << PrettyMethod();
368 CHECK(native_method != nullptr) << PrettyMethod();
Ian Rogers987560f2014-04-22 11:42:59 -0700369 if (is_fast) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700370 AddAccessFlags(kAccFastNative);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800371 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800372 SetEntryPointFromJni(native_method);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800373}
374
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700375void ArtMethod::UnregisterNative() {
David Sehr709b0702016-10-13 09:12:37 -0700376 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800377 // restore stub to lookup native pointer via dlsym
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700378 RegisterNative(GetJniDlsymLookupStub(), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800379}
380
Alex Light9139e002015-10-09 15:59:48 -0700381bool ArtMethod::IsOverridableByDefaultMethod() {
382 return GetDeclaringClass()->IsInterface();
383}
384
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700385bool ArtMethod::IsAnnotatedWithFastNative() {
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700386 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_FastNative,
387 DexFile::kDexVisibilityBuild);
388}
389
390bool ArtMethod::IsAnnotatedWithCriticalNative() {
391 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_CriticalNative,
392 DexFile::kDexVisibilityBuild);
393}
394
395bool ArtMethod::IsAnnotatedWith(jclass klass, uint32_t visibility) {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700396 Thread* self = Thread::Current();
397 ScopedObjectAccess soa(self);
398 StackHandleScope<1> shs(self);
399
Mathieu Chartier0795f232016-09-27 18:43:30 -0700400 ObjPtr<mirror::Class> annotation = soa.Decode<mirror::Class>(klass);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700401 DCHECK(annotation->IsAnnotation());
402 Handle<mirror::Class> annotation_handle(shs.NewHandle(annotation));
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700403
404 // Note: Resolves any method annotations' classes as a side-effect.
405 // -- This seems allowed by the spec since it says we can preload any classes
406 // referenced by another classes's constant pool table.
David Sehr9323e6e2016-09-13 08:58:35 -0700407 return annotations::IsMethodAnnotationPresent(this, annotation_handle, visibility);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700408}
409
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100410static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
411 uint16_t class_def_idx,
412 uint32_t method_idx) {
413 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
414 const uint8_t* class_data = dex_file.GetClassData(class_def);
415 CHECK(class_data != nullptr);
416 ClassDataItemIterator it(dex_file, class_data);
417 // Skip fields
418 while (it.HasNextStaticField()) {
419 it.Next();
420 }
421 while (it.HasNextInstanceField()) {
422 it.Next();
423 }
424 // Process methods
425 size_t class_def_method_index = 0;
426 while (it.HasNextDirectMethod()) {
427 if (it.GetMemberIndex() == method_idx) {
428 return class_def_method_index;
429 }
430 class_def_method_index++;
431 it.Next();
432 }
433 while (it.HasNextVirtualMethod()) {
434 if (it.GetMemberIndex() == method_idx) {
435 return class_def_method_index;
436 }
437 class_def_method_index++;
438 it.Next();
439 }
440 DCHECK(!it.HasNext());
441 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
442 UNREACHABLE();
443}
444
Alex Lighteee0bd42017-02-14 15:31:45 +0000445// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
446// method. This is extremely slow but we need it if we want to be able to have obsolete native
447// methods since we need this to find the size of its stack frames.
448//
449// NB We could (potentially) do this differently and rely on the way the transformation is applied
450// in order to use the entrypoint to find this information. However, for debugging reasons (most
451// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
452// directly from the dex file.
453static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
454 REQUIRES_SHARED(Locks::mutator_lock_) {
455 DCHECK(method->IsObsolete() && method->IsNative());
456 const DexFile* dex_file = method->GetDexFile();
457
458 // recreate the class_def_index from the descriptor.
459 std::string descriptor_storage;
460 const DexFile::TypeId* declaring_class_type_id =
461 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
462 CHECK(declaring_class_type_id != nullptr);
463 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
464 const DexFile::ClassDef* declaring_class_type_def =
465 dex_file->FindClassDef(declaring_class_type_index);
466 CHECK(declaring_class_type_def != nullptr);
467 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
468
469 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
470 declaring_class_def_index,
471 method->GetDexMethodIndex());
472
473 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
474 declaring_class_def_index,
475 found);
476 if (!(*found)) {
477 return OatFile::OatMethod::Invalid();
478 }
479 return oat_class.GetOatMethod(oat_method_index);
480}
481
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100482static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
483 PointerSize pointer_size,
484 bool* found)
485 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000486 if (UNLIKELY(method->IsObsolete())) {
487 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
488 // which we need to use the oat method to figure out how large the quick frame is.
489 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
490 << "order to allow stack walking. Other obsolete methods should "
491 << "never need to access this information.";
492 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
493 return FindOatMethodFromDexFileFor(method, found);
494 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100495 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
496 // method for direct methods (or virtual methods made direct).
497 mirror::Class* declaring_class = method->GetDeclaringClass();
498 size_t oat_method_index;
499 if (method->IsStatic() || method->IsDirect()) {
500 // Simple case where the oat method index was stashed at load time.
501 oat_method_index = method->GetMethodIndex();
502 } else {
503 // Compute the oat_method_index by search for its position in the declared virtual methods.
504 oat_method_index = declaring_class->NumDirectMethods();
505 bool found_virtual = false;
506 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
507 // Check method index instead of identity in case of duplicate method definitions.
508 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
509 found_virtual = true;
510 break;
511 }
512 oat_method_index++;
513 }
514 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700515 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100516 }
517 DCHECK_EQ(oat_method_index,
518 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
519 method->GetDeclaringClass()->GetDexClassDefIndex(),
520 method->GetDexMethodIndex()));
521 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
522 declaring_class->GetDexClassDefIndex(),
523 found);
524 if (!(*found)) {
525 return OatFile::OatMethod::Invalid();
526 }
527 return oat_class.GetOatMethod(oat_method_index);
528}
529
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700530bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
531 auto* dex_cache = GetDexCache();
532 auto* dex_file = dex_cache->GetDexFile();
533 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
534 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
535 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
536 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
537 auto param_len = params.Get() != nullptr ? params->GetLength() : 0u;
538 if (param_len != count) {
539 return false;
540 }
541 auto* cl = Runtime::Current()->GetClassLinker();
542 for (size_t i = 0; i < count; ++i) {
543 auto type_idx = proto_params->GetTypeItem(i).type_idx_;
544 auto* type = cl->ResolveType(type_idx, this);
545 if (type == nullptr) {
546 Thread::Current()->AssertPendingException();
547 return false;
548 }
549 if (type != params->GetWithoutChecks(i)) {
550 return false;
551 }
552 }
553 return true;
554}
555
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100556const uint8_t* ArtMethod::GetQuickenedInfo(PointerSize pointer_size) {
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100557 bool found = false;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100558 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100559 if (!found || (oat_method.GetQuickCode() != nullptr)) {
560 return nullptr;
561 }
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100562 if (kIsVdexEnabled) {
563 const OatQuickMethodHeader* header = oat_method.GetOatQuickMethodHeader();
564 // OatMethod without a header: no quickening table.
565 if (header == nullptr) {
566 return nullptr;
567 }
568 // The table is in the .vdex file.
569 const OatFile::OatDexFile* oat_dex_file = GetDexCache()->GetDexFile()->GetOatDexFile();
Mathieu Chartier1b868492016-11-16 16:22:37 -0800570 const OatFile* oat_file = oat_dex_file->GetOatFile();
571 if (oat_file == nullptr) {
572 return nullptr;
573 }
Mingyao Yang063fc772016-08-02 11:02:54 -0700574 return oat_file->DexBegin() + header->GetVmapTableOffset();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100575 } else {
576 return oat_method.GetVmapTable();
577 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100578}
579
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100580const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000581 // Our callers should make sure they don't pass the instrumentation exit pc,
582 // as this method does not look at the side instrumentation stack.
583 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
584
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000585 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100586 return nullptr;
587 }
588
589 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100590 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700591 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100592 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100593
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100594 if (class_linker->IsQuickGenericJniStub(existing_entry_point)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100595 // The generic JNI does not have any method header.
596 return nullptr;
597 }
598
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000599 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
600 DCHECK(IsProxyMethod() && !IsConstructor());
601 // The proxy entry point does not have any method header.
602 return nullptr;
603 }
604
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100605 // Check whether the current entry point contains this pc.
606 if (!class_linker->IsQuickResolutionStub(existing_entry_point) &&
607 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
608 OatQuickMethodHeader* method_header =
609 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100610
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100611 if (method_header->Contains(pc)) {
612 return method_header;
613 }
614 }
615
616 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100617 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100618 if (jit != nullptr) {
619 jit::JitCodeCache* code_cache = jit->GetCodeCache();
620 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
621 if (method_header != nullptr) {
622 DCHECK(method_header->Contains(pc));
623 return method_header;
624 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000625 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700626 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000627 << ", pc=" << std::hex << pc
628 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
629 << ", copy=" << std::boolalpha << IsCopied()
630 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100631 }
632 }
633
634 // The code has to be in an oat file.
635 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100636 OatFile::OatMethod oat_method =
637 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100638 if (!found) {
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000639 if (class_linker->IsQuickResolutionStub(existing_entry_point)) {
640 // We are running the generic jni stub, but the entry point of the method has not
641 // been updated yet.
Nicolas Geoffray703c2822015-10-30 12:23:16 +0000642 DCHECK_EQ(pc, 0u) << "Should be a downcall";
643 DCHECK(IsNative());
644 return nullptr;
645 }
646 if (existing_entry_point == GetQuickInstrumentationEntryPoint()) {
647 // We are running the generic jni stub, but the method is being instrumented.
648 DCHECK_EQ(pc, 0u) << "Should be a downcall";
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000649 DCHECK(IsNative());
650 return nullptr;
651 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100652 // Only for unit tests.
653 // TODO(ngeoffray): Update these tests to pass the right pc?
654 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
655 }
656 const void* oat_entry_point = oat_method.GetQuickCode();
657 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700658 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100659 return nullptr;
660 }
661
662 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
663 if (pc == 0) {
664 // This is a downcall, it can only happen for a native method.
665 DCHECK(IsNative());
666 return method_header;
667 }
668
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100669 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700670 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100671 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700672 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100673 return method_header;
674}
675
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100676const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
677 bool found;
678 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
679 if (found) {
680 return oat_method.GetQuickCode();
681 }
682 return nullptr;
683}
684
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000685bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100686 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
687 return false;
688 }
689
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000690 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100691 Runtime* runtime = Runtime::Current();
692 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000693 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
694 return true;
695 }
696
697 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100698 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000699}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000700
Andreas Gampe542451c2016-07-26 09:02:02 -0700701void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000702 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
703 Size(image_pointer_size));
704 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
705
706 // If the entry point of the method we are copying from is from JIT code, we just
707 // put the entry point of the new method to interpreter. We could set the entry point
708 // to the JIT code, but this would require taking the JIT code cache lock to notify
709 // it, which we do not want at this level.
710 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100711 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000712 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
713 SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(), image_pointer_size);
714 }
715 }
716 // Clear the profiling info for the same reasons as the JIT code.
717 if (!src->IsNative()) {
718 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
719 }
720 // Clear hotness to let the JIT properly decide when to compile this method.
721 hotness_count_ = 0;
722}
723
Andreas Gampe542451c2016-07-26 09:02:02 -0700724bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700725 // Hijack this function to get access to PtrSizedFieldsOffset.
726 //
727 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
728 // 64-bit builds.
729 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700730 static_assert(
731 (sizeof(void*) != 4) ||
732 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
733 "Unexpected 32-bit class layout.");
734 static_assert(
735 (sizeof(void*) != 8) ||
736 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
737 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700738
Andreas Gampe75f08852016-07-19 08:06:07 -0700739 Runtime* runtime = Runtime::Current();
740 if (runtime == nullptr) {
741 return true;
742 }
743 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
744}
745
David Sehr709b0702016-10-13 09:12:37 -0700746std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
747 if (m == nullptr) {
748 return "null";
749 }
750 return m->PrettyMethod(with_signature);
751}
752
753std::string ArtMethod::PrettyMethod(bool with_signature) {
754 ArtMethod* m = this;
755 if (!m->IsRuntimeMethod()) {
756 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
757 }
758 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
759 result += '.';
760 result += m->GetName();
761 if (UNLIKELY(m->IsFastNative())) {
762 result += "!";
763 }
764 if (with_signature) {
765 const Signature signature = m->GetSignature();
766 std::string sig_as_string(signature.ToString());
767 if (signature == Signature::NoSignature()) {
768 return result + sig_as_string;
769 }
770 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
771 PrettyArguments(sig_as_string.c_str());
772 }
773 return result;
774}
775
776std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800777 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700778}
779
780std::string ArtMethod::JniLongName() {
781 std::string long_name;
782 long_name += JniShortName();
783 long_name += "__";
784
785 std::string signature(GetSignature().ToString());
786 signature.erase(0, 1);
787 signature.erase(signature.begin() + signature.find(')'), signature.end());
788
789 long_name += MangleForJni(signature);
790
791 return long_name;
792}
793
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800794} // namespace art