Revision: 16042
Author:   [email protected]
Date:     Mon Aug  5 02:02:47 2013
Log:      Disable parallel recompilation for --trace-hydrogen-stubs.

[email protected]
BUG=

Review URL: https://codereview.chromium.org/21830004
http://code.google.com/p/v8/source/detail?r=16042

Modified:
 /branches/bleeding_edge/src/v8.cc

=======================================
--- /branches/bleeding_edge/src/v8.cc   Fri Jul  5 02:52:11 2013
+++ /branches/bleeding_edge/src/v8.cc   Mon Aug  5 02:02:47 2013
@@ -271,7 +271,11 @@
     FLAG_gc_global = true;
     FLAG_max_new_space_size = (1 << (kPageSizeBits - 10)) * 2;
   }
-  if (FLAG_trace_hydrogen) FLAG_parallel_recompilation = false;
+
+  if (FLAG_trace_hydrogen || FLAG_trace_hydrogen_stubs) {
+    // Tracing hydrogen do not work with parallel recompilation.
+    FLAG_parallel_recompilation = false;
+  }

   if (FLAG_sweeper_threads <= 0) {
     if (FLAG_concurrent_sweeping) {

--
--
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/groups/opt_out.


Reply via email to