2023-08-15 09:32:59 -05:00
|
|
|
//! Memory implementations
|
|
|
|
|
|
|
|
pub mod softpaging;
|
2023-08-17 18:41:05 -05:00
|
|
|
|
2023-08-17 19:31:49 -05:00
|
|
|
mod addr;
|
|
|
|
|
|
|
|
pub use addr::Address;
|
|
|
|
use {derive_more::Display, hbbytecode::ProgramVal};
|
|
|
|
|
2023-08-17 18:41:05 -05:00
|
|
|
/// Load-store memory access
|
|
|
|
pub trait Memory {
|
|
|
|
/// Load data from memory on address
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
/// - Shall not overrun the buffer
|
2023-08-17 19:31:49 -05:00
|
|
|
unsafe fn load(
|
|
|
|
&mut self,
|
|
|
|
addr: Address,
|
|
|
|
target: *mut u8,
|
|
|
|
count: usize,
|
|
|
|
) -> Result<(), LoadError>;
|
2023-08-17 18:41:05 -05:00
|
|
|
|
|
|
|
/// Store data to memory on address
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
/// - Shall not overrun the buffer
|
|
|
|
unsafe fn store(
|
|
|
|
&mut self,
|
2023-08-17 19:31:49 -05:00
|
|
|
addr: Address,
|
2023-08-17 18:41:05 -05:00
|
|
|
source: *const u8,
|
|
|
|
count: usize,
|
|
|
|
) -> Result<(), StoreError>;
|
|
|
|
|
|
|
|
/// Read from program memory to execute
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
/// - Data read have to be valid
|
2023-08-17 19:31:49 -05:00
|
|
|
unsafe fn prog_read<T: ProgramVal>(&mut self, addr: Address) -> Option<T>;
|
2023-08-17 18:41:05 -05:00
|
|
|
|
|
|
|
/// Read from program memory to exectue
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
/// - You have to be really sure that these bytes are there, understand?
|
2023-08-17 19:31:49 -05:00
|
|
|
unsafe fn prog_read_unchecked<T: ProgramVal>(&mut self, addr: Address) -> T;
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Unhandled load access trap
|
|
|
|
#[derive(Clone, Copy, Display, Debug, PartialEq, Eq)]
|
2023-08-17 19:31:49 -05:00
|
|
|
#[display(fmt = "Load access error at address {_0}")]
|
|
|
|
pub struct LoadError(pub Address);
|
2023-08-17 18:41:05 -05:00
|
|
|
|
|
|
|
/// Unhandled store access trap
|
|
|
|
#[derive(Clone, Copy, Display, Debug, PartialEq, Eq)]
|
2023-08-17 19:31:49 -05:00
|
|
|
#[display(fmt = "Store access error at address {_0}")]
|
|
|
|
pub struct StoreError(pub Address);
|
2023-08-17 18:41:05 -05:00
|
|
|
|
|
|
|
/// Reason to access memory
|
|
|
|
#[derive(Clone, Copy, Display, Debug, PartialEq, Eq)]
|
|
|
|
pub enum MemoryAccessReason {
|
|
|
|
/// Memory was accessed for load (read)
|
|
|
|
Load,
|
|
|
|
/// Memory was accessed for store (write)
|
|
|
|
Store,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<LoadError> for crate::VmRunError {
|
|
|
|
fn from(value: LoadError) -> Self {
|
|
|
|
Self::LoadAccessEx(value.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<StoreError> for crate::VmRunError {
|
|
|
|
fn from(value: StoreError) -> Self {
|
|
|
|
Self::StoreAccessEx(value.0)
|
|
|
|
}
|
|
|
|
}
|