Reviewers: Benedikt Meurer,

Message:
Could you take a look, please?

Description:
Enable turbofan deoptimization by default.

BUG=

Please review this at https://codereview.chromium.org/638833004/

Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+5, -2 lines):
  M test/benchmarks/testcfg.py
  M test/mjsunit/mjsunit.status
  M tools/run-tests.py


Index: test/benchmarks/testcfg.py
diff --git a/test/benchmarks/testcfg.py b/test/benchmarks/testcfg.py
index 29e0c37e44f68df83393c1bcef379df7dccd19fd..7c4dc4002994e2ec62d8a478a883c5fa20044033 100644
--- a/test/benchmarks/testcfg.py
+++ b/test/benchmarks/testcfg.py
@@ -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):
Index: test/mjsunit/mjsunit.status
diff --git a/test/mjsunit/mjsunit.status b/test/mjsunit/mjsunit.status
index bf297fe0be6eaf8ddd5d7acc60f62d362e4b7a03..e1722077f6fcaa993534ebd33e7b2b704e03cbd5 100644
--- a/test/mjsunit/mjsunit.status
+++ b/test/mjsunit/mjsunit.status
@@ -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],
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index dc73a4035fc364abbadb6ac23b5afeec3ee24ffd..d9d35f5932d1bdc2956c438c4ebd73c13a325cfb 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -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"]


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to