Home | History | Annotate | Download | only in optimizing

Lines Matching defs:input_type

2645   Primitive::Type input_type = conversion->GetInputType();
2647 DCHECK_NE(input_type, result_type);
2648 if ((input_type == Primitive::kPrimNot) || (input_type == Primitive::kPrimVoid) ||
2650 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
2653 if (Primitive::IsFloatingPointType(input_type)) {
2668 Primitive::Type input_type = conversion->GetInputType();
2670 DCHECK_NE(input_type, result_type);
2672 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
2674 int input_size = Primitive::ComponentSize(input_type);
2681 ((input_type == Primitive::kPrimChar) && (result_size > input_size))) {
2686 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
2688 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
2692 Primitive::IsFloatingPointType(input_type)) {
2695 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type