/art/runtime/interpreter/mterp/mips/ |
D | header.S | 80 #define zero $$0 /* always zero */ macro 195 jalr zero, rt 335 sw zero, 0(t8) 344 sw zero, 0(t8) 370 sw zero, 0(t8); \ 371 sw zero, 4(t8) 381 sw zero, 0(t8); \ 382 sw zero, 4(t8) 390 sw zero, 0(t8) 399 sw zero, 0(t8) [all …]
|
D | op_return_void_no_barrier.S | 7 move v0, zero 8 move v1, zero
|
D | op_return_void.S | 9 move v0, zero 10 move v1, zero
|
D | op_double_to_long.S | 21 mtc1 zero, fa1 38 mtc1 zero, fa1 46 nor rRESULT0, rRESULT0, zero 47 nor rRESULT1, rRESULT1, zero
|
D | op_double_to_int.S | 16 mtc1 zero, fa1 33 mtc1 zero, fa0 34 MOVE_TO_FPU_HIGH(zero, fa0, fa0f)
|
D | op_float_to_long.S | 43 nor rRESULT0, rRESULT0, zero 44 nor rRESULT1, rRESULT1, zero
|
D | op_const_high16.S | 2 FETCH(a0, 1) # a0 <- 0000BBBB (zero-extended)
|
/art/runtime/interpreter/mterp/out/ |
D | mterp_mips64.S | 213 sw zero, 0(AT) 229 sw zero, 0(AT) 262 sw zero, 0(AT) 263 sw zero, 4(AT) 269 sw zero, 0(AT) 270 sw zero, 4(AT) 628 sd zero, THREAD_EXCEPTION_OFFSET(rSELF) # clear exception 3293 subu a0, zero, a0 # a0 <- op, a0-a3 changed 3317 nor a0, zero, a0 # a0 <- op, a0-a3 changed 3340 dsubu a0, zero, a0 # a0 <- op, a0-a3 changed [all …]
|
D | mterp_mips.S | 87 #define zero $0 /* always zero */ macro 202 jalr zero, rt 342 sw zero, 0(t8) 351 sw zero, 0(t8) 377 sw zero, 0(t8); \ 378 sw zero, 4(t8) 388 sw zero, 0(t8); \ 389 sw zero, 4(t8) 397 sw zero, 0(t8) 406 sw zero, 0(t8) [all …]
|
/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/runtime/interpreter/mterp/mips64/ |
D | header.S | 206 sw zero, 0(AT) 222 sw zero, 0(AT) 255 sw zero, 0(AT) 256 sw zero, 4(AT) 262 sw zero, 0(AT) 263 sw zero, 4(AT)
|
/art/runtime/arch/mips64/ |
D | memcmp16_mips64.S | 26 move $t0, $zero 27 move $t1, $zero
|
D | quick_entrypoints_mips64.S | 183 jalr $zero, $ra 642 sd $zero, 0($sp) # Store null for ArtMethod* at bottom of frame 825 jalr $zero, $t9 # artThrowNullPointerExceptionFromCode(Thread*) 838 jalr $zero, $t9 # artThrowNullPointerExceptionFromSignal(uinptr_t, Thread*) 849 jalr $zero, $t9 # artThrowDivZeroFromCode(Thread*) 863 jalr $zero, $t9 # artThrowArrayBoundsFromCode(index, limit, Thread*) 875 jalr $zero, $t9 # artThrowStringBoundsFromCode(index, limit, Thread*) 886 jalr $zero, $t9 # artThrowStackOverflowFromCode(Thread*) 915 beq $v0, $zero, 1f 917 jalr $zero, $t9 [all …]
|
D | jni_entrypoints_mips64.S | 70 beq $v0, $zero, .Lno_native_code_found 74 jalr $zero, $t9 # leaf call to method's code
|
D | asm_support_mips64.S | 73 dsubu \rRef, $zero, \rRef 81 dsubu \rRef, $zero, \rRef
|
/art/compiler/optimizing/ |
D | constant_folding_test.cc | 763 HInstruction* zero = graph_->GetIntConstant(0); in TEST_F() local 766 block->AddInstruction(last = new (&allocator_) HAbove(zero, parameter)); in TEST_F() 768 block->AddInstruction(last = new (&allocator_) HAbove(parameter, zero)); in TEST_F() 770 block->AddInstruction(last = new (&allocator_) HAboveOrEqual(zero, parameter)); in TEST_F() 772 block->AddInstruction(last = new (&allocator_) HAboveOrEqual(parameter, zero)); in TEST_F() 774 block->AddInstruction(last = new (&allocator_) HBelow(zero, parameter)); in TEST_F() 776 block->AddInstruction(last = new (&allocator_) HBelow(parameter, zero)); in TEST_F() 778 block->AddInstruction(last = new (&allocator_) HBelowOrEqual(zero, parameter)); in TEST_F() 780 block->AddInstruction(last = new (&allocator_) HBelowOrEqual(parameter, zero)); in TEST_F() 782 block->AddInstruction(new (&allocator_) HReturn(zero)); in TEST_F()
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 163 jalr $zero, $ra 516 jalr $zero, $t9 # artDeliverPendingExceptionFromCode(Thread*) 525 jalr $zero, $ra 535 jalr $zero, $ra # return on success 545 jalr $zero, $ra # return on success 598 sw $zero, 0($sp) # Store null for ArtMethod* at bottom of frame 645 jalr $zero, $ra 652 jalr $zero, $t9 711 move $v0, $zero # clear result registers v0 and v1 (in branch delay slot) 712 jalr $zero, $t9 # do long jump [all …]
|
D | jni_entrypoints_mips.S | 51 beq $v0, $zero, .Lno_native_code_found 55 jalr $zero, $t9 # leaf call to method's code
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 66 const JValue zero; in InvokeProxyInvocationHandler() local 73 return zero; in InvokeProxyInvocationHandler() 85 return zero; in InvokeProxyInvocationHandler() 106 return zero; in InvokeProxyInvocationHandler() 116 return zero; in InvokeProxyInvocationHandler() 154 return zero; in InvokeProxyInvocationHandler()
|
/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/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.
|