diff options
author | Alon Zakai <azakai@google.com> | 2024-12-05 09:59:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-05 09:59:33 -0800 |
commit | 06e06ec86f7d1e91d0fa9e53cf8bb13d0e3e0df4 (patch) | |
tree | 99dac80372ca1f0ede93e1677e12e77954eb3987 /scripts | |
parent | 68963739e56258057a7f0618e0375dd60ae4e124 (diff) | |
download | binaryen-06e06ec86f7d1e91d0fa9e53cf8bb13d0e3e0df4.tar.gz binaryen-06e06ec86f7d1e91d0fa9e53cf8bb13d0e3e0df4.tar.bz2 binaryen-06e06ec86f7d1e91d0fa9e53cf8bb13d0e3e0df4.zip |
[NFC] Send the closed-world flag to TranslateToFuzzReader (#7136)
This sends --closed-world to wasm-opt from the fuzzer, when we use that
flag (before we just used it on optimizations, but not fuzz generation). And
TranslateToFuzzReader now stores a boolean about whether we are in closed-
world mode or not.
This has no effect so far, and is a refactoring for a later PR, where we must
generate code differently based on whether we are in closed-world mode
or not.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/fuzz_opt.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 299403837..b60a3e29a 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -225,10 +225,12 @@ def randomize_fuzz_settings(): # optimizations we use to create any other wasm file. FUZZ_OPTS += ['--dce'] - # Enclose the world much of the time when fuzzing closed-world, so that many - # types are private and hence optimizable. - if CLOSED_WORLD and random.random() < 0.5: - GEN_ARGS += ['--enclose-world'] + if CLOSED_WORLD: + GEN_ARGS += [CLOSED_WORLD_FLAG] + # Enclose the world much of the time when fuzzing closed-world, so that + # many types are private and hence optimizable. + if random.random() < 0.5: + GEN_ARGS += ['--enclose-world'] print('randomized settings (NaNs, OOB, legalize):', NANS, OOB, LEGALIZE) |