Lines Matching refs:shift_imm_
381 shift_imm_ = shift_imm & 31; in Operand()
391 shift_imm_ = 0; in Operand()
431 : rn_(rn), rm_(rm), shift_op_(LSL), shift_imm_(0), am_(am) {} in MemOperand()
438 shift_imm_(shift_imm & 31), in MemOperand()
1265 *instr |= x.shift_imm_ * B7 | x.shift_op_ | x.rm_.code(); in AddrMode1TryEncodeOperand()
1309 instr |= B25 | x.shift_imm_*B7 | x.shift_op_ | x.rm_.code(); in AddrMode2()
1344 } else if (x.shift_imm_ != 0) { in AddrMode3()
1351 mov(scratch, Operand(x.rm_, x.shift_op_, x.shift_imm_), LeaveCC, in AddrMode3()
1823 src.shift_imm_ * B7 | sh * B6 | 0x1 * B4 | src.rm_.code()); in usat()
1910 DCHECK((src2.shift_imm_ >= 0) && (src2.shift_imm_ <= 31)); in pkhbt()
1913 src2.shift_imm_*B7 | B4 | src2.rm().code()); in pkhbt()
1928 DCHECK((src2.shift_imm_ >= 1) && (src2.shift_imm_ <= 32)); in pkhtb()
1930 int asr = (src2.shift_imm_ == 32) ? 0 : src2.shift_imm_; in pkhtb()
2532 Operand(operand.rm(), operand.shift_op_, operand.shift_imm_)); in vldr()
2585 Operand(operand.rm(), operand.shift_op_, operand.shift_imm_)); in vldr()
2641 Operand(operand.rm(), operand.shift_op_, operand.shift_imm_)); in vstr()
2694 Operand(operand.rm(), operand.shift_op_, operand.shift_imm_)); in vstr()