RReverser labeled Issue #1658:
I'm using Wasmtime 0.16.0.
I've noticed that, even with,
--enable-threads
, Wasmtime fails to parse modules defining shared memories, e.g.: https://github.com/GoogleChromeLabs/wasm-feature-detect/blob/master/src/detectors/threads/module.wat(module (memory 1 1 shared) (func i32.const 0 i32.atomic.load drop ) )
results in:
Caused by: 0: failed directive on C:\Users\rreverser\Projects\wasm-feature-detect\src\detectors\threads\module.wat:5:1 1: WebAssembly failed to compile 2: WebAssembly translation error 3: Unsupported feature: shared memories
While I know this feature is experimental and currently not very useful in Wasmtime, it seems unexpected because the comment for
enable_threads
suggests this should work at this flag enables shared memory and atomics:
RReverser opened Issue #1658:
I'm using Wasmtime 0.16.0.
I've noticed that, even with,
--enable-threads
, Wasmtime fails to parse modules defining shared memories, e.g.: https://github.com/GoogleChromeLabs/wasm-feature-detect/blob/master/src/detectors/threads/module.wat(module (memory 1 1 shared) (func i32.const 0 i32.atomic.load drop ) )
results in:
Caused by: 0: failed directive on C:\Users\rreverser\Projects\wasm-feature-detect\src\detectors\threads\module.wat:5:1 1: WebAssembly failed to compile 2: WebAssembly translation error 3: Unsupported feature: shared memories
While I know this feature is experimental and currently not very useful in Wasmtime, it seems unexpected because the comment for
enable_threads
suggests this should work at this flag enables shared memory and atomics:
bjorn3 commented on Issue #1658:
Atomics are not implemented by Cranelift at all.
programmerjake commented on Issue #1658:
Atomics are not implemented by Cranelift at all.
they've since been implemented. https://github.com/bytecodealliance/wasmtime/issues/1059#issuecomment-679061786
Last updated: Nov 22 2024 at 16:03 UTC