@@ -11,7 +11,7 @@ use rustc::mir::interpret::{
11
11
} ;
12
12
13
13
use super :: {
14
- OpTy , Machine , EvalContext , ValueVisitor ,
14
+ OpTy , Machine , EvalContext , ValueVisitor , MPlaceTy ,
15
15
} ;
16
16
17
17
macro_rules! validation_failure {
@@ -74,13 +74,13 @@ pub enum PathElem {
74
74
}
75
75
76
76
/// 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 > ) > ,
80
80
}
81
81
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 {
84
84
let mut ref_tracking = RefTracking {
85
85
seen : FxHashSet :: default ( ) ,
86
86
todo : vec ! [ ( op, Vec :: new( ) ) ] ,
@@ -151,7 +151,7 @@ struct ValidityVisitor<'rt, 'a: 'rt, 'mir: 'rt, 'tcx: 'a+'rt+'mir, M: Machine<'a
151
151
/// starts must not be changed! `visit_fields` and `visit_array` rely on
152
152
/// this stack discipline.
153
153
path : Vec < PathElem > ,
154
- ref_tracking : Option < & ' rt mut RefTracking < ' tcx , M :: PointerTag > > ,
154
+ ref_tracking : Option < & ' rt mut RefTracking < MPlaceTy < ' tcx , M :: PointerTag > > > ,
155
155
const_mode : bool ,
156
156
ecx : & ' rt EvalContext < ' a , ' mir , ' tcx , M > ,
157
157
}
@@ -399,16 +399,15 @@ impl<'rt, 'a, 'mir, 'tcx, M: Machine<'a, 'mir, 'tcx>>
399
399
// before. Proceed recursively even for integer pointers, no
400
400
// reason to skip them! They are (recursively) valid for some ZST,
401
401
// 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) ;
405
404
// We need to clone the path anyway, make sure it gets created
406
405
// with enough space for the additional `Deref`.
407
406
let mut new_path = Vec :: with_capacity ( self . path . len ( ) +1 ) ;
408
407
new_path. clone_from ( & self . path ) ;
409
408
new_path. push ( PathElem :: Deref ) ;
410
409
// Remember to come back to this later.
411
- ref_tracking. todo . push ( ( op , new_path) ) ;
410
+ ref_tracking. todo . push ( ( place , new_path) ) ;
412
411
}
413
412
}
414
413
}
@@ -598,7 +597,7 @@ impl<'a, 'mir, 'tcx, M: Machine<'a, 'mir, 'tcx>> EvalContext<'a, 'mir, 'tcx, M>
598
597
& self ,
599
598
op : OpTy < ' tcx , M :: PointerTag > ,
600
599
path : Vec < PathElem > ,
601
- ref_tracking : Option < & mut RefTracking < ' tcx , M :: PointerTag > > ,
600
+ ref_tracking : Option < & mut RefTracking < MPlaceTy < ' tcx , M :: PointerTag > > > ,
602
601
const_mode : bool ,
603
602
) -> EvalResult < ' tcx > {
604
603
trace ! ( "validate_operand: {:?}, {:?}" , * op, op. layout. ty) ;
0 commit comments