2018-06-27 08:42:00 -05:00
|
|
|
use rustc::ty::query::Providers;
|
2018-02-25 09:58:54 -06:00
|
|
|
use rustc::ty::{ParamEnvAnd, TyCtxt};
|
2020-01-04 19:37:57 -06:00
|
|
|
use rustc_hir as hir;
|
2020-01-06 16:28:45 -06:00
|
|
|
use rustc_infer::infer::canonical::{Canonical, QueryResponse};
|
|
|
|
use rustc_infer::infer::TyCtxtInferExt;
|
|
|
|
use rustc_infer::traits::query::{
|
|
|
|
normalize::NormalizationResult, CanonicalProjectionGoal, NoSolution,
|
|
|
|
};
|
|
|
|
use rustc_infer::traits::{self, ObligationCause, SelectionContext, TraitEngineExt};
|
2019-12-31 11:15:40 -06:00
|
|
|
use rustc_span::DUMMY_SP;
|
2018-06-27 05:47:55 -05:00
|
|
|
use std::sync::atomic::Ordering;
|
2018-02-25 09:58:54 -06:00
|
|
|
|
2019-02-06 19:17:48 -06:00
|
|
|
crate fn provide(p: &mut Providers<'_>) {
|
2019-12-22 16:42:04 -06:00
|
|
|
*p = Providers { normalize_projection_ty, ..*p };
|
2018-06-27 08:42:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn normalize_projection_ty<'tcx>(
|
2019-06-13 16:48:52 -05:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2018-02-25 09:58:54 -06:00
|
|
|
goal: CanonicalProjectionGoal<'tcx>,
|
2018-11-30 16:37:18 -06:00
|
|
|
) -> Result<&'tcx Canonical<'tcx, QueryResponse<'tcx, NormalizationResult<'tcx>>>, NoSolution> {
|
2018-02-25 09:58:54 -06:00
|
|
|
debug!("normalize_provider(goal={:#?})", goal);
|
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
tcx.sess.perf_stats.normalize_projection_ty.fetch_add(1, Ordering::Relaxed);
|
2018-06-27 05:47:55 -05:00
|
|
|
tcx.infer_ctxt().enter_canonical_trait_query(
|
|
|
|
&goal,
|
2019-12-22 16:42:04 -06:00
|
|
|
|infcx, fulfill_cx, ParamEnvAnd { param_env, value: goal }| {
|
2018-06-27 05:47:55 -05:00
|
|
|
let selcx = &mut SelectionContext::new(infcx);
|
2019-02-04 13:01:14 -06:00
|
|
|
let cause = ObligationCause::misc(DUMMY_SP, hir::DUMMY_HIR_ID);
|
2018-06-27 05:47:55 -05:00
|
|
|
let mut obligations = vec![];
|
|
|
|
let answer = traits::normalize_projection_type(
|
|
|
|
selcx,
|
2018-02-25 09:58:54 -06:00
|
|
|
param_env,
|
2018-06-27 05:47:55 -05:00
|
|
|
goal,
|
|
|
|
cause,
|
|
|
|
0,
|
|
|
|
&mut obligations,
|
|
|
|
);
|
2018-06-27 15:04:32 -05:00
|
|
|
fulfill_cx.register_predicate_obligations(infcx, obligations);
|
2019-12-22 16:42:04 -06:00
|
|
|
Ok(NormalizationResult { normalized_ty: answer })
|
2018-06-27 05:47:55 -05:00
|
|
|
},
|
|
|
|
)
|
2018-02-25 09:58:54 -06:00
|
|
|
}
|