@@ -177,11 +177,10 @@ pub struct LocalState<'tcx, Tag: Provenance = AllocId> {
177
177
pub enum LocalValue < Tag : Provenance = AllocId > {
178
178
/// This local is not currently alive, and cannot be used at all.
179
179
Dead ,
180
- /// This local is alive but not yet initialized. It can be written to
181
- /// but not read from or its address taken. Locals get initialized on
182
- /// first write because for unsized locals, we do not know their size
183
- /// before that.
184
- Uninitialized ,
180
+ /// This local is alive but not yet allocated. It cannot be read from or have its address taken,
181
+ /// and will be allocated on the first write. This is to support unsized locals, where we cannot
182
+ /// know their size in advance.
183
+ Unallocated ,
185
184
/// A normal, live local.
186
185
/// Mostly for convenience, we re-use the `Operand` type here.
187
186
/// This is an optimization over just always having a pointer here;
@@ -198,7 +197,7 @@ impl<'tcx, Tag: Provenance + 'static> LocalState<'tcx, Tag> {
198
197
pub fn access ( & self ) -> InterpResult < ' tcx , Operand < Tag > > {
199
198
match self . value {
200
199
LocalValue :: Dead => throw_ub ! ( DeadLocal ) ,
201
- LocalValue :: Uninitialized => {
200
+ LocalValue :: Unallocated => {
202
201
bug ! ( "The type checker should prevent reading from a never-written local" )
203
202
}
204
203
LocalValue :: Live ( val) => Ok ( val) ,
@@ -216,8 +215,7 @@ impl<'tcx, Tag: Provenance + 'static> LocalState<'tcx, Tag> {
216
215
match self . value {
217
216
LocalValue :: Dead => throw_ub ! ( DeadLocal ) ,
218
217
LocalValue :: Live ( Operand :: Indirect ( mplace) ) => Ok ( Err ( mplace) ) ,
219
- ref mut
220
- local @ ( LocalValue :: Live ( Operand :: Immediate ( _) ) | LocalValue :: Uninitialized ) => {
218
+ ref mut local @ ( LocalValue :: Live ( Operand :: Immediate ( _) ) | LocalValue :: Unallocated ) => {
221
219
Ok ( Ok ( local) )
222
220
}
223
221
}
@@ -752,8 +750,8 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
752
750
} ) ?;
753
751
}
754
752
755
- // Locals are initially uninitialized .
756
- let dummy = LocalState { value : LocalValue :: Uninitialized , layout : Cell :: new ( None ) } ;
753
+ // Locals are initially unallocated .
754
+ let dummy = LocalState { value : LocalValue :: Unallocated , layout : Cell :: new ( None ) } ;
757
755
let mut locals = IndexVec :: from_elem ( dummy, & body. local_decls ) ;
758
756
759
757
// Now mark those locals as dead that we do not want to initialize
@@ -921,7 +919,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
921
919
assert ! ( local != mir:: RETURN_PLACE , "Cannot make return place live" ) ;
922
920
trace ! ( "{:?} is now live" , local) ;
923
921
924
- let local_val = LocalValue :: Uninitialized ;
922
+ let local_val = LocalValue :: Unallocated ;
925
923
// StorageLive expects the local to be dead, and marks it live.
926
924
let old = mem:: replace ( & mut self . frame_mut ( ) . locals [ local] . value , local_val) ;
927
925
if !matches ! ( old, LocalValue :: Dead ) {
@@ -1025,7 +1023,7 @@ impl<'a, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> std::fmt::Debug
1025
1023
1026
1024
match self . ecx . stack ( ) [ frame] . locals [ local] . value {
1027
1025
LocalValue :: Dead => write ! ( fmt, " is dead" ) ?,
1028
- LocalValue :: Uninitialized => write ! ( fmt, " is uninitialized " ) ?,
1026
+ LocalValue :: Unallocated => write ! ( fmt, " is unallocated " ) ?,
1029
1027
LocalValue :: Live ( Operand :: Indirect ( mplace) ) => {
1030
1028
write ! (
1031
1029
fmt,
0 commit comments