Changeset 183261 in webkit
- Timestamp:
- Apr 24, 2015, 4:20:10 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r183260 r183261 1 2015-04-24 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 6 Reviewed by Chris Dumez. 7 8 * http/tests/cache/disk-cache/disk-cache-vary-cookie.html: 9 10 These clearMemoryCache calls are now done by cache-test.js. 11 12 * http/tests/cache/disk-cache/resources/cache-test.js: 13 (loadResources): 14 15 Make sure to clear the memory cache explicitly in the beginning so we always hit the disk cache. 16 17 (runTests): 18 1 19 2015-04-24 Antti Koivisto <antti@apple.com> 2 20 -
trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-vary-cookie.html
r183260 r183261 16 16 loadResources(tests, function () { 17 17 printResults(tests); 18 internals.clearMemoryCache();19 18 debug("Loading again"); 20 19 loadResources(tests, function () { 21 20 printResults(tests); 22 internals.clearMemoryCache();23 21 debug("Changing cookie and loading"); 24 22 document.cookie = "cookie=othervalue"; 25 23 loadResources(tests, function () { 26 24 printResults(tests); 27 internals.clearMemoryCache()28 25 debug("Loading again"); 29 26 loadResources(tests, function () { -
trunk/LayoutTests/http/tests/cache/disk-cache/resources/cache-test.js
r183260 r183261 70 70 function loadResources(tests, completetion) 71 71 { 72 // Otherwise we just get responses from the memory cache. 73 internals.clearMemoryCache(); 74 72 75 var pendingCount = tests.length; 73 76 for (var i = 0; i < tests.length; ++i) { … … 98 101 { 99 102 loadResources(tests, function () { 100 // Otherwise we just get responses from the memory cache.101 internals.clearMemoryCache();102 103 // Wait a bit so things settle down in the disk cache. 103 104 setTimeout(function () { -
trunk/Source/WebCore/ChangeLog
r183260 r183261 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-24 Antti Koivisto <antti@apple.com> 2 39 -
trunk/Source/WebCore/loader/cache/CachedResource.cpp
r183260 r183261 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
r183260 r183261 70 70 , m_liveSize(0) 71 71 , m_deadSize(0) 72 , m_pruneTimer(*this, &MemoryCache::pruneTimerFired) 72 73 { 73 74 } … … 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.756 if (!needsPruning()) 751 757 return; 752 758 753 759 pruneDeadResources(); // Prune dead first, in case it was "borrowing" capacity from live. 754 760 pruneLiveResources(); 761 } 762 763 void MemoryCache::pruneTimerFired() 764 { 765 prune(); 766 } 767 768 void MemoryCache::pruneSoon() 769 { 770 if (m_pruneTimer.isActive()) 771 return; 772 if (!needsPruning()) 773 return; 774 m_pruneTimer.startOneShot(0); 755 775 } 756 776 -
trunk/Source/WebCore/loader/cache/MemoryCache.h
r183260 r183261 29 29 #include "SecurityOriginHash.h" 30 30 #include "SessionID.h" 31 #include "Timer.h" 31 32 #include <wtf/Forward.h> 32 33 #include <wtf/HashMap.h> … … 118 119 119 120 void prune(); 121 void pruneSoon(); 120 122 unsigned size() const { return m_liveSize + m_deadSize; } 121 123 … … 185 187 unsigned liveCapacity() const; 186 188 unsigned deadCapacity() const; 189 bool needsPruning() const; 190 void pruneTimerFired(); 187 191 188 192 CachedResource* resourceForRequestImpl(const ResourceRequest&, CachedResourceMap&); … … 214 218 typedef HashMap<SessionID, std::unique_ptr<CachedResourceMap>> SessionCachedResourceMap; 215 219 SessionCachedResourceMap m_sessionResources; 220 221 Timer m_pruneTimer; 216 222 }; 217 223
Note:
See TracChangeset
for help on using the changeset viewer.