2020-09-23 15:13:49 +02:00
|
|
|
//! Replaces 128-bit operators with lang item calls where necessary
|
2019-07-07 18:08:38 +02:00
|
|
|
|
2021-02-01 10:11:46 +01:00
|
|
|
use cranelift_codegen::ir::ArgumentPurpose;
|
|
|
|
|
2019-07-07 18:08:38 +02:00
|
|
|
use crate::prelude::*;
|
|
|
|
|
2020-03-27 12:14:45 +01:00
|
|
|
pub(crate) fn maybe_codegen<'tcx>(
|
2021-03-05 19:12:59 +01:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
2019-07-07 18:08:38 +02:00
|
|
|
bin_op: BinOp,
|
|
|
|
lhs: CValue<'tcx>,
|
|
|
|
rhs: CValue<'tcx>,
|
|
|
|
) -> Option<CValue<'tcx>> {
|
2021-03-05 19:12:59 +01:00
|
|
|
if lhs.layout().ty != fx.tcx.types.u128
|
|
|
|
&& lhs.layout().ty != fx.tcx.types.i128
|
|
|
|
&& rhs.layout().ty != fx.tcx.types.u128
|
|
|
|
&& rhs.layout().ty != fx.tcx.types.i128
|
|
|
|
{
|
2019-07-07 18:08:38 +02:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2019-08-14 13:01:55 +02:00
|
|
|
let is_signed = type_sign(lhs.layout().ty);
|
|
|
|
|
2019-07-07 18:08:38 +02:00
|
|
|
match bin_op {
|
2023-04-29 12:00:43 +00:00
|
|
|
BinOp::BitAnd | BinOp::BitOr | BinOp::BitXor => None,
|
2023-06-03 00:41:50 -07:00
|
|
|
BinOp::Add | BinOp::AddUnchecked | BinOp::Sub | BinOp::SubUnchecked => None,
|
2024-07-20 17:03:35 +01:00
|
|
|
BinOp::Mul | BinOp::MulUnchecked => None,
|
2021-02-01 10:11:46 +01:00
|
|
|
BinOp::Offset => unreachable!("offset should only be used on pointers, not 128bit ints"),
|
2021-03-29 10:45:09 +02:00
|
|
|
BinOp::Div | BinOp::Rem => {
|
|
|
|
let name = match (bin_op, is_signed) {
|
|
|
|
(BinOp::Div, false) => "__udivti3",
|
|
|
|
(BinOp::Div, true) => "__divti3",
|
|
|
|
(BinOp::Rem, false) => "__umodti3",
|
|
|
|
(BinOp::Rem, true) => "__modti3",
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
if fx.tcx.sess.target.is_like_windows {
|
2023-03-15 14:41:48 +00:00
|
|
|
let args = [lhs.load_scalar(fx), rhs.load_scalar(fx)];
|
2021-03-29 10:45:09 +02:00
|
|
|
let ret = fx.lib_call(
|
|
|
|
name,
|
2023-03-15 14:41:48 +00:00
|
|
|
vec![AbiParam::new(types::I128), AbiParam::new(types::I128)],
|
2021-03-29 10:45:09 +02:00
|
|
|
vec![AbiParam::new(types::I64X2)],
|
|
|
|
&args,
|
|
|
|
)[0];
|
2023-04-29 12:00:43 +00:00
|
|
|
// FIXME(bytecodealliance/wasmtime#6104) use bitcast instead of store to get from i64x2 to i128
|
2021-03-29 10:45:09 +02:00
|
|
|
let ret_place = CPlace::new_stack_slot(fx, lhs.layout());
|
|
|
|
ret_place.to_ptr().store(fx, ret, MemFlags::trusted());
|
|
|
|
Some(ret_place.to_cvalue(fx))
|
2019-07-07 18:08:38 +02:00
|
|
|
} else {
|
2023-03-15 14:41:48 +00:00
|
|
|
let args = [lhs.load_scalar(fx), rhs.load_scalar(fx)];
|
|
|
|
let ret_val = fx.lib_call(
|
|
|
|
name,
|
|
|
|
vec![AbiParam::new(types::I128), AbiParam::new(types::I128)],
|
|
|
|
vec![AbiParam::new(types::I128)],
|
|
|
|
&args,
|
|
|
|
)[0];
|
|
|
|
Some(CValue::by_val(ret_val, lhs.layout()))
|
2019-07-20 17:57:00 +02:00
|
|
|
}
|
2019-07-07 18:08:38 +02:00
|
|
|
}
|
2023-03-05 20:19:41 -08:00
|
|
|
BinOp::Lt | BinOp::Le | BinOp::Eq | BinOp::Ge | BinOp::Gt | BinOp::Ne | BinOp::Cmp => None,
|
2023-06-03 00:41:50 -07:00
|
|
|
BinOp::Shl | BinOp::ShlUnchecked | BinOp::Shr | BinOp::ShrUnchecked => None,
|
2024-05-16 02:07:31 -07:00
|
|
|
BinOp::AddWithOverflow | BinOp::SubWithOverflow | BinOp::MulWithOverflow => unreachable!(),
|
2019-07-07 18:08:38 +02:00
|
|
|
}
|
|
|
|
}
|
2023-04-29 12:00:43 +00:00
|
|
|
|
2025-01-09 16:04:25 +00:00
|
|
|
pub(crate) fn maybe_codegen_mul_checked<'tcx>(
|
2023-04-29 12:00:43 +00:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
|
|
|
lhs: CValue<'tcx>,
|
|
|
|
rhs: CValue<'tcx>,
|
|
|
|
) -> Option<CValue<'tcx>> {
|
|
|
|
if lhs.layout().ty != fx.tcx.types.u128
|
|
|
|
&& lhs.layout().ty != fx.tcx.types.i128
|
|
|
|
&& rhs.layout().ty != fx.tcx.types.u128
|
|
|
|
&& rhs.layout().ty != fx.tcx.types.i128
|
|
|
|
{
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let is_signed = type_sign(lhs.layout().ty);
|
2024-12-15 11:03:37 +00:00
|
|
|
let oflow_out_place = CPlace::new_stack_slot(fx, fx.layout_of(fx.tcx.types.i32));
|
2025-01-09 16:04:25 +00:00
|
|
|
let param_types = vec![
|
|
|
|
AbiParam::new(types::I128),
|
|
|
|
AbiParam::new(types::I128),
|
2024-12-15 11:03:37 +00:00
|
|
|
AbiParam::special(fx.pointer_type, ArgumentPurpose::Normal),
|
2025-01-09 16:04:25 +00:00
|
|
|
];
|
2024-12-15 11:03:37 +00:00
|
|
|
let args = [lhs.load_scalar(fx), rhs.load_scalar(fx), oflow_out_place.to_ptr().get_addr(fx)];
|
|
|
|
let ret = fx.lib_call(
|
2025-01-09 16:04:25 +00:00
|
|
|
if is_signed { "__rust_i128_mulo" } else { "__rust_u128_mulo" },
|
|
|
|
param_types,
|
2024-12-15 11:03:37 +00:00
|
|
|
vec![AbiParam::new(types::I128)],
|
2025-01-09 16:04:25 +00:00
|
|
|
&args,
|
|
|
|
);
|
2024-12-15 11:03:37 +00:00
|
|
|
let mul = ret[0];
|
|
|
|
let oflow = oflow_out_place.to_cvalue(fx).load_scalar(fx);
|
|
|
|
let oflow = clif_intcast(fx, oflow, types::I8, false);
|
|
|
|
let layout = fx.layout_of(Ty::new_tup(fx.tcx, &[lhs.layout().ty, fx.tcx.types.bool]));
|
|
|
|
Some(CValue::by_val_pair(mul, oflow, layout))
|
2023-04-29 12:00:43 +00:00
|
|
|
}
|