Home | History | Annotate | Download | only in optimizing

Lines Matching defs:input_type

3046   Primitive::Type input_type = conversion->GetInputType();
3048 DCHECK_NE(input_type, result_type);
3050 if ((input_type == Primitive::kPrimNot) || (input_type == Primitive::kPrimVoid) ||
3052 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
3056 if ((Primitive::IsFloatingPointType(result_type) && input_type == Primitive::kPrimLong) ||
3057 (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type))) {
3064 if (Primitive::IsFloatingPointType(input_type)) {
3078 if (Primitive::IsFloatingPointType(input_type)) {
3091 Primitive::Type input_type = conversion->GetInputType();
3093 DCHECK_NE(input_type, result_type);
3095 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
3107 DCHECK(input_type != Primitive::kPrimLong);
3114 DCHECK(input_type != Primitive::kPrimLong);
3125 LOG(FATAL) << "Unexpected type conversion from " << input_type
3128 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
3129 if (input_type != Primitive::kPrimLong) {
3146 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
3150 entry_offset = (input_type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pF2iz)
3153 entry_offset = (input_type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pF2l)
3161 Primitive::IsFloatingPointType(input_type)) {
3170 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type