diff options
author | Thomas Lively <tlively@google.com> | 2024-12-13 13:23:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-13 13:23:42 -0800 |
commit | 8a88ba280b2847d4d25d0859a87529e2132ebab8 (patch) | |
tree | a4723dbd4f43b1b01b8bcc3bcdbf5f80f7d93d4a /CHANGELOG.md | |
parent | 52bc45fc34ec6868400216074744147e9d922685 (diff) | |
download | binaryen-8a88ba280b2847d4d25d0859a87529e2132ebab8.tar.gz binaryen-8a88ba280b2847d4d25d0859a87529e2132ebab8.tar.bz2 binaryen-8a88ba280b2847d4d25d0859a87529e2132ebab8.zip |
Support control flow inputs in IRBuilder (#7149)
Since multivalue was standardized, WebAssembly has supported not only
multiple results but also an arbitrary number of inputs on control flow
structures, but until now Binaryen did not support control flow input.
Binaryen IR still has no way to represent control flow input, so lower
it away using scratch locals in IRBuilder. Since both the text and
binary parsers use IRBuilder, this gives us full support for parsing
control flow inputs.
The lowering scheme is mostly simple. A local.set writing the control
flow inputs to a scratch local is inserted immediately before the
control flow structure begins and a local.get retrieving those inputs is
inserted inside the control flow structure before the rest of its body.
The only complications come from ifs, in which the inputs must be
retrieved at the beginning of both arms, and from loops, where branches
to the beginning of the loop must be transformed so their values are
written to the scratch local along the way.
Resolves #6407.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 324c29526..52e453ee4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ Current Trunk - BinaryenSelect no longer takes a type parameter. - AutoDrop APIs have been removed. + - Binaryen now supports parsing control flow structures with parameter types. v120 ---- |