Lines Matching refs:getConstantImm
927 uint64_t Imm = getConstantImm() - Offset; in addConstantUImmOperands()
955 int64_t Imm = getConstantImm() - Offset; in addConstantSImmOperands()
1029 return isConstantImm() && getConstantImm() == 0; in isConstantImmz()
1032 return isConstantImm() && isUInt<Bits>(getConstantImm() - Offset); in isConstantUImm()
1035 return isConstantImm() ? isInt<Bits>(getConstantImm()) : isImm(); in isSImm()
1038 return isConstantImm() ? isUInt<Bits>(getConstantImm()) : isImm(); in isUImm()
1041 return isConstantImm() ? (isInt<Bits>(getConstantImm()) || in isAnyImm()
1042 isUInt<Bits>(getConstantImm())) in isAnyImm()
1046 return isConstantImm() && isInt<Bits>(getConstantImm() - Offset); in isConstantSImm()
1049 return isConstantImm() && getConstantImm() >= Bottom && in isConstantUImmRange()
1050 getConstantImm() <= Top; in isConstantUImmRange()
1098 isShiftedUInt<Bits, ShiftLeftAmount>(getConstantImm()); in isScaledUImm()
1103 isShiftedInt<Bits, ShiftLeftAmount>(getConstantImm()); in isScaledSImm()
1133 int64_t Val = getConstantImm(); in isLSAImm()
1189 int64_t getConstantImm() const { in getConstantImm() function in __anond0efcad40311::MipsOperand