Stream: git-wasmtime

Topic: wasmtime / issue #9523 Cannot instantiate a shared memory...


view this post on Zulip Wasmtime GitHub notifications bot (Oct 30 2024 at 16:10):

alexcrichton opened issue #9523:

Given this module:

(module
  (memory 1 2 shared (pagesize 1))
)

this cannot be instantiated:

$ wasmtime run -Wcustom-page-sizes foo.wat
Error: failed to run main module `foo.wat`

Caused by:
    0: failed to instantiate "foo.wat"
    1: shared memory can only be built from a static memory allocation

This is due to the fact that custom page sizes currently force a "dynamic" memory where the base pointer can change while shared memories are required to be "static" where the base pointer cannot change. Fixing this will require refactoring exactly how memories are represented internally within Wasmtime, but in the meantime I wanted to file an issue about this to have on-hand.

view this post on Zulip Wasmtime GitHub notifications bot (Nov 06 2024 at 18:28):

alexcrichton closed issue #9523:

Given this module:

(module
  (memory 1 2 shared (pagesize 1))
)

this cannot be instantiated:

$ wasmtime run -Wcustom-page-sizes foo.wat
Error: failed to run main module `foo.wat`

Caused by:
    0: failed to instantiate "foo.wat"
    1: shared memory can only be built from a static memory allocation

This is due to the fact that custom page sizes currently force a "dynamic" memory where the base pointer can change while shared memories are required to be "static" where the base pointer cannot change. Fixing this will require refactoring exactly how memories are represented internally within Wasmtime, but in the meantime I wanted to file an issue about this to have on-hand.


Last updated: Nov 22 2024 at 16:03 UTC