Home | History | Annotate | Download | only in ia32

Lines Matching refs:shift_count

1792     uint8_t shift_count = static_cast<uint8_t>(value & 0x1F);
1795 if (shift_count == 0 && instr->can_deopt()) {
1799 __ ror(ToRegister(left), shift_count);
1803 if (shift_count != 0) {
1804 __ sar(ToRegister(left), shift_count);
1808 if (shift_count == 0 && instr->can_deopt()) {
1812 __ shr(ToRegister(left), shift_count);
1816 if (shift_count != 0) {
1819 if (shift_count != 1) {
1820 __ shl(ToRegister(left), shift_count - 1);
1825 __ shl(ToRegister(left), shift_count);