summaryrefslogtreecommitdiff
path: root/src/tools/fuzzing.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-04-25 15:21:26 -0700
committerGitHub <noreply@github.com>2024-04-25 15:21:26 -0700
commitc33f126046d6504064d587b8bd7c310a7fdf2087 (patch)
tree81f828a7ee018c017f21ad15aa0d236c174790d3 /src/tools/fuzzing.h
parent956d2d89d530012885c1f88c87bf8b872c187b70 (diff)
downloadbinaryen-c33f126046d6504064d587b8bd7c310a7fdf2087.tar.gz
binaryen-c33f126046d6504064d587b8bd7c310a7fdf2087.tar.bz2
binaryen-c33f126046d6504064d587b8bd7c310a7fdf2087.zip
[Strings] Fix effects of string.compare and add fuzzing (#6547)
We added string.compare late in the spec process, and forgot to add effects for it. Unlike string.eq, it can trap. Also use makeTrappingRefUse in recent fuzzer string generation places that I forgot, which should reduce the amount of traps in fuzzer output.
Diffstat (limited to 'src/tools/fuzzing.h')
-rw-r--r--src/tools/fuzzing.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/fuzzing.h b/src/tools/fuzzing.h
index dc17f7c91..c60744dea 100644
--- a/src/tools/fuzzing.h
+++ b/src/tools/fuzzing.h
@@ -327,6 +327,7 @@ private:
Expression* makeStringNewArray();
Expression* makeStringNewCodePoint();
Expression* makeStringConcat();
+ Expression* makeStringEq(Type type);
Expression* makeStringEncode(Type type);
// Similar to makeBasic/CompoundRef, but indicates that this value will be
@@ -398,7 +399,7 @@ private:
Nullability getSuperType(Nullability nullability);
HeapType getSuperType(HeapType type);
Type getSuperType(Type type);
- Type getArrayTypeForString();
+ HeapType getArrayTypeForString();
// Utilities
Name getTargetName(Expression* target);