summaryrefslogtreecommitdiff
path: root/deps/v8/tools/testrunner/local/variants.py
blob: c8c7ce64a8d830992913bd5061369d911f9e206b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright 2016 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Use this to run several variants of the tests.
ALL_VARIANT_FLAGS = {
  "default": [[]],
  "future": [["--future"]],
  "liftoff": [["--liftoff"]],
  "stress": [["--stress-opt", "--always-opt"]],
  # TODO(6792): Write protected code has been temporary added to the below
  # variant until the feature has been enabled (or staged) by default.
  "stress_incremental_marking":  [["--stress-incremental-marking", "--write-protect-code-memory"]],
  # No optimization means disable all optimizations. OptimizeFunctionOnNextCall
  # would not force optimization too. It turns into a Nop. Please see
  # https://chromium-review.googlesource.com/c/452620/ for more discussion.
  "nooptimization": [["--noopt"]],
  "stress_background_compile": [["--background-compile", "--stress-background-compile"]],
  "wasm_traps": [["--wasm_trap_handler", "--invoke-weak-callbacks", "--wasm-jit-to-native"]],
}

# FAST_VARIANTS implies no --always-opt.
FAST_VARIANT_FLAGS = {
  "default": [[]],
  "future": [["--future"]],
  "liftoff": [["--liftoff"]],
  "stress": [["--stress-opt"]],
  # TODO(6792): Write protected code has been temporary added to the below
  # variant until the feature has been enabled (or staged) by default.
  "stress_incremental_marking":  [["--stress-incremental-marking", "--write-protect-code-memory"]],
  # No optimization means disable all optimizations. OptimizeFunctionOnNextCall
  # would not force optimization too. It turns into a Nop. Please see
  # https://chromium-review.googlesource.com/c/452620/ for more discussion.
  "nooptimization": [["--noopt"]],
  "stress_background_compile": [["--background-compile", "--stress-background-compile"]],
  "wasm_traps": [["--wasm_trap_handler", "--invoke-weak-callbacks", "--wasm-jit-to-native"]],
}

ALL_VARIANTS = set(["default", "future", "liftoff", "stress",
                    "stress_incremental_marking", "nooptimization",
                    "stress_background_compile", "wasm_traps"])