elliottt opened PR #8151 from elliottt:trevor/gen-arg-locs
to bytecodealliance:main
:
In preparation for handling callee-save registers in the tail calling convention, split the logic for handling argument locations out of
CallSite::gen_arg
. This allows us to process the arguments as normal, but delay the actual move to the stack until later.
<!--
Please make sure you include the following information:
If this work has been discussed elsewhere, please include a link to that
conversation. If it was discussed in an issue, just mention "issue #...".Explain why this change is needed. If the details are in an issue already,
this can be brief.Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.htmlPlease ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->
elliottt requested cfallin for a review on PR #8151.
elliottt requested wasmtime-compiler-reviewers for a review on PR #8151.
elliottt updated PR #8151.
elliottt edited PR #8151:
In preparation for handling callee-save registers in the tail calling convention, split the logic for handling argument locations out of
CallSite::gen_arg
. This allows us to process the arguments as normal, but delay the actual move to the stack until later.I also took the opportunity to directly emit the instruction vector at the end of
CallSite::gen_arg
instead of returning it, as this is what's done at every use ofCallSite::gen_arg
already. Unfortunately the intermediate vector is still necessary as all calls to emit would be underneath an immutable borrow ofctx
, but this does clean things up a little bit.
<!--
Please make sure you include the following information:
If this work has been discussed elsewhere, please include a link to that
conversation. If it was discussed in an issue, just mention "issue #...".Explain why this change is needed. If the details are in an issue already,
this can be brief.Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.htmlPlease ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->
elliottt updated PR #8151.
elliottt updated PR #8151.
cfallin submitted PR review:
Seems reasonable to me!
elliottt merged PR #8151.
Last updated: Nov 22 2024 at 17:03 UTC