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.cc3820 const bool src_rax = src.AsRegister() == RAX; in xchgl() local
3822 if (src_rax || dst_rax) { in xchgl()
3823 EmitOptionalRex32(src_rax ? dst : src); in xchgl()
3824 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits())); in xchgl()
3840 const bool src_rax = src.AsRegister() == RAX; in xchgq() local
3842 if (src_rax || dst_rax) { in xchgq()
3844 if (src_rax && dst_rax) { in xchgq()
3847 EmitRex64(src_rax ? dst : src); in xchgq()
3848 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits())); in xchgq()