Searched defs:src2_must_be_cx (Results 1 - 1 of 1) sorted by last modified time

/art/compiler/dex/quick/x86/
H A Dutility_x86.cc204 bool src2_must_be_cx = false; local
223 case kOpLsl: opcode = is64Bit ? kX86Sal64RC : kX86Sal32RC; src2_must_be_cx = true; break;
224 case kOpLsr: opcode = is64Bit ? kX86Shr64RC : kX86Shr32RC; src2_must_be_cx = true; break;
225 case kOpAsr: opcode = is64Bit ? kX86Sar64RC : kX86Sar32RC; src2_must_be_cx = true; break;
253 CHECK(!src2_must_be_cx || r_src2.GetReg() == rs_rCX.GetReg());

Completed in 49 milliseconds