Skip to content

Commit 94e940d

Browse files
committed
Collect panic/panic_bounds_check during monomorphization
1 parent dd757b9 commit 94e940d

File tree

2 files changed

+69
-2
lines changed

2 files changed

+69
-2
lines changed

compiler/rustc_monomorphize/src/collector.rs

+11-2
Original file line numberDiff line numberDiff line change
@@ -806,13 +806,22 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirNeighborCollector<'a, 'tcx> {
806806
}
807807
}
808808
}
809+
mir::TerminatorKind::Assert { ref msg, .. } => {
810+
let lang_item = match msg {
811+
mir::AssertKind::BoundsCheck { .. } => LangItem::PanicBoundsCheck,
812+
_ => LangItem::Panic,
813+
};
814+
let instance = Instance::mono(tcx, tcx.require_lang_item(lang_item, Some(source)));
815+
if should_codegen_locally(tcx, &instance) {
816+
self.output.push(create_fn_mono_item(tcx, instance, source));
817+
}
818+
}
809819
mir::TerminatorKind::Goto { .. }
810820
| mir::TerminatorKind::SwitchInt { .. }
811821
| mir::TerminatorKind::Resume
812822
| mir::TerminatorKind::Abort
813823
| mir::TerminatorKind::Return
814-
| mir::TerminatorKind::Unreachable
815-
| mir::TerminatorKind::Assert { .. } => {}
824+
| mir::TerminatorKind::Unreachable => {}
816825
mir::TerminatorKind::GeneratorDrop
817826
| mir::TerminatorKind::Yield { .. }
818827
| mir::TerminatorKind::FalseEdge { .. }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
// compile-flags:-Zprint-mono-items=lazy
2+
3+
// rust-lang/rust#90405
4+
// Ensure implicit panic calls are collected
5+
6+
#![feature(lang_items)]
7+
#![feature(no_core)]
8+
#![crate_type = "lib"]
9+
#![no_core]
10+
#![no_std]
11+
12+
#[lang = "panic_location"]
13+
struct Location<'a> {
14+
_file: &'a str,
15+
_line: u32,
16+
_col: u32,
17+
}
18+
19+
#[lang = "panic"]
20+
#[inline]
21+
#[track_caller]
22+
fn panic(_: &'static str) -> ! {
23+
loop {}
24+
}
25+
26+
#[lang = "sized"]
27+
trait Sized {}
28+
29+
#[lang = "copy"]
30+
trait Copy {}
31+
32+
#[lang = "freeze"]
33+
trait Freeze {}
34+
35+
impl Copy for i32 {}
36+
37+
#[lang = "div"]
38+
trait Div<Rhs = Self> {
39+
type Output;
40+
fn div(self, rhs: Rhs) -> Self::Output;
41+
}
42+
43+
impl Div for i32 {
44+
type Output = i32;
45+
fn div(self, rhs: i32) -> i32 {
46+
self / rhs
47+
}
48+
}
49+
50+
#[allow(unconditional_panic)]
51+
pub fn foo() {
52+
// This implicitly generates a panic call.
53+
let _ = 1 / 0;
54+
}
55+
56+
//~ MONO_ITEM fn foo
57+
//~ MONO_ITEM fn <i32 as Div>::div
58+
//~ MONO_ITEM fn panic

0 commit comments

Comments
 (0)