Home
last modified time | relevance | path

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

1234

/art/runtime/interpreter/mterp/mips/
Dheader.S83 #define zero $$0 /* always zero */ macro
198 jalr zero, rt
337 sw zero, 0(t8)
346 sw zero, 0(t8)
372 sw zero, 0(t8); \
373 sw zero, 4(t8)
383 sw zero, 0(t8); \
384 sw zero, 4(t8)
392 sw zero, 0(t8)
401 sw zero, 0(t8)
[all …]
Dop_return_void_no_barrier.S7 move v0, zero
8 move v1, zero
Dop_double_to_int.S17 mtc1 zero, fa1
25 mtc1 zero, fa0
26 MOVE_TO_FPU_HIGH(zero, fa0, fa0f)
Dop_return_void.S9 move v0, zero
10 move v1, zero
Dop_double_to_long.S27 mtc1 zero, fa1
35 nor rRESULT0, rRESULT0, zero
36 nor rRESULT1, rRESULT1, zero
Dop_float_to_long.S33 nor rRESULT0, rRESULT0, zero
34 nor rRESULT1, rRESULT1, zero
Dop_const_high16.S2 FETCH(a0, 1) # a0 <- 0000BBBB (zero-extended)
/art/test/003-omnibus-opcodes/src/
DFloatMath.java237 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()
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/interpreter/mterp/mips64/
Dheader.S17 #define zero $$0 /* always zero */ macro
242 sw zero, 0(AT)
258 sw zero, 0(AT)
291 sw zero, 0(AT)
292 sw zero, 4(AT)
298 sw zero, 0(AT)
299 sw zero, 4(AT)
/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.S183 jalr $zero, $ra
676 sd $zero, 0($sp) # Store null for ArtMethod* at bottom of frame
859 jalr $zero, $t9 # artThrowNullPointerExceptionFromCode(Thread*)
872 jalr $zero, $t9 # artThrowNullPointerExceptionFromSignal(uinptr_t, Thread*)
883 jalr $zero, $t9 # artThrowDivZeroFromCode(Thread*)
897 jalr $zero, $t9 # artThrowArrayBoundsFromCode(index, limit, Thread*)
909 jalr $zero, $t9 # artThrowStringBoundsFromCode(index, limit, Thread*)
920 jalr $zero, $t9 # artThrowStackOverflowFromCode(Thread*)
950 beq $v0, $zero, 1f
952 jalr $zero, $t9
[all …]
Djni_entrypoints_mips64.S70 beq $v0, $zero, .Lno_native_code_found
74 jalr $zero, $t9 # leaf call to method's code
Dasm_support_mips64.S73 dsubu \rRef, $zero, \rRef
81 dsubu \rRef, $zero, \rRef
/art/runtime/entrypoints/
Dentrypoint_utils.cc66 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/runtime/arch/mips/
Djni_entrypoints_mips.S53 beq $v0, $zero, .Lno_native_code_found
57 jalr $zero, $t9 # leaf call to method's code
Dquick_entrypoints_mips.S167 jalr $zero, $ra
561 jalr $zero, $t9 # artDeliverPendingExceptionFromCode(Thread*)
580 jalr $zero, $ra
590 jalr $zero, $ra # return on success
600 jalr $zero, $ra # return on success
653 sw $zero, 0($sp) # Store null for ArtMethod* at bottom of frame
701 jalr $zero, $ra
708 jalr $zero, $t9
769 move $v0, $zero # clear result registers v0 and v1 (in branch delay slot)
770 jalr $zero, $t9 # do long jump
[all …]
/art/compiler/optimizing/
Dconstant_folding_test.cc759 HInstruction* zero = graph_->GetIntConstant(0); in TEST_F() local
762 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter)); in TEST_F()
764 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero)); in TEST_F()
766 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter)); in TEST_F()
768 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(parameter, zero)); in TEST_F()
770 block->AddInstruction(last = new (GetAllocator()) HBelow(zero, parameter)); in TEST_F()
772 block->AddInstruction(last = new (GetAllocator()) HBelow(parameter, zero)); in TEST_F()
774 block->AddInstruction(last = new (GetAllocator()) HBelowOrEqual(zero, parameter)); in TEST_F()
776 block->AddInstruction(last = new (GetAllocator()) HBelowOrEqual(parameter, zero)); in TEST_F()
778 block->AddInstruction(new (GetAllocator()) HReturn(zero)); in TEST_F()
/art/test/665-checker-simd-zero/
Dinfo.txt1 Functional tests on zero-out SIMD vectorization.
/art/runtime/interpreter/mterp/out/
Dmterp_mips.S90 #define zero $0 /* always zero */ macro
205 jalr zero, rt
344 sw zero, 0(t8)
353 sw zero, 0(t8)
379 sw zero, 0(t8); \
380 sw zero, 4(t8)
390 sw zero, 0(t8); \
391 sw zero, 4(t8)
399 sw zero, 0(t8)
408 sw zero, 0(t8)
[all …]
/art/test/590-infinite-loop-with-nop/smali/
DTestCase.smali27 # Failure to verify dex file '...': Offset(208) should be zero when size is zero for field-ids.
/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/615-checker-arm64-store-zero/
Dinfo.txt1 Checker test to verify we correctly use wzr and xzr to store zero constants.

1234