Home
last modified time | relevance | path

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

/art/compiler/utils/x86_64/
Dassembler_x86_64.cc2139 const bool src_rax = src.AsRegister() == RAX; in xchgl() local
2141 if (src_rax || dst_rax) { in xchgl()
2142 EmitOptionalRex32(src_rax ? dst : src); in xchgl()
2143 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits())); in xchgl()
2159 const bool src_rax = src.AsRegister() == RAX; in xchgq() local
2161 if (src_rax || dst_rax) { in xchgq()
2163 if (src_rax && dst_rax) { in xchgq()
2166 EmitRex64(src_rax ? dst : src); in xchgq()
2167 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits())); in xchgq()