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

Side by Side Diff: Source/platform/heap/ThreadState.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: minor optimizations and tuning 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
« Source/core/dom/Text.cpp ('K') | « Source/platform/heap/ThreadState.h ('k') | 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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 // but not for less than 512 KB. 664 // but not for less than 512 KB.
665 size_t newSize = Heap::allocatedObjectSize(); 665 size_t newSize = Heap::allocatedObjectSize();
666 return newSize >= 512 * 1024 && newSize > Heap::markedObjectSize() / 2; 666 return newSize >= 512 * 1024 && newSize > Heap::markedObjectSize() / 2;
667 #endif 667 #endif
668 } 668 }
669 669
670 // FIXME: We should improve the GC heuristics. 670 // FIXME: We should improve the GC heuristics.
671 // These heuristics affect performance significantly. 671 // These heuristics affect performance significantly.
672 bool ThreadState::shouldForceConservativeGC() 672 bool ThreadState::shouldForceConservativeGC()
673 { 673 {
674 if (Heap::isUrgentGCRequested())
675 return true;
676
674 size_t newSize = Heap::allocatedObjectSize(); 677 size_t newSize = Heap::allocatedObjectSize();
675 if (newSize >= 300 * 1024 * 1024) { 678 if (newSize >= 300 * 1024 * 1024) {
676 // If we consume too much memory, trigger a conservative GC 679 // If we consume too much memory, trigger a conservative GC
677 // on a 50% increase in size since the last GC. This is a safe guard 680 // on a 50% increase in size since the last GC. This is a safe guard
678 // to avoid OOM. 681 // to avoid OOM.
679 return newSize > Heap::markedObjectSize() / 2; 682 return newSize > Heap::markedObjectSize() / 2;
680 } 683 }
681 if (m_didV8GCAfterLastGC && m_collectionRate > 0.5) { 684 if (m_didV8GCAfterLastGC && m_collectionRate > 0.5) {
682 // If we had a V8 GC after the last Oilpan GC and the last collection 685 // If we had a V8 GC after the last Oilpan GC and the last collection
683 // rate was higher than 50%, trigger a conservative GC on a 200% 686 // rate was higher than 50%, trigger a conservative GC on a 200%
684 // increase in size since the last GC, but not for less than 4 MB. 687 // increase in size since the last GC, but not for less than 4 MB.
685 return newSize >= 4 * 1024 * 1024 && newSize > 2 * Heap::markedObjectSiz e(); 688 return newSize >= 4 * 1024 * 1024 && newSize > 2 * Heap::markedObjectSiz e();
686 } 689 }
687 // Otherwise, trigger a conservative GC on a 400% increase in size since 690 // Otherwise, trigger a conservative GC on a 400% increase in size since
688 // the last GC, but not for less than 32 MB. We set the higher limit in 691 // the last GC, but not for less than 32 MB. We set the higher limit in
689 // this case because Oilpan GC is unlikely to collect a lot of objects 692 // this case because Oilpan GC is unlikely to collect a lot of objects
690 // without having a V8 GC. 693 // without having a V8 GC.
691 return newSize >= 32 * 1024 * 1024 && newSize > 4 * Heap::markedObjectSize() ; 694 return newSize >= 32 * 1024 * 1024 && newSize > 4 * Heap::markedObjectSize() ;
692 } 695 }
693 696
694 void ThreadState::scheduleGCIfNeeded() 697 void ThreadState::scheduleGCIfNeeded()
695 { 698 {
696 checkThread(); 699 checkThread();
697 // Allocation is allowed during sweeping, but those allocations should not 700 // Allocation is allowed during sweeping, but those allocations should not
698 // trigger nested GCs 701 // trigger nested GCs
699 if (isSweepingInProgress()) 702 if (isSweepingInProgress()) {
700 return; 703 if (!Heap::isUrgentGCRequested() || !isSweepingScheduled())
704 return;
705 // Urgent GC requested with only a GC scheduled; fall through
706 // and have it be serviced by a conservative GC.
707 }
701 ASSERT(!sweepForbidden()); 708 ASSERT(!sweepForbidden());
702 709
703 if (shouldForceConservativeGC()) 710 if (shouldForceConservativeGC()) {
704 Heap::collectGarbage(ThreadState::HeapPointersOnStack, ThreadState::GCWi thoutSweep); 711 // If GC is deemed urgent, eagerly sweep and finalize any external alloc ations right away.
705 else if (shouldSchedulePreciseGC()) 712 GCType gcType = Heap::isUrgentGCRequested() ? GCWithSweep : GCWithoutSwe ep;
713 Heap::collectGarbage(HeapPointersOnStack, gcType);
714 return;
715 }
716 if (shouldSchedulePreciseGC())
706 schedulePreciseGC(); 717 schedulePreciseGC();
707 else if (shouldScheduleIdleGC()) 718 else if (shouldScheduleIdleGC())
708 scheduleIdleGC(); 719 scheduleIdleGC();
709 } 720 }
710 721
711 void ThreadState::performIdleGC(double deadlineSeconds) 722 void ThreadState::performIdleGC(double deadlineSeconds)
712 { 723 {
713 ASSERT(isMainThread()); 724 ASSERT(isMainThread());
714 725
715 m_hasPendingIdleTask = false; 726 m_hasPendingIdleTask = false;
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 json->beginArray(it->key.ascii().data()); 1280 json->beginArray(it->key.ascii().data());
1270 for (size_t age = 0; age <= maxHeapObjectAge; ++age) 1281 for (size_t age = 0; age <= maxHeapObjectAge; ++age)
1271 json->pushInteger(it->value.ages[age]); 1282 json->pushInteger(it->value.ages[age]);
1272 json->endArray(); 1283 json->endArray();
1273 } 1284 }
1274 TRACE_EVENT_OBJECT_SNAPSHOT_WITH_ID(TRACE_DISABLED_BY_DEFAULT("blink_gc"), s tatsName, this, json.release()); 1285 TRACE_EVENT_OBJECT_SNAPSHOT_WITH_ID(TRACE_DISABLED_BY_DEFAULT("blink_gc"), s tatsName, this, json.release());
1275 } 1286 }
1276 #endif 1287 #endif
1277 1288
1278 } // namespace blink 1289 } // namespace blink
OLDNEW
« Source/core/dom/Text.cpp ('K') | « Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698