Home | History | Annotate | Download | only in x87

Lines Matching refs:shift_count

1931     uint8_t shift_count = static_cast<uint8_t>(value & 0x1F);
1934 if (shift_count == 0 && instr->can_deopt()) {
1938 __ ror(ToRegister(left), shift_count);
1942 if (shift_count != 0) {
1943 __ sar(ToRegister(left), shift_count);
1947 if (shift_count != 0) {
1948 __ shr(ToRegister(left), shift_count);
1955 if (shift_count != 0) {
1958 if (shift_count != 1) {
1959 __ shl(ToRegister(left), shift_count - 1);
1964 __ shl(ToRegister(left), shift_count);