Skip to content

Commit 96e9562

Browse files
committed
Visit only terminators when removing landing pads
No functional changes intended
1 parent 73f233b commit 96e9562

File tree

3 files changed

+9
-24
lines changed

3 files changed

+9
-24
lines changed

compiler/rustc_mir/src/shim.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ fn make_shim<'tcx>(tcx: TyCtxt<'tcx>, instance: ty::InstanceDef<'tcx>) -> Body<'
8181
MirPhase::Const,
8282
&[&[
8383
&add_moves_for_packed_drops::AddMovesForPackedDrops,
84-
&no_landing_pads::NoLandingPads::new(tcx),
84+
&no_landing_pads::NoLandingPads,
8585
&remove_noop_landing_pads::RemoveNoopLandingPads,
8686
&simplify::SimplifyCfg::new("make_shim"),
8787
&add_call_guards::CriticalCallEdges,

compiler/rustc_mir/src/transform/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -433,15 +433,15 @@ fn run_post_borrowck_cleanup_passes<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tc
433433

434434
let post_borrowck_cleanup: &[&dyn MirPass<'tcx>] = &[
435435
// Remove all things only needed by analysis
436-
&no_landing_pads::NoLandingPads::new(tcx),
436+
&no_landing_pads::NoLandingPads,
437437
&simplify_branches::SimplifyBranches::new("initial"),
438438
&remove_noop_landing_pads::RemoveNoopLandingPads,
439439
&cleanup_post_borrowck::CleanupNonCodegenStatements,
440440
&simplify::SimplifyCfg::new("early-opt"),
441441
// These next passes must be executed together
442442
&add_call_guards::CriticalCallEdges,
443443
&elaborate_drops::ElaborateDrops,
444-
&no_landing_pads::NoLandingPads::new(tcx),
444+
&no_landing_pads::NoLandingPads,
445445
// AddMovesForPackedDrops needs to run after drop
446446
// elaboration.
447447
&add_moves_for_packed_drops::AddMovesForPackedDrops,

compiler/rustc_mir/src/transform/no_landing_pads.rs

+6-21
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,27 @@
22
//! specified.
33
44
use crate::transform::MirPass;
5-
use rustc_middle::mir::visit::MutVisitor;
65
use rustc_middle::mir::*;
76
use rustc_middle::ty::TyCtxt;
87
use rustc_target::spec::PanicStrategy;
98

10-
pub struct NoLandingPads<'tcx> {
11-
tcx: TyCtxt<'tcx>,
12-
}
13-
14-
impl<'tcx> NoLandingPads<'tcx> {
15-
pub fn new(tcx: TyCtxt<'tcx>) -> Self {
16-
NoLandingPads { tcx }
17-
}
18-
}
9+
pub struct NoLandingPads;
1910

20-
impl<'tcx> MirPass<'tcx> for NoLandingPads<'tcx> {
11+
impl<'tcx> MirPass<'tcx> for NoLandingPads {
2112
fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
2213
no_landing_pads(tcx, body)
2314
}
2415
}
2516

2617
pub fn no_landing_pads<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
27-
if tcx.sess.panic_strategy() == PanicStrategy::Abort {
28-
NoLandingPads::new(tcx).visit_body(body);
29-
}
30-
}
31-
32-
impl<'tcx> MutVisitor<'tcx> for NoLandingPads<'tcx> {
33-
fn tcx(&self) -> TyCtxt<'tcx> {
34-
self.tcx
18+
if tcx.sess.panic_strategy() != PanicStrategy::Abort {
19+
return;
3520
}
3621

37-
fn visit_terminator(&mut self, terminator: &mut Terminator<'tcx>, location: Location) {
22+
for block in body.basic_blocks_mut() {
23+
let terminator = block.terminator_mut();
3824
if let Some(unwind) = terminator.kind.unwind_mut() {
3925
unwind.take();
4026
}
41-
self.super_terminator(terminator, location);
4227
}
4328
}

0 commit comments

Comments
 (0)