summaryrefslogtreecommitdiff
path: root/src/wasm-type.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2022-08-04 17:05:54 -0700
committerGitHub <noreply@github.com>2022-08-05 00:05:54 +0000
commit6759371b5239efa3daa9d988455abdd14a8b18ca (patch)
tree0c3a3e371ed742bdbd790f7344ec86e8536bc167 /src/wasm-type.h
parent9534e6927c41f4a6a5d06d58d00c271c9f066e9a (diff)
downloadbinaryen-6759371b5239efa3daa9d988455abdd14a8b18ca.tar.gz
binaryen-6759371b5239efa3daa9d988455abdd14a8b18ca.tar.bz2
binaryen-6759371b5239efa3daa9d988455abdd14a8b18ca.zip
Remove RTTs (#4848)
RTTs were removed from the GC spec and if they are added back in in the future, they will be heap types rather than value types as in our implementation. Updating our implementation to have RTTs be heap types would have been more work than deleting them for questionable benefit since we don't know how long it will be before they are specced again.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r--src/wasm-type.h43
1 files changed, 3 insertions, 40 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h
index 4d87ac68d..014e28646 100644
--- a/src/wasm-type.h
+++ b/src/wasm-type.h
@@ -67,7 +67,6 @@ struct Signature;
struct Field;
struct Struct;
struct Array;
-struct Rtt;
enum Nullability { NonNullable, Nullable };
enum Mutability { Immutable, Mutable };
@@ -128,9 +127,6 @@ public:
// Signature, Struct or Array via implicit conversion to HeapType.
Type(HeapType, Nullability nullable);
- // Construct from rtt description
- Type(Rtt);
-
// Predicates
// Compound Concrete
// Type Basic │ Single│
@@ -152,7 +148,6 @@ public:
// ├─ Compound ──╫───┼───┼───┼───┤───────┤ │
// │ Ref ║ │ x │ x │ x │ f? n? │◄┘
// │ Tuple ║ │ x │ │ x │ │
- // │ Rtt ║ │ x │ x │ x │ │
// └─────────────╨───┴───┴───┴───┴───────┘
constexpr bool isBasic() const { return id <= _last_basic_type; }
constexpr bool isConcrete() const { return id >= i32; }
@@ -174,18 +169,10 @@ public:
// is irrelevant. (For that reason, this is only the negation of isNullable()
// on references, but both return false on non-references.)
bool isNonNullable() const;
- bool isRtt() const;
bool isStruct() const;
bool isArray() const;
bool isDefaultable() const;
- // Check if a type is either defaultable or non-nullable. This is useful in
- // the case where we allow non-nullable types, but we disallow other things
- // that are non-defaultable. For example, when GC-non-nullable references are
- // allowed we can have a non-nullable reference, but we cannot have any other
- // nondefaultable type.
- bool isDefaultableOrNonNullable() const;
-
Nullability getNullability() const;
private:
@@ -237,12 +224,9 @@ public:
const Tuple& getTuple() const;
// Gets the heap type corresponding to this type, assuming that it is a
- // reference or Rtt type.
+ // reference type.
HeapType getHeapType() const;
- // Gets the Rtt for this type, assuming that it is an Rtt type.
- Rtt getRtt() const;
-
// Returns a number type based on its size in bytes and whether it is a float
// type.
static Type get(unsigned byteSize, bool float_);
@@ -561,21 +545,6 @@ struct Array {
std::string toString() const;
};
-struct Rtt {
- // An Rtt can have no depth specified
- static constexpr uint32_t NoDepth = -1;
- uint32_t depth;
- HeapType heapType;
- explicit Rtt(HeapType heapType) : depth(NoDepth), heapType(heapType) {}
- Rtt(uint32_t depth, HeapType heapType) : depth(depth), heapType(heapType) {}
- bool operator==(const Rtt& other) const {
- return depth == other.depth && heapType == other.heapType;
- }
- bool operator!=(const Rtt& other) const { return !(*this == other); }
- bool hasDepth() const { return depth != uint32_t(NoDepth); }
- std::string toString() const;
-};
-
// TypeBuilder - allows for the construction of recursive types. Contains a
// table of `n` mutable HeapTypes and can construct temporary types that are
// backed by those HeapTypes, refering to them by reference. Those temporary
@@ -623,11 +592,10 @@ struct TypeBuilder {
HeapType getTempHeapType(size_t i);
// Gets a temporary type or heap type for use in initializing the
- // TypeBuilder's HeapTypes. For Ref and Rtt types, the HeapType may be a
- // temporary HeapType owned by this builder or a canonical HeapType.
+ // TypeBuilder's HeapTypes. For Ref types, the HeapType may be a temporary
+ // HeapType owned by this builder or a canonical HeapType.
Type getTempTupleType(const Tuple&);
Type getTempRefType(HeapType heapType, Nullability nullable);
- Type getTempRttType(Rtt rtt);
// In nominal mode, or for nominal types, declare the HeapType being built at
// index `i` to be an immediate subtype of the HeapType being built at index
@@ -717,7 +685,6 @@ std::ostream& operator<<(std::ostream&, Signature);
std::ostream& operator<<(std::ostream&, Field);
std::ostream& operator<<(std::ostream&, Struct);
std::ostream& operator<<(std::ostream&, Array);
-std::ostream& operator<<(std::ostream&, Rtt);
std::ostream& operator<<(std::ostream&, TypeBuilder::ErrorReason);
} // namespace wasm
@@ -752,10 +719,6 @@ template<> class hash<wasm::HeapType> {
public:
size_t operator()(const wasm::HeapType&) const;
};
-template<> class hash<wasm::Rtt> {
-public:
- size_t operator()(const wasm::Rtt&) const;
-};
template<> class hash<wasm::RecGroup> {
public:
size_t operator()(const wasm::RecGroup&) const;