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