Home | History | Annotate | Download | only in verifier

Lines Matching refs:ConstantValue

126     return IsConstant() && (ConstantValue() >= 0) && (ConstantValue() <= 1);
172 virtual int32_t ConstantValue() const;
580 int32_t ConstantValue() const {
588 return IsPreciseConstant() && ConstantValue() == 0;
591 return IsPreciseConstant() && ConstantValue() == 1;
595 return IsConstant() && ConstantValue() >= 0 &&
596 ConstantValue() <= std::numeric_limits<jchar>::max();
600 ConstantValue() >= std::numeric_limits<jbyte>::min() &&
601 ConstantValue() <= std::numeric_limits<jbyte>::max();
605 ConstantValue() >= std::numeric_limits<jshort>::min() &&
606 ConstantValue() <= std::numeric_limits<jshort>::max();