Home
last modified time | relevance | path

Searched refs:caller (Results 1 – 11 of 11) sorted by relevance

/art/runtime/
Dnth_caller_visitor.h31 count(0), caller(NULL) {} in StackVisitor()
43 DCHECK(caller == NULL); in VisitFrame()
45 caller = m; in VisitFrame()
56 mirror::ArtMethod* caller; member
Dcommon_throws.h77 const mirror::ArtMethod* caller,
Dinstrumentation.cc530 deoptimize = visitor.caller != NULL; in PopInstrumentationStackFrame()
532 LOG(INFO) << "Deoptimizing into " << PrettyMethod(visitor.caller); in PopInstrumentationStackFrame()
Dcommon_throws.cc139 const mirror::ArtMethod* caller, in ThrowIllegalAccessErrorClassForMethodDispatch() argument
Djni_internal.cc2524 const char* caller) { in EnsureLocalCapacity() argument
2527 LOG(ERROR) << "Invalid capacity given to " << caller << ": " << desired_capacity; in EnsureLocalCapacity()
2535 soa.Self()->ThrowOutOfMemoryError(caller); in EnsureLocalCapacity()
/art/runtime/native/
Ddalvik_system_VMStack.cc72 return soa.AddLocalReference<jobject>(visitor.caller->GetDeclaringClass()->GetClassLoader()); in VMStack_getCallingClassLoader()
109 return soa.AddLocalReference<jclass>(visitor.caller->GetDeclaringClass()); in VMStack_getStackClass2()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc450 mirror::ArtMethod* caller = QuickArgumentVisitor::GetCallingMethod(sp); in artQuickResolutionTrampoline() local
455 uint32_t dex_pc = caller->ToDexPc(QuickArgumentVisitor::GetCallingPc(sp)); in artQuickResolutionTrampoline()
458 MethodHelper mh(caller); in artQuickResolutionTrampoline()
528 called = linker->ResolveMethod(dex_method_idx, caller, invoke_type); in artQuickResolutionTrampoline()
/art/runtime/entrypoints/portable/
Dportable_trampoline_entrypoints.cc317 mirror::ArtMethod* caller = thread->GetCurrentMethod(&dex_pc); in artPortableResolutionTrampoline() local
323 const DexFile::CodeItem* code = MethodHelper(caller).GetCodeItem(); in artPortableResolutionTrampoline()
375 called = linker->ResolveMethod(dex_method_idx, caller, invoke_type); in artPortableResolutionTrampoline()
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S366 lw $a2, 64($sp) # pass caller Method*
372 jal \cxx_name # (method_idx, this, caller, Thread*, $sp)
936 move $t0, $sp # remember bottom of caller's frame
997 # Returns caller method's frame size.
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S220 ldr r2, [sp, #48] @ pass caller Method*
226 bl \cxx_name @ (method_idx, this, caller, Thread*, SP)
910 mov r12, sp @ remember bottom of caller's frame
/art/runtime/interpreter/
Dinterpreter.cc174 result->SetL(visitor.caller->GetDeclaringClass()); in UnstartedRuntimeJni()