Searched defs:ShifterOperand (Results 1 - 2 of 2) sorted by relevance

/art/compiler/utils/arm/
H A Dassembler_arm.cc76 ShifterOperand::ShifterOperand(uint32_t immed) function in class:art::arm::ShifterOperand
83 uint32_t ShifterOperand::encodingArm() const {
119 uint32_t ShifterOperand::encodingThumb() const {
155 bool ShifterOperand::CanHoldThumb(Register rd, Register rn, Opcode opcode,
156 uint32_t immediate, ShifterOperand* shifter_op) {
510 rsb(dst.AsCoreRegister(), dst.AsCoreRegister(), ShifterOperand(0));
628 mov(dst.AsCoreRegister(), ShifterOperand(src.AsCoreRegister()));
640 mov(dst.AsRegisterPairLow(), ShifterOperand(src.AsRegisterPairLow()));
641 mov(dst.AsRegisterPairHigh(), ShifterOperand(sr
[all...]
H A Dassembler_arm.h32 class ShifterOperand { class in namespace:art::arm
34 ShifterOperand() : type_(kUnknown), rm_(kNoRegister), rs_(kNoRegister), function in class:art::arm::ShifterOperand
38 explicit ShifterOperand(uint32_t immed);
41 explicit ShifterOperand(Register rm) : type_(kRegister), rm_(rm), rs_(kNoRegister), function in class:art::arm::ShifterOperand
45 ShifterOperand(uint32_t rotate, uint32_t immed8) : type_(kImmediate), rm_(kNoRegister), function in class:art::arm::ShifterOperand
50 ShifterOperand(Register rm, Shift shift, uint32_t shift_imm = 0) : type_(kRegister), rm_(rm), function in class:art::arm::ShifterOperand
56 ShifterOperand(Register rm, Shift shift, Register rs) : type_(kRegister), rm_(rm), function in class:art::arm::ShifterOperand
105 static bool CanHoldArm(uint32_t immediate, ShifterOperand* shifter_op) {
129 uint32_t immediate, ShifterOperand* shifter_op);
363 virtual void and_(Register rd, Register rn, const ShifterOperand
[all...]

Completed in 58 milliseconds