Home
last modified time | relevance | path

Searched refs:to_type (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dmethod_handles-inl.h181 const Primitive::Type to_type = to->GetPrimitiveType(); in PerformConversions() local
206 if (Primitive::Is64BitType(to_type)) { in PerformConversions()
208 } else if (to_type == Primitive::kPrimNot) { in PerformConversions()
Dmethod_handles.cc206 const Primitive::Type to_type = to->GetPrimitiveType(); in ConvertJValueCommon() local
221 if (IsPrimitiveType(from_type) && IsPrimitiveType(to_type)) { in ConvertJValueCommon()
223 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(from_type, to_type, src_value, value))) { in ConvertJValueCommon()
228 } else if (IsReferenceType(from_type) && IsReferenceType(to_type)) { in ConvertJValueCommon()
244 } else if (IsReferenceType(to_type)) { in ConvertJValueCommon()
278 DCHECK(IsPrimitiveType(to_type)); in ConvertJValueCommon()
295 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(unboxed_type, to_type, unboxed_value, value))) { in ConvertJValueCommon()
296 if (from->IsAssignableFrom(GetBoxedPrimitiveClass(to_type))) { in ConvertJValueCommon()
/art/compiler/optimizing/
Dinstruction_simplifier.cc905 static bool AreLowerPrecisionArgs(DataType::Type to_type, HInstruction* a, HInstruction* b) { in AreLowerPrecisionArgs() argument
906 if (a->IsTypeConversion() && a->GetType() == to_type) { in AreLowerPrecisionArgs()
909 if (b->IsTypeConversion() && b->GetType() == to_type) { in AreLowerPrecisionArgs()
919 to_type == DataType::Type::kInt64); in AreLowerPrecisionArgs()