summaryrefslogtreecommitdiff
path: root/src/tools/fuzzing
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-03-26 13:38:15 -0700
committerGitHub <noreply@github.com>2024-03-26 13:38:15 -0700
commit165953e3267997e606598a91d0c79f92e39ee2cc (patch)
tree7f8dbc5477ed800de2927d1ae57ad99c0cf2683a /src/tools/fuzzing
parent19f8cc706e823f97554f5e4e9167060061d32a41 (diff)
downloadbinaryen-165953e3267997e606598a91d0c79f92e39ee2cc.tar.gz
binaryen-165953e3267997e606598a91d0c79f92e39ee2cc.tar.bz2
binaryen-165953e3267997e606598a91d0c79f92e39ee2cc.zip
Fix stringview subtyping (#6440)
The stringview types (`stringview_wtf8`, `stringview_wtf16`, and `stringview_iter`) are not subtypes of `any` even though they are supertypes of `none`. This breaks the type system invariant that types share a bottom type iff they share a top type, but we can work around that.
Diffstat (limited to 'src/tools/fuzzing')
-rw-r--r--src/tools/fuzzing/heap-types.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/tools/fuzzing/heap-types.cpp b/src/tools/fuzzing/heap-types.cpp
index 13ad01474..5c948e44d 100644
--- a/src/tools/fuzzing/heap-types.cpp
+++ b/src/tools/fuzzing/heap-types.cpp
@@ -454,12 +454,19 @@ struct HeapTypeGeneratorImpl {
candidates.push_back(HeapType::any);
break;
case HeapType::string:
+ candidates.push_back(HeapType::any);
+ break;
case HeapType::stringview_wtf8:
case HeapType::stringview_wtf16:
case HeapType::stringview_iter:
- candidates.push_back(HeapType::any);
break;
case HeapType::none:
+ if (rand.oneIn(10)) {
+ candidates.push_back(HeapType::stringview_wtf8);
+ candidates.push_back(HeapType::stringview_wtf16);
+ candidates.push_back(HeapType::stringview_iter);
+ break;
+ }
return pickSubAny();
case HeapType::nofunc:
return pickSubFunc();