Skip to content

Commit 525983a

Browse files
committed
Make validity checking use MPlaceTy instead of OpTy
1 parent bee3c67 commit 525983a

File tree

3 files changed

+17
-20
lines changed

3 files changed

+17
-20
lines changed

src/librustc_mir/const_eval.rs

+5-7
Original file line numberDiff line numberDiff line change
@@ -523,13 +523,11 @@ fn validate_and_turn_into_const<'a, 'tcx>(
523523
let cid = key.value;
524524
let ecx = mk_eval_cx(tcx, tcx.def_span(key.value.instance.def_id()), key.param_env);
525525
let val = (|| {
526-
let op = ecx.raw_const_to_mplace(constant)?.into();
527-
// FIXME: Once the visitor infrastructure landed, change validation to
528-
// work directly on `MPlaceTy`.
529-
let mut ref_tracking = RefTracking::new(op);
530-
while let Some((op, path)) = ref_tracking.todo.pop() {
526+
let mplace = ecx.raw_const_to_mplace(constant)?;
527+
let mut ref_tracking = RefTracking::new(mplace);
528+
while let Some((mplace, path)) = ref_tracking.todo.pop() {
531529
ecx.validate_operand(
532-
op,
530+
mplace.into(),
533531
path,
534532
Some(&mut ref_tracking),
535533
true, // const mode
@@ -538,7 +536,7 @@ fn validate_and_turn_into_const<'a, 'tcx>(
538536
// Now that we validated, turn this into a proper constant.
539537
let def_id = cid.instance.def.def_id();
540538
let normalize = tcx.is_static(def_id).is_none() && cid.promoted.is_none();
541-
op_to_const(&ecx, op, normalize)
539+
op_to_const(&ecx, mplace.into(), normalize)
542540
})();
543541

544542
val.map_err(|error| {

src/librustc_mir/interpret/place.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ impl<'tcx, Tag> ::std::ops::Deref for PlaceTy<'tcx, Tag> {
5858
}
5959

6060
/// A MemPlace with its layout. Constructing it is only possible in this module.
61-
#[derive(Copy, Clone, Debug)]
61+
#[derive(Copy, Clone, Debug, Hash, Eq, PartialEq)]
6262
pub struct MPlaceTy<'tcx, Tag=()> {
6363
mplace: MemPlace<Tag>,
6464
pub layout: TyLayout<'tcx>,

src/librustc_mir/interpret/validity.rs

+11-12
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use rustc::mir::interpret::{
1111
};
1212

1313
use super::{
14-
OpTy, Machine, EvalContext, ValueVisitor,
14+
OpTy, Machine, EvalContext, ValueVisitor, MPlaceTy,
1515
};
1616

1717
macro_rules! validation_failure {
@@ -74,13 +74,13 @@ pub enum PathElem {
7474
}
7575

7676
/// State for tracking recursive validation of references
77-
pub struct RefTracking<'tcx, Tag> {
78-
pub seen: FxHashSet<(OpTy<'tcx, Tag>)>,
79-
pub todo: Vec<(OpTy<'tcx, Tag>, Vec<PathElem>)>,
77+
pub struct RefTracking<T> {
78+
pub seen: FxHashSet<T>,
79+
pub todo: Vec<(T, Vec<PathElem>)>,
8080
}
8181

82-
impl<'tcx, Tag: Copy+Eq+Hash> RefTracking<'tcx, Tag> {
83-
pub fn new(op: OpTy<'tcx, Tag>) -> Self {
82+
impl<'tcx, T: Copy + Eq + Hash> RefTracking<T> {
83+
pub fn new(op: T) -> Self {
8484
let mut ref_tracking = RefTracking {
8585
seen: FxHashSet::default(),
8686
todo: vec![(op, Vec::new())],
@@ -151,7 +151,7 @@ struct ValidityVisitor<'rt, 'a: 'rt, 'mir: 'rt, 'tcx: 'a+'rt+'mir, M: Machine<'a
151151
/// starts must not be changed! `visit_fields` and `visit_array` rely on
152152
/// this stack discipline.
153153
path: Vec<PathElem>,
154-
ref_tracking: Option<&'rt mut RefTracking<'tcx, M::PointerTag>>,
154+
ref_tracking: Option<&'rt mut RefTracking<MPlaceTy<'tcx, M::PointerTag>>>,
155155
const_mode: bool,
156156
ecx: &'rt EvalContext<'a, 'mir, 'tcx, M>,
157157
}
@@ -399,16 +399,15 @@ impl<'rt, 'a, 'mir, 'tcx, M: Machine<'a, 'mir, 'tcx>>
399399
// before. Proceed recursively even for integer pointers, no
400400
// reason to skip them! They are (recursively) valid for some ZST,
401401
// but not for others (e.g., `!` is a ZST).
402-
let op = place.into();
403-
if ref_tracking.seen.insert(op) {
404-
trace!("Recursing below ptr {:#?}", *op);
402+
if ref_tracking.seen.insert(place) {
403+
trace!("Recursing below ptr {:#?}", *place);
405404
// We need to clone the path anyway, make sure it gets created
406405
// with enough space for the additional `Deref`.
407406
let mut new_path = Vec::with_capacity(self.path.len()+1);
408407
new_path.clone_from(&self.path);
409408
new_path.push(PathElem::Deref);
410409
// Remember to come back to this later.
411-
ref_tracking.todo.push((op, new_path));
410+
ref_tracking.todo.push((place, new_path));
412411
}
413412
}
414413
}
@@ -598,7 +597,7 @@ impl<'a, 'mir, 'tcx, M: Machine<'a, 'mir, 'tcx>> EvalContext<'a, 'mir, 'tcx, M>
598597
&self,
599598
op: OpTy<'tcx, M::PointerTag>,
600599
path: Vec<PathElem>,
601-
ref_tracking: Option<&mut RefTracking<'tcx, M::PointerTag>>,
600+
ref_tracking: Option<&mut RefTracking<MPlaceTy<'tcx, M::PointerTag>>>,
602601
const_mode: bool,
603602
) -> EvalResult<'tcx> {
604603
trace!("validate_operand: {:?}, {:?}", *op, op.layout.ty);

0 commit comments

Comments
 (0)