Skip to content

Commit 4045ce6

Browse files
committed
Auto merge of #98910 - Dylan-DPC:rollup-9x82wdg, r=Dylan-DPC
Rollup of 6 pull requests Successful merges: - #97300 (Implement `FusedIterator` for `std::net::[Into]Incoming`) - #98761 (more `need_type_info` improvements) - #98811 (Interpret: AllocRange Debug impl, and use it more consistently) - #98847 (fix interpreter validity check on Box) - #98854 (clean up the borrowing in rustc_hir_pretty) - #98873 (Suggest `#[derive(Default)]` to enums with `#[default]`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 880646c + 9a2274c commit 4045ce6

File tree

31 files changed

+574
-446
lines changed

31 files changed

+574
-446
lines changed

compiler/rustc_const_eval/src/interpret/memory.rs

+17-31
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
276276
kind: MemoryKind<M::MemoryKind>,
277277
) -> InterpResult<'tcx> {
278278
let (alloc_id, offset, tag) = self.ptr_get_alloc_id(ptr)?;
279-
trace!("deallocating: {}", alloc_id);
279+
trace!("deallocating: {alloc_id:?}");
280280

281281
if offset.bytes() != 0 {
282282
throw_ub_format!(
@@ -289,10 +289,10 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
289289
// Deallocating global memory -- always an error
290290
return Err(match self.tcx.get_global_alloc(alloc_id) {
291291
Some(GlobalAlloc::Function(..)) => {
292-
err_ub_format!("deallocating {}, which is a function", alloc_id)
292+
err_ub_format!("deallocating {alloc_id:?}, which is a function")
293293
}
294294
Some(GlobalAlloc::Static(..) | GlobalAlloc::Memory(..)) => {
295-
err_ub_format!("deallocating {}, which is static memory", alloc_id)
295+
err_ub_format!("deallocating {alloc_id:?}, which is static memory")
296296
}
297297
None => err_ub!(PointerUseAfterFree(alloc_id)),
298298
}
@@ -302,21 +302,17 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
302302
debug!(?alloc);
303303

304304
if alloc.mutability == Mutability::Not {
305-
throw_ub_format!("deallocating immutable allocation {}", alloc_id);
305+
throw_ub_format!("deallocating immutable allocation {alloc_id:?}");
306306
}
307307
if alloc_kind != kind {
308308
throw_ub_format!(
309-
"deallocating {}, which is {} memory, using {} deallocation operation",
310-
alloc_id,
311-
alloc_kind,
312-
kind
309+
"deallocating {alloc_id:?}, which is {alloc_kind} memory, using {kind} deallocation operation"
313310
);
314311
}
315312
if let Some((size, align)) = old_size_and_align {
316313
if size != alloc.size() || align != alloc.align {
317314
throw_ub_format!(
318-
"incorrect layout on deallocation: {} has size {} and alignment {}, but gave size {} and alignment {}",
319-
alloc_id,
315+
"incorrect layout on deallocation: {alloc_id:?} has size {} and alignment {}, but gave size {} and alignment {}",
320316
alloc.size().bytes(),
321317
alloc.align.bytes(),
322318
size.bytes(),
@@ -815,7 +811,7 @@ impl<'a, 'mir, 'tcx, M: Machine<'mir, 'tcx>> std::fmt::Debug for DumpAllocs<'a,
815811
continue;
816812
}
817813

818-
write!(fmt, "{}", id)?;
814+
write!(fmt, "{id:?}")?;
819815
match self.ecx.memory.alloc_map.get(id) {
820816
Some(&(kind, ref alloc)) => {
821817
// normal alloc
@@ -859,25 +855,21 @@ impl<'a, 'mir, 'tcx, M: Machine<'mir, 'tcx>> std::fmt::Debug for DumpAllocs<'a,
859855

860856
/// Reading and writing.
861857
impl<'tcx, 'a, Tag: Provenance, Extra> AllocRefMut<'a, 'tcx, Tag, Extra> {
858+
/// `range` is relative to this allocation reference, not the base of the allocation.
862859
pub fn write_scalar(
863860
&mut self,
864861
range: AllocRange,
865862
val: ScalarMaybeUninit<Tag>,
866863
) -> InterpResult<'tcx> {
867864
let range = self.range.subrange(range);
868-
debug!(
869-
"write_scalar in {} at {:#x}, size {}: {:?}",
870-
self.alloc_id,
871-
range.start.bytes(),
872-
range.size.bytes(),
873-
val
874-
);
865+
debug!("write_scalar at {:?}{range:?}: {val:?}", self.alloc_id);
875866
Ok(self
876867
.alloc
877868
.write_scalar(&self.tcx, range, val)
878869
.map_err(|e| e.to_interp_error(self.alloc_id))?)
879870
}
880871

872+
/// `offset` is relative to this allocation reference, not the base of the allocation.
881873
pub fn write_ptr_sized(
882874
&mut self,
883875
offset: Size,
@@ -896,6 +888,7 @@ impl<'tcx, 'a, Tag: Provenance, Extra> AllocRefMut<'a, 'tcx, Tag, Extra> {
896888
}
897889

898890
impl<'tcx, 'a, Tag: Provenance, Extra> AllocRef<'a, 'tcx, Tag, Extra> {
891+
/// `range` is relative to this allocation reference, not the base of the allocation.
899892
pub fn read_scalar(
900893
&self,
901894
range: AllocRange,
@@ -906,31 +899,24 @@ impl<'tcx, 'a, Tag: Provenance, Extra> AllocRef<'a, 'tcx, Tag, Extra> {
906899
.alloc
907900
.read_scalar(&self.tcx, range, read_provenance)
908901
.map_err(|e| e.to_interp_error(self.alloc_id))?;
909-
debug!(
910-
"read_scalar in {} at {:#x}, size {}: {:?}",
911-
self.alloc_id,
912-
range.start.bytes(),
913-
range.size.bytes(),
914-
res
915-
);
902+
debug!("read_scalar at {:?}{range:?}: {res:?}", self.alloc_id);
916903
Ok(res)
917904
}
918905

919-
pub fn read_integer(
920-
&self,
921-
offset: Size,
922-
size: Size,
923-
) -> InterpResult<'tcx, ScalarMaybeUninit<Tag>> {
924-
self.read_scalar(alloc_range(offset, size), /*read_provenance*/ false)
906+
/// `range` is relative to this allocation reference, not the base of the allocation.
907+
pub fn read_integer(&self, range: AllocRange) -> InterpResult<'tcx, ScalarMaybeUninit<Tag>> {
908+
self.read_scalar(range, /*read_provenance*/ false)
925909
}
926910

911+
/// `offset` is relative to this allocation reference, not the base of the allocation.
927912
pub fn read_pointer(&self, offset: Size) -> InterpResult<'tcx, ScalarMaybeUninit<Tag>> {
928913
self.read_scalar(
929914
alloc_range(offset, self.tcx.data_layout().pointer_size),
930915
/*read_provenance*/ true,
931916
)
932917
}
933918

919+
/// `range` is relative to this allocation reference, not the base of the allocation.
934920
pub fn check_bytes(
935921
&self,
936922
range: AllocRange,

compiler/rustc_const_eval/src/interpret/traits.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use std::convert::TryFrom;
22

3-
use rustc_middle::mir::interpret::{InterpResult, Pointer, PointerArithmetic};
3+
use rustc_middle::mir::interpret::{alloc_range, InterpResult, Pointer, PointerArithmetic};
44
use rustc_middle::ty::{
55
self, Ty, TyCtxt, COMMON_VTABLE_ENTRIES_ALIGN, COMMON_VTABLE_ENTRIES_DROPINPLACE,
66
COMMON_VTABLE_ENTRIES_SIZE,
@@ -102,18 +102,18 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
102102
)?
103103
.expect("cannot be a ZST");
104104
let size = vtable
105-
.read_integer(
105+
.read_integer(alloc_range(
106106
pointer_size * u64::try_from(COMMON_VTABLE_ENTRIES_SIZE).unwrap(),
107107
pointer_size,
108-
)?
108+
))?
109109
.check_init()?;
110110
let size = size.to_machine_usize(self)?;
111111
let size = Size::from_bytes(size);
112112
let align = vtable
113-
.read_integer(
113+
.read_integer(alloc_range(
114114
pointer_size * u64::try_from(COMMON_VTABLE_ENTRIES_ALIGN).unwrap(),
115115
pointer_size,
116-
)?
116+
))?
117117
.check_init()?;
118118
let align = align.to_machine_usize(self)?;
119119
let align = Align::from_bytes(align).map_err(|e| err_ub!(InvalidVtableAlignment(e)))?;

compiler/rustc_const_eval/src/interpret/validity.rs

+6-12
Original file line numberDiff line numberDiff line change
@@ -593,16 +593,6 @@ impl<'rt, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> ValidityVisitor<'rt, 'mir, '
593593
self.check_safe_pointer(value, "reference")?;
594594
Ok(true)
595595
}
596-
ty::Adt(def, ..) if def.is_box() => {
597-
let unique = self.ecx.operand_field(value, 0)?;
598-
let nonnull = self.ecx.operand_field(&unique, 0)?;
599-
let ptr = self.ecx.operand_field(&nonnull, 0)?;
600-
self.check_safe_pointer(&ptr, "box")?;
601-
602-
// Check other fields of Box
603-
self.walk_value(value)?;
604-
Ok(true)
605-
}
606596
ty::FnPtr(_sig) => {
607597
let value = try_validation!(
608598
self.ecx.read_scalar(value).and_then(|v| v.check_init()),
@@ -813,6 +803,12 @@ impl<'rt, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> ValueVisitor<'mir, 'tcx, M>
813803
Ok(())
814804
}
815805

806+
#[inline]
807+
fn visit_box(&mut self, op: &OpTy<'tcx, M::PointerTag>) -> InterpResult<'tcx> {
808+
self.check_safe_pointer(op, "box")?;
809+
Ok(())
810+
}
811+
816812
#[inline]
817813
fn visit_value(&mut self, op: &OpTy<'tcx, M::PointerTag>) -> InterpResult<'tcx> {
818814
trace!("visit_value: {:?}, {:?}", *op, op.layout);
@@ -821,8 +817,6 @@ impl<'rt, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> ValueVisitor<'mir, 'tcx, M>
821817
if self.try_visit_primitive(op)? {
822818
return Ok(());
823819
}
824-
// Sanity check: `builtin_deref` does not know any pointers that are not primitive.
825-
assert!(op.layout.ty.builtin_deref(true).is_none());
826820

827821
// Special check preventing `UnsafeCell` in the inner part of constants
828822
if let Some(def) = op.layout.ty.ty_adt_def() {

compiler/rustc_const_eval/src/interpret/visitor.rs

+49
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,14 @@ macro_rules! make_value_visitor {
151151
{
152152
Ok(())
153153
}
154+
/// Visits the given value as the pointer of a `Box`. There is nothing to recurse into.
155+
/// The type of `v` will be a raw pointer, but this is a field of `Box<T>` and the
156+
/// pointee type is the actual `T`.
157+
#[inline(always)]
158+
fn visit_box(&mut self, _v: &Self::V) -> InterpResult<'tcx>
159+
{
160+
Ok(())
161+
}
154162
/// Visits this value as an aggregate, you are getting an iterator yielding
155163
/// all the fields (still in an `InterpResult`, you have to do error handling yourself).
156164
/// Recurses into the fields.
@@ -221,6 +229,47 @@ macro_rules! make_value_visitor {
221229
// Slices do not need special handling here: they have `Array` field
222230
// placement with length 0, so we enter the `Array` case below which
223231
// indirectly uses the metadata to determine the actual length.
232+
233+
// However, `Box`... let's talk about `Box`.
234+
ty::Adt(def, ..) if def.is_box() => {
235+
// `Box` is a hybrid primitive-library-defined type that one the one hand is
236+
// a dereferenceable pointer, on the other hand has *basically arbitrary
237+
// user-defined layout* since the user controls the 'allocator' field. So it
238+
// cannot be treated like a normal pointer, since it does not fit into an
239+
// `Immediate`. Yeah, it is quite terrible. But many visitors want to do
240+
// something with "all boxed pointers", so we handle this mess for them.
241+
//
242+
// When we hit a `Box`, we do not do the usual `visit_aggregate`; instead,
243+
// we (a) call `visit_box` on the pointer value, and (b) recurse on the
244+
// allocator field. We also assert tons of things to ensure we do not miss
245+
// any other fields.
246+
247+
// `Box` has two fields: the pointer we care about, and the allocator.
248+
assert_eq!(v.layout().fields.count(), 2, "`Box` must have exactly 2 fields");
249+
let (unique_ptr, alloc) =
250+
(v.project_field(self.ecx(), 0)?, v.project_field(self.ecx(), 1)?);
251+
// Unfortunately there is some type junk in the way here: `unique_ptr` is a `Unique`...
252+
// (which means another 2 fields, the second of which is a `PhantomData`)
253+
assert_eq!(unique_ptr.layout().fields.count(), 2);
254+
let (nonnull_ptr, phantom) = (
255+
unique_ptr.project_field(self.ecx(), 0)?,
256+
unique_ptr.project_field(self.ecx(), 1)?,
257+
);
258+
assert!(
259+
phantom.layout().ty.ty_adt_def().is_some_and(|adt| adt.is_phantom_data()),
260+
"2nd field of `Unique` should be PhantomData but is {:?}",
261+
phantom.layout().ty,
262+
);
263+
// ... that contains a `NonNull`... (gladly, only a single field here)
264+
assert_eq!(nonnull_ptr.layout().fields.count(), 1);
265+
let raw_ptr = nonnull_ptr.project_field(self.ecx(), 0)?; // the actual raw ptr
266+
// ... whose only field finally is a raw ptr we can dereference.
267+
self.visit_box(&raw_ptr)?;
268+
269+
// The second `Box` field is the allocator, which we recursively check for validity
270+
// like in regular structs.
271+
self.visit_field(v, 1, &alloc)?;
272+
}
224273
_ => {},
225274
};
226275

compiler/rustc_const_eval/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Rust MIR: a lowered representation of Rust.
2121
#![feature(trusted_step)]
2222
#![feature(try_blocks)]
2323
#![feature(yeet_expr)]
24+
#![feature(is_some_with)]
2425
#![recursion_limit = "256"]
2526
#![allow(rustc::potential_query_instability)]
2627

0 commit comments

Comments
 (0)