summaryrefslogtreecommitdiff
path: root/src/wasm-type.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2022-06-29 09:34:26 -0700
committerGitHub <noreply@github.com>2022-06-29 09:34:26 -0700
commit7f75427f7671562874a22981c9dcc4a8e223f48b (patch)
treebd3237d5b43197127e7a17c63fec3b9f5102b5f9 /src/wasm-type.h
parent9dbe45780d8c78dbb49c208fe4505cd1624a98ac (diff)
downloadbinaryen-7f75427f7671562874a22981c9dcc4a8e223f48b.tar.gz
binaryen-7f75427f7671562874a22981c9dcc4a8e223f48b.tar.bz2
binaryen-7f75427f7671562874a22981c9dcc4a8e223f48b.zip
[Strings] Add string proposal types (#4755)
This starts to implement the Wasm Strings proposal https://github.com/WebAssembly/stringref/blob/main/proposals/stringref/Overview.md This just adds the types.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r--src/wasm-type.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h
index 6b1608ddc..23e559aad 100644
--- a/src/wasm-type.h
+++ b/src/wasm-type.h
@@ -109,6 +109,7 @@ public:
funcref,
anyref,
eqref,
+ // From here types are non-nullable.
i31ref,
dataref,
};
@@ -342,8 +343,12 @@ public:
eq,
i31,
data,
+ string,
+ stringview_wtf8,
+ stringview_wtf16,
+ stringview_iter,
};
- static constexpr BasicHeapType _last_basic_type = data;
+ static constexpr BasicHeapType _last_basic_type = stringview_iter;
// BasicHeapType can be implicitly upgraded to HeapType
constexpr HeapType(BasicHeapType id) : id(id) {}