Skip to content
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
fitzgen opened this issue Oct 1, 2024 · 0 comments · May be fixed by #10503
Open
Tracked by #9351

Reuse linear memories, and our code to emit their bound checks, for Wasm GC heaps #9350

fitzgen opened this issue Oct 1, 2024 · 0 comments · May be fixed by #10503
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

@fitzgen
Copy link
Member

fitzgen commented Oct 1, 2024

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.

@fitzgen fitzgen added cranelift:goal:optimize-speed Focus area: the speed of the code produced by Cranelift. performance wasmtime:ref-types Issues related to reference types and GC in Wasmtime labels Oct 1, 2024
@alexcrichton alexcrichton added the wasm-proposal:gc Issues with the implementation of the gc wasm proposal label Feb 25, 2025
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 fitzgen linked a pull request Apr 1, 2025 that will close this issue
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
github-merge-queue bot pushed a commit that referenced this issue Apr 2, 2025
…10508)

* Analyze whether a module requires a GC heap during its compilation

And avoid forcing the allocation of a GC heap for modules that will not use it.

Split out from #9350

* Simplify condition for allocating GC heap
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
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants