Home
last modified time | relevance | path

Searched refs:IsIntegralType (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Dconstant_folding.cc148 if (!Primitive::IsIntegralType(type)) { in VisitRem()
192 if (!Primitive::IsIntegralType(type)) { in VisitSub()
Dcode_generator.cc47 return Primitive::IsIntegralType(type) || (type == Primitive::kPrimNot); in CheckType()
53 return (Primitive::IsIntegralType(type) && type != Primitive::kPrimLong) in CheckType()
60 return Primitive::IsIntegralType(type) && (type != Primitive::kPrimLong); in CheckType()
Dinstruction_simplifier.cc320 if (Primitive::IsIntegralType(instruction->GetType())) { in VisitAdd()
Dcode_generator_mips64.cc3057 (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type))) { in VisitTypeConversion()
3095 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) { in VisitTypeConversion()
3128 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) { in VisitTypeConversion()
3146 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) { in VisitTypeConversion()
Dcode_generator_arm64.cc2672 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) { in VisitTypeConversion()
2686 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) { in VisitTypeConversion()
2688 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) { in VisitTypeConversion()
Dintrinsics_arm.cc51 if (Primitive::IsIntegralType(type) || type == Primitive::kPrimNot) { in MoveFromReturnRegister()
Dintrinsics_arm64.cc78 if (Primitive::IsIntegralType(type) || type == Primitive::kPrimNot) { in MoveFromReturnRegister()
/art/runtime/
Dprimitive.h144 static bool IsIntegralType(Type type) { in IsIntegralType() function