2023-11-21 21:24:51 +00:00
|
|
|
use crate::solve::FulfillmentCtxt;
|
2021-07-06 09:38:15 +00:00
|
|
|
use crate::traits::query::evaluate_obligation::InferCtxtExt as _;
|
2023-07-14 12:35:33 +00:00
|
|
|
use crate::traits::{self, DefiningAnchor, ObligationCtxt};
|
2020-02-22 10:44:18 +00:00
|
|
|
|
2021-07-06 09:38:15 +00:00
|
|
|
use rustc_hir::def_id::DefId;
|
2020-08-18 10:47:27 +00:00
|
|
|
use rustc_hir::lang_items::LangItem;
|
2023-11-21 21:24:51 +00:00
|
|
|
use rustc_infer::traits::{TraitEngine, TraitEngineExt};
|
2020-03-29 14:41:09 +00:00
|
|
|
use rustc_middle::arena::ArenaAllocatable;
|
2023-01-03 01:16:10 +00:00
|
|
|
use rustc_middle::infer::canonical::{Canonical, CanonicalQueryResponse, QueryResponse};
|
2023-05-25 17:29:22 +00:00
|
|
|
use rustc_middle::traits::query::NoSolution;
|
2023-02-22 02:18:40 +00:00
|
|
|
use rustc_middle::ty::{self, Ty, TyCtxt, TypeFoldable, TypeVisitableExt};
|
2022-11-21 12:24:53 +00:00
|
|
|
use rustc_middle::ty::{GenericArg, ToPredicate};
|
2023-03-14 13:19:06 +00:00
|
|
|
use rustc_span::DUMMY_SP;
|
2020-02-22 10:44:18 +00:00
|
|
|
|
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
pub use rustc_infer::infer::*;
|
|
|
|
|
|
|
|
pub trait InferCtxtExt<'tcx> {
|
2023-03-14 13:19:06 +00:00
|
|
|
fn type_is_copy_modulo_regions(&self, param_env: ty::ParamEnv<'tcx>, ty: Ty<'tcx>) -> bool;
|
2020-02-22 10:44:18 +00:00
|
|
|
|
2023-03-14 13:19:06 +00:00
|
|
|
fn type_is_sized_modulo_regions(&self, param_env: ty::ParamEnv<'tcx>, ty: Ty<'tcx>) -> bool;
|
2022-09-03 03:46:41 +00:00
|
|
|
|
2021-07-06 09:38:15 +00:00
|
|
|
/// Check whether a `ty` implements given trait(trait_def_id).
|
|
|
|
/// The inputs are:
|
|
|
|
///
|
|
|
|
/// - the def-id of the trait
|
2022-11-21 12:24:53 +00:00
|
|
|
/// - the type parameters of the trait, including the self-type
|
2021-07-06 09:38:15 +00:00
|
|
|
/// - the parameter environment
|
2021-08-25 15:39:35 +00:00
|
|
|
///
|
|
|
|
/// Invokes `evaluate_obligation`, so in the event that evaluating
|
2023-12-06 19:59:42 +00:00
|
|
|
/// `Ty: Trait` causes overflow, EvaluatedToErrStackDependent (or EvaluatedToAmbigStackDependent)
|
2021-08-25 15:39:35 +00:00
|
|
|
/// will be returned.
|
2021-07-06 09:38:15 +00:00
|
|
|
fn type_implements_trait(
|
|
|
|
&self,
|
|
|
|
trait_def_id: DefId,
|
2023-02-21 03:49:03 +00:00
|
|
|
params: impl IntoIterator<Item: Into<GenericArg<'tcx>>>,
|
2021-07-06 09:38:15 +00:00
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
|
|
) -> traits::EvaluationResult;
|
2023-11-21 21:24:51 +00:00
|
|
|
|
|
|
|
fn could_impl_trait(
|
|
|
|
&self,
|
|
|
|
trait_def_id: DefId,
|
|
|
|
ty: Ty<'tcx>,
|
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
|
|
) -> Option<Vec<traits::FulfillmentError<'tcx>>>;
|
2021-07-06 09:38:15 +00:00
|
|
|
}
|
2023-03-14 13:19:06 +00:00
|
|
|
|
2022-09-09 18:01:06 +00:00
|
|
|
impl<'tcx> InferCtxtExt<'tcx> for InferCtxt<'tcx> {
|
2023-03-14 13:19:06 +00:00
|
|
|
fn type_is_copy_modulo_regions(&self, param_env: ty::ParamEnv<'tcx>, ty: Ty<'tcx>) -> bool {
|
2020-10-24 00:21:18 +00:00
|
|
|
let ty = self.resolve_vars_if_possible(ty);
|
2020-02-22 10:44:18 +00:00
|
|
|
|
2023-04-27 07:34:11 +00:00
|
|
|
if !(param_env, ty).has_infer() {
|
2022-10-27 10:45:02 +00:00
|
|
|
return ty.is_copy_modulo_regions(self.tcx, param_env);
|
2020-02-22 10:44:18 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 10:47:27 +00:00
|
|
|
let copy_def_id = self.tcx.require_lang_item(LangItem::Copy, None);
|
2020-02-22 10:44:18 +00:00
|
|
|
|
|
|
|
// This can get called from typeck (by euv), and `moves_by_default`
|
|
|
|
// rightly refuses to work with inference variables, but
|
|
|
|
// moves_by_default has a cache, which we want to use in other
|
|
|
|
// cases.
|
2023-03-14 13:19:06 +00:00
|
|
|
traits::type_known_to_meet_bound_modulo_regions(self, param_env, ty, copy_def_id)
|
2020-02-22 10:44:18 +00:00
|
|
|
}
|
|
|
|
|
2023-03-14 13:19:06 +00:00
|
|
|
fn type_is_sized_modulo_regions(&self, param_env: ty::ParamEnv<'tcx>, ty: Ty<'tcx>) -> bool {
|
2022-09-03 03:46:41 +00:00
|
|
|
let lang_item = self.tcx.require_lang_item(LangItem::Sized, None);
|
2023-03-14 13:19:06 +00:00
|
|
|
traits::type_known_to_meet_bound_modulo_regions(self, param_env, ty, lang_item)
|
2022-09-03 03:46:41 +00:00
|
|
|
}
|
|
|
|
|
2022-11-21 12:24:53 +00:00
|
|
|
#[instrument(level = "debug", skip(self, params), ret)]
|
2021-07-06 09:38:15 +00:00
|
|
|
fn type_implements_trait(
|
|
|
|
&self,
|
|
|
|
trait_def_id: DefId,
|
2023-02-21 03:49:03 +00:00
|
|
|
params: impl IntoIterator<Item: Into<GenericArg<'tcx>>>,
|
2021-07-06 09:38:15 +00:00
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
|
|
) -> traits::EvaluationResult {
|
2023-04-25 16:07:48 +00:00
|
|
|
let trait_ref = ty::TraitRef::new(self.tcx, trait_def_id, params);
|
2022-11-17 10:22:44 +00:00
|
|
|
|
2021-07-06 09:38:15 +00:00
|
|
|
let obligation = traits::Obligation {
|
|
|
|
cause: traits::ObligationCause::dummy(),
|
|
|
|
param_env,
|
|
|
|
recursion_depth: 0,
|
2023-07-29 08:20:25 +00:00
|
|
|
predicate: ty::Binder::dummy(trait_ref).to_predicate(self.tcx),
|
2021-07-06 09:38:15 +00:00
|
|
|
};
|
2021-08-25 07:52:24 +00:00
|
|
|
self.evaluate_obligation(&obligation).unwrap_or(traits::EvaluationResult::EvaluatedToErr)
|
2021-07-06 09:38:15 +00:00
|
|
|
}
|
2023-11-21 21:24:51 +00:00
|
|
|
|
|
|
|
fn could_impl_trait(
|
|
|
|
&self,
|
|
|
|
trait_def_id: DefId,
|
|
|
|
ty: Ty<'tcx>,
|
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
|
|
) -> Option<Vec<traits::FulfillmentError<'tcx>>> {
|
|
|
|
self.probe(|_snapshot| {
|
|
|
|
if let ty::Adt(def, args) = ty.kind()
|
|
|
|
&& let Some((impl_def_id, _)) = self
|
|
|
|
.tcx
|
|
|
|
.all_impls(trait_def_id)
|
|
|
|
.filter_map(|impl_def_id| {
|
|
|
|
self.tcx.impl_trait_ref(impl_def_id).map(|r| (impl_def_id, r))
|
|
|
|
})
|
|
|
|
.map(|(impl_def_id, imp)| (impl_def_id, imp.skip_binder()))
|
2023-12-12 19:41:51 +00:00
|
|
|
.find(|(_, imp)| match imp.self_ty().peel_refs().kind() {
|
2023-11-21 21:24:51 +00:00
|
|
|
ty::Adt(i_def, _) if i_def.did() == def.did() => true,
|
|
|
|
_ => false,
|
|
|
|
})
|
|
|
|
{
|
|
|
|
let mut fulfill_cx = FulfillmentCtxt::new(self);
|
|
|
|
// We get all obligations from the impl to talk about specific
|
|
|
|
// trait bounds.
|
|
|
|
let obligations = self
|
|
|
|
.tcx
|
|
|
|
.predicates_of(impl_def_id)
|
|
|
|
.instantiate(self.tcx, args)
|
|
|
|
.into_iter()
|
|
|
|
.map(|(clause, span)| {
|
|
|
|
traits::Obligation::new(
|
|
|
|
self.tcx,
|
|
|
|
traits::ObligationCause::dummy_with_span(span),
|
|
|
|
param_env,
|
|
|
|
clause,
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
fulfill_cx.register_predicate_obligations(self, obligations);
|
|
|
|
let trait_ref = ty::TraitRef::new(self.tcx, trait_def_id, [ty]);
|
|
|
|
let obligation = traits::Obligation::new(
|
|
|
|
self.tcx,
|
|
|
|
traits::ObligationCause::dummy(),
|
|
|
|
param_env,
|
|
|
|
trait_ref,
|
|
|
|
);
|
|
|
|
fulfill_cx.register_predicate_obligation(self, obligation);
|
|
|
|
let mut errors = fulfill_cx.select_all_or_error(self);
|
|
|
|
// We remove the last predicate failure, which corresponds to
|
|
|
|
// the top-level obligation, because most of the type we only
|
|
|
|
// care about the other ones, *except* when it is the only one.
|
|
|
|
// This seems to only be relevant for arbitrary self-types.
|
|
|
|
// Look at `tests/ui/moves/move-fn-self-receiver.rs`.
|
|
|
|
if errors.len() > 1 {
|
|
|
|
errors.truncate(errors.len() - 1);
|
|
|
|
}
|
|
|
|
Some(errors)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-02-22 10:44:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait InferCtxtBuilderExt<'tcx> {
|
|
|
|
fn enter_canonical_trait_query<K, R>(
|
2023-07-14 12:35:33 +00:00
|
|
|
self,
|
2020-02-22 10:44:18 +00:00
|
|
|
canonical_key: &Canonical<'tcx, K>,
|
2023-05-25 17:29:22 +00:00
|
|
|
operation: impl FnOnce(&ObligationCtxt<'_, 'tcx>, K) -> Result<R, NoSolution>,
|
|
|
|
) -> Result<CanonicalQueryResponse<'tcx, R>, NoSolution>
|
2020-02-22 10:44:18 +00:00
|
|
|
where
|
2023-02-22 02:18:40 +00:00
|
|
|
K: TypeFoldable<TyCtxt<'tcx>>,
|
|
|
|
R: Debug + TypeFoldable<TyCtxt<'tcx>>,
|
2020-06-01 17:58:18 +00:00
|
|
|
Canonical<'tcx, QueryResponse<'tcx, R>>: ArenaAllocatable<'tcx>;
|
2020-02-22 10:44:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> InferCtxtBuilderExt<'tcx> for InferCtxtBuilder<'tcx> {
|
|
|
|
/// The "main method" for a canonicalized trait query. Given the
|
|
|
|
/// canonical key `canonical_key`, this method will create a new
|
|
|
|
/// inference context, instantiate the key, and run your operation
|
|
|
|
/// `op`. The operation should yield up a result (of type `R`) as
|
|
|
|
/// well as a set of trait obligations that must be fully
|
|
|
|
/// satisfied. These obligations will be processed and the
|
|
|
|
/// canonical result created.
|
|
|
|
///
|
|
|
|
/// Returns `NoSolution` in the event of any error.
|
|
|
|
///
|
|
|
|
/// (It might be mildly nicer to implement this on `TyCtxt`, and
|
|
|
|
/// not `InferCtxtBuilder`, but that is a bit tricky right now.
|
|
|
|
/// In part because we would need a `for<'tcx>` sort of
|
|
|
|
/// bound for the closure and in part because it is convenient to
|
|
|
|
/// have `'tcx` be free on this function so that we can talk about
|
2023-02-22 02:18:40 +00:00
|
|
|
/// `K: TypeFoldable<TyCtxt<'tcx>>`.)
|
2020-02-22 10:44:18 +00:00
|
|
|
fn enter_canonical_trait_query<K, R>(
|
2023-07-14 12:35:33 +00:00
|
|
|
self,
|
2020-02-22 10:44:18 +00:00
|
|
|
canonical_key: &Canonical<'tcx, K>,
|
2023-05-25 17:29:22 +00:00
|
|
|
operation: impl FnOnce(&ObligationCtxt<'_, 'tcx>, K) -> Result<R, NoSolution>,
|
|
|
|
) -> Result<CanonicalQueryResponse<'tcx, R>, NoSolution>
|
2020-02-22 10:44:18 +00:00
|
|
|
where
|
2023-02-22 02:18:40 +00:00
|
|
|
K: TypeFoldable<TyCtxt<'tcx>>,
|
|
|
|
R: Debug + TypeFoldable<TyCtxt<'tcx>>,
|
2020-06-01 17:58:18 +00:00
|
|
|
Canonical<'tcx, QueryResponse<'tcx, R>>: ArenaAllocatable<'tcx>,
|
2020-02-22 10:44:18 +00:00
|
|
|
{
|
2023-07-14 12:35:33 +00:00
|
|
|
let (infcx, key, canonical_inference_vars) = self
|
|
|
|
.with_opaque_type_inference(DefiningAnchor::Bubble)
|
|
|
|
.build_with_canonical(DUMMY_SP, canonical_key);
|
2022-10-26 18:00:18 +00:00
|
|
|
let ocx = ObligationCtxt::new(&infcx);
|
|
|
|
let value = operation(&ocx, key)?;
|
|
|
|
ocx.make_canonicalized_query_response(canonical_inference_vars, value)
|
2020-02-22 10:44:18 +00:00
|
|
|
}
|
|
|
|
}
|