Searched defs:src_rax (Results 1 - 1 of 1) sorted by relevance

/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc2139 const bool src_rax = src.AsRegister() == RAX; local
2141 if (src_rax || dst_rax) {
2142 EmitOptionalRex32(src_rax ? dst : src);
2143 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits()));
2159 const bool src_rax = src.AsRegister() == RAX; local
2161 if (src_rax || dst_rax) {
2163 if (src_rax && dst_rax) {
2166 EmitRex64(src_rax ? dst : src);
2167 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits()));

Completed in 17 milliseconds