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