Lines Matching refs:shift_op
385 Operand::Operand(Register rm, ShiftOp shift_op, int shift_imm) { in Operand() argument
390 shift_op_ = shift_op; in Operand()
393 if ((shift_op == ROR) && (shift_imm == 0)) { in Operand()
396 shift_op = LSL; in Operand()
397 } else if (shift_op == RRX) { in Operand()
406 Operand::Operand(Register rm, ShiftOp shift_op, Register rs) { in Operand() argument
407 DCHECK(shift_op != RRX); in Operand()
410 shift_op_ = shift_op; in Operand()
440 ShiftOp shift_op, int shift_imm, AddrMode am) { in MemOperand() argument
444 shift_op_ = shift_op; in MemOperand()
1907 DCHECK(src2.shift_op() == LSL); in pkhbt()
1926 DCHECK(src2.shift_op() == ASR); in pkhtb()