/art/test/427-bitwise/src/ |
D | Main.java | 173 expectEquals(6, $opt$Xor(5, 3)); in xorInt() 174 expectEquals(0, $opt$Xor(0, 0)); in xorInt() 175 expectEquals(3, $opt$Xor(0, 3)); in xorInt() 176 expectEquals(3, $opt$Xor(3, 0)); in xorInt() 177 expectEquals(-4, $opt$Xor(1, -3)); in xorInt() 178 expectEquals(9, $opt$Xor(-12, -3)); in xorInt() 192 expectEquals(6L, $opt$Xor(5L, 3L)); in xorLong() 193 expectEquals(0L, $opt$Xor(0L, 0L)); in xorLong() 194 expectEquals(3L, $opt$Xor(0L, 3L)); in xorLong() 195 expectEquals(3L, $opt$Xor(3L, 0L)); in xorLong() [all …]
|
/art/test/485-checker-dce-loop-update/smali/ |
D | TestCase.smali | 212 ## CHECK-DAG: <<XorZ>> Xor [<<PhiZ2>>,<<Cst1>>] loop:<<HeaderZ>> 234 ## CHECK-DAG: <<XorZ>> Xor [<<PhiZ>>,<<Cst1>>] loop:<<HeaderZ>>
|
/art/compiler/optimizing/ |
D | code_generator_mips.cc | 1217 __ Xor(dst, lhs, rhs_reg); in HandleBinaryOp() local 1250 __ Xor(dst_low, lhs_low, rhs_low); in HandleBinaryOp() local 1251 __ Xor(dst_high, lhs_high, rhs_high); in HandleBinaryOp() local 1303 __ Xor(dst_low, lhs_low, TMP); in HandleBinaryOp() local 1313 __ Xor(dst_high, lhs_high, TMP); in HandleBinaryOp() local 2642 __ Xor(dst, lhs, rhs_reg); in GenerateIntCompare() local 2890 __ Xor(TMP, TMP, lhs_high); in GenerateLongCompareAndBranch() local 2892 __ Xor(AT, AT, lhs_low); in GenerateLongCompareAndBranch() local 2898 __ Xor(TMP, TMP, lhs_high); in GenerateLongCompareAndBranch() local 2900 __ Xor(AT, AT, lhs_low); in GenerateLongCompareAndBranch() local [all …]
|
D | intrinsics_mips.cc | 536 __ Xor(out, TMP, in); in GenNumberOfTrailingZeroes() local 789 __ Xor(TMP, in_lo, AT); in GenAbsInteger() local 790 __ Xor(out_hi, in_hi, AT); in GenAbsInteger() local 800 __ Xor(out, in, AT); in GenAbsInteger() local 2291 __ Xor(TMP, TMP, AT); in GenIsInfinite() local
|
D | intrinsics_mips64.cc | 431 __ Xor(out, in, AT); in GenAbsInteger() local 435 __ Xor(out, in, AT); in GenAbsInteger() local
|
D | code_generator_mips64.cc | 1093 __ Xor(dst, lhs, rhs_reg); in HandleBinaryOp() local 2271 __ Xor(dst, lhs, rhs_reg); in GenerateIntLongCompare() local 2876 __ Xor(out, out, cls); in VisitInstanceOf() local
|
D | nodes.h | 1267 M(Xor, BinaryOperation) \ 4714 DECLARE_INSTRUCTION(Xor);
|
/art/compiler/utils/mips/ |
D | assembler_mips_test.cc | 326 TEST_F(AssemblerMIPSTest, Xor) { in TEST_F() argument 327 DriverStr(RepeatRRR(&mips::MipsAssembler::Xor, "xor ${reg1}, ${reg2}, ${reg3}"), "Xor"); in TEST_F()
|
D | assembler_mips.h | 149 void Xor(Register rd, Register rs, Register rt);
|
D | assembler_mips.cc | 298 void MipsAssembler::Xor(Register rd, Register rs, Register rt) { in Xor() function in art::mips::MipsAssembler
|
/art/compiler/utils/mips64/ |
D | assembler_mips64.h | 146 void Xor(GpuRegister rd, GpuRegister rs, GpuRegister rt);
|
D | assembler_mips64.cc | 267 void Mips64Assembler::Xor(GpuRegister rd, GpuRegister rs, GpuRegister rt) { in Xor() function in art::mips64::Mips64Assembler
|