summaryrefslogtreecommitdiff
path: root/src/wasm-type.h
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-07-18 16:43:16 -0400
committerGitHub <noreply@github.com>2024-07-18 13:43:16 -0700
commit84daeca1d7bfa805825771611d563920f3ebf846 (patch)
treecb29dda1cb63ea0f35d68f9324904632e6bbc25e /src/wasm-type.h
parent848a28966e58f8a9788d2e5cf15790120e06cdf6 (diff)
downloadbinaryen-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/wasm-type.h')
-rw-r--r--src/wasm-type.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h
index 69b50c07f..b3640ff41 100644
--- a/src/wasm-type.h
+++ b/src/wasm-type.h
@@ -385,6 +385,12 @@ public:
Shareability getShared() const;
+ // Check if the type is a given basic heap type, while ignoring whether it is
+ // shared or not.
+ bool isMaybeShared(BasicHeapType type) {
+ return isBasic() && getBasic(Unshared) == type;
+ }
+
Signature getSignature() const;
Continuation getContinuation() const;