Skip to content

Commit b92a605

Browse files
committed
rename LocalState::Uninitialized to Unallocated
1 parent c84f39e commit b92a605

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

compiler/rustc_const_eval/src/interpret/eval_context.rs

+10-12
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,10 @@ pub struct LocalState<'tcx, Tag: Provenance = AllocId> {
177177
pub enum LocalValue<Tag: Provenance = AllocId> {
178178
/// This local is not currently alive, and cannot be used at all.
179179
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,
185184
/// A normal, live local.
186185
/// Mostly for convenience, we re-use the `Operand` type here.
187186
/// This is an optimization over just always having a pointer here;
@@ -198,7 +197,7 @@ impl<'tcx, Tag: Provenance + 'static> LocalState<'tcx, Tag> {
198197
pub fn access(&self) -> InterpResult<'tcx, Operand<Tag>> {
199198
match self.value {
200199
LocalValue::Dead => throw_ub!(DeadLocal),
201-
LocalValue::Uninitialized => {
200+
LocalValue::Unallocated => {
202201
bug!("The type checker should prevent reading from a never-written local")
203202
}
204203
LocalValue::Live(val) => Ok(val),
@@ -216,8 +215,7 @@ impl<'tcx, Tag: Provenance + 'static> LocalState<'tcx, Tag> {
216215
match self.value {
217216
LocalValue::Dead => throw_ub!(DeadLocal),
218217
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) => {
221219
Ok(Ok(local))
222220
}
223221
}
@@ -752,8 +750,8 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
752750
})?;
753751
}
754752

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) };
757755
let mut locals = IndexVec::from_elem(dummy, &body.local_decls);
758756

759757
// 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> {
921919
assert!(local != mir::RETURN_PLACE, "Cannot make return place live");
922920
trace!("{:?} is now live", local);
923921

924-
let local_val = LocalValue::Uninitialized;
922+
let local_val = LocalValue::Unallocated;
925923
// StorageLive expects the local to be dead, and marks it live.
926924
let old = mem::replace(&mut self.frame_mut().locals[local].value, local_val);
927925
if !matches!(old, LocalValue::Dead) {
@@ -1025,7 +1023,7 @@ impl<'a, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> std::fmt::Debug
10251023

10261024
match self.ecx.stack()[frame].locals[local].value {
10271025
LocalValue::Dead => write!(fmt, " is dead")?,
1028-
LocalValue::Uninitialized => write!(fmt, " is uninitialized")?,
1026+
LocalValue::Unallocated => write!(fmt, " is unallocated")?,
10291027
LocalValue::Live(Operand::Indirect(mplace)) => {
10301028
write!(
10311029
fmt,

compiler/rustc_mir_transform/src/const_prop.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@ impl<'mir, 'tcx> interpret::Machine<'mir, 'tcx> for ConstPropMachine<'mir, 'tcx>
244244
) -> InterpResult<'tcx, InterpOperand<Self::PointerTag>> {
245245
let l = &frame.locals[local];
246246

247-
if l.value == LocalValue::Uninitialized {
248-
throw_machine_stop_str!("tried to access an uninitialized local")
247+
if l.value == LocalValue::Unallocated {
248+
throw_machine_stop_str!("tried to access an unallocated local")
249249
}
250250

251251
l.access()
@@ -442,7 +442,7 @@ impl<'mir, 'tcx> ConstPropagator<'mir, 'tcx> {
442442
/// but not reading from them anymore.
443443
fn remove_const(ecx: &mut InterpCx<'mir, 'tcx, ConstPropMachine<'mir, 'tcx>>, local: Local) {
444444
ecx.frame_mut().locals[local] =
445-
LocalState { value: LocalValue::Uninitialized, layout: Cell::new(None) };
445+
LocalState { value: LocalValue::Unallocated, layout: Cell::new(None) };
446446
}
447447

448448
fn lint_root(&self, source_info: SourceInfo) -> Option<HirId> {
@@ -1147,7 +1147,7 @@ impl<'tcx> MutVisitor<'tcx> for ConstPropagator<'_, 'tcx> {
11471147
let frame = self.ecx.frame_mut();
11481148
frame.locals[local].value =
11491149
if let StatementKind::StorageLive(_) = statement.kind {
1150-
LocalValue::Uninitialized
1150+
LocalValue::Unallocated
11511151
} else {
11521152
LocalValue::Dead
11531153
};

0 commit comments

Comments
 (0)