diff options
author | Alon Zakai <azakai@google.com> | 2024-04-23 16:42:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 16:42:01 -0700 |
commit | 42db73abe388c7c8ee990ef839a36fd74a0eaadd (patch) | |
tree | 7a4050dc1710c14bca24aa15e8f06c6f9a8b566d /src/tools/fuzzing.h | |
parent | 94ddae02e591adeb994ae2f798878e814f976bc1 (diff) | |
download | binaryen-42db73abe388c7c8ee990ef839a36fd74a0eaadd.tar.gz binaryen-42db73abe388c7c8ee990ef839a36fd74a0eaadd.tar.bz2 binaryen-42db73abe388c7c8ee990ef839a36fd74a0eaadd.zip |
[Strings] Fuzz and interpret all relevant StringNew methods (#6526)
This adds fuzzing for string.new_wtf16_array and string.from_code_point. The
latter was also missing interpreter support, which this adds.
Diffstat (limited to 'src/tools/fuzzing.h')
-rw-r--r-- | src/tools/fuzzing.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/fuzzing.h b/src/tools/fuzzing.h index 76c0e13c8..5b3c0037b 100644 --- a/src/tools/fuzzing.h +++ b/src/tools/fuzzing.h @@ -315,6 +315,8 @@ private: Expression* makeBasicRef(Type type); Expression* makeCompoundRef(Type type); + Expression* makeString(); + // Similar to makeBasic/CompoundRef, but indicates that this value will be // used in a place that will trap on null. For example, the reference of a // struct.get or array.set would use this. @@ -378,6 +380,7 @@ private: Type getLoggableType(); bool isLoggableType(Type type); Nullability getNullability(); + Mutability getMutability(); Nullability getSubType(Nullability nullability); HeapType getSubType(HeapType type); Type getSubType(Type type); |