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

/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc1151 const bool src_rax = src.AsRegister() == RAX; local
1153 if (src_rax || dst_rax) {
1154 EmitOptionalRex32(src_rax ? dst : src);
1155 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits()));
1171 const bool src_rax = src.AsRegister() == RAX; local
1173 if (src_rax || dst_rax) {
1175 if (src_rax && dst_rax) {
1178 EmitRex64(src_rax ? dst : src);
1179 EmitUint8(0x90 + (src_rax ? dst.LowBits() : src.LowBits()));

Completed in 41 milliseconds