wazero icon indicating copy to clipboard operation
wazero copied to clipboard

wazero: the zero dependency WebAssembly runtime for Go developers

Results 82 wazero issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** I'd like to be able to provide different sets of host functions to each instantiated module. **Describe the solution you'd...

enhancement

This is an umbrella issue intended to track the effort to implement the path resolution algorithm described by [WASI filesystem](https://github.com/WebAssembly/wasi-filesystem/blob/main/path-resolution.md). As described prominently in our documentation, our current WASI filesystem...

enhancement

This repository doesn't have a SECURITY.md. I've poked around in README.md and CONTRIBUTING.md, and I can't seem to find a path for reporting security issues in them. Doesn't have to...

enhancement

Implements the tail call extension proposal. Besides the included test cases, I have verified that this works with a simple factorial compiled with GHC, and also made an in-depth analysis...

**Is your feature request related to a problem? Please describe.** I am trying to run a WASM workload that makes use of the return_call instruction (see https://developer.mozilla.org/en-US/docs/WebAssembly/Reference/Control_flow/call). Currently execution fails...

enhancement

**Describe the bug** The arm64 compilation causes a panic. The address mode is not supported. Caused in the file: _internal/engine/wazevo/backend/isa/arm64/machine.go_ **Method**: _resolveAddressingMode_ **Line** _341_ The addressing mode "addressModeKindRegUnsignedImm12" is not...

bug

**Describe the bug** Without the appropriate codesign entitlements, OSX will kill any go processes attempting to compile a wasm file. **To Reproduce** Download a codesigned golang app utilising wazero that...

bug

**Describe the bug** The `poll_oneoff` returned a clock event that has not yet finished **To Reproduce** I attached the `poll.wat` at the end ``` wasm-tools parse poll.wat -o poll.wasm wazero...

bug

This PR takes a stab at making local wasm function compilation run concurrently. In general the executables produced by it seem to work and compile 50-70% faster on my machine...

**Describe the bug** Incorrect `i32.ne` results for value from host function (negative numbers only). Host func result put on stack as uint64 (see [internal/wasm.callGoFunc](https://github.com/tetratelabs/wazero/blob/v1.8.2/internal/wasm/gofunc.go#L135)). For -1 its 0xFFFFFFFFFFFFFFFF. But on...

bug