Skip to content

Commit 193abb3

Browse files
committed
change writeback: ICEs as the regions have already been resolved
1 parent ac50f4b commit 193abb3

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

compiler/rustc_hir_typeck/src/writeback.rs

+16-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@ use rustc_errors::{ErrorGuaranteed, StashKey};
88
use rustc_hir as hir;
99
use rustc_hir::intravisit::{self, Visitor};
1010
use rustc_infer::infer::error_reporting::TypeAnnotationNeeded::E0282;
11+
use rustc_middle::traits::ObligationCause;
1112
use rustc_middle::ty::adjustment::{Adjust, Adjustment, PointerCoercion};
1213
use rustc_middle::ty::fold::{TypeFoldable, TypeFolder};
1314
use rustc_middle::ty::visit::TypeVisitableExt;
1415
use rustc_middle::ty::{self, Ty, TyCtxt};
1516
use rustc_span::symbol::sym;
1617
use rustc_span::Span;
18+
use rustc_trait_selection::solve;
19+
use rustc_trait_selection::traits::error_reporting::TypeErrCtxtExt;
1720

1821
use std::mem;
1922

@@ -778,14 +781,21 @@ impl<'cx, 'tcx> TypeFolder<TyCtxt<'tcx>> for Resolver<'cx, 'tcx> {
778781
fn fold_ty(&mut self, t: Ty<'tcx>) -> Ty<'tcx> {
779782
let tcx = self.fcx.tcx;
780783
match self.fcx.fully_resolve(t) {
781-
Ok(t) if self.fcx.next_trait_solver() => {
782-
// We must normalize erasing regions here, since later lints
784+
Ok(ty) if self.fcx.next_trait_solver() => {
785+
// We must deeply normalize here, since later lints
783786
// expect that types that show up in the typeck are fully
784787
// normalized.
785-
if let Ok(t) = tcx.try_normalize_erasing_regions(self.fcx.param_env, t) {
786-
t
787-
} else {
788-
tcx.fold_regions(t, |_, _| tcx.lifetimes.re_erased)
788+
789+
// FIXME(-Ztrait-solver=next): This is probably not
790+
// very performant.
791+
let body_id = tcx.hir().body_owner_def_id(self.body.id());
792+
let cause = ObligationCause::misc(self.span.to_span(tcx), body_id);
793+
match solve::deeply_normalize(self.fcx.at(&cause, self.fcx.param_env), ty) {
794+
Ok(ty) => tcx.fold_regions(ty, |_, _| tcx.lifetimes.re_erased),
795+
Err(errors) => {
796+
let guar = self.fcx.err_ctxt().report_fulfillment_errors(errors);
797+
Ty::new_error(tcx, guar)
798+
}
789799
}
790800
}
791801
Ok(t) => {

compiler/rustc_trait_selection/src/solve/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@ mod trait_goals;
4242

4343
pub use eval_ctxt::{EvalCtxt, GenerateProofTree, InferCtxtEvalExt, InferCtxtSelectExt};
4444
pub use fulfill::FulfillmentCtxt;
45+
pub use normalize::deeply_normalize;
4546
pub(crate) use normalize::{
46-
deeply_normalize, deeply_normalize_for_diagnostics, deeply_normalize_with_skipped_universes,
47+
deeply_normalize_for_diagnostics, deeply_normalize_with_skipped_universes,
4748
};
4849

4950
#[derive(Debug, Clone, Copy)]

compiler/rustc_trait_selection/src/solve/normalize.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use super::FulfillmentCtxt;
1717

1818
/// Deeply normalize all aliases in `value`. This does not handle inference and expects
1919
/// its input to be already fully resolved.
20-
pub(crate) fn deeply_normalize<'tcx, T: TypeFoldable<TyCtxt<'tcx>>>(
20+
pub fn deeply_normalize<'tcx, T: TypeFoldable<TyCtxt<'tcx>>>(
2121
at: At<'_, 'tcx>,
2222
value: T,
2323
) -> Result<T, Vec<FulfillmentError<'tcx>>> {

0 commit comments

Comments
 (0)