Skip to content

Commit 2870d26

Browse files
committed
Actually keep PlaceMention if requested.
1 parent ddfa246 commit 2870d26

File tree

12 files changed

+45
-23
lines changed

12 files changed

+45
-23
lines changed

compiler/rustc_const_eval/src/transform/validate.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -757,14 +757,6 @@ impl<'a, 'tcx> Visitor<'tcx> for TypeChecker<'a, 'tcx> {
757757
}
758758
}
759759
}
760-
StatementKind::PlaceMention(..) => {
761-
if self.mir_phase >= MirPhase::Runtime(RuntimePhase::Initial) {
762-
self.fail(
763-
location,
764-
"`PlaceMention` should have been removed after drop lowering phase",
765-
);
766-
}
767-
}
768760
StatementKind::AscribeUserType(..) => {
769761
if self.mir_phase >= MirPhase::Runtime(RuntimePhase::Initial) {
770762
self.fail(
@@ -874,6 +866,7 @@ impl<'a, 'tcx> Visitor<'tcx> for TypeChecker<'a, 'tcx> {
874866
StatementKind::StorageDead(_)
875867
| StatementKind::Coverage(_)
876868
| StatementKind::ConstEvalCounter
869+
| StatementKind::PlaceMention(..)
877870
| StatementKind::Nop => {}
878871
}
879872

compiler/rustc_interface/src/tests.rs

+1
Original file line numberDiff line numberDiff line change
@@ -768,6 +768,7 @@ fn test_unstable_options_tracking_hash() {
768768
tracked!(merge_functions, Some(MergeFunctions::Disabled));
769769
tracked!(mir_emit_retag, true);
770770
tracked!(mir_enable_passes, vec![("DestProp".to_string(), false)]);
771+
tracked!(mir_keep_place_mention, true);
771772
tracked!(mir_opt_level, Some(4));
772773
tracked!(move_size_limit, Some(4096));
773774
tracked!(mutable_noalias, false);

compiler/rustc_middle/src/mir/syntax.rs

-2
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,6 @@ pub enum StatementKind<'tcx> {
333333
///
334334
/// When executed at runtime, this computes the given place, but then discards
335335
/// it without doing a load. It is UB if the place is not pointing to live memory.
336-
///
337-
/// Disallowed after drop elaboration.
338336
PlaceMention(Box<Place<'tcx>>),
339337

340338
/// Encodes a user's type ascription. These need to be preserved

compiler/rustc_mir_transform/src/cleanup_post_borrowck.rs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ impl<'tcx> MirPass<'tcx> for CleanupPostBorrowck {
2424
for statement in basic_block.statements.iter_mut() {
2525
match statement.kind {
2626
StatementKind::AscribeUserType(..)
27-
| StatementKind::PlaceMention(..)
2827
| StatementKind::Assign(box (_, Rvalue::Ref(_, BorrowKind::Shallow, _)))
2928
| StatementKind::FakeRead(..) => statement.make_nop(),
3029
_ => (),

compiler/rustc_mir_transform/src/dead_store_elimination.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,10 @@ pub fn eliminate<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>, borrowed: &BitS
5454
| StatementKind::Coverage(_)
5555
| StatementKind::Intrinsic(_)
5656
| StatementKind::ConstEvalCounter
57+
| StatementKind::PlaceMention(_)
5758
| StatementKind::Nop => (),
5859

59-
StatementKind::FakeRead(_)
60-
| StatementKind::PlaceMention(_)
61-
| StatementKind::AscribeUserType(_, _) => {
60+
StatementKind::FakeRead(_) | StatementKind::AscribeUserType(_, _) => {
6261
bug!("{:?} not found in this MIR phase!", &statement.kind)
6362
}
6463
}

compiler/rustc_mir_transform/src/dest_prop.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -582,10 +582,9 @@ impl WriteInfo {
582582
| StatementKind::Nop
583583
| StatementKind::Coverage(_)
584584
| StatementKind::StorageLive(_)
585-
| StatementKind::StorageDead(_) => (),
586-
StatementKind::FakeRead(_)
587-
| StatementKind::AscribeUserType(_, _)
588-
| StatementKind::PlaceMention(_) => {
585+
| StatementKind::StorageDead(_)
586+
| StatementKind::PlaceMention(_) => (),
587+
StatementKind::FakeRead(_) | StatementKind::AscribeUserType(_, _) => {
589588
bug!("{:?} not found in this MIR phase", statement)
590589
}
591590
}

compiler/rustc_mir_transform/src/lib.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ mod add_retag;
4848
mod check_const_item_mutation;
4949
mod check_packed_ref;
5050
pub mod check_unsafety;
51+
mod remove_place_mention;
5152
// This pass is public to allow external drivers to perform MIR cleanup
5253
pub mod cleanup_post_borrowck;
5354
mod const_debuginfo;
@@ -460,8 +461,11 @@ fn run_runtime_lowering_passes<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
460461

461462
/// Returns the sequence of passes that do the initial cleanup of runtime MIR.
462463
fn run_runtime_cleanup_passes<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
463-
let passes: &[&dyn MirPass<'tcx>] =
464-
&[&lower_intrinsics::LowerIntrinsics, &simplify::SimplifyCfg::ElaborateDrops];
464+
let passes: &[&dyn MirPass<'tcx>] = &[
465+
&lower_intrinsics::LowerIntrinsics,
466+
&remove_place_mention::RemovePlaceMention,
467+
&simplify::SimplifyCfg::ElaborateDrops,
468+
];
465469

466470
pm::run_passes(tcx, body, passes, Some(MirPhase::Runtime(RuntimePhase::PostCleanup)));
467471

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//! This pass removes `PlaceMention` statement, which has no effect at codegen.
2+
3+
use crate::MirPass;
4+
use rustc_middle::mir::*;
5+
use rustc_middle::ty::TyCtxt;
6+
7+
pub struct RemovePlaceMention;
8+
9+
impl<'tcx> MirPass<'tcx> for RemovePlaceMention {
10+
fn is_enabled(&self, sess: &rustc_session::Session) -> bool {
11+
!sess.opts.unstable_opts.mir_keep_place_mention
12+
}
13+
14+
fn run_pass(&self, _: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
15+
trace!("Running RemovePlaceMention on {:?}", body.source);
16+
for data in body.basic_blocks.as_mut_preserves_cfg() {
17+
data.statements.retain(|statement| match statement.kind {
18+
StatementKind::PlaceMention(..) | StatementKind::Nop => false,
19+
_ => true,
20+
})
21+
}
22+
}
23+
}

compiler/rustc_session/src/options.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1558,6 +1558,9 @@ options! {
15581558
"use like `-Zmir-enable-passes=+DestProp,-InstCombine`. Forces the specified passes to be \
15591559
enabled, overriding all other checks. Passes that are not specified are enabled or \
15601560
disabled by other flags as usual."),
1561+
mir_keep_place_mention: bool = (false, parse_bool, [TRACKED],
1562+
"keep place mention MIR statements, interpreted e.g., by miri; implies -Zmir-opt-level=0 \
1563+
(default: no)"),
15611564
#[rustc_lint_opt_deny_field_access("use `Session::mir_opt_level` instead of this field")]
15621565
mir_opt_level: Option<usize> = (None, parse_opt_number, [TRACKED],
15631566
"MIR optimization level (0-4; default: 1 in non optimized builds and 2 in optimized builds)"),

src/tools/miri/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ pub const MIRI_DEFAULT_ARGS: &[&str] = &[
130130
"-Zalways-encode-mir",
131131
"-Zextra-const-ub-checks",
132132
"-Zmir-emit-retag",
133+
"-Zmir-keep-place-mention",
133134
"-Zmir-opt-level=0",
134135
"-Zmir-enable-passes=-CheckAlignment",
135136
];

src/tools/miri/tests/fail/dangling_pointers/dangling_pointer_deref_underscore.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ fn main() {
66
let b = Box::new(42);
77
&*b as *const i32
88
};
9-
let _ = unsafe { *p }; //~ ERROR: dereferenced after this allocation got freed
9+
unsafe {
10+
let _ = *p; //~ ERROR: dereferenced after this allocation got freed
11+
}
1012
panic!("this should never print");
1113
}

src/tools/miri/tests/fail/dangling_pointers/dangling_pointer_deref_underscore.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
error: Undefined Behavior: pointer to ALLOC was dereferenced after this allocation got freed
22
--> $DIR/dangling_pointer_deref_underscore.rs:LL:CC
33
|
4-
LL | let _ = unsafe { *p };
5-
| ^^ pointer to ALLOC was dereferenced after this allocation got freed
4+
LL | let _ = *p;
5+
| ^^ pointer to ALLOC was dereferenced after this allocation got freed
66
|
77
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
88
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information

0 commit comments

Comments
 (0)