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

/art/compiler/utils/arm/
H A Dassembler_arm.cc842 ArmExceptionSlowPath* slow = new ArmExceptionSlowPath(scratch, stack_adjust);
843 buffer_.EnqueueSlowPath(slow);
847 b(slow->Entry(), NE);
/art/compiler/utils/mips/
H A Dassembler_mips.cc959 MipsExceptionSlowPath* slow = new MipsExceptionSlowPath(scratch, stack_adjust); local
960 buffer_.EnqueueSlowPath(slow);
963 EmitBranch(scratch.AsCoreRegister(), ZERO, slow->Entry(), false);
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S314 * All generated callsites for interface invokes and invocation slow paths will load arguments
483 cbnz r3, .Lslow_lock @ if either of the top two bits are set, go slow path
487 @ else contention, go to slow path
492 cbnz r3, .Lslow_lock @ if we overflow the count go slow path
522 cbnz r2, .Lslow_unlock @ if either of the top two bits are set, go slow path
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc1528 Mips64ExceptionSlowPath* slow = new Mips64ExceptionSlowPath(scratch, stack_adjust); local
1529 buffer_.EnqueueSlowPath(slow);
1532 Bnezc(scratch.AsGpuRegister(), slow->Entry());
/art/compiler/utils/x86/
H A Dassembler_x86.cc2166 X86ExceptionSlowPath* slow = new X86ExceptionSlowPath(stack_adjust); local
2167 buffer_.EnqueueSlowPath(slow);
2169 j(kNotEqual, slow->Entry());
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc2863 X86_64ExceptionSlowPath* slow = new X86_64ExceptionSlowPath(stack_adjust); local
2864 buffer_.EnqueueSlowPath(slow);
2866 j(kNotEqual, slow->Entry());
/art/test/083-compiler-regressions/src/
H A DMain.java893 SpinThread slow = new SpinThread(Thread.MIN_PRIORITY);
897 slow.setDaemon(true);
902 slow.start();

Completed in 179 milliseconds