diff options
author | Thomas Lively <tlively@google.com> | 2023-01-06 15:47:19 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-06 13:47:19 -0800 |
commit | f719c3527512377657f72f16ee4ac5581843614f (patch) | |
tree | b082f8d5e80bb53a9d69e7c8197f6b7ada2939b6 /src/wasm/wat-parser.cpp | |
parent | 73a1cfcacd028ed7aefe304c2e140cda4068dcb0 (diff) | |
download | binaryen-f719c3527512377657f72f16ee4ac5581843614f.tar.gz binaryen-f719c3527512377657f72f16ee4ac5581843614f.tar.bz2 binaryen-f719c3527512377657f72f16ee4ac5581843614f.zip |
Consolidate br_on* operations (#5399)
The `br_on{_non}_{data,i31,func}` operations are deprecated and directly
representable in terms of the new `br_on_cast` and `br_on_cast_fail`
instructions, so remove their dedicated IR opcodes in favor of representing them
as casts. `br_on_null` and `br_on_non_null` cannot be consolidated the same way
because their behavior is not directly representable in terms of `br_on_cast`
and `br_on_cast_fail`; when the cast to null bottom type succeeds, the null
check instructions implicitly drop the null value whereas the cast instructions
would propagate it.
Add special logic to the binary writer and printer to continue emitting the
deprecated instructions for now. This will allow us to update the test suite in
a separate future PR with no additional functional changes.
Some tests are updated because the validator no longer allows passing non-func
data to `br_on_func`. Doing so has not made sense since we separated the three
reference type hierarchies.
Diffstat (limited to 'src/wasm/wat-parser.cpp')
-rw-r--r-- | src/wasm/wat-parser.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/wasm/wat-parser.cpp b/src/wasm/wat-parser.cpp index 409d51052..14d30db1c 100644 --- a/src/wasm/wat-parser.cpp +++ b/src/wasm/wat-parser.cpp @@ -2349,9 +2349,10 @@ template<typename Ctx> Result<typename Ctx::InstrT> makeRefTest(Ctx&, Index); template<typename Ctx> Result<typename Ctx::InstrT> makeRefCast(Ctx&, Index); template<typename Ctx> Result<typename Ctx::InstrT> makeRefCastNop(Ctx&, Index); template<typename Ctx> -Result<typename Ctx::InstrT> makeBrOn(Ctx&, Index, BrOnOp op); +Result<typename Ctx::InstrT> makeBrOnNull(Ctx&, Index, bool onFail = false); template<typename Ctx> -Result<typename Ctx::InstrT> makeBrOn(Ctx&, Index, BrOnOp op); +Result<typename Ctx::InstrT> +makeBrOnCast(Ctx&, Index, std::optional<Type>, bool onFail = false); template<typename Ctx> Result<typename Ctx::InstrT> makeStructNew(Ctx&, Index, bool default_); template<typename Ctx> @@ -3452,7 +3453,13 @@ Result<typename Ctx::InstrT> makeRefCastNop(Ctx& ctx, Index pos) { } template<typename Ctx> -Result<typename Ctx::InstrT> makeBrOn(Ctx& ctx, Index pos, BrOnOp op) { +Result<typename Ctx::InstrT> makeBrOnNull(Ctx& ctx, Index pos, bool onFail) { + return ctx.in.err("unimplemented instruction"); +} + +template<typename Ctx> +Result<typename Ctx::InstrT> +makeBrOnCast(Ctx& ctx, Index pos, std::optional<Type> castType, bool onFail) { return ctx.in.err("unimplemented instruction"); } |