mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-15 05:41:08 +00:00
f0f344a139
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> Signed-off-by: xermicus <cyrill@parity.io>
90 lines
2.2 KiB
Rust
90 lines
2.2 KiB
Rust
//! Translates the heap memory operations.
|
|
|
|
use inkwell::values::BasicValue;
|
|
|
|
use crate::polkavm::context::address_space::AddressSpace;
|
|
use crate::polkavm::context::pointer::Pointer;
|
|
use crate::polkavm::context::Context;
|
|
use crate::polkavm::Dependency;
|
|
|
|
/// Translates the `msize` instruction.
|
|
pub fn msize<'ctx, D>(
|
|
context: &mut Context<'ctx, D>,
|
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
|
where
|
|
D: Dependency + Clone,
|
|
{
|
|
Ok(context
|
|
.builder()
|
|
.build_int_z_extend(
|
|
context.build_msize()?,
|
|
context.word_type(),
|
|
"heap_size_extended",
|
|
)?
|
|
.as_basic_value_enum())
|
|
}
|
|
|
|
/// Translates the `mload` instruction.
|
|
/// Uses the main heap.
|
|
pub fn load<'ctx, D>(
|
|
context: &mut Context<'ctx, D>,
|
|
offset: inkwell::values::IntValue<'ctx>,
|
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
|
where
|
|
D: Dependency + Clone,
|
|
{
|
|
let pointer = Pointer::new_with_offset(
|
|
context,
|
|
AddressSpace::Heap,
|
|
context.word_type(),
|
|
offset,
|
|
"memory_load_pointer",
|
|
);
|
|
context.build_load(pointer, "memory_load_result")
|
|
}
|
|
|
|
/// Translates the `mstore` instruction.
|
|
/// Uses the main heap.
|
|
pub fn store<'ctx, D>(
|
|
context: &mut Context<'ctx, D>,
|
|
offset: inkwell::values::IntValue<'ctx>,
|
|
value: inkwell::values::IntValue<'ctx>,
|
|
) -> anyhow::Result<()>
|
|
where
|
|
D: Dependency + Clone,
|
|
{
|
|
let pointer = Pointer::new_with_offset(
|
|
context,
|
|
AddressSpace::Heap,
|
|
context.word_type(),
|
|
offset,
|
|
"memory_store_pointer",
|
|
);
|
|
context.build_store(pointer, value)?;
|
|
Ok(())
|
|
}
|
|
|
|
/// Translates the `mstore8` instruction.
|
|
/// Uses the main heap.
|
|
pub fn store_byte<'ctx, D>(
|
|
context: &mut Context<'ctx, D>,
|
|
offset: inkwell::values::IntValue<'ctx>,
|
|
value: inkwell::values::IntValue<'ctx>,
|
|
) -> anyhow::Result<()>
|
|
where
|
|
D: Dependency + Clone,
|
|
{
|
|
let byte_type = context.byte_type();
|
|
let value = context
|
|
.builder()
|
|
.build_int_truncate(value, byte_type, "mstore8_value")?;
|
|
let pointer = Pointer::new_with_offset(
|
|
context,
|
|
AddressSpace::Heap,
|
|
byte_type,
|
|
offset,
|
|
"mstore8_destination",
|
|
);
|
|
context.build_store(pointer, value)
|
|
}
|