Revision: 16043
Author: [email protected]
Date: Mon Aug 5 02:28:22 2013
Log: Add notice when parallel recompilation is disabled by tracing.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/22164002
http://code.google.com/p/v8/source/detail?r=16043
Modified:
/branches/bleeding_edge/src/v8.cc
=======================================
--- /branches/bleeding_edge/src/v8.cc Mon Aug 5 02:02:47 2013
+++ /branches/bleeding_edge/src/v8.cc Mon Aug 5 02:28:22 2013
@@ -272,9 +272,10 @@
FLAG_max_new_space_size = (1 << (kPageSizeBits - 10)) * 2;
}
- if (FLAG_trace_hydrogen || FLAG_trace_hydrogen_stubs) {
- // Tracing hydrogen do not work with parallel recompilation.
+ if (FLAG_parallel_recompilation &&
+ (FLAG_trace_hydrogen || FLAG_trace_hydrogen_stubs)) {
FLAG_parallel_recompilation = false;
+ PrintF("Parallel recompilation has been disabled for tracing.\n");
}
if (FLAG_sweeper_threads <= 0) {
--
--
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.