2022-12-04 03:19:10 +00:00
|
|
|
use std::mem;
|
|
|
|
|
|
2023-01-24 23:57:26 +00:00
|
|
|
use rustc_infer::infer::InferCtxt;
|
2023-04-09 04:29:43 +00:00
|
|
|
use rustc_infer::traits::solve::MaybeCause;
|
2023-03-22 16:23:36 +00:00
|
|
|
use rustc_infer::traits::Obligation;
|
2023-01-24 23:57:26 +00:00
|
|
|
use rustc_infer::traits::{
|
|
|
|
|
query::NoSolution, FulfillmentError, FulfillmentErrorCode, MismatchedProjectionTypes,
|
|
|
|
|
PredicateObligation, SelectionError, TraitEngine,
|
2022-12-04 03:19:10 +00:00
|
|
|
};
|
2023-01-24 23:57:26 +00:00
|
|
|
use rustc_middle::ty;
|
|
|
|
|
use rustc_middle::ty::error::{ExpectedFound, TypeError};
|
|
|
|
|
|
2023-06-09 00:19:54 +01:00
|
|
|
use super::eval_ctxt::GenerateProofTree;
|
2023-01-24 23:57:26 +00:00
|
|
|
use super::{Certainty, InferCtxtEvalExt};
|
2022-12-04 03:19:10 +00:00
|
|
|
|
|
|
|
|
/// A trait engine using the new trait solver.
|
|
|
|
|
///
|
|
|
|
|
/// This is mostly identical to how `evaluate_all` works inside of the
|
|
|
|
|
/// solver, except that the requirements are slightly different.
|
|
|
|
|
///
|
|
|
|
|
/// Unlike `evaluate_all` it is possible to add new obligations later on
|
|
|
|
|
/// and we also have to track diagnostics information by using `Obligation`
|
|
|
|
|
/// instead of `Goal`.
|
|
|
|
|
///
|
|
|
|
|
/// It is also likely that we want to use slightly different datastructures
|
|
|
|
|
/// here as this will have to deal with far more root goals than `evaluate_all`.
|
|
|
|
|
pub struct FulfillmentCtxt<'tcx> {
|
|
|
|
|
obligations: Vec<PredicateObligation<'tcx>>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'tcx> FulfillmentCtxt<'tcx> {
|
|
|
|
|
pub fn new() -> FulfillmentCtxt<'tcx> {
|
|
|
|
|
FulfillmentCtxt { obligations: Vec::new() }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'tcx> TraitEngine<'tcx> for FulfillmentCtxt<'tcx> {
|
|
|
|
|
fn register_predicate_obligation(
|
|
|
|
|
&mut self,
|
|
|
|
|
_infcx: &InferCtxt<'tcx>,
|
|
|
|
|
obligation: PredicateObligation<'tcx>,
|
|
|
|
|
) {
|
|
|
|
|
self.obligations.push(obligation);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-09 04:29:43 +00:00
|
|
|
fn collect_remaining_errors(&mut self, infcx: &InferCtxt<'tcx>) -> Vec<FulfillmentError<'tcx>> {
|
2023-01-11 03:54:46 +00:00
|
|
|
self.obligations
|
|
|
|
|
.drain(..)
|
2023-04-09 04:29:43 +00:00
|
|
|
.map(|obligation| {
|
2023-06-09 00:19:54 +01:00
|
|
|
let code = infcx.probe(|_| {
|
|
|
|
|
match infcx
|
|
|
|
|
.evaluate_root_goal(obligation.clone().into(), GenerateProofTree::No)
|
|
|
|
|
.0
|
|
|
|
|
{
|
2023-04-09 04:29:43 +00:00
|
|
|
Ok((_, Certainty::Maybe(MaybeCause::Ambiguity), _)) => {
|
|
|
|
|
FulfillmentErrorCode::CodeAmbiguity { overflow: false }
|
|
|
|
|
}
|
|
|
|
|
Ok((_, Certainty::Maybe(MaybeCause::Overflow), _)) => {
|
|
|
|
|
FulfillmentErrorCode::CodeAmbiguity { overflow: true }
|
|
|
|
|
}
|
|
|
|
|
Ok((_, Certainty::Yes, _)) => {
|
|
|
|
|
bug!("did not expect successful goal when collecting ambiguity errors")
|
|
|
|
|
}
|
|
|
|
|
Err(_) => {
|
|
|
|
|
bug!("did not expect selection error when collecting ambiguity errors")
|
|
|
|
|
}
|
2023-06-09 00:19:54 +01:00
|
|
|
}
|
|
|
|
|
});
|
2023-04-09 04:29:43 +00:00
|
|
|
|
|
|
|
|
FulfillmentError {
|
|
|
|
|
obligation: obligation.clone(),
|
|
|
|
|
code,
|
|
|
|
|
root_obligation: obligation,
|
|
|
|
|
}
|
2023-01-11 03:54:46 +00:00
|
|
|
})
|
|
|
|
|
.collect()
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn select_where_possible(&mut self, infcx: &InferCtxt<'tcx>) -> Vec<FulfillmentError<'tcx>> {
|
2023-01-11 03:54:46 +00:00
|
|
|
let mut errors = Vec::new();
|
2022-12-04 03:19:10 +00:00
|
|
|
for i in 0.. {
|
|
|
|
|
if !infcx.tcx.recursion_limit().value_within_limit(i) {
|
2023-01-10 20:24:10 +00:00
|
|
|
unimplemented!("overflowed on pending obligations: {:?}", self.obligations);
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut has_changed = false;
|
2023-01-11 03:54:46 +00:00
|
|
|
for obligation in mem::take(&mut self.obligations) {
|
2023-01-17 10:21:30 +01:00
|
|
|
let goal = obligation.clone().into();
|
2023-06-09 00:19:54 +01:00
|
|
|
let (changed, certainty, nested_goals) =
|
|
|
|
|
match infcx.evaluate_root_goal(goal, GenerateProofTree::No).0 {
|
|
|
|
|
Ok(result) => result,
|
|
|
|
|
Err(NoSolution) => {
|
|
|
|
|
errors.push(FulfillmentError {
|
|
|
|
|
obligation: obligation.clone(),
|
|
|
|
|
code: match goal.predicate.kind().skip_binder() {
|
2023-06-16 05:59:42 +00:00
|
|
|
ty::PredicateKind::Clause(ty::ClauseKind::Projection(_)) => {
|
2023-06-09 00:19:54 +01:00
|
|
|
FulfillmentErrorCode::CodeProjectionError(
|
|
|
|
|
// FIXME: This could be a `Sorts` if the term is a type
|
|
|
|
|
MismatchedProjectionTypes { err: TypeError::Mismatch },
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::AliasRelate(_, _, _) => {
|
|
|
|
|
FulfillmentErrorCode::CodeProjectionError(
|
|
|
|
|
MismatchedProjectionTypes { err: TypeError::Mismatch },
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::Subtype(pred) => {
|
|
|
|
|
let (a, b) = infcx.instantiate_binder_with_placeholders(
|
|
|
|
|
goal.predicate.kind().rebind((pred.a, pred.b)),
|
|
|
|
|
);
|
|
|
|
|
let expected_found = ExpectedFound::new(true, a, b);
|
|
|
|
|
FulfillmentErrorCode::CodeSubtypeError(
|
|
|
|
|
expected_found,
|
|
|
|
|
TypeError::Sorts(expected_found),
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::Coerce(pred) => {
|
|
|
|
|
let (a, b) = infcx.instantiate_binder_with_placeholders(
|
|
|
|
|
goal.predicate.kind().rebind((pred.a, pred.b)),
|
|
|
|
|
);
|
|
|
|
|
let expected_found = ExpectedFound::new(false, a, b);
|
|
|
|
|
FulfillmentErrorCode::CodeSubtypeError(
|
|
|
|
|
expected_found,
|
|
|
|
|
TypeError::Sorts(expected_found),
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::Clause(_)
|
|
|
|
|
| ty::PredicateKind::ObjectSafe(_)
|
|
|
|
|
| ty::PredicateKind::ClosureKind(_, _, _)
|
|
|
|
|
| ty::PredicateKind::Ambiguous => {
|
|
|
|
|
FulfillmentErrorCode::CodeSelectionError(
|
|
|
|
|
SelectionError::Unimplemented,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::ConstEquate(..)
|
|
|
|
|
| ty::PredicateKind::TypeWellFormedFromEnv(_) => {
|
|
|
|
|
bug!("unexpected goal: {goal:?}")
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
root_obligation: obligation,
|
|
|
|
|
});
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
};
|
2023-03-22 16:23:36 +00:00
|
|
|
// Push any nested goals that we get from unifying our canonical response
|
|
|
|
|
// with our obligation onto the fulfillment context.
|
|
|
|
|
self.obligations.extend(nested_goals.into_iter().map(|goal| {
|
|
|
|
|
Obligation::new(
|
|
|
|
|
infcx.tcx,
|
|
|
|
|
obligation.cause.clone(),
|
|
|
|
|
goal.param_env,
|
|
|
|
|
goal.predicate,
|
|
|
|
|
)
|
|
|
|
|
}));
|
2022-12-04 03:19:10 +00:00
|
|
|
has_changed |= changed;
|
|
|
|
|
match certainty {
|
|
|
|
|
Certainty::Yes => {}
|
2023-01-11 03:54:46 +00:00
|
|
|
Certainty::Maybe(_) => self.obligations.push(obligation),
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !has_changed {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
errors
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn pending_obligations(&self) -> Vec<PredicateObligation<'tcx>> {
|
|
|
|
|
self.obligations.clone()
|
|
|
|
|
}
|
2022-10-01 15:57:22 +02:00
|
|
|
|
|
|
|
|
fn drain_unstalled_obligations(
|
|
|
|
|
&mut self,
|
|
|
|
|
_: &InferCtxt<'tcx>,
|
|
|
|
|
) -> Vec<PredicateObligation<'tcx>> {
|
2023-01-28 22:46:46 +00:00
|
|
|
std::mem::take(&mut self.obligations)
|
2022-10-01 15:57:22 +02:00
|
|
|
}
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|