Searched refs:IsExact (Results 1 – 10 of 10) sorted by relevance
/art/compiler/optimizing/ |
D | reference_type_propagation_test.cc | 95 EXPECT_FALSE(t1.IsExact()); in TEST_F() 101 EXPECT_TRUE(t2.IsExact()); in TEST_F() 105 EXPECT_TRUE(t3.IsExact()); in TEST_F() 111 EXPECT_TRUE(t4.IsExact()); in TEST_F() 115 EXPECT_TRUE(t5.IsExact()); in TEST_F() 127 EXPECT_TRUE(t1.IsExact()); in TEST_F() 131 EXPECT_TRUE(t2.IsExact()); in TEST_F() 137 EXPECT_FALSE(t3.IsExact()); in TEST_F() 143 EXPECT_FALSE(t4.IsExact()); in TEST_F() 149 EXPECT_FALSE(t5.IsExact()); in TEST_F() [all …]
|
D | reference_type_propagation.cc | 167 DCHECK(cls->GetReferenceTypeInfo().IsExact()); in ValidateTypes() 168 DCHECK(!cls->GetLoadedClassRTI().IsValid() || cls->GetLoadedClassRTI().IsExact()); in ValidateTypes() 316 if (receiver_type.IsExact()) { in BoundTypeForClassCheck() 510 if (obj->GetReferenceTypeInfo().IsExact() && !obj->IsPhi()) { in BoundTypeForIfInstanceOf() 693 if (class_rti.IsExact()) { in VisitBoundType() 797 bool is_exact = a.IsExact() && b.IsExact(); in MergeTypes() 905 if (upper_bound_rti.IsExact()) { in UpdateBoundType() 940 if (new_rti.IsValid() && new_rti.IsObjectClass() && !new_rti.IsExact()) { in UpdatePhi() 952 if (!new_rti.IsExact()) { in UpdatePhi()
|
D | induction_var_analysis.cc | 851 if (IsExact(LookupInfo(loop, x), &value) && value == opposite_value) { in SolveTest() 853 } else if (IsExact(LookupInfo(loop, y), &value) && value == opposite_value) { in SolveTest() 942 if (!IsExact(stride_expr, &stride_value)) { in VisitCondition() 1242 if (IsExact(a, &value)) { in CreateSimplifiedInvariant() 1259 if (IsExact(b, &value)) { in CreateSimplifiedInvariant() 1313 if (IsExact(b, &value)) { in GetShiftConstant() 1341 bool HInductionVarAnalysis::IsExact(InductionInfo* info, int64_t* value) { in IsExact() function in art::HInductionVarAnalysis
|
D | induction_var_range_test.cc | 285 bool IsExact(HInductionVarAnalysis::InductionInfo* info, int64_t* value) { in IsExact() function in art::InductionVarRangeTest 328 EXPECT_TRUE(IsExact(CreateConst(12345), &value)); in TEST_F() 335 EXPECT_TRUE(IsExact(CreateRange(111, 111), &value)); in TEST_F() 342 EXPECT_FALSE(IsExact(CreateRange(11, 22), &value)); in TEST_F() 348 EXPECT_FALSE(IsExact(CreateFetch(x_), &value)); in TEST_F()
|
D | induction_var_analysis.h | 248 bool IsExact(InductionInfo* info, /*out*/ int64_t* value);
|
D | inliner.cc | 213 if (!info.IsExact()) { in FindVirtualOrInterfaceTarget() 255 } else if (info.IsExact()) { in FindVirtualOrInterfaceTarget() 2053 return (actual_rti.IsExact() && !declared_rti.IsExact()) || in IsReferenceTypeRefinement()
|
D | instruction_simplifier.cc | 594 DCHECK(class_rti.IsExact()); in TypeCheckHasKnownOutcome() 598 } else if (obj_rti.IsExact()) { in TypeCheckHasKnownOutcome() 1047 if (array_rti.IsExact()) { in VisitArraySet() 1504 if (!receiver_type.IsExact()) { in RecognizeAndSimplifyClassCheck() 2185 if (destination_rti.IsExact()) { in SimplifySystemArrayCopy()
|
D | graph_visualizer.cc | 656 StartAttributeStream("exact") << std::boolalpha << info.IsExact() << std::noboolalpha; in PrintInstruction()
|
D | nodes.cc | 2747 DCHECK(!upper_bound_rti.GetTypeHandle()->CannotBeAssignedFromOtherTypes() || rti.IsExact()) in CheckAgainstUpperBound() 2765 SetPackedFlag<kFlagReferenceTypeIsExact>(rti.IsExact()); in SetReferenceTypeInfo() 2796 << " is_exact=" << rhs.IsExact() in operator <<()
|
D | nodes.h | 209 bool IsExact() const { return is_exact_; } in IsExact() function 248 if (!IsExact()) return false; in CanArrayHold() 255 if (!IsExact()) return false; in CanArrayHoldValuesOf() 289 return IsExact() == rti.IsExact() in IsEqual() 1977 SetPackedFlag<kFlagReferenceTypeIsExact>(ReferenceTypeInfo::CreateInvalid().IsExact()); in HInstruction() 6124 DCHECK(rti.IsExact()); in SetLoadedClassRTI()
|