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

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

Issue 850663002: Oilpan: fix computation of ThreadState::m_collectionRate. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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: Source/platform/heap/ThreadState.cpp
diff --git a/Source/platform/heap/ThreadState.cpp b/Source/platform/heap/ThreadState.cpp
index deaa5135d82c09596854b74a0164c6e37fec1fe5..e60da1a227b95c5cdba451b77d3026a890b93cbe 100644
--- a/Source/platform/heap/ThreadState.cpp
+++ b/Source/platform/heap/ThreadState.cpp
@@ -893,6 +893,8 @@ void ThreadState::preGC()
makeConsistentForSweeping();
prepareRegionTree();
flushHeapDoesNotContainCacheIfNeeded();
+ if (isMainThread())
+ m_allocatedObjectSizeBeforeSweeping = Heap::allocatedObjectSize() + Heap::markedObjectSize();
haraken 2015/01/13 11:56:48 Shall we rename it to m_objectSizeBeforeGC?
sof 2015/01/13 12:11:53 Done.
}
void ThreadState::postGC(GCType gcType)
@@ -1037,8 +1039,6 @@ void ThreadState::postGCProcessing()
return;
m_didV8GCAfterLastGC = false;
- if (isMainThread())
- m_allocatedObjectSizeBeforeSweeping = Heap::allocatedObjectSize();
haraken 2015/01/13 11:56:48 Before this CL, m_allocatedObjectSizeBeforeSweepin
sof 2015/01/13 12:11:53 Yes; m_collectionRate then mapping to +Inf.
haraken 2015/01/13 12:23:08 oh... Also let's add a zero-division check to the
sof 2015/01/13 12:35:57 Asserted on m_collectionRate's range.
#if ENABLE(GC_PROFILE_HEAP)
// We snapshot the heap prior to sweeping to get numbers for both resources
« 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