/art/test/003-omnibus-opcodes/src/ |
D | FloatMath.java | 237 static int[] convI(long l, float f, double d, float zero) { in convI() argument 242 results[3] = (int) (1.0f / zero); // +inf in convI() 243 results[4] = (int) (-1.0f / zero); // -inf in convI() 244 results[5] = (int) ((1.0f / zero) / (1.0f / zero)); // NaN in convI() 257 static long[] convL(int i, float f, double d, double zero) { in convL() argument 262 results[3] = (long) (1.0 / zero); // +inf in convL() 263 results[4] = (long) (-1.0 / zero); // -inf in convL() 264 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/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/test/665-checker-simd-zero/ |
D | info.txt | 1 Functional tests on zero-out SIMD vectorization.
|
/art/compiler/optimizing/ |
D | constant_folding_test.cc | 754 HInstruction* zero = graph_->GetIntConstant(0); in TEST_F() local 757 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter)); in TEST_F() 759 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero)); in TEST_F() 761 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter)); in TEST_F() 763 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(parameter, zero)); in TEST_F() 765 block->AddInstruction(last = new (GetAllocator()) HBelow(zero, parameter)); in TEST_F() 767 block->AddInstruction(last = new (GetAllocator()) HBelow(parameter, zero)); in TEST_F() 769 block->AddInstruction(last = new (GetAllocator()) HBelowOrEqual(zero, parameter)); in TEST_F() 771 block->AddInstruction(last = new (GetAllocator()) HBelowOrEqual(parameter, zero)); in TEST_F() 773 block->AddInstruction(new (GetAllocator()) HReturn(zero)); in TEST_F()
|
D | bounds_check_elimination.cc | 1877 HInstruction* zero; in NewPhi() local 1879 case DataType::Type::kReference: zero = graph->GetNullConstant(); break; in NewPhi() 1880 case DataType::Type::kFloat32: zero = graph->GetFloatConstant(0); break; in NewPhi() 1881 case DataType::Type::kFloat64: zero = graph->GetDoubleConstant(0); break; in NewPhi() 1882 default: zero = graph->GetConstant(type, 0); break; in NewPhi() 1887 phi->SetRawInputAt(1, zero); in NewPhi()
|
/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/615-checker-arm64-store-zero/ |
D | info.txt | 1 Checker test to verify we correctly use wzr and xzr to store zero constants.
|
/art/test/590-infinite-loop-with-nop/smali/ |
D | TestCase.smali | 27 # Failure to verify dex file '...': Offset(208) should be zero when size is zero for field-ids.
|
/art/test/412-new-array/ |
D | info.txt | 3 address, zero-extending a register instead of sign-extending.
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 69 const JValue zero; in InvokeProxyInvocationHandler() local 76 return zero; in InvokeProxyInvocationHandler() 88 return zero; in InvokeProxyInvocationHandler() 109 return zero; in InvokeProxyInvocationHandler() 119 return zero; in InvokeProxyInvocationHandler() 157 return zero; in InvokeProxyInvocationHandler()
|
/art/test/045-reflect-array/ |
D | expected.txt | 7 zero one two ++
|
/art/test/501-regression-packed-switch/ |
D | info.txt | 4 address, zero-extending a register instead of sign-extending.
|
/art/test/020-string/ |
D | expected.txt | 3 Compare result is greater than zero
|
/art/runtime/interpreter/mterp/arm/ |
D | arithmetic.S | 25 cmp r1, #0 @ is second operand zero? 58 cmp r1, #0 @ is second operand zero? 89 cmp r1, #0 @ is second operand zero? 125 @cmp r1, #0 @ is second operand zero? 163 orrs ip, r2, r3 @ second arg (r2-r3) is zero? 198 orrs ip, r2, r3 @ second arg (r2-r3) is zero? 378 cmp r1, #0 @ is second operand zero? 407 cmp r1, #0 @ is second operand zero? 437 cmp r1, #0 @ is second operand zero? 467 @cmp r1, #0 @ is second operand zero? [all …]
|
D | floating_point.S | 355 beq d2l_notNaN @ if fraction is non-zero, it's a NaN 395 beq f2l_notNaN @ if fraction is non-zero, it's a NaN
|
D | other.S | 60 FETCH r0, 1 @ r0<- 0000BBBB (zero-extended) 138 FETCH r1, 1 @ r1<- 0000BBBB (zero-extended)
|
/art/test/802-deoptimization/smali/ |
D | catch_handler_on_entry.smali | 11 # instruction (Label2) which throws an ArithmeticException (division by zero).
|
/art/test/600-verifier-fails/ |
D | info.txt | 22 avoid interpreter crash on zero size object later
|
/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/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 | 571 static int testIntCompare(int minus, int plus, int plus2, int zero) { in testIntCompare() argument 604 if (zero != 0) in testIntCompare() 607 if (zero == 0) { in testIntCompare()
|
/art/runtime/verifier/ |
D | reg_type_test.cc | 725 const RegType& zero = cache.Zero(); in TEST_F() local 818 all_minus_uninit_conflict.push_back(&zero); in TEST_F() 874 ADD_EDGE(zero, null); in TEST_F() 933 ADD_EDGE(zero, int_type); in TEST_F()
|