diff options
author | Thomas Lively <tlively@google.com> | 2022-12-20 09:52:54 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-20 07:52:54 -0800 |
commit | 569f789622f116177c8a1e32fb62a4e5a5c9dfe0 (patch) | |
tree | 3a67097f753f3a22a1ebde6cd4f50c532e773663 /src/ir/module-utils.cpp | |
parent | 12ad604c17407f6b36d52c6404f2dab32e5c7960 (diff) | |
download | binaryen-569f789622f116177c8a1e32fb62a4e5a5c9dfe0.tar.gz binaryen-569f789622f116177c8a1e32fb62a4e5a5c9dfe0.tar.bz2 binaryen-569f789622f116177c8a1e32fb62a4e5a5c9dfe0.zip |
Update RefCast representation to drop extra HeapType (#5350)
The latest upstream version of ref.cast is parameterized with a target reference
type, not just a heap type, because the nullability of the result is
parameterizable. As a first step toward implementing these new, more flexible
ref.cast instructions, change the internal representation of ref.cast to use the
expression type as the cast target rather than storing a separate heap type
field. For now require that the encoded semantics match the previously allowed
semantics, though, so that none of the optimization passes need to be updated.
Diffstat (limited to 'src/ir/module-utils.cpp')
-rw-r--r-- | src/ir/module-utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/module-utils.cpp b/src/ir/module-utils.cpp index f3d9201b7..8e6ac0d1a 100644 --- a/src/ir/module-utils.cpp +++ b/src/ir/module-utils.cpp @@ -71,7 +71,7 @@ struct CodeScanner } else if (curr->is<ArrayInit>()) { counts.note(curr->type); } else if (auto* cast = curr->dynCast<RefCast>()) { - counts.note(cast->intendedType); + counts.note(cast->type); } else if (auto* cast = curr->dynCast<RefTest>()) { counts.note(cast->intendedType); } else if (auto* cast = curr->dynCast<BrOn>()) { |