Lines Matching refs:Imm8
668 unsigned Reg, Imm8; in getT2AddrModeImm8s4OpValue() local
674 Imm8 = 0; in getT2AddrModeImm8s4OpValue()
684 isAdd = EncodeAddrModeOpValues(MI, OpIdx, Reg, Imm8, Fixups); in getT2AddrModeImm8s4OpValue()
686 uint32_t Binary = (Imm8 >> 2) & 0xff; in getT2AddrModeImm8s4OpValue()
832 uint32_t Imm8 = ARM_AM::getAM3Offset(Imm); in getAddrMode3OffsetOpValue() local
835 Imm8 = getARMRegisterNumbering(MO.getReg()); in getAddrMode3OffsetOpValue()
836 return Imm8 | (isAdd << 8) | (isImm << 9); in getAddrMode3OffsetOpValue()
854 uint32_t Imm8 = ARM_AM::getAM3Offset(Imm); in getAddrMode3OpValue() local
857 Imm8 = getARMRegisterNumbering(MO1.getReg()); in getAddrMode3OpValue()
858 return (Rn << 9) | Imm8 | (isAdd << 8) | (isImm << 13); in getAddrMode3OpValue()
904 unsigned Reg, Imm8; in getAddrMode5OpValue() local
910 Imm8 = 0; in getAddrMode5OpValue()
924 EncodeAddrModeOpValues(MI, OpIdx, Reg, Imm8, Fixups); in getAddrMode5OpValue()
925 isAdd = ARM_AM::getAM5Op(Imm8) == ARM_AM::add; in getAddrMode5OpValue()
928 uint32_t Binary = ARM_AM::getAM5Offset(Imm8); in getAddrMode5OpValue()