Home
last modified time | relevance | path

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

/art/compiler/utils/mips/
Dassembler_mips.cc950 MipsExceptionSlowPath* slow = new MipsExceptionSlowPath(scratch, stack_adjust); in ExceptionPoll() local
951 buffer_.EnqueueSlowPath(slow); in ExceptionPoll()
954 EmitBranch(scratch.AsCoreRegister(), ZERO, slow->Entry(), false); in ExceptionPoll()
/art/compiler/utils/x86/
Dassembler_x86.cc1824 X86ExceptionSlowPath* slow = new X86ExceptionSlowPath(stack_adjust); in ExceptionPoll() local
1825 buffer_.EnqueueSlowPath(slow); in ExceptionPoll()
1827 j(kNotEqual, slow->Entry()); in ExceptionPoll()
/art/compiler/utils/arm/
Dassembler_arm.cc1868 ArmExceptionSlowPath* slow = new ArmExceptionSlowPath(scratch, stack_adjust); in ExceptionPoll() local
1869 buffer_.EnqueueSlowPath(slow); in ExceptionPoll()
1873 b(slow->Entry(), NE); in ExceptionPoll()
/art/compiler/llvm/
Dintrinsic_func_list.def1388 // "HL" versions - will be deprecated when fast/slow path handling done
1457 // "HL" versions - will be deprecated when fast/slow path handling done
/art/test/083-compiler-regressions/src/
DMain.java177 SpinThread slow = new SpinThread(Thread.MIN_PRIORITY); in b2302318Test() local
181 slow.setDaemon(true); in b2302318Test()
186 slow.start(); in b2302318Test()