alexcrichton opened PR #3972 from refactor-instantiator
to main
:
This internal type in Wasmtime was primarily used for the module linking
proposal to handle instantiation of many instances and refactor out the
sync and async parts to minimize duplication. With the removal of the
module linking proposal, however, this type isn't really necessary any
longer. In working to implement the component model proposal I was
looking already to refactor this and I figured it'd be good to land that
ahead of time onmain
separate of other refactorings.This commit removes the
Instantiator
type in theinstance
module.
The type was already private to Wasmtime so this shouldn't have any
impact on consumers. This allows simplifying various code paths to avoid
another abstraction. The meat of instantiation is moved to
Instance::new_raw
which should be reusable for the component model as
well.One bug is actually fixed in this commit as well where
Linker::instantiate
andInstancePre::instantiate
failed to check
that async support was disabled on a store. This means that they could
have led to a panic if used with an async store and a start function
called an async import (or an async resource limiter yielded). A few
tests were updated with this.<!--
Please ensure that the following steps are all taken care of before submitting
the PR.
[ ] This has been discussed in issue #..., or if not, please tell us why
here.[ ] A short description of what this does, why it is needed; if the
description becomes long, the matter should probably be discussed in an issue
first.[ ] This PR contains test cases, if meaningful.
- [ ] A reviewer from the core maintainer team has been assigned for this PR.
If you don't know who could review this, please indicate so. The list of
suggested reviewers on the right can help you.Please ensure all communication adheres to the code of conduct.
-->
alexcrichton updated PR #3972 from refactor-instantiator
to main
.
alexcrichton updated PR #3972 from refactor-instantiator
to main
.
peterhuene submitted PR review.
peterhuene submitted PR review.
peterhuene created PR review comment:
Nit (for readability):
let exports = vec![None; compiled_module.module().exports.len()];
peterhuene created PR review comment:
"must use async instantiation when async support is enabled",
peterhuene created PR review comment:
"must use sync instantiation when async support is not enabled",
alexcrichton updated PR #3972 from refactor-instantiator
to main
.
alexcrichton merged PR #3972.
Last updated: Nov 22 2024 at 16:03 UTC