 Chromium Code Reviews
 Chromium Code Reviews Issue 8234002:
  New flag --stress-compaction  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
    
  
    Issue 8234002:
  New flag --stress-compaction  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/| Index: src/v8.cc | 
| =================================================================== | 
| --- src/v8.cc (revision 9578) | 
| +++ src/v8.cc (working copy) | 
| @@ -216,6 +216,12 @@ | 
| FLAG_peephole_optimization = !use_crankshaft_; | 
| ElementsAccessor::InitializeOncePerProcess(); | 
| + | 
| + if (FLAG_stress_compaction) { | 
| + FLAG_force_marking_deque_overflows = true; | 
| + FLAG_gc_global = true; | 
| + FLAG_max_new_space_size = (1 << kPageSizeBits) * 2; | 
| + } | 
| } | 
| } } // namespace v8::internal |