Home
last modified time | relevance | path

Searched refs:ConstantValue (Results 1 – 4 of 4) sorted by relevance

/art/runtime/verifier/
Dreg_type-inl.h66 return const_val->ConstantValue() >= 0 && const_val->ConstantValue() <= 1; in IsConstantBoolean()
Dreg_type.h722 int32_t ConstantValue() const { in ConstantValue() function
742 return IsPreciseConstant() && ConstantValue() == 0; in IsZero()
745 return IsPreciseConstant() && ConstantValue() == 1; in IsOne()
749 return IsConstant() && ConstantValue() >= 0 && in IsConstantChar()
750 ConstantValue() <= std::numeric_limits<uint16_t>::max(); in IsConstantChar()
754 ConstantValue() >= std::numeric_limits<int8_t>::min() && in IsConstantByte()
755 ConstantValue() <= std::numeric_limits<int8_t>::max(); in IsConstantByte()
759 ConstantValue() >= std::numeric_limits<int16_t>::min() && in IsConstantShort()
760 ConstantValue() <= std::numeric_limits<int16_t>::max(); in IsConstantShort()
Dreg_type.cc73 uint32_t val = ConstantValue(); in Dump()
391 uint32_t val = ConstantValue(); in Dump()
467 return cache->FromCat2ConstHi(const_val->ConstantValue(), false); in HighHalf()
611 int32_t val1 = type1.ConstantValue(); in Merge()
612 int32_t val2 = type2.ConstantValue(); in Merge()
Dreg_type_cache.cc603 (down_cast<const ConstantType*>(cur_entry))->ConstantValue() == value) { in FromCat1NonSmallConstant()