HomeSort by relevance Sort by last modified time
    Searched refs:FromCat1Const (Results 1 - 5 of 5) sorted by null

  /art/runtime/verifier/
reg_type_cache-inl.h 37 inline const ConstantType& RegTypeCache::FromCat1Const(int32_t value, bool precise) {
47 const ConstantType& result = FromCat1Const(std::numeric_limits<jbyte>::min(), false);
54 const ConstantType& result = FromCat1Const(jchar_max, false);
60 const ConstantType& result = FromCat1Const(std::numeric_limits<jshort>::min(), false);
66 const ConstantType& result = FromCat1Const(std::numeric_limits<jint>::max(), false);
72 const ConstantType& result = FromCat1Const(std::numeric_limits<jbyte>::max(), false);
78 const ConstantType& result = FromCat1Const(std::numeric_limits<jshort>::max(), false);
reg_type_cache.h 70 const ConstantType& FromCat1Const(int32_t value, bool precise)
85 return FromCat1Const(0, true);
88 return FromCat1Const(1, true);
reg_type_test.cc 41 const RegType& ref_type_const_0 = cache.FromCat1Const(10, true);
42 const RegType& ref_type_const_1 = cache.FromCat1Const(10, true);
43 const RegType& ref_type_const_2 = cache.FromCat1Const(30, true);
44 const RegType& ref_type_const_3 = cache.FromCat1Const(30, false);
68 const RegType& precise_const = cache.FromCat1Const(static_cast<int32_t>(val >> 32), true);
518 const RegType& precise_cst = cache_new.FromCat1Const(kTestConstantValue, true);
519 const RegType& imprecise_cst = cache_new.FromCat1Const(kTestConstantValue, false);
672 const RegType& imprecise_const = cache_new.FromCat1Const(10, false);
673 const RegType& precise_const = cache_new.FromCat1Const(10, true);
reg_type.cc 613 return reg_types->FromCat1Const(val1, false);
619 return reg_types->FromCat1Const(val2, false);
628 return reg_types->FromCat1Const(val1, false);
634 return reg_types->FromCat1Const(val2, false);
method_verifier.cc     [all...]

Completed in 70 milliseconds