Files
rust/compiler/rustc_middle/src/ty/_match.rs

124 lines
3.5 KiB
Rust
Raw Normal View History

2019-03-12 19:27:06 +00:00
use crate::ty::error::TypeError;
2019-12-22 17:42:04 -05:00
use crate::ty::relate::{self, Relate, RelateResult, TypeRelation};
use crate::ty::{self, InferConst, Ty, TyCtxt};
/// A type "A" *matches* "B" if the fresh types in B could be
/// substituted with values so as to make it equal to A. Matching is
/// intended to be used only on freshened types, and it basically
/// indicates if the non-freshened versions of A and B could have been
/// unified.
///
/// It is only an approximation. If it yields false, unification would
/// definitely fail, but a true result doesn't mean unification would
/// succeed. This is because we don't track the "side-constraints" on
/// type variables, nor do we track if the same freshened type appears
/// more than once. To some extent these approximations could be
/// fixed, given effort.
///
/// Like subtyping, matching is really a binary relation, so the only
/// important thing about the result is Ok/Err. Also, matching never
/// affects any type variables or unification state.
2019-06-14 00:48:52 +03:00
pub struct Match<'tcx> {
tcx: TyCtxt<'tcx>,
param_env: ty::ParamEnv<'tcx>,
}
2019-06-14 00:48:52 +03:00
impl Match<'tcx> {
pub fn new(tcx: TyCtxt<'tcx>, param_env: ty::ParamEnv<'tcx>) -> Match<'tcx> {
Match { tcx, param_env }
}
}
2019-06-14 00:48:52 +03:00
impl TypeRelation<'tcx> for Match<'tcx> {
2019-12-22 17:42:04 -05:00
fn tag(&self) -> &'static str {
"Match"
}
fn tcx(&self) -> TyCtxt<'tcx> {
self.tcx
}
fn param_env(&self) -> ty::ParamEnv<'tcx> {
self.param_env
}
fn a_is_expected(&self) -> bool {
true
} // irrelevant
fn relate_with_variance<T: Relate<'tcx>>(
&mut self,
_: ty::Variance,
2020-06-24 23:14:18 +02:00
a: T,
b: T,
2019-12-22 17:42:04 -05:00
) -> RelateResult<'tcx, T> {
self.relate(a, b)
}
2019-12-22 17:42:04 -05:00
fn regions(
&mut self,
a: ty::Region<'tcx>,
b: ty::Region<'tcx>,
) -> RelateResult<'tcx, ty::Region<'tcx>> {
debug!("{}.regions({:?}, {:?})", self.tag(), a, b);
Ok(a)
}
fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
2019-12-22 17:42:04 -05:00
debug!("{}.tys({:?}, {:?})", self.tag(), a, b);
if a == b {
return Ok(a);
}
2020-08-03 00:49:11 +02:00
match (a.kind(), b.kind()) {
(
_,
&ty::Infer(ty::FreshTy(_))
| &ty::Infer(ty::FreshIntTy(_))
| &ty::Infer(ty::FreshFloatTy(_)),
) => Ok(a),
2019-12-22 17:42:04 -05:00
(&ty::Infer(_), _) | (_, &ty::Infer(_)) => {
2015-09-06 21:51:58 +03:00
Err(TypeError::Sorts(relate::expected_found(self, &a, &b)))
}
(&ty::Error(_), _) | (_, &ty::Error(_)) => Ok(self.tcx().ty_error()),
2019-12-22 17:42:04 -05:00
_ => relate::super_relate_tys(self, a, b),
}
}
fn consts(
&mut self,
2019-03-18 20:55:19 +00:00
a: &'tcx ty::Const<'tcx>,
b: &'tcx ty::Const<'tcx>,
) -> RelateResult<'tcx, &'tcx ty::Const<'tcx>> {
debug!("{}.consts({:?}, {:?})", self.tag(), a, b);
if a == b {
return Ok(a);
}
2019-03-18 20:55:19 +00:00
match (a.val, b.val) {
(_, ty::ConstKind::Infer(InferConst::Fresh(_))) => {
2019-03-18 20:55:19 +00:00
return Ok(a);
}
(ty::ConstKind::Infer(_), _) | (_, ty::ConstKind::Infer(_)) => {
2019-03-18 20:55:19 +00:00
return Err(TypeError::ConstMismatch(relate::expected_found(self, &a, &b)));
}
2019-03-18 20:55:19 +00:00
_ => {}
}
relate::super_relate_consts(self, a, b)
}
2019-12-22 17:42:04 -05:00
fn binders<T>(
&mut self,
2020-06-24 23:14:18 +02:00
a: ty::Binder<T>,
b: ty::Binder<T>,
2019-12-22 17:42:04 -05:00
) -> RelateResult<'tcx, ty::Binder<T>>
where
T: Relate<'tcx>,
{
2020-06-24 23:40:33 +02:00
Ok(ty::Binder::bind(self.relate(a.skip_binder(), b.skip_binder())?))
}
}