@@ -17,8 +17,8 @@ use rustc_hir as hir;
17
17
use rustc_middle:: bug;
18
18
use rustc_middle:: mir:: interpret:: ValidationErrorKind :: { self , * } ;
19
19
use rustc_middle:: mir:: interpret:: {
20
- ExpectedKind , InterpError , InvalidMetaKind , Misalignment , PointerKind , Provenance ,
21
- UnsupportedOpInfo , ValidationErrorInfo , alloc_range,
20
+ ExpectedKind , InterpError , InterpErrorInfo , InvalidMetaKind , Misalignment , PointerKind ,
21
+ Provenance , UnsupportedOpInfo , ValidationErrorInfo , alloc_range,
22
22
} ;
23
23
use rustc_middle:: ty:: layout:: { LayoutCx , LayoutOf , TyAndLayout } ;
24
24
use rustc_middle:: ty:: { self , Ty } ;
@@ -95,16 +95,19 @@ macro_rules! try_validation {
95
95
Ok ( x) => x,
96
96
// We catch the error and turn it into a validation failure. We are okay with
97
97
// allocation here as this can only slow down builds that fail anyway.
98
- Err ( e) => match e. kind( ) {
99
- $(
100
- $( $p) |+ =>
101
- throw_validation_failure!(
102
- $where,
103
- $kind
104
- )
105
- ) ,+,
106
- #[ allow( unreachable_patterns) ]
107
- _ => Err :: <!, _>( e) ?,
98
+ Err ( e) => {
99
+ let ( kind, backtrace) = e. into_parts( ) ;
100
+ match kind {
101
+ $(
102
+ $( $p) |+ => {
103
+ throw_validation_failure!(
104
+ $where,
105
+ $kind
106
+ )
107
+ }
108
+ ) ,+,
109
+ _ => Err :: <!, _>( InterpErrorInfo :: from_parts( kind, backtrace) ) ?,
110
+ }
108
111
}
109
112
}
110
113
} } ;
@@ -510,7 +513,7 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {
510
513
Ub ( DanglingIntPointer { addr: i, .. } ) => DanglingPtrNoProvenance {
511
514
ptr_kind,
512
515
// FIXME this says "null pointer" when null but we need translate
513
- pointer: format!( "{}" , Pointer :: <Option <AllocId >>:: from_addr_invalid( * i) )
516
+ pointer: format!( "{}" , Pointer :: <Option <AllocId >>:: from_addr_invalid( i) )
514
517
} ,
515
518
Ub ( PointerOutOfBounds { .. } ) => DanglingPtrOutOfBounds {
516
519
ptr_kind
@@ -1231,7 +1234,8 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValueVisitor<'tcx, M> for ValidityVisitor<'rt,
1231
1234
Err ( err) => {
1232
1235
// For some errors we might be able to provide extra information.
1233
1236
// (This custom logic does not fit the `try_validation!` macro.)
1234
- match err. kind ( ) {
1237
+ let ( kind, backtrace) = err. into_parts ( ) ;
1238
+ match kind {
1235
1239
Ub ( InvalidUninitBytes ( Some ( ( _alloc_id, access) ) ) ) | Unsup ( ReadPointerAsInt ( Some ( ( _alloc_id, access) ) ) ) => {
1236
1240
// Some byte was uninitialized, determine which
1237
1241
// element that byte belongs to so we can
@@ -1242,15 +1246,15 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValueVisitor<'tcx, M> for ValidityVisitor<'rt,
1242
1246
. unwrap ( ) ;
1243
1247
self . path . push ( PathElem :: ArrayElem ( i) ) ;
1244
1248
1245
- if matches ! ( err . kind( ) , Ub ( InvalidUninitBytes ( _) ) ) {
1249
+ if matches ! ( kind, Ub ( InvalidUninitBytes ( _) ) ) {
1246
1250
throw_validation_failure ! ( self . path, Uninit { expected } )
1247
1251
} else {
1248
1252
throw_validation_failure ! ( self . path, PointerAsInt { expected } )
1249
1253
}
1250
1254
}
1251
1255
1252
1256
// Propagate upwards (that will also check for unexpected errors).
1253
- _ => return Err ( err ) ,
1257
+ _ => return Err ( InterpErrorInfo :: from_parts ( kind , backtrace ) ) ,
1254
1258
}
1255
1259
}
1256
1260
}
@@ -1282,7 +1286,7 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValueVisitor<'tcx, M> for ValidityVisitor<'rt,
1282
1286
// It's not great to catch errors here, since we can't give a very good path,
1283
1287
// but it's better than ICEing.
1284
1288
Ub ( InvalidVTableTrait { vtable_dyn_type, expected_dyn_type } ) => {
1285
- InvalidMetaWrongTrait { vtable_dyn_type, expected_dyn_type: * expected_dyn_type }
1289
+ InvalidMetaWrongTrait { vtable_dyn_type, expected_dyn_type }
1286
1290
} ,
1287
1291
) ;
1288
1292
}
0 commit comments