Home
last modified time | relevance | path

Searched refs:with_stack (Results 1 – 2 of 2) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dinterpreter.rs64 vm: Vm::with_stack(engine.config().max_wasm_stack)?, in new()
/wasmtime-44.0.1/pulley/src/
H A Dinterp.rs36 Self::with_stack(DEFAULT_STACK_SIZE) in new()
40 pub fn with_stack(stack_size: usize) -> Result<Self, OutOfMemory> { in with_stack() method
42 state: MachineState::with_stack(stack_size)?, in with_stack()
894 fn with_stack(stack_size: usize) -> Result<Self, OutOfMemory> { in with_stack() method
1292 let mut state = MachineState::with_stack(16).unwrap(); in simple_push_pop()