2020-01-17 09:59:02 -06:00
|
|
|
//! Helper functions for binary operator type inference.
|
|
|
|
use hir_def::expr::{ArithOp, BinaryOp, CmpOp};
|
2019-09-30 03:58:53 -05:00
|
|
|
|
2019-07-04 15:05:17 -05:00
|
|
|
use super::{InferTy, Ty, TypeCtor};
|
2019-11-27 08:46:02 -06:00
|
|
|
use crate::ApplicationTy;
|
2019-02-23 08:24:07 -06:00
|
|
|
|
2020-01-17 09:59:02 -06:00
|
|
|
pub(super) fn binary_op_return_ty(op: BinaryOp, lhs_ty: Ty, rhs_ty: Ty) -> Ty {
|
2019-02-23 08:24:07 -06:00
|
|
|
match op {
|
2019-08-17 09:42:41 -05:00
|
|
|
BinaryOp::LogicOp(_) | BinaryOp::CmpOp(_) => Ty::simple(TypeCtor::Bool),
|
|
|
|
BinaryOp::Assignment { .. } => Ty::unit(),
|
2020-01-17 09:59:02 -06:00
|
|
|
BinaryOp::ArithOp(ArithOp::Shl) | BinaryOp::ArithOp(ArithOp::Shr) => match lhs_ty {
|
|
|
|
Ty::Apply(ApplicationTy { ctor, .. }) => match ctor {
|
|
|
|
TypeCtor::Int(..) | TypeCtor::Float(..) => lhs_ty,
|
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
|
|
|
Ty::Infer(InferTy::IntVar(..)) | Ty::Infer(InferTy::FloatVar(..)) => lhs_ty,
|
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
2019-08-17 09:42:41 -05:00
|
|
|
BinaryOp::ArithOp(_) => match rhs_ty {
|
2019-03-21 16:29:12 -05:00
|
|
|
Ty::Apply(ApplicationTy { ctor, .. }) => match ctor {
|
2019-03-21 16:20:03 -05:00
|
|
|
TypeCtor::Int(..) | TypeCtor::Float(..) => rhs_ty,
|
2019-03-17 13:37:09 -05:00
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
|
|
|
Ty::Infer(InferTy::IntVar(..)) | Ty::Infer(InferTy::FloatVar(..)) => rhs_ty,
|
2019-02-23 08:24:07 -06:00
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(super) fn binary_op_rhs_expectation(op: BinaryOp, lhs_ty: Ty) -> Ty {
|
|
|
|
match op {
|
2019-08-17 09:42:41 -05:00
|
|
|
BinaryOp::LogicOp(..) => Ty::simple(TypeCtor::Bool),
|
2020-05-10 09:20:13 -05:00
|
|
|
BinaryOp::Assignment { op: None } => lhs_ty,
|
|
|
|
BinaryOp::CmpOp(CmpOp::Eq { .. }) => match lhs_ty {
|
2020-02-18 07:32:19 -06:00
|
|
|
Ty::Apply(ApplicationTy { ctor, .. }) => match ctor {
|
|
|
|
TypeCtor::Int(..)
|
|
|
|
| TypeCtor::Float(..)
|
|
|
|
| TypeCtor::Str
|
|
|
|
| TypeCtor::Char
|
|
|
|
| TypeCtor::Bool => lhs_ty,
|
2019-03-17 13:37:09 -05:00
|
|
|
_ => Ty::Unknown,
|
2020-02-18 07:32:19 -06:00
|
|
|
},
|
|
|
|
Ty::Infer(InferTy::IntVar(..)) | Ty::Infer(InferTy::FloatVar(..)) => lhs_ty,
|
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
2020-01-17 09:59:02 -06:00
|
|
|
BinaryOp::ArithOp(ArithOp::Shl) | BinaryOp::ArithOp(ArithOp::Shr) => Ty::Unknown,
|
2019-08-17 09:51:01 -05:00
|
|
|
BinaryOp::CmpOp(CmpOp::Ord { .. })
|
|
|
|
| BinaryOp::Assignment { op: Some(_) }
|
|
|
|
| BinaryOp::ArithOp(_) => match lhs_ty {
|
|
|
|
Ty::Apply(ApplicationTy { ctor, .. }) => match ctor {
|
|
|
|
TypeCtor::Int(..) | TypeCtor::Float(..) => lhs_ty,
|
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
|
|
|
Ty::Infer(InferTy::IntVar(..)) | Ty::Infer(InferTy::FloatVar(..)) => lhs_ty,
|
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
}
|