Home
last modified time | relevance | path

Searched refs:Xor (Results 1 – 12 of 12) sorted by relevance

/art/test/427-bitwise/src/
DMain.java173 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/
DTestCase.smali212 ## CHECK-DAG: <<XorZ>> Xor [<<PhiZ2>>,<<Cst1>>] loop:<<HeaderZ>>
234 ## CHECK-DAG: <<XorZ>> Xor [<<PhiZ>>,<<Cst1>>] loop:<<HeaderZ>>
/art/compiler/optimizing/
Dcode_generator_mips.cc1217 __ 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 …]
Dintrinsics_mips.cc536 __ 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
Dintrinsics_mips64.cc431 __ Xor(out, in, AT); in GenAbsInteger() local
435 __ Xor(out, in, AT); in GenAbsInteger() local
Dcode_generator_mips64.cc1093 __ 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
Dnodes.h1267 M(Xor, BinaryOperation) \
4714 DECLARE_INSTRUCTION(Xor);
/art/compiler/utils/mips/
Dassembler_mips_test.cc326 TEST_F(AssemblerMIPSTest, Xor) { in TEST_F() argument
327 DriverStr(RepeatRRR(&mips::MipsAssembler::Xor, "xor ${reg1}, ${reg2}, ${reg3}"), "Xor"); in TEST_F()
Dassembler_mips.h149 void Xor(Register rd, Register rs, Register rt);
Dassembler_mips.cc298 void MipsAssembler::Xor(Register rd, Register rs, Register rt) { in Xor() function in art::mips::MipsAssembler
/art/compiler/utils/mips64/
Dassembler_mips64.h146 void Xor(GpuRegister rd, GpuRegister rs, GpuRegister rt);
Dassembler_mips64.cc267 void Mips64Assembler::Xor(GpuRegister rd, GpuRegister rs, GpuRegister rt) { in Xor() function in art::mips64::Mips64Assembler