Home
last modified time | relevance | path

Searched refs:stack_zeroing (Results 1 – 3 of 3) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/
H A Don_demand.rs36 stack_zeroing: bool, field
44 stack_zeroing: bool, in new()
46 let _ = (stack_size, stack_zeroing); // suppress warnings when async feature is disabled. in new()
54 stack_zeroing, in new()
74 stack_zeroing: false, in default()
189 let stack = stack_creator.new_stack(self.stack_size, self.stack_zeroing)?; in allocate_fiber_stack()
192 None => wasmtime_fiber::FiberStack::new(self.stack_size, self.stack_zeroing), in allocate_fiber_stack()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/pooling/
H A Dgeneric_stack_pool.rs25 stack_zeroing: bool, field
39 stack_zeroing: config.async_stack_zeroing, in new()
64 match wasmtime_fiber::FiberStack::new(self.stack_size, self.stack_zeroing) { in allocate()
/wasmtime-44.0.1/crates/wasmtime/src/
H A Dconfig.rs2528 let (stack_size, stack_zeroing) = (self.async_stack_size, self.async_stack_zeroing); in build_allocator()
2531 let (stack_size, stack_zeroing) = (0, false); in build_allocator()
2540 stack_zeroing, in build_allocator()
2552 config.async_stack_zeroing = stack_zeroing; in build_allocator()