Home
last modified time | relevance | path

Searched refs:callee (Results 1 – 14 of 14) sorted by relevance

/art/test/642-fp-callees/src/
DMain.java25 $noinline$callee(a, b, c); in caller()
30 public static void $noinline$callee(int a, int b, long c) { in $noinline$callee()
/art/compiler/optimizing/
Dsharpening.cc60 ArtMethod* callee, CodeGenerator* codegen) { in SharpenInvokeStaticOrDirect() argument
63 DCHECK(callee != nullptr); in SharpenInvokeStaticOrDirect()
64 DCHECK(!(callee->IsConstructor() && callee->GetDeclaringClass()->IsStringClass())); in SharpenInvokeStaticOrDirect()
85 if (callee == codegen->GetGraph()->GetArtMethod() && !codegen->GetGraph()->IsDebuggable()) { in SharpenInvokeStaticOrDirect()
93 } else if (BootImageAOTCanEmbedMethod(callee, compiler_options)) { in SharpenInvokeStaticOrDirect()
104 method_load_data = reinterpret_cast<uintptr_t>(callee); in SharpenInvokeStaticOrDirect()
106 } else if (IsInBootImage(callee)) { in SharpenInvokeStaticOrDirect()
125 return codegen->GetSupportedInvokeStaticOrDirectDispatch(desired_dispatch_info, callee); in SharpenInvokeStaticOrDirect()
Dsharpening.h34 ArtMethod* callee, CodeGenerator* codegen);
Dinliner.cc1744 static bool CanEncodeInlinedMethodInStackMap(const DexFile& caller_dex_file, ArtMethod* callee) in CanEncodeInlinedMethodInStackMap() argument
1750 if (IsSameDexFile(caller_dex_file, *callee->GetDexFile())) { in CanEncodeInlinedMethodInStackMap()
/art/test/526-checker-caller-callee-regs/
Dinfo.txt1 Test allocation of caller and callee saved registers.
/art/runtime/jit/
Djit.h239 ArtMethod* callee)
247 void NotifyCompiledCodeToInterpreterTransition(Thread* self, ArtMethod* callee) in NotifyCompiledCodeToInterpreterTransition() argument
249 AddSamples(self, callee, options_->GetInvokeTransitionWeight(), false); in NotifyCompiledCodeToInterpreterTransition()
Djit.cc967 ArtMethod* callee ATTRIBUTE_UNUSED) { in InvokeVirtualOrInterface()
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S31 push {r4-r11, lr} @ 9 words (36 bytes) of callee saves.
49 SPILL_ALL_CALLEE_SAVE_GPRS @ 9 words (36 bytes) of callee saves.
74 push {r5-r8, r10-r11, lr} @ 7 words of callee saves
103 pop {r5-r8, r10-r11, lr} @ 7 words of callee saves
122 push {r1-r3, r5-r8, r10-r11, lr} @ 10 words of callee saves and args.
167 pop {r1-r3, r5-r8, r10-r11, lr} @ 10 words of callee saves
187 @ 14 words of callee saves and args already saved.
209 push {r0-r12, lr} @ 14 words of callee saves and args.
233 pop {r0-r12, lr} @ 14 words of callee saves
652 sub sp, sp, r10 @ Reserve space for callee stack
[all …]
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S131 # load appropriate callee-save-method
267 # load appropriate callee-save-method
942 SETUP_SAVE_REFS_AND_ARGS_FRAME \save_s4_thru_s8_only # save callee saves in case
1236 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case exception allocation triggers GC
1345 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case exception allocation triggers GC
1355 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case exception allocation triggers GC
1532 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case of GC
1546 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case of GC
1561 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case of GC
1607 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case of GC
[all …]
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S571 SETUP_SAVE_ALL_CALLEE_SAVES_FRAME # save callee saves for throw
654 subu $sp, $a1 # Reserve space for callee stack
877 SETUP_SAVE_REFS_AND_ARGS_FRAME \save_s4_thru_s8_only # save callee saves in case
1403 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case exception allocation triggers GC
1413 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case exception allocation triggers GC
1599 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case of GC
1610 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case of GC
1622 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case of GC
1633 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case of GC
1680 SETUP_SAVE_REFS_ONLY_FRAME # save callee saves in case of GC
[all …]
/art/runtime/
Dhidden_api.h92 bool CanAlwaysAccess(const AccessContext& callee) const { in CanAlwaysAccess() argument
93 return IsDomainMoreTrustedThan(domain_, callee.domain_); in CanAlwaysAccess()
Dstack.cc867 ArtMethod* callee = in WalkStack() local
869 CHECK_EQ(GetMethod(), callee) << "Expected: " << ArtMethod::PrettyMethod(callee) in WalkStack()
/art/test/510-checker-try-catch/smali/
DRuntime.smali256 # Note: values will be spilled on x86 because of too few callee-save core registers.
306 # Note: values will be spilled on x86 as there are no callee-save FPU registers.
349 # Note: values will be spilled on x86 as there are no callee-save FPU registers.
/art/runtime/jni/
Djni_internal_test.cc2524 auto callee = [](void* env_ptr) -> void* { in TEST_F() local
2536 callee, in TEST_F()