Home
last modified time | relevance | path

Searched refs:zero (Results 1 – 22 of 22) sorted by relevance

/art/test/003-omnibus-opcodes/src/
DFloatMath.java199 static int[] convI(long l, float f, double d, float zero) { in convI() argument
204 results[3] = (int) (1.0f / zero); // +inf in convI()
205 results[4] = (int) (-1.0f / zero); // -inf in convI()
206 results[5] = (int) ((1.0f / zero) / (1.0f / zero)); // NaN in convI()
219 static long[] convL(int i, float f, double d, double zero) { in convL() argument
224 results[3] = (long) (1.0 / zero); // +inf in convL()
225 results[4] = (long) (-1.0 / zero); // -inf in convL()
226 results[5] = (long) ((1.0 / zero) / (1.0 / zero)); // NaN in convL()
DCompare.java25 static void testIntCompare(int minus, int plus, int plus2, int zero) { in testIntCompare() argument
58 if (zero != 0) in testIntCompare()
61 if (zero == 0) { in testIntCompare()
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S165 jalr $zero, $ra
285 jalr $zero, $t9 # artDeliverPendingExceptionFromCode(Thread*)
294 jalr $zero, $ra
304 jalr $zero, $ra # return on success
314 jalr $zero, $ra # return on success
375 move $v0, $zero # clear result registers r0 and r1
376 jalr $zero, $ra # do long jump
377 move $v1, $zero
388 jalr $zero, $t9 # artDeliverExceptionFromCode(Throwable*, Thread*)
399 jalr $zero, $t9 # artThrowNullPointerExceptionFromCode(Thread*)
[all …]
Djni_entrypoints_mips.S46 beq $v0, $zero, .Lno_native_code_found
50 jalr $zero, $t9 # leaf call to method's code
/art/test/474-fp-sub-neg/
Dinfo.txt4 fp calculation because we can lose the sign of zero for
8 Addition or subtraction with fp zero should not be eliminated
/art/runtime/arch/mips64/
Dmemcmp16_mips64.S26 move $t0, $zero
27 move $t1, $zero
Dquick_entrypoints_mips64.S185 jalr $zero, $ra
539 beq $v0, $zero, 1f
541 jalr $zero, $t9
641 daddiu $s0, $zero, SUSPEND_CHECK_INTERVAL # reset rSUSPEND to SUSPEND_CHECK_INTERVAL
662 ble $t2, $zero, call_fn # t2 = number of argument bytes remain
668 bgt $t2, $zero, 1b # t2 = number of argument bytes remain
675 sd $zero, 0($sp) # store null for ArtMethod* at bottom of frame
706 jalr $zero, $ra
712 jalr $zero, $ra
744 daddiu $s0, $zero, SUSPEND_CHECK_INTERVAL # reset rSUSPEND to SUSPEND_CHECK_INTERVAL
[all …]
Djni_entrypoints_mips64.S70 beq $v0, $zero, .Lno_native_code_found
74 jalr $zero, $t9 # leaf call to method's code
/art/runtime/entrypoints/
Dentrypoint_utils.cc235 const JValue zero; in InvokeProxyInvocationHandler() local
242 return zero; in InvokeProxyInvocationHandler()
254 return zero; in InvokeProxyInvocationHandler()
275 return zero; in InvokeProxyInvocationHandler()
285 return zero; in InvokeProxyInvocationHandler()
318 return zero; in InvokeProxyInvocationHandler()
/art/test/474-checker-boolean-input/
Dinfo.txt1 Tests if zero/one constants and integer Phis are accepted as boolean values.
/art/test/475-simplify-mul-zero/
Dinfo.txt2 Mul should expect zero constant as input.
/art/test/045-reflect-array/
Dexpected.txt7 zero one two ++
/art/test/802-deoptimization/smali/
Dcatch_handler_on_entry.smali11 # instruction (Label2) which throws an ArithmeticException (division by zero).
/art/test/098-ddmc/
Dexpected.txt8 Confirm when we overflow, we don't roll over to zero. b/17392248
/art/test/084-class-init/src/
DMain.java88 IntHolder zero = SlowInit.FIELD0; in checkTiming() local
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S169 cbnz r0, 1f @ result non-zero branch over
175 cbz r0, 1f @ result zero branch over
473 and r3, #LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED @ zero the read barrier bits
489 and r3, #LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED @ zero the read barrier bits.
525 and r3, #LOCK_WORD_READ_BARRIER_STATE_MASK_TOGGLED @ zero the read barrier bits
527 uxth r3, r3 @ zero top 16 bits
/art/test/435-try-finally-without-catch/
Dinfo.txt16 item would list zero catch block for this method (see
/art/test/107-int-math2/src/
DMain.java569 static int testIntCompare(int minus, int plus, int plus2, int zero) { in testIntCompare() argument
602 if (zero != 0) in testIntCompare()
605 if (zero == 0) { in testIntCompare()
/art/runtime/arch/x86/
Dmemcmp16_x86.S49 jz L(zero)
64 L(zero):
/art/compiler/optimizing/
Dcode_generator_arm.cc3914 Label done, zero; in VisitInstanceOf() local
3921 __ b(&zero, EQ); in VisitInstanceOf()
3928 __ b(&zero, NE); in VisitInstanceOf()
3943 __ Bind(&zero); in VisitInstanceOf()
Dcode_generator_x86.cc4389 Label done, zero; in VisitInstanceOf() local
4396 __ j(kEqual, &zero); in VisitInstanceOf()
4409 __ j(kNotEqual, &zero); in VisitInstanceOf()
4424 __ Bind(&zero); in VisitInstanceOf()
Dcode_generator_x86_64.cc4228 Label done, zero; in VisitInstanceOf() local
4235 __ j(kEqual, &zero); in VisitInstanceOf()
4247 __ j(kNotEqual, &zero); in VisitInstanceOf()
4262 __ Bind(&zero); in VisitInstanceOf()