HomeSort by relevance Sort by last modified time
    Searched defs:ShifterOperand (Results 1 - 2 of 2) sorted by null

  /art/compiler/utils/arm/
assembler_arm.cc 78 ShifterOperand::ShifterOperand(uint32_t immed)
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(0))
    [all...]
assembler_arm.h 122 class ShifterOperand {
124 ShifterOperand() : type_(kUnknown), rm_(kNoRegister), rs_(kNoRegister),
128 explicit ShifterOperand(uint32_t immed);
131 explicit ShifterOperand(Register rm) : type_(kRegister), rm_(rm), rs_(kNoRegister),
135 ShifterOperand(uint32_t rotate, uint32_t immed8) : type_(kImmediate), rm_(kNoRegister),
140 ShifterOperand(Register rm, Shift shift, uint32_t shift_imm = 0) : type_(kRegister), rm_(rm),
146 ShifterOperand(Register rm, Shift shift, Register rs) : type_(kRegister), rm_(rm),
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& so
    [all...]

Completed in 39 milliseconds