mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
wasm_interp: create execute
module
This commit is contained in:
parent
d038094a51
commit
2ca74e5070
4 changed files with 557 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue