blob: 96b6f18403e0f9c7c1827835de0d3f3ba8a4c453 [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
Ian Rogerse63db272014-07-15 15:36:11 -070021#include "arch/context.h"
Ian Rogers62f05122014-03-21 11:21:29 -070022#include "art_field-inl.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070023#include "art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024#include "base/stringpiece.h"
Hiroshi Yamauchi00370822015-08-18 14:47:25 -070025#include "class_linker-inl.h"
Andreas Gampe2a5c4682015-08-14 08:22:54 -070026#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070027#include "dex_file-inl.h"
David Sehr9323e6e2016-09-13 08:58:35 -070028#include "dex_file_annotations.h"
Ian Rogersc449aa82013-07-29 14:35:46 -070029#include "dex_instruction.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070030#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070031#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080033#include "jit/jit.h"
34#include "jit/jit_code_cache.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010035#include "jit/profiling_info.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "jni_internal.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070037#include "mirror/class-inl.h"
Alex Lighta01de592016-11-15 10:43:06 -080038#include "mirror/class_ext.h"
Neil Fuller0e844392016-09-08 13:43:31 +010039#include "mirror/executable.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070040#include "mirror/object_array-inl.h"
41#include "mirror/object-inl.h"
42#include "mirror/string.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000043#include "oat_file-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070044#include "scoped_thread_state_change-inl.h"
Ian Rogers62f05122014-03-21 11:21:29 -070045#include "well_known_classes.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080046
47namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080048
Ian Rogers0177e532014-02-11 16:30:46 -080049extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
50 const char*);
Ian Rogers936b37f2014-02-14 00:52:24 -080051extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
52 const char*);
Jeff Hao5d917302013-02-27 17:57:33 -080053
Mingyao Yang063fc772016-08-02 11:02:54 -070054ArtMethod* ArtMethod::GetSingleImplementation() {
55 DCHECK(!IsNative());
56 if (!IsAbstract()) {
57 // A non-abstract's single implementation is itself.
58 return this;
59 }
60 // TODO: add single-implementation logic for abstract method by storing it
61 // in ptr_sized_fields_.
62 return nullptr;
63}
64
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070065ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
66 jobject jlr_method) {
Mathieu Chartier0795f232016-09-27 18:43:30 -070067 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(jlr_method);
Neil Fuller0e844392016-09-08 13:43:31 +010068 DCHECK(executable != nullptr);
69 return executable->GetArtMethod();
Ian Rogers62f05122014-03-21 11:21:29 -070070}
71
Alex Lighta01de592016-11-15 10:43:06 -080072mirror::DexCache* ArtMethod::GetObsoleteDexCache() {
73 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
74 DCHECK(IsObsolete());
75 ObjPtr<mirror::ClassExt> ext(GetDeclaringClass()->GetExtData());
76 CHECK(!ext.IsNull());
77 ObjPtr<mirror::PointerArray> obsolete_methods(ext->GetObsoleteMethods());
78 CHECK(!obsolete_methods.IsNull());
79 DCHECK(ext->GetObsoleteDexCaches() != nullptr);
80 int32_t len = obsolete_methods->GetLength();
81 DCHECK_EQ(len, ext->GetObsoleteDexCaches()->GetLength());
Alex Light0b772572016-12-02 17:27:31 -080082 // Using kRuntimePointerSize (instead of using the image's pointer size) is fine since images
83 // should never have obsolete methods in them so they should always be the same.
Alex Lighta01de592016-11-15 10:43:06 -080084 PointerSize pointer_size = kRuntimePointerSize;
85 DCHECK_EQ(kRuntimePointerSize, Runtime::Current()->GetClassLinker()->GetImagePointerSize());
86 for (int32_t i = 0; i < len; i++) {
87 if (this == obsolete_methods->GetElementPtrSize<ArtMethod*>(i, pointer_size)) {
88 return ext->GetObsoleteDexCaches()->Get(i);
89 }
90 }
91 LOG(FATAL) << "This method does not appear in the obsolete map of its class!";
92 UNREACHABLE();
93}
94
Ian Rogers6b14d552014-10-28 21:50:58 -070095mirror::String* ArtMethod::GetNameAsString(Thread* self) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070096 CHECK(!IsProxyMethod());
Ian Rogers6b14d552014-10-28 21:50:58 -070097 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -070098 Handle<mirror::DexCache> dex_cache(hs.NewHandle(GetDexCache()));
99 auto* dex_file = dex_cache->GetDexFile();
100 uint32_t dex_method_idx = GetDexMethodIndex();
101 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
Ian Rogers6b14d552014-10-28 21:50:58 -0700102 return Runtime::Current()->GetClassLinker()->ResolveString(*dex_file, method_id.name_idx_,
103 dex_cache);
104}
105
Alex Light9139e002015-10-09 15:59:48 -0700106void ArtMethod::ThrowInvocationTimeError() {
107 DCHECK(!IsInvokable());
108 // NOTE: IsDefaultConflicting must be first since the actual method might or might not be abstract
109 // due to the way we select it.
110 if (IsDefaultConflicting()) {
111 ThrowIncompatibleClassChangeErrorForMethodConflict(this);
112 } else {
113 DCHECK(IsAbstract());
114 ThrowAbstractMethodError(this);
115 }
116}
117
Ian Rogersef7d42f2014-01-06 12:55:46 -0800118InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800119 // TODO: kSuper?
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000120 if (IsStatic()) {
Nicolas Geoffray12abcbd2016-06-06 15:51:58 +0000121 return kStatic;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000122 } else if (GetDeclaringClass()->IsInterface()) {
123 return kInterface;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800124 } else if (IsDirect()) {
125 return kDirect;
126 } else {
127 return kVirtual;
128 }
129}
130
Brian Carlstromea46f952013-07-30 01:26:50 -0700131size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers6b604a12014-09-25 15:35:37 -0700132 CHECK_LE(1U, shorty.length());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800133 uint32_t num_registers = 0;
Ian Rogers6b604a12014-09-25 15:35:37 -0700134 for (size_t i = 1; i < shorty.length(); ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800135 char ch = shorty[i];
136 if (ch == 'D' || ch == 'J') {
137 num_registers += 2;
138 } else {
139 num_registers += 1;
140 }
141 }
142 return num_registers;
143}
144
Alex Light6c8467f2015-11-20 15:03:26 -0800145bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700146 ScopedAssertNoThreadSuspension ants("HasSameNameAndSignature");
Alex Light6c8467f2015-11-20 15:03:26 -0800147 const DexFile* dex_file = GetDexFile();
148 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
149 if (GetDexCache() == other->GetDexCache()) {
150 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800151 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
152 }
Alex Light6c8467f2015-11-20 15:03:26 -0800153 const DexFile* dex_file2 = other->GetDexFile();
154 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
Ian Rogersf2247512014-12-02 16:17:08 -0800155 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
156 return false; // Name mismatch.
157 }
158 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
159}
160
Andreas Gampe542451c2016-07-26 09:02:02 -0700161ArtMethod* ArtMethod::FindOverriddenMethod(PointerSize pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800162 if (IsStatic()) {
Ian Rogersf2247512014-12-02 16:17:08 -0800163 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800164 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700165 mirror::Class* declaring_class = GetDeclaringClass();
166 mirror::Class* super_class = declaring_class->GetSuperClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800167 uint16_t method_index = GetMethodIndex();
Ian Rogersf2247512014-12-02 16:17:08 -0800168 ArtMethod* result = nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800169 // Did this method override a super class method? If so load the result from the super class'
170 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700171 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700172 result = super_class->GetVTableEntry(method_index, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800173 } else {
174 // Method didn't override superclass method so search interfaces
175 if (IsProxyMethod()) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100176 result = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
177 GetDexMethodIndex(),
178 pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800179 CHECK_EQ(result,
180 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
181 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700182 mirror::IfTable* iftable = GetDeclaringClass()->GetIfTable();
Ian Rogersf2247512014-12-02 16:17:08 -0800183 for (size_t i = 0; i < iftable->Count() && result == nullptr; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700184 mirror::Class* interface = iftable->GetInterface(i);
Alex Light51a64d52015-12-17 13:55:59 -0800185 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
186 if (HasSameNameAndSignature(interface_method.GetInterfaceMethodIfProxy(pointer_size))) {
187 result = &interface_method;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800188 break;
189 }
190 }
191 }
192 }
193 }
Alex Light6c8467f2015-11-20 15:03:26 -0800194 DCHECK(result == nullptr ||
Alex Light51a64d52015-12-17 13:55:59 -0800195 GetInterfaceMethodIfProxy(pointer_size)->HasSameNameAndSignature(
196 result->GetInterfaceMethodIfProxy(pointer_size)));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800197 return result;
198}
199
Ian Rogerse0a02da2014-12-02 14:10:53 -0800200uint32_t ArtMethod::FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
201 uint32_t name_and_signature_idx) {
202 const DexFile* dexfile = GetDexFile();
203 const uint32_t dex_method_idx = GetDexMethodIndex();
204 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
205 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
206 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
207 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
208 if (dexfile == &other_dexfile) {
209 return dex_method_idx;
210 }
211 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
Mathieu Chartier9507fa22015-10-29 15:08:57 -0700212 const DexFile::TypeId* other_type_id = other_dexfile.FindTypeId(mid_declaring_class_descriptor);
213 if (other_type_id != nullptr) {
214 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId(
215 *other_type_id, other_dexfile.GetStringId(name_and_sig_mid.name_idx_),
216 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_));
217 if (other_mid != nullptr) {
218 return other_dexfile.GetIndexForMethodId(*other_mid);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800219 }
220 }
221 return DexFile::kDexNoIndex;
222}
223
Mathieu Chartiere401d142015-04-22 13:56:20 -0700224uint32_t ArtMethod::FindCatchBlock(Handle<mirror::Class> exception_type,
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700225 uint32_t dex_pc, bool* has_no_move_exception) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700226 const DexFile::CodeItem* code_item = GetCodeItem();
Jeff Haoaa961912014-04-22 13:54:32 -0700227 // Set aside the exception while we resolve its type.
228 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700229 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000230 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
Jeff Haoaa961912014-04-22 13:54:32 -0700231 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700232 // Default to handler not found.
233 uint32_t found_dex_pc = DexFile::kDexNoIndex;
234 // Iterate over the catch handlers associated with dex_pc.
Andreas Gampe542451c2016-07-26 09:02:02 -0700235 PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800236 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800237 dex::TypeIndex iter_type_idx = it.GetHandlerTypeIndex();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800238 // Catch all case
Andreas Gampea5b09a62016-11-17 15:21:22 -0800239 if (!iter_type_idx.IsValid()) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700240 found_dex_pc = it.GetHandlerAddress();
241 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800242 }
243 // Does this catch exception type apply?
Vladimir Marko05792b92015-08-03 11:56:49 +0100244 mirror::Class* iter_exception_type = GetClassFromTypeIndex(iter_type_idx,
245 true /* resolve */,
246 pointer_size);
Ian Rogers822266b2014-05-29 16:55:06 -0700247 if (UNLIKELY(iter_exception_type == nullptr)) {
248 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
249 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700250 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700251 self->ClearException();
252 // Delete any long jump context as this routine is called during a stack walk which will
253 // release its in use context at the end.
254 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800255 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700256 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700257 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700258 found_dex_pc = it.GetHandlerAddress();
259 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800260 }
261 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700262 if (found_dex_pc != DexFile::kDexNoIndex) {
263 const Instruction* first_catch_instr =
Jeff Haoaa961912014-04-22 13:54:32 -0700264 Instruction::At(&code_item->insns_[found_dex_pc]);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700265 *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION);
266 }
Jeff Haoaa961912014-04-22 13:54:32 -0700267 // Put the exception back.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700268 if (exception.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000269 self->SetException(exception.Get());
Jeff Haoaa961912014-04-22 13:54:32 -0700270 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700271 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800272}
273
Brian Carlstromea46f952013-07-30 01:26:50 -0700274void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800275 const char* shorty) {
Dave Allison648d7112014-07-25 16:15:27 -0700276 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
277 ThrowStackOverflowError(self);
278 return;
279 }
280
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800281 if (kIsDebugBuild) {
282 self->AssertThreadSuspensionIsAllowable();
283 CHECK_EQ(kRunnable, self->GetState());
Andreas Gampe542451c2016-07-26 09:02:02 -0700284 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800285 }
286
287 // Push a transition back into managed code onto the linked list in thread.
288 ManagedStack fragment;
289 self->PushManagedStackFragment(&fragment);
290
Ian Rogers62d6c772013-02-27 08:32:07 -0800291 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700292 // Call the invoke stub, passing everything as arguments.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200293 // If the runtime is not yet started or it is required by the debugger, then perform the
Aart Bik01223202016-05-05 15:10:42 -0700294 // Invocation by the interpreter, explicitly forcing interpretation over JIT to prevent
295 // cycling around the various JIT/Interpreter methods that handle method invocation.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200296 if (UNLIKELY(!runtime->IsStarted() || Dbg::IsForcedInterpreterNeededForCalling(self, this))) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700297 if (IsStatic()) {
Aart Bik01223202016-05-05 15:10:42 -0700298 art::interpreter::EnterInterpreterFromInvoke(
299 self, this, nullptr, args, result, /*stay_in_interpreter*/ true);
Ian Rogers5d27faf2014-05-02 17:17:18 -0700300 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700301 mirror::Object* receiver =
302 reinterpret_cast<StackReference<mirror::Object>*>(&args[0])->AsMirrorPtr();
Aart Bik01223202016-05-05 15:10:42 -0700303 art::interpreter::EnterInterpreterFromInvoke(
304 self, this, receiver, args + 1, result, /*stay_in_interpreter*/ true);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800305 }
306 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700307 DCHECK_EQ(runtime->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700308
309 constexpr bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800310 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800311 if (LIKELY(have_quick_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700312 if (kLogInvocationStartAndReturn) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700313 LOG(INFO) << StringPrintf(
David Sehr709b0702016-10-13 09:12:37 -0700314 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700315 GetEntryPointFromQuickCompiledCode(), static_cast<int>(IsStatic() ? 1 : 0));
Jeff Hao790ad902013-05-22 15:02:08 -0700316 }
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700317
Elliott Hughes956af0f2014-12-11 14:34:28 -0800318 // Ensure that we won't be accidentally calling quick compiled code when -Xint.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800319 if (kIsDebugBuild && runtime->GetInstrumentation()->IsForcedInterpretOnly()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100320 CHECK(!runtime->UseJitCompilation());
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100321 const void* oat_quick_code = (IsNative() || !IsInvokable() || IsProxyMethod())
322 ? nullptr
323 : GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize());
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100324 CHECK(oat_quick_code == nullptr || oat_quick_code != GetEntryPointFromQuickCompiledCode())
David Sehr709b0702016-10-13 09:12:37 -0700325 << "Don't call compiled code when -Xint " << PrettyMethod();
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700326 }
327
Elliott Hughes956af0f2014-12-11 14:34:28 -0800328 if (!IsStatic()) {
Ian Rogers0177e532014-02-11 16:30:46 -0800329 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800330 } else {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800331 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800332 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000333 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200334 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700335 // exception was thrown to force the activations to be removed from the
336 // stack. Continue execution in the interpreter.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000337 self->DeoptimizeWithDeoptimizationException(result);
Jeff Hao790ad902013-05-22 15:02:08 -0700338 }
339 if (kLogInvocationStartAndReturn) {
David Sehr709b0702016-10-13 09:12:37 -0700340 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
Elliott Hughes956af0f2014-12-11 14:34:28 -0800341 GetEntryPointFromQuickCompiledCode());
Jeff Hao5d917302013-02-27 17:57:33 -0800342 }
343 } else {
David Sehr709b0702016-10-13 09:12:37 -0700344 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
Ian Rogersf2247512014-12-02 16:17:08 -0800345 if (result != nullptr) {
Jeff Hao5d917302013-02-27 17:57:33 -0800346 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800347 }
348 }
349 }
350
351 // Pop transition.
352 self->PopManagedStackFragment(fragment);
353}
354
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700355void ArtMethod::RegisterNative(const void* native_method, bool is_fast) {
David Sehr709b0702016-10-13 09:12:37 -0700356 CHECK(IsNative()) << PrettyMethod();
357 CHECK(!IsFastNative()) << PrettyMethod();
358 CHECK(native_method != nullptr) << PrettyMethod();
Ian Rogers987560f2014-04-22 11:42:59 -0700359 if (is_fast) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700360 AddAccessFlags(kAccFastNative);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800361 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800362 SetEntryPointFromJni(native_method);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800363}
364
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700365void ArtMethod::UnregisterNative() {
David Sehr709b0702016-10-13 09:12:37 -0700366 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800367 // restore stub to lookup native pointer via dlsym
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700368 RegisterNative(GetJniDlsymLookupStub(), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800369}
370
Alex Light9139e002015-10-09 15:59:48 -0700371bool ArtMethod::IsOverridableByDefaultMethod() {
372 return GetDeclaringClass()->IsInterface();
373}
374
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700375bool ArtMethod::IsAnnotatedWithFastNative() {
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700376 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_FastNative,
377 DexFile::kDexVisibilityBuild);
378}
379
380bool ArtMethod::IsAnnotatedWithCriticalNative() {
381 return IsAnnotatedWith(WellKnownClasses::dalvik_annotation_optimization_CriticalNative,
382 DexFile::kDexVisibilityBuild);
383}
384
385bool ArtMethod::IsAnnotatedWith(jclass klass, uint32_t visibility) {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700386 Thread* self = Thread::Current();
387 ScopedObjectAccess soa(self);
388 StackHandleScope<1> shs(self);
389
Mathieu Chartier0795f232016-09-27 18:43:30 -0700390 ObjPtr<mirror::Class> annotation = soa.Decode<mirror::Class>(klass);
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700391 DCHECK(annotation->IsAnnotation());
392 Handle<mirror::Class> annotation_handle(shs.NewHandle(annotation));
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700393
394 // Note: Resolves any method annotations' classes as a side-effect.
395 // -- This seems allowed by the spec since it says we can preload any classes
396 // referenced by another classes's constant pool table.
David Sehr9323e6e2016-09-13 08:58:35 -0700397 return annotations::IsMethodAnnotationPresent(this, annotation_handle, visibility);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700398}
399
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100400static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file,
401 uint16_t class_def_idx,
402 uint32_t method_idx) {
403 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
404 const uint8_t* class_data = dex_file.GetClassData(class_def);
405 CHECK(class_data != nullptr);
406 ClassDataItemIterator it(dex_file, class_data);
407 // Skip fields
408 while (it.HasNextStaticField()) {
409 it.Next();
410 }
411 while (it.HasNextInstanceField()) {
412 it.Next();
413 }
414 // Process methods
415 size_t class_def_method_index = 0;
416 while (it.HasNextDirectMethod()) {
417 if (it.GetMemberIndex() == method_idx) {
418 return class_def_method_index;
419 }
420 class_def_method_index++;
421 it.Next();
422 }
423 while (it.HasNextVirtualMethod()) {
424 if (it.GetMemberIndex() == method_idx) {
425 return class_def_method_index;
426 }
427 class_def_method_index++;
428 it.Next();
429 }
430 DCHECK(!it.HasNext());
431 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
432 UNREACHABLE();
433}
434
435static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method,
436 PointerSize pointer_size,
437 bool* found)
438 REQUIRES_SHARED(Locks::mutator_lock_) {
439 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
440 // method for direct methods (or virtual methods made direct).
441 mirror::Class* declaring_class = method->GetDeclaringClass();
442 size_t oat_method_index;
443 if (method->IsStatic() || method->IsDirect()) {
444 // Simple case where the oat method index was stashed at load time.
445 oat_method_index = method->GetMethodIndex();
446 } else {
447 // Compute the oat_method_index by search for its position in the declared virtual methods.
448 oat_method_index = declaring_class->NumDirectMethods();
449 bool found_virtual = false;
450 for (ArtMethod& art_method : declaring_class->GetVirtualMethods(pointer_size)) {
451 // Check method index instead of identity in case of duplicate method definitions.
452 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) {
453 found_virtual = true;
454 break;
455 }
456 oat_method_index++;
457 }
458 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
David Sehr709b0702016-10-13 09:12:37 -0700459 << method->PrettyMethod();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100460 }
461 DCHECK_EQ(oat_method_index,
462 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
463 method->GetDeclaringClass()->GetDexClassDefIndex(),
464 method->GetDexMethodIndex()));
465 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
466 declaring_class->GetDexClassDefIndex(),
467 found);
468 if (!(*found)) {
469 return OatFile::OatMethod::Invalid();
470 }
471 return oat_class.GetOatMethod(oat_method_index);
472}
473
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700474bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) {
475 auto* dex_cache = GetDexCache();
476 auto* dex_file = dex_cache->GetDexFile();
477 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
478 const auto& proto_id = dex_file->GetMethodPrototype(method_id);
479 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
480 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
481 auto param_len = params.Get() != nullptr ? params->GetLength() : 0u;
482 if (param_len != count) {
483 return false;
484 }
485 auto* cl = Runtime::Current()->GetClassLinker();
486 for (size_t i = 0; i < count; ++i) {
487 auto type_idx = proto_params->GetTypeItem(i).type_idx_;
488 auto* type = cl->ResolveType(type_idx, this);
489 if (type == nullptr) {
490 Thread::Current()->AssertPendingException();
491 return false;
492 }
493 if (type != params->GetWithoutChecks(i)) {
494 return false;
495 }
496 }
497 return true;
498}
499
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100500const uint8_t* ArtMethod::GetQuickenedInfo(PointerSize pointer_size) {
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100501 bool found = false;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100502 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100503 if (!found || (oat_method.GetQuickCode() != nullptr)) {
504 return nullptr;
505 }
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100506 if (kIsVdexEnabled) {
507 const OatQuickMethodHeader* header = oat_method.GetOatQuickMethodHeader();
508 // OatMethod without a header: no quickening table.
509 if (header == nullptr) {
510 return nullptr;
511 }
512 // The table is in the .vdex file.
513 const OatFile::OatDexFile* oat_dex_file = GetDexCache()->GetDexFile()->GetOatDexFile();
Mathieu Chartier1b868492016-11-16 16:22:37 -0800514 const OatFile* oat_file = oat_dex_file->GetOatFile();
515 if (oat_file == nullptr) {
516 return nullptr;
517 }
Mingyao Yang063fc772016-08-02 11:02:54 -0700518 return oat_file->DexBegin() + header->GetVmapTableOffset();
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100519 } else {
520 return oat_method.GetVmapTable();
521 }
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100522}
523
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100524const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) {
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000525 // Our callers should make sure they don't pass the instrumentation exit pc,
526 // as this method does not look at the side instrumentation stack.
527 DCHECK_NE(pc, reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()));
528
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000529 if (IsRuntimeMethod()) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100530 return nullptr;
531 }
532
533 Runtime* runtime = Runtime::Current();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100534 const void* existing_entry_point = GetEntryPointFromQuickCompiledCode();
David Sehr709b0702016-10-13 09:12:37 -0700535 CHECK(existing_entry_point != nullptr) << PrettyMethod() << "@" << this;
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100536 ClassLinker* class_linker = runtime->GetClassLinker();
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100537
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100538 if (class_linker->IsQuickGenericJniStub(existing_entry_point)) {
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100539 // The generic JNI does not have any method header.
540 return nullptr;
541 }
542
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000543 if (existing_entry_point == GetQuickProxyInvokeHandler()) {
544 DCHECK(IsProxyMethod() && !IsConstructor());
545 // The proxy entry point does not have any method header.
546 return nullptr;
547 }
548
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100549 // Check whether the current entry point contains this pc.
550 if (!class_linker->IsQuickResolutionStub(existing_entry_point) &&
551 !class_linker->IsQuickToInterpreterBridge(existing_entry_point)) {
552 OatQuickMethodHeader* method_header =
553 OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100554
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100555 if (method_header->Contains(pc)) {
556 return method_header;
557 }
558 }
559
560 // Check whether the pc is in the JIT code cache.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100561 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100562 if (jit != nullptr) {
563 jit::JitCodeCache* code_cache = jit->GetCodeCache();
564 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
565 if (method_header != nullptr) {
566 DCHECK(method_header->Contains(pc));
567 return method_header;
568 } else {
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000569 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
David Sehr709b0702016-10-13 09:12:37 -0700570 << PrettyMethod()
Nicolas Geoffray2a524bd2016-03-01 12:18:47 +0000571 << ", pc=" << std::hex << pc
572 << ", entry_point=" << std::hex << reinterpret_cast<uintptr_t>(existing_entry_point)
573 << ", copy=" << std::boolalpha << IsCopied()
574 << ", proxy=" << std::boolalpha << IsProxyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100575 }
576 }
577
578 // The code has to be in an oat file.
579 bool found;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100580 OatFile::OatMethod oat_method =
581 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100582 if (!found) {
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000583 if (class_linker->IsQuickResolutionStub(existing_entry_point)) {
584 // We are running the generic jni stub, but the entry point of the method has not
585 // been updated yet.
Nicolas Geoffray703c2822015-10-30 12:23:16 +0000586 DCHECK_EQ(pc, 0u) << "Should be a downcall";
587 DCHECK(IsNative());
588 return nullptr;
589 }
590 if (existing_entry_point == GetQuickInstrumentationEntryPoint()) {
591 // We are running the generic jni stub, but the method is being instrumented.
592 DCHECK_EQ(pc, 0u) << "Should be a downcall";
Nicolas Geoffray49e43962015-10-28 16:16:16 +0000593 DCHECK(IsNative());
594 return nullptr;
595 }
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100596 // Only for unit tests.
597 // TODO(ngeoffray): Update these tests to pass the right pc?
598 return OatQuickMethodHeader::FromEntryPoint(existing_entry_point);
599 }
600 const void* oat_entry_point = oat_method.GetQuickCode();
601 if (oat_entry_point == nullptr || class_linker->IsQuickGenericJniStub(oat_entry_point)) {
David Sehr709b0702016-10-13 09:12:37 -0700602 DCHECK(IsNative()) << PrettyMethod();
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100603 return nullptr;
604 }
605
606 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromEntryPoint(oat_entry_point);
607 if (pc == 0) {
608 // This is a downcall, it can only happen for a native method.
609 DCHECK(IsNative());
610 return method_header;
611 }
612
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100613 DCHECK(method_header->Contains(pc))
David Sehr709b0702016-10-13 09:12:37 -0700614 << PrettyMethod()
Roland Levillain0b671c02016-08-19 12:02:34 +0100615 << " " << std::hex << pc << " " << oat_entry_point
Mingyao Yang063fc772016-08-02 11:02:54 -0700616 << " " << (uintptr_t)(method_header->GetCode() + method_header->GetCodeSize());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100617 return method_header;
618}
619
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100620const void* ArtMethod::GetOatMethodQuickCode(PointerSize pointer_size) {
621 bool found;
622 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found);
623 if (found) {
624 return oat_method.GetQuickCode();
625 }
626 return nullptr;
627}
628
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000629bool ArtMethod::HasAnyCompiledCode() {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100630 if (IsNative() || !IsInvokable() || IsProxyMethod()) {
631 return false;
632 }
633
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000634 // Check whether the JIT has compiled it.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100635 Runtime* runtime = Runtime::Current();
636 jit::Jit* jit = runtime->GetJit();
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000637 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(this)) {
638 return true;
639 }
640
641 // Check whether we have AOT code.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100642 return GetOatMethodQuickCode(runtime->GetClassLinker()->GetImagePointerSize()) != nullptr;
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000643}
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000644
Andreas Gampe542451c2016-07-26 09:02:02 -0700645void ArtMethod::CopyFrom(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000646 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
647 Size(image_pointer_size));
648 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
649
650 // If the entry point of the method we are copying from is from JIT code, we just
651 // put the entry point of the new method to interpreter. We could set the entry point
652 // to the JIT code, but this would require taking the JIT code cache lock to notify
653 // it, which we do not want at this level.
654 Runtime* runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100655 if (runtime->UseJitCompilation()) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000656 if (runtime->GetJit()->GetCodeCache()->ContainsPc(GetEntryPointFromQuickCompiledCode())) {
657 SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(), image_pointer_size);
658 }
659 }
660 // Clear the profiling info for the same reasons as the JIT code.
661 if (!src->IsNative()) {
662 SetProfilingInfoPtrSize(nullptr, image_pointer_size);
663 }
664 // Clear hotness to let the JIT properly decide when to compile this method.
665 hotness_count_ = 0;
666}
667
Andreas Gampe542451c2016-07-26 09:02:02 -0700668bool ArtMethod::IsImagePointerSize(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700669 // Hijack this function to get access to PtrSizedFieldsOffset.
670 //
671 // Ensure that PrtSizedFieldsOffset is correct. We rely here on usually having both 32-bit and
672 // 64-bit builds.
673 static_assert(std::is_standard_layout<ArtMethod>::value, "ArtMethod is not standard layout.");
Andreas Gampe542451c2016-07-26 09:02:02 -0700674 static_assert(
675 (sizeof(void*) != 4) ||
676 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k32)),
677 "Unexpected 32-bit class layout.");
678 static_assert(
679 (sizeof(void*) != 8) ||
680 (offsetof(ArtMethod, ptr_sized_fields_) == PtrSizedFieldsOffset(PointerSize::k64)),
681 "Unexpected 64-bit class layout.");
Andreas Gampe479b1de2016-07-19 18:27:17 -0700682
Andreas Gampe75f08852016-07-19 08:06:07 -0700683 Runtime* runtime = Runtime::Current();
684 if (runtime == nullptr) {
685 return true;
686 }
687 return runtime->GetClassLinker()->GetImagePointerSize() == pointer_size;
688}
689
David Sehr709b0702016-10-13 09:12:37 -0700690std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) {
691 if (m == nullptr) {
692 return "null";
693 }
694 return m->PrettyMethod(with_signature);
695}
696
697std::string ArtMethod::PrettyMethod(bool with_signature) {
698 ArtMethod* m = this;
699 if (!m->IsRuntimeMethod()) {
700 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
701 }
702 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
703 result += '.';
704 result += m->GetName();
705 if (UNLIKELY(m->IsFastNative())) {
706 result += "!";
707 }
708 if (with_signature) {
709 const Signature signature = m->GetSignature();
710 std::string sig_as_string(signature.ToString());
711 if (signature == Signature::NoSignature()) {
712 return result + sig_as_string;
713 }
714 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
715 PrettyArguments(sig_as_string.c_str());
716 }
717 return result;
718}
719
720std::string ArtMethod::JniShortName() {
721 std::string class_name(GetDeclaringClassDescriptor());
722 // Remove the leading 'L' and trailing ';'...
723 CHECK_EQ(class_name[0], 'L') << class_name;
724 CHECK_EQ(class_name[class_name.size() - 1], ';') << class_name;
725 class_name.erase(0, 1);
726 class_name.erase(class_name.size() - 1, 1);
727
728 std::string method_name(GetName());
729
730 std::string short_name;
731 short_name += "Java_";
732 short_name += MangleForJni(class_name);
733 short_name += "_";
734 short_name += MangleForJni(method_name);
735 return short_name;
736}
737
738std::string ArtMethod::JniLongName() {
739 std::string long_name;
740 long_name += JniShortName();
741 long_name += "__";
742
743 std::string signature(GetSignature().ToString());
744 signature.erase(0, 1);
745 signature.erase(signature.begin() + signature.find(')'), signature.end());
746
747 long_name += MangleForJni(signature);
748
749 return long_name;
750}
751
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800752} // namespace art