/art/test/003-omnibus-opcodes/src/ |
D | FloatMath.java | 199 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()
|
D | Compare.java | 25 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/ |
D | quick_entrypoints_mips.S | 165 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 …]
|
D | jni_entrypoints_mips.S | 46 beq $v0, $zero, .Lno_native_code_found 50 jalr $zero, $t9 # leaf call to method's code
|
/art/test/474-fp-sub-neg/ |
D | info.txt | 4 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/ |
D | memcmp16_mips64.S | 26 move $t0, $zero 27 move $t1, $zero
|
D | quick_entrypoints_mips64.S | 185 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 …]
|
D | jni_entrypoints_mips64.S | 70 beq $v0, $zero, .Lno_native_code_found 74 jalr $zero, $t9 # leaf call to method's code
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 235 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/ |
D | info.txt | 1 Tests if zero/one constants and integer Phis are accepted as boolean values.
|
/art/test/475-simplify-mul-zero/ |
D | info.txt | 2 Mul should expect zero constant as input.
|
/art/test/045-reflect-array/ |
D | expected.txt | 7 zero one two ++
|
/art/test/802-deoptimization/smali/ |
D | catch_handler_on_entry.smali | 11 # instruction (Label2) which throws an ArithmeticException (division by zero).
|
/art/test/098-ddmc/ |
D | expected.txt | 8 Confirm when we overflow, we don't roll over to zero. b/17392248
|
/art/test/084-class-init/src/ |
D | Main.java | 88 IntHolder zero = SlowInit.FIELD0; in checkTiming() local
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 169 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/ |
D | info.txt | 16 item would list zero catch block for this method (see
|
/art/test/107-int-math2/src/ |
D | Main.java | 569 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/ |
D | memcmp16_x86.S | 49 jz L(zero) 64 L(zero):
|
/art/compiler/optimizing/ |
D | code_generator_arm.cc | 3914 Label done, zero; in VisitInstanceOf() local 3921 __ b(&zero, EQ); in VisitInstanceOf() 3928 __ b(&zero, NE); in VisitInstanceOf() 3943 __ Bind(&zero); in VisitInstanceOf()
|
D | code_generator_x86.cc | 4389 Label done, zero; in VisitInstanceOf() local 4396 __ j(kEqual, &zero); in VisitInstanceOf() 4409 __ j(kNotEqual, &zero); in VisitInstanceOf() 4424 __ Bind(&zero); in VisitInstanceOf()
|
D | code_generator_x86_64.cc | 4228 Label done, zero; in VisitInstanceOf() local 4235 __ j(kEqual, &zero); in VisitInstanceOf() 4247 __ j(kNotEqual, &zero); in VisitInstanceOf() 4262 __ Bind(&zero); in VisitInstanceOf()
|