Skip to content

Commit 5669ce1

Browse files
committed
change FnMutDelegate to trait objects
1 parent 294f0ee commit 5669ce1

File tree

3 files changed

+20
-23
lines changed

3 files changed

+20
-23
lines changed

Diff for: compiler/rustc_infer/src/infer/canonical/substitute.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,16 @@ where
7272
value
7373
} else {
7474
let delegate = FnMutDelegate {
75-
regions: |br: ty::BoundRegion| match var_values.var_values[br.var].unpack() {
75+
regions: &mut |br: ty::BoundRegion| match var_values.var_values[br.var].unpack() {
7676
GenericArgKind::Lifetime(l) => l,
7777
r => bug!("{:?} is a region but value is {:?}", br, r),
7878
},
79-
types: |bound_ty: ty::BoundTy| match var_values.var_values[bound_ty.var].unpack() {
79+
types: &mut |bound_ty: ty::BoundTy| match var_values.var_values[bound_ty.var].unpack() {
8080
GenericArgKind::Type(ty) => ty,
8181
r => bug!("{:?} is a type but value is {:?}", bound_ty, r),
8282
},
83-
consts: |bound_ct: ty::BoundVar, _| match var_values.var_values[bound_ct].unpack() {
83+
consts: &mut |bound_ct: ty::BoundVar, _| match var_values.var_values[bound_ct].unpack()
84+
{
8485
GenericArgKind::Const(ct) => ct,
8586
c => bug!("{:?} is a const but value is {:?}", bound_ct, c),
8687
},

Diff for: compiler/rustc_infer/src/infer/higher_ranked/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -81,19 +81,19 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
8181
let next_universe = self.create_next_universe();
8282

8383
let delegate = FnMutDelegate {
84-
regions: |br: ty::BoundRegion| {
84+
regions: &mut |br: ty::BoundRegion| {
8585
self.tcx.mk_region(ty::RePlaceholder(ty::PlaceholderRegion {
8686
universe: next_universe,
8787
name: br.kind,
8888
}))
8989
},
90-
types: |bound_ty: ty::BoundTy| {
90+
types: &mut |bound_ty: ty::BoundTy| {
9191
self.tcx.mk_ty(ty::Placeholder(ty::PlaceholderType {
9292
universe: next_universe,
9393
name: bound_ty.var,
9494
}))
9595
},
96-
consts: |bound_var: ty::BoundVar, ty| {
96+
consts: &mut |bound_var: ty::BoundVar, ty| {
9797
self.tcx.mk_const(ty::ConstS {
9898
kind: ty::ConstKind::Placeholder(ty::PlaceholderConst {
9999
universe: next_universe,

Diff for: compiler/rustc_middle/src/ty/fold.rs

+13-17
Original file line numberDiff line numberDiff line change
@@ -377,17 +377,13 @@ pub trait BoundVarReplacerDelegate<'tcx> {
377377
fn replace_const(&mut self, bv: ty::BoundVar, ty: Ty<'tcx>) -> ty::Const<'tcx>;
378378
}
379379

380-
pub struct FnMutDelegate<R, T, C> {
381-
pub regions: R,
382-
pub types: T,
383-
pub consts: C,
380+
pub struct FnMutDelegate<'a, 'tcx> {
381+
pub regions: &'a mut (dyn FnMut(ty::BoundRegion) -> ty::Region<'tcx> + 'a),
382+
pub types: &'a mut (dyn FnMut(ty::BoundTy) -> Ty<'tcx> + 'a),
383+
pub consts: &'a mut (dyn FnMut(ty::BoundVar, Ty<'tcx>) -> ty::Const<'tcx> + 'a),
384384
}
385-
impl<'tcx, R, T, C> BoundVarReplacerDelegate<'tcx> for FnMutDelegate<R, T, C>
386-
where
387-
R: FnMut(ty::BoundRegion) -> ty::Region<'tcx>,
388-
T: FnMut(ty::BoundTy) -> Ty<'tcx>,
389-
C: FnMut(ty::BoundVar, Ty<'tcx>) -> ty::Const<'tcx>,
390-
{
385+
386+
impl<'a, 'tcx> BoundVarReplacerDelegate<'tcx> for FnMutDelegate<'a, 'tcx> {
391387
fn replace_region(&mut self, br: ty::BoundRegion) -> ty::Region<'tcx> {
392388
(self.regions)(br)
393389
}
@@ -511,7 +507,7 @@ impl<'tcx> TyCtxt<'tcx> {
511507
pub fn replace_late_bound_regions_uncached<T, F>(
512508
self,
513509
value: Binder<'tcx, T>,
514-
replace_regions: F,
510+
mut replace_regions: F,
515511
) -> T
516512
where
517513
F: FnMut(ty::BoundRegion) -> ty::Region<'tcx>,
@@ -522,9 +518,9 @@ impl<'tcx> TyCtxt<'tcx> {
522518
value
523519
} else {
524520
let delegate = FnMutDelegate {
525-
regions: replace_regions,
526-
types: |b| bug!("unexpected bound ty in binder: {b:?}"),
527-
consts: |b, ty| bug!("unexpected bound ct in binder: {b:?} {ty}"),
521+
regions: &mut replace_regions,
522+
types: &mut |b| bug!("unexpected bound ty in binder: {b:?}"),
523+
consts: &mut |b, ty| bug!("unexpected bound ct in binder: {b:?} {ty}"),
528524
};
529525
let mut replacer = BoundVarReplacer::new(self, delegate);
530526
value.fold_with(&mut replacer)
@@ -584,19 +580,19 @@ impl<'tcx> TyCtxt<'tcx> {
584580
self.replace_escaping_bound_vars_uncached(
585581
value,
586582
FnMutDelegate {
587-
regions: |r: ty::BoundRegion| {
583+
regions: &mut |r: ty::BoundRegion| {
588584
self.mk_region(ty::ReLateBound(
589585
ty::INNERMOST,
590586
ty::BoundRegion { var: shift_bv(r.var), kind: r.kind },
591587
))
592588
},
593-
types: |t: ty::BoundTy| {
589+
types: &mut |t: ty::BoundTy| {
594590
self.mk_ty(ty::Bound(
595591
ty::INNERMOST,
596592
ty::BoundTy { var: shift_bv(t.var), kind: t.kind },
597593
))
598594
},
599-
consts: |c, ty: Ty<'tcx>| {
595+
consts: &mut |c, ty: Ty<'tcx>| {
600596
self.mk_const(ty::ConstS {
601597
kind: ty::ConstKind::Bound(ty::INNERMOST, shift_bv(c)),
602598
ty,

0 commit comments

Comments
 (0)