Home
last modified time | relevance | path

Searched refs:shift_op_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/arm/
Dassembler-arm.cc380 shift_op_ = shift_op; in Operand()
390 shift_op_ = ROR; in Operand()
400 shift_op_ = shift_op; in Operand()
431 : rn_(rn), rm_(rm), shift_op_(LSL), shift_imm_(0), am_(am) {} in MemOperand()
437 shift_op_(shift_op), in MemOperand()
1265 *instr |= x.shift_imm_ * B7 | x.shift_op_ | x.rm_.code(); in AddrMode1TryEncodeOperand()
1270 *instr |= x.rs_.code() * B8 | x.shift_op_ | B4 | x.rm_.code(); in AddrMode1TryEncodeOperand()
1309 instr |= B25 | x.shift_imm_*B7 | x.shift_op_ | x.rm_.code(); in AddrMode2()
1351 mov(scratch, Operand(x.rm_, x.shift_op_, x.shift_imm_), LeaveCC, in AddrMode3()
1815 DCHECK((src.shift_op_ == ASR) || (src.shift_op_ == LSL)); in usat()
[all …]
Dassembler-arm.h431 return rm_.is_valid() && rs_ == no_reg && shift_op_ == LSL && in IsRegister()
480 ShiftOp shift_op() const { return shift_op_; } in shift_op()
486 ShiftOp shift_op_; variable
550 ShiftOp shift_op_; variable
Dassembler-arm-inl.h220 Operand::Operand(Register rm) : rm_(rm), shift_op_(LSL), shift_imm_(0) {} in Operand()