rust/compiler/rustc_codegen_cranelift/src/trap.rs

82 lines
2.8 KiB
Rust
Raw Normal View History

//! Helpers used to print a message and abort in case of certain panics and some detected UB.
use crate::prelude::*;
2018-11-16 10:35:47 -06:00
fn codegen_print(fx: &mut FunctionCx<'_, '_, '_>, msg: &str) {
2019-08-31 12:28:09 -05:00
let puts = fx
.cx
.module
2019-08-31 12:28:09 -05:00
.declare_function(
"puts",
Linkage::Import,
&Signature {
call_conv: CallConv::triple_default(fx.triple()),
params: vec![AbiParam::new(pointer_ty(fx.tcx))],
2020-04-17 12:33:57 -05:00
returns: vec![AbiParam::new(types::I32)],
2019-08-31 12:28:09 -05:00
},
)
.unwrap();
2020-08-22 09:17:58 -05:00
let puts = fx.cx.module.declare_func_in_func(puts, &mut fx.bcx.func);
2019-08-31 12:28:09 -05:00
#[cfg(debug_assertions)]
{
2020-03-20 06:18:40 -05:00
fx.add_comment(puts, "puts");
2019-07-30 08:00:15 -05:00
}
2019-03-23 07:06:35 -05:00
let symbol_name = fx.tcx.symbol_name(fx.instance);
let real_msg = format!("trap at {:?} ({}): {}\0", fx.instance, symbol_name, msg);
let msg_ptr = fx.anonymous_str("trap", &real_msg);
2019-03-23 07:06:35 -05:00
fx.bcx.ins().call(puts, &[msg_ptr]);
}
/// Trap code: user1
pub(crate) fn trap_abort(fx: &mut FunctionCx<'_, '_, '_>, msg: impl AsRef<str>) {
2019-03-23 07:06:35 -05:00
codegen_print(fx, msg.as_ref());
fx.bcx.ins().trap(TrapCode::User(1));
2018-11-16 10:35:47 -06:00
}
/// Use this for example when a function call should never return. This will fill the current block,
/// so you can **not** add instructions to it afterwards.
///
2018-11-16 10:35:47 -06:00
/// Trap code: user65535
pub(crate) fn trap_unreachable(fx: &mut FunctionCx<'_, '_, '_>, msg: impl AsRef<str>) {
2019-03-23 07:06:35 -05:00
codegen_print(fx, msg.as_ref());
fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
2018-11-16 10:35:47 -06:00
}
/// Like `trap_unreachable` but returns a fake value of the specified type.
///
/// Trap code: user65535
pub(crate) fn trap_unreachable_ret_value<'tcx>(
fx: &mut FunctionCx<'_, '_, 'tcx>,
dest_layout: TyAndLayout<'tcx>,
msg: impl AsRef<str>,
) -> CValue<'tcx> {
2020-04-30 13:54:04 -05:00
codegen_print(fx, msg.as_ref());
let true_ = fx.bcx.ins().iconst(types::I32, 1);
fx.bcx.ins().trapnz(true_, TrapCode::UnreachableCodeReached);
CValue::by_ref(Pointer::const_addr(fx, 0), dest_layout)
}
/// Use this when something is unimplemented, but `libcore` or `libstd` requires it to codegen.
/// Unlike `trap_unreachable` this will not fill the current block, so you **must** add instructions
/// to it afterwards.
///
2019-03-23 07:06:35 -05:00
/// Trap code: user65535
pub(crate) fn trap_unimplemented(fx: &mut FunctionCx<'_, '_, '_>, msg: impl AsRef<str>) {
2019-03-23 07:06:35 -05:00
codegen_print(fx, msg.as_ref());
let true_ = fx.bcx.ins().iconst(types::I32, 1);
fx.bcx.ins().trapnz(true_, TrapCode::User(!0));
}
/// Like `trap_unimplemented` but returns a fake value of the specified type.
///
/// Trap code: user65535
pub(crate) fn trap_unimplemented_ret_value<'tcx>(
fx: &mut FunctionCx<'_, '_, 'tcx>,
dest_layout: TyAndLayout<'tcx>,
msg: impl AsRef<str>,
) -> CValue<'tcx> {
trap_unimplemented(fx, msg);
CValue::by_ref(Pointer::const_addr(fx, 0), dest_layout)
}