cfallin opened PR #1834 from module-translation-state-multivalue
to master
:
This is needed to allow SpiderMonkey to provide function signature types
to the wasm translator when it uses Cranelift as a backend without
using the wasm translator to parse the entire module. There is perhaps a
better long-term design here where we allow an embedding that already
parses the Wasm module (such as SpiderMonkey) to provide information in
a more principled way, this suffices for now.Patch is inspired by @bnjbvr's patch in
https://bugzilla.mozilla.org/show_bug.cgi?id=1641504, but does not
exposewasmparser
types directly, instead using Cranelift types across
the API boundary.<!--
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.
-->
cfallin requested bnjbvr for a review on PR #1834.
bnjbvr created PR Review Comment:
Could the type of the two parameters be
&[Type]
, instead? it would be slightly simpler for users, and wouldn't require the extra call tointo_boxed_slice
on the Spidermonkey side.
bnjbvr submitted PR Review.
bnjbvr created PR Review Comment:
(am i understanding correctly that there's Something that infers that we want a
Result<Vec<T>>
from aVec<Result<T>>
? I can imagine how this works, but I didn't know it was available, this is brilliant!)
bnjbvr submitted PR Review.
cfallin updated PR #1834 from module-translation-state-multivalue
to master
:
This is needed to allow SpiderMonkey to provide function signature types
to the wasm translator when it uses Cranelift as a backend without
using the wasm translator to parse the entire module. There is perhaps a
better long-term design here where we allow an embedding that already
parses the Wasm module (such as SpiderMonkey) to provide information in
a more principled way, this suffices for now.Patch is inspired by @bnjbvr's patch in
https://bugzilla.mozilla.org/show_bug.cgi?id=1641504, but does not
exposewasmparser
types directly, instead using Cranelift types across
the API boundary.<!--
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.
-->
cfallin submitted PR Review.
cfallin created PR Review Comment:
Done!
cfallin submitted PR Review.
cfallin created PR Review Comment:
Indeed, there is apparently a
FromIterator
implementation forResult
that makes this work!
cfallin merged PR #1834.
Last updated: Nov 22 2024 at 17:03 UTC