diff options
author | Frank Emrich <git@emrich.io> | 2024-03-04 18:04:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 10:04:20 -0800 |
commit | 88108efb180d6059417c26af6ff6123cde26eba3 (patch) | |
tree | ce253c8954d054d269f415bd5b2537efc588c1c1 /src/wasm-interpreter.h | |
parent | 2ca9638354e4a5f260ced04d186808fc8b498986 (diff) | |
download | binaryen-88108efb180d6059417c26af6ff6123cde26eba3.tar.gz binaryen-88108efb180d6059417c26af6ff6123cde26eba3.tar.bz2 binaryen-88108efb180d6059417c26af6ff6123cde26eba3.zip |
Typed continuations: cont.bind instructions (#6365)
This PR is part of a series that adds basic support for the [typed
continuations/wasmfx proposal](https://github.com/wasmfx/specfx).
This particular PR adds support for the `cont.bind` instruction for partially
applying continuations, documented
[here](https://github.com/wasmfx/specfx/blob/main/proposals/continuations/Overview.md#instructions).
In short, these instructions are of the form `(cont.bind $ct_before $ct_after)`
where `$ct_before` and `$ct_after` are related continuation types. They must
only differ in the number of arguments, where `$ct_before` has _n_ additional
parameters as compared to `$ct_after`, for some _n_ ≥ 0. The idea is that
`(cont.bind $ct_before $ct_after)` then takes a reference to a continuation of
type `$ct_before` as well as _n_ operands and returns a (reference to a)
continuation of type `$ct_after`. Thus, the folded textual representation looks
like `(cont.bind $ct_before $ct_after arg1 ... argn c)`.
Support for the instruction is implemented in both the old and the new wat
parser.
Note that this PR does not implement validation of the new instruction.
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r-- | src/wasm-interpreter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index f1b081e51..47b8d5eb5 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -2401,6 +2401,7 @@ public: } return ExpressionRunner<SubType>::visitRefAs(curr); } + Flow visitContBind(ContBind* curr) { WASM_UNREACHABLE("unimplemented"); } Flow visitContNew(ContNew* curr) { WASM_UNREACHABLE("unimplemented"); } Flow visitResume(Resume* curr) { WASM_UNREACHABLE("unimplemented"); } @@ -3976,6 +3977,7 @@ public: multiValues.pop_back(); return ret; } + Flow visitContBind(ContBind* curr) { return Flow(NONCONSTANT_FLOW); } Flow visitContNew(ContNew* curr) { return Flow(NONCONSTANT_FLOW); } Flow visitResume(Resume* curr) { return Flow(NONCONSTANT_FLOW); } |