Rollup merge of #101131 - RalfJung:ctfe-no-needs-rfc, r=oli-obk
CTFE: exposing pointers and calling extern fn is just impossible The remaining "needs RFC" errors are just needlessly confusing, I think -- time to get rid of that error variant. They are anyway only reachable with miri-unleashed (if at all). r? `@oli-obk`
This commit is contained in:
commit
cd53b4dba5
5 changed files with 16 additions and 20 deletions
|
@ -15,7 +15,6 @@ use crate::interpret::{
|
||||||
/// The CTFE machine has some custom error kinds.
|
/// The CTFE machine has some custom error kinds.
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
pub enum ConstEvalErrKind {
|
pub enum ConstEvalErrKind {
|
||||||
NeedsRfc(String),
|
|
||||||
ConstAccessesStatic,
|
ConstAccessesStatic,
|
||||||
ModifiedGlobal,
|
ModifiedGlobal,
|
||||||
AssertFailure(AssertKind<ConstInt>),
|
AssertFailure(AssertKind<ConstInt>),
|
||||||
|
@ -42,9 +41,6 @@ impl fmt::Display for ConstEvalErrKind {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
use self::ConstEvalErrKind::*;
|
use self::ConstEvalErrKind::*;
|
||||||
match *self {
|
match *self {
|
||||||
NeedsRfc(ref msg) => {
|
|
||||||
write!(f, "\"{}\" needs an rfc before being allowed inside constants", msg)
|
|
||||||
}
|
|
||||||
ConstAccessesStatic => write!(f, "constant accesses static"),
|
ConstAccessesStatic => write!(f, "constant accesses static"),
|
||||||
ModifiedGlobal => {
|
ModifiedGlobal => {
|
||||||
write!(f, "modifying a static's initial value from another static's initializer")
|
write!(f, "modifying a static's initial value from another static's initializer")
|
||||||
|
|
|
@ -269,9 +269,10 @@ impl<'mir, 'tcx> interpret::Machine<'mir, 'tcx> for CompileTimeInterpreter<'mir,
|
||||||
);
|
);
|
||||||
throw_inval!(AlreadyReported(guar));
|
throw_inval!(AlreadyReported(guar));
|
||||||
} else {
|
} else {
|
||||||
|
// `find_mir_or_eval_fn` checks that this is a const fn before even calling us,
|
||||||
|
// so this should be unreachable.
|
||||||
let path = ecx.tcx.def_path_str(def.did);
|
let path = ecx.tcx.def_path_str(def.did);
|
||||||
Err(ConstEvalErrKind::NeedsRfc(format!("calling extern function `{}`", path))
|
bug!("trying to call extern function `{path}` at compile-time");
|
||||||
.into())
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => Ok(ecx.tcx.instance_mir(instance)),
|
_ => Ok(ecx.tcx.instance_mir(instance)),
|
||||||
|
@ -339,11 +340,7 @@ impl<'mir, 'tcx> interpret::Machine<'mir, 'tcx> for CompileTimeInterpreter<'mir,
|
||||||
|
|
||||||
// CTFE-specific intrinsics.
|
// CTFE-specific intrinsics.
|
||||||
let Some(ret) = target else {
|
let Some(ret) = target else {
|
||||||
return Err(ConstEvalErrKind::NeedsRfc(format!(
|
throw_unsup_format!("intrinsic `{intrinsic_name}` is not supported at compile-time");
|
||||||
"calling intrinsic `{}`",
|
|
||||||
intrinsic_name
|
|
||||||
))
|
|
||||||
.into());
|
|
||||||
};
|
};
|
||||||
match intrinsic_name {
|
match intrinsic_name {
|
||||||
sym::ptr_guaranteed_eq | sym::ptr_guaranteed_ne => {
|
sym::ptr_guaranteed_eq | sym::ptr_guaranteed_ne => {
|
||||||
|
@ -400,11 +397,9 @@ impl<'mir, 'tcx> interpret::Machine<'mir, 'tcx> for CompileTimeInterpreter<'mir,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
return Err(ConstEvalErrKind::NeedsRfc(format!(
|
throw_unsup_format!(
|
||||||
"calling intrinsic `{}`",
|
"intrinsic `{intrinsic_name}` is not supported at compile-time"
|
||||||
intrinsic_name
|
);
|
||||||
))
|
|
||||||
.into());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -447,7 +442,7 @@ impl<'mir, 'tcx> interpret::Machine<'mir, 'tcx> for CompileTimeInterpreter<'mir,
|
||||||
_left: &ImmTy<'tcx>,
|
_left: &ImmTy<'tcx>,
|
||||||
_right: &ImmTy<'tcx>,
|
_right: &ImmTy<'tcx>,
|
||||||
) -> InterpResult<'tcx, (Scalar, bool, Ty<'tcx>)> {
|
) -> InterpResult<'tcx, (Scalar, bool, Ty<'tcx>)> {
|
||||||
Err(ConstEvalErrKind::NeedsRfc("pointer arithmetic or comparison".to_string()).into())
|
throw_unsup_format!("pointer arithmetic or comparison is not supported at compile-time");
|
||||||
}
|
}
|
||||||
|
|
||||||
fn before_terminator(ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx> {
|
fn before_terminator(ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx> {
|
||||||
|
@ -469,7 +464,8 @@ impl<'mir, 'tcx> interpret::Machine<'mir, 'tcx> for CompileTimeInterpreter<'mir,
|
||||||
_ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
_ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
||||||
_ptr: Pointer<AllocId>,
|
_ptr: Pointer<AllocId>,
|
||||||
) -> InterpResult<'tcx> {
|
) -> InterpResult<'tcx> {
|
||||||
Err(ConstEvalErrKind::NeedsRfc("exposing pointers".to_string()).into())
|
// This is only reachable with -Zunleash-the-miri-inside-of-you.
|
||||||
|
throw_unsup_format!("exposing pointers is not possible at compile-time")
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
|
|
|
@ -490,6 +490,7 @@ pub macro compile_time_machine(<$mir: lifetime, $tcx: lifetime>) {
|
||||||
) -> InterpResult<$tcx, Pointer<Option<AllocId>>> {
|
) -> InterpResult<$tcx, Pointer<Option<AllocId>>> {
|
||||||
// Allow these casts, but make the pointer not dereferenceable.
|
// Allow these casts, but make the pointer not dereferenceable.
|
||||||
// (I.e., they behave like transmutation.)
|
// (I.e., they behave like transmutation.)
|
||||||
|
// This is correct because no pointers can ever be exposed in compile-time evaluation.
|
||||||
Ok(Pointer::from_addr(addr))
|
Ok(Pointer::from_addr(addr))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
static PTR_INT_CAST: () = {
|
static PTR_INT_CAST: () = {
|
||||||
let x = &0 as *const _ as usize;
|
let x = &0 as *const _ as usize;
|
||||||
//~^ ERROR could not evaluate static initializer
|
//~^ ERROR could not evaluate static initializer
|
||||||
//~| "exposing pointers" needs an rfc before being allowed inside constants
|
//~| exposing pointers
|
||||||
let _v = x == x;
|
let _v = x == x;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -19,4 +19,7 @@ static PTR_INT_TRANSMUTE: () = unsafe {
|
||||||
//~| unable to turn pointer into raw bytes
|
//~| unable to turn pointer into raw bytes
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// I'd love to test pointer comparison, but that is not possible since
|
||||||
|
// their `PartialEq` impl is non-`const`.
|
||||||
|
|
||||||
fn main() {}
|
fn main() {}
|
||||||
|
|
|
@ -2,7 +2,7 @@ error[E0080]: could not evaluate static initializer
|
||||||
--> $DIR/ptr_arith.rs:9:13
|
--> $DIR/ptr_arith.rs:9:13
|
||||||
|
|
|
|
||||||
LL | let x = &0 as *const _ as usize;
|
LL | let x = &0 as *const _ as usize;
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^ "exposing pointers" needs an rfc before being allowed inside constants
|
| ^^^^^^^^^^^^^^^^^^^^^^^ exposing pointers is not possible at compile-time
|
||||||
|
|
||||||
error[E0080]: could not evaluate static initializer
|
error[E0080]: could not evaluate static initializer
|
||||||
--> $DIR/ptr_arith.rs:17:14
|
--> $DIR/ptr_arith.rs:17:14
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue