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

/art/compiler/utils/arm/
H A Dassembler_arm.cc78 ShifterOperand::ShifterOperand(uint32_t immed) function in class:art::arm::ShifterOperand
85 uint32_t ShifterOperand::encodingArm() const {
132 uint32_t ShifterOperand::encodingThumb() const {
662 mov(dst.AsCoreRegister(), ShifterOperand(src.AsCoreRegister()));
674 mov(dst.AsRegisterPairLow(), ShifterOperand(src.AsRegisterPairLow()));
675 mov(dst.AsRegisterPairHigh(), ShifterOperand(src.AsRegisterPairHigh()));
677 mov(dst.AsRegisterPairHigh(), ShifterOperand(src.AsRegisterPairHigh()));
678 mov(dst.AsRegisterPairLow(), ShifterOperand(src.AsRegisterPairLow()));
750 cmp(in_reg.AsCoreRegister(), ShifterOperand(
[all...]
H A Dassembler_arm.h122 class ShifterOperand { class in namespace:art::arm
124 ShifterOperand() : type_(kUnknown), rm_(kNoRegister), rs_(kNoRegister), function in class:art::arm::ShifterOperand
128 explicit ShifterOperand(uint32_t immed);
131 explicit ShifterOperand(Register rm) : type_(kRegister), rm_(rm), rs_(kNoRegister), function in class:art::arm::ShifterOperand
135 ShifterOperand(uint32_t rotate, uint32_t immed8) : type_(kImmediate), rm_(kNoRegister), function in class:art::arm::ShifterOperand
140 ShifterOperand(Register rm, Shift shift, uint32_t shift_imm = 0) : type_(kRegister), rm_(rm), function in class:art::arm::ShifterOperand
146 ShifterOperand(Register rm, Shift shift, Register rs) : type_(kRegister), rm_(rm), function in class:art::arm::ShifterOperand
444 virtual void and_(Register rd, Register rn, const ShifterOperand& so,
447 virtual void ands(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) {
451 virtual void eor(Register rd, Register rn, const ShifterOperand
[all...]

Completed in 297 milliseconds