Home
last modified time | relevance | path

Searched refs:ConstantType (Results 1 – 6 of 6) sorted by relevance

/art/runtime/verifier/
Dreg_type_cache-inl.h40 inline const ConstantType& RegTypeCache::FromCat1Const(int32_t value, bool precise) { in FromCat1Const()
90 const ConstantType& result = FromCat1Const(std::numeric_limits<jbyte>::min(), false); in ByteConstant()
97 const ConstantType& result = FromCat1Const(jchar_max, false); in CharConstant()
103 const ConstantType& result = FromCat1Const(std::numeric_limits<jshort>::min(), false); in ShortConstant()
109 const ConstantType& result = FromCat1Const(std::numeric_limits<jint>::max(), false); in IntConstant()
115 const ConstantType& result = FromCat1Const(std::numeric_limits<jbyte>::max(), false); in PosByteConstant()
121 const ConstantType& result = FromCat1Const(std::numeric_limits<jshort>::max(), false); in PosShortConstant()
Dreg_type_cache.h43 class ConstantType; variable
90 const ConstantType& FromCat1Const(int32_t value, bool precise)
92 const ConstantType& FromCat2ConstLo(int32_t value, bool precise)
94 const ConstantType& FromCat2ConstHi(int32_t value, bool precise)
110 const ConstantType& Zero() REQUIRES_SHARED(Locks::mutator_lock_) { in Zero()
113 const ConstantType& One() REQUIRES_SHARED(Locks::mutator_lock_) { in One()
169 const ConstantType& FromCat1NonSmallConstant(int32_t value, bool precise)
Dreg_type.cc481 const ConstantType* const_val = down_cast<const ConstantType*>(this); in HighHalf()
624 const ConstantType& type1 = *down_cast<const ConstantType*>(this); in Merge()
625 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type); in Merge()
679 const ConstantType& type1 = *down_cast<const ConstantType*>(this); in Merge()
680 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type); in Merge()
685 const ConstantType& type1 = *down_cast<const ConstantType*>(this); in Merge()
686 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type); in Merge()
Dreg_type_cache.cc601 const ConstantType& RegTypeCache::FromCat1NonSmallConstant(int32_t value, bool precise) { in FromCat1NonSmallConstant()
606 (down_cast<const ConstantType*>(cur_entry))->ConstantValue() == value) { in FromCat1NonSmallConstant()
607 return *down_cast<const ConstantType*>(cur_entry); in FromCat1NonSmallConstant()
610 ConstantType* entry; in FromCat1NonSmallConstant()
619 const ConstantType& RegTypeCache::FromCat2ConstLo(int32_t value, bool precise) { in FromCat2ConstLo()
623 (down_cast<const ConstantType*>(cur_entry))->ConstantValueLo() == value) { in FromCat2ConstLo()
624 return *down_cast<const ConstantType*>(cur_entry); in FromCat2ConstLo()
627 ConstantType* entry; in FromCat2ConstLo()
636 const ConstantType& RegTypeCache::FromCat2ConstHi(int32_t value, bool precise) { in FromCat2ConstHi()
640 (down_cast<const ConstantType*>(cur_entry))->ConstantValueHi() == value) { in FromCat2ConstHi()
[all …]
Dreg_type.h725 class ConstantType : public RegType {
727 ConstantType(uint32_t constant, uint16_t cache_id) REQUIRES_SHARED(Locks::mutator_lock_) in ConstantType() function
786 class PreciseConstType final : public ConstantType {
790 : ConstantType(constant, cache_id) { in PreciseConstType()
803 class PreciseConstLoType final : public ConstantType {
807 : ConstantType(constant, cache_id) { in PreciseConstLoType()
818 class PreciseConstHiType final : public ConstantType {
822 : ConstantType(constant, cache_id) { in PreciseConstHiType()
833 class ImpreciseConstType final : public ConstantType {
837 : ConstantType(constat, cache_id) { in ImpreciseConstType()
[all …]
Dreg_type-inl.h65 const ConstantType* const_val = down_cast<const ConstantType*>(this); in IsConstantBoolean()