Commit b8b8b04c authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[foozzie] Add cpu-feature flags to correctness fuzzer

No-Try: true
Bug: chromium:1021463
Change-Id: I15d45a51b7341b5767d8eb4c16e7d41508a2811b
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1906568Reviewed-by: 's avatarClemens Backes <clemensb@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#64862}
parent 9d79c8f8
......@@ -43,6 +43,9 @@ class ConfigTest(unittest.TestCase):
'--second-d8=d8',
'--second-config-extra-flags=--stress-scavenge=100',
'--second-config-extra-flags=--no-regexp-tier-up',
'--second-config-extra-flags=--no-enable-ssse3',
'--second-config-extra-flags=--no-enable-bmi2',
'--second-config-extra-flags=--no-enable-lzcnt',
],
v8_fuzz_config.Config('foo', Rng(), 42).choose_foozzie_flags(),
)
......
......@@ -46,6 +46,17 @@ ADDITIONAL_FLAGS = [
(0.1, '--regexp-tier-up-ticks=100'),
(0.1, '--turbo-instruction-scheduling'),
(0.1, '--turbo-stress-instruction-scheduling'),
(0.1, '--no-enable-sse3'),
(0.1, '--no-enable-ssse3'),
(0.1, '--no-enable-sse4_1'),
(0.1, '--no-enable-sse4_2'),
(0.1, '--no-enable-sahf'),
(0.1, '--no-enable-avx'),
(0.1, '--no-enable-fma3'),
(0.1, '--no-enable-bmi1'),
(0.1, '--no-enable-bmi2'),
(0.1, '--no-enable-lzcnt'),
(0.1, '--no-enable-popcnt'),
]
class Config(object):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment