2020-09-23 08:13:49 -05:00
|
|
|
//! Replaces 128-bit operators with lang item calls where necessary
|
2019-07-07 11:08:38 -05:00
|
|
|
|
2021-02-01 03:11:46 -06:00
|
|
|
use cranelift_codegen::ir::ArgumentPurpose;
|
|
|
|
|
2019-07-07 11:08:38 -05:00
|
|
|
use crate::prelude::*;
|
|
|
|
|
2020-03-27 06:14:45 -05:00
|
|
|
pub(crate) fn maybe_codegen<'tcx>(
|
2021-03-05 12:12:59 -06:00
|
|
|
fx: &mut FunctionCx<'_, '_, 'tcx>,
|
2019-07-07 11:08:38 -05:00
|
|
|
bin_op: BinOp,
|
|
|
|
checked: bool,
|
|
|
|
lhs: CValue<'tcx>,
|
|
|
|
rhs: CValue<'tcx>,
|
|
|
|
) -> Option<CValue<'tcx>> {
|
2021-03-05 12:12:59 -06: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 11:08:38 -05:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let lhs_val = lhs.load_scalar(fx);
|
|
|
|
let rhs_val = rhs.load_scalar(fx);
|
|
|
|
|
2019-08-14 06:01:55 -05:00
|
|
|
let is_signed = type_sign(lhs.layout().ty);
|
|
|
|
|
2019-07-07 11:08:38 -05:00
|
|
|
match bin_op {
|
2019-07-20 10:44:41 -05:00
|
|
|
BinOp::BitAnd | BinOp::BitOr | BinOp::BitXor => {
|
|
|
|
assert!(!checked);
|
2020-11-03 04:00:04 -06:00
|
|
|
None
|
2019-07-20 10:44:41 -05:00
|
|
|
}
|
2020-11-03 04:00:04 -06:00
|
|
|
BinOp::Add | BinOp::Sub if !checked => None,
|
2021-02-01 03:11:46 -06:00
|
|
|
BinOp::Mul if !checked => {
|
2021-03-05 12:12:59 -06:00
|
|
|
let val_ty = if is_signed { fx.tcx.types.i128 } else { fx.tcx.types.u128 };
|
2021-02-01 03:11:46 -06:00
|
|
|
Some(fx.easy_call("__multi3", &[lhs, rhs], val_ty))
|
2019-07-24 06:16:36 -05:00
|
|
|
}
|
2021-02-01 03:11:46 -06:00
|
|
|
BinOp::Add | BinOp::Sub | BinOp::Mul => {
|
|
|
|
assert!(checked);
|
2019-08-14 08:03:52 -05:00
|
|
|
let out_ty = fx.tcx.mk_tup([lhs.layout().ty, fx.tcx.types.bool].iter());
|
2021-02-01 03:11:46 -06:00
|
|
|
let out_place = CPlace::new_stack_slot(fx, fx.layout_of(out_ty));
|
|
|
|
let param_types = vec![
|
|
|
|
AbiParam::special(pointer_ty(fx.tcx), ArgumentPurpose::StructReturn),
|
|
|
|
AbiParam::new(types::I128),
|
|
|
|
AbiParam::new(types::I128),
|
|
|
|
];
|
2021-03-05 12:12:59 -06:00
|
|
|
let args = [out_place.to_ptr().get_addr(fx), lhs.load_scalar(fx), rhs.load_scalar(fx)];
|
2021-02-01 03:11:46 -06:00
|
|
|
let name = match (bin_op, is_signed) {
|
|
|
|
(BinOp::Add, false) => "__rust_u128_addo",
|
|
|
|
(BinOp::Add, true) => "__rust_i128_addo",
|
|
|
|
(BinOp::Sub, false) => "__rust_u128_subo",
|
|
|
|
(BinOp::Sub, true) => "__rust_i128_subo",
|
|
|
|
(BinOp::Mul, false) => "__rust_u128_mulo",
|
|
|
|
(BinOp::Mul, true) => "__rust_i128_mulo",
|
|
|
|
_ => unreachable!(),
|
2019-07-07 11:08:38 -05:00
|
|
|
};
|
2021-02-01 03:11:46 -06:00
|
|
|
fx.lib_call(name, param_types, vec![], &args);
|
|
|
|
Some(out_place.to_cvalue(fx))
|
2019-07-07 11:08:38 -05:00
|
|
|
}
|
2021-02-01 03:11:46 -06:00
|
|
|
BinOp::Offset => unreachable!("offset should only be used on pointers, not 128bit ints"),
|
2019-07-07 11:08:38 -05:00
|
|
|
BinOp::Div => {
|
2019-07-20 10:57:00 -05:00
|
|
|
assert!(!checked);
|
|
|
|
if is_signed {
|
|
|
|
Some(fx.easy_call("__divti3", &[lhs, rhs], fx.tcx.types.i128))
|
2019-07-07 11:08:38 -05:00
|
|
|
} else {
|
2019-07-20 10:57:00 -05:00
|
|
|
Some(fx.easy_call("__udivti3", &[lhs, rhs], fx.tcx.types.u128))
|
|
|
|
}
|
2019-07-07 11:08:38 -05:00
|
|
|
}
|
|
|
|
BinOp::Rem => {
|
2019-07-20 10:57:00 -05:00
|
|
|
assert!(!checked);
|
|
|
|
if is_signed {
|
|
|
|
Some(fx.easy_call("__modti3", &[lhs, rhs], fx.tcx.types.i128))
|
2019-07-07 11:08:38 -05:00
|
|
|
} else {
|
2019-07-20 10:57:00 -05:00
|
|
|
Some(fx.easy_call("__umodti3", &[lhs, rhs], fx.tcx.types.u128))
|
|
|
|
}
|
2019-07-07 11:08:38 -05:00
|
|
|
}
|
|
|
|
BinOp::Lt | BinOp::Le | BinOp::Eq | BinOp::Ge | BinOp::Gt | BinOp::Ne => {
|
|
|
|
assert!(!checked);
|
2020-11-03 04:00:04 -06:00
|
|
|
None
|
2019-07-07 11:08:38 -05:00
|
|
|
}
|
|
|
|
BinOp::Shl | BinOp::Shr => {
|
2019-07-20 10:44:41 -05:00
|
|
|
let is_overflow = if checked {
|
|
|
|
// rhs >= 128
|
|
|
|
|
|
|
|
// FIXME support non 128bit rhs
|
|
|
|
/*let (rhs_lsb, rhs_msb) = fx.bcx.ins().isplit(rhs_val);
|
|
|
|
let rhs_msb_gt_0 = fx.bcx.ins().icmp_imm(IntCC::NotEqual, rhs_msb, 0);
|
|
|
|
let rhs_lsb_ge_128 = fx.bcx.ins().icmp_imm(IntCC::SignedGreaterThan, rhs_lsb, 127);
|
|
|
|
let is_overflow = fx.bcx.ins().bor(rhs_msb_gt_0, rhs_lsb_ge_128);*/
|
|
|
|
let is_overflow = fx.bcx.ins().bconst(types::B1, false);
|
|
|
|
|
|
|
|
Some(fx.bcx.ins().bint(types::I8, is_overflow))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2021-03-05 12:12:59 -06:00
|
|
|
let truncated_rhs = clif_intcast(fx, rhs_val, types::I32, false);
|
|
|
|
let val = match bin_op {
|
|
|
|
BinOp::Shl => fx.bcx.ins().ishl(lhs_val, truncated_rhs),
|
|
|
|
BinOp::Shr => {
|
|
|
|
if is_signed {
|
|
|
|
fx.bcx.ins().sshr(lhs_val, truncated_rhs)
|
2019-07-20 10:44:41 -05:00
|
|
|
} else {
|
2021-03-05 12:12:59 -06:00
|
|
|
fx.bcx.ins().ushr(lhs_val, truncated_rhs)
|
2019-07-20 10:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
2021-03-05 12:12:59 -06:00
|
|
|
_ => unreachable!(),
|
2019-07-20 10:44:41 -05:00
|
|
|
};
|
|
|
|
if let Some(is_overflow) = is_overflow {
|
2019-08-14 08:03:52 -05:00
|
|
|
let out_ty = fx.tcx.mk_tup([lhs.layout().ty, fx.tcx.types.bool].iter());
|
2019-07-20 10:44:41 -05:00
|
|
|
Some(CValue::by_val_pair(val, is_overflow, fx.layout_of(out_ty)))
|
|
|
|
} else {
|
2021-03-05 12:12:59 -06:00
|
|
|
Some(CValue::by_val(val, lhs.layout()))
|
2019-07-20 10:44:41 -05:00
|
|
|
}
|
2019-07-07 11:08:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|