Searched refs:src_rax (Results 1 – 1 of 1) sorted by relevance
3820 const bool src_rax = src.AsRegister() == RAX; in xchgl() local3822 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() local3842 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()