blob: a6ee7eb76943c55b62247746a964b939cd80b585 [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
Andreas Gampec6ea7d02017-02-01 16:46:28 -080059// Enforce that we he have the right index for runtime methods.
60static_assert(ArtMethod::kRuntimeMethodDexMethodIndex == DexFile::kDexNoIndex,
61 "Wrong runtime-method dex method index");
62
Alex Light4ba388a2017-01-27 10:26:49 -080063ArtMethod* ArtMethod::GetNonObsoleteMethod() {
64 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
65 if (LIKELY(!IsObsolete())) {
66 return this;
67 } else if (IsDirect()) {
68 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()];
69 } else {
70 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize);
71 }
72}
73
Mingyao Yange8fcd012017-01-20 10:43:30 -080074ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) {
Mingyao Yang063fc772016-08-02 11:02:54 -070075 if (!IsAbstract()) {
76 // A non-abstract's single implementation is itself.
77 return this;
78 }
Mingyao Yange8fcd012017-01-20 10:43:30 -080079 return reinterpret_cast<ArtMethod*>(GetDataPtrSize(pointer_size));
Mingyao Yang063fc772016-08-02 11:02:54 -070080}
81
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070082ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
83 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -070084 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +010085 DCHECK(executable != nullptr);
86 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -070087}
88
Alex Lighta01de592016-11-15 10:43:06 -080089mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
90 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
91 DCHECK(IsObsolete());
92 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
93 CHECK(!ext.IsNull());
94 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
95 CHECK(!obsolete_methods.IsNull());
96 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
97 int32_t len = obsolete_methods->GetLength();
98 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -080099 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
100 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -0800101 PointerSize pointer_size = kRuntimePointerSize;
102 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
103 for (int32_t i = 0; i < len; i++) {
104 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
105 return ext->GetObsoleteDexCaches()->Get(i);
106 }
107 }
108 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
109 UNREACHABLE();
110}
111
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000112uint16_t ArtMethod::FindObsoleteDexClassDefIndex() {
113 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
114 DCHECK(IsObsolete());
115 const DexFile* dex_file = GetDexFile();
116 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
117 const DexFile::ClassDef* class_def = dex_file->FindClassDef(declaring_class_type);
118 CHECK(class_def != nullptr);
119 return dex_file->GetIndexForClassDef(*class_def);
120}
121
Ian Rogers6b14d552014-10-28 21:50:58 -0700122mirror::String* ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700123 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -0700124 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700125 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
126 auto* dex_file = dex_cache->GetDexFile();
127 uint32_t dex_method_idx = GetDexMethodIndex();
128 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Ian Rogers6b14d552014-10-28 21:50:58 -0700129 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
130 dex_cache);
131}
132
Alex Light9139e002015-10-09 15:59:48 -0700133void ArtMethod::ThrowInvocationTimeError() {
134 DCHECK(!IsInvokable());
135 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
136 // due to the way we select it.
137 if (IsDefaultConflicting()) {
138 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
139 } else {
140 DCHECK(IsAbstract());
141 ThrowAbstractMethodError(this);
142 }
143}
144
Ian Rogersef7d42f2014-01-06 12:55:46 -0800145InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800146 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000147 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000148 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000149 } else if (GetDeclaringClass()->IsInterface()) {
150 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800151 } else if (IsDirect()) {
152 return kDirect;
153 } else {
154 return kVirtual;
155 }
156}
157
Brian Carlstromea46f952013-07-30 01:26:50 -0700158size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700159 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800160 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700161 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800162 char ch = shorty[i];
163 if (ch == 'D' || ch == 'J') {
164 num_registers += 2;
165 } else {
166 num_registers += 1;
167 }
168 }
169 return num_registers;
170}
171
Alex Light6c8467f2015-11-20 15:03:26 -0800172bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700173 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800174 const DexFile* dex_file = GetDexFile();
175 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
176 if (GetDexCache() == other->GetDexCache()) {
177 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800178 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
179 }
Alex Light6c8467f2015-11-20 15:03:26 -0800180 const DexFile* dex_file2 = other->GetDexFile();
181 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800182 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
183 return false; // Name mismatch.
184 }
185 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
186}
187
Andreas Gampe542451c2016-07-26 09:02:02 -0700188ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800189 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800190 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800191 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700192 mirror::Class* declaring_class = GetDeclaringClass();
193 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800194 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800195 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800196 // Did this method override a super class method? If so load the result from the super class'
197 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700198 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700199 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800200 } else {
201 // Method didn't override superclass method so search interfaces
202 if (IsProxyMethod()) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100203 result = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
204 GetDexMethodIndex(),
205 pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800206 CHECK_EQ(result,
207 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
208 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700209 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800210 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700211 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800212 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
213 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
214 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800215 break;
216 }
217 }
218 }
219 }
220 }
Alex Light6c8467f2015-11-20 15:03:26 -0800221 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800222 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
223 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800224 return result;
225}
226
Ian Rogerse0a02da2014-12-02 14:10:53 -0800227uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
228 uint32_t name_and_signature_idx) {
229 const DexFile* dexfile = GetDexFile();
230 const uint32_t dex_method_idx = GetDexMethodIndex();
231 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
232 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
233 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
234 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
235 if (dexfile == &other_dexfile) {
236 return dex_method_idx;
237 }
238 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700239 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
240 if (other_type_id != nullptr) {
241 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
242 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
243 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
244 if (other_mid != nullptr) {
245 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800246 }
247 }
248 return DexFile::kDexNoIndex;
249}
250
Mathieu Chartiere401d142015-04-22 13:56:20 -0700251uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700252 uint32_t dex_pc, bool* has_no_move_exception) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700253 const DexFile::CodeItem* code_item = GetCodeItem();
Jeff Haoaa961912014-04-22 13:54:32 -0700254 // Set aside the exception while we resolve its type.
255 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700256 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000257 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700258 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700259 // Default to handler not found.
260 uint32_t found_dex_pc = DexFile::kDexNoIndex;
261 // Iterate over the catch handlers associated with dex_pc.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800262 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800263 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800264 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800265 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700266 found_dex_pc = it.GetHandlerAddress();
267 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800268 }
269 // Does this catch exception type apply?
Vladimir Marko942fd312017-01-16 20:52:19 +0000270 mirror::Class* iter_exception_type = GetClassFromTypeIndex(iter_type_idx, true /* resolve */);
Ian Rogers822266b2014-05-29 16:55:06 -0700271 if (UNLIKELY(iter_exception_type == nullptr)) {
272 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
273 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700274 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700275 self->ClearException();
276 // Delete any long jump context as this routine is called during a stack walk which will
277 // release its in use context at the end.
278 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800279 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700280 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700281 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700282 found_dex_pc = it.GetHandlerAddress();
283 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800284 }
285 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700286 if (found_dex_pc != DexFile::kDexNoIndex) {
287 const Instruction* first_catch_instr =
Jeff Haoaa961912014-04-22 13:54:32 -0700288 Instruction::At(&code_item->insns_[found_dex_pc]);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700289 *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION);
290 }
Jeff Haoaa961912014-04-22 13:54:32 -0700291 // Put the exception back.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800292 if (exception != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000293 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700294 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700295 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800296}
297
Brian Carlstromea46f952013-07-30 01:26:50 -0700298void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800299 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700300 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
301 ThrowStackOverflowError(self);
302 return;
303 }
304
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800305 if (kIsDebugBuild) {
306 self->AssertThreadSuspensionIsAllowable();
307 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700308 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800309 }
310
311 // Push a transition back into managed code onto the linked list in thread.
312 ManagedStack fragment;
313 self->PushManagedStackFragment(&fragment);
314
Ian Rogers62d6c772013-02-27 08:32:07 -0800315 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700316 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200317 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700318 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
319 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200320 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700321 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700322 art::interpreter::EnterInterpreterFromInvoke(
323 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700324 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700325 mirror::Object* receiver =
326 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700327 art::interpreter::EnterInterpreterFromInvoke(
328 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800329 }
330 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700331 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700332
333 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800334 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800335 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700336 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700337 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700338 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700339 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700340 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700341
Elliott Hughes956af0f2014-12-11 14:34:28 -0800342 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800343 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100344 CHECK(!runtime->UseJitCompilation());
Alex Lightdb01a092017-04-03 15:39:55 -0700345 const void* oat_quick_code =
346 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100347 ? nullptr
348 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100349 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700350 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700351 }
352
Elliott Hughes956af0f2014-12-11 14:34:28 -0800353 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800354 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800355 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800356 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800357 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000358 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200359 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700360 // exception was thrown to force the activations to be removed from the
361 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000362 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700363 }
364 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700365 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800366 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800367 }
368 } else {
David Sehr709b0702016-10-13 09:12:37 -0700369 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800370 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800371 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800372 }
373 }
374 }
375
376 // Pop transition.
377 self->PopManagedStackFragment(fragment);
378}
379
Alex Lightd78ddec2017-04-18 15:20:38 -0700380const void* ArtMethod::RegisterNative(const void* native_method, bool is_fast) {
David Sehr709b0702016-10-13 09:12:37 -0700381 CHECK(IsNative()) << PrettyMethod();
382 CHECK(!IsFastNative()) << PrettyMethod();
383 CHECK(native_method != nullptr) << PrettyMethod();
Ian Rogers987560f2014-04-22 11:42:59 -0700384 if (is_fast) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700385 AddAccessFlags(kAccFastNative);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800386 }
Alex Lightd78ddec2017-04-18 15:20:38 -0700387 void* new_native_method = nullptr;
388 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this,
389 native_method,
390 /*out*/&new_native_method);
391 SetEntryPointFromJni(new_native_method);
392 return new_native_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800393}
394
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700395void ArtMethod::UnregisterNative() {
David Sehr709b0702016-10-13 09:12:37 -0700396 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800397 // restore stub to lookup native pointer via dlsym
Alex Lightd78ddec2017-04-18 15:20:38 -0700398 SetEntryPointFromJni(GetJniDlsymLookupStub());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800399}
400
Alex Light9139e002015-10-09 15:59:48 -0700401bool ArtMethod::IsOverridableByDefaultMethod() {
402 return GetDeclaringClass()->IsInterface();
403}
404
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700405bool ArtMethod::IsAnnotatedWithFastNative() {
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700406 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_FastNative,
407 DexFile::kDexVisibilityBuild);
408}
409
410bool ArtMethod::IsAnnotatedWithCriticalNative() {
411 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_CriticalNative,
412 DexFile::kDexVisibilityBuild);
413}
414
415bool ArtMethod::IsAnnotatedWith(jclass klass, uint32_t visibility) {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700416 Thread* self = Thread::Current();
417 ScopedObjectAccess soa(self);
418 StackHandleScope<1> shs(self);
419
Mathieu Chartier0795f232016-09-27 18:43:30 -0700420 ObjPtr<mirror::Class> annotation = soa.Decode<mirror::Class>(klass);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700421 DCHECK(annotation->IsAnnotation());
422 Handle<mirror::Class> annotation_handle(shs.NewHandle(annotation));
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700423
424 // Note: Resolves any method annotations' classes as a side-effect.
425 // -- This seems allowed by the spec since it says we can preload any classes
426 // referenced by another classes's constant pool table.
David Sehr9323e6e2016-09-13 08:58:35 -0700427 return annotations::IsMethodAnnotationPresent(this, annotation_handle, visibility);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700428}
429
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100430static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
431 uint16_t class_def_idx,
432 uint32_t method_idx) {
433 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
434 const uint8_t* class_data = dex_file.GetClassData(class_def);
435 CHECK(class_data != nullptr);
436 ClassDataItemIterator it(dex_file, class_data);
437 // Skip fields
438 while (it.HasNextStaticField()) {
439 it.Next();
440 }
441 while (it.HasNextInstanceField()) {
442 it.Next();
443 }
444 // Process methods
445 size_t class_def_method_index = 0;
446 while (it.HasNextDirectMethod()) {
447 if (it.GetMemberIndex() == method_idx) {
448 return class_def_method_index;
449 }
450 class_def_method_index++;
451 it.Next();
452 }
453 while (it.HasNextVirtualMethod()) {
454 if (it.GetMemberIndex() == method_idx) {
455 return class_def_method_index;
456 }
457 class_def_method_index++;
458 it.Next();
459 }
460 DCHECK(!it.HasNext());
461 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
462 UNREACHABLE();
463}
464
Alex Lighteee0bd42017-02-14 15:31:45 +0000465// We use the method's DexFile and declaring class name to find the OatMethod for an obsolete
466// method. This is extremely slow but we need it if we want to be able to have obsolete native
467// methods since we need this to find the size of its stack frames.
468//
469// NB We could (potentially) do this differently and rely on the way the transformation is applied
470// in order to use the entrypoint to find this information. However, for debugging reasons (most
471// notably making sure that new invokes of obsolete methods fail) we choose to instead get the data
472// directly from the dex file.
473static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found)
474 REQUIRES_SHARED(Locks::mutator_lock_) {
475 DCHECK(method->IsObsolete() && method->IsNative());
476 const DexFile* dex_file = method->GetDexFile();
477
478 // recreate the class_def_index from the descriptor.
479 std::string descriptor_storage;
480 const DexFile::TypeId* declaring_class_type_id =
481 dex_file->FindTypeId(method->GetDeclaringClass()->GetDescriptor(&descriptor_storage));
482 CHECK(declaring_class_type_id != nullptr);
483 dex::TypeIndex declaring_class_type_index = dex_file->GetIndexForTypeId(*declaring_class_type_id);
484 const DexFile::ClassDef* declaring_class_type_def =
485 dex_file->FindClassDef(declaring_class_type_index);
486 CHECK(declaring_class_type_def != nullptr);
487 uint16_t declaring_class_def_index = dex_file->GetIndexForClassDef(*declaring_class_type_def);
488
489 size_t oat_method_index = GetOatMethodIndexFromMethodIndex(*dex_file,
490 declaring_class_def_index,
491 method->GetDexMethodIndex());
492
493 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
494 declaring_class_def_index,
495 found);
496 if (!(*found)) {
497 return OatFile::OatMethod::Invalid();
498 }
499 return oat_class.GetOatMethod(oat_method_index);
500}
501
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100502static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
503 PointerSize pointer_size,
504 bool* found)
505 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteee0bd42017-02-14 15:31:45 +0000506 if (UNLIKELY(method->IsObsolete())) {
507 // We shouldn't be calling this with obsolete methods except for native obsolete methods for
508 // which we need to use the oat method to figure out how large the quick frame is.
509 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
510 << "order to allow stack walking. Other obsolete methods should "
511 << "never need to access this information.";
512 DCHECK_EQ(pointer_size, kRuntimePointerSize) << "Obsolete method in compiler!";
513 return FindOatMethodFromDexFileFor(method, found);
514 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100515 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
516 // method for direct methods (or virtual methods made direct).
517 mirror::Class* declaring_class = method->GetDeclaringClass();
518 size_t oat_method_index;
519 if (method->IsStatic() || method->IsDirect()) {
520 // Simple case where the oat method index was stashed at load time.
521 oat_method_index = method->GetMethodIndex();
522 } else {
523 // Compute the oat_method_index by search for its position in the declared virtual methods.
524 oat_method_index = declaring_class->NumDirectMethods();
525 bool found_virtual = false;
526 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
527 // Check method index instead of identity in case of duplicate method definitions.
528 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
529 found_virtual = true;
530 break;
531 }
532 oat_method_index++;
533 }
534 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700535 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100536 }
537 DCHECK_EQ(oat_method_index,
538 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
539 method->GetDeclaringClass()->GetDexClassDefIndex(),
540 method->GetDexMethodIndex()));
541 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
542 declaring_class->GetDexClassDefIndex(),
543 found);
544 if (!(*found)) {
545 return OatFile::OatMethod::Invalid();
546 }
547 return oat_class.GetOatMethod(oat_method_index);
548}
549
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700550bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
551 auto* dex_cache = GetDexCache();
552 auto* dex_file = dex_cache->GetDexFile();
553 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
554 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
555 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
556 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
Andreas Gampefa4333d2017-02-14 11:10:34 -0800557 auto param_len = params != nullptr ? params->GetLength() : 0u;
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700558 if (param_len != count) {
559 return false;
560 }
561 auto* cl = Runtime::Current()->GetClassLinker();
562 for (size_t i = 0; i < count; ++i) {
563 auto type_idx = proto_params->GetTypeItem(i).type_idx_;
564 auto* type = cl->ResolveType(type_idx, this);
565 if (type == nullptr) {
566 Thread::Current()->AssertPendingException();
567 return false;
568 }
569 if (type != params->GetWithoutChecks(i)) {
570 return false;
571 }
572 }
573 return true;
574}
575
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100576const uint8_t* ArtMethod::GetQuickenedInfo(PointerSize pointer_size) {
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100577 bool found = false;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100578 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100579 if (!found || (oat_method.GetQuickCode() != nullptr)) {
580 return nullptr;
581 }
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100582 if (kIsVdexEnabled) {
583 const OatQuickMethodHeader* header = oat_method.GetOatQuickMethodHeader();
584 // OatMethod without a header: no quickening table.
585 if (header == nullptr) {
586 return nullptr;
587 }
588 // The table is in the .vdex file.
589 const OatFile::OatDexFile* oat_dex_file = GetDexCache()->GetDexFile()->GetOatDexFile();
Mathieu Chartier1b868492016-11-16 16:22:37 -0800590 const OatFile* oat_file = oat_dex_file->GetOatFile();
591 if (oat_file == nullptr) {
592 return nullptr;
593 }
Mingyao Yang063fc772016-08-02 11:02:54 -0700594 return oat_file->DexBegin() + header->GetVmapTableOffset();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100595 } else {
596 return oat_method.GetVmapTable();
597 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100598}
599
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100600const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000601 // Our callers should make sure they don't pass the instrumentation exit pc,
602 // as this method does not look at the side instrumentation stack.
603 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
604
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000605 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100606 return nullptr;
607 }
608
609 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100610 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700611 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100612 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100613
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100614 if (class_linker->IsQuickGenericJniStub(existing_entry_point)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100615 // The generic JNI does not have any method header.
616 return nullptr;
617 }
618
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000619 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
620 DCHECK(IsProxyMethod() && !IsConstructor());
621 // The proxy entry point does not have any method header.
622 return nullptr;
623 }
624
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100625 // Check whether the current entry point contains this pc.
626 if (!class_linker->IsQuickResolutionStub(existing_entry_point) &&
627 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
628 OatQuickMethodHeader* method_header =
629 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100630
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100631 if (method_header->Contains(pc)) {
632 return method_header;
633 }
634 }
635
636 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100637 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100638 if (jit != nullptr) {
639 jit::JitCodeCache* code_cache = jit->GetCodeCache();
640 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
641 if (method_header != nullptr) {
642 DCHECK(method_header->Contains(pc));
643 return method_header;
644 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000645 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700646 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000647 << ", pc=" << std::hex << pc
648 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
649 << ", copy=" << std::boolalpha << IsCopied()
650 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100651 }
652 }
653
654 // The code has to be in an oat file.
655 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100656 OatFile::OatMethod oat_method =
657 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100658 if (!found) {
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000659 if (class_linker->IsQuickResolutionStub(existing_entry_point)) {
660 // We are running the generic jni stub, but the entry point of the method has not
661 // been updated yet.
Nicolas Geoffray703c2822015-10-30 12:23:16 +0000662 DCHECK_EQ(pc, 0u) << "Should be a downcall";
663 DCHECK(IsNative());
664 return nullptr;
665 }
666 if (existing_entry_point == GetQuickInstrumentationEntryPoint()) {
667 // We are running the generic jni stub, but the method is being instrumented.
668 DCHECK_EQ(pc, 0u) << "Should be a downcall";
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000669 DCHECK(IsNative());
670 return nullptr;
671 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100672 // Only for unit tests.
673 // TODO(ngeoffray): Update these tests to pass the right pc?
674 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
675 }
676 const void* oat_entry_point = oat_method.GetQuickCode();
677 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700678 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100679 return nullptr;
680 }
681
682 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
683 if (pc == 0) {
684 // This is a downcall, it can only happen for a native method.
685 DCHECK(IsNative());
686 return method_header;
687 }
688
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100689 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700690 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100691 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700692 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100693 return method_header;
694}
695
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100696const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
697 bool found;
698 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
699 if (found) {
700 return oat_method.GetQuickCode();
701 }
702 return nullptr;
703}
704
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000705bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100706 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
707 return false;
708 }
709
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000710 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100711 Runtime* runtime = Runtime::Current();
712 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000713 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
714 return true;
715 }
716
717 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100718 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000719}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000720
Andreas Gampe542451c2016-07-26 09:02:02 -0700721void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000722 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
723 Size(image_pointer_size));
724 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
725
726 // If the entry point of the method we are copying from is from JIT code, we just
727 // put the entry point of the new method to interpreter. We could set the entry point
728 // to the JIT code, but this would require taking the JIT code cache lock to notify
729 // it, which we do not want at this level.
730 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100731 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000732 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
733 SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(), image_pointer_size);
734 }
735 }
736 // Clear the profiling info for the same reasons as the JIT code.
737 if (!src->IsNative()) {
738 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
739 }
740 // Clear hotness to let the JIT properly decide when to compile this method.
741 hotness_count_ = 0;
742}
743
Andreas Gampe542451c2016-07-26 09:02:02 -0700744bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700745 // Hijack this function to get access to PtrSizedFieldsOffset.
746 //
747 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
748 // 64-bit builds.
749 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700750 static_assert(
751 (sizeof(void*) != 4) ||
752 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
753 "Unexpected 32-bit class layout.");
754 static_assert(
755 (sizeof(void*) != 8) ||
756 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
757 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700758
Andreas Gampe75f08852016-07-19 08:06:07 -0700759 Runtime* runtime = Runtime::Current();
760 if (runtime == nullptr) {
761 return true;
762 }
763 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
764}
765
David Sehr709b0702016-10-13 09:12:37 -0700766std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
767 if (m == nullptr) {
768 return "null";
769 }
770 return m->PrettyMethod(with_signature);
771}
772
773std::string ArtMethod::PrettyMethod(bool with_signature) {
774 ArtMethod* m = this;
775 if (!m->IsRuntimeMethod()) {
776 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
777 }
778 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
779 result += '.';
780 result += m->GetName();
781 if (UNLIKELY(m->IsFastNative())) {
782 result += "!";
783 }
784 if (with_signature) {
785 const Signature signature = m->GetSignature();
786 std::string sig_as_string(signature.ToString());
787 if (signature == Signature::NoSignature()) {
788 return result + sig_as_string;
789 }
790 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
791 PrettyArguments(sig_as_string.c_str());
792 }
793 return result;
794}
795
796std::string ArtMethod::JniShortName() {
Alex Light888a59e2017-01-25 11:41:41 -0800797 return GetJniShortName(GetDeclaringClassDescriptor(), GetName());
David Sehr709b0702016-10-13 09:12:37 -0700798}
799
800std::string ArtMethod::JniLongName() {
801 std::string long_name;
802 long_name += JniShortName();
803 long_name += "__";
804
805 std::string signature(GetSignature().ToString());
806 signature.erase(0, 1);
807 signature.erase(signature.begin() + signature.find(')'), signature.end());
808
809 long_name += MangleForJni(signature);
810
811 return long_name;
812}
813
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800814// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
815// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
816template <ReadBarrierOption kReadBarrierOption>
817ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method)
818 NO_THREAD_SAFETY_ANALYSIS {
819 CHECK(method->IsRuntimeMethod() ||
820 method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
821 method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
822}
823
824template <ReadBarrierOption kReadBarrierOption> void ArtMethod::GetAccessFlagsDCheck() {
825 if (kCheckDeclaringClassState) {
826 Thread* self = Thread::Current();
827 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
828 if (self->IsThreadSuspensionAllowable()) {
829 ScopedObjectAccess soa(self);
830 CHECK(IsRuntimeMethod() ||
831 GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
832 GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
833 }
834 } else {
835 // We cannot use SOA in this case. We might be holding the lock, but may not be in the
836 // runnable state (e.g., during GC).
837 Locks::mutator_lock_->AssertSharedHeld(self);
838 DoGetAccessFlagsHelper<kReadBarrierOption>(this);
839 }
840 }
841}
842template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithReadBarrier>();
843template void ArtMethod::GetAccessFlagsDCheck<ReadBarrierOption::kWithoutReadBarrier>();
844
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800845} // namespace art