@@ -1155,6 +1155,11 @@ pub enum PredicateAtom<'tcx> {
1155
1155
1156
1156
/// Constants must be equal. The first component is the const that is expected.
1157
1157
ConstEquate ( & ' tcx Const < ' tcx > , & ' tcx Const < ' tcx > ) ,
1158
+
1159
+ /// Represents a type found in the environment that we can use for implied bounds.
1160
+ ///
1161
+ /// Only used for Chalk.
1162
+ TypeWellFormedFromEnv ( Ty < ' tcx > ) ,
1158
1163
}
1159
1164
1160
1165
impl < ' tcx > PredicateAtom < ' tcx > {
@@ -1450,7 +1455,8 @@ impl<'tcx> Predicate<'tcx> {
1450
1455
| PredicateAtom :: ClosureKind ( ..)
1451
1456
| PredicateAtom :: TypeOutlives ( ..)
1452
1457
| PredicateAtom :: ConstEvaluatable ( ..)
1453
- | PredicateAtom :: ConstEquate ( ..) => None ,
1458
+ | PredicateAtom :: ConstEquate ( ..)
1459
+ | PredicateAtom :: TypeWellFormedFromEnv ( ..) => None ,
1454
1460
}
1455
1461
}
1456
1462
@@ -1465,7 +1471,8 @@ impl<'tcx> Predicate<'tcx> {
1465
1471
| PredicateAtom :: ObjectSafe ( ..)
1466
1472
| PredicateAtom :: ClosureKind ( ..)
1467
1473
| PredicateAtom :: ConstEvaluatable ( ..)
1468
- | PredicateAtom :: ConstEquate ( ..) => None ,
1474
+ | PredicateAtom :: ConstEquate ( ..)
1475
+ | PredicateAtom :: TypeWellFormedFromEnv ( ..) => None ,
1469
1476
}
1470
1477
}
1471
1478
}
@@ -1738,11 +1745,6 @@ pub struct ParamEnv<'tcx> {
1738
1745
///
1739
1746
/// Note: This is packed, use the reveal() method to access it.
1740
1747
packed : CopyTaggedPtr < & ' tcx List < Predicate < ' tcx > > , traits:: Reveal , true > ,
1741
-
1742
- /// If this `ParamEnv` comes from a call to `tcx.param_env(def_id)`,
1743
- /// register that `def_id` (useful for transitioning to the chalk trait
1744
- /// solver).
1745
- pub def_id : Option < DefId > ,
1746
1748
}
1747
1749
1748
1750
unsafe impl rustc_data_structures:: tagged_ptr:: Tag for traits:: Reveal {
@@ -1767,7 +1769,6 @@ impl<'tcx> fmt::Debug for ParamEnv<'tcx> {
1767
1769
f. debug_struct ( "ParamEnv" )
1768
1770
. field ( "caller_bounds" , & self . caller_bounds ( ) )
1769
1771
. field ( "reveal" , & self . reveal ( ) )
1770
- . field ( "def_id" , & self . def_id )
1771
1772
. finish ( )
1772
1773
}
1773
1774
}
@@ -1776,23 +1777,16 @@ impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for ParamEnv<'tcx> {
1776
1777
fn hash_stable ( & self , hcx : & mut StableHashingContext < ' a > , hasher : & mut StableHasher ) {
1777
1778
self . caller_bounds ( ) . hash_stable ( hcx, hasher) ;
1778
1779
self . reveal ( ) . hash_stable ( hcx, hasher) ;
1779
- self . def_id . hash_stable ( hcx, hasher) ;
1780
1780
}
1781
1781
}
1782
1782
1783
1783
impl < ' tcx > TypeFoldable < ' tcx > for ParamEnv < ' tcx > {
1784
1784
fn super_fold_with < F : ty:: fold:: TypeFolder < ' tcx > > ( & self , folder : & mut F ) -> Self {
1785
- ParamEnv :: new (
1786
- self . caller_bounds ( ) . fold_with ( folder) ,
1787
- self . reveal ( ) . fold_with ( folder) ,
1788
- self . def_id . fold_with ( folder) ,
1789
- )
1785
+ ParamEnv :: new ( self . caller_bounds ( ) . fold_with ( folder) , self . reveal ( ) . fold_with ( folder) )
1790
1786
}
1791
1787
1792
1788
fn super_visit_with < V : TypeVisitor < ' tcx > > ( & self , visitor : & mut V ) -> bool {
1793
- self . caller_bounds ( ) . visit_with ( visitor)
1794
- || self . reveal ( ) . visit_with ( visitor)
1795
- || self . def_id . visit_with ( visitor)
1789
+ self . caller_bounds ( ) . visit_with ( visitor) || self . reveal ( ) . visit_with ( visitor)
1796
1790
}
1797
1791
}
1798
1792
@@ -1803,7 +1797,7 @@ impl<'tcx> ParamEnv<'tcx> {
1803
1797
/// type-checking.
1804
1798
#[ inline]
1805
1799
pub fn empty ( ) -> Self {
1806
- Self :: new ( List :: empty ( ) , Reveal :: UserFacing , None )
1800
+ Self :: new ( List :: empty ( ) , Reveal :: UserFacing )
1807
1801
}
1808
1802
1809
1803
#[ inline]
@@ -1825,17 +1819,13 @@ impl<'tcx> ParamEnv<'tcx> {
1825
1819
/// or invoke `param_env.with_reveal_all()`.
1826
1820
#[ inline]
1827
1821
pub fn reveal_all ( ) -> Self {
1828
- Self :: new ( List :: empty ( ) , Reveal :: All , None )
1822
+ Self :: new ( List :: empty ( ) , Reveal :: All )
1829
1823
}
1830
1824
1831
1825
/// Construct a trait environment with the given set of predicates.
1832
1826
#[ inline]
1833
- pub fn new (
1834
- caller_bounds : & ' tcx List < Predicate < ' tcx > > ,
1835
- reveal : Reveal ,
1836
- def_id : Option < DefId > ,
1837
- ) -> Self {
1838
- ty:: ParamEnv { packed : CopyTaggedPtr :: new ( caller_bounds, reveal) , def_id }
1827
+ pub fn new ( caller_bounds : & ' tcx List < Predicate < ' tcx > > , reveal : Reveal ) -> Self {
1828
+ ty:: ParamEnv { packed : CopyTaggedPtr :: new ( caller_bounds, reveal) }
1839
1829
}
1840
1830
1841
1831
pub fn with_user_facing ( mut self ) -> Self {
@@ -1857,12 +1847,12 @@ impl<'tcx> ParamEnv<'tcx> {
1857
1847
return self ;
1858
1848
}
1859
1849
1860
- ParamEnv :: new ( tcx. normalize_opaque_types ( self . caller_bounds ( ) ) , Reveal :: All , self . def_id )
1850
+ ParamEnv :: new ( tcx. normalize_opaque_types ( self . caller_bounds ( ) ) , Reveal :: All )
1861
1851
}
1862
1852
1863
1853
/// Returns this same environment but with no caller bounds.
1864
1854
pub fn without_caller_bounds ( self ) -> Self {
1865
- Self :: new ( List :: empty ( ) , self . reveal ( ) , self . def_id )
1855
+ Self :: new ( List :: empty ( ) , self . reveal ( ) )
1866
1856
}
1867
1857
1868
1858
/// Creates a suitable environment in which to perform trait
0 commit comments