wasm_interp: create execute module

This commit is contained in:
Brian Carroll 2022-11-21 08:28:39 +00:00
parent d038094a51
commit 2ca74e5070
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
4 changed files with 557 additions and 2 deletions

View file

@ -7,7 +7,7 @@ use crate::Value;
/// Memory-efficient Struct-of-Arrays storage for the value stack.
/// Pack the values and their types as densely as possible,
/// to get better cache usage, at the expense of some extra logic.
struct ValueStack<'a> {
pub struct ValueStack<'a> {
bytes: Vec<'a, u8>,
is_float: BitVec,
is_64: BitVec,