Home
last modified time | relevance | path

Searched refs:upper_bound_rti (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dreference_type_propagation.cc931 ReferenceTypeInfo upper_bound_rti = instr->GetUpperBound(); in UpdateBoundType() local
932 if (upper_bound_rti.IsExact()) { in UpdateBoundType()
933 instr->SetReferenceTypeInfo(upper_bound_rti); in UpdateBoundType()
934 } else if (upper_bound_rti.IsSupertypeOf(input_rti)) { in UpdateBoundType()
943 ReferenceTypeInfo::Create(upper_bound_rti.GetTypeHandle(), /* is_exact= */ false)); in UpdateBoundType()
Dnodes.cc3062 static void CheckAgainstUpperBound(ReferenceTypeInfo rti, ReferenceTypeInfo upper_bound_rti) in CheckAgainstUpperBound() argument
3065 DCHECK(upper_bound_rti.IsSupertypeOf(rti)) in CheckAgainstUpperBound()
3066 << " upper_bound_rti: " << upper_bound_rti in CheckAgainstUpperBound()
3068 DCHECK(!upper_bound_rti.GetTypeHandle()->CannotBeAssignedFromOtherTypes() || rti.IsExact()) in CheckAgainstUpperBound()
3069 << " upper_bound_rti: " << upper_bound_rti in CheckAgainstUpperBound()