Home
last modified time | relevance | path

Searched refs:IsIntegralTypes (Results 1 – 5 of 5) sorted by relevance

/art/runtime/verifier/
Dreg_type_test.cc118 EXPECT_TRUE(bool_reg_type.IsIntegralTypes()); in TEST_F()
151 EXPECT_TRUE(byte_reg_type.IsIntegralTypes()); in TEST_F()
184 EXPECT_TRUE(char_reg_type.IsIntegralTypes()); in TEST_F()
217 EXPECT_TRUE(short_reg_type.IsIntegralTypes()); in TEST_F()
250 EXPECT_TRUE(int_reg_type.IsIntegralTypes()); in TEST_F()
283 EXPECT_FALSE(long_reg_type.IsIntegralTypes()); in TEST_F()
316 EXPECT_FALSE(float_reg_type.IsIntegralTypes()); in TEST_F()
349 EXPECT_FALSE(double_reg_type.IsIntegralTypes()); in TEST_F()
Dreg_type-inl.h87 return rhs.IsIntegralTypes(); in AssignableFrom()
Dreg_type.cc499 } else if (IsIntegralTypes()) { in GetPrimitiveType()
832 } else if (IsIntegralTypes() && incoming_type.IsIntegralTypes()) { in Merge()
1060 if (cmp2.IsIntegralTypes() || cmp2.IsFloatTypes() || cmp2.IsArrayTypes()) { in CanAssignArray()
1068 if (cmp1.IsIntegralTypes() || cmp1.IsFloatTypes() || cmp1.IsArrayTypes()) { in CanAssignArray()
Dmethod_verifier.cc2647 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes(); in CodeFlowVerifyInstruction()
2651 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes(); in CodeFlowVerifyInstruction()
2665 if (!reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes()) { in CodeFlowVerifyInstruction()
2674 if (!reg_type.IsReferenceTypes() && !reg_type.IsIntegralTypes()) { in CodeFlowVerifyInstruction()
2788 if (!reg_type.IsIntegralTypes()) { in CodeFlowVerifyInstruction()
4126 if (reg_type.IsIntegralTypes()) { in VerifyInvocationArgsFromIterator()
4128 if (!src_type.IsIntegralTypes()) { in VerifyInvocationArgsFromIterator()
4549 if (target_type.IsIntegralTypes()) { in VerifyPrimitivePut()
4551 value_compatible = value_type.IsIntegralTypes(); in VerifyPrimitivePut()
Dreg_type.h157 bool IsIntegralTypes() const { in IsIntegralTypes() function
163 bool IsArrayIndexTypes() const { return IsIntegralTypes(); } in IsArrayIndexTypes()