diff options
| author | Ralf Jung <post@ralfj.de> | 2022-03-26 13:17:49 -0400 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-03-26 14:35:36 -0400 |
| commit | 3bbcf64fb33e701084c664d9b691ac3c1736bd14 (patch) | |
| tree | 13620d270e8cabb0447939eb7a9839261a85e591 | |
| parent | 78b680e14a287a98ec0501116607bb49b31c9f28 (diff) | |
| download | rust-3bbcf64fb33e701084c664d9b691ac3c1736bd14.tar.gz rust-3bbcf64fb33e701084c664d9b691ac3c1736bd14.zip | |
interpret: with enforce_number_validity, ensure integers are truly Scalar::Int (i.e., no pointers)
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/validity.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/validity.rs b/compiler/rustc_const_eval/src/interpret/validity.rs index 8bdafa87623..9da7f5e30cb 100644 --- a/compiler/rustc_const_eval/src/interpret/validity.rs +++ b/compiler/rustc_const_eval/src/interpret/validity.rs @@ -21,7 +21,7 @@ use std::hash::Hash; use super::{ alloc_range, CheckInAllocMsg, GlobalAlloc, InterpCx, InterpResult, MPlaceTy, Machine, - MemPlaceMeta, OpTy, ScalarMaybeUninit, ValueVisitor, + MemPlaceMeta, OpTy, Scalar, ScalarMaybeUninit, ValueVisitor, }; macro_rules! throw_validation_failure { @@ -521,8 +521,11 @@ impl<'rt, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> ValidityVisitor<'rt, 'mir, ' // NOTE: Keep this in sync with the array optimization for int/float // types below! if M::enforce_number_validity(self.ecx) { - // Integers/floats in CTFE: Must be scalar bits, pointers are dangerous - let is_bits = value.check_init().map_or(false, |v| v.try_to_int().is_ok()); + // Integers/floats with number validity: Must be scalar bits, pointers are dangerous. + // As a special exception we *do* match on a `Scalar` here, since we truly want + // to know its underlying representation (and *not* cast it to an integer). + let is_bits = + value.check_init().map_or(false, |v| matches!(v, Scalar::Int(..))); if !is_bits { throw_validation_failure!(self.path, { "{:x}", value } expected { "initialized plain (non-pointer) bytes" } |
