Commit 86603269 authored by jarin@chromium.org's avatar jarin@chromium.org

Enable turbofan deoptimization by default.

BUG=
R=bmeurer@chromium.org

Review URL: https://codereview.chromium.org/638833004

Cr-Commit-Position: refs/heads/master@{#24905}
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24905 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 91f49623
......@@ -186,7 +186,7 @@ class BenchmarksTestSuite(testsuite.TestSuite):
# Both --nocrankshaft and --stressopt are very slow. Add TF but without
# always opt to match the way the benchmarks are run for performance
# testing.
return [[], ["--turbo-asm", "--turbo-filter=*"]]
return [[], ["--turbo-asm", "--turbo-filter=*", "--turbo-deoptimization"]]
def GetSuite(name, root):
......
......@@ -72,6 +72,9 @@
'compare-known-objects-slow': [PASS, NO_VARIANTS],
'elements-kind': [PASS, NO_VARIANTS],
# TODO(jarin) Traversal of large frame states is too slow.
'regress/regress-2612': [PASS, ['mode == debug', SKIP]],
# Some tests are just too slow to run for now.
'bit-not': [PASS, NO_VARIANTS],
'json2': [PASS, NO_VARIANTS],
......
......@@ -87,7 +87,7 @@ TIMEOUT_SCALEFACTOR = {"debug" : 4,
VARIANT_FLAGS = {
"default": [],
"stress": ["--stress-opt", "--always-opt"],
"turbofan": ["--turbo-asm", "--turbo-filter=*", "--always-opt"],
"turbofan": ["--turbo-asm", "--turbo-filter=*", "--always-opt", "--turbo-deoptimization"],
"nocrankshaft": ["--nocrankshaft"]}
VARIANTS = ["default", "stress", "turbofan", "nocrankshaft"]
......
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