[wasm] Remove wasm_write_protect_code variant
This mode is not used in production any more, and will be removed from the code base soon. Thus stop executing this variant on bots and remove the variant definition. R=machenbach@chromium.org Bug: v8:13632 Change-Id: I15ff76fa6c5b52f5287e758a80f955ffb1278261 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4127158 Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/main@{#85076}
This commit is contained in:
parent
8368b035cd
commit
a7285a717b
@ -481,8 +481,6 @@
|
||||
{'name': 'mjsunit', 'variant': 'stress_maglev'},
|
||||
# Experimental regexp engine.
|
||||
{'name': 'mjsunit', 'variant': 'experimental_regexp'},
|
||||
# Wasm write protect code space.
|
||||
{'name': 'mjsunit', 'variant': 'wasm_write_protect_code'},
|
||||
],
|
||||
},
|
||||
'v8_linux64_gc_stress_custom_snapshot_dbg': {
|
||||
@ -1475,8 +1473,6 @@
|
||||
{'name': 'mjsunit', 'variant': 'stress_maglev'},
|
||||
# Experimental regexp engine.
|
||||
{'name': 'mjsunit', 'variant': 'experimental_regexp'},
|
||||
# Wasm write protect code space.
|
||||
{'name': 'mjsunit', 'variant': 'wasm_write_protect_code'},
|
||||
],
|
||||
},
|
||||
'V8 Linux64 - cppgc-non-default - debug': {
|
||||
@ -1541,8 +1537,6 @@
|
||||
{'name': 'mjsunit', 'variant': 'stress_maglev'},
|
||||
# Experimental regexp engine.
|
||||
{'name': 'mjsunit', 'variant': 'experimental_regexp'},
|
||||
# Wasm write protect code space.
|
||||
{'name': 'mjsunit', 'variant': 'wasm_write_protect_code'},
|
||||
],
|
||||
},
|
||||
'V8 Linux64 gcc': {
|
||||
|
@ -53,7 +53,6 @@ ALL_VARIANT_FLAGS = {
|
||||
"instruction_scheduling": [["--turbo-instruction-scheduling"]],
|
||||
"stress_instruction_scheduling": [["--turbo-stress-instruction-scheduling"]
|
||||
],
|
||||
"wasm_write_protect_code": [["--wasm-write-protect-code-memory"]],
|
||||
# Google3 variants.
|
||||
"google3_icu": [[]],
|
||||
"google3_noicu": [[]],
|
||||
@ -95,9 +94,6 @@ INCOMPATIBLE_FLAGS_PER_VARIANT = {
|
||||
"--cache=after-execute", "--cache=full-code-cache", "--cache=none"
|
||||
],
|
||||
"experimental_regexp": ["--no-enable-experimental-regexp-engine"],
|
||||
# There is a negative implication: --perf-prof disables
|
||||
# --wasm-write-protect-code-memory.
|
||||
"wasm_write_protect_code": ["--perf-prof"],
|
||||
"assert_types": [
|
||||
"--concurrent-recompilation", "--stress_concurrent_inlining",
|
||||
"--no-assert-types"
|
||||
|
Loading…
Reference in New Issue
Block a user