Home
last modified time | relevance | path

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

123

/art/runtime/entrypoints/quick/
Dquick_dexcache_entrypoints.cc73 ArtMethod* caller = caller_and_outer.caller; in artInitializeStaticStorageFromCode() local
75 ResolveVerifyAndClinit(dex::TypeIndex(type_idx), caller, self, true, false); in artInitializeStaticStorageFromCode()
87 ArtMethod* caller = caller_and_outer.caller; in artInitializeTypeFromCode() local
89 ResolveVerifyAndClinit(dex::TypeIndex(type_idx), caller, self, false, false); in artInitializeTypeFromCode()
102 ArtMethod* caller = caller_and_outer.caller; in artInitializeTypeAndVerifyAccessFromCode() local
104 ResolveVerifyAndClinit(dex::TypeIndex(type_idx), caller, self, false, true); in artInitializeTypeAndVerifyAccessFromCode()
115 ArtMethod* caller = caller_and_outer.caller; in artResolveStringFromCode() local
116 mirror::String* result = ResolveStringFromCode(caller, dex::StringIndex(string_idx)); in artResolveStringFromCode()
Dquick_trampoline_entrypoints.cc803 ArtMethod* caller = QuickArgumentVisitor::GetCallingMethod(sp); in artQuickToInterpreterBridge() local
808 Dbg::IsForcedInterpreterNeededForUpcall(self, caller))) { in artQuickToInterpreterBridge()
811 << caller->PrettyMethod(); in artQuickToInterpreterBridge()
1001 ArtMethod* caller = nullptr; in artQuickResolutionTrampoline() local
1003 caller = QuickArgumentVisitor::GetCallingMethod(sp); in artQuickResolutionTrampoline()
1004 called_method.dex_file = caller->GetDexFile(); in artQuickResolutionTrampoline()
1016 code = caller->GetCodeItem(); in artQuickResolutionTrampoline()
1104 DCHECK_EQ(caller->GetDexFile(), called_method.dex_file); in artQuickResolutionTrampoline()
1106 self, called_method.dex_method_index, caller, invoke_type); in artQuickResolutionTrampoline()
1125 CHECK(caller != nullptr) << invoke_type; in artQuickResolutionTrampoline()
[all …]
/art/test/common/
Dstack_inspect.cc44 NthCallerVisitor caller(soa.Self(), level, false); in IsInterpreted() local
45 caller.WalkStack(); in IsInterpreted()
46 CHECK(caller.caller != nullptr); in IsInterpreted()
47 return caller.GetCurrentShadowFrame() != nullptr ? JNI_TRUE : JNI_FALSE; in IsInterpreted()
149 NthCallerVisitor caller(soa.Self(), level, false); in IsManaged() local
150 caller.WalkStack(); in IsManaged()
151 CHECK(caller.caller != nullptr); in IsManaged()
152 return caller.GetCurrentShadowFrame() != nullptr ? JNI_FALSE : JNI_TRUE; in IsManaged()
/art/runtime/
Dnth_caller_visitor.h34 caller(nullptr), in StackVisitor()
47 DCHECK(caller == nullptr); in VisitFrame()
49 caller = m; in VisitFrame()
61 ArtMethod* caller; member
/art/runtime/entrypoints/
Dentrypoint_utils.cc197 ArtMethod* caller = outer_method; in DoGetCalleeSaveMethodCaller() local
211 caller = GetResolvedMethod(outer_method, in DoGetCalleeSaveMethodCaller()
223 CHECK_EQ(caller, visitor.caller); in DoGetCalleeSaveMethodCaller()
230 caller = visitor.caller; in DoGetCalleeSaveMethodCaller()
232 return caller; in DoGetCalleeSaveMethodCaller()
243 ArtMethod* caller = DoGetCalleeSaveMethodCaller(outer_method, caller_pc, do_caller_check); in GetCalleeSaveMethodCaller() local
244 return caller; in GetCalleeSaveMethodCaller()
255 result.caller = in GetCalleeSaveMethodCallerAndOuterMethod()
Dentrypoint_utils-inl.h71 ArtMethod* caller = outer_method; in GetResolvedMethod() local
73 caller = GetResolvedMethod(outer_method, in GetResolvedMethod()
81 const DexFile* dex_file = caller->GetDexFile(); in GetResolvedMethod()
83 ArtMethod* inlined_method = caller->GetDexCacheResolvedMethod(method_index, kRuntimePointerSize); in GetResolvedMethod()
90 mirror::ClassLoader* class_loader = caller->GetDeclaringClass()->GetClassLoader(); in GetResolvedMethod()
95 << caller->PrettyMethod() << ". " in GetResolvedMethod()
113 caller->SetDexCacheResolvedMethod(method_index, inlined_method, kRuntimePointerSize); in GetResolvedMethod()
/art/runtime/native/
Djava_lang_reflect_Constructor.cc76 ObjPtr<mirror::Class> caller = GetCallingClass(soa.Self(), 2); in Constructor_newInstance0() local
79 if (caller != nullptr && !caller->CanAccess(c.Get())) { in Constructor_newInstance0()
89 caller->PrettyClass().c_str()); in Constructor_newInstance0()
Ddalvik_system_VMStack.cc85 if (UNLIKELY(visitor.caller == nullptr)) { in VMStack_getCallingClassLoader()
89 return soa.AddLocalReference<jobject>(visitor.caller->GetDeclaringClass()->GetClassLoader()); in VMStack_getCallingClassLoader()
125 if (UNLIKELY(visitor.caller == nullptr)) { in VMStack_getStackClass2()
129 return soa.AddLocalReference<jclass>(visitor.caller->GetDeclaringClass()); in VMStack_getStackClass2()
Djava_lang_Class.cc683 auto caller = hs.NewHandle<mirror::Class>(nullptr); in Class_newInstance() local
686 caller.Assign(GetCallingClass(soa.Self(), 1)); in Class_newInstance()
687 if (caller != nullptr && !caller->CanAccess(klass.Get())) { in Class_newInstance()
690 klass->PrettyClass().c_str(), caller->PrettyClass().c_str()); in Class_newInstance()
722 if (caller == nullptr) { in Class_newInstance()
723 caller.Assign(GetCallingClass(soa.Self(), 1)); in Class_newInstance()
725 if (UNLIKELY(caller != nullptr && !VerifyAccess(receiver.Get(), in Class_newInstance()
728 caller.Get()))) { in Class_newInstance()
731 constructor->PrettyMethod().c_str(), caller->PrettyClass().c_str()); in Class_newInstance()
/art/test/526-checker-caller-callee-regs/
Dinfo.txt1 Test allocation of caller and callee saved registers.
/art/runtime/interpreter/mterp/mips64/
Dfooter.S57 beqzc v0, MterpExceptionReturn # no local catch, back to caller.
216 li v0, 1 # signal return to caller.
226 li v0, 1 # signal return to caller.
/art/runtime/interpreter/mterp/mips/
Dfooter.S97 beqz v0, MterpExceptionReturn # no local catch, back to caller.
257 li v0, 1 # signal return to caller.
263 li v0, 1 # signal return to caller.
/art/test/475-regression-inliner-ids/
Dinfo.txt2 instruction IDs in the caller graph.
/art/test/642-fp-callees/src/
DMain.java24 public static void caller(int a, int b, long c) { in caller() method in Main
/art/runtime/interpreter/mterp/arm/
Dfooter.S99 beq MterpExceptionReturn @ no local catch, back to caller.
267 mov r0, #1 @ signal return to caller.
273 mov r0, #1 @ signal return to caller.
/art/runtime/jit/
Djit.h121 ArtMethod* caller,
126 void NotifyInterpreterToCompiledCodeTransition(Thread* self, ArtMethod* caller) in NotifyInterpreterToCompiledCodeTransition() argument
128 AddSamples(self, caller, invoke_transition_weight_, false); in NotifyInterpreterToCompiledCodeTransition()
/art/test/952-invoke-custom/generator/
DTestLinkerMethodMinimalArguments.java55 private static CallSite linkerMethod(MethodHandles.Lookup caller, String name, in linkerMethod() argument
59 caller.findStatic(TestLinkerMethodMinimalArguments.class, name, methodType); in linkerMethod()
DTestLinkerMethodMultipleArgumentTypes.java53 private static CallSite linkerMethod(MethodHandles.Lookup caller, String name, in linkerMethod() argument
69 caller.findStatic(TestLinkerMethodMultipleArgumentTypes.class, name, methodType); in linkerMethod()
DTestInvokeCustomWithConcurrentThreads.java89 private static CallSite linkerMethod(MethodHandles.Lookup caller, in linkerMethod() argument
94 caller.findStatic(TestInvokeCustomWithConcurrentThreads.class, name, methodType); in linkerMethod()
/art/tools/dmtracedump/
Dtracedump.cc2036 MethodEntry* caller; in parseDataKeys() local
2110 caller = pStack->calls[pStack->top - 1].method; in parseDataKeys()
2112 caller = &dataKeys->methods[TOPLEVEL_INDEX]; in parseDataKeys()
2113 countRecursiveEntries(pStack, pStack->top, caller); in parseDataKeys()
2114 caller->elapsedExclusive += currentTime - pStack->lastEventTime; in parseDataKeys()
2116 if (caller->elapsedExclusive > 10000000) in parseDataKeys()
2118 caller->elapsedExclusive, currentTime, in parseDataKeys()
2122 if (caller->recursiveEntries <= 1) { in parseDataKeys()
2123 caller->topExclusive += currentTime - pStack->lastEventTime; in parseDataKeys()
2152 caller = pStack->calls[pStack->top - 1].method; in parseDataKeys()
[all …]
/art/runtime/interpreter/
Dunstarted_runtime.h97 const char* caller) REQUIRES_SHARED(Locks::mutator_lock_);
/art/test/452-multiple-returns2/smali/
DMultipleReturns.smali19 .method public static caller()I
/art/test/460-multiple-returns3/smali/
DMultipleReturns.smali19 .method public static caller()S
/art/test/448-multiple-returns/smali/
DMultipleReturns.smali19 .method public static caller()I
/art/runtime/openjdkjvmti/
Dti_stack.cc648 caller(nullptr), in GetLocationVisitor()
655 DCHECK(caller == nullptr); in VisitFrame()
657 caller = m; in VisitFrame()
668 art::ArtMethod* caller; member
680 method = visitor.caller; in Run()

123