Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/clusterfuzz/v8_foozzie.py')
-rwxr-xr-xdeps/v8/tools/clusterfuzz/v8_foozzie.py29
1 files changed, 8 insertions, 21 deletions
diff --git a/deps/v8/tools/clusterfuzz/v8_foozzie.py b/deps/v8/tools/clusterfuzz/v8_foozzie.py
index 28685845bba..6fcd49f2093 100755
--- a/deps/v8/tools/clusterfuzz/v8_foozzie.py
+++ b/deps/v8/tools/clusterfuzz/v8_foozzie.py
@@ -21,63 +21,49 @@ import v8_commands
import v8_suppressions
CONFIGS = dict(
- default=[
- '--suppress-asm-messages',
- ],
+ default=[],
ignition=[
'--turbo-filter=~',
'--noopt',
- '--suppress-asm-messages',
+ '--liftoff',
+ '--no-wasm-tier-up',
],
ignition_asm=[
'--turbo-filter=~',
'--noopt',
'--validate-asm',
'--stress-validate-asm',
- '--suppress-asm-messages',
],
ignition_eager=[
'--turbo-filter=~',
'--noopt',
'--no-lazy',
'--no-lazy-inner-functions',
- '--suppress-asm-messages',
- ],
- ignition_turbo=[
- '--suppress-asm-messages',
],
+ ignition_turbo=[],
ignition_turbo_opt=[
'--always-opt',
- '--suppress-asm-messages',
+ '--no-liftoff',
+ '--no-wasm-tier-up',
],
ignition_turbo_opt_eager=[
'--always-opt',
'--no-lazy',
'--no-lazy-inner-functions',
- '--suppress-asm-messages',
- ],
- liftoff=[
- '--liftoff',
- '--no-wasm-tier-up',
- '--suppress-asm-messages',
],
slow_path=[
'--force-slow-path',
- '--suppress-asm-messages',
],
slow_path_opt=[
'--always-opt',
'--force-slow-path',
- '--suppress-asm-messages',
],
trusted=[
'--no-untrusted-code-mitigations',
- '--suppress-asm-messages',
],
trusted_opt=[
'--always-opt',
'--no-untrusted-code-mitigations',
- '--suppress-asm-messages',
],
)
@@ -107,7 +93,8 @@ ARCH_MOCKS = os.path.join(BASE_PATH, 'v8_mock_archs.js')
FLAGS = ['--abort_on_stack_or_string_length_overflow', '--expose-gc',
'--allow-natives-syntax', '--invoke-weak-callbacks', '--omit-quit',
- '--es-staging', '--wasm-num-compilation-tasks=0']
+ '--es-staging', '--wasm-num-compilation-tasks=0',
+ '--suppress-asm-messages']
SUPPORTED_ARCHS = ['ia32', 'x64', 'arm', 'arm64']