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.h714 int32_t ConstantValue() const { in ConstantValue() function
734 return IsPreciseConstant() && ConstantValue() == 0; in IsZero()
737 return IsPreciseConstant() && ConstantValue() == 1; in IsOne()
741 return IsConstant() && ConstantValue() >= 0 && in IsConstantChar()
742 ConstantValue() <= std::numeric_limits<uint16_t>::max(); in IsConstantChar()
746 ConstantValue() >= std::numeric_limits<int8_t>::min() && in IsConstantByte()
747 ConstantValue() <= std::numeric_limits<int8_t>::max(); in IsConstantByte()
751 ConstantValue() >= std::numeric_limits<int16_t>::min() && in IsConstantShort()
752 ConstantValue() <= std::numeric_limits<int16_t>::max(); in IsConstantShort()
Dreg_type.cc79 uint32_t val = ConstantValue(); in Dump()
406 uint32_t val = ConstantValue(); in Dump()
482 return cache->FromCat2ConstHi(const_val->ConstantValue(), false); in HighHalf()
768 int32_t val1 = type1.ConstantValue(); in Merge()
769 int32_t val2 = type2.ConstantValue(); in Merge()
Dreg_type_cache.cc617 (down_cast<const ConstantType*>(cur_entry))->ConstantValue() == value) { in FromCat1NonSmallConstant()