diff options
author | Thomas Lively <tlively@google.com> | 2024-07-18 16:43:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-18 13:43:16 -0700 |
commit | 84daeca1d7bfa805825771611d563920f3ebf846 (patch) | |
tree | cb29dda1cb63ea0f35d68f9324904632e6bbc25e /src/tools/fuzzing | |
parent | 848a28966e58f8a9788d2e5cf15790120e06cdf6 (diff) | |
download | binaryen-84daeca1d7bfa805825771611d563920f3ebf846.tar.gz binaryen-84daeca1d7bfa805825771611d563920f3ebf846.tar.bz2 binaryen-84daeca1d7bfa805825771611d563920f3ebf846.zip |
[NFC] Add HeapType::isMaybeShared(BasicHeapType) utility (#6773)
This abbreviates a common pattern where we first had to check whether a
heap type was basic, then if it was, get its unshared version and
compare it to some expected BasicHeapType.
Suggested in
https://github.com/WebAssembly/binaryen/pull/6771#discussion_r1683005495.
Diffstat (limited to 'src/tools/fuzzing')
-rw-r--r-- | src/tools/fuzzing/heap-types.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/fuzzing/heap-types.cpp b/src/tools/fuzzing/heap-types.cpp index c1c13bc0a..7eaf23701 100644 --- a/src/tools/fuzzing/heap-types.cpp +++ b/src/tools/fuzzing/heap-types.cpp @@ -759,8 +759,7 @@ void Inhabitator::markExternRefsNullable() { auto children = type.getTypeChildren(); for (size_t i = 0; i < children.size(); ++i) { auto child = children[i]; - if (child.isRef() && child.getHeapType().isBasic() && - child.getHeapType().getBasic(Unshared) == HeapType::ext && + if (child.isRef() && child.getHeapType().isMaybeShared(HeapType::ext) && child.isNonNullable()) { markNullable({type, i}); } |