Home
last modified time | relevance | path

Searched refs:slow (Results 1 – 8 of 8) sorted by relevance

/art/test/122-secondarydex/
Dinfo.txt3 - Regression test to ensure slow path of direct invoke does null check.
/art/compiler/utils/arm/
Dassembler_arm.cc814 ArmExceptionSlowPath* slow = new ArmExceptionSlowPath(scratch, stack_adjust); in ExceptionPoll() local
815 buffer_.EnqueueSlowPath(slow); in ExceptionPoll()
819 b(slow->Entry(), NE); in ExceptionPoll()
/art/compiler/utils/mips/
Dassembler_mips.cc943 MipsExceptionSlowPath* slow = new MipsExceptionSlowPath(scratch, stack_adjust); in ExceptionPoll() local
944 buffer_.EnqueueSlowPath(slow); in ExceptionPoll()
947 EmitBranch(scratch.AsCoreRegister(), ZERO, slow->Entry(), false); in ExceptionPoll()
/art/compiler/utils/x86/
Dassembler_x86.cc1836 X86ExceptionSlowPath* slow = new X86ExceptionSlowPath(stack_adjust); in ExceptionPoll() local
1837 buffer_.EnqueueSlowPath(slow); in ExceptionPoll()
1839 j(kNotEqual, slow->Entry()); in ExceptionPoll()
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc2208 X86_64ExceptionSlowPath* slow = new X86_64ExceptionSlowPath(stack_adjust); in ExceptionPoll() local
2209 buffer_.EnqueueSlowPath(slow); in ExceptionPoll()
2211 j(kNotEqual, slow->Entry()); in ExceptionPoll()
/art/compiler/llvm/
Dintrinsic_func_list.def1381 // "HL" versions - will be deprecated when fast/slow path handling done
1450 // "HL" versions - will be deprecated when fast/slow path handling done
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S389 cbnz r3, .Lslow_lock @ if either of the top two bits are set, go slow path
/art/test/083-compiler-regressions/src/
DMain.java892 SpinThread slow = new SpinThread(Thread.MIN_PRIORITY); in b2302318Test() local
896 slow.setDaemon(true); in b2302318Test()
901 slow.start(); in b2302318Test()