diff options
author | Thomas Lively <tlively@google.com> | 2024-08-07 20:49:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-07 17:49:55 -0700 |
commit | 2397f2af4512c31e1e54c0e0168302ab1ee06d58 (patch) | |
tree | b469981d3a6bcd93809a7d136bd83d4f6703b887 /src/wasm-type.h | |
parent | fb6ead80296471276f4cee05f920e6fe8aba67c5 (diff) | |
download | binaryen-2397f2af4512c31e1e54c0e0168302ab1ee06d58.tar.gz binaryen-2397f2af4512c31e1e54c0e0168302ab1ee06d58.tar.bz2 binaryen-2397f2af4512c31e1e54c0e0168302ab1ee06d58.zip |
Add a utility for comparing and hashing rec group shapes (#6808)
This is very similar to the internal utilities for canonicalizing rec
groups in the type system implementation, except that the new utility
also supports ordered comparison of rec groups, and of course the new
utility only uses the public type API.
A follow-up PR will replace the internal implementation of rec group
comparison and hashing in the type system with this one.
Another follow-up PR will use this new utility in a type optimization.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index 88590cc17..e2eec5f35 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -434,6 +434,8 @@ public: // Get the recursion group for this non-basic type. RecGroup getRecGroup() const; + + // Get the index of this non-basic type within its recursion group. size_t getRecGroupIndex() const; constexpr TypeID getID() const { return id; } |