summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-stack.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-04-29 11:29:57 -0700
committerGitHub <noreply@github.com>2024-04-29 11:29:57 -0700
commit63d308f4f2ce6daae3dd3c6ec0b3808134d8791a (patch)
treee2ee30fcbf46dabe5fa70a62606dc27f48a33206 /src/wasm/wasm-stack.cpp
parent4e4cb620d52de7b605eee7dc29cea3be1714f856 (diff)
downloadbinaryen-63d308f4f2ce6daae3dd3c6ec0b3808134d8791a.tar.gz
binaryen-63d308f4f2ce6daae3dd3c6ec0b3808134d8791a.tar.bz2
binaryen-63d308f4f2ce6daae3dd3c6ec0b3808134d8791a.zip
[Strings] Work around ref.cast not working on string views, and add fuzzing (#6549)
As suggested in #6434 (comment) , lower ref.cast of string views to ref.as_non_null in binary writing. It is a simple hack that avoids the problem of V8 not allowing them to be cast. Add fuzzing support for the last three core string operations, after which that problem becomes very frequent. Also add yet another makeTrappingRefUse that was missing in that fuzzer code.
Diffstat (limited to 'src/wasm/wasm-stack.cpp')
-rw-r--r--src/wasm/wasm-stack.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wasm/wasm-stack.cpp b/src/wasm/wasm-stack.cpp
index 4e3194e84..f1413847f 100644
--- a/src/wasm/wasm-stack.cpp
+++ b/src/wasm/wasm-stack.cpp
@@ -2089,6 +2089,24 @@ void BinaryInstWriter::visitRefTest(RefTest* curr) {
}
void BinaryInstWriter::visitRefCast(RefCast* curr) {
+ // We allow ref.cast of string views, but V8 does not. Work around that by
+ // emitting a ref.as_non_null (or nothing).
+ auto type = curr->type;
+ if (type.isRef()) {
+ auto heapType = type.getHeapType();
+ if (heapType == HeapType::stringview_wtf8 ||
+ heapType == HeapType::stringview_wtf16 ||
+ heapType == HeapType::stringview_iter) {
+ // We cannot cast string views to/from anything, so the input must also
+ // be a view.
+ assert(curr->ref->type.getHeapType() == heapType);
+ if (type.isNonNullable() && curr->ref->type.isNullable()) {
+ o << int8_t(BinaryConsts::RefAsNonNull);
+ }
+ return;
+ }
+ }
+
o << int8_t(BinaryConsts::GCPrefix);
if (curr->type.isNullable()) {
o << U32LEB(BinaryConsts::RefCastNull);