Home
last modified time | relevance | path

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

/art/test/561-shared-slowpaths/
Dinfo.txt1 Test on correctness while possibly sharing slow paths.
/art/test/491-current-method/
Dinfo.txt2 crash in the presence of slow paths with intrinsics.
/art/test/127-checker-secondarydex/
Dinfo.txt3 - Regression test to ensure slow path of direct invoke does null check.
/art/test/425-invoke-super/smali/
Dinvokesuper.smali29 # Do an invoke super on a non-super class to force slow path.
/art/compiler/utils/x86/
Djni_macro_assembler_x86.cc520 X86ExceptionSlowPath* slow = new (__ GetAllocator()) X86ExceptionSlowPath(stack_adjust); in ExceptionPoll() local
521 __ GetBuffer()->EnqueueSlowPath(slow); in ExceptionPoll()
523 __ j(kNotEqual, slow->Entry()); in ExceptionPoll()
/art/compiler/utils/x86_64/
Djni_macro_assembler_x86_64.cc586 X86_64ExceptionSlowPath* slow = new (__ GetAllocator()) X86_64ExceptionSlowPath(stack_adjust); in ExceptionPoll() local
587 __ GetBuffer()->EnqueueSlowPath(slow); in ExceptionPoll()
590 __ j(kNotEqual, slow->Entry()); in ExceptionPoll()
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S1319 bnez $t2, .Lslow_lock # if either of the top two bits are set, go slow path
1923 # "Point of no slow path". Won't go to the slow path from here on.
1959 # Possibly a large object, go slow.
1982 # Possibly a large object, go slow.
1991 # Possibly a large object, go slow.
2001 # Possibly a large object, go slow.
2011 # Possibly a large object, go slow.
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1265 bnezc $t2, .Lslow_lock # if either of the top two bits are set, go slow path
1847 # "Point of no slow path". Won't go to the slow path from here on.
1867 # in a1 is preserved in a case of slow path.
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S778 @ thread id did not match, go slow path.
/art/test/083-compiler-regressions/src/
DMain.java893 SpinThread slow = new SpinThread(Thread.MIN_PRIORITY); in b2302318Test() local
897 slow.setDaemon(true); in b2302318Test()
902 slow.start(); in b2302318Test()