mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 02:07:55 +00:00
94ec34c4d5
Separate between compilation and linker phases to allow deploy time linking and back-porting era compiler changes to fix #91. Unlinked contract binaries (caused by missing libraries or missing factory dependencies in turn) are emitted as raw ELF object. Few drive by fixes: - #98 - A compiler panic on missing libraries definitions. - Fixes some incosistent type forwarding in JSON output (empty string vs. null object). - Remove the unused fallback for size optimization setting. - Remove the broken `--lvm-ir` mode. - CI workflow fixes. --------- Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> Signed-off-by: xermicus <bigcyrill@hotmail.com> Signed-off-by: xermicus <cyrill@parity.io>
243 lines
8.0 KiB
Rust
243 lines
8.0 KiB
Rust
//! Translates the arithmetic operations.
|
|
|
|
use inkwell::values::BasicValue;
|
|
use revive_common::BIT_LENGTH_WORD;
|
|
|
|
use crate::polkavm::context::runtime::RuntimeFunction;
|
|
use crate::polkavm::context::Context;
|
|
use crate::polkavm::WriteLLVM;
|
|
|
|
/// Implements the division operator according to the EVM specification.
|
|
pub struct Division;
|
|
|
|
impl RuntimeFunction for Division {
|
|
const NAME: &'static str = "__revive_division";
|
|
|
|
fn r#type<'ctx>(context: &Context<'ctx>) -> inkwell::types::FunctionType<'ctx> {
|
|
context.word_type().fn_type(
|
|
&[context.word_type().into(), context.word_type().into()],
|
|
false,
|
|
)
|
|
}
|
|
|
|
fn emit_body<'ctx>(
|
|
&self,
|
|
context: &mut Context<'ctx>,
|
|
) -> anyhow::Result<Option<inkwell::values::BasicValueEnum<'ctx>>> {
|
|
let operand_1 = Self::paramater(context, 0).into_int_value();
|
|
let operand_2 = Self::paramater(context, 1).into_int_value();
|
|
|
|
wrapped_division(context, operand_2, || {
|
|
Ok(context
|
|
.builder()
|
|
.build_int_unsigned_div(operand_1, operand_2, "DIV")?)
|
|
})
|
|
.map(Into::into)
|
|
}
|
|
}
|
|
|
|
impl WriteLLVM for Division {
|
|
fn declare(&mut self, context: &mut Context) -> anyhow::Result<()> {
|
|
<Self as RuntimeFunction>::declare(self, context)
|
|
}
|
|
|
|
fn into_llvm(self, context: &mut Context) -> anyhow::Result<()> {
|
|
<Self as RuntimeFunction>::emit(&self, context)
|
|
}
|
|
}
|
|
|
|
/// Implements the signed division operator according to the EVM specification.
|
|
pub struct SignedDivision;
|
|
|
|
impl RuntimeFunction for SignedDivision {
|
|
const NAME: &'static str = "__revive_signed_division";
|
|
|
|
fn r#type<'ctx>(context: &Context<'ctx>) -> inkwell::types::FunctionType<'ctx> {
|
|
context.word_type().fn_type(
|
|
&[context.word_type().into(), context.word_type().into()],
|
|
false,
|
|
)
|
|
}
|
|
|
|
fn emit_body<'ctx>(
|
|
&self,
|
|
context: &mut Context<'ctx>,
|
|
) -> anyhow::Result<Option<inkwell::values::BasicValueEnum<'ctx>>> {
|
|
let operand_1 = Self::paramater(context, 0).into_int_value();
|
|
let operand_2 = Self::paramater(context, 1).into_int_value();
|
|
|
|
let block_calculate = context.append_basic_block("calculate");
|
|
let block_overflow = context.append_basic_block("overflow");
|
|
let block_select = context.append_basic_block("select_result");
|
|
let block_origin = context.basic_block();
|
|
context.builder().build_switch(
|
|
operand_2,
|
|
block_calculate,
|
|
&[
|
|
(context.word_type().const_zero(), block_select),
|
|
(context.word_type().const_all_ones(), block_overflow),
|
|
],
|
|
)?;
|
|
|
|
context.set_basic_block(block_calculate);
|
|
let quotient = context
|
|
.builder()
|
|
.build_int_signed_div(operand_1, operand_2, "SDIV")?;
|
|
context.build_unconditional_branch(block_select);
|
|
|
|
context.set_basic_block(block_overflow);
|
|
let max_uint = context.builder().build_int_z_extend(
|
|
context.integer_type(BIT_LENGTH_WORD - 1).const_all_ones(),
|
|
context.word_type(),
|
|
"max_uint",
|
|
)?;
|
|
let is_operand_1_overflow = context.builder().build_int_compare(
|
|
inkwell::IntPredicate::EQ,
|
|
operand_1,
|
|
context.builder().build_int_neg(max_uint, "min_uint")?,
|
|
"is_operand_1_overflow",
|
|
)?;
|
|
context.build_conditional_branch(is_operand_1_overflow, block_select, block_calculate)?;
|
|
|
|
context.set_basic_block(block_select);
|
|
let result = context.builder().build_phi(context.word_type(), "result")?;
|
|
result.add_incoming(&[
|
|
(&operand_1, block_overflow),
|
|
(&context.word_const(0), block_origin),
|
|
("ient.as_basic_value_enum(), block_calculate),
|
|
]);
|
|
Ok(Some(result.as_basic_value()))
|
|
}
|
|
}
|
|
|
|
impl WriteLLVM for SignedDivision {
|
|
fn declare(&mut self, context: &mut Context) -> anyhow::Result<()> {
|
|
<Self as RuntimeFunction>::declare(self, context)
|
|
}
|
|
|
|
fn into_llvm(self, context: &mut Context) -> anyhow::Result<()> {
|
|
<Self as RuntimeFunction>::emit(&self, context)
|
|
}
|
|
}
|
|
|
|
/// Implements the remainder operator according to the EVM specification.
|
|
pub struct Remainder;
|
|
|
|
impl RuntimeFunction for Remainder {
|
|
const NAME: &'static str = "__revive_remainder";
|
|
|
|
fn r#type<'ctx>(context: &Context<'ctx>) -> inkwell::types::FunctionType<'ctx> {
|
|
context.word_type().fn_type(
|
|
&[context.word_type().into(), context.word_type().into()],
|
|
false,
|
|
)
|
|
}
|
|
|
|
fn emit_body<'ctx>(
|
|
&self,
|
|
context: &mut Context<'ctx>,
|
|
) -> anyhow::Result<Option<inkwell::values::BasicValueEnum<'ctx>>> {
|
|
let operand_1 = Self::paramater(context, 0).into_int_value();
|
|
let operand_2 = Self::paramater(context, 1).into_int_value();
|
|
|
|
wrapped_division(context, operand_2, || {
|
|
Ok(context
|
|
.builder()
|
|
.build_int_unsigned_rem(operand_1, operand_2, "MOD")?)
|
|
})
|
|
.map(Into::into)
|
|
}
|
|
}
|
|
|
|
impl WriteLLVM for Remainder {
|
|
fn declare(&mut self, context: &mut Context) -> anyhow::Result<()> {
|
|
<Self as RuntimeFunction>::declare(self, context)
|
|
}
|
|
|
|
fn into_llvm(self, context: &mut Context) -> anyhow::Result<()> {
|
|
<Self as RuntimeFunction>::emit(&self, context)
|
|
}
|
|
}
|
|
|
|
/// Implements the signed remainder operator according to the EVM specification.
|
|
pub struct SignedRemainder;
|
|
|
|
impl RuntimeFunction for SignedRemainder {
|
|
const NAME: &'static str = "__revive_signed_remainder";
|
|
|
|
fn r#type<'ctx>(context: &Context<'ctx>) -> inkwell::types::FunctionType<'ctx> {
|
|
context.word_type().fn_type(
|
|
&[context.word_type().into(), context.word_type().into()],
|
|
false,
|
|
)
|
|
}
|
|
|
|
fn emit_body<'ctx>(
|
|
&self,
|
|
context: &mut Context<'ctx>,
|
|
) -> anyhow::Result<Option<inkwell::values::BasicValueEnum<'ctx>>> {
|
|
let operand_1 = Self::paramater(context, 0).into_int_value();
|
|
let operand_2 = Self::paramater(context, 1).into_int_value();
|
|
|
|
wrapped_division(context, operand_2, || {
|
|
Ok(context
|
|
.builder()
|
|
.build_int_signed_rem(operand_1, operand_2, "SMOD")?)
|
|
})
|
|
.map(Into::into)
|
|
}
|
|
}
|
|
|
|
impl WriteLLVM for SignedRemainder {
|
|
fn declare(&mut self, context: &mut Context) -> anyhow::Result<()> {
|
|
<Self as RuntimeFunction>::declare(self, context)
|
|
}
|
|
|
|
fn into_llvm(self, context: &mut Context) -> anyhow::Result<()> {
|
|
<Self as RuntimeFunction>::emit(&self, context)
|
|
}
|
|
}
|
|
|
|
/// Wrap division operations so that zero will be returned if the
|
|
/// denominator is zero (see also Ethereum YP Appendix H.2).
|
|
///
|
|
/// The closure is expected to calculate and return the quotient.
|
|
///
|
|
/// The result is either the calculated quotient or zero,
|
|
/// selected at runtime.
|
|
fn wrapped_division<'ctx, F, T>(
|
|
context: &Context<'ctx>,
|
|
denominator: inkwell::values::IntValue<'ctx>,
|
|
f: F,
|
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
|
where
|
|
F: FnOnce() -> anyhow::Result<T>,
|
|
T: inkwell::values::IntMathValue<'ctx>,
|
|
{
|
|
assert_eq!(
|
|
denominator.get_type().get_bit_width(),
|
|
revive_common::BIT_LENGTH_WORD as u32
|
|
);
|
|
|
|
let block_calculate = context.append_basic_block("calculate");
|
|
let block_select = context.append_basic_block("select");
|
|
let block_origin = context.basic_block();
|
|
context.builder().build_switch(
|
|
denominator,
|
|
block_calculate,
|
|
&[(context.word_const(0), block_select)],
|
|
)?;
|
|
|
|
context.set_basic_block(block_calculate);
|
|
let calculated_value = f()?.as_basic_value_enum();
|
|
context.build_unconditional_branch(block_select);
|
|
|
|
context.set_basic_block(block_select);
|
|
let result = context.builder().build_phi(context.word_type(), "result")?;
|
|
result.add_incoming(&[
|
|
(&context.word_const(0), block_origin),
|
|
(&calculated_value, block_calculate),
|
|
]);
|
|
Ok(result.as_basic_value())
|
|
}
|