Stream: git-wasmtime

Topic: wasmtime / PR #6951 winch: Add support for `br_table`


view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:16):

saulecabrera requested cfallin for a review on PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:16):

saulecabrera opened PR #6951 from saulecabrera:winch-br_table to bytecodealliance:main:

This change adds support for the br_table instruction, including several modifications to the existing control flow implementation:

In addition to the above refactoring, the main implementation of the br_table instruction involves emitting labels for each target. Within each label, an unconditional jump is emitted to the frame's label, ensuring correct stack pointer balancing when the jump is emitted.

While it is possible to optimize this process by avoiding intermediate labels when balancing isn't required, we've opted to maintain the current implementation until such optimization becomes necessary.

<!--
Please make sure you include the following information:

Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.html

Please ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:16):

saulecabrera requested wasmtime-compiler-reviewers for a review on PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:16):

saulecabrera requested alexcrichton for a review on PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:16):

saulecabrera requested wasmtime-core-reviewers for a review on PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:16):

saulecabrera edited PR #6951:

This change adds support for the br_table instruction, including several modifications to the existing control flow implementation:

In addition to the above refactoring, the main implementation of the br_table instruction involves emitting labels for each target. Within each label, an unconditional jump is emitted to the frame's label, ensuring correct stack pointer balancing when the jump is emitted.

While it is possible to optimize this process by avoiding intermediate labels when balancing isn't required, I've opted to maintain the current implementation until such optimization becomes necessary.

<!--
Please make sure you include the following information:

Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.html

Please ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:17):

saulecabrera updated PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:17):

saulecabrera edited PR #6951:

Part of https://github.com/bytecodealliance/wasmtime/issues/6528

This change adds support for the br_table instruction, including several modifications to the existing control flow implementation:

In addition to the above refactoring, the main implementation of the br_table instruction involves emitting labels for each target. Within each label, an unconditional jump is emitted to the frame's label, ensuring correct stack pointer balancing when the jump is emitted.

While it is possible to optimize this process by avoiding intermediate labels when balancing isn't required, I've opted to maintain the current implementation until such optimization becomes necessary.

<!--
Please make sure you include the following information:

Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.html

Please ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:30):

saulecabrera updated PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:53):

saulecabrera requested wasmtime-fuzz-reviewers for a review on PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:53):

saulecabrera updated PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 15:53):

saulecabrera requested elliottt for a review on PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 18:58):

cfallin submitted PR review:

This looks overall good to me, except for a bit of confusion around one stack-alignment case. With a slightly more detailed description in the comment I think it should be good though!

(also as an fyi, I'm on PTO all of next week; happy to re-review today if it happens, otherwise further reviews will be a bit delayed, sorry)

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 18:58):

cfallin submitted PR review:

This looks overall good to me, except for a bit of confusion around one stack-alignment case. With a slightly more detailed description in the comment I think it should be good though!

(also as an fyi, I'm on PTO all of next week; happy to re-review today if it happens, otherwise further reviews will be a bit delayed, sorry)

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 18:58):

cfallin created PR review comment:

s/invaid/invalid/

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 18:58):

cfallin created PR review comment:

I know this is pre-existing text (I might have even reviewed it the first time?) but for some reason I'm having trouble wrapping my head around the current_sp < target_sp case here. Is the argument basically that the Wasm stack invariants (proper typing of blocks, etc) will fix it up? Or is this handled at the use-cases of this function? Either way it would be helpful to point out concretely what piece of the codegen handles the popping.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 19:10):

saulecabrera updated PR #6951.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 19:15):

saulecabrera submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 19:15):

saulecabrera created PR review comment:

I've added a bit more of docs on how this could happen. In general the first assert in this function (above) should always be true, which is what I was after with this refactor, which makes it easier to reason about IMHO. But with that comment I'm noting that when the code reaches the the stack pointer balancing part, the SP might be less if during the invocation of the callback the caller preemptively handles return values via CodeGenContext::pop_abi_results (e.g. what would happen during the emission of br). Hope this clarifies things.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 01 2023 at 20:45):

cfallin submitted PR review:

LGTM!

view this post on Zulip Wasmtime GitHub notifications bot (Sep 02 2023 at 00:00):

cfallin merged PR #6951.


Last updated: Oct 23 2024 at 20:03 UTC