]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_cranelift/src/trap.rs
Rollup merge of #99194 - simlay:simlay/update-rust-gdbgui-gdb-args-to-gdb-cmd, r...
[rust.git] / compiler / rustc_codegen_cranelift / src / trap.rs
1 //! Helpers used to print a message and abort in case of certain panics and some detected UB.
2
3 use crate::prelude::*;
4
5 fn codegen_print(fx: &mut FunctionCx<'_, '_, '_>, msg: &str) {
6     let puts = fx
7         .module
8         .declare_function(
9             "puts",
10             Linkage::Import,
11             &Signature {
12                 call_conv: fx.target_config.default_call_conv,
13                 params: vec![AbiParam::new(fx.pointer_type)],
14                 returns: vec![AbiParam::new(types::I32)],
15             },
16         )
17         .unwrap();
18     let puts = fx.module.declare_func_in_func(puts, &mut fx.bcx.func);
19     if fx.clif_comments.enabled() {
20         fx.add_comment(puts, "puts");
21     }
22
23     let real_msg = format!("trap at {:?} ({}): {}\0", fx.instance, fx.symbol_name, msg);
24     let msg_ptr = fx.anonymous_str(&real_msg);
25     fx.bcx.ins().call(puts, &[msg_ptr]);
26 }
27
28 /// Use this when something is unimplemented, but `libcore` or `libstd` requires it to codegen.
29 ///
30 /// Trap code: user65535
31 pub(crate) fn trap_unimplemented(fx: &mut FunctionCx<'_, '_, '_>, msg: impl AsRef<str>) {
32     codegen_print(fx, msg.as_ref());
33     fx.bcx.ins().trap(TrapCode::User(!0));
34 }