Lines Matching refs:getConstantImm
1224 uint64_t Imm = getConstantImm() - Offset; in addConstantUImmOperands()
1252 int64_t Imm = getConstantImm() - Offset; in addConstantSImmOperands()
1307 return isConstantImm() && getConstantImm() == 0; in isConstantImmz()
1311 return isConstantImm() && isUInt<Bits>(getConstantImm() - Offset); in isConstantUImm()
1315 return isConstantImm() ? isInt<Bits>(getConstantImm()) : isImm(); in isSImm()
1319 return isConstantImm() ? isUInt<Bits>(getConstantImm()) : isImm(); in isUImm()
1323 return isConstantImm() ? (isInt<Bits>(getConstantImm()) || in isAnyImm()
1324 isUInt<Bits>(getConstantImm())) in isAnyImm()
1329 return isConstantImm() && isInt<Bits>(getConstantImm() - Offset); in isConstantSImm()
1333 return isConstantImm() && getConstantImm() >= Bottom && in isConstantUImmRange()
1334 getConstantImm() <= Top; in isConstantUImmRange()
1403 isShiftedUInt<Bits, ShiftLeftAmount>(getConstantImm()); in isScaledUImm()
1409 isShiftedInt<Bits, ShiftLeftAmount>(getConstantImm())) in isScaledSImm()
1450 int64_t Val = getConstantImm(); in isLSAImm()
1477 int64_t getConstantImm() const { in getConstantImm() function in __anonb0f64e280211::MipsOperand