Skip to content

Commit b7ec7bd

Browse files
authored
Rollup merge of #72893 - RalfJung:unleash-tls, r=ecstatic-morse
test miri-unleash TLS accesses Finally gets rid of `IS_SUPPORTED_IN_MIRI`. :-) I also added a test for the new `asm!` while I am at it. r? @ecstatic-morse Cc @rust-lang/wg-const-eval
2 parents f388007 + 4f30c68 commit b7ec7bd

File tree

7 files changed

+58
-15
lines changed

7 files changed

+58
-15
lines changed

src/librustc_middle/mir/interpret/error.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -523,12 +523,12 @@ impl fmt::Display for UnsupportedOpInfo {
523523
match self {
524524
Unsupported(ref msg) => write!(f, "{}", msg),
525525
ReadForeignStatic(did) => {
526-
write!(f, "cannot read from foreign (extern) static {:?}", did)
526+
write!(f, "cannot read from foreign (extern) static ({:?})", did)
527527
}
528528
NoMirFor(did) => write!(f, "no MIR body is available for {:?}", did),
529529
ReadPointerAsBytes => write!(f, "unable to turn pointer into raw bytes",),
530530
ReadBytesAsPointer => write!(f, "unable to turn bytes into a pointer"),
531-
ThreadLocalStatic(did) => write!(f, "accessing thread local static {:?}", did),
531+
ThreadLocalStatic(did) => write!(f, "cannot access thread local static ({:?})", did),
532532
}
533533
}
534534
}

src/librustc_mir/transform/check_consts/ops.rs

-5
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ use super::ConstCx;
1212

1313
/// An operation that is not *always* allowed in a const context.
1414
pub trait NonConstOp: std::fmt::Debug {
15-
/// Whether this operation can be evaluated by miri.
16-
const IS_SUPPORTED_IN_MIRI: bool = true;
17-
1815
/// Returns the `Symbol` corresponding to the feature gate that would enable this operation,
1916
/// or `None` if such a feature gate does not exist.
2017
fn feature_gate() -> Option<Symbol> {
@@ -356,8 +353,6 @@ impl NonConstOp for StaticAccess {
356353
#[derive(Debug)]
357354
pub struct ThreadLocalAccess;
358355
impl NonConstOp for ThreadLocalAccess {
359-
const IS_SUPPORTED_IN_MIRI: bool = false;
360-
361356
fn emit_error(&self, ccx: &ConstCx<'_, '_>, span: Span) {
362357
struct_span_err!(
363358
ccx.tcx.sess,

src/librustc_mir/transform/check_consts/validation.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -244,11 +244,7 @@ impl Validator<'mir, 'tcx> {
244244
return;
245245
}
246246

247-
// If an operation is supported in miri it can be turned on with
248-
// `-Zunleash-the-miri-inside-of-you`.
249-
let is_unleashable = O::IS_SUPPORTED_IN_MIRI;
250-
251-
if is_unleashable && self.tcx.sess.opts.debugging_opts.unleash_the_miri_inside_of_you {
247+
if self.tcx.sess.opts.debugging_opts.unleash_the_miri_inside_of_you {
252248
self.tcx.sess.miri_unleashed_feature(span, O::feature_gate());
253249
return;
254250
}
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
// compile-flags: -Zunleash-the-miri-inside-of-you
22
// only-x86_64
3-
#![feature(llvm_asm)]
3+
#![feature(asm,llvm_asm)]
44
#![allow(const_err)]
55

66
fn main() {}
77

88
// Make sure we catch executing inline assembly.
9-
static TEST_BAD: () = {
9+
static TEST_BAD1: () = {
1010
unsafe { llvm_asm!("xor %eax, %eax" ::: "eax"); }
1111
//~^ ERROR could not evaluate static initializer
1212
//~| NOTE inline assembly is not supported
1313
//~| NOTE in this expansion of llvm_asm!
1414
//~| NOTE in this expansion of llvm_asm!
1515
};
16+
17+
// Make sure we catch executing inline assembly.
18+
static TEST_BAD2: () = {
19+
unsafe { asm!("nop"); }
20+
//~^ ERROR could not evaluate static initializer
21+
//~| NOTE inline assembly is not supported
22+
};

src/test/ui/consts/miri_unleashed/inline_asm.stderr

+12-1
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,26 @@ LL | unsafe { llvm_asm!("xor %eax, %eax" ::: "eax"); }
66
|
77
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
88

9+
error[E0080]: could not evaluate static initializer
10+
--> $DIR/inline_asm.rs:19:14
11+
|
12+
LL | unsafe { asm!("nop"); }
13+
| ^^^^^^^^^^^^ inline assembly is not supported
14+
915
warning: skipping const checks
1016
|
1117
help: skipping check that does not even have a feature gate
1218
--> $DIR/inline_asm.rs:10:14
1319
|
1420
LL | unsafe { llvm_asm!("xor %eax, %eax" ::: "eax"); }
1521
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22+
help: skipping check that does not even have a feature gate
23+
--> $DIR/inline_asm.rs:19:14
24+
|
25+
LL | unsafe { asm!("nop"); }
26+
| ^^^^^^^^^^^^
1627
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
1728

18-
error: aborting due to previous error; 1 warning emitted
29+
error: aborting due to 2 previous errors; 1 warning emitted
1930

2031
For more information about this error, try `rustc --explain E0080`.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// compile-flags: -Zunleash-the-miri-inside-of-you
2+
#![feature(thread_local)]
3+
#![allow(const_err)]
4+
5+
use std::thread;
6+
7+
#[thread_local]
8+
static A: u8 = 0;
9+
10+
// Make sure we catch accessing thread-local storage.
11+
static TEST_BAD: () = {
12+
unsafe { let _val = A; }
13+
//~^ ERROR could not evaluate static initializer
14+
//~| NOTE cannot access thread local static
15+
};
16+
17+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
error[E0080]: could not evaluate static initializer
2+
--> $DIR/tls.rs:12:25
3+
|
4+
LL | unsafe { let _val = A; }
5+
| ^ cannot access thread local static (DefId(0:4 ~ tls[317d]::A[0]))
6+
7+
warning: skipping const checks
8+
|
9+
help: skipping check that does not even have a feature gate
10+
--> $DIR/tls.rs:12:25
11+
|
12+
LL | unsafe { let _val = A; }
13+
| ^
14+
15+
error: aborting due to previous error; 1 warning emitted
16+
17+
For more information about this error, try `rustc --explain E0080`.

0 commit comments

Comments
 (0)