Skip to content

Commit 976ba13

Browse files
Record the fact that rustc_peek has no side effects
This means that calls to `rustc_peek` are no longer indirect definitions of any locals in the body. Other pure intrinsics (e.g. `transmute`) could also be added to the list of exceptions.
1 parent 047e7ca commit 976ba13

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

src/librustc_mir/dataflow/impls/reaching_defs.rs

+15-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,21 @@ fn has_side_effects(
8585
terminator: &mir::Terminator<'tcx>,
8686
) -> bool {
8787
match &terminator.kind {
88-
mir::TerminatorKind::Call { .. } => true,
88+
mir::TerminatorKind::Call { func, .. } => {
89+
// Special-case some intrinsics that do not have side effects.
90+
if let mir::Operand::Constant(func) = func {
91+
if let ty::FnDef(def_id, _) = func.ty.sty {
92+
if let Abi::RustIntrinsic = tcx.fn_sig(def_id).abi() {
93+
match tcx.item_name(def_id) {
94+
sym::rustc_peek => return false,
95+
_ => (),
96+
}
97+
}
98+
}
99+
}
100+
101+
true
102+
}
89103

90104
// Types with special drop glue may mutate their environment.
91105
| mir::TerminatorKind::Drop { location: place, .. }

src/test/ui/mir-dataflow/reaching-defs-1.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fn foo(test: bool) -> (i32, i32) {
2222
}
2323

2424
unsafe { rustc_peek(&x); }
25-
//~^ ERROR rustc_peek: [16: "x=2", 17: "rustc_peek(&x)", 20: "x=3"]
25+
//~^ ERROR rustc_peek: [16: "x=2", 20: "x=3"]
2626

2727
unsafe { rustc_peek(&y); }
2828
//~^ ERROR rustc_peek: [13: "y=1", 21: "y=4"]

src/test/ui/mir-dataflow/reaching-defs-1.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error: rustc_peek: [16: "x=2"]
44
LL | unsafe { rustc_peek(&x); }
55
| ^^^^^^^^^^^^^^
66

7-
error: rustc_peek: [16: "x=2", 17: "rustc_peek(&x)", 20: "x=3"]
7+
error: rustc_peek: [16: "x=2", 20: "x=3"]
88
--> $DIR/reaching-defs-1.rs:24:14
99
|
1010
LL | unsafe { rustc_peek(&x); }

0 commit comments

Comments
 (0)