Skip to content

Commit 736288f

Browse files
committed
dedup some code
1 parent f57e6fa commit 736288f

File tree

4 files changed

+30
-32
lines changed

4 files changed

+30
-32
lines changed

compiler/rustc_trait_selection/src/traits/engine.rs

+22-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ use std::cell::RefCell;
33
use super::TraitEngine;
44
use super::{ChalkFulfillmentContext, FulfillmentContext};
55
use crate::infer::InferCtxtExt;
6-
use rustc_hir::def_id::DefId;
6+
use rustc_data_structures::fx::FxHashSet;
7+
use rustc_hir::def_id::{DefId, LocalDefId};
78
use rustc_infer::infer::{InferCtxt, InferOk};
89
use rustc_infer::traits::{
910
FulfillmentError, Obligation, ObligationCause, PredicateObligation, TraitEngineExt as _,
@@ -12,6 +13,7 @@ use rustc_middle::ty::error::TypeError;
1213
use rustc_middle::ty::ToPredicate;
1314
use rustc_middle::ty::TypeFoldable;
1415
use rustc_middle::ty::{self, Ty, TyCtxt};
16+
use rustc_span::Span;
1517

1618
pub trait TraitEngineExt<'tcx> {
1719
fn new(tcx: TyCtxt<'tcx>) -> Box<Self>;
@@ -109,4 +111,23 @@ impl<'a, 'tcx> ObligationCtxt<'a, 'tcx> {
109111
pub fn select_all_or_error(&self) -> Vec<FulfillmentError<'tcx>> {
110112
self.engine.borrow_mut().select_all_or_error(self.infcx)
111113
}
114+
115+
pub fn assumed_wf_types(
116+
&self,
117+
param_env: ty::ParamEnv<'tcx>,
118+
span: Span,
119+
def_id: LocalDefId,
120+
) -> FxHashSet<Ty<'tcx>> {
121+
let tcx = self.infcx.tcx;
122+
let assumed_wf_types = tcx.assumed_wf_types(def_id);
123+
let mut implied_bounds = FxHashSet::default();
124+
let hir_id = tcx.hir().local_def_id_to_hir_id(def_id);
125+
let cause = ObligationCause::misc(span, hir_id);
126+
for ty in assumed_wf_types {
127+
implied_bounds.insert(ty);
128+
let normalized = self.normalize(cause.clone(), param_env, ty);
129+
implied_bounds.insert(normalized);
130+
}
131+
implied_bounds
132+
}
112133
}

compiler/rustc_typeck/src/check/compare_method.rs

+3-10
Original file line numberDiff line numberDiff line change
@@ -1454,15 +1454,8 @@ pub fn check_type_bounds<'tcx>(
14541454
tcx.infer_ctxt().enter(move |infcx| {
14551455
let ocx = ObligationCtxt::new(&infcx);
14561456

1457-
let assumed_wf_types = tcx.assumed_wf_types(impl_ty.def_id);
1458-
let mut implied_bounds = FxHashSet::default();
1459-
let cause = ObligationCause::misc(impl_ty_span, impl_ty_hir_id);
1460-
for ty in assumed_wf_types {
1461-
implied_bounds.insert(ty);
1462-
let normalized = ocx.normalize(cause.clone(), param_env, ty);
1463-
implied_bounds.insert(normalized);
1464-
}
1465-
let implied_bounds = implied_bounds;
1457+
let assumed_wf_types =
1458+
ocx.assumed_wf_types(param_env, impl_ty_span, impl_ty.def_id.expect_local());
14661459

14671460
let mut selcx = traits::SelectionContext::new(&infcx);
14681461
let normalize_cause = ObligationCause::new(
@@ -1521,7 +1514,7 @@ pub fn check_type_bounds<'tcx>(
15211514
// Finally, resolve all regions. This catches wily misuses of
15221515
// lifetime parameters.
15231516
let mut outlives_environment = OutlivesEnvironment::new(param_env);
1524-
outlives_environment.add_implied_bounds(&infcx, implied_bounds, impl_ty_hir_id);
1517+
outlives_environment.add_implied_bounds(&infcx, assumed_wf_types, impl_ty_hir_id);
15251518
infcx.check_region_obligations_and_report_errors(
15261519
impl_ty.def_id.expect_local(),
15271520
&outlives_environment,

compiler/rustc_typeck/src/check/wfcheck.rs

+2-10
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,7 @@ pub(super) fn enter_wf_checking_ctxt<'tcx, F>(
9090
tcx.infer_ctxt().enter(|ref infcx| {
9191
let ocx = ObligationCtxt::new(infcx);
9292

93-
let assumed_wf_types = tcx.assumed_wf_types(body_def_id);
94-
let mut implied_bounds = FxHashSet::default();
95-
let cause = ObligationCause::misc(span, body_id);
96-
for ty in assumed_wf_types {
97-
implied_bounds.insert(ty);
98-
let normalized = ocx.normalize(cause.clone(), param_env, ty);
99-
implied_bounds.insert(normalized);
100-
}
101-
let implied_bounds = implied_bounds;
93+
let assumed_wf_types = ocx.assumed_wf_types(param_env, span, body_def_id);
10294

10395
let mut wfcx = WfCheckingCtxt { ocx, span, body_id, param_env };
10496

@@ -113,7 +105,7 @@ pub(super) fn enter_wf_checking_ctxt<'tcx, F>(
113105
}
114106

115107
let mut outlives_environment = OutlivesEnvironment::new(param_env);
116-
outlives_environment.add_implied_bounds(infcx, implied_bounds, body_id);
108+
outlives_environment.add_implied_bounds(infcx, assumed_wf_types, body_id);
117109
infcx.check_region_obligations_and_report_errors(body_def_id, &outlives_environment);
118110
})
119111
}

compiler/rustc_typeck/src/impl_wf_check/min_specialization.rs

+3-11
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ use rustc_hir::def_id::{DefId, LocalDefId};
7474
use rustc_infer::infer::outlives::env::OutlivesEnvironment;
7575
use rustc_infer::infer::TyCtxtInferExt;
7676
use rustc_infer::traits::specialization_graph::Node;
77-
use rustc_infer::traits::ObligationCause;
7877
use rustc_middle::ty::subst::{GenericArg, InternalSubsts, SubstsRef};
7978
use rustc_middle::ty::trait_def::TraitSpecializationKind;
8079
use rustc_middle::ty::{self, TyCtxt, TypeVisitable};
@@ -145,15 +144,8 @@ fn get_impl_substs<'tcx>(
145144
let param_env = tcx.param_env(impl1_def_id);
146145
let impl1_hir_id = tcx.hir().local_def_id_to_hir_id(impl1_def_id);
147146

148-
let assumed_wf_types = tcx.assumed_wf_types(impl1_def_id);
149-
let mut implied_bounds = FxHashSet::default();
150-
let cause = ObligationCause::misc(tcx.def_span(impl1_def_id), impl1_hir_id);
151-
for ty in assumed_wf_types {
152-
implied_bounds.insert(ty);
153-
let normalized = ocx.normalize(cause.clone(), param_env, ty);
154-
implied_bounds.insert(normalized);
155-
}
156-
let implied_bounds = implied_bounds;
147+
let assumed_wf_types =
148+
ocx.assumed_wf_types(param_env, tcx.def_span(impl1_def_id), impl1_def_id);
157149

158150
let impl1_substs = InternalSubsts::identity_for_item(tcx, impl1_def_id.to_def_id());
159151
let impl2_substs =
@@ -166,7 +158,7 @@ fn get_impl_substs<'tcx>(
166158
}
167159

168160
let mut outlives_env = OutlivesEnvironment::new(param_env);
169-
outlives_env.add_implied_bounds(infcx, implied_bounds, impl1_hir_id);
161+
outlives_env.add_implied_bounds(infcx, assumed_wf_types, impl1_hir_id);
170162
infcx.check_region_obligations_and_report_errors(impl1_def_id, &outlives_env);
171163
let Ok(impl2_substs) = infcx.fully_resolve(impl2_substs) else {
172164
let span = tcx.def_span(impl1_def_id);

0 commit comments

Comments
 (0)