Lines Matching refs:getConstantImm
1212 uint64_t Imm = getConstantImm() - Offset; in addConstantUImmOperands()
1240 int64_t Imm = getConstantImm() - Offset; in addConstantSImmOperands()
1295 return isConstantImm() && getConstantImm() == 0; in isConstantImmz()
1299 return isConstantImm() && isUInt<Bits>(getConstantImm() - Offset); in isConstantUImm()
1303 return isConstantImm() ? isInt<Bits>(getConstantImm()) : isImm(); in isSImm()
1307 return isConstantImm() ? isUInt<Bits>(getConstantImm()) : isImm(); in isUImm()
1311 return isConstantImm() ? (isInt<Bits>(getConstantImm()) || in isAnyImm()
1312 isUInt<Bits>(getConstantImm())) in isAnyImm()
1317 return isConstantImm() && isInt<Bits>(getConstantImm() - Offset); in isConstantSImm()
1321 return isConstantImm() && getConstantImm() >= Bottom && in isConstantUImmRange()
1322 getConstantImm() <= Top; in isConstantUImmRange()
1391 isShiftedUInt<Bits, ShiftLeftAmount>(getConstantImm()); in isScaledUImm()
1397 isShiftedInt<Bits, ShiftLeftAmount>(getConstantImm())) in isScaledSImm()
1438 int64_t Val = getConstantImm(); in isLSAImm()
1465 int64_t getConstantImm() const { in getConstantImm() function in __anon03c4d4620211::MipsOperand