Home
last modified time | relevance | path

Searched refs:src2_must_be_cx (Results 1 – 1 of 1) sorted by relevance

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