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-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;
|
2024-02-26 10:17:43 +01: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> {
|
2024-02-23 11:25:57 +01:00
|
|
|
obligations: ObligationStorage<'tcx>,
|
2023-06-29 10:02:26 +02:00
|
|
|
|
|
|
|
|
/// The snapshot in which this context was created. Using the context
|
|
|
|
|
/// outside of this snapshot leads to subtle bugs if the snapshot
|
|
|
|
|
/// gets rolled back. Because of this we explicitly check that we only
|
|
|
|
|
/// use the context in exactly this snapshot.
|
|
|
|
|
usable_in_snapshot: usize,
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
|
|
|
|
|
2024-02-23 11:25:57 +01:00
|
|
|
#[derive(Default)]
|
|
|
|
|
struct ObligationStorage<'tcx> {
|
|
|
|
|
/// Obligations which resulted in an overflow in fulfillment itself.
|
|
|
|
|
///
|
|
|
|
|
/// We cannot eagerly return these as error so we instead store them here
|
|
|
|
|
/// to avoid recomputing them each time `select_where_possible` is called.
|
|
|
|
|
/// This also allows us to return the correct `FulfillmentError` for them.
|
|
|
|
|
overflowed: Vec<PredicateObligation<'tcx>>,
|
|
|
|
|
pending: Vec<PredicateObligation<'tcx>>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'tcx> ObligationStorage<'tcx> {
|
|
|
|
|
fn register(&mut self, obligation: PredicateObligation<'tcx>) {
|
|
|
|
|
self.pending.push(obligation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn clone_pending(&self) -> Vec<PredicateObligation<'tcx>> {
|
|
|
|
|
let mut obligations = self.pending.clone();
|
|
|
|
|
obligations.extend(self.overflowed.iter().cloned());
|
|
|
|
|
obligations
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn take_pending(&mut self) -> Vec<PredicateObligation<'tcx>> {
|
|
|
|
|
let mut obligations = mem::take(&mut self.pending);
|
|
|
|
|
obligations.extend(self.overflowed.drain(..));
|
|
|
|
|
obligations
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn unstalled_for_select(&mut self) -> impl Iterator<Item = PredicateObligation<'tcx>> {
|
|
|
|
|
mem::take(&mut self.pending).into_iter()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn on_fulfillment_overflow(&mut self, infcx: &InferCtxt<'tcx>) {
|
|
|
|
|
infcx.probe(|_| {
|
|
|
|
|
// IMPORTANT: we must not use solve any inference variables in the obligations
|
|
|
|
|
// as this is all happening inside of a probe. We use a probe to make sure
|
|
|
|
|
// we get all obligations involved in the overflow. We pretty much check: if
|
|
|
|
|
// we were to do another step of `select_where_possible`, which goals would
|
|
|
|
|
// change.
|
|
|
|
|
self.overflowed.extend(self.pending.extract_if(|o| {
|
|
|
|
|
let goal = o.clone().into();
|
|
|
|
|
let result = infcx.evaluate_root_goal(goal, GenerateProofTree::Never).0;
|
|
|
|
|
match result {
|
|
|
|
|
Ok((has_changed, _)) => has_changed,
|
|
|
|
|
_ => false,
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 03:19:10 +00:00
|
|
|
impl<'tcx> FulfillmentCtxt<'tcx> {
|
2023-06-29 10:02:26 +02:00
|
|
|
pub fn new(infcx: &InferCtxt<'tcx>) -> FulfillmentCtxt<'tcx> {
|
2024-01-13 21:53:42 +00:00
|
|
|
assert!(
|
|
|
|
|
infcx.next_trait_solver(),
|
|
|
|
|
"new trait solver fulfillment context created when \
|
|
|
|
|
infcx is set up for old trait solver"
|
|
|
|
|
);
|
2024-02-23 11:25:57 +01:00
|
|
|
FulfillmentCtxt {
|
|
|
|
|
obligations: Default::default(),
|
|
|
|
|
usable_in_snapshot: infcx.num_open_snapshots(),
|
|
|
|
|
}
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
2023-11-21 20:37:36 +01:00
|
|
|
|
|
|
|
|
fn inspect_evaluated_obligation(
|
|
|
|
|
&self,
|
|
|
|
|
infcx: &InferCtxt<'tcx>,
|
|
|
|
|
obligation: &PredicateObligation<'tcx>,
|
2024-02-26 10:17:43 +01:00
|
|
|
result: &Result<(bool, Certainty), NoSolution>,
|
2023-11-21 20:37:36 +01:00
|
|
|
) {
|
|
|
|
|
if let Some(inspector) = infcx.obligation_inspector.get() {
|
|
|
|
|
let result = match result {
|
2024-02-26 10:17:43 +01:00
|
|
|
Ok((_, c)) => Ok(*c),
|
2023-11-21 20:37:36 +01:00
|
|
|
Err(NoSolution) => Err(NoSolution),
|
|
|
|
|
};
|
|
|
|
|
(inspector)(infcx, &obligation, result);
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'tcx> TraitEngine<'tcx> for FulfillmentCtxt<'tcx> {
|
2023-07-03 09:24:02 +02:00
|
|
|
#[instrument(level = "debug", skip(self, infcx))]
|
2022-12-04 03:19:10 +00:00
|
|
|
fn register_predicate_obligation(
|
|
|
|
|
&mut self,
|
2023-06-29 10:02:26 +02:00
|
|
|
infcx: &InferCtxt<'tcx>,
|
2022-12-04 03:19:10 +00:00
|
|
|
obligation: PredicateObligation<'tcx>,
|
|
|
|
|
) {
|
2023-06-29 10:02:26 +02:00
|
|
|
assert_eq!(self.usable_in_snapshot, infcx.num_open_snapshots());
|
2024-02-23 11:25:57 +01:00
|
|
|
self.obligations.register(obligation);
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
|
|
|
|
|
2023-04-09 04:29:43 +00:00
|
|
|
fn collect_remaining_errors(&mut self, infcx: &InferCtxt<'tcx>) -> Vec<FulfillmentError<'tcx>> {
|
2024-02-23 11:25:57 +01:00
|
|
|
let mut errors: Vec<_> = self
|
|
|
|
|
.obligations
|
|
|
|
|
.pending
|
2023-01-11 03:54:46 +00:00
|
|
|
.drain(..)
|
2024-02-23 10:35:43 +01:00
|
|
|
.map(|obligation| fulfillment_error_for_stalled(infcx, obligation))
|
2024-02-23 11:25:57 +01:00
|
|
|
.collect();
|
|
|
|
|
|
|
|
|
|
errors.extend(self.obligations.overflowed.drain(..).map(|obligation| FulfillmentError {
|
|
|
|
|
root_obligation: obligation.clone(),
|
|
|
|
|
code: FulfillmentErrorCode::Ambiguity { overflow: Some(true) },
|
|
|
|
|
obligation,
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
errors
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn select_where_possible(&mut self, infcx: &InferCtxt<'tcx>) -> Vec<FulfillmentError<'tcx>> {
|
2023-06-29 10:02:26 +02:00
|
|
|
assert_eq!(self.usable_in_snapshot, infcx.num_open_snapshots());
|
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) {
|
2024-02-23 11:25:57 +01:00
|
|
|
self.obligations.on_fulfillment_overflow(infcx);
|
|
|
|
|
// Only return true errors that we have accumulated while processing.
|
2024-02-20 02:13:28 +00:00
|
|
|
return errors;
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut has_changed = false;
|
2024-02-23 11:25:57 +01:00
|
|
|
for obligation in self.obligations.unstalled_for_select() {
|
2023-01-17 10:21:30 +01:00
|
|
|
let goal = obligation.clone().into();
|
2023-11-21 20:37:36 +01:00
|
|
|
let result = infcx.evaluate_root_goal(goal, GenerateProofTree::IfEnabled).0;
|
|
|
|
|
self.inspect_evaluated_obligation(infcx, &obligation, &result);
|
2024-02-26 10:17:43 +01:00
|
|
|
let (changed, certainty) = match result {
|
2023-11-21 20:37:36 +01:00
|
|
|
Ok(result) => result,
|
|
|
|
|
Err(NoSolution) => {
|
2024-02-23 10:35:43 +01:00
|
|
|
errors.push(fulfillment_error_for_no_solution(infcx, obligation));
|
2023-11-21 20:37:36 +01:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
};
|
2022-12-04 03:19:10 +00:00
|
|
|
has_changed |= changed;
|
|
|
|
|
match certainty {
|
|
|
|
|
Certainty::Yes => {}
|
2024-02-23 11:25:57 +01:00
|
|
|
Certainty::Maybe(_) => self.obligations.register(obligation),
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !has_changed {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
errors
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn pending_obligations(&self) -> Vec<PredicateObligation<'tcx>> {
|
2024-02-23 11:25:57 +01:00
|
|
|
self.obligations.clone_pending()
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
2022-10-01 15:57:22 +02:00
|
|
|
|
|
|
|
|
fn drain_unstalled_obligations(
|
|
|
|
|
&mut self,
|
|
|
|
|
_: &InferCtxt<'tcx>,
|
|
|
|
|
) -> Vec<PredicateObligation<'tcx>> {
|
2024-02-23 11:25:57 +01:00
|
|
|
self.obligations.take_pending()
|
2022-10-01 15:57:22 +02:00
|
|
|
}
|
2022-12-04 03:19:10 +00:00
|
|
|
}
|
2024-02-23 10:35:43 +01:00
|
|
|
|
|
|
|
|
fn fulfillment_error_for_no_solution<'tcx>(
|
|
|
|
|
infcx: &InferCtxt<'tcx>,
|
|
|
|
|
obligation: PredicateObligation<'tcx>,
|
|
|
|
|
) -> FulfillmentError<'tcx> {
|
|
|
|
|
let code = match obligation.predicate.kind().skip_binder() {
|
|
|
|
|
ty::PredicateKind::Clause(ty::ClauseKind::Projection(_)) => {
|
|
|
|
|
FulfillmentErrorCode::ProjectionError(
|
|
|
|
|
// FIXME: This could be a `Sorts` if the term is a type
|
|
|
|
|
MismatchedProjectionTypes { err: TypeError::Mismatch },
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::NormalizesTo(..) => {
|
|
|
|
|
FulfillmentErrorCode::ProjectionError(MismatchedProjectionTypes {
|
|
|
|
|
err: TypeError::Mismatch,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::AliasRelate(_, _, _) => {
|
|
|
|
|
FulfillmentErrorCode::ProjectionError(MismatchedProjectionTypes {
|
|
|
|
|
err: TypeError::Mismatch,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::Subtype(pred) => {
|
|
|
|
|
let (a, b) = infcx.enter_forall_and_leak_universe(
|
|
|
|
|
obligation.predicate.kind().rebind((pred.a, pred.b)),
|
|
|
|
|
);
|
|
|
|
|
let expected_found = ExpectedFound::new(true, a, b);
|
|
|
|
|
FulfillmentErrorCode::SubtypeError(expected_found, TypeError::Sorts(expected_found))
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::Coerce(pred) => {
|
|
|
|
|
let (a, b) = infcx.enter_forall_and_leak_universe(
|
|
|
|
|
obligation.predicate.kind().rebind((pred.a, pred.b)),
|
|
|
|
|
);
|
|
|
|
|
let expected_found = ExpectedFound::new(false, a, b);
|
|
|
|
|
FulfillmentErrorCode::SubtypeError(expected_found, TypeError::Sorts(expected_found))
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::Clause(_)
|
|
|
|
|
| ty::PredicateKind::ObjectSafe(_)
|
|
|
|
|
| ty::PredicateKind::Ambiguous => {
|
|
|
|
|
FulfillmentErrorCode::SelectionError(SelectionError::Unimplemented)
|
|
|
|
|
}
|
|
|
|
|
ty::PredicateKind::ConstEquate(..) => {
|
|
|
|
|
bug!("unexpected goal: {obligation:?}")
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
FulfillmentError { root_obligation: obligation.clone(), code, obligation }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn fulfillment_error_for_stalled<'tcx>(
|
|
|
|
|
infcx: &InferCtxt<'tcx>,
|
|
|
|
|
obligation: PredicateObligation<'tcx>,
|
|
|
|
|
) -> FulfillmentError<'tcx> {
|
|
|
|
|
let code = infcx.probe(|_| {
|
|
|
|
|
match infcx.evaluate_root_goal(obligation.clone().into(), GenerateProofTree::Never).0 {
|
|
|
|
|
Ok((_, Certainty::Maybe(MaybeCause::Ambiguity))) => {
|
|
|
|
|
FulfillmentErrorCode::Ambiguity { overflow: None }
|
|
|
|
|
}
|
|
|
|
|
Ok((_, Certainty::Maybe(MaybeCause::Overflow { suggest_increasing_limit }))) => {
|
|
|
|
|
FulfillmentErrorCode::Ambiguity { overflow: Some(suggest_increasing_limit) }
|
|
|
|
|
}
|
|
|
|
|
Ok((_, Certainty::Yes)) => {
|
|
|
|
|
bug!("did not expect successful goal when collecting ambiguity errors")
|
|
|
|
|
}
|
|
|
|
|
Err(_) => {
|
|
|
|
|
bug!("did not expect selection error when collecting ambiguity errors")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
FulfillmentError { obligation: obligation.clone(), code, root_obligation: obligation }
|
|
|
|
|
}
|