diff options
author | Thomas Lively <tlively@google.com> | 2023-04-19 17:22:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 17:22:28 -0700 |
commit | 9e5961792a91774962815d58c5c73bfb5612e27c (patch) | |
tree | 5f076b905041cc31c0cb58b298f010cbe0a4e226 /src/wasm-type.h | |
parent | 7cd2396dacf276750a3e27320d6b9d2af6f939d9 (diff) | |
download | binaryen-9e5961792a91774962815d58c5c73bfb5612e27c.tar.gz binaryen-9e5961792a91774962815d58c5c73bfb5612e27c.tar.bz2 binaryen-9e5961792a91774962815d58c5c73bfb5612e27c.zip |
Remove the ability to construct basic types in a TypeBuilder (#5678)
This capability was originally introduced to support calculating LUBs in the
equirecursive type system, but has not been needed for anything except tests
since the equirecursive type system was removed. Since building basic heap types
is no longer useful and was a source of significant complexity, remove the APIs
that allowed it and the tests that used those APIs.
Also remove test/example/type-builder.cpp, since a significant portion of it
tested the removed APIs and the rest is already better tested in
test/gtest/type-builder.cpp.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index ad0606d59..551096fb5 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -579,21 +579,12 @@ struct TypeBuilder { // The number of HeapType slots in the TypeBuilder. size_t size(); - // Sets the heap type at index `i`. May only be called before `build`. The - // BasicHeapType overload may not be used in nominal mode. - void setHeapType(size_t i, HeapType::BasicHeapType basic); + // Sets the heap type at index `i`. May only be called before `build`. void setHeapType(size_t i, Signature signature); void setHeapType(size_t i, const Struct& struct_); void setHeapType(size_t i, Struct&& struct_); void setHeapType(size_t i, Array array); - // This is an ugly hack around the fact that temp heap types initialized with - // BasicHeapTypes are not themselves considered basic, so `HeapType::isBasic` - // and `HeapType::getBasic` do not work as expected with them. Call these - // methods instead. - bool isBasic(size_t i); - HeapType::BasicHeapType getBasic(size_t i); - // Gets the temporary HeapType at index `i`. This HeapType should only be used // to construct temporary Types using the methods below. HeapType getTempHeapType(size_t i); @@ -653,10 +644,6 @@ struct TypeBuilder { TypeBuilder& builder; size_t index; operator HeapType() const { return builder.getTempHeapType(index); } - Entry& operator=(HeapType::BasicHeapType basic) { - builder.setHeapType(index, basic); - return *this; - } Entry& operator=(Signature signature) { builder.setHeapType(index, signature); return *this; |