blob: afc10798789b0cba614ad907c8d67d45e5379d4e [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
Ian Rogerse63db272014-07-15 15:36:11 -070019#include "arch/context.h"
Ian Rogers62f05122014-03-21 11:21:29 -070020#include "art_field-inl.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070021#include "art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022#include "base/stringpiece.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070023#include "class-inl.h"
24#include "dex_file-inl.h"
Ian Rogersc449aa82013-07-29 14:35:46 -070025#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070026#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "interpreter/interpreter.h"
28#include "jni_internal.h"
Ian Rogers1809a722013-08-09 22:05:32 -070029#include "mapping_table.h"
Ian Rogerscb6b0f32014-08-12 02:30:58 -070030#include "method_helper-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "object_array-inl.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070032#include "object_array.h"
33#include "object-inl.h"
Ian Rogers62f05122014-03-21 11:21:29 -070034#include "scoped_thread_state_change.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "string.h"
Ian Rogers62f05122014-03-21 11:21:29 -070036#include "well_known_classes.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037
38namespace art {
39namespace mirror {
40
Brian Carlstromea46f952013-07-30 01:26:50 -070041extern "C" void art_portable_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*, char);
Ian Rogers0177e532014-02-11 16:30:46 -080042extern "C" void art_quick_invoke_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
43 const char*);
Stuart Monteithb95a5342014-03-12 13:32:32 +000044#ifdef __LP64__
Ian Rogers936b37f2014-02-14 00:52:24 -080045extern "C" void art_quick_invoke_static_stub(ArtMethod*, uint32_t*, uint32_t, Thread*, JValue*,
46 const char*);
47#endif
Jeff Hao5d917302013-02-27 17:57:33 -080048
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049// TODO: get global references for these
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070050GcRoot<Class> ArtMethod::java_lang_reflect_ArtMethod_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070052ArtMethod* ArtMethod::FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
53 jobject jlr_method) {
Ian Rogers62f05122014-03-21 11:21:29 -070054 mirror::ArtField* f =
55 soa.DecodeField(WellKnownClasses::java_lang_reflect_AbstractMethod_artMethod);
56 mirror::ArtMethod* method = f->GetObject(soa.Decode<mirror::Object*>(jlr_method))->AsArtMethod();
57 DCHECK(method != nullptr);
58 return method;
59}
60
61
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080062void ArtMethod::VisitRoots(RootCallback* callback, void* arg) {
Mathieu Chartier12f74232015-01-14 14:55:47 -080063 java_lang_reflect_ArtMethod_.VisitRootIfNonNull(callback, arg, RootInfo(kRootStickyClass));
Mathieu Chartierc528dba2013-11-26 12:00:11 -080064}
65
Ian Rogersef7d42f2014-01-06 12:55:46 -080066InvokeType ArtMethod::GetInvokeType() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080067 // TODO: kSuper?
68 if (GetDeclaringClass()->IsInterface()) {
69 return kInterface;
70 } else if (IsStatic()) {
71 return kStatic;
72 } else if (IsDirect()) {
73 return kDirect;
74 } else {
75 return kVirtual;
76 }
77}
78
Brian Carlstromea46f952013-07-30 01:26:50 -070079void ArtMethod::SetClass(Class* java_lang_reflect_ArtMethod) {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070080 CHECK(java_lang_reflect_ArtMethod_.IsNull());
Brian Carlstromea46f952013-07-30 01:26:50 -070081 CHECK(java_lang_reflect_ArtMethod != NULL);
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070082 java_lang_reflect_ArtMethod_ = GcRoot<Class>(java_lang_reflect_ArtMethod);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080083}
84
Brian Carlstromea46f952013-07-30 01:26:50 -070085void ArtMethod::ResetClass() {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070086 CHECK(!java_lang_reflect_ArtMethod_.IsNull());
87 java_lang_reflect_ArtMethod_ = GcRoot<Class>(nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080088}
89
Brian Carlstromea46f952013-07-30 01:26:50 -070090size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080091 CHECK_LE(1, shorty.length());
92 uint32_t num_registers = 0;
93 for (int i = 1; i < shorty.length(); ++i) {
94 char ch = shorty[i];
95 if (ch == 'D' || ch == 'J') {
96 num_registers += 2;
97 } else {
98 num_registers += 1;
99 }
100 }
101 return num_registers;
102}
103
Ian Rogersef7d42f2014-01-06 12:55:46 -0800104ArtMethod* ArtMethod::FindOverriddenMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800105 if (IsStatic()) {
106 return NULL;
107 }
108 Class* declaring_class = GetDeclaringClass();
109 Class* super_class = declaring_class->GetSuperClass();
110 uint16_t method_index = GetMethodIndex();
Brian Carlstromea46f952013-07-30 01:26:50 -0700111 ArtMethod* result = NULL;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800112 // Did this method override a super class method? If so load the result from the super class'
113 // vtable
Mingyao Yang2cdbad72014-07-16 10:44:41 -0700114 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
115 result = super_class->GetVTableEntry(method_index);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800116 } else {
117 // Method didn't override superclass method so search interfaces
118 if (IsProxyMethod()) {
119 result = GetDexCacheResolvedMethods()->Get(GetDexMethodIndex());
120 CHECK_EQ(result,
121 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
122 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700123 StackHandleScope<2> hs(Thread::Current());
124 MethodHelper mh(hs.NewHandle(this));
125 MethodHelper interface_mh(hs.NewHandle<mirror::ArtMethod>(nullptr));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800126 IfTable* iftable = GetDeclaringClass()->GetIfTable();
127 for (size_t i = 0; i < iftable->Count() && result == NULL; i++) {
128 Class* interface = iftable->GetInterface(i);
129 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700130 interface_mh.ChangeMethod(interface->GetVirtualMethod(j));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800131 if (mh.HasSameNameAndSignature(&interface_mh)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700132 result = interface_mh.GetMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800133 break;
134 }
135 }
136 }
137 }
138 }
Jeff Hao4bf8d112014-07-24 16:26:09 -0700139 if (kIsDebugBuild) {
140 StackHandleScope<2> hs(Thread::Current());
141 MethodHelper result_mh(hs.NewHandle(result));
142 MethodHelper this_mh(hs.NewHandle(this));
143 DCHECK(result == nullptr || this_mh.HasSameNameAndSignature(&result_mh));
144 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800145 return result;
146}
147
Dave Allisonb373e092014-02-20 16:06:36 -0800148uint32_t ArtMethod::ToDexPc(const uintptr_t pc, bool abort_on_failure) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800149 if (IsPortableCompiled()) {
150 // Portable doesn't use the machine pc, we just use dex pc instead.
151 return static_cast<uint32_t>(pc);
152 }
Mathieu Chartierc934e482014-11-20 17:08:58 -0800153 const void* entry_point = GetQuickOatEntryPoint(sizeof(void*));
154 MappingTable table(entry_point != nullptr ?
155 GetMappingTable(EntryPointToCodePointer(entry_point), sizeof(void*)) : nullptr);
Ian Rogers1809a722013-08-09 22:05:32 -0700156 if (table.TotalSize() == 0) {
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100157 // NOTE: Special methods (see Mir2Lir::GenSpecialCase()) have an empty mapping
158 // but they have no suspend checks and, consequently, we never call ToDexPc() for them.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800159 DCHECK(IsNative() || IsCalleeSaveMethod() || IsProxyMethod()) << PrettyMethod(this);
160 return DexFile::kDexNoIndex; // Special no mapping case
161 }
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100162 uint32_t sought_offset = pc - reinterpret_cast<uintptr_t>(entry_point);
Ian Rogers1809a722013-08-09 22:05:32 -0700163 // Assume the caller wants a pc-to-dex mapping so check here first.
164 typedef MappingTable::PcToDexIterator It;
165 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
166 if (cur.NativePcOffset() == sought_offset) {
167 return cur.DexPc();
168 }
169 }
170 // Now check dex-to-pc mappings.
171 typedef MappingTable::DexToPcIterator It2;
172 for (It2 cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
173 if (cur.NativePcOffset() == sought_offset) {
174 return cur.DexPc();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800175 }
176 }
Dave Allisonb373e092014-02-20 16:06:36 -0800177 if (abort_on_failure) {
178 LOG(FATAL) << "Failed to find Dex offset for PC offset " << reinterpret_cast<void*>(sought_offset)
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100179 << "(PC " << reinterpret_cast<void*>(pc) << ", entry_point=" << entry_point
Dave Allisonb373e092014-02-20 16:06:36 -0800180 << ") in " << PrettyMethod(this);
181 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800182 return DexFile::kDexNoIndex;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800183}
184
Ian Rogersef7d42f2014-01-06 12:55:46 -0800185uintptr_t ArtMethod::ToNativePc(const uint32_t dex_pc) {
Mathieu Chartierc934e482014-11-20 17:08:58 -0800186 const void* entry_point = GetQuickOatEntryPoint(sizeof(void*));
187 MappingTable table(entry_point != nullptr ?
188 GetMappingTable(EntryPointToCodePointer(entry_point), sizeof(void*)) : nullptr);
Ian Rogers1809a722013-08-09 22:05:32 -0700189 if (table.TotalSize() == 0) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800190 DCHECK_EQ(dex_pc, 0U);
191 return 0; // Special no mapping/pc == 0 case
192 }
Ian Rogers1809a722013-08-09 22:05:32 -0700193 // Assume the caller wants a dex-to-pc mapping so check here first.
194 typedef MappingTable::DexToPcIterator It;
195 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
196 if (cur.DexPc() == dex_pc) {
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100197 return reinterpret_cast<uintptr_t>(entry_point) + cur.NativePcOffset();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800198 }
199 }
Ian Rogers1809a722013-08-09 22:05:32 -0700200 // Now check pc-to-dex mappings.
201 typedef MappingTable::PcToDexIterator It2;
202 for (It2 cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
203 if (cur.DexPc() == dex_pc) {
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100204 return reinterpret_cast<uintptr_t>(entry_point) + cur.NativePcOffset();
Ian Rogers1809a722013-08-09 22:05:32 -0700205 }
206 }
207 LOG(FATAL) << "Failed to find native offset for dex pc 0x" << std::hex << dex_pc
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800208 << " in " << PrettyMethod(this);
209 return 0;
210}
211
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700212uint32_t ArtMethod::FindCatchBlock(Handle<ArtMethod> h_this, Handle<Class> exception_type,
213 uint32_t dex_pc, bool* has_no_move_exception) {
214 MethodHelper mh(h_this);
215 const DexFile::CodeItem* code_item = h_this->GetCodeItem();
Jeff Haoaa961912014-04-22 13:54:32 -0700216 // Set aside the exception while we resolve its type.
217 Thread* self = Thread::Current();
218 ThrowLocation throw_location;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700219 StackHandleScope<1> hs(self);
220 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException(&throw_location)));
Sebastien Hertz9f102032014-05-23 08:59:42 +0200221 bool is_exception_reported = self->IsExceptionReportedToInstrumentation();
Jeff Haoaa961912014-04-22 13:54:32 -0700222 self->ClearException();
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700223 // Default to handler not found.
224 uint32_t found_dex_pc = DexFile::kDexNoIndex;
225 // Iterate over the catch handlers associated with dex_pc.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800226 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
227 uint16_t iter_type_idx = it.GetHandlerTypeIndex();
228 // Catch all case
229 if (iter_type_idx == DexFile::kDexNoIndex16) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700230 found_dex_pc = it.GetHandlerAddress();
231 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800232 }
233 // Does this catch exception type apply?
Jeff Haoaa961912014-04-22 13:54:32 -0700234 Class* iter_exception_type = mh.GetClassFromTypeIdx(iter_type_idx);
Ian Rogers822266b2014-05-29 16:55:06 -0700235 if (UNLIKELY(iter_exception_type == nullptr)) {
236 // Now have a NoClassDefFoundError as exception. Ignore in case the exception class was
237 // removed by a pro-guard like tool.
Andreas Gampe72b3e432014-05-13 21:42:05 -0700238 // Note: this is not RI behavior. RI would have failed when loading the class.
Ian Rogers822266b2014-05-29 16:55:06 -0700239 self->ClearException();
240 // Delete any long jump context as this routine is called during a stack walk which will
241 // release its in use context at the end.
242 delete self->GetLongJumpContext();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800243 LOG(WARNING) << "Unresolved exception class when finding catch block: "
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700244 << DescriptorToDot(h_this->GetTypeDescriptorFromTypeIdx(iter_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700245 } else if (iter_exception_type->IsAssignableFrom(exception_type.Get())) {
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700246 found_dex_pc = it.GetHandlerAddress();
247 break;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800248 }
249 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700250 if (found_dex_pc != DexFile::kDexNoIndex) {
251 const Instruction* first_catch_instr =
Jeff Haoaa961912014-04-22 13:54:32 -0700252 Instruction::At(&code_item->insns_[found_dex_pc]);
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700253 *has_no_move_exception = (first_catch_instr->Opcode() != Instruction::MOVE_EXCEPTION);
254 }
Jeff Haoaa961912014-04-22 13:54:32 -0700255 // Put the exception back.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700256 if (exception.Get() != nullptr) {
257 self->SetException(throw_location, exception.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +0200258 self->SetExceptionReportedToInstrumentation(is_exception_reported);
Jeff Haoaa961912014-04-22 13:54:32 -0700259 }
Ian Rogers9e8f45e2013-07-31 10:58:53 -0700260 return found_dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800261}
262
Brian Carlstromea46f952013-07-30 01:26:50 -0700263void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
Ian Rogers0177e532014-02-11 16:30:46 -0800264 const char* shorty) {
Dave Allison03c97852014-08-14 17:02:48 +0000265 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
266 ThrowStackOverflowError(self);
267 return;
268 }
269
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800270 if (kIsDebugBuild) {
271 self->AssertThreadSuspensionIsAllowable();
272 CHECK_EQ(kRunnable, self->GetState());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700273 CHECK_STREQ(GetShorty(), shorty);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800274 }
275
276 // Push a transition back into managed code onto the linked list in thread.
277 ManagedStack fragment;
278 self->PushManagedStackFragment(&fragment);
279
Ian Rogers62d6c772013-02-27 08:32:07 -0800280 Runtime* runtime = Runtime::Current();
Jeff Hao74180ca2013-03-27 15:29:11 -0700281 // Call the invoke stub, passing everything as arguments.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700282 if (UNLIKELY(!runtime->IsStarted())) {
Ian Rogers5d27faf2014-05-02 17:17:18 -0700283 if (IsStatic()) {
284 art::interpreter::EnterInterpreterFromInvoke(self, this, nullptr, args, result);
285 } else {
286 Object* receiver = reinterpret_cast<StackReference<Object>*>(&args[0])->AsMirrorPtr();
287 art::interpreter::EnterInterpreterFromInvoke(self, this, receiver, args + 1, result);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800288 }
289 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800290 const bool kLogInvocationStartAndReturn = false;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800291 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr;
Ian Rogers63bc11e2014-09-18 08:56:45 -0700292#if defined(ART_USE_PORTABLE_COMPILER)
Ian Rogersef7d42f2014-01-06 12:55:46 -0800293 bool have_portable_code = GetEntryPointFromPortableCompiledCode() != nullptr;
Ian Rogers63bc11e2014-09-18 08:56:45 -0700294#else
295 bool have_portable_code = false;
296#endif
Ian Rogersef7d42f2014-01-06 12:55:46 -0800297 if (LIKELY(have_quick_code || have_portable_code)) {
Jeff Hao790ad902013-05-22 15:02:08 -0700298 if (kLogInvocationStartAndReturn) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800299 LOG(INFO) << StringPrintf("Invoking '%s' %s code=%p", PrettyMethod(this).c_str(),
300 have_quick_code ? "quick" : "portable",
301 have_quick_code ? GetEntryPointFromQuickCompiledCode()
Ian Rogers63bc11e2014-09-18 08:56:45 -0700302#if defined(ART_USE_PORTABLE_COMPILER)
Ian Rogersef7d42f2014-01-06 12:55:46 -0800303 : GetEntryPointFromPortableCompiledCode());
Ian Rogers63bc11e2014-09-18 08:56:45 -0700304#else
305 : nullptr);
306#endif
Jeff Hao790ad902013-05-22 15:02:08 -0700307 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800308 if (!IsPortableCompiled()) {
Stuart Monteithb95a5342014-03-12 13:32:32 +0000309#ifdef __LP64__
Ian Rogers936b37f2014-02-14 00:52:24 -0800310 if (!IsStatic()) {
311 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
312 } else {
313 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
314 }
315#else
Ian Rogers0177e532014-02-11 16:30:46 -0800316 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
Ian Rogers936b37f2014-02-14 00:52:24 -0800317#endif
Ian Rogersef7d42f2014-01-06 12:55:46 -0800318 } else {
Ian Rogers0177e532014-02-11 16:30:46 -0800319 (*art_portable_invoke_stub)(this, args, args_size, self, result, shorty[0]);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800320 }
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200321 if (UNLIKELY(self->GetException(nullptr) == Thread::GetDeoptimizationException())) {
322 // Unusual case where we were running generated code and an
Jeff Hao790ad902013-05-22 15:02:08 -0700323 // exception was thrown to force the activations to be removed from the
324 // stack. Continue execution in the interpreter.
325 self->ClearException();
326 ShadowFrame* shadow_frame = self->GetAndClearDeoptimizationShadowFrame(result);
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200327 self->SetTopOfStack(nullptr, 0);
Jeff Hao790ad902013-05-22 15:02:08 -0700328 self->SetTopOfShadowStack(shadow_frame);
329 interpreter::EnterInterpreterFromDeoptimize(self, shadow_frame, result);
330 }
331 if (kLogInvocationStartAndReturn) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800332 LOG(INFO) << StringPrintf("Returned '%s' %s code=%p", PrettyMethod(this).c_str(),
333 have_quick_code ? "quick" : "portable",
334 have_quick_code ? GetEntryPointFromQuickCompiledCode()
Ian Rogers63bc11e2014-09-18 08:56:45 -0700335#if defined(ART_USE_PORTABLE_COMPILER)
Ian Rogersef7d42f2014-01-06 12:55:46 -0800336 : GetEntryPointFromPortableCompiledCode());
Ian Rogers63bc11e2014-09-18 08:56:45 -0700337#else
338 : nullptr);
339#endif
Jeff Hao5d917302013-02-27 17:57:33 -0800340 }
341 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800342 LOG(INFO) << "Not invoking '" << PrettyMethod(this) << "' code=null";
Jeff Hao5d917302013-02-27 17:57:33 -0800343 if (result != NULL) {
344 result->SetJ(0);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800345 }
346 }
347 }
348
349 // Pop transition.
350 self->PopManagedStackFragment(fragment);
351}
352
Ian Rogers1eb512d2013-10-18 15:42:20 -0700353void ArtMethod::RegisterNative(Thread* self, const void* native_method, bool is_fast) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800354 DCHECK(Thread::Current() == self);
355 CHECK(IsNative()) << PrettyMethod(this);
Ian Rogers1eb512d2013-10-18 15:42:20 -0700356 CHECK(!IsFastNative()) << PrettyMethod(this);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800357 CHECK(native_method != NULL) << PrettyMethod(this);
Ian Rogers987560f2014-04-22 11:42:59 -0700358 if (is_fast) {
359 SetAccessFlags(GetAccessFlags() | kAccFastNative);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800360 }
Mathieu Chartiere832e642014-11-10 11:08:06 -0800361 SetEntryPointFromJni(native_method);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800362}
363
Brian Carlstromea46f952013-07-30 01:26:50 -0700364void ArtMethod::UnregisterNative(Thread* self) {
Ian Rogers1eb512d2013-10-18 15:42:20 -0700365 CHECK(IsNative() && !IsFastNative()) << PrettyMethod(this);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800366 // restore stub to lookup native pointer via dlsym
Ian Rogers1eb512d2013-10-18 15:42:20 -0700367 RegisterNative(self, GetJniDlsymLookupStub(), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800368}
369
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800370} // namespace mirror
371} // namespace art