Lines Matching defs:shift
1139 DCHECK(is_uint5(imm8)); // illegal shift count
1152 DCHECK(is_uint5(imm8)); // illegal shift count
1165 DCHECK(is_uint5(imm8)); // illegal shift count
1184 DCHECK(is_uint5(imm8)); // illegal shift count
1203 DCHECK(is_uint5(imm8)); // illegal shift count
1226 void Assembler::shld(Register dst, Register src, uint8_t shift) {
1227 DCHECK(is_uint5(shift));
1232 EMIT(shift);
1244 DCHECK(is_uint5(imm8)); // illegal shift count
1263 DCHECK(is_uint5(imm8)); // illegal shift count
1280 void Assembler::shrd(Register dst, Register src, uint8_t shift) {
1281 DCHECK(is_uint5(shift));
1286 EMIT(shift);
2586 void Assembler::psllw(XMMRegister reg, uint8_t shift) {
2592 EMIT(shift);
2595 void Assembler::pslld(XMMRegister reg, uint8_t shift) {
2601 EMIT(shift);
2604 void Assembler::psrlw(XMMRegister reg, uint8_t shift) {
2610 EMIT(shift);
2613 void Assembler::psrld(XMMRegister reg, uint8_t shift) {
2619 EMIT(shift);
2622 void Assembler::psraw(XMMRegister reg, uint8_t shift) {
2628 EMIT(shift);
2631 void Assembler::psrad(XMMRegister reg, uint8_t shift) {
2637 EMIT(shift);
2640 void Assembler::psllq(XMMRegister reg, uint8_t shift) {
2646 EMIT(shift);
2649 void Assembler::psrlq(XMMRegister reg, uint8_t shift) {
2655 EMIT(shift);