Searched refs:slow (Results 1 - 6 of 6) sorted by relevance

/art/compiler/utils/arm/
H A Dassembler_arm.cc814 ArmExceptionSlowPath* slow = new ArmExceptionSlowPath(scratch, stack_adjust);
815 buffer_.EnqueueSlowPath(slow);
819 b(slow->Entry(), NE);
/art/compiler/utils/mips/
H A Dassembler_mips.cc943 MipsExceptionSlowPath* slow = new MipsExceptionSlowPath(scratch, stack_adjust); local
944 buffer_.EnqueueSlowPath(slow);
947 EmitBranch(scratch.AsCoreRegister(), ZERO, slow->Entry(), false);
/art/compiler/utils/x86/
H A Dassembler_x86.cc1836 X86ExceptionSlowPath* slow = new X86ExceptionSlowPath(stack_adjust); local
1837 buffer_.EnqueueSlowPath(slow);
1839 j(kNotEqual, slow->Entry());
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc2208 X86_64ExceptionSlowPath* slow = new X86_64ExceptionSlowPath(stack_adjust); local
2209 buffer_.EnqueueSlowPath(slow);
2211 j(kNotEqual, slow->Entry());
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S239 * All generated callsites for interface invokes and invocation slow paths will load arguments
389 cbnz r3, .Lslow_lock @ if either of the top two bits are set, go slow path
393 @ else contention, go to slow path
396 cbnz r1, .Lslow_lock @ if we overflow the count go slow path
418 cbnz r2, .Lslow_unlock @ if either of the top two bits are set, go slow path
/art/test/083-compiler-regressions/src/
H A DMain.java892 SpinThread slow = new SpinThread(Thread.MIN_PRIORITY);
896 slow.setDaemon(true);
901 slow.start();

Completed in 96 milliseconds