wasmtime icon indicating copy to clipboard operation
wasmtime copied to clipboard

A fast and secure runtime for WebAssembly

Results 758 wasmtime issues
Sort by recently updated
recently updated
newest added

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...

wasmtime
wasmtime:debugging

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...

wasmtime
wasmtime:debugging
performance

Currently there's no API to, given a `FutureReader`, perform a read and then cancel that read to get back the original `FutureReader`.

wasm-proposal:component-model-async

#### 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 =...

cranelift:area:x64

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...

wasm-proposal:memory64

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};...

bug
wasm-proposal:component-model-async

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...

fuzzing
wasm-proposal:threads

@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...

wasm-proposal:component-model-async

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...

fuzz-bug
wasm-proposal:component-threading