@@ -1896,6 +1896,14 @@ impl<'tcx> Debug for Statement<'tcx> {
1896
1896
/// changing or disturbing program state.
1897
1897
#[ derive( Clone , PartialEq , Eq , PartialOrd , Ord , Hash , RustcEncodable , RustcDecodable ) ]
1898
1898
pub enum Place < ' tcx > {
1899
+ Base ( PlaceBase < ' tcx > ) ,
1900
+
1901
+ /// projection out of a place (access a field, deref a pointer, etc)
1902
+ Projection ( Box < PlaceProjection < ' tcx > > ) ,
1903
+ }
1904
+
1905
+ #[ derive( Clone , PartialEq , Eq , PartialOrd , Ord , Hash , RustcEncodable , RustcDecodable ) ]
1906
+ pub enum PlaceBase < ' tcx > {
1899
1907
/// local variable
1900
1908
Local ( Local ) ,
1901
1909
@@ -1904,9 +1912,6 @@ pub enum Place<'tcx> {
1904
1912
1905
1913
/// Constant code promoted to an injected static
1906
1914
Promoted ( Box < ( Promoted , Ty < ' tcx > ) > ) ,
1907
-
1908
- /// projection out of a place (access a field, deref a pointer, etc)
1909
- Projection ( Box < PlaceProjection < ' tcx > > ) ,
1910
1915
}
1911
1916
1912
1917
/// The `DefId` of a static, along with its normalized type (which is
@@ -1994,6 +1999,8 @@ newtype_index! {
1994
1999
}
1995
2000
1996
2001
impl < ' tcx > Place < ' tcx > {
2002
+ pub const RETURN_PLACE : Place < ' tcx > = Place :: Base ( PlaceBase :: Local ( RETURN_PLACE ) ) ;
2003
+
1997
2004
pub fn field ( self , f : Field , ty : Ty < ' tcx > ) -> Place < ' tcx > {
1998
2005
self . elem ( ProjectionElem :: Field ( f, ty) )
1999
2006
}
@@ -2020,9 +2027,9 @@ impl<'tcx> Place<'tcx> {
2020
2027
// FIXME: can we safely swap the semantics of `fn base_local` below in here instead?
2021
2028
pub fn local ( & self ) -> Option < Local > {
2022
2029
match self {
2023
- Place :: Local ( local) |
2030
+ Place :: Base ( PlaceBase :: Local ( local) ) |
2024
2031
Place :: Projection ( box Projection {
2025
- base : Place :: Local ( local) ,
2032
+ base : Place :: Base ( PlaceBase :: Local ( local) ) ,
2026
2033
elem : ProjectionElem :: Deref ,
2027
2034
} ) => Some ( * local) ,
2028
2035
_ => None ,
@@ -2032,9 +2039,9 @@ impl<'tcx> Place<'tcx> {
2032
2039
/// Finds the innermost `Local` from this `Place`.
2033
2040
pub fn base_local ( & self ) -> Option < Local > {
2034
2041
match self {
2035
- Place :: Local ( local) => Some ( * local) ,
2042
+ Place :: Base ( PlaceBase :: Local ( local) ) => Some ( * local) ,
2036
2043
Place :: Projection ( box Projection { base, elem : _ } ) => base. base_local ( ) ,
2037
- Place :: Promoted ( ..) | Place :: Static ( ..) => None ,
2044
+ Place :: Base ( PlaceBase :: Promoted ( ..) ) | Place :: Base ( PlaceBase :: Static ( ..) ) => None ,
2038
2045
}
2039
2046
}
2040
2047
}
@@ -2044,14 +2051,19 @@ impl<'tcx> Debug for Place<'tcx> {
2044
2051
use self :: Place :: * ;
2045
2052
2046
2053
match * self {
2047
- Local ( id) => write ! ( fmt, "{:?}" , id) ,
2048
- Static ( box self :: Static { def_id, ty } ) => write ! (
2054
+ Base ( PlaceBase :: Local ( id) ) => write ! ( fmt, "{:?}" , id) ,
2055
+ Base ( PlaceBase :: Static ( box self :: Static { def_id, ty } ) ) => write ! (
2049
2056
fmt,
2050
2057
"({}: {:?})" ,
2051
2058
ty:: tls:: with( |tcx| tcx. item_path_str( def_id) ) ,
2052
2059
ty
2053
2060
) ,
2054
- Promoted ( ref promoted) => write ! ( fmt, "({:?}: {:?})" , promoted. 0 , promoted. 1 ) ,
2061
+ Base ( PlaceBase :: Promoted ( ref promoted) ) => write ! (
2062
+ fmt,
2063
+ "({:?}: {:?})" ,
2064
+ promoted. 0 ,
2065
+ promoted. 1
2066
+ ) ,
2055
2067
Projection ( ref data) => match data. elem {
2056
2068
ProjectionElem :: Downcast ( ref adt_def, index) => {
2057
2069
write ! ( fmt, "({:?} as {})" , data. base, adt_def. variants[ index] . ident)
0 commit comments