Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(645)

Unified Diff: src/v8.cc

Issue 21830004: Disable parallel recompilation for --trace-hydrogen-stubs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/v8.cc
diff --git a/src/v8.cc b/src/v8.cc
index cfec0c0c4138d30466472ab4a0e42d526267931f..521d064129a32631eedeaec02c4e44eb5e2c2fa5 100644
--- a/src/v8.cc
+++ b/src/v8.cc
@@ -271,7 +271,11 @@ void V8::InitializeOncePerProcessImpl() {
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) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698