diff options
author | Thomas Lively <tlively@google.com> | 2023-09-13 10:13:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-13 15:13:33 +0000 |
commit | 3ca8c21b89c207ce5d872e9cb2d410a869522d38 (patch) | |
tree | 10757c566326c6894512508a71719ed3b4c594fd /src/wasm/wat-parser.cpp | |
parent | bd497d3def1e2c702e29521f097be26024a8253e (diff) | |
download | binaryen-3ca8c21b89c207ce5d872e9cb2d410a869522d38.tar.gz binaryen-3ca8c21b89c207ce5d872e9cb2d410a869522d38.tar.bz2 binaryen-3ca8c21b89c207ce5d872e9cb2d410a869522d38.zip |
Replace I31New with RefI31 everywhere (#5930)
Globally replace the source string "I31New" with "RefI31" in preparation for
renaming the instruction from "i31.new" to "ref.i31", as implemented in the spec
in https://github.com/WebAssembly/gc/pull/422. This would be NFC, except that it
also changes the string in the external-facing C APIs.
A follow-up PR will make the corresponding behavioral change.
Diffstat (limited to 'src/wasm/wat-parser.cpp')
-rw-r--r-- | src/wasm/wat-parser.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wasm/wat-parser.cpp b/src/wasm/wat-parser.cpp index bdd1af0d8..6a18b2f87 100644 --- a/src/wasm/wat-parser.cpp +++ b/src/wasm/wat-parser.cpp @@ -760,7 +760,7 @@ struct NullInstrParserCtx { InstrT makeRefEq(Index) { return Ok{}; } - InstrT makeI31New(Index) { return Ok{}; } + InstrT makeRefI31(Index) { return Ok{}; } InstrT makeI31Get(Index, bool) { return Ok{}; } template<typename HeapTypeT> InstrT makeStructNew(Index, HeapTypeT) { @@ -1762,8 +1762,8 @@ struct ParseDefsCtx : TypeParserCtx<ParseDefsCtx> { Result<> makeRefEq(Index pos) { return withLoc(pos, irBuilder.makeRefEq()); } - Result<> makeI31New(Index pos) { - return withLoc(pos, irBuilder.makeI31New()); + Result<> makeRefI31(Index pos) { + return withLoc(pos, irBuilder.makeRefI31()); } Result<> makeI31Get(Index pos, bool signed_) { @@ -1947,7 +1947,7 @@ template<typename Ctx> Result<typename Ctx::InstrT> makeTupleExtract(Ctx&, Index); template<typename Ctx> Result<typename Ctx::InstrT> makeCallRef(Ctx&, Index, bool isReturn); -template<typename Ctx> Result<typename Ctx::InstrT> makeI31New(Ctx&, Index); +template<typename Ctx> Result<typename Ctx::InstrT> makeRefI31(Ctx&, Index); template<typename Ctx> Result<typename Ctx::InstrT> makeI31Get(Ctx&, Index, bool signed_); template<typename Ctx> Result<typename Ctx::InstrT> makeRefTest(Ctx&, Index); @@ -3042,8 +3042,8 @@ Result<typename Ctx::InstrT> makeCallRef(Ctx& ctx, Index pos, bool isReturn) { } template<typename Ctx> -Result<typename Ctx::InstrT> makeI31New(Ctx& ctx, Index pos) { - return ctx.makeI31New(pos); +Result<typename Ctx::InstrT> makeRefI31(Ctx& ctx, Index pos) { + return ctx.makeRefI31(pos); } template<typename Ctx> |