wasmtime
wasmtime copied to clipboard
A fast and secure runtime for WebAssembly
Currently, when guest debugging is enabled (after #12051), we clone the code memory for each module for each store so that we can patch in breakpoints. We don't support registering...
In #12051 we added functionality to create private `CodeMemory`s per `Store` for each module instantiated in that store so that we could patch in breakpoints. The functionality currently clones the...
Currently there's no API to, given a `FutureReader`, perform a read and then cancel that read to get back the original `FutureReader`.
#### Feature For example for subtracting 2 mathematical vectors with 3 elements like so: ``` function u0:0(i64 sret, i64, i64) system_v { block0(v0: i64, v1: i64, v2: i64): v3 =...
Thanks for filing a bug report! Please fill out the TODOs below. **Note: if you want to report a security issue, please read our [security policy](https://bytecodealliance.org/security)!** ### Test Case Wasm...
Hi there! I want to link wasm components at runtime. How can I do this with version 39.0.0? ### Test Case Here is the test code: ```rust use std::{collections::HashMap, sync::Arc};...
Currently wasm-smith doesn't generate any atomic instructions at all, meaning there's no fuzz coverage of atomics. Before re-enabling threads as tier 1 we should ensure that this is taken care...
@dicej in the fuzzer I'm writing I'm finding that it's difficult to know when a producer/consumer is dropped by the guest in the host. Currently this is only detect-able via...
Fuzzing overnight plus some bisection locally shows that after https://github.com/bytecodealliance/wasmtime/pull/11751 and with https://github.com/bytecodealliance/wasmtime/pull/11953 applied the following fails locally ``` $ cargo run wast tests/misc_testsuite/component-model/resources.wast --async=false Compiling wasmtime-cli v39.0.0 (/Users/alex/code/wasmtime) Finished...