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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 } 886 }
887 } 887 }
888 888
889 void ThreadState::preGC() 889 void ThreadState::preGC()
890 { 890 {
891 ASSERT(!isInGC()); 891 ASSERT(!isInGC());
892 setGCState(GCRunning); 892 setGCState(GCRunning);
893 makeConsistentForSweeping(); 893 makeConsistentForSweeping();
894 prepareRegionTree(); 894 prepareRegionTree();
895 flushHeapDoesNotContainCacheIfNeeded(); 895 flushHeapDoesNotContainCacheIfNeeded();
896 if (isMainThread())
897 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.
896 } 898 }
897 899
898 void ThreadState::postGC(GCType gcType) 900 void ThreadState::postGC(GCType gcType)
899 { 901 {
900 ASSERT(isInGC()); 902 ASSERT(isInGC());
901 setGCState(gcType == GCWithSweep ? EagerSweepScheduled : LazySweepScheduled) ; 903 setGCState(gcType == GCWithSweep ? EagerSweepScheduled : LazySweepScheduled) ;
902 for (int i = 0; i < NumberOfHeaps; i++) 904 for (int i = 0; i < NumberOfHeaps; i++)
903 m_heaps[i]->prepareForSweep(); 905 m_heaps[i]->prepareForSweep();
904 } 906 }
905 907
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
1030 } 1032 }
1031 } 1033 }
1032 1034
1033 void ThreadState::postGCProcessing() 1035 void ThreadState::postGCProcessing()
1034 { 1036 {
1035 checkThread(); 1037 checkThread();
1036 if (gcState() != EagerSweepScheduled && gcState() != LazySweepScheduled) 1038 if (gcState() != EagerSweepScheduled && gcState() != LazySweepScheduled)
1037 return; 1039 return;
1038 1040
1039 m_didV8GCAfterLastGC = false; 1041 m_didV8GCAfterLastGC = false;
1040 if (isMainThread())
1041 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.
1042 1042
1043 #if ENABLE(GC_PROFILE_HEAP) 1043 #if ENABLE(GC_PROFILE_HEAP)
1044 // We snapshot the heap prior to sweeping to get numbers for both resources 1044 // We snapshot the heap prior to sweeping to get numbers for both resources
1045 // that have been allocated since the last GC and for resources that are 1045 // that have been allocated since the last GC and for resources that are
1046 // going to be freed. 1046 // going to be freed.
1047 bool gcTracingEnabled; 1047 bool gcTracingEnabled;
1048 TRACE_EVENT_CATEGORY_GROUP_ENABLED("blink_gc", &gcTracingEnabled); 1048 TRACE_EVENT_CATEGORY_GROUP_ENABLED("blink_gc", &gcTracingEnabled);
1049 if (gcTracingEnabled) 1049 if (gcTracingEnabled)
1050 snapshot(); 1050 snapshot();
1051 #endif 1051 #endif
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 return gcInfo; 1162 return gcInfo;
1163 } 1163 }
1164 } 1164 }
1165 if (needLockForIteration) 1165 if (needLockForIteration)
1166 threadAttachMutex().unlock(); 1166 threadAttachMutex().unlock();
1167 return nullptr; 1167 return nullptr;
1168 } 1168 }
1169 #endif 1169 #endif
1170 1170
1171 } // namespace blink 1171 } // namespace blink
OLDNEW
« 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