blob: 45dd5965fba2d554f6e3a3c3beeb9efb0c773fd2 [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"
Nicolas Geoffrayb02ba932017-07-13 15:53:54 +010047#include "vdex_file.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
Andreas Gampeaea05c12017-05-19 08:45:02 -070059DEFINE_RUNTIME_DEBUG_FLAG(ArtMethod, kCheckDeclaringClassState);
60
Andreas Gampec6ea7d02017-02-01 16:46:28 -080061// Enforce that we he have the right index for runtime methods.
62static_assert(ArtMethod::kRuntimeMethodDexMethodIndex == DexFile::kDexNoIndex,
63 "Wrong runtime-method dex method index");
64
Alex Light97e78032017-06-27 17:51:55 -070065ArtMethod* ArtMethod::GetCanonicalMethod(PointerSize pointer_size) {
66 if (LIKELY(!IsDefault())) {
67 return this;
68 } else {
69 mirror::Class* declaring_class = GetDeclaringClass();
70 ArtMethod* ret = declaring_class->FindDeclaredVirtualMethod(declaring_class->GetDexCache(),
71 GetDexMethodIndex(),
72 pointer_size);
73 DCHECK(ret != nullptr);
74 return ret;
75 }
76}
77
Alex Light4ba388a2017-01-27 10:26:49 -080078ArtMethod* ArtMethod::GetNonObsoleteMethod() {
79 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
80 if (LIKELY(!IsObsolete())) {
81 return this;
82 } else if (IsDirect()) {
83 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()];
84 } else {
85 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize);
86 }
87}
88
Mingyao Yange8fcd012017-01-20 10:43:30 -080089ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Mingyao Yang063fc772016-08-02 11:02:54 -070090 if (!IsAbstract()) {
91 // A non-abstract's single implementation is itself.
92 return this;
93 }
Mingyao Yange8fcd012017-01-20 10:43:30 -080094 return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size));
Mingyao Yang063fc772016-08-02 11:02:54 -070095}
96
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070097ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
98 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -070099 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +0100100 DCHECK(executable != nullptr);
101 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -0700102}
103
Alex Lighta01de592016-11-15 10:43:06 -0800104mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
105 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
106 DCHECK(IsObsolete());
107 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
108 CHECK(!ext.IsNull());
109 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
110 CHECK(!obsolete_methods.IsNull());
111 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
112 int32_t len = obsolete_methods->GetLength();
113 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -0800114 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
115 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -0800116 PointerSize pointer_size = kRuntimePointerSize;
117 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
118 for (int32_t i = 0; i < len; i++) {
119 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
120 return ext->GetObsoleteDexCaches()->Get(i);
121 }
122 }
123 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
124 UNREACHABLE();
125}
126
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000127uint16_t ArtMethod::FindObsoleteDexClassDefIndex() {
128 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
129 DCHECK(IsObsolete());
130 const DexFile* dex_file = GetDexFile();
131 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
132 const DexFile::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type);
133 CHECK(class_def != nullptr);
134 return dex_file->GetIndexForClassDef(*class_def);
135}
136
Ian Rogers6b14d552014-10-28 21:50:58 -0700137mirror::String* ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700138 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -0700139 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700140 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
141 auto* dex_file = dex_cache->GetDexFile();
142 uint32_t dex_method_idx = GetDexMethodIndex();
143 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Ian Rogers6b14d552014-10-28 21:50:58 -0700144 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
145 dex_cache);
146}
147
Alex Light9139e002015-10-09 15:59:48 -0700148void ArtMethod::ThrowInvocationTimeError() {
149 DCHECK(!IsInvokable());
150 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
151 // due to the way we select it.
152 if (IsDefaultConflicting()) {
153 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
154 } else {
155 DCHECK(IsAbstract());
156 ThrowAbstractMethodError(this);
157 }
158}
159
Ian Rogersef7d42f2014-01-06 12:55:46 -0800160InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800161 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000162 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000163 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000164 } else if (GetDeclaringClass()->IsInterface()) {
165 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800166 } else if (IsDirect()) {
167 return kDirect;
168 } else {
169 return kVirtual;
170 }
171}
172
Brian Carlstromea46f952013-07-30 01:26:50 -0700173size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700174 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800175 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700176 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800177 char ch = shorty[i];
178 if (ch == 'D' || ch == 'J') {
179 num_registers += 2;
180 } else {
181 num_registers += 1;
182 }
183 }
184 return num_registers;
185}
186
Alex Light6c8467f2015-11-20 15:03:26 -0800187bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700188 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800189 const DexFile* dex_file = GetDexFile();
190 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
191 if (GetDexCache() == other->GetDexCache()) {
192 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800193 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
194 }
Alex Light6c8467f2015-11-20 15:03:26 -0800195 const DexFile* dex_file2 = other->GetDexFile();
196 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800197 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
198 return false; // Name mismatch.
199 }
200 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
201}
202
Andreas Gampe542451c2016-07-26 09:02:02 -0700203ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800204 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800205 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800206 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700207 mirror::Class* declaring_class = GetDeclaringClass();
208 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800209 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800210 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800211 // Did this method override a super class method? If so load the result from the super class'
212 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700213 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700214 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800215 } else {
216 // Method didn't override superclass method so search interfaces
217 if (IsProxyMethod()) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100218 result = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
219 GetDexMethodIndex(),
220 pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800221 CHECK_EQ(result,
222 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
223 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700224 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800225 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700226 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800227 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
228 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
229 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800230 break;
231 }
232 }
233 }
234 }
235 }
Alex Light6c8467f2015-11-20 15:03:26 -0800236 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800237 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
238 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800239 return result;
240}
241
Ian Rogerse0a02da2014-12-02 14:10:53 -0800242uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
243 uint32_t name_and_signature_idx) {
244 const DexFile* dexfile = GetDexFile();
245 const uint32_t dex_method_idx = GetDexMethodIndex();
246 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
247 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
248 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
249 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
250 if (dexfile == &other_dexfile) {
251 return dex_method_idx;
252 }
253 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700254 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
255 if (other_type_id != nullptr) {
256 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
257 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
258 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
259 if (other_mid != nullptr) {
260 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800261 }
262 }
263 return DexFile::kDexNoIndex;
264}
265
Mathieu Chartiere401d142015-04-22 13:56:20 -0700266uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700267 uint32_t dex_pc, bool* has_no_move_exception) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700268 const DexFile::CodeItem* code_item = GetCodeItem();
Jeff Haoaa961912014-04-22 13:54:32 -0700269 // Set aside the exception while we resolve its type.
270 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700271 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000272 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700273 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700274 // Default to handler not found.
275 uint32_t found_dex_pc = DexFile::kDexNoIndex;
276 // Iterate over the catch handlers associated with dex_pc.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800277 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800278 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800279 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800280 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700281 found_dex_pc = it.GetHandlerAddress();
282 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800283 }
284 // Does this catch exception type apply?
Vladimir Marko942fd312017-01-16 20:52:19 +0000285 mirror::Class* iter_exception_type = GetClassFromTypeIndex(iter_type_idx, true /* resolve */);
Ian Rogers822266b2014-05-29 16:55:06 -0700286 if (UNLIKELY(iter_exception_type == nullptr)) {
287 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
288 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700289 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700290 self->ClearException();
291 // Delete any long jump context as this routine is called during a stack walk which will
292 // release its in use context at the end.
293 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800294 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700295 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700296 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700297 found_dex_pc = it.GetHandlerAddress();
298 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800299 }
300 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700301 if (found_dex_pc != DexFile::kDexNoIndex) {
302 const Instruction* first_catch_instr =
Jeff Haoaa961912014-04-22 13:54:32 -0700303 Instruction::At(&code_item->insns_[found_dex_pc]);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700304 *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION);
305 }
Jeff Haoaa961912014-04-22 13:54:32 -0700306 // Put the exception back.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800307 if (exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000308 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700309 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700310 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800311}
312
Brian Carlstromea46f952013-07-30 01:26:50 -0700313void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800314 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700315 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
316 ThrowStackOverflowError(self);
317 return;
318 }
319
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800320 if (kIsDebugBuild) {
321 self->AssertThreadSuspensionIsAllowable();
322 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700323 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800324 }
325
326 // Push a transition back into managed code onto the linked list in thread.
327 ManagedStack fragment;
328 self->PushManagedStackFragment(&fragment);
329
Ian Rogers62d6c772013-02-27 08:32:07 -0800330 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700331 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200332 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700333 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
334 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200335 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700336 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700337 art::interpreter::EnterInterpreterFromInvoke(
338 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700339 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700340 mirror::Object* receiver =
341 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700342 art::interpreter::EnterInterpreterFromInvoke(
343 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800344 }
345 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700346 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700347
348 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800349 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800350 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700351 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700352 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700353 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700354 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700355 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700356
Elliott Hughes956af0f2014-12-11 14:34:28 -0800357 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800358 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100359 CHECK(!runtime->UseJitCompilation());
Alex Lightdb01a092017-04-03 15:39:55 -0700360 const void* oat_quick_code =
361 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100362 ? nullptr
363 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100364 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700365 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700366 }
367
Elliott Hughes956af0f2014-12-11 14:34:28 -0800368 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800369 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800370 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800371 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800372 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000373 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200374 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700375 // exception was thrown to force the activations to be removed from the
376 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000377 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700378 }
379 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700380 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800381 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800382 }
383 } else {
David Sehr709b0702016-10-13 09:12:37 -0700384 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800385 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800386 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800387 }
388 }
389 }
390
391 // Pop transition.
392 self->PopManagedStackFragment(fragment);
393}
394
Alex Lightd78ddec2017-04-18 15:20:38 -0700395const void* ArtMethod::RegisterNative(const void* native_method, bool is_fast) {
David Sehr709b0702016-10-13 09:12:37 -0700396 CHECK(IsNative()) << PrettyMethod();
397 CHECK(!IsFastNative()) << PrettyMethod();
398 CHECK(native_method != nullptr) << PrettyMethod();
Ian Rogers987560f2014-04-22 11:42:59 -0700399 if (is_fast) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700400 AddAccessFlags(kAccFastNative);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800401 }
Alex Lightd78ddec2017-04-18 15:20:38 -0700402 void* new_native_method = nullptr;
403 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this,
404 native_method,
405 /*out*/&new_native_method);
406 SetEntryPointFromJni(new_native_method);
407 return new_native_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800408}
409
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700410void ArtMethod::UnregisterNative() {
David Sehr709b0702016-10-13 09:12:37 -0700411 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800412 // restore stub to lookup native pointer via dlsym
Alex Lightd78ddec2017-04-18 15:20:38 -0700413 SetEntryPointFromJni(GetJniDlsymLookupStub());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800414}
415
Alex Light9139e002015-10-09 15:59:48 -0700416bool ArtMethod::IsOverridableByDefaultMethod() {
417 return GetDeclaringClass()->IsInterface();
418}
419
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700420bool ArtMethod::IsAnnotatedWithFastNative() {
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700421 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_FastNative,
Roland Levillain35e42f02017-06-26 18:14:39 +0100422 DexFile::kDexVisibilityBuild,
423 /* lookup_in_resolved_boot_classes */ true);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700424}
425
426bool ArtMethod::IsAnnotatedWithCriticalNative() {
427 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_CriticalNative,
Roland Levillain35e42f02017-06-26 18:14:39 +0100428 DexFile::kDexVisibilityBuild,
429 /* lookup_in_resolved_boot_classes */ true);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700430}
431
Roland Levillain35e42f02017-06-26 18:14:39 +0100432bool ArtMethod::IsAnnotatedWith(jclass klass,
433 uint32_t visibility,
434 bool lookup_in_resolved_boot_classes) {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700435 Thread* self = Thread::Current();
436 ScopedObjectAccess soa(self);
437 StackHandleScope<1> shs(self);
438
Mathieu Chartier0795f232016-09-27 18:43:30 -0700439 ObjPtr<mirror::Class> annotation = soa.Decode<mirror::Class>(klass);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700440 DCHECK(annotation->IsAnnotation());
441 Handle<mirror::Class> annotation_handle(shs.NewHandle(annotation));
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700442
Roland Levillain35e42f02017-06-26 18:14:39 +0100443 return annotations::IsMethodAnnotationPresent(
444 this, annotation_handle, visibility, lookup_in_resolved_boot_classes);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700445}
446
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100447static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
448 uint16_t class_def_idx,
449 uint32_t method_idx) {
450 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
451 const uint8_t* class_data = dex_file.GetClassData(class_def);
452 CHECK(class_data != nullptr);
453 ClassDataItemIterator it(dex_file, class_data);
Mathieu Chartiere17cf242017-06-19 11:05:51 -0700454 it.SkipAllFields();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100455 // Process methods
456 size_t class_def_method_index = 0;
457 while (it.HasNextDirectMethod()) {
458 if (it.GetMemberIndex() == method_idx) {
459 return class_def_method_index;
460 }
461 class_def_method_index++;
462 it.Next();
463 }
464 while (it.HasNextVirtualMethod()) {
465 if (it.GetMemberIndex() == method_idx) {
466 return class_def_method_index;
467 }
468 class_def_method_index++;
469 it.Next();
470 }
471 DCHECK(!it.HasNext());
472 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
473 UNREACHABLE();
474}
475
Alex Lighteee0bd42017-02-14 15:31:45 +0000476// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
477// method. This is extremely slow but we need it if we want to be able to have obsolete native
478// methods since we need this to find the size of its stack frames.
479//
480// NB We could (potentially) do this differently and rely on the way the transformation is applied
481// in order to use the entrypoint to find this information. However, for debugging reasons (most
482// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
483// directly from the dex file.
484static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
485 REQUIRES_SHARED(Locks::mutator_lock_) {
486 DCHECK(method->IsObsolete() && method->IsNative());
487 const DexFile* dex_file = method->GetDexFile();
488
489 // recreate the class_def_index from the descriptor.
490 std::string descriptor_storage;
491 const DexFile::TypeId* declaring_class_type_id =
492 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
493 CHECK(declaring_class_type_id != nullptr);
494 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
495 const DexFile::ClassDef* declaring_class_type_def =
496 dex_file->FindClassDef(declaring_class_type_index);
497 CHECK(declaring_class_type_def != nullptr);
498 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
499
500 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
501 declaring_class_def_index,
502 method->GetDexMethodIndex());
503
504 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
505 declaring_class_def_index,
506 found);
507 if (!(*found)) {
508 return OatFile::OatMethod::Invalid();
509 }
510 return oat_class.GetOatMethod(oat_method_index);
511}
512
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100513static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
514 PointerSize pointer_size,
515 bool* found)
516 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000517 if (UNLIKELY(method->IsObsolete())) {
518 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
519 // which we need to use the oat method to figure out how large the quick frame is.
520 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
521 << "order to allow stack walking. Other obsolete methods should "
522 << "never need to access this information.";
523 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
524 return FindOatMethodFromDexFileFor(method, found);
525 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100526 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
527 // method for direct methods (or virtual methods made direct).
528 mirror::Class* declaring_class = method->GetDeclaringClass();
529 size_t oat_method_index;
530 if (method->IsStatic() || method->IsDirect()) {
531 // Simple case where the oat method index was stashed at load time.
532 oat_method_index = method->GetMethodIndex();
533 } else {
534 // Compute the oat_method_index by search for its position in the declared virtual methods.
535 oat_method_index = declaring_class->NumDirectMethods();
536 bool found_virtual = false;
537 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
538 // Check method index instead of identity in case of duplicate method definitions.
539 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
540 found_virtual = true;
541 break;
542 }
543 oat_method_index++;
544 }
545 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700546 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100547 }
548 DCHECK_EQ(oat_method_index,
549 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
550 method->GetDeclaringClass()->GetDexClassDefIndex(),
551 method->GetDexMethodIndex()));
552 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
553 declaring_class->GetDexClassDefIndex(),
554 found);
555 if (!(*found)) {
556 return OatFile::OatMethod::Invalid();
557 }
558 return oat_class.GetOatMethod(oat_method_index);
559}
560
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700561bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
562 auto* dex_cache = GetDexCache();
563 auto* dex_file = dex_cache->GetDexFile();
564 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
565 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
566 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
567 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
Andreas Gampefa4333d2017-02-14 11:10:34 -0800568 auto param_len = params != nullptr ? params->GetLength() : 0u;
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700569 if (param_len != count) {
570 return false;
571 }
572 auto* cl = Runtime::Current()->GetClassLinker();
573 for (size_t i = 0; i < count; ++i) {
574 auto type_idx = proto_params->GetTypeItem(i).type_idx_;
575 auto* type = cl->ResolveType(type_idx, this);
576 if (type == nullptr) {
577 Thread::Current()->AssertPendingException();
578 return false;
579 }
580 if (type != params->GetWithoutChecks(i)) {
581 return false;
582 }
583 }
584 return true;
585}
586
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100587const uint8_t* ArtMethod::GetQuickenedInfo(PointerSize pointer_size) {
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100588 if (kIsVdexEnabled) {
Nicolas Geoffrayb02ba932017-07-13 15:53:54 +0100589 const DexFile& dex_file = GetDeclaringClass()->GetDexFile();
590 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile();
591 if (oat_dex_file == nullptr || (oat_dex_file->GetOatFile() == nullptr)) {
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100592 return nullptr;
593 }
Nicolas Geoffrayb02ba932017-07-13 15:53:54 +0100594 return oat_dex_file->GetOatFile()->GetVdexFile()->GetQuickenedInfoOf(
595 dex_file, GetCodeItemOffset());
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100596 } else {
Nicolas Geoffrayb02ba932017-07-13 15:53:54 +0100597 bool found = false;
598 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
599 if (!found || (oat_method.GetQuickCode() != nullptr)) {
600 return nullptr;
601 }
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100602 return oat_method.GetVmapTable();
603 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100604}
605
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100606const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000607 // Our callers should make sure they don't pass the instrumentation exit pc,
608 // as this method does not look at the side instrumentation stack.
609 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
610
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000611 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100612 return nullptr;
613 }
614
615 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100616 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700617 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100618 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100619
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100620 if (class_linker->IsQuickGenericJniStub(existing_entry_point)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100621 // The generic JNI does not have any method header.
622 return nullptr;
623 }
624
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000625 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
626 DCHECK(IsProxyMethod() && !IsConstructor());
627 // The proxy entry point does not have any method header.
628 return nullptr;
629 }
630
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100631 // Check whether the current entry point contains this pc.
632 if (!class_linker->IsQuickResolutionStub(existing_entry_point) &&
633 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
634 OatQuickMethodHeader* method_header =
635 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100636
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100637 if (method_header->Contains(pc)) {
638 return method_header;
639 }
640 }
641
642 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100643 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100644 if (jit != nullptr) {
645 jit::JitCodeCache* code_cache = jit->GetCodeCache();
646 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
647 if (method_header != nullptr) {
648 DCHECK(method_header->Contains(pc));
649 return method_header;
650 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000651 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700652 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000653 << ", pc=" << std::hex << pc
654 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
655 << ", copy=" << std::boolalpha << IsCopied()
656 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100657 }
658 }
659
660 // The code has to be in an oat file.
661 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100662 OatFile::OatMethod oat_method =
663 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100664 if (!found) {
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000665 if (class_linker->IsQuickResolutionStub(existing_entry_point)) {
666 // We are running the generic jni stub, but the entry point of the method has not
667 // been updated yet.
Nicolas Geoffray703c2822015-10-30 12:23:16 +0000668 DCHECK_EQ(pc, 0u) << "Should be a downcall";
669 DCHECK(IsNative());
670 return nullptr;
671 }
672 if (existing_entry_point == GetQuickInstrumentationEntryPoint()) {
673 // We are running the generic jni stub, but the method is being instrumented.
Alex Lightb7edcda2017-04-27 13:20:31 -0700674 // NB We would normally expect the pc to be zero but we can have non-zero pc's if
675 // instrumentation is installed or removed during the call which is using the generic jni
676 // trampoline.
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000677 DCHECK(IsNative());
678 return nullptr;
679 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100680 // Only for unit tests.
681 // TODO(ngeoffray): Update these tests to pass the right pc?
682 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
683 }
684 const void* oat_entry_point = oat_method.GetQuickCode();
685 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700686 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100687 return nullptr;
688 }
689
690 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
691 if (pc == 0) {
692 // This is a downcall, it can only happen for a native method.
693 DCHECK(IsNative());
694 return method_header;
695 }
696
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100697 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700698 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100699 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700700 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100701 return method_header;
702}
703
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100704const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
705 bool found;
706 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
707 if (found) {
708 return oat_method.GetQuickCode();
709 }
710 return nullptr;
711}
712
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000713bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100714 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
715 return false;
716 }
717
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000718 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100719 Runtime* runtime = Runtime::Current();
720 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000721 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
722 return true;
723 }
724
725 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100726 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000727}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000728
Andreas Gampe542451c2016-07-26 09:02:02 -0700729void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000730 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
731 Size(image_pointer_size));
732 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
733
734 // If the entry point of the method we are copying from is from JIT code, we just
735 // put the entry point of the new method to interpreter. We could set the entry point
736 // to the JIT code, but this would require taking the JIT code cache lock to notify
737 // it, which we do not want at this level.
738 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100739 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000740 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
741 SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(), image_pointer_size);
742 }
743 }
744 // Clear the profiling info for the same reasons as the JIT code.
745 if (!src->IsNative()) {
746 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
747 }
748 // Clear hotness to let the JIT properly decide when to compile this method.
749 hotness_count_ = 0;
750}
751
Andreas Gampe542451c2016-07-26 09:02:02 -0700752bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700753 // Hijack this function to get access to PtrSizedFieldsOffset.
754 //
755 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
756 // 64-bit builds.
757 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700758 static_assert(
759 (sizeof(void*) != 4) ||
760 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
761 "Unexpected 32-bit class layout.");
762 static_assert(
763 (sizeof(void*) != 8) ||
764 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
765 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700766
Andreas Gampe75f08852016-07-19 08:06:07 -0700767 Runtime* runtime = Runtime::Current();
768 if (runtime == nullptr) {
769 return true;
770 }
771 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
772}
773
David Sehr709b0702016-10-13 09:12:37 -0700774std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
775 if (m == nullptr) {
776 return "null";
777 }
778 return m->PrettyMethod(with_signature);
779}
780
781std::string ArtMethod::PrettyMethod(bool with_signature) {
782 ArtMethod* m = this;
783 if (!m->IsRuntimeMethod()) {
784 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
785 }
786 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
787 result += '.';
788 result += m->GetName();
789 if (UNLIKELY(m->IsFastNative())) {
790 result += "!";
791 }
792 if (with_signature) {
793 const Signature signature = m->GetSignature();
794 std::string sig_as_string(signature.ToString());
795 if (signature == Signature::NoSignature()) {
796 return result + sig_as_string;
797 }
798 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
799 PrettyArguments(sig_as_string.c_str());
800 }
801 return result;
802}
803
804std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800805 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700806}
807
808std::string ArtMethod::JniLongName() {
809 std::string long_name;
810 long_name += JniShortName();
811 long_name += "__";
812
813 std::string signature(GetSignature().ToString());
814 signature.erase(0, 1);
815 signature.erase(signature.begin() + signature.find(')'), signature.end());
816
817 long_name += MangleForJni(signature);
818
819 return long_name;
820}
821
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800822// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
823// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
824template <ReadBarrierOption kReadBarrierOption>
825ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method)
826 NO_THREAD_SAFETY_ANALYSIS {
827 CHECK(method->IsRuntimeMethod() ||
828 method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
829 method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
830}
831
832template <ReadBarrierOption kReadBarrierOption> void ArtMethod::GetAccessFlagsDCheck() {
833 if (kCheckDeclaringClassState) {
834 Thread* self = Thread::Current();
835 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
836 if (self->IsThreadSuspensionAllowable()) {
837 ScopedObjectAccess soa(self);
838 CHECK(IsRuntimeMethod() ||
839 GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
840 GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
841 }
842 } else {
843 // We cannot use SOA in this case. We might be holding the lock, but may not be in the
844 // runnable state (e.g., during GC).
845 Locks::mutator_lock_->AssertSharedHeld(self);
846 DoGetAccessFlagsHelper<kReadBarrierOption>(this);
847 }
848 }
849}
850template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithReadBarrier>();
851template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithoutReadBarrier>();
852
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800853} // namespace art