-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reuse linear memories, and our code to emit their bound checks, for Wasm GC heaps #9350
Open
Tracked by
#9351
Labels
cranelift:goal:optimize-speed
Focus area: the speed of the code produced by Cranelift.
performance
wasm-proposal:gc
Issues with the implementation of the gc wasm proposal
wasmtime:ref-types
Issues related to reference types and GC in Wasmtime
Comments
12 tasks
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Mar 31, 2025
Instead of bespoke code paths and structures for Wasm GC, this commit makes it so that we now reuse VM structures like `VMMemoryDefinition` and bounds-checking logic. Notably, we also reuse all the associated bounds-checking optimizations and, when possible, virtual-memory techniques to completely elide them. Fixes bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Mar 31, 2025
Instead of bespoke code paths and structures for Wasm GC, this commit makes it so that we now reuse VM structures like `VMMemoryDefinition` and bounds-checking logic. Notably, we also reuse all the associated bounds-checking optimizations and, when possible, virtual-memory techniques to completely elide them. Fixes bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Mar 31, 2025
Instead of bespoke code paths and structures for Wasm GC, this commit makes it so that we now reuse VM structures like `VMMemoryDefinition` and bounds-checking logic. Notably, we also reuse all the associated bounds-checking optimizations and, when possible, virtual-memory techniques to completely elide them. Fixes bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Apr 1, 2025
Instead of bespoke code paths and structures for Wasm GC, this commit makes it so that we now reuse VM structures like `VMMemoryDefinition` and bounds-checking logic. Notably, we also reuse all the associated bounds-checking optimizations and, when possible, virtual-memory techniques to completely elide them. Furthermore, this commit adds support for growing GC heaps, reusing the machinery for growing memories, and makes it so that GC heaps always start out empty. This allows us to properly delay allocating the GC heap's storage until a GC object is actually allocated. Fixes bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Apr 1, 2025
Instead of bespoke code paths and structures for Wasm GC, this commit makes it so that we now reuse VM structures like `VMMemoryDefinition` and bounds-checking logic. Notably, we also reuse all the associated bounds-checking optimizations and, when possible, virtual-memory techniques to completely elide them. Furthermore, this commit adds support for growing GC heaps, reusing the machinery for growing memories, and makes it so that GC heaps always start out empty. This allows us to properly delay allocating the GC heap's storage until a GC object is actually allocated. Fixes bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Apr 1, 2025
Instead of bespoke code paths and structures for Wasm GC, this commit makes it so that we now reuse VM structures like `VMMemoryDefinition` and bounds-checking logic. Notably, we also reuse all the associated bounds-checking optimizations and, when possible, virtual-memory techniques to completely elide them. Furthermore, this commit adds support for growing GC heaps, reusing the machinery for growing memories, and makes it so that GC heaps always start out empty. This allows us to properly delay allocating the GC heap's storage until a GC object is actually allocated. Fixes bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Apr 1, 2025
Instead of bespoke code paths and structures for Wasm GC, this commit makes it so that we now reuse VM structures like `VMMemoryDefinition` and bounds-checking logic. Notably, we also reuse all the associated bounds-checking optimizations and, when possible, virtual-memory techniques to completely elide them. Furthermore, this commit adds support for growing GC heaps, reusing the machinery for growing memories, and makes it so that GC heaps always start out empty. This allows us to properly delay allocating the GC heap's storage until a GC object is actually allocated. Fixes bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Apr 1, 2025
Instead of bespoke code paths and structures for Wasm GC, this commit makes it so that we now reuse VM structures like `VMMemoryDefinition` and bounds-checking logic. Notably, we also reuse all the associated bounds-checking optimizations and, when possible, virtual-memory techniques to completely elide them. Furthermore, this commit adds support for growing GC heaps, reusing the machinery for growing memories, and makes it so that GC heaps always start out empty. This allows us to properly delay allocating the GC heap's storage until a GC object is actually allocated. Fixes bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Apr 1, 2025
And avoid forcing the allocation of a GC heap for modules that will not use it. Split out from bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Apr 1, 2025
And avoid forcing the allocation of a GC heap for modules that will not use it. Split out from bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Apr 2, 2025
And avoid forcing the allocation of a GC heap for modules that will not use it. Split out from bytecodealliance#9350
fitzgen
added a commit
to fitzgen/wasmtime
that referenced
this issue
Apr 2, 2025
And avoid forcing the allocation of a GC heap for modules that will not use it. Split out from bytecodealliance#9350
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
cranelift:goal:optimize-speed
Focus area: the speed of the code produced by Cranelift.
performance
wasm-proposal:gc
Issues with the implementation of the gc wasm proposal
wasmtime:ref-types
Issues related to reference types and GC in Wasmtime
We have a bunch of knobs and associated optimizations and special cases for linear memory bounds checks. We should reuse all that for Wasm GC heaps, letting them be more configurable and emitting better code for their bounds checks.
The text was updated successfully, but these errors were encountered: