Skip to content

Commit 3f85338

Browse files
author
Markus Westerlind
committed
Restore the snapshot/rollback optimization for region constraints
1 parent f7f6245 commit 3f85338

File tree

3 files changed

+29
-13
lines changed

3 files changed

+29
-13
lines changed

src/librustc_infer/infer/mod.rs

+23-7
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ use self::free_regions::RegionRelations;
4545
use self::lexical_region_resolve::LexicalRegionResolutions;
4646
use self::outlives::env::OutlivesEnvironment;
4747
use self::region_constraints::{GenericKind, RegionConstraintData, VarInfos, VerifyBound};
48-
use self::region_constraints::{RegionConstraintCollector, RegionConstraintStorage};
48+
use self::region_constraints::{
49+
RegionConstraintCollector, RegionConstraintStorage, RegionSnapshot,
50+
};
4951
use self::type_variable::{TypeVariableOrigin, TypeVariableOriginKind};
5052

5153
pub mod at;
@@ -265,7 +267,7 @@ impl<'tcx> InferCtxtInner<'tcx> {
265267
self.const_unification_storage.with_log(&mut self.undo_log)
266268
}
267269

268-
pub fn unwrap_region_constraints(&mut self) -> RegionConstraintCollector<'tcx, '_> {
270+
pub fn unwrap_region_constraints(&mut self) -> RegionConstraintCollector<'_, 'tcx> {
269271
self.region_constraint_storage
270272
.as_mut()
271273
.expect("region constraints already solved")
@@ -706,6 +708,7 @@ impl<'tcx> InferOk<'tcx, ()> {
706708
#[must_use = "once you start a snapshot, you should always consume it"]
707709
pub struct CombinedSnapshot<'a, 'tcx> {
708710
undo_snapshot: Snapshot<'tcx>,
711+
region_constraints_snapshot: RegionSnapshot,
709712
universe: ty::UniverseIndex,
710713
was_in_snapshot: bool,
711714
_in_progress_tables: Option<Ref<'a, ty::TypeckTables<'tcx>>>,
@@ -827,6 +830,7 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
827830

828831
CombinedSnapshot {
829832
undo_snapshot: inner.undo_log.start_snapshot(),
833+
region_constraints_snapshot: inner.unwrap_region_constraints().start_snapshot(),
830834
universe: self.universe(),
831835
was_in_snapshot: in_snapshot,
832836
// Borrow tables "in progress" (i.e., during typeck)
@@ -837,19 +841,31 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
837841

838842
fn rollback_to(&self, cause: &str, snapshot: CombinedSnapshot<'a, 'tcx>) {
839843
debug!("rollback_to(cause={})", cause);
840-
let CombinedSnapshot { undo_snapshot, universe, was_in_snapshot, _in_progress_tables } =
841-
snapshot;
844+
let CombinedSnapshot {
845+
undo_snapshot,
846+
region_constraints_snapshot,
847+
universe,
848+
was_in_snapshot,
849+
_in_progress_tables,
850+
} = snapshot;
842851

843852
self.in_snapshot.set(was_in_snapshot);
844853
self.universe.set(universe);
845854

846-
self.inner.borrow_mut().rollback_to(undo_snapshot);
855+
let mut inner = self.inner.borrow_mut();
856+
inner.rollback_to(undo_snapshot);
857+
inner.unwrap_region_constraints().rollback_to(region_constraints_snapshot);
847858
}
848859

849860
fn commit_from(&self, snapshot: CombinedSnapshot<'a, 'tcx>) {
850861
debug!("commit_from()");
851-
let CombinedSnapshot { undo_snapshot, universe: _, was_in_snapshot, _in_progress_tables } =
852-
snapshot;
862+
let CombinedSnapshot {
863+
undo_snapshot,
864+
region_constraints_snapshot: _,
865+
universe: _,
866+
was_in_snapshot,
867+
_in_progress_tables,
868+
} = snapshot;
853869

854870
self.in_snapshot.set(was_in_snapshot);
855871

src/librustc_infer/infer/region_constraints/leak_check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use rustc_data_structures::undo_log::UndoLogs;
44
use rustc_middle::ty::error::TypeError;
55
use rustc_middle::ty::relate::RelateResult;
66

7-
impl<'tcx> RegionConstraintCollector<'tcx, '_> {
7+
impl<'tcx> RegionConstraintCollector<'_, 'tcx> {
88
/// Searches region constraints created since `snapshot` that
99
/// affect one of the placeholders in `placeholder_map`, returning
1010
/// an error if any of the placeholders are related to another

src/librustc_infer/infer/region_constraints/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ pub struct RegionConstraintStorage<'tcx> {
6161
any_unifications: bool,
6262
}
6363

64-
pub struct RegionConstraintCollector<'tcx, 'a> {
64+
pub struct RegionConstraintCollector<'a, 'tcx> {
6565
storage: &'a mut RegionConstraintStorage<'tcx>,
6666
undo_log: &'a mut InferCtxtUndoLogs<'tcx>,
6767
}
6868

69-
impl std::ops::Deref for RegionConstraintCollector<'tcx, '_> {
69+
impl std::ops::Deref for RegionConstraintCollector<'_, 'tcx> {
7070
type Target = RegionConstraintStorage<'tcx>;
7171
fn deref(&self) -> &RegionConstraintStorage<'tcx> {
7272
self.storage
7373
}
7474
}
7575

76-
impl std::ops::DerefMut for RegionConstraintCollector<'tcx, '_> {
76+
impl std::ops::DerefMut for RegionConstraintCollector<'_, 'tcx> {
7777
fn deref_mut(&mut self) -> &mut RegionConstraintStorage<'tcx> {
7878
self.storage
7979
}
@@ -348,7 +348,7 @@ impl<'tcx> RegionConstraintStorage<'tcx> {
348348
pub(crate) fn with_log<'a>(
349349
&'a mut self,
350350
undo_log: &'a mut InferCtxtUndoLogs<'tcx>,
351-
) -> RegionConstraintCollector<'tcx, 'a> {
351+
) -> RegionConstraintCollector<'a, 'tcx> {
352352
RegionConstraintCollector { storage: self, undo_log }
353353
}
354354

@@ -381,7 +381,7 @@ impl<'tcx> RegionConstraintStorage<'tcx> {
381381
}
382382
}
383383

384-
impl<'tcx> RegionConstraintCollector<'tcx, '_> {
384+
impl<'tcx> RegionConstraintCollector<'_, 'tcx> {
385385
pub fn num_region_vars(&self) -> usize {
386386
self.var_infos.len()
387387
}

0 commit comments

Comments
 (0)