Commit 23eb974c authored by Jakob Gruber's avatar Jakob Gruber Committed by V8 LUCI CQ

[tools] Add --concurrent-inlining entry in variants.py

Bug: v8:11771
Tbr: machenbach@chromium.org
Change-Id: Ib0e64e84c930c791023d8743fe0b0373ab626071
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2904216Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
Commit-Queue: Jakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#74651}
parent 4a037f87
...@@ -61,6 +61,7 @@ INCOMPATIBLE_FLAGS_PER_VARIANT = { ...@@ -61,6 +61,7 @@ INCOMPATIBLE_FLAGS_PER_VARIANT = {
"stress_concurrent_allocation": ["--single-threaded-gc", "--predictable"], "stress_concurrent_allocation": ["--single-threaded-gc", "--predictable"],
"stress_concurrent_inlining": ["--single-threaded", "--predictable", "stress_concurrent_inlining": ["--single-threaded", "--predictable",
"--no-concurrent-inlining"], "--no-concurrent-inlining"],
"concurrent_inlining": ["--no-concurrent-inlining"],
"stress_incremental_marking": ["--no-stress-incremental-marking"], "stress_incremental_marking": ["--no-stress-incremental-marking"],
"stress_js_bg_compile_wasm_code_gc": ["--no-stress-background-compile"], "stress_js_bg_compile_wasm_code_gc": ["--no-stress-background-compile"],
"stress": ["--no-stress-opt", "--always-opt", "--no-always-opt", "--liftoff", "stress": ["--no-stress-opt", "--always-opt", "--no-always-opt", "--liftoff",
...@@ -102,6 +103,8 @@ INCOMPATIBLE_FLAGS_PER_BUILD_VARIABLE = { ...@@ -102,6 +103,8 @@ INCOMPATIBLE_FLAGS_PER_BUILD_VARIABLE = {
# The conflicts might be directly contradictory flags or be caused by the # The conflicts might be directly contradictory flags or be caused by the
# implications defined in flag-definitions.h. # implications defined in flag-definitions.h.
INCOMPATIBLE_FLAGS_PER_EXTRA_FLAG = { INCOMPATIBLE_FLAGS_PER_EXTRA_FLAG = {
"--concurrent-inlining":
INCOMPATIBLE_FLAGS_PER_VARIANT["concurrent_inlining"],
"--concurrent-recompilation": ["--no-concurrent-recompilation", "--predictable"], "--concurrent-recompilation": ["--no-concurrent-recompilation", "--predictable"],
"--enable-armv8": ["--no-enable-armv8"], "--enable-armv8": ["--no-enable-armv8"],
"--gc-interval=*": ["--gc-interval=*"], "--gc-interval=*": ["--gc-interval=*"],
......
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