blob: d7d39afa8fee7a9b7ca3e8a5b83c6fcaac836ff9 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Brian Carlstromea46f952013-07-30 01:26:50 -070017#include "art_method.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080018
Andreas Gampe479b1de2016-07-19 18:27:17 -070019#include <cstddef>
20
Andreas Gampe46ee31b2016-12-14 10:11:49 -080021#include "android-base/stringprintf.h"
22
Ian Rogerse63db272014-07-15 15:36:11 -070023#include "arch/context.h"
Ian Rogers62f05122014-03-21 11:21:29 -070024#include "art_field-inl.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070025#include "art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "base/stringpiece.h"
Hiroshi Yamauchi00370822015-08-18 14:47:25 -070027#include "class_linker-inl.h"
Andreas Gampe2a5c4682015-08-14 08:22:54 -070028#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070029#include "dex_file-inl.h"
David Sehr9323e6e2016-09-13 08:58:35 -070030#include "dex_file_annotations.h"
Ian Rogersc449aa82013-07-29 14:35:46 -070031#include "dex_instruction.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070032#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070033#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080035#include "jit/jit.h"
36#include "jit/jit_code_cache.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010037#include "jit/profiling_info.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "jni_internal.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070039#include "mirror/class-inl.h"
Alex Lighta01de592016-11-15 10:43:06 -080040#include "mirror/class_ext.h"
Neil Fuller0e844392016-09-08 13:43:31 +010041#include "mirror/executable.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070042#include "mirror/object_array-inl.h"
43#include "mirror/object-inl.h"
44#include "mirror/string.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000045#include "oat_file-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070046#include "scoped_thread_state_change-inl.h"
Ian Rogers62f05122014-03-21 11:21:29 -070047#include "well_known_classes.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080048
49namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050
Andreas Gampe46ee31b2016-12-14 10:11:49 -080051using android::base::StringPrintf;
52
Ian Rogers0177e532014-02-11 16:30:46 -080053extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
54 const char*);
Ian Rogers936b37f2014-02-14 00:52:24 -080055extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
56 const char*);
Jeff Hao5d917302013-02-27 17:57:33 -080057
Mingyao Yang063fc772016-08-02 11:02:54 -070058ArtMethod* ArtMethod::GetSingleImplementation() {
59 DCHECK(!IsNative());
60 if (!IsAbstract()) {
61 // A non-abstract's single implementation is itself.
62 return this;
63 }
64 // TODO: add single-implementation logic for abstract method by storing it
65 // in ptr_sized_fields_.
66 return nullptr;
67}
68
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070069ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
70 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -070071 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +010072 DCHECK(executable != nullptr);
73 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -070074}
75
Alex Lighta01de592016-11-15 10:43:06 -080076mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
77 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
78 DCHECK(IsObsolete());
79 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
80 CHECK(!ext.IsNull());
81 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
82 CHECK(!obsolete_methods.IsNull());
83 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
84 int32_t len = obsolete_methods->GetLength();
85 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -080086 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
87 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -080088 PointerSize pointer_size = kRuntimePointerSize;
89 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
90 for (int32_t i = 0; i < len; i++) {
91 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
92 return ext->GetObsoleteDexCaches()->Get(i);
93 }
94 }
95 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
96 UNREACHABLE();
97}
98
Ian Rogers6b14d552014-10-28 21:50:58 -070099mirror::String* ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700100 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -0700101 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700102 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
103 auto* dex_file = dex_cache->GetDexFile();
104 uint32_t dex_method_idx = GetDexMethodIndex();
105 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Ian Rogers6b14d552014-10-28 21:50:58 -0700106 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
107 dex_cache);
108}
109
Alex Light9139e002015-10-09 15:59:48 -0700110void ArtMethod::ThrowInvocationTimeError() {
111 DCHECK(!IsInvokable());
112 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
113 // due to the way we select it.
114 if (IsDefaultConflicting()) {
115 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
116 } else {
117 DCHECK(IsAbstract());
118 ThrowAbstractMethodError(this);
119 }
120}
121
Ian Rogersef7d42f2014-01-06 12:55:46 -0800122InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800123 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000124 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000125 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000126 } else if (GetDeclaringClass()->IsInterface()) {
127 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800128 } else if (IsDirect()) {
129 return kDirect;
130 } else {
131 return kVirtual;
132 }
133}
134
Brian Carlstromea46f952013-07-30 01:26:50 -0700135size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700136 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800137 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700138 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800139 char ch = shorty[i];
140 if (ch == 'D' || ch == 'J') {
141 num_registers += 2;
142 } else {
143 num_registers += 1;
144 }
145 }
146 return num_registers;
147}
148
Alex Light6c8467f2015-11-20 15:03:26 -0800149bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700150 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800151 const DexFile* dex_file = GetDexFile();
152 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
153 if (GetDexCache() == other->GetDexCache()) {
154 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800155 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
156 }
Alex Light6c8467f2015-11-20 15:03:26 -0800157 const DexFile* dex_file2 = other->GetDexFile();
158 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800159 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
160 return false; // Name mismatch.
161 }
162 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
163}
164
Andreas Gampe542451c2016-07-26 09:02:02 -0700165ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800166 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800167 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800168 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700169 mirror::Class* declaring_class = GetDeclaringClass();
170 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800171 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800172 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800173 // Did this method override a super class method? If so load the result from the super class'
174 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700175 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700176 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800177 } else {
178 // Method didn't override superclass method so search interfaces
179 if (IsProxyMethod()) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100180 result = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
181 GetDexMethodIndex(),
182 pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800183 CHECK_EQ(result,
184 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
185 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700186 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800187 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700188 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800189 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
190 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
191 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800192 break;
193 }
194 }
195 }
196 }
197 }
Alex Light6c8467f2015-11-20 15:03:26 -0800198 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800199 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
200 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800201 return result;
202}
203
Ian Rogerse0a02da2014-12-02 14:10:53 -0800204uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
205 uint32_t name_and_signature_idx) {
206 const DexFile* dexfile = GetDexFile();
207 const uint32_t dex_method_idx = GetDexMethodIndex();
208 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
209 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
210 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
211 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
212 if (dexfile == &other_dexfile) {
213 return dex_method_idx;
214 }
215 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700216 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
217 if (other_type_id != nullptr) {
218 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
219 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
220 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
221 if (other_mid != nullptr) {
222 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800223 }
224 }
225 return DexFile::kDexNoIndex;
226}
227
Mathieu Chartiere401d142015-04-22 13:56:20 -0700228uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700229 uint32_t dex_pc, bool* has_no_move_exception) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700230 const DexFile::CodeItem* code_item = GetCodeItem();
Jeff Haoaa961912014-04-22 13:54:32 -0700231 // Set aside the exception while we resolve its type.
232 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700233 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000234 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700235 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700236 // Default to handler not found.
237 uint32_t found_dex_pc = DexFile::kDexNoIndex;
238 // Iterate over the catch handlers associated with dex_pc.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800239 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800240 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800241 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800242 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700243 found_dex_pc = it.GetHandlerAddress();
244 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800245 }
246 // Does this catch exception type apply?
Vladimir Marko942fd312017-01-16 20:52:19 +0000247 mirror::Class* iter_exception_type = GetClassFromTypeIndex(iter_type_idx, true /* resolve */);
Ian Rogers822266b2014-05-29 16:55:06 -0700248 if (UNLIKELY(iter_exception_type == nullptr)) {
249 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
250 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700251 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700252 self->ClearException();
253 // Delete any long jump context as this routine is called during a stack walk which will
254 // release its in use context at the end.
255 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800256 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700257 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700258 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700259 found_dex_pc = it.GetHandlerAddress();
260 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800261 }
262 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700263 if (found_dex_pc != DexFile::kDexNoIndex) {
264 const Instruction* first_catch_instr =
Jeff Haoaa961912014-04-22 13:54:32 -0700265 Instruction::At(&code_item->insns_[found_dex_pc]);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700266 *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION);
267 }
Jeff Haoaa961912014-04-22 13:54:32 -0700268 // Put the exception back.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700269 if (exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000270 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700271 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700272 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800273}
274
Brian Carlstromea46f952013-07-30 01:26:50 -0700275void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800276 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700277 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
278 ThrowStackOverflowError(self);
279 return;
280 }
281
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800282 if (kIsDebugBuild) {
283 self->AssertThreadSuspensionIsAllowable();
284 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700285 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800286 }
287
288 // Push a transition back into managed code onto the linked list in thread.
289 ManagedStack fragment;
290 self->PushManagedStackFragment(&fragment);
291
Ian Rogers62d6c772013-02-27 08:32:07 -0800292 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700293 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200294 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700295 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
296 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200297 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700298 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700299 art::interpreter::EnterInterpreterFromInvoke(
300 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700301 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700302 mirror::Object* receiver =
303 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700304 art::interpreter::EnterInterpreterFromInvoke(
305 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800306 }
307 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700308 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700309
310 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800311 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800312 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700313 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700314 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700315 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700316 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700317 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700318
Elliott Hughes956af0f2014-12-11 14:34:28 -0800319 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800320 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100321 CHECK(!runtime->UseJitCompilation());
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100322 const void* oat_quick_code = (IsNative() || !IsInvokable() || IsProxyMethod())
323 ? nullptr
324 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100325 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700326 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700327 }
328
Elliott Hughes956af0f2014-12-11 14:34:28 -0800329 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800330 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800331 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800332 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800333 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000334 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200335 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700336 // exception was thrown to force the activations to be removed from the
337 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000338 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700339 }
340 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700341 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800342 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800343 }
344 } else {
David Sehr709b0702016-10-13 09:12:37 -0700345 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800346 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800347 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800348 }
349 }
350 }
351
352 // Pop transition.
353 self->PopManagedStackFragment(fragment);
354}
355
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700356void ArtMethod::RegisterNative(const void* native_method, bool is_fast) {
David Sehr709b0702016-10-13 09:12:37 -0700357 CHECK(IsNative()) << PrettyMethod();
358 CHECK(!IsFastNative()) << PrettyMethod();
359 CHECK(native_method != nullptr) << PrettyMethod();
Ian Rogers987560f2014-04-22 11:42:59 -0700360 if (is_fast) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700361 AddAccessFlags(kAccFastNative);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800362 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800363 SetEntryPointFromJni(native_method);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800364}
365
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700366void ArtMethod::UnregisterNative() {
David Sehr709b0702016-10-13 09:12:37 -0700367 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800368 // restore stub to lookup native pointer via dlsym
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700369 RegisterNative(GetJniDlsymLookupStub(), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800370}
371
Alex Light9139e002015-10-09 15:59:48 -0700372bool ArtMethod::IsOverridableByDefaultMethod() {
373 return GetDeclaringClass()->IsInterface();
374}
375
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700376bool ArtMethod::IsAnnotatedWithFastNative() {
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700377 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_FastNative,
378 DexFile::kDexVisibilityBuild);
379}
380
381bool ArtMethod::IsAnnotatedWithCriticalNative() {
382 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_CriticalNative,
383 DexFile::kDexVisibilityBuild);
384}
385
386bool ArtMethod::IsAnnotatedWith(jclass klass, uint32_t visibility) {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700387 Thread* self = Thread::Current();
388 ScopedObjectAccess soa(self);
389 StackHandleScope<1> shs(self);
390
Mathieu Chartier0795f232016-09-27 18:43:30 -0700391 ObjPtr<mirror::Class> annotation = soa.Decode<mirror::Class>(klass);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700392 DCHECK(annotation->IsAnnotation());
393 Handle<mirror::Class> annotation_handle(shs.NewHandle(annotation));
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700394
395 // Note: Resolves any method annotations' classes as a side-effect.
396 // -- This seems allowed by the spec since it says we can preload any classes
397 // referenced by another classes's constant pool table.
David Sehr9323e6e2016-09-13 08:58:35 -0700398 return annotations::IsMethodAnnotationPresent(this, annotation_handle, visibility);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700399}
400
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100401static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
402 uint16_t class_def_idx,
403 uint32_t method_idx) {
404 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
405 const uint8_t* class_data = dex_file.GetClassData(class_def);
406 CHECK(class_data != nullptr);
407 ClassDataItemIterator it(dex_file, class_data);
408 // Skip fields
409 while (it.HasNextStaticField()) {
410 it.Next();
411 }
412 while (it.HasNextInstanceField()) {
413 it.Next();
414 }
415 // Process methods
416 size_t class_def_method_index = 0;
417 while (it.HasNextDirectMethod()) {
418 if (it.GetMemberIndex() == method_idx) {
419 return class_def_method_index;
420 }
421 class_def_method_index++;
422 it.Next();
423 }
424 while (it.HasNextVirtualMethod()) {
425 if (it.GetMemberIndex() == method_idx) {
426 return class_def_method_index;
427 }
428 class_def_method_index++;
429 it.Next();
430 }
431 DCHECK(!it.HasNext());
432 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
433 UNREACHABLE();
434}
435
436static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
437 PointerSize pointer_size,
438 bool* found)
439 REQUIRES_SHARED(Locks::mutator_lock_) {
440 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
441 // method for direct methods (or virtual methods made direct).
442 mirror::Class* declaring_class = method->GetDeclaringClass();
443 size_t oat_method_index;
444 if (method->IsStatic() || method->IsDirect()) {
445 // Simple case where the oat method index was stashed at load time.
446 oat_method_index = method->GetMethodIndex();
447 } else {
448 // Compute the oat_method_index by search for its position in the declared virtual methods.
449 oat_method_index = declaring_class->NumDirectMethods();
450 bool found_virtual = false;
451 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
452 // Check method index instead of identity in case of duplicate method definitions.
453 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
454 found_virtual = true;
455 break;
456 }
457 oat_method_index++;
458 }
459 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700460 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100461 }
462 DCHECK_EQ(oat_method_index,
463 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
464 method->GetDeclaringClass()->GetDexClassDefIndex(),
465 method->GetDexMethodIndex()));
466 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
467 declaring_class->GetDexClassDefIndex(),
468 found);
469 if (!(*found)) {
470 return OatFile::OatMethod::Invalid();
471 }
472 return oat_class.GetOatMethod(oat_method_index);
473}
474
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700475bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
476 auto* dex_cache = GetDexCache();
477 auto* dex_file = dex_cache->GetDexFile();
478 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
479 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
480 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
481 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
482 auto param_len = params.Get() != nullptr ? params->GetLength() : 0u;
483 if (param_len != count) {
484 return false;
485 }
486 auto* cl = Runtime::Current()->GetClassLinker();
487 for (size_t i = 0; i < count; ++i) {
488 auto type_idx = proto_params->GetTypeItem(i).type_idx_;
489 auto* type = cl->ResolveType(type_idx, this);
490 if (type == nullptr) {
491 Thread::Current()->AssertPendingException();
492 return false;
493 }
494 if (type != params->GetWithoutChecks(i)) {
495 return false;
496 }
497 }
498 return true;
499}
500
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100501const uint8_t* ArtMethod::GetQuickenedInfo(PointerSize pointer_size) {
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100502 bool found = false;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100503 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100504 if (!found || (oat_method.GetQuickCode() != nullptr)) {
505 return nullptr;
506 }
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100507 if (kIsVdexEnabled) {
508 const OatQuickMethodHeader* header = oat_method.GetOatQuickMethodHeader();
509 // OatMethod without a header: no quickening table.
510 if (header == nullptr) {
511 return nullptr;
512 }
513 // The table is in the .vdex file.
514 const OatFile::OatDexFile* oat_dex_file = GetDexCache()->GetDexFile()->GetOatDexFile();
Mathieu Chartier1b868492016-11-16 16:22:37 -0800515 const OatFile* oat_file = oat_dex_file->GetOatFile();
516 if (oat_file == nullptr) {
517 return nullptr;
518 }
Mingyao Yang063fc772016-08-02 11:02:54 -0700519 return oat_file->DexBegin() + header->GetVmapTableOffset();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100520 } else {
521 return oat_method.GetVmapTable();
522 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100523}
524
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100525const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000526 // Our callers should make sure they don't pass the instrumentation exit pc,
527 // as this method does not look at the side instrumentation stack.
528 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
529
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000530 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100531 return nullptr;
532 }
533
534 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100535 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700536 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100537 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100538
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100539 if (class_linker->IsQuickGenericJniStub(existing_entry_point)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100540 // The generic JNI does not have any method header.
541 return nullptr;
542 }
543
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000544 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
545 DCHECK(IsProxyMethod() && !IsConstructor());
546 // The proxy entry point does not have any method header.
547 return nullptr;
548 }
549
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100550 // Check whether the current entry point contains this pc.
551 if (!class_linker->IsQuickResolutionStub(existing_entry_point) &&
552 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
553 OatQuickMethodHeader* method_header =
554 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100555
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100556 if (method_header->Contains(pc)) {
557 return method_header;
558 }
559 }
560
561 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100562 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100563 if (jit != nullptr) {
564 jit::JitCodeCache* code_cache = jit->GetCodeCache();
565 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
566 if (method_header != nullptr) {
567 DCHECK(method_header->Contains(pc));
568 return method_header;
569 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000570 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700571 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000572 << ", pc=" << std::hex << pc
573 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
574 << ", copy=" << std::boolalpha << IsCopied()
575 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100576 }
577 }
578
579 // The code has to be in an oat file.
580 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100581 OatFile::OatMethod oat_method =
582 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100583 if (!found) {
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000584 if (class_linker->IsQuickResolutionStub(existing_entry_point)) {
585 // We are running the generic jni stub, but the entry point of the method has not
586 // been updated yet.
Nicolas Geoffray703c2822015-10-30 12:23:16 +0000587 DCHECK_EQ(pc, 0u) << "Should be a downcall";
588 DCHECK(IsNative());
589 return nullptr;
590 }
591 if (existing_entry_point == GetQuickInstrumentationEntryPoint()) {
592 // We are running the generic jni stub, but the method is being instrumented.
593 DCHECK_EQ(pc, 0u) << "Should be a downcall";
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000594 DCHECK(IsNative());
595 return nullptr;
596 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100597 // Only for unit tests.
598 // TODO(ngeoffray): Update these tests to pass the right pc?
599 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
600 }
601 const void* oat_entry_point = oat_method.GetQuickCode();
602 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700603 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100604 return nullptr;
605 }
606
607 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
608 if (pc == 0) {
609 // This is a downcall, it can only happen for a native method.
610 DCHECK(IsNative());
611 return method_header;
612 }
613
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100614 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700615 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100616 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700617 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100618 return method_header;
619}
620
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100621const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
622 bool found;
623 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
624 if (found) {
625 return oat_method.GetQuickCode();
626 }
627 return nullptr;
628}
629
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000630bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100631 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
632 return false;
633 }
634
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000635 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100636 Runtime* runtime = Runtime::Current();
637 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000638 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
639 return true;
640 }
641
642 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100643 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000644}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000645
Andreas Gampe542451c2016-07-26 09:02:02 -0700646void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000647 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
648 Size(image_pointer_size));
649 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
650
651 // If the entry point of the method we are copying from is from JIT code, we just
652 // put the entry point of the new method to interpreter. We could set the entry point
653 // to the JIT code, but this would require taking the JIT code cache lock to notify
654 // it, which we do not want at this level.
655 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100656 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000657 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
658 SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(), image_pointer_size);
659 }
660 }
661 // Clear the profiling info for the same reasons as the JIT code.
662 if (!src->IsNative()) {
663 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
664 }
665 // Clear hotness to let the JIT properly decide when to compile this method.
666 hotness_count_ = 0;
667}
668
Andreas Gampe542451c2016-07-26 09:02:02 -0700669bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700670 // Hijack this function to get access to PtrSizedFieldsOffset.
671 //
672 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
673 // 64-bit builds.
674 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700675 static_assert(
676 (sizeof(void*) != 4) ||
677 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
678 "Unexpected 32-bit class layout.");
679 static_assert(
680 (sizeof(void*) != 8) ||
681 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
682 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700683
Andreas Gampe75f08852016-07-19 08:06:07 -0700684 Runtime* runtime = Runtime::Current();
685 if (runtime == nullptr) {
686 return true;
687 }
688 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
689}
690
David Sehr709b0702016-10-13 09:12:37 -0700691std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
692 if (m == nullptr) {
693 return "null";
694 }
695 return m->PrettyMethod(with_signature);
696}
697
698std::string ArtMethod::PrettyMethod(bool with_signature) {
699 ArtMethod* m = this;
700 if (!m->IsRuntimeMethod()) {
701 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
702 }
703 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
704 result += '.';
705 result += m->GetName();
706 if (UNLIKELY(m->IsFastNative())) {
707 result += "!";
708 }
709 if (with_signature) {
710 const Signature signature = m->GetSignature();
711 std::string sig_as_string(signature.ToString());
712 if (signature == Signature::NoSignature()) {
713 return result + sig_as_string;
714 }
715 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
716 PrettyArguments(sig_as_string.c_str());
717 }
718 return result;
719}
720
721std::string ArtMethod::JniShortName() {
722 std::string class_name(GetDeclaringClassDescriptor());
723 // Remove the leading 'L' and trailing ';'...
724 CHECK_EQ(class_name[0], 'L') << class_name;
725 CHECK_EQ(class_name[class_name.size() - 1], ';') << class_name;
726 class_name.erase(0, 1);
727 class_name.erase(class_name.size() - 1, 1);
728
729 std::string method_name(GetName());
730
731 std::string short_name;
732 short_name += "Java_";
733 short_name += MangleForJni(class_name);
734 short_name += "_";
735 short_name += MangleForJni(method_name);
736 return short_name;
737}
738
739std::string ArtMethod::JniLongName() {
740 std::string long_name;
741 long_name += JniShortName();
742 long_name += "__";
743
744 std::string signature(GetSignature().ToString());
745 signature.erase(0, 1);
746 signature.erase(signature.begin() + signature.find(')'), signature.end());
747
748 long_name += MangleForJni(signature);
749
750 return long_name;
751}
752
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800753} // namespace art