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

[20.0.0] Fix a panic calling host functions with refs in async mode #8439

Merged

Conversation

alexcrichton
Copy link
Member

Backport of #8434

…lliance#8434)

This commit fixes a panic when a host function defined with `Func::new`
returned GC references and was called in async mode. The logic to
auto-gc before the return values go to wasm asserted that a synchronous
GC was possible but the context this function is called in could be
either async or sync. The fix applied in this commit is to remove the
auto-gc. This means that hosts will need to explicitly GC in these
situations until auto-gc is re-added back to Wasmtime.

cc bytecodealliance#8433 as this will make the behavior consistent, but we'll want to
re-add the gc behavior.
@alexcrichton alexcrichton marked this pull request as ready for review April 22, 2024 19:27
@alexcrichton alexcrichton requested a review from a team as a code owner April 22, 2024 19:27
@alexcrichton alexcrichton requested review from fitzgen and removed request for a team April 22, 2024 19:27
@fitzgen fitzgen enabled auto-merge (squash) April 22, 2024 19:30
@github-actions github-actions bot added the wasmtime:api Related to the API of the `wasmtime` crate itself label Apr 22, 2024
@fitzgen fitzgen merged commit 0c92290 into bytecodealliance:release-20.0.0 Apr 22, 2024
43 checks passed
@alexcrichton alexcrichton deleted the another-backport3 branch April 22, 2024 20:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
wasmtime:api Related to the API of the `wasmtime` crate itself
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants