Searched refs:Xor (Results 1 – 9 of 9) sorted by relevance
/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 | 214 # CHECK-DAG: [[XorZ]] Xor [ [[PhiZ2]] [[Cst1]] ] loop_header:[[HeaderZ]] 237 # CHECK-DAG: [[XorZ]] Xor [ [[PhiZ2]] [[Cst1]] ] loop_header:[[HeaderZ]]
|
/art/compiler/utils/mips/ |
D | assembler_mips.h | 73 void Xor(Register rd, Register rs, Register rt);
|
D | assembler_mips.cc | 219 void MipsAssembler::Xor(Register rd, Register rs, Register rt) { in Xor() function in art::mips::MipsAssembler
|
/art/compiler/utils/mips64/ |
D | assembler_mips64.h | 89 void Xor(GpuRegister rd, GpuRegister rs, GpuRegister rt);
|
D | assembler_mips64.cc | 226 void Mips64Assembler::Xor(GpuRegister rd, GpuRegister rs, GpuRegister rt) { in Xor() function in art::mips64::Mips64Assembler
|
/art/compiler/optimizing/ |
D | code_generator_mips64.cc | 1084 __ Xor(dst, lhs, rhs_reg); in HandleBinaryOp() local 1757 __ Xor(dst, lhs, rhs_reg); in VisitCondition() local 2262 __ Xor(out, out, cls); in VisitInstanceOf() local
|
D | nodes.h | 872 M(Xor, BinaryOperation) \ 2917 DECLARE_INSTRUCTION(Xor);
|
/art/compiler/dex/quick/x86/ |
D | assemble_x86.cc | 139 ENCODING_MAP(Xor, IS_LOAD | IS_STORE, REG_DEF0, 0,
|