@@ -4,7 +4,6 @@ pub use lexical_region_resolve::RegionResolutionError;
4
4
pub use relate:: combine:: CombineFields ;
5
5
pub use relate:: combine:: ObligationEmittingRelation ;
6
6
pub use relate:: StructurallyRelateAliases ;
7
- pub use rustc_middle:: ty:: IntVarValue ;
8
7
pub use BoundRegionConversionTime :: * ;
9
8
pub use RegionVariableOrigin :: * ;
10
9
pub use SubregionOrigin :: * ;
@@ -28,9 +27,9 @@ use rustc_data_structures::unify as ut;
28
27
use rustc_errors:: { Diag , DiagCtxt , ErrorGuaranteed } ;
29
28
use rustc_hir:: def_id:: { DefId , LocalDefId } ;
30
29
use rustc_middle:: infer:: canonical:: { Canonical , CanonicalVarValues } ;
30
+ use rustc_middle:: infer:: unify_key:: ConstVariableOrigin ;
31
31
use rustc_middle:: infer:: unify_key:: ConstVariableValue ;
32
32
use rustc_middle:: infer:: unify_key:: EffectVarValue ;
33
- use rustc_middle:: infer:: unify_key:: { ConstVariableOrigin , ToType } ;
34
33
use rustc_middle:: infer:: unify_key:: { ConstVidKey , EffectVidKey } ;
35
34
use rustc_middle:: mir:: interpret:: { ErrorHandled , EvalToValTreeResult } ;
36
35
use rustc_middle:: mir:: ConstraintCategory ;
@@ -799,13 +798,13 @@ impl<'tcx> InferCtxt<'tcx> {
799
798
vars. extend (
800
799
( 0 ..inner. int_unification_table ( ) . len ( ) )
801
800
. map ( |i| ty:: IntVid :: from_u32 ( i as u32 ) )
802
- . filter ( |& vid| inner. int_unification_table ( ) . probe_value ( vid) . is_none ( ) )
801
+ . filter ( |& vid| inner. int_unification_table ( ) . probe_value ( vid) . is_unknown ( ) )
803
802
. map ( |v| Ty :: new_int_var ( self . tcx , v) ) ,
804
803
) ;
805
804
vars. extend (
806
805
( 0 ..inner. float_unification_table ( ) . len ( ) )
807
806
. map ( |i| ty:: FloatVid :: from_u32 ( i as u32 ) )
808
- . filter ( |& vid| inner. float_unification_table ( ) . probe_value ( vid) . is_none ( ) )
807
+ . filter ( |& vid| inner. float_unification_table ( ) . probe_value ( vid) . is_unknown ( ) )
809
808
. map ( |v| Ty :: new_float_var ( self . tcx , v) ) ,
810
809
) ;
811
810
vars
@@ -1041,15 +1040,15 @@ impl<'tcx> InferCtxt<'tcx> {
1041
1040
}
1042
1041
1043
1042
fn next_int_var_id ( & self ) -> IntVid {
1044
- self . inner . borrow_mut ( ) . int_unification_table ( ) . new_key ( None )
1043
+ self . inner . borrow_mut ( ) . int_unification_table ( ) . new_key ( ty :: IntVarValue :: Unknown )
1045
1044
}
1046
1045
1047
1046
pub fn next_int_var ( & self ) -> Ty < ' tcx > {
1048
1047
Ty :: new_int_var ( self . tcx , self . next_int_var_id ( ) )
1049
1048
}
1050
1049
1051
1050
fn next_float_var_id ( & self ) -> FloatVid {
1052
- self . inner . borrow_mut ( ) . float_unification_table ( ) . new_key ( None )
1051
+ self . inner . borrow_mut ( ) . float_unification_table ( ) . new_key ( ty :: FloatVarValue :: Unknown )
1053
1052
}
1054
1053
1055
1054
pub fn next_float_var ( & self ) -> Ty < ' tcx > {
@@ -1279,19 +1278,18 @@ impl<'tcx> InferCtxt<'tcx> {
1279
1278
known. map ( |t| self . shallow_resolve ( t) )
1280
1279
}
1281
1280
1282
- ty:: IntVar ( v) => self
1283
- . inner
1284
- . borrow_mut ( )
1285
- . int_unification_table ( )
1286
- . probe_value ( v)
1287
- . map ( |v| v. to_type ( self . tcx ) ) ,
1281
+ ty:: IntVar ( v) => match self . inner . borrow_mut ( ) . int_unification_table ( ) . probe_value ( v) {
1282
+ ty:: IntVarValue :: Unknown => None ,
1283
+ ty:: IntVarValue :: IntType ( ty) => Some ( Ty :: new_int ( self . tcx , ty) ) ,
1284
+ ty:: IntVarValue :: UintType ( ty) => Some ( Ty :: new_uint ( self . tcx , ty) ) ,
1285
+ } ,
1288
1286
1289
- ty:: FloatVar ( v) => self
1290
- . inner
1291
- . borrow_mut ( )
1292
- . float_unification_table ( )
1293
- . probe_value ( v )
1294
- . map ( |v| v . to_type ( self . tcx ) ) ,
1287
+ ty:: FloatVar ( v) => {
1288
+ match self . inner . borrow_mut ( ) . float_unification_table ( ) . probe_value ( v ) {
1289
+ ty :: FloatVarValue :: Unknown => None ,
1290
+ ty :: FloatVarValue :: Known ( ty ) => Some ( Ty :: new_float ( self . tcx , ty ) ) ,
1291
+ }
1292
+ }
1295
1293
1296
1294
ty:: FreshTy ( _) | ty:: FreshIntTy ( _) | ty:: FreshFloatTy ( _) => None ,
1297
1295
}
@@ -1342,21 +1340,26 @@ impl<'tcx> InferCtxt<'tcx> {
1342
1340
/// or else the root int var in the unification table.
1343
1341
pub fn opportunistic_resolve_int_var ( & self , vid : ty:: IntVid ) -> Ty < ' tcx > {
1344
1342
let mut inner = self . inner . borrow_mut ( ) ;
1345
- if let Some ( value) = inner. int_unification_table ( ) . probe_value ( vid) {
1346
- value. to_type ( self . tcx )
1347
- } else {
1348
- Ty :: new_int_var ( self . tcx , inner. int_unification_table ( ) . find ( vid) )
1343
+ let value = inner. int_unification_table ( ) . probe_value ( vid) ;
1344
+ match value {
1345
+ ty:: IntVarValue :: IntType ( ty) => Ty :: new_int ( self . tcx , ty) ,
1346
+ ty:: IntVarValue :: UintType ( ty) => Ty :: new_uint ( self . tcx , ty) ,
1347
+ ty:: IntVarValue :: Unknown => {
1348
+ Ty :: new_int_var ( self . tcx , inner. int_unification_table ( ) . find ( vid) )
1349
+ }
1349
1350
}
1350
1351
}
1351
1352
1352
1353
/// Resolves a float var to a rigid int type, if it was constrained to one,
1353
1354
/// or else the root float var in the unification table.
1354
1355
pub fn opportunistic_resolve_float_var ( & self , vid : ty:: FloatVid ) -> Ty < ' tcx > {
1355
1356
let mut inner = self . inner . borrow_mut ( ) ;
1356
- if let Some ( value) = inner. float_unification_table ( ) . probe_value ( vid) {
1357
- value. to_type ( self . tcx )
1358
- } else {
1359
- Ty :: new_float_var ( self . tcx , inner. float_unification_table ( ) . find ( vid) )
1357
+ let value = inner. float_unification_table ( ) . probe_value ( vid) ;
1358
+ match value {
1359
+ ty:: FloatVarValue :: Known ( ty) => Ty :: new_float ( self . tcx , ty) ,
1360
+ ty:: FloatVarValue :: Unknown => {
1361
+ Ty :: new_float_var ( self . tcx , inner. float_unification_table ( ) . find ( vid) )
1362
+ }
1360
1363
}
1361
1364
}
1362
1365
@@ -1667,15 +1670,15 @@ impl<'tcx> InferCtxt<'tcx> {
1667
1670
// If `inlined_probe_value` returns a value it's always a
1668
1671
// `ty::Int(_)` or `ty::UInt(_)`, which never matches a
1669
1672
// `ty::Infer(_)`.
1670
- self . inner . borrow_mut ( ) . int_unification_table ( ) . inlined_probe_value ( v) . is_some ( )
1673
+ ! self . inner . borrow_mut ( ) . int_unification_table ( ) . inlined_probe_value ( v) . is_unknown ( )
1671
1674
}
1672
1675
1673
1676
TyOrConstInferVar :: TyFloat ( v) => {
1674
1677
// If `probe_value` returns a value it's always a
1675
1678
// `ty::Float(_)`, which never matches a `ty::Infer(_)`.
1676
1679
//
1677
1680
// Not `inlined_probe_value(v)` because this call site is colder.
1678
- self . inner . borrow_mut ( ) . float_unification_table ( ) . probe_value ( v) . is_some ( )
1681
+ ! self . inner . borrow_mut ( ) . float_unification_table ( ) . probe_value ( v) . is_unknown ( )
1679
1682
}
1680
1683
1681
1684
TyOrConstInferVar :: Const ( v) => {
0 commit comments