diff options
author | Alon Zakai <azakai@google.com> | 2024-11-20 08:23:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 08:23:14 -0800 |
commit | 81dbc52c446680469a5e00e4e26b091bfc266a59 (patch) | |
tree | 24fe508bbca08e559c5489a59209129667bdfb15 /src/tools/fuzzing | |
parent | e13bf0fb72fca160f457570b930c4ba3c35ead3a (diff) | |
download | binaryen-81dbc52c446680469a5e00e4e26b091bfc266a59.tar.gz binaryen-81dbc52c446680469a5e00e4e26b091bfc266a59.tar.bz2 binaryen-81dbc52c446680469a5e00e4e26b091bfc266a59.zip |
Fuzzer: Legalize and prune the JS interface in pickPasses (#7092)
Also add a test that the ClusterFuzz run.py does not warn,
which was helpful when debugging this.
Diffstat (limited to 'src/tools/fuzzing')
-rw-r--r-- | src/tools/fuzzing/fuzzing.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp index 135e50393..a283aae91 100644 --- a/src/tools/fuzzing/fuzzing.cpp +++ b/src/tools/fuzzing/fuzzing.cpp @@ -270,6 +270,13 @@ void TranslateToFuzzReader::pickPasses(OptimizationOptions& options) { options.passOptions.closedWorld = true; } + // Prune things that error in JS if we call them (like SIMD), some of the + // time. This alters the wasm/JS boundary quite a lot, so testing both forms + // is useful. + if (oneIn(2)) { + options.passes.push_back("legalize-and-prune-js-interface"); + } + // Usually DCE at the very end, to ensure that our binaries validate in other // VMs, due to how non-nullable local validation and unreachable code // interact. See fuzz_opt.py and |