Skip to content

Commit 41fb84e

Browse files
authored
Rollup merge of #66306 - spastorino:remove-error-handled-by-miri, r=oli-obk
Remove cannot mutate statics in initializer of another static error r? @oli-obk This is just a refactoring. As the removed code itself said, it only a heuristic catching a few cases early instead of leaving it all to const eval. It's easy to work around the static check and then run into the miri-engine check.
2 parents 22c0f62 + 695e91a commit 41fb84e

File tree

8 files changed

+10
-45
lines changed

8 files changed

+10
-45
lines changed

src/librustc_mir/transform/check_consts/validation.rs

+1-11
Original file line numberDiff line numberDiff line change
@@ -326,17 +326,7 @@ impl Visitor<'tcx> for Validator<'_, 'mir, 'tcx> {
326326
let is_thread_local = self.tcx.has_attr(*def_id, sym::thread_local);
327327
if is_thread_local {
328328
self.check_op(ops::ThreadLocalAccess);
329-
} else if self.const_kind() == ConstKind::Static && context.is_mutating_use() {
330-
// this is not strictly necessary as miri will also bail out
331-
// For interior mutability we can't really catch this statically as that
332-
// goes through raw pointers and intermediate temporaries, so miri has
333-
// to catch this anyway
334-
335-
self.tcx.sess.span_err(
336-
self.span,
337-
"cannot mutate statics in the initializer of another static",
338-
);
339-
} else {
329+
} else if self.const_kind() != ConstKind::Static || !context.is_mutating_use() {
340330
self.check_op(ops::StaticAccess);
341331
}
342332
}

src/librustc_mir/transform/qualify_consts.rs

-13
Original file line numberDiff line numberDiff line change
@@ -787,19 +787,6 @@ impl<'a, 'tcx> Visitor<'tcx> for Checker<'a, 'tcx> {
787787

788788
// Only allow statics (not consts) to refer to other statics.
789789
if self.mode == Mode::Static || self.mode == Mode::StaticMut {
790-
if self.mode == Mode::Static
791-
&& context.is_mutating_use()
792-
&& !self.suppress_errors
793-
{
794-
// this is not strictly necessary as miri will also bail out
795-
// For interior mutability we can't really catch this statically as that
796-
// goes through raw pointers and intermediate temporaries, so miri has
797-
// to catch this anyway
798-
self.tcx.sess.span_err(
799-
self.span,
800-
"cannot mutate statics in the initializer of another static",
801-
);
802-
}
803790
return;
804791
}
805792
unleash_miri!(self);

src/test/ui/consts/const-eval/assign-to-static-within-other-static.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ use std::cell::UnsafeCell;
77

88
static mut FOO: u32 = 42;
99
static BOO: () = unsafe {
10-
FOO = 5; //~ ERROR cannot mutate statics in the initializer of another static
10+
FOO = 5;
11+
//~^ could not evaluate static initializer [E0080]
1112
};
1213

1314
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
error: cannot mutate statics in the initializer of another static
1+
error[E0080]: could not evaluate static initializer
22
--> $DIR/assign-to-static-within-other-static.rs:10:5
33
|
44
LL | FOO = 5;
5-
| ^^^^^^^
5+
| ^^^^^^^ tried to modify a static's initial value from another static's initializer
66

77
error: aborting due to previous error
88

9+
For more information about this error, try `rustc --explain E0080`.

src/test/ui/error-codes/E0017.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ const C: i32 = 2;
44
const CR: &'static mut i32 = &mut C; //~ ERROR E0017
55
static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017
66
//~| ERROR cannot borrow
7-
//~| ERROR cannot mutate statics
87
static CONST_REF: &'static mut i32 = &mut C; //~ ERROR E0017
98
fn main() {}

src/test/ui/error-codes/E0017.stderr

+2-8
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,19 @@ error[E0017]: references in statics may only refer to immutable values
1010
LL | static STATIC_REF: &'static mut i32 = &mut X;
1111
| ^^^^^^ statics require immutable values
1212

13-
error: cannot mutate statics in the initializer of another static
14-
--> $DIR/E0017.rs:5:39
15-
|
16-
LL | static STATIC_REF: &'static mut i32 = &mut X;
17-
| ^^^^^^
18-
1913
error[E0596]: cannot borrow immutable static item `X` as mutable
2014
--> $DIR/E0017.rs:5:39
2115
|
2216
LL | static STATIC_REF: &'static mut i32 = &mut X;
2317
| ^^^^^^ cannot borrow as mutable
2418

2519
error[E0017]: references in statics may only refer to immutable values
26-
--> $DIR/E0017.rs:8:38
20+
--> $DIR/E0017.rs:7:38
2721
|
2822
LL | static CONST_REF: &'static mut i32 = &mut C;
2923
| ^^^^^^ statics require immutable values
3024

31-
error: aborting due to 5 previous errors
25+
error: aborting due to 4 previous errors
3226

3327
Some errors have detailed explanations: E0017, E0596.
3428
For more information about an error, try `rustc --explain E0017`.

src/test/ui/error-codes/E0388.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const C: i32 = 2;
44
const CR: &'static mut i32 = &mut C; //~ ERROR E0017
55
static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017
66
//~| ERROR cannot borrow
7-
//~| ERROR cannot mutate statics
87
static CONST_REF: &'static mut i32 = &mut C; //~ ERROR E0017
98

109
fn main() {}

src/test/ui/error-codes/E0388.stderr

+2-8
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,19 @@ error[E0017]: references in statics may only refer to immutable values
1010
LL | static STATIC_REF: &'static mut i32 = &mut X;
1111
| ^^^^^^ statics require immutable values
1212

13-
error: cannot mutate statics in the initializer of another static
14-
--> $DIR/E0388.rs:5:39
15-
|
16-
LL | static STATIC_REF: &'static mut i32 = &mut X;
17-
| ^^^^^^
18-
1913
error[E0596]: cannot borrow immutable static item `X` as mutable
2014
--> $DIR/E0388.rs:5:39
2115
|
2216
LL | static STATIC_REF: &'static mut i32 = &mut X;
2317
| ^^^^^^ cannot borrow as mutable
2418

2519
error[E0017]: references in statics may only refer to immutable values
26-
--> $DIR/E0388.rs:8:38
20+
--> $DIR/E0388.rs:7:38
2721
|
2822
LL | static CONST_REF: &'static mut i32 = &mut C;
2923
| ^^^^^^ statics require immutable values
3024

31-
error: aborting due to 5 previous errors
25+
error: aborting due to 4 previous errors
3226

3327
Some errors have detailed explanations: E0017, E0596.
3428
For more information about an error, try `rustc --explain E0017`.

0 commit comments

Comments
 (0)