Commit 0c258725 authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[test] Add more flags to numfuzz

This adds 3 flags to the numfuzz fuzzer depending on a probability:
--budget-for-feedback-vector-allocation=0
--interrupt-budget=100
--no-lazy-feedback-allocation

No-Try: true
Bug: v8:10204
Change-Id: I83dabcd0e3ca80bebe596d65d03b3e99d8ecbf03
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2060490
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#66291}
parent edf12c76
...@@ -13,9 +13,11 @@ from . import base ...@@ -13,9 +13,11 @@ from . import base
EXTRA_FLAGS = [ EXTRA_FLAGS = [
(0.1, '--always-opt'), (0.1, '--always-opt'),
(0.1, '--assert-types'), (0.1, '--assert-types'),
(0.1, '--budget-for-feedback-vector-allocation=0'),
(0.1, '--cache=code'), (0.1, '--cache=code'),
(0.1, '--force-slow-path'), (0.1, '--force-slow-path'),
(0.2, '--future'), (0.2, '--future'),
(0.1, '--interrupt-budget=100'),
(0.1, '--liftoff'), (0.1, '--liftoff'),
(0.2, '--no-analyze-environment-liveness'), (0.2, '--no-analyze-environment-liveness'),
(0.1, '--no-enable-sse3'), (0.1, '--no-enable-sse3'),
...@@ -29,6 +31,7 @@ EXTRA_FLAGS = [ ...@@ -29,6 +31,7 @@ EXTRA_FLAGS = [
(0.1, '--no-enable-bmi2'), (0.1, '--no-enable-bmi2'),
(0.1, '--no-enable-lzcnt'), (0.1, '--no-enable-lzcnt'),
(0.1, '--no-enable-popcnt'), (0.1, '--no-enable-popcnt'),
(0.3, '--no-lazy-feedback-allocation'),
(0.1, '--no-liftoff'), (0.1, '--no-liftoff'),
(0.1, '--no-opt'), (0.1, '--no-opt'),
(0.2, '--no-regexp-tier-up'), (0.2, '--no-regexp-tier-up'),
......
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