Searched refs:IsIntegralType (Results 1 – 8 of 8) sorted by relevance
148 if (!Primitive::IsIntegralType(type)) { in VisitRem()192 if (!Primitive::IsIntegralType(type)) { in VisitSub()
47 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()
320 if (Primitive::IsIntegralType(instruction->GetType())) { in VisitAdd()
3057 (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()
2672 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()
51 if (Primitive::IsIntegralType(type) || type == Primitive::kPrimNot) { in MoveFromReturnRegister()
78 if (Primitive::IsIntegralType(type) || type == Primitive::kPrimNot) { in MoveFromReturnRegister()
144 static bool IsIntegralType(Type type) { in IsIntegralType() function