Searched refs:FromCat1Const (Results 1 – 5 of 5) sorted by relevance
/art/runtime/verifier/ |
D | reg_type_test.cc | 33 const RegType& ref_type_const_0 = cache.FromCat1Const(10, true); in TEST_F() 34 const RegType& ref_type_const_1 = cache.FromCat1Const(10, true); in TEST_F() 35 const RegType& ref_type_const_2 = cache.FromCat1Const(30, true); in TEST_F() 36 const RegType& ref_type_const_3 = cache.FromCat1Const(30, false); in TEST_F() 58 const RegType& precise_const = cache.FromCat1Const(static_cast<int32_t>(val >> 32), true); in TEST_F() 479 const RegType& imprecise_const = cache_new.FromCat1Const(10, false); in TEST_F() 480 const RegType& precise_const = cache_new.FromCat1Const(10, true); in TEST_F()
|
D | reg_type_cache.h | 64 const RegType& FromCat1Const(int32_t value, bool precise) 85 return FromCat1Const(0, true); in Zero()
|
D | reg_type_cache.cc | 408 return FromCat1Const(std::numeric_limits<jbyte>::min(), false); in ByteConstant() 412 return FromCat1Const(std::numeric_limits<jshort>::min(), false); in ShortConstant() 416 return FromCat1Const(std::numeric_limits<jint>::max(), false); in IntConstant() 445 const RegType& RegTypeCache::FromCat1Const(int32_t value, bool precise) { in FromCat1Const() function in art::verifier::RegTypeCache
|
D | reg_type.cc | 805 return reg_types->FromCat1Const(val1, false); in Merge() 811 return reg_types->FromCat1Const(val2, false); in Merge() 820 return reg_types->FromCat1Const(val1, false); in Merge() 826 return reg_types->FromCat1Const(val2, false); in Merge()
|
D | method_verifier.cc | 1600 work_line_->SetRegisterType(inst->VRegA_11n(), reg_types_.FromCat1Const(val, true)); in CodeFlowVerifyInstruction() 1605 work_line_->SetRegisterType(inst->VRegA_21s(), reg_types_.FromCat1Const(val, true)); in CodeFlowVerifyInstruction() 1610 reg_types_.FromCat1Const(inst->VRegB_31i(), true)); in CodeFlowVerifyInstruction() 1614 reg_types_.FromCat1Const(inst->VRegB_21h() << 16, true)); in CodeFlowVerifyInstruction()
|