diff options
author | Alon Zakai <azakai@google.com> | 2024-04-25 15:21:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-25 15:21:26 -0700 |
commit | c33f126046d6504064d587b8bd7c310a7fdf2087 (patch) | |
tree | 81f828a7ee018c017f21ad15aa0d236c174790d3 /src/tools/fuzzing.h | |
parent | 956d2d89d530012885c1f88c87bf8b872c187b70 (diff) | |
download | binaryen-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.h | 3 |
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); |