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.cc1179 const bool src_rax = src.AsRegister() == RAX; in xchgl() local
1181 if (src_rax || dst_rax) { in xchgl()
1182 EmitOptionalRex32(src_rax ? dst : src); in xchgl()
1183 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits())); in xchgl()
1199 const bool src_rax = src.AsRegister() == RAX; in xchgq() local
1201 if (src_rax || dst_rax) { in xchgq()
1203 if (src_rax && dst_rax) { in xchgq()
1206 EmitRex64(src_rax ? dst : src); in xchgq()
1207 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits())); in xchgq()