/art/runtime/entrypoints/quick/ |
D | quick_dexcache_entrypoints.cc | 70 ArtMethod* caller = caller_and_outer.caller; in artInitializeStaticStorageFromCode() local 72 ResolveVerifyAndClinit(dex::TypeIndex(type_idx), caller, self, true, false); in artInitializeStaticStorageFromCode() 85 ArtMethod* caller = caller_and_outer.caller; in artInitializeTypeFromCode() local 87 ResolveVerifyAndClinit(dex::TypeIndex(type_idx), caller, self, false, false); in artInitializeTypeFromCode() 101 ArtMethod* caller = caller_and_outer.caller; in artInitializeTypeAndVerifyAccessFromCode() local 103 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()
|
D | quick_trampoline_entrypoints.cc | 813 ArtMethod* caller = QuickArgumentVisitor::GetCallingMethod(sp); in artQuickToInterpreterBridge() local 818 Dbg::IsForcedInterpreterNeededForUpcall(self, caller))) { in artQuickToInterpreterBridge() 821 << caller->PrettyMethod(); in artQuickToInterpreterBridge() 1081 ArtMethod* caller = nullptr; in artQuickResolutionTrampoline() local 1083 caller = QuickArgumentVisitor::GetCallingMethod(sp); in artQuickResolutionTrampoline() 1084 called_method.dex_file = caller->GetDexFile(); in artQuickResolutionTrampoline() 1096 code = caller->GetCodeItem(); in artQuickResolutionTrampoline() 1184 DCHECK_EQ(caller->GetDexFile(), called_method.dex_file); in artQuickResolutionTrampoline() 1186 self, called_method.dex_method_index, caller, invoke_type); in artQuickResolutionTrampoline() 1231 CHECK(caller != nullptr) << invoke_type; in artQuickResolutionTrampoline() [all …]
|
/art/test/common/ |
D | stack_inspect.cc | 44 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/ |
D | nth_caller_visitor.h | 34 caller(nullptr), in StackVisitor() 47 DCHECK(caller == nullptr); in VisitFrame() 49 caller = m; in VisitFrame() 61 ArtMethod* caller; member
|
D | instrumentation.h | 142 ArtMethod* caller, 414 ArtMethod* caller, in InvokeVirtualOrInterface() argument 419 InvokeVirtualOrInterfaceImpl(thread, this_object, caller, dex_pc, callee); in InvokeVirtualOrInterface() 527 ArtMethod* caller,
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 197 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() 241 ArtMethod* caller = DoGetCalleeSaveMethodCaller(outer_method, caller_pc, do_caller_check); in GetCalleeSaveMethodCaller() local 242 return caller; in GetCalleeSaveMethodCaller() 252 result.caller = in GetCalleeSaveMethodCallerAndOuterMethod()
|
D | entrypoint_utils-inl.h | 73 ArtMethod* caller = outer_method; in GetResolvedMethod() local 75 caller = GetResolvedMethod(outer_method, in GetResolvedMethod() 83 ObjPtr<mirror::DexCache> dex_cache = caller->GetDexCache(); in GetResolvedMethod() 86 ArtMethod* inlined_method = caller->GetDexCacheResolvedMethod(method_index, kRuntimePointerSize); in GetResolvedMethod() 94 mirror::ClassLoader* class_loader = caller->GetDeclaringClass()->GetClassLoader(); in GetResolvedMethod() 98 << " was not found in the class loader of " << caller->PrettyMethod() << ". " in GetResolvedMethod() 109 caller->SetDexCacheResolvedMethod(method_index, inlined_method, kRuntimePointerSize); in GetResolvedMethod()
|
/art/runtime/native/ |
D | java_lang_reflect_Constructor.cc | 79 ObjPtr<mirror::Class> caller = GetCallingClass(soa.Self(), 2); in Constructor_newInstance0() local 82 if (caller != nullptr && !caller->CanAccess(c.Get())) { in Constructor_newInstance0() 92 caller->PrettyClass().c_str()); in Constructor_newInstance0()
|
D | dalvik_system_VMStack.cc | 92 if (UNLIKELY(visitor.caller == nullptr)) { in VMStack_getCallingClassLoader() 96 return soa.AddLocalReference<jobject>(visitor.caller->GetDeclaringClass()->GetClassLoader()); in VMStack_getCallingClassLoader() 132 if (UNLIKELY(visitor.caller == nullptr)) { in VMStack_getStackClass2() 136 return soa.AddLocalReference<jclass>(visitor.caller->GetDeclaringClass()); in VMStack_getStackClass2()
|
D | java_lang_Class.cc | 685 auto caller = hs.NewHandle<mirror::Class>(nullptr); in Class_newInstance() local 688 caller.Assign(GetCallingClass(soa.Self(), 1)); in Class_newInstance() 689 if (caller != nullptr && !caller->CanAccess(klass.Get())) { in Class_newInstance() 692 klass->PrettyClass().c_str(), caller->PrettyClass().c_str()); in Class_newInstance() 724 if (caller == nullptr) { in Class_newInstance() 725 caller.Assign(GetCallingClass(soa.Self(), 1)); in Class_newInstance() 727 if (UNLIKELY(caller != nullptr && !VerifyAccess(receiver.Get(), in Class_newInstance() 730 caller.Get()))) { in Class_newInstance() 733 constructor->PrettyMethod().c_str(), caller->PrettyClass().c_str()); in Class_newInstance()
|
/art/test/526-checker-caller-callee-regs/ |
D | info.txt | 1 Test allocation of caller and callee saved registers.
|
/art/test/475-regression-inliner-ids/ |
D | info.txt | 2 instruction IDs in the caller graph.
|
/art/runtime/interpreter/mterp/mips64/ |
D | footer.S | 57 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/ |
D | footer.S | 97 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/642-fp-callees/src/ |
D | Main.java | 24 public static void caller(int a, int b, long c) { in caller() method in Main
|
/art/runtime/interpreter/mterp/arm/ |
D | footer.S | 99 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/ |
D | jit.h | 117 ArtMethod* caller, 122 void NotifyInterpreterToCompiledCodeTransition(Thread* self, ArtMethod* caller) in NotifyInterpreterToCompiledCodeTransition() argument 124 AddSamples(self, caller, invoke_transition_weight_, false); in NotifyInterpreterToCompiledCodeTransition()
|
/art/test/952-invoke-custom/generator/ |
D | TestLinkerMethodMinimalArguments.java | 55 private static CallSite linkerMethod(MethodHandles.Lookup caller, String name, in linkerMethod() argument 59 caller.findStatic(TestLinkerMethodMinimalArguments.class, name, methodType); in linkerMethod()
|
D | TestLinkerMethodMultipleArgumentTypes.java | 53 private static CallSite linkerMethod(MethodHandles.Lookup caller, String name, in linkerMethod() argument 69 caller.findStatic(TestLinkerMethodMultipleArgumentTypes.class, name, methodType); in linkerMethod()
|
D | TestInvokeCustomWithConcurrentThreads.java | 89 private static CallSite linkerMethod(MethodHandles.Lookup caller, in linkerMethod() argument 94 caller.findStatic(TestInvokeCustomWithConcurrentThreads.class, name, methodType); in linkerMethod()
|
/art/tools/dmtracedump/ |
D | tracedump.cc | 2036 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/ |
D | unstarted_runtime.h | 97 const char* caller) REQUIRES_SHARED(Locks::mutator_lock_);
|
/art/test/452-multiple-returns2/smali/ |
D | MultipleReturns.smali | 19 .method public static caller()I
|
/art/test/460-multiple-returns3/smali/ |
D | MultipleReturns.smali | 19 .method public static caller()S
|
/art/test/448-multiple-returns/smali/ |
D | MultipleReturns.smali | 19 .method public static caller()I
|