2020-09-23 08:13:49 -05:00
|
|
|
//! Helpers used to print a message and abort in case of certain panics and some detected UB.
|
|
|
|
|
2019-02-24 10:38:31 -06:00
|
|
|
use crate::prelude::*;
|
2018-11-16 10:35:47 -06:00
|
|
|
|
2021-02-22 09:00:20 -06:00
|
|
|
fn codegen_print(fx: &mut FunctionCx<'_, '_, '_>, msg: &str) {
|
2019-08-31 12:28:09 -05:00
|
|
|
let puts = fx
|
2020-08-28 05:10:48 -05:00
|
|
|
.cx
|
|
|
|
.module
|
2019-08-31 12:28:09 -05:00
|
|
|
.declare_function(
|
|
|
|
"puts",
|
|
|
|
Linkage::Import,
|
|
|
|
&Signature {
|
2019-12-17 08:03:32 -06:00
|
|
|
call_conv: CallConv::triple_default(fx.triple()),
|
2020-08-22 09:47:31 -05:00
|
|
|
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
|
|
|
|
2020-08-22 09:47:31 -05:00
|
|
|
let symbol_name = fx.tcx.symbol_name(fx.instance);
|
2019-06-16 10:40:16 -05:00
|
|
|
let real_msg = format!("trap at {:?} ({}): {}\0", fx.instance, symbol_name, msg);
|
2020-04-25 12:07:25 -05:00
|
|
|
let msg_ptr = fx.anonymous_str("trap", &real_msg);
|
2019-03-23 07:06:35 -05:00
|
|
|
fx.bcx.ins().call(puts, &[msg_ptr]);
|
|
|
|
}
|
|
|
|
|
2020-09-29 06:22:01 -05:00
|
|
|
/// Trap code: user1
|
2021-02-22 09:00:20 -06:00
|
|
|
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());
|
2020-09-29 06:22:01 -05:00
|
|
|
fx.bcx.ins().trap(TrapCode::User(1));
|
2018-11-16 10:35:47 -06:00
|
|
|
}
|
|
|
|
|
2019-07-20 08:33:57 -05: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
|
2021-02-22 09:00:20 -06:00
|
|
|
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());
|
2020-02-07 14:38:30 -06:00
|
|
|
fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
|
2018-11-16 10:35:47 -06:00
|
|
|
}
|
2019-02-24 10:38:31 -06:00
|
|
|
|
2020-03-14 08:34:07 -05:00
|
|
|
/// Like `trap_unreachable` but returns a fake value of the specified type.
|
|
|
|
///
|
|
|
|
/// Trap code: user65535
|
2020-03-27 06:14:45 -05:00
|
|
|
pub(crate) fn trap_unreachable_ret_value<'tcx>(
|
2021-02-22 09:00:20 -06:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
2020-03-30 12:00:24 -05:00
|
|
|
dest_layout: TyAndLayout<'tcx>,
|
2020-03-14 08:34:07 -05:00
|
|
|
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);
|
2020-03-14 08:34:07 -05:00
|
|
|
CValue::by_ref(Pointer::const_addr(fx, 0), dest_layout)
|
|
|
|
}
|
|
|
|
|
2019-07-20 08:33:57 -05:00
|
|
|
/// 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
|
2021-02-22 09:00:20 -06:00
|
|
|
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());
|
2019-02-24 10:38:31 -06:00
|
|
|
let true_ = fx.bcx.ins().iconst(types::I32, 1);
|
|
|
|
fx.bcx.ins().trapnz(true_, TrapCode::User(!0));
|
2019-07-20 08:33:57 -05:00
|
|
|
}
|
2020-11-23 04:48:53 -06:00
|
|
|
|
|
|
|
/// Like `trap_unimplemented` but returns a fake value of the specified type.
|
|
|
|
///
|
|
|
|
/// Trap code: user65535
|
|
|
|
pub(crate) fn trap_unimplemented_ret_value<'tcx>(
|
2021-02-22 09:00:20 -06:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
2020-11-23 04:48:53 -06:00
|
|
|
dest_layout: TyAndLayout<'tcx>,
|
|
|
|
msg: impl AsRef<str>,
|
|
|
|
) -> CValue<'tcx> {
|
|
|
|
trap_unimplemented(fx, msg);
|
|
|
|
CValue::by_ref(Pointer::const_addr(fx, 0), dest_layout)
|
|
|
|
}
|