Home | History | Annotate | Download | only in verifier

Lines Matching refs:ConstantValue

722   int32_t ConstantValue() const {
742 return IsPreciseConstant() && ConstantValue() == 0;
745 return IsPreciseConstant() && ConstantValue() == 1;
749 return IsConstant() && ConstantValue() >= 0 &&
750 ConstantValue() <= std::numeric_limits<uint16_t>::max();
754 ConstantValue() >= std::numeric_limits<int8_t>::min() &&
755 ConstantValue() <= std::numeric_limits<int8_t>::max();
759 ConstantValue() >= std::numeric_limits<int16_t>::min() &&
760 ConstantValue() <= std::numeric_limits<int16_t>::max();