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/binaryen-c.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/binaryen-c.cpp')
-rw-r--r-- | src/binaryen-c.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/binaryen-c.cpp b/src/binaryen-c.cpp index fd00c25c0..598156782 100644 --- a/src/binaryen-c.cpp +++ b/src/binaryen-c.cpp @@ -1732,10 +1732,10 @@ BinaryenExpressionRef BinaryenRethrow(BinaryenModuleRef module, Builder(*(Module*)module).makeRethrow(target)); } -BinaryenExpressionRef BinaryenI31New(BinaryenModuleRef module, +BinaryenExpressionRef BinaryenRefI31(BinaryenModuleRef module, BinaryenExpressionRef value) { return static_cast<Expression*>( - Builder(*(Module*)module).makeI31New((Expression*)value)); + Builder(*(Module*)module).makeRefI31((Expression*)value)); } BinaryenExpressionRef BinaryenI31Get(BinaryenModuleRef module, @@ -3952,18 +3952,18 @@ void BinaryenTupleExtractSetIndex(BinaryenExpressionRef expr, assert(expression->is<TupleExtract>()); static_cast<TupleExtract*>(expression)->index = index; } -// I31New -BinaryenExpressionRef BinaryenI31NewGetValue(BinaryenExpressionRef expr) { +// RefI31 +BinaryenExpressionRef BinaryenRefI31GetValue(BinaryenExpressionRef expr) { auto* expression = (Expression*)expr; - assert(expression->is<I31New>()); - return static_cast<I31New*>(expression)->value; + assert(expression->is<RefI31>()); + return static_cast<RefI31*>(expression)->value; } -void BinaryenI31NewSetValue(BinaryenExpressionRef expr, +void BinaryenRefI31SetValue(BinaryenExpressionRef expr, BinaryenExpressionRef valueExpr) { auto* expression = (Expression*)expr; - assert(expression->is<I31New>()); + assert(expression->is<RefI31>()); assert(valueExpr); - static_cast<I31New*>(expression)->value = (Expression*)valueExpr; + static_cast<RefI31*>(expression)->value = (Expression*)valueExpr; } // I31Get BinaryenExpressionRef BinaryenI31GetGetI31(BinaryenExpressionRef expr) { |