summaryrefslogtreecommitdiff
path: root/src/tools/fuzzing
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-04-23 18:40:48 -0700
committerGitHub <noreply@github.com>2024-04-23 18:40:48 -0700
commit1bf7d080c7d4885f348ba803a6348c2d837200d1 (patch)
tree9318b3249ec07aecc07c4a9507d9c2ac17921adf /src/tools/fuzzing
parent42db73abe388c7c8ee990ef839a36fd74a0eaadd (diff)
downloadbinaryen-1bf7d080c7d4885f348ba803a6348c2d837200d1.tar.gz
binaryen-1bf7d080c7d4885f348ba803a6348c2d837200d1.tar.bz2
binaryen-1bf7d080c7d4885f348ba803a6348c2d837200d1.zip
[Strings] Add the string heaptype to core fuzzer places (#6527)
With this we emit strings spontaneously (as opposed to just getting them from initial contents). The relevant -ttf test has been tweaked slightly to show the impact of this change: now there are some string.new/const in the output.
Diffstat (limited to 'src/tools/fuzzing')
-rw-r--r--src/tools/fuzzing/fuzzing.cpp43
1 files changed, 23 insertions, 20 deletions
diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp
index 9698c06eb..5760a26f1 100644
--- a/src/tools/fuzzing/fuzzing.cpp
+++ b/src/tools/fuzzing/fuzzing.cpp
@@ -2537,18 +2537,12 @@ Expression* TranslateToFuzzReader::makeBasicRef(Type type) {
// Choose a subtype we can materialize a constant for. We cannot
// materialize non-nullable refs to func or i31 in global contexts.
Nullability nullability = getSubType(type.getNullability());
- HeapType subtype;
- switch (upTo(3)) {
- case 0:
- subtype = HeapType::i31;
- break;
- case 1:
- subtype = HeapType::struct_;
- break;
- case 2:
- subtype = HeapType::array;
- break;
- }
+ auto subtype = pick(FeatureOptions<HeapType>()
+ .add(FeatureSet::ReferenceTypes | FeatureSet::GC,
+ HeapType::i31,
+ HeapType::struct_,
+ HeapType::array)
+ .add(FeatureSet::Strings, HeapType::string));
return makeConst(Type(subtype, nullability));
}
case HeapType::eq: {
@@ -3994,7 +3988,10 @@ Type TranslateToFuzzReader::getSingleConcreteType() {
Type(HeapType::struct_, Nullable),
Type(HeapType::struct_, NonNullable),
Type(HeapType::array, Nullable),
- Type(HeapType::array, NonNullable)));
+ Type(HeapType::array, NonNullable))
+ .add(FeatureSet::Strings,
+ Type(HeapType::string, Nullable),
+ Type(HeapType::string, NonNullable)));
}
Type TranslateToFuzzReader::getReferenceType() {
@@ -4017,7 +4014,10 @@ Type TranslateToFuzzReader::getReferenceType() {
Type(HeapType::struct_, Nullable),
Type(HeapType::struct_, NonNullable),
Type(HeapType::array, Nullable),
- Type(HeapType::array, NonNullable)));
+ Type(HeapType::array, NonNullable))
+ .add(FeatureSet::Strings,
+ Type(HeapType::string, Nullable),
+ Type(HeapType::string, NonNullable)));
}
Type TranslateToFuzzReader::getEqReferenceType() {
@@ -4137,12 +4137,15 @@ HeapType TranslateToFuzzReader::getSubType(HeapType type) {
case HeapType::any:
assert(wasm.features.hasReferenceTypes());
assert(wasm.features.hasGC());
- return pick(HeapType::any,
- HeapType::eq,
- HeapType::i31,
- HeapType::struct_,
- HeapType::array,
- HeapType::none);
+ return pick(FeatureOptions<HeapType>()
+ .add(FeatureSet::GC,
+ HeapType::any,
+ HeapType::eq,
+ HeapType::i31,
+ HeapType::struct_,
+ HeapType::array,
+ HeapType::none)
+ .add(FeatureSet::Strings, HeapType::string));
case HeapType::eq:
assert(wasm.features.hasReferenceTypes());
assert(wasm.features.hasGC());