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

Unified Diff: Source/platform/heap/ThreadState.cpp

Issue 1252683003: Oilpan: Schedule a precise GC when a page navigates (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« Source/platform/heap/ThreadState.h ('K') | « Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/ThreadState.cpp
diff --git a/Source/platform/heap/ThreadState.cpp b/Source/platform/heap/ThreadState.cpp
index f751bba454a88eeb6e42e80aaae8a002596dcfe4..105a582b60a5d8f87aea2db175ff0eee71491a4f 100644
--- a/Source/platform/heap/ThreadState.cpp
+++ b/Source/platform/heap/ThreadState.cpp
@@ -650,6 +650,49 @@ bool ThreadState::shouldSchedulePreciseGC()
#endif
}
+bool ThreadState::shouldSchedulePageNavigationGC(float estimatedRemovalRatio)
+{
+ if (UNLIKELY(isGCForbidden()))
+ return false;
+
+ if (shouldForceMemoryPressureGC())
+ return true;
+
+ // Avoid potential overflow by truncating to Kb.
+ size_t allocatedObjectSizeKb = Heap::allocatedObjectSize() >> 10;
+ // The estimated size is updated when the main thread finishes lazy
+ // sweeping. If this thread reaches here before the main thread finishes
+ // lazy sweeping, the thread will use the estimated size of the last GC.
+ size_t estimatedLiveObjectSizeKb = (estimatedLiveObjectSize() >> 10) * (1 - estimatedRemovalRatio);
+ // Heap::markedObjectSize() may be underestimated if any thread has not
+ // finished completeSweep().
+ size_t currentObjectSizeKb = currentObjectSize() >> 10;
+ // Schedule a precise GC if Oilpan has allocated more than 1 MB since
+ // the last GC and the current memory usage is >50% larger than
+ // the estimated live memory usage.
+ return allocatedObjectSizeKb >= 1024 && currentObjectSizeKb > (estimatedLiveObjectSizeKb * 3) / 2;
+}
+
+void ThreadState::schedulePageNavigationGCIfNeeded(float estimatedRemovalRatio)
+{
+ ASSERT(checkThread());
+ // Finish on-going lazy sweeping.
haraken 2015/08/11 07:43:08 Add: // TODO(haraken): It might not make sense
keishi 2015/08/11 08:12:58 Done.
+ completeSweep();
+ ASSERT(!isSweepingInProgress());
+ ASSERT(!sweepForbidden());
+
+ Heap::reportMemoryUsageForTracing();
+ if (shouldSchedulePageNavigationGC(estimatedRemovalRatio))
+ schedulePageNavigationGC();
+}
+
+void ThreadState::schedulePageNavigationGC()
+{
+ ASSERT(checkThread());
+ ASSERT(!isSweepingInProgress());
+ setGCState(PageNavigationGCScheduled);
+}
+
// TODO(haraken): We should improve the GC heuristics.
// These heuristics affect performance significantly.
bool ThreadState::shouldForceConservativeGC()
@@ -910,6 +953,9 @@ void ThreadState::runScheduledGC(StackState stackState)
case PreciseGCScheduled:
Heap::collectGarbage(NoHeapPointersOnStack, GCWithoutSweep, Heap::PreciseGC);
break;
+ case PageNavigationGCScheduled:
+ Heap::collectGarbage(NoHeapPointersOnStack, GCWithSweep, Heap::PreciseGC);
+ break;
case IdleGCScheduled:
// Idle time GC will be scheduled by Blink Scheduler.
break;
« Source/platform/heap/ThreadState.h ('K') | « Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698