Style
This commit is contained in:
parent
2d2d1f49c3
commit
dedcda99dd
156
src/memory.rs
156
src/memory.rs
|
@ -36,19 +36,19 @@ impl ::core::ops::Deref for MemoryRef {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait Allocator: Deref<Target=[u8]> + DerefMut<Target=[u8]> {
|
pub trait Allocator: Deref<Target=[u8]> + DerefMut<Target=[u8]> {
|
||||||
fn resize(&mut self, usize, value: u8);
|
fn resize(&mut self, usize, value: u8);
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Allocator for Vec<u8> {
|
impl Allocator for Vec<u8> {
|
||||||
fn resize(&mut self, size: usize, value: u8) {
|
fn resize(&mut self, size: usize, value: u8) {
|
||||||
Vec::resize(self, size, value)
|
Vec::resize(self, size, value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Allocator for &'static mut [u8] {
|
impl Allocator for &'static mut [u8] {
|
||||||
fn resize(&mut self, _size: usize, _value: u8) {
|
fn resize(&mut self, _size: usize, _value: u8) {
|
||||||
// no op
|
// no op
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Runtime representation of a linear memory (or `memory` for short).
|
/// Runtime representation of a linear memory (or `memory` for short).
|
||||||
|
@ -65,16 +65,16 @@ impl Allocator for &'static mut [u8] {
|
||||||
///
|
///
|
||||||
/// [`LINEAR_MEMORY_PAGE_SIZE`]: constant.LINEAR_MEMORY_PAGE_SIZE.html
|
/// [`LINEAR_MEMORY_PAGE_SIZE`]: constant.LINEAR_MEMORY_PAGE_SIZE.html
|
||||||
pub struct MemoryInstance {
|
pub struct MemoryInstance {
|
||||||
/// Memory limits.
|
/// Memory limits.
|
||||||
limits: ResizableLimits,
|
limits: ResizableLimits,
|
||||||
/// Linear memory buffer with lazy allocation.
|
/// Linear memory buffer with lazy allocation.
|
||||||
buffer: RefCell<Box<dyn Allocator>>,
|
buffer: RefCell<Box<dyn Allocator>>,
|
||||||
initial: Pages,
|
initial: Pages,
|
||||||
current_size: Cell<usize>,
|
current_size: Cell<usize>,
|
||||||
maximum: Option<Pages>,
|
maximum: Option<Pages>,
|
||||||
lowest_used: Cell<u32>,
|
lowest_used: Cell<u32>,
|
||||||
buffer_ptr: Cell<*mut u8>,
|
buffer_ptr: Cell<*mut u8>,
|
||||||
buffer_size: Cell<usize>,
|
buffer_size: Cell<usize>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Debug for MemoryInstance {
|
impl fmt::Debug for MemoryInstance {
|
||||||
|
@ -144,52 +144,52 @@ impl MemoryInstance {
|
||||||
validation::validate_memory(initial_u32, maximum_u32).map_err(Error::Memory)?;
|
validation::validate_memory(initial_u32, maximum_u32).map_err(Error::Memory)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
let allocator = Box::new(Vec::with_capacity(4096));
|
let allocator = Box::new(Vec::with_capacity(4096));
|
||||||
let memory = MemoryInstance::new(initial, maximum, allocator);
|
let memory = MemoryInstance::new(initial, maximum, allocator);
|
||||||
Ok(MemoryRef(Rc::new(memory)))
|
Ok(MemoryRef(Rc::new(memory)))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Create a memory instance using specified raw memory. The memory address must
|
/// Create a memory instance using specified raw memory. The memory address must
|
||||||
/// be aligned to a page size. The size must be a multiple of page size.
|
/// be aligned to a page size. The size must be a multiple of page size.
|
||||||
///
|
///
|
||||||
/// # Errors
|
/// # Errors
|
||||||
///
|
///
|
||||||
/// Returns `Err` if:
|
/// Returns `Err` if:
|
||||||
///
|
///
|
||||||
/// - `buffer` is not aligned to page size.
|
/// - `buffer` is not aligned to page size.
|
||||||
/// - `size` is not a multiple of page size.
|
/// - `size` is not a multiple of page size.
|
||||||
pub fn with_memory(buffer: *mut u8, size: usize) -> Result<MemoryRef, Error> {
|
pub fn with_memory(buffer: *mut u8, size: usize) -> Result<MemoryRef, Error> {
|
||||||
if (buffer as usize) % LINEAR_MEMORY_PAGE_SIZE.0 != 0 {
|
if (buffer as usize) % LINEAR_MEMORY_PAGE_SIZE.0 != 0 {
|
||||||
return Err(Error::Memory(format!(
|
return Err(Error::Memory(format!(
|
||||||
"Buffer address must be aligned to page size",
|
"Buffer address must be aligned to page size",
|
||||||
)))
|
)))
|
||||||
}
|
}
|
||||||
|
|
||||||
if size % LINEAR_MEMORY_PAGE_SIZE.0 != 0 {
|
if size % LINEAR_MEMORY_PAGE_SIZE.0 != 0 {
|
||||||
return Err(Error::Memory(format!(
|
return Err(Error::Memory(format!(
|
||||||
"Size {} must be multiple of page size",
|
"Size {} must be multiple of page size",
|
||||||
size,
|
size,
|
||||||
)))
|
)))
|
||||||
}
|
}
|
||||||
|
|
||||||
let pages: Pages = Bytes(size).round_up_to();
|
let pages: Pages = Bytes(size).round_up_to();
|
||||||
if pages > Pages(validation::LINEAR_MEMORY_MAX_PAGES as usize) {
|
if pages > Pages(validation::LINEAR_MEMORY_MAX_PAGES as usize) {
|
||||||
return Err(Error::Memory(format!(
|
return Err(Error::Memory(format!(
|
||||||
"Memory size must be at most {} pages",
|
"Memory size must be at most {} pages",
|
||||||
validation::LINEAR_MEMORY_MAX_PAGES
|
validation::LINEAR_MEMORY_MAX_PAGES
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
let allocator = unsafe { Box::new(slice::from_raw_parts_mut(buffer, size)) };
|
let allocator = unsafe { Box::new(slice::from_raw_parts_mut(buffer, size)) };
|
||||||
let memory = MemoryInstance::new(pages, Some(pages), allocator);
|
let memory = MemoryInstance::new(pages, Some(pages), allocator);
|
||||||
Ok(MemoryRef(Rc::new(memory)))
|
Ok(MemoryRef(Rc::new(memory)))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Create new linear memory instance.
|
/// Create new linear memory instance.
|
||||||
fn new(initial: Pages, maximum: Option<Pages>, mut allocator: Box<Allocator>) -> Self {
|
fn new(initial: Pages, maximum: Option<Pages>, mut allocator: Box<Allocator>) -> Self {
|
||||||
let limits = ResizableLimits::new(initial.0 as u32, maximum.map(|p| p.0 as u32));
|
let limits = ResizableLimits::new(initial.0 as u32, maximum.map(|p| p.0 as u32));
|
||||||
|
|
||||||
let initial_size: Bytes = initial.into();
|
let initial_size: Bytes = initial.into();
|
||||||
let ptr = allocator.as_mut_ptr();
|
let ptr = allocator.as_mut_ptr();
|
||||||
MemoryInstance {
|
MemoryInstance {
|
||||||
limits: limits,
|
limits: limits,
|
||||||
buffer: RefCell::new(allocator),
|
buffer: RefCell::new(allocator),
|
||||||
|
@ -197,8 +197,8 @@ impl MemoryInstance {
|
||||||
current_size: Cell::new(initial_size.0),
|
current_size: Cell::new(initial_size.0),
|
||||||
maximum: maximum,
|
maximum: maximum,
|
||||||
lowest_used: Cell::new(u32::max_value()),
|
lowest_used: Cell::new(u32::max_value()),
|
||||||
buffer_ptr: Cell::new(ptr),
|
buffer_ptr: Cell::new(ptr),
|
||||||
buffer_size: Cell::new(0),
|
buffer_size: Cell::new(0),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -263,7 +263,7 @@ impl MemoryInstance {
|
||||||
pub fn get_value<T: LittleEndianConvert>(&self, offset: u32) -> Result<T, Error> {
|
pub fn get_value<T: LittleEndianConvert>(&self, offset: u32) -> Result<T, Error> {
|
||||||
let region =
|
let region =
|
||||||
self.checked_region(offset as usize, ::core::mem::size_of::<T>())?;
|
self.checked_region(offset as usize, ::core::mem::size_of::<T>())?;
|
||||||
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
||||||
Ok(T::from_little_endian(&mem[region.range()]).expect("Slice size is checked"))
|
Ok(T::from_little_endian(&mem[region.range()]).expect("Slice size is checked"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -275,7 +275,7 @@ impl MemoryInstance {
|
||||||
/// [`get_into`]: #method.get_into
|
/// [`get_into`]: #method.get_into
|
||||||
pub fn get(&self, offset: u32, size: usize) -> Result<Vec<u8>, Error> {
|
pub fn get(&self, offset: u32, size: usize) -> Result<Vec<u8>, Error> {
|
||||||
let region = self.checked_region(offset as usize, size)?;
|
let region = self.checked_region(offset as usize, size)?;
|
||||||
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
||||||
Ok(mem[region.range()].to_vec())
|
Ok(mem[region.range()].to_vec())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -286,7 +286,7 @@ impl MemoryInstance {
|
||||||
/// Returns `Err` if the specified region is out of bounds.
|
/// Returns `Err` if the specified region is out of bounds.
|
||||||
pub fn get_into(&self, offset: u32, target: &mut [u8]) -> Result<(), Error> {
|
pub fn get_into(&self, offset: u32, target: &mut [u8]) -> Result<(), Error> {
|
||||||
let region = self.checked_region(offset as usize, target.len())?;
|
let region = self.checked_region(offset as usize, target.len())?;
|
||||||
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
||||||
target.copy_from_slice(&mem[region.range()]);
|
target.copy_from_slice(&mem[region.range()]);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -301,7 +301,7 @@ impl MemoryInstance {
|
||||||
if offset < self.lowest_used.get() {
|
if offset < self.lowest_used.get() {
|
||||||
self.lowest_used.set(offset);
|
self.lowest_used.set(offset);
|
||||||
}
|
}
|
||||||
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
||||||
mem[range].copy_from_slice(value);
|
mem[range].copy_from_slice(value);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -314,7 +314,7 @@ impl MemoryInstance {
|
||||||
if offset < self.lowest_used.get() {
|
if offset < self.lowest_used.get() {
|
||||||
self.lowest_used.set(offset);
|
self.lowest_used.set(offset);
|
||||||
}
|
}
|
||||||
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
let mem = unsafe { slice::from_raw_parts_mut(self.buffer_ptr.get(), self.buffer_size.get()) };
|
||||||
value.into_little_endian(&mut mem[range]);
|
value.into_little_endian(&mut mem[range]);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -366,8 +366,8 @@ impl MemoryInstance {
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
if end <= self.current_size.get() && self.buffer_size.get() < end {
|
if end <= self.current_size.get() && self.buffer_size.get() < end {
|
||||||
let mut allocator = self.buffer.borrow_mut();
|
let mut allocator = self.buffer.borrow_mut();
|
||||||
allocator.resize(end, 0);
|
allocator.resize(end, 0);
|
||||||
self.buffer_ptr.set(allocator.as_mut_ptr());
|
self.buffer_ptr.set(allocator.as_mut_ptr());
|
||||||
self.buffer_size.set(allocator.len());
|
self.buffer_size.set(allocator.len());
|
||||||
}
|
}
|
||||||
|
@ -410,10 +410,10 @@ impl MemoryInstance {
|
||||||
|
|
||||||
let max = cmp::max(end1, end2);
|
let max = cmp::max(end1, end2);
|
||||||
if max <= self.current_size.get() && self.buffer_size.get() < max {
|
if max <= self.current_size.get() && self.buffer_size.get() < max {
|
||||||
let mut allocator = self.buffer.borrow_mut();
|
let mut allocator = self.buffer.borrow_mut();
|
||||||
allocator.resize(max, 0);
|
allocator.resize(max, 0);
|
||||||
self.buffer_ptr.set(allocator.as_mut_ptr());
|
self.buffer_ptr.set(allocator.as_mut_ptr());
|
||||||
self.buffer_size.set(allocator.len());
|
self.buffer_size.set(allocator.len());
|
||||||
}
|
}
|
||||||
|
|
||||||
if end1 > self.buffer_size.get() {
|
if end1 > self.buffer_size.get() {
|
||||||
|
@ -541,13 +541,13 @@ impl MemoryInstance {
|
||||||
dst.lowest_used.set(dst_offset as u32);
|
dst.lowest_used.set(dst_offset as u32);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
::core::ptr::copy_nonoverlapping(
|
::core::ptr::copy_nonoverlapping(
|
||||||
src.buffer_ptr.get().offset(src_range.start as isize),
|
src.buffer_ptr.get().offset(src_range.start as isize),
|
||||||
dst.buffer_ptr.get().offset(dst_range.start as isize),
|
dst.buffer_ptr.get().offset(dst_range.start as isize),
|
||||||
len,
|
len,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -566,13 +566,13 @@ impl MemoryInstance {
|
||||||
self.lowest_used.set(offset as u32);
|
self.lowest_used.set(offset as u32);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
::core::ptr::write_bytes(
|
::core::ptr::write_bytes(
|
||||||
self.buffer_ptr.get().offset(range.start as isize),
|
self.buffer_ptr.get().offset(range.start as isize),
|
||||||
new_val,
|
new_val,
|
||||||
len,
|
len,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue