//! This pass removes the unwind branch of all the terminators when the no-landing-pads option is //! specified. use rustc::ty::TyCtxt; use rustc::mir::*; use rustc::mir::visit::MutVisitor; use crate::transform::{MirPass, MirSource}; pub struct NoLandingPads<'tcx> { tcx: TyCtxt<'tcx>, } impl<'tcx> NoLandingPads<'tcx> { pub fn new(tcx: TyCtxt<'tcx>) -> Self { NoLandingPads { tcx } } } impl<'tcx> MirPass<'tcx> for NoLandingPads<'tcx> { fn run_pass(&self, tcx: TyCtxt<'tcx>, _: MirSource<'tcx>, body_cache: &mut BodyCache<'tcx>) { no_landing_pads(tcx, body_cache) } } pub fn no_landing_pads<'tcx>(tcx: TyCtxt<'tcx>, body_cache: &mut BodyCache<'tcx>) { if tcx.sess.no_landing_pads() { NoLandingPads::new(tcx).visit_body(body_cache); } } impl<'tcx> MutVisitor<'tcx> for NoLandingPads<'tcx> { fn tcx(&self) -> TyCtxt<'tcx> { self.tcx } fn visit_terminator_kind(&mut self, kind: &mut TerminatorKind<'tcx>, location: Location) { if let Some(unwind) = kind.unwind_mut() { unwind.take(); } self.super_terminator_kind(kind, location); } }