Changeset 183194 in webkit
- Timestamp:
- Apr 23, 2015, 10:48:37 AM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r183187 r183194 1 2015-04-23 Antti Koivisto <antti@apple.com> 2 3 Memory cache live resources repeatedly purged during painting 4 https://bugs.webkit.org/show_bug.cgi?id=144104 5 <rdar://problem/20667695> 6 7 Reviewed by Chris Dumez. 8 9 On some PLT pages (like nytimes.com) we get into state where painting repeatedly purges live bitmaps. 10 This slows down page loads significantly. 11 12 This might have regressed because improvements in page caching keep more pages and so resources 'live'. 13 14 With this path we do all regular cache pruning asynchronously. If memory is really critical 15 the low memory handling code will still prune synchronously. 16 17 * loader/cache/CachedResource.cpp: 18 (WebCore::CachedResource::removeClient): 19 (WebCore::CachedResource::didAccessDecodedData): 20 21 prune() -> pruneSoon() 22 23 * loader/cache/MemoryCache.cpp: 24 25 Decrease the pruning size target from 0.95 to 0.8 so we don't need to prune so often. 26 27 (WebCore::MemoryCache::needsPruning): 28 29 Factor into a function. 30 31 (WebCore::MemoryCache::prune): 32 (WebCore::MemoryCache::pruneSoon): 33 34 Prune asynchronously. 35 36 * loader/cache/MemoryCache.h: 37 1 38 2015-04-23 Eric Carlson <eric.carlson@apple.com> 2 39 -
trunk/Source/WebCore/loader/cache/CachedResource.cpp
r182369 r183194 461 461 memoryCache.remove(*this); 462 462 } 463 memoryCache.prune ();463 memoryCache.pruneSoon(); 464 464 } 465 465 // This object may be dead here. … … 558 558 memoryCache.insertInLiveDecodedResourcesList(*this); 559 559 } 560 memoryCache.prune ();560 memoryCache.pruneSoon(); 561 561 } 562 562 } -
trunk/Source/WebCore/loader/cache/MemoryCache.cpp
r182449 r183194 44 44 #include <wtf/MathExtras.h> 45 45 #include <wtf/NeverDestroyed.h> 46 #include <wtf/RunLoop.h> 46 47 #include <wtf/TemporaryChange.h> 47 48 #include <wtf/text/CString.h> … … 51 52 static const int cDefaultCacheCapacity = 8192 * 1024; 52 53 static const double cMinDelayBeforeLiveDecodedPrune = 1; // Seconds. 53 static const float cTargetPrunePercentage = .95f; // Percentage of capacity toward which we prune, to avoid immediately pruning again.54 static const float cTargetPrunePercentage = 0.8; // Percentage of capacity toward which we prune, to avoid immediately pruning again. 54 55 static const auto defaultDecodedDataDeletionInterval = std::chrono::seconds { 0 }; 55 56 … … 746 747 } 747 748 749 bool MemoryCache::needsPruning() const 750 { 751 return m_liveSize + m_deadSize > m_capacity || m_deadSize > m_maxDeadCapacity; 752 } 753 748 754 void MemoryCache::prune() 749 755 { 750 if ( m_liveSize + m_deadSize <= m_capacity && m_deadSize <= m_maxDeadCapacity) // Fast path.751 return; 752 756 if (!needsPruning()) 757 return; 758 753 759 pruneDeadResources(); // Prune dead first, in case it was "borrowing" capacity from live. 754 760 pruneLiveResources(); 761 } 762 763 void MemoryCache::pruneSoon() 764 { 765 if (m_willPruneSoon) 766 return; 767 if (!needsPruning()) 768 return; 769 770 m_willPruneSoon = true; 771 RunLoop::main().dispatch([this] { 772 prune(); 773 m_willPruneSoon = false; 774 }); 755 775 } 756 776 -
trunk/Source/WebCore/loader/cache/MemoryCache.h
r182449 r183194 116 116 WEBCORE_EXPORT void evictResources(); 117 117 WEBCORE_EXPORT void evictResources(SessionID); 118 118 119 119 void prune(); 120 void pruneSoon(); 120 121 unsigned size() const { return m_liveSize + m_deadSize; } 121 122 … … 185 186 unsigned liveCapacity() const; 186 187 unsigned deadCapacity() const; 188 bool needsPruning() const; 187 189 188 190 CachedResource* resourceForRequestImpl(const ResourceRequest&, CachedResourceMap&); … … 214 216 typedef HashMap<SessionID, std::unique_ptr<CachedResourceMap>> SessionCachedResourceMap; 215 217 SessionCachedResourceMap m_sessionResources; 218 219 bool m_willPruneSoon { false }; 216 220 }; 217 221
Note:
See TracChangeset
for help on using the changeset viewer.