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

Side by Side Diff: Source/platform/heap/Heap.cpp

Issue 875503003: Allow Oilpan heap objects account for their external allocations. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Have conservative GC take prio over scheduled GC when urgent GCing Created 5 years, 10 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
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 2455 matching lines...) Expand 10 before | Expand all | Expand 10 after
2466 #endif 2466 #endif
2467 2467
2468 // Disallow allocation during garbage collection (but not during the 2468 // Disallow allocation during garbage collection (but not during the
2469 // finalization that happens when the gcScope is torn down). 2469 // finalization that happens when the gcScope is torn down).
2470 ThreadState::NoAllocationScope noAllocationScope(state); 2470 ThreadState::NoAllocationScope noAllocationScope(state);
2471 2471
2472 preGC(); 2472 preGC();
2473 s_markingVisitor->configureEagerTraceLimit(); 2473 s_markingVisitor->configureEagerTraceLimit();
2474 ASSERT(s_markingVisitor->canTraceEagerly()); 2474 ASSERT(s_markingVisitor->canTraceEagerly());
2475 2475
2476 Heap::resetMarkedObjectSize(); 2476 Heap::resetHeapCounters();
2477 Heap::resetAllocatedObjectSize();
2478 2477
2479 // 1. Trace persistent roots. 2478 // 1. Trace persistent roots.
2480 ThreadState::visitPersistentRoots(s_markingVisitor); 2479 ThreadState::visitPersistentRoots(s_markingVisitor);
2481 2480
2482 // 2. Trace objects reachable from the persistent roots including 2481 // 2. Trace objects reachable from the persistent roots including
2483 // ephemerons. 2482 // ephemerons.
2484 processMarkingStack(s_markingVisitor); 2483 processMarkingStack(s_markingVisitor);
2485 2484
2486 // 3. Trace objects reachable from the stack. We do this independent of the 2485 // 3. Trace objects reachable from the stack. We do this independent of the
2487 // given stackState since other threads might have a different stack state. 2486 // given stackState since other threads might have a different stack state.
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
2843 add(current->m_left, context); 2842 add(current->m_left, context);
2844 current->m_left = nullptr; 2843 current->m_left = nullptr;
2845 } 2844 }
2846 if (current->m_right) { 2845 if (current->m_right) {
2847 add(current->m_right, context); 2846 add(current->m_right, context);
2848 current->m_right = nullptr; 2847 current->m_right = nullptr;
2849 } 2848 }
2850 delete current; 2849 delete current;
2851 } 2850 }
2852 2851
2852 void Heap::resetHeapCounters()
2853 {
2854 ASSERT(ThreadState::current()->isInGC());
2855
2856 s_allocatedObjectSize = 0;
2857 s_markedObjectSize = 0;
2858
2859 // Similarly, reset the amount of externally allocated memory.
2860 s_externallyAllocatedBytes = 0;
2861 s_externallyAllocatedBytesAlive = 0;
2862
2863 s_requestedUrgentGC = false;
2864 }
2865
2866 void Heap::increaseExternallyAllocatedBytes(size_t delta)
2867 {
2868 atomicAdd(&s_externallyAllocatedBytes, static_cast<long>(delta));
2869
2870 if (isGCUrgentlyRequested())
2871 return;
2872
2873 // Flag GC urgency on a 50% increase in external allocation
2874 // since the last GC, but not for less than 100M.
2875 size_t externalBytesSinceGC = externallyAllocatedBytes();
2876 if (externalBytesSinceGC < 10 * 1024 * 1024)
2877 return;
2878
2879 size_t externalBytesAlive = externallyAllocatedBytesAlive();
2880
2881 // The urgent-gc flag will be considered the next time an out-of-line
2882 // allocation is made. Bump allocations from the current block will
2883 // go ahead until that block has been exhausted.
2884 // FIXME: if that delays urgently needed GCs for too long, consider
2885 // flushing out per-heap "allocation points" to trigger the GC
2886 // right away.
2887 if (externalBytesSinceGC > externalBytesAlive / 2)
2888 Heap::requestUrgentGC();
2889 }
2890
2853 Visitor* Heap::s_markingVisitor; 2891 Visitor* Heap::s_markingVisitor;
2854 CallbackStack* Heap::s_markingStack; 2892 CallbackStack* Heap::s_markingStack;
2855 CallbackStack* Heap::s_postMarkingCallbackStack; 2893 CallbackStack* Heap::s_postMarkingCallbackStack;
2856 CallbackStack* Heap::s_weakCallbackStack; 2894 CallbackStack* Heap::s_weakCallbackStack;
2857 CallbackStack* Heap::s_ephemeronStack; 2895 CallbackStack* Heap::s_ephemeronStack;
2858 HeapDoesNotContainCache* Heap::s_heapDoesNotContainCache; 2896 HeapDoesNotContainCache* Heap::s_heapDoesNotContainCache;
2859 bool Heap::s_shutdownCalled = false; 2897 bool Heap::s_shutdownCalled = false;
2860 bool Heap::s_lastGCWasConservative = false; 2898 bool Heap::s_lastGCWasConservative = false;
2861 FreePagePool* Heap::s_freePagePool; 2899 FreePagePool* Heap::s_freePagePool;
2862 OrphanedPagePool* Heap::s_orphanedPagePool; 2900 OrphanedPagePool* Heap::s_orphanedPagePool;
2863 Heap::RegionTree* Heap::s_regionTree = nullptr; 2901 Heap::RegionTree* Heap::s_regionTree = nullptr;
2864 size_t Heap::s_allocatedObjectSize = 0; 2902 size_t Heap::s_allocatedObjectSize = 0;
2865 size_t Heap::s_allocatedSpace = 0; 2903 size_t Heap::s_allocatedSpace = 0;
2866 size_t Heap::s_markedObjectSize = 0; 2904 size_t Heap::s_markedObjectSize = 0;
2867 2905
2906 size_t Heap::s_externallyAllocatedBytes = 0;
2907 size_t Heap::s_externallyAllocatedBytesAlive = 0;
2908 unsigned Heap::s_requestedUrgentGC = false;
2909
2868 } // namespace blink 2910 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698