Home
last modified time | relevance | path

Searched refs:GetMethod (Results 1 – 25 of 36) sorted by relevance

12

/art/runtime/interpreter/
Dinterpreter_common.cc38 …ArtField* f = FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), s… in DoFieldGet()
59 instrumentation->FieldReadEvent(self, this_object, shadow_frame.GetMethod(), in DoFieldGet()
144 instrumentation->FieldReadEvent(Thread::Current(), obj, shadow_frame.GetMethod(), in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
232 …ArtField* f = FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), s… in DoFieldPut()
256 instrumentation->FieldWriteEvent(self, this_object, shadow_frame.GetMethod(), in DoFieldPut()
363 instrumentation->FieldWriteEvent(Thread::Current(), obj, shadow_frame.GetMethod(), in EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL()
427 uint32_t found_dex_pc = shadow_frame.GetMethod()->FindCatchBlock( in EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL()
433 shadow_frame.GetMethod(), dex_pc); in EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL()
445 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()); in UnexpectedOpcode()
526 const DexFile::TypeList* params = new_shadow_frame->GetMethod()->GetParameterTypeList(); in DoCall()
[all …]
Dinterpreter.cc263 DCHECK(!shadow_frame.GetMethod()->IsAbstract()); in Execute()
264 DCHECK(!shadow_frame.GetMethod()->IsNative()); in Execute()
265 shadow_frame.GetMethod()->GetDeclaringClass()->AssertInitializedOrInitializingInThread(self); in Execute()
268 if (LIKELY(shadow_frame.GetMethod()->IsPreverified())) { in Execute()
404 const DexFile::CodeItem* code_item = shadow_frame->GetMethod()->GetCodeItem(); in EnterInterpreterFromDeoptimize()
453 const bool is_static = shadow_frame->GetMethod()->IsStatic(); in artInterpreterToInterpreterBridge()
455 mirror::Class* declaring_class = shadow_frame->GetMethod()->GetDeclaringClass(); in artInterpreterToInterpreterBridge()
469 if (LIKELY(!shadow_frame->GetMethod()->IsNative())) { in artInterpreterToInterpreterBridge()
477 UnstartedRuntime::Jni(self, shadow_frame->GetMethod(), receiver, args, result); in artInterpreterToInterpreterBridge()
Dinterpreter_common.h108 ArtMethod* sf_method = shadow_frame.GetMethod(); in DoInvoke()
198 ArtMethod* method = shadow_frame.GetMethod(); in ResolveString()
366 oss << PrettyMethod(shadow_frame.GetMethod()) in TraceExecution()
368 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n"; in TraceExecution()
Dinterpreter_goto_table_impl.cc64 instrumentation->BackwardBranch(self, shadow_frame.GetMethod(), offset); \
167 shadow_frame.GetMethod(), 0); in ExecuteGotoImpl()
263 shadow_frame.GetMethod(), dex_pc, in ExecuteGotoImpl()
277 shadow_frame.GetMethod(), dex_pc, in ExecuteGotoImpl()
292 shadow_frame.GetMethod(), dex_pc, in ExecuteGotoImpl()
306 shadow_frame.GetMethod(), dex_pc, in ExecuteGotoImpl()
319 Class* return_type = shadow_frame.GetMethod()->GetReturnType(); in ExecuteGotoImpl()
339 shadow_frame.GetMethod(), dex_pc, in ExecuteGotoImpl()
434 Class* c = ResolveVerifyAndClinit(inst->VRegB_21c(), shadow_frame.GetMethod(), in ExecuteGotoImpl()
470 Class* c = ResolveVerifyAndClinit(inst->VRegB_21c(), shadow_frame.GetMethod(), in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc52 shadow_frame.GetMethod(), dex_pc); \
74 shadow_frame.GetMethod(), 0); in ExecuteSwitchImpl()
174 shadow_frame.GetMethod(), inst->GetDexPc(insns), in ExecuteSwitchImpl()
186 shadow_frame.GetMethod(), inst->GetDexPc(insns), in ExecuteSwitchImpl()
199 shadow_frame.GetMethod(), inst->GetDexPc(insns), in ExecuteSwitchImpl()
211 shadow_frame.GetMethod(), inst->GetDexPc(insns), in ExecuteSwitchImpl()
223 Class* return_type = shadow_frame.GetMethod()->GetReturnType(); in ExecuteSwitchImpl()
243 shadow_frame.GetMethod(), inst->GetDexPc(insns), in ExecuteSwitchImpl()
337 Class* c = ResolveVerifyAndClinit(inst->VRegB_21c(), shadow_frame.GetMethod(), in ExecuteSwitchImpl()
373 Class* c = ResolveVerifyAndClinit(inst->VRegB_21c(), shadow_frame.GetMethod(), in ExecuteSwitchImpl()
[all …]
/art/runtime/
Dcheck_reference_map_visitor.h35 ArtMethod* m = GetMethod(); in VisitFrame()
56 if (GetMethod()->IsOptimized(sizeof(void*))) { in CheckReferences()
66 ArtMethod* m = GetMethod(); in CheckOptimizedMethod()
107 ArtMethod* m = GetMethod(); in CheckQuickMethod()
Dstack.cc42 ArtMethod* m = GetMethod(); in GetThisObject()
56 ArtMethod* m = GetMethod(); in GetThisObject()
70 if (current_frame->GetMethod()->IsNative()) { in NumJniShadowFrameReferences()
114 return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure); in GetDexPc()
125 ArtMethod* m = GetMethod(); in GetThisObject()
161 return GetMethod()->NativeQuickPcOffset(cur_quick_frame_pc_); in GetNativePcOffset()
194 DCHECK(m == GetMethod()); in GetVReg()
306 DCHECK(m == GetMethod()); in GetVRegPair()
382 DCHECK(m == GetMethod()); in SetVReg()
397 DCHECK(m == GetMethod()); in SetVRegFromQuickCode()
[all …]
Dprofiler.h60 MethodReference GetMethod() { return method_; } in GetMethod() function
73 MethodReference mr1 = node1->GetMethod(); in operator()
74 MethodReference mr2 = node2->GetMethod(); in operator()
Dnth_caller_visitor.h37 ArtMethod* m = GetMethod(); in VisitFrame()
Dquick_exception_handler.cc56 ArtMethod* method = GetMethod(); in VisitFrame()
172 ArtMethod* method = GetMethod(); in VisitFrame()
363 CHECK(GetMethod() != nullptr); in VisitFrame()
Dstack.h241 ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetMethod() function
428 ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetMethod() function
430 return cur_shadow_frame_->GetMethod(); in GetMethod()
451 DCHECK(GetMethod() != nullptr); in CalleeSaveAddress()
/art/runtime/entrypoints/interpreter/
Dinterpreter_entrypoints.cc30 ArtMethod* method = shadow_frame->GetMethod(); in artInterpreterToCompiledCodeBridge()
47 method = shadow_frame->GetMethod(); in artInterpreterToCompiledCodeBridge()
/art/test/466-get-live-vreg/
Dget_live_vreg_jni.cc34 ArtMethod* m = GetMethod(); in VisitFrame()
/art/test/004-ReferenceMap/
Dstack_walk_refmap_jni.cc39 ArtMethod* m = GetMethod(); in VisitFrame()
/art/test/004-StackWalk/
Dstack_walk_jni.cc39 ArtMethod* m = GetMethod(); in VisitFrame()
/art/test/461-get-reference-vreg/
Dget_reference_vreg_jni.cc37 ArtMethod* m = GetMethod(); in VisitFrame()
/art/runtime/arch/mips/
Dcontext_mips.cc39 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
/art/runtime/arch/x86/
Dcontext_x86.cc38 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
/art/runtime/arch/arm/
Dcontext_arm.cc39 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
/art/test/455-set-vreg/
Dset_vreg_jni.cc36 ArtMethod* m = GetMethod(); in VisitFrame()
/art/test/454-get-vreg/
Dget_vreg_jni.cc37 ArtMethod* m = GetMethod(); in VisitFrame()
/art/runtime/native/
Ddalvik_system_VMStack.cc92 mirror::Class* c = GetMethod()->GetDeclaringClass(); in VMStack_getClosestUserClassLoader()
/art/runtime/arch/x86_64/
Dcontext_x86_64.cc38 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
/art/runtime/arch/mips64/
Dcontext_mips64.cc39 ArtMethod* method = fr.GetMethod(); in FillCalleeSaves()
/art/test/457-regs/
Dregs_jni.cc35 ArtMethod* m = GetMethod(); in VisitFrame()

12