| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/heap/memory-reducer.h" | 5 #include "src/heap/memory-reducer.h" |
| 6 | 6 |
| 7 #include "src/flags.h" | 7 #include "src/flags.h" |
| 8 #include "src/heap/gc-tracer.h" | 8 #include "src/heap/gc-tracer.h" |
| 9 #include "src/heap/heap-inl.h" | 9 #include "src/heap/heap-inl.h" |
| 10 #include "src/utils.h" | 10 #include "src/utils.h" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 DCHECK_EQ(kTimer, event.type); | 66 DCHECK_EQ(kTimer, event.type); |
| 67 DCHECK_EQ(kWait, state_.action); | 67 DCHECK_EQ(kWait, state_.action); |
| 68 state_ = Step(state_, event); | 68 state_ = Step(state_, event); |
| 69 if (state_.action == kRun) { | 69 if (state_.action == kRun) { |
| 70 DCHECK(heap()->incremental_marking()->IsStopped()); | 70 DCHECK(heap()->incremental_marking()->IsStopped()); |
| 71 DCHECK(FLAG_incremental_marking); | 71 DCHECK(FLAG_incremental_marking); |
| 72 if (FLAG_trace_gc_verbose) { | 72 if (FLAG_trace_gc_verbose) { |
| 73 PrintIsolate(heap()->isolate(), "Memory reducer: started GC #%d\n", | 73 PrintIsolate(heap()->isolate(), "Memory reducer: started GC #%d\n", |
| 74 state_.started_gcs); | 74 state_.started_gcs); |
| 75 } | 75 } |
| 76 if (heap()->ShouldOptimizeForMemoryUsage()) { | 76 heap()->StartIdleIncrementalMarking(); |
| 77 // TODO(ulan): Remove this once crbug.com/552305 is fixed. | |
| 78 // Do full GC if memory usage has higher priority than latency. | |
| 79 heap()->CollectAllGarbage(Heap::kReduceMemoryFootprintMask, | |
| 80 "memory reducer"); | |
| 81 } else { | |
| 82 heap()->StartIdleIncrementalMarking(); | |
| 83 } | |
| 84 } else if (state_.action == kWait) { | 77 } else if (state_.action == kWait) { |
| 85 if (!heap()->incremental_marking()->IsStopped() && | 78 if (!heap()->incremental_marking()->IsStopped() && |
| 86 heap()->ShouldOptimizeForMemoryUsage()) { | 79 heap()->ShouldOptimizeForMemoryUsage()) { |
| 87 // Make progress with pending incremental marking if memory usage has | 80 // Make progress with pending incremental marking if memory usage has |
| 88 // higher priority than latency. This is important for background tabs | 81 // higher priority than latency. This is important for background tabs |
| 89 // that do not send idle notifications. | 82 // that do not send idle notifications. |
| 90 const int kIncrementalMarkingDelayMs = 500; | 83 const int kIncrementalMarkingDelayMs = 500; |
| 91 double deadline = heap()->MonotonicallyIncreasingTimeInMs() + | 84 double deadline = heap()->MonotonicallyIncreasingTimeInMs() + |
| 92 kIncrementalMarkingDelayMs; | 85 kIncrementalMarkingDelayMs; |
| 93 heap()->incremental_marking()->AdvanceIncrementalMarking( | 86 heap()->incremental_marking()->AdvanceIncrementalMarking( |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 auto timer_task = new MemoryReducer::TimerTask(this); | 204 auto timer_task = new MemoryReducer::TimerTask(this); |
| 212 V8::GetCurrentPlatform()->CallDelayedOnForegroundThread( | 205 V8::GetCurrentPlatform()->CallDelayedOnForegroundThread( |
| 213 isolate, timer_task, (delay_ms + kSlackMs) / 1000.0); | 206 isolate, timer_task, (delay_ms + kSlackMs) / 1000.0); |
| 214 } | 207 } |
| 215 | 208 |
| 216 | 209 |
| 217 void MemoryReducer::TearDown() { state_ = State(kDone, 0, 0, 0.0); } | 210 void MemoryReducer::TearDown() { state_ = State(kDone, 0, 0, 0.0); } |
| 218 | 211 |
| 219 } // namespace internal | 212 } // namespace internal |
| 220 } // namespace v8 | 213 } // namespace v8 |
| OLD | NEW |