@@ -45,7 +45,9 @@ use self::free_regions::RegionRelations;
45
45
use self :: lexical_region_resolve:: LexicalRegionResolutions ;
46
46
use self :: outlives:: env:: OutlivesEnvironment ;
47
47
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
+ } ;
49
51
use self :: type_variable:: { TypeVariableOrigin , TypeVariableOriginKind } ;
50
52
51
53
pub mod at;
@@ -265,7 +267,7 @@ impl<'tcx> InferCtxtInner<'tcx> {
265
267
self . const_unification_storage . with_log ( & mut self . undo_log )
266
268
}
267
269
268
- pub fn unwrap_region_constraints ( & mut self ) -> RegionConstraintCollector < ' tcx , ' _ > {
270
+ pub fn unwrap_region_constraints ( & mut self ) -> RegionConstraintCollector < ' _ , ' tcx > {
269
271
self . region_constraint_storage
270
272
. as_mut ( )
271
273
. expect ( "region constraints already solved" )
@@ -706,6 +708,7 @@ impl<'tcx> InferOk<'tcx, ()> {
706
708
#[ must_use = "once you start a snapshot, you should always consume it" ]
707
709
pub struct CombinedSnapshot < ' a , ' tcx > {
708
710
undo_snapshot : Snapshot < ' tcx > ,
711
+ region_constraints_snapshot : RegionSnapshot ,
709
712
universe : ty:: UniverseIndex ,
710
713
was_in_snapshot : bool ,
711
714
_in_progress_tables : Option < Ref < ' a , ty:: TypeckTables < ' tcx > > > ,
@@ -827,6 +830,7 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
827
830
828
831
CombinedSnapshot {
829
832
undo_snapshot : inner. undo_log . start_snapshot ( ) ,
833
+ region_constraints_snapshot : inner. unwrap_region_constraints ( ) . start_snapshot ( ) ,
830
834
universe : self . universe ( ) ,
831
835
was_in_snapshot : in_snapshot,
832
836
// Borrow tables "in progress" (i.e., during typeck)
@@ -837,19 +841,31 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
837
841
838
842
fn rollback_to ( & self , cause : & str , snapshot : CombinedSnapshot < ' a , ' tcx > ) {
839
843
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;
842
851
843
852
self . in_snapshot . set ( was_in_snapshot) ;
844
853
self . universe . set ( universe) ;
845
854
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) ;
847
858
}
848
859
849
860
fn commit_from ( & self , snapshot : CombinedSnapshot < ' a , ' tcx > ) {
850
861
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;
853
869
854
870
self . in_snapshot . set ( was_in_snapshot) ;
855
871
0 commit comments