Changeset 214084 in webkit
- Timestamp:
- Mar 16, 2017, 5:47:16 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r214079 r214084 1 2017-03-16 Simon Fraser <simon.fraser@apple.com> 2 3 Improve the system tracing points 4 https://bugs.webkit.org/show_bug.cgi?id=169790 5 6 Reviewed by Zalan Bujtas. 7 8 Use a more cohesive set of system trace points that give a good overview of what 9 WebKit is doing. Added points for resource loading, render tree building, sync messages 10 to the web process, async image decode, WASM and fetching cookies. 11 12 * wasm/WasmPlan.cpp: 13 (JSC::Wasm::Plan::run): 14 * wasm/js/WebAssemblyFunction.cpp: 15 (JSC::callWebAssemblyFunction): 16 1 17 2017-03-16 Mark Lam <mark.lam@apple.com> 2 18 -
trunk/Source/JavaScriptCore/wasm/WasmPlan.cpp
r213386 r214084 45 45 #include <wtf/NumberOfCores.h> 46 46 #include <wtf/StdLibExtras.h> 47 #include <wtf/SystemTracing.h> 47 48 #include <wtf/text/StringBuilder.h> 48 49 … … 115 116 if (!parseAndValidateModule(recompileMode)) 116 117 return; 118 119 TraceScope traceScope(WebAssemblyCompileStart, WebAssemblyCompileEnd); 120 117 121 if (recompileMode) 118 122 ASSERT(m_moduleInformation->memory.mode() == recompileMode); -
trunk/Source/JavaScriptCore/wasm/js/WebAssemblyFunction.cpp
r213386 r214084 42 42 #include "WasmFormat.h" 43 43 #include "WasmMemory.h" 44 #include <wtf/SystemTracing.h> 44 45 45 46 namespace JSC { … … 76 77 } 77 78 } 79 80 TraceScope traceScope(WebAssemblyExecuteStart, WebAssemblyExecuteEnd); 78 81 79 82 Vector<JSValue> boxedArgs; -
trunk/Source/WTF/ChangeLog
r214036 r214084 1 2017-03-16 Simon Fraser <simon.fraser@apple.com> 2 3 Improve the system tracing points 4 https://bugs.webkit.org/show_bug.cgi?id=169790 5 6 Reviewed by Zalan Bujtas. 7 8 Use a more cohesive set of system trace points that give a good overview of what 9 WebKit is doing. Added points for resource loading, render tree building, sync messages 10 to the web process, async image decode, WASM and fetching cookies. 11 12 * wtf/SystemTracing.h: 13 1 14 2017-03-16 Carlos Garcia Campos <cgarcia@igalia.com> 2 15 -
trunk/Source/WTF/wtf/SystemTracing.h
r209773 r214084 44 44 VMEntryScopeStart, 45 45 VMEntryScopeEnd, 46 WebAssemblyCompileStart, 47 WebAssemblyCompileEnd, 48 WebAssemblyExecuteStart, 49 WebAssemblyExecuteEnd, 46 50 47 51 WebCoreRange = 5000, 52 MainResourceLoadDidStartProvisional, 53 MainResourceLoadDidEnd, 54 SubresourceLoadWillStart, 55 SubresourceLoadDidEnd, 56 FetchCookiesStart, 57 FetchCookiesEnd, 48 58 StyleRecalcStart, 49 59 StyleRecalcEnd, 60 RenderTreeBuildStart, 61 RenderTreeBuildEnd, 50 62 LayoutStart, 51 63 LayoutEnd, 52 PaintViewStart,53 PaintViewEnd,54 64 PaintLayerStart, 55 65 PaintLayerEnd, 56 RAFDisplayLinkScheduled,57 RAFDisplayLinkFired,66 AsyncImageDecodeStart, 67 AsyncImageDecodeEnd, 58 68 RAFCallbackStart, 59 69 RAFCallbackEnd, 60 70 61 71 WebKitRange = 10000, 72 WebHTMLViewPaintStart, 73 WebHTMLViewPaintEnd, 74 62 75 WebKit2Range = 12000, 63 64 RAFDidUpdateStart, 65 RAFDidUpdateEnd, 66 RAFBackingStoreFlushStart, 67 RAFBackingStoreFlushEnd, 68 RAFBuildTransactionStart, 69 RAFBuildTransactionEnd, 76 BackingStoreFlushStart, 77 BackingStoreFlushEnd, 78 BuildTransactionStart, 79 BuildTransactionEnd, 80 SyncMessageStart, 81 SyncMessageEnd, 82 SyncTouchEventStart, 83 SyncTouchEventEnd, 70 84 71 85 UIProcessRange = 14000, 72 73 RAFCommitLayerTreeStart, 74 RAFCommitLayerTreeEnd, 75 RAFDidRefreshDisplayStart, 76 RAFDidRefreshDisplayEnd, 86 CommitLayerTreeStart, 87 CommitLayerTreeEnd, 77 88 }; 78 89 -
trunk/Source/WebCore/ChangeLog
r214082 r214084 1 2017-03-16 Simon Fraser <simon.fraser@apple.com> 2 3 Improve the system tracing points 4 https://bugs.webkit.org/show_bug.cgi?id=169790 5 6 Reviewed by Zalan Bujtas. 7 8 Use a more cohesive set of system trace points that give a good overview of what 9 WebKit is doing. Added points for resource loading, render tree building, sync messages 10 to the web process, async image decode, WASM and fetching cookies. 11 12 * loader/CookieJar.cpp: 13 (WebCore::cookies): 14 * loader/FrameLoader.cpp: 15 (WebCore::FrameLoader::provisionalLoadStarted): 16 (WebCore::FrameLoader::checkLoadCompleteForThisFrame): 17 * loader/SubresourceLoader.cpp: 18 (WebCore::SubresourceLoader::willSendRequestInternal): 19 (WebCore::logResourceLoaded): 20 (WebCore::SubresourceLoader::didFinishLoading): 21 (WebCore::SubresourceLoader::didFail): 22 (WebCore::SubresourceLoader::didCancel): 23 * page/FrameView.cpp: 24 (WebCore::FrameView::paintContents): 25 * platform/graphics/ImageFrameCache.cpp: 26 (WebCore::ImageFrameCache::startAsyncDecodingQueue): 27 * platform/graphics/ios/DisplayRefreshMonitorIOS.mm: 28 (WebCore::DisplayRefreshMonitorIOS::requestRefreshCallback): 29 (WebCore::DisplayRefreshMonitorIOS::displayLinkFired): 30 * style/RenderTreeUpdater.cpp: 31 (WebCore::RenderTreeUpdater::commit): 32 1 33 2017-03-16 Simon Fraser <simon.fraser@apple.com> 2 34 -
trunk/Source/WebCore/loader/CookieJar.cpp
r213759 r214084 35 35 #include "PlatformCookieJar.h" 36 36 #include "PlatformStrategies.h" 37 #include <wtf/SystemTracing.h> 37 38 38 39 namespace WebCore { … … 56 57 String cookies(const Document& document, const URL& url) 57 58 { 59 TraceScope scope(FetchCookiesStart, FetchCookiesEnd); 60 58 61 return platformStrategies()->cookiesStrategy()->cookiesForDOM(storageSession(document), document.firstPartyForCookies(), url); 59 62 } -
trunk/Source/WebCore/loader/FrameLoader.cpp
r214014 r214084 123 123 #include <wtf/Ref.h> 124 124 #include <wtf/StdLibExtras.h> 125 #include <wtf/SystemTracing.h> 125 126 #include <wtf/text/CString.h> 126 127 #include <wtf/text/WTFString.h> … … 992 993 993 994 if (m_frame.isMainFrame()) { 995 TracePoint(MainResourceLoadDidStartProvisional); 996 994 997 if (auto* page = m_frame.page()) 995 998 page->didStartProvisionalLoad(); … … 2323 2326 Page* page = m_frame.page(); 2324 2327 if (page) { 2325 if (m_frame.isMainFrame()) 2328 if (m_frame.isMainFrame()) { 2329 TracePoint(MainResourceLoadDidEnd); 2326 2330 page->didFinishLoad(); 2331 } 2327 2332 } 2328 2333 -
trunk/Source/WebCore/loader/SubresourceLoader.cpp
r213682 r214084 49 49 #include <wtf/RefCountedLeakCounter.h> 50 50 #include <wtf/StdLibExtras.h> 51 #include <wtf/SystemTracing.h> 51 52 #include <wtf/text/CString.h> 52 53 … … 177 178 } 178 179 179 if (newRequest.requester() != ResourceRequestBase::Requester::Main) 180 if (newRequest.requester() != ResourceRequestBase::Requester::Main) { 181 TracePoint(SubresourceLoadWillStart); 180 182 ResourceLoadObserver::sharedObserver().logSubresourceLoading(m_frame.get(), newRequest, redirectResponse); 183 } 181 184 182 185 ASSERT(!newRequest.isNull()); … … 463 466 break; 464 467 } 468 465 469 frame->page()->diagnosticLoggingClient().logDiagnosticMessage(DiagnosticLoggingKeys::resourceLoadedKey(), resourceType, ShouldSample::Yes); 466 470 } … … 553 557 #endif 554 558 559 if (m_resource->type() != CachedResource::MainResource) 560 TracePoint(SubresourceLoadDidEnd); 561 555 562 m_state = Finishing; 556 563 m_resource->finishLoading(resourceData()); … … 558 565 if (wasCancelled()) 559 566 return; 567 560 568 m_resource->finish(); 561 569 ASSERT(!reachedTerminalState()); 562 570 didFinishLoadingOnePart(networkLoadMetrics); 563 571 notifyDone(); 572 564 573 if (reachedTerminalState()) 565 574 return; … … 582 591 CachedResourceHandle<CachedResource> protectResource(m_resource); 583 592 m_state = Finishing; 593 594 if (m_resource->type() != CachedResource::MainResource) 595 TracePoint(SubresourceLoadDidEnd); 596 584 597 if (m_resource->resourceToRevalidate()) 585 598 MemoryCache::singleton().revalidationFailed(*m_resource); … … 627 640 return; 628 641 642 if (m_resource->type() != CachedResource::MainResource) 643 TracePoint(SubresourceLoadDidEnd); 644 629 645 m_resource->cancelLoad(); 630 646 notifyDone(); -
trunk/Source/WebCore/page/FrameView.cpp
r214082 r214084 4431 4431 return; 4432 4432 4433 TraceScope tracingScope(PaintViewStart, PaintViewEnd);4434 4435 4433 ASSERT(m_layoutPhase == InPostLayerPositionsUpdatedAfterLayout || m_layoutPhase == OutsideLayout); 4436 4434 -
trunk/Source/WebCore/platform/graphics/ImageFrameCache.cpp
r213833 r214084 29 29 #include "Image.h" 30 30 #include "ImageObserver.h" 31 #include <wtf/SystemTracing.h> 31 32 32 33 #if USE(CG) … … 295 296 296 297 while (m_frameRequestQueue.dequeue(frameRequest)) { 298 TraceScope tracingScope(AsyncImageDecodeStart, AsyncImageDecodeEnd); 299 297 300 // Get the frame NativeImage on the decoding thread. 298 301 NativeImagePtr nativeImage = protectedDecoder->createFrameImageAtIndex(frameRequest.index, frameRequest.subsamplingLevel, frameRequest.sizeForDrawing); -
trunk/Source/WebCore/platform/graphics/ios/DisplayRefreshMonitorIOS.mm
r210663 r214084 33 33 #import <wtf/CurrentTime.h> 34 34 #import <wtf/MainThread.h> 35 #import <wtf/SystemTracing.h>36 35 37 36 using namespace WebCore; … … 101 100 return false; 102 101 103 TracePoint(RAFDisplayLinkScheduled);104 105 102 if (!m_handler) { 106 103 m_handler = adoptNS([[WebDisplayLinkHandler alloc] initWithMonitor:this]); … … 119 116 setIsPreviousFrameDone(false); 120 117 handleDisplayRefreshedNotificationOnMainThread(this); 121 122 TracePoint(RAFDisplayLinkFired);123 118 } 124 119 -
trunk/Source/WebCore/style/RenderTreeUpdater.cpp
r213149 r214084 41 41 #include "StyleResolver.h" 42 42 #include "StyleTreeResolver.h" 43 #include <wtf/SystemTracing.h> 43 44 44 45 #if PLATFORM(IOS) … … 113 114 if (!m_document.shouldCreateRenderers() || !m_document.renderView()) 114 115 return; 116 117 TraceScope scope(RenderTreeBuildStart, RenderTreeBuildEnd); 115 118 116 119 Style::PostResolutionCallbackDisabler callbackDisabler(m_document); -
trunk/Source/WebKit/mac/ChangeLog
r214080 r214084 1 2017-03-16 Simon Fraser <simon.fraser@apple.com> 2 3 Improve the system tracing points 4 https://bugs.webkit.org/show_bug.cgi?id=169790 5 6 Reviewed by Zalan Bujtas. 7 8 Use a more cohesive set of system trace points that give a good overview of what 9 WebKit is doing. Added points for resource loading, render tree building, sync messages 10 to the web process, async image decode, WASM and fetching cookies. 11 12 * WebView/WebHTMLView.mm: 13 (-[WebHTMLView drawRect:]): 14 1 15 2017-03-16 Youenn Fablet <youenn@apple.com> 2 16 -
trunk/Source/WebKit/mac/WebView/WebHTMLView.mm
r213902 r214084 139 139 #import <wtf/ObjcRuntimeExtras.h> 140 140 #import <wtf/RunLoop.h> 141 #import <wtf/SystemTracing.h> 141 142 142 143 #if !PLATFORM(IOS) … … 4195 4196 { 4196 4197 LOG(View, "%@ drawing", self); 4198 4199 TraceScope scope(WebHTMLViewPaintStart, WebHTMLViewPaintEnd); 4197 4200 4198 4201 #if !PLATFORM(IOS) -
trunk/Source/WebKit2/ChangeLog
r214080 r214084 1 2017-03-16 Simon Fraser <simon.fraser@apple.com> 2 3 Improve the system tracing points 4 https://bugs.webkit.org/show_bug.cgi?id=169790 5 6 Reviewed by Zalan Bujtas. 7 8 Use a more cohesive set of system trace points that give a good overview of what 9 WebKit is doing. Added points for resource loading, render tree building, sync messages 10 to the web process, async image decode, WASM and fetching cookies. 11 12 * UIProcess/ChildProcessProxy.h: 13 (WebKit::ChildProcessProxy::sendSync): 14 * UIProcess/WebPageProxy.cpp: 15 (WebKit::WebPageProxy::handleTouchEventSynchronously): 16 * UIProcess/mac/RemoteLayerTreeDrawingAreaProxy.mm: 17 (WebKit::RemoteLayerTreeDrawingAreaProxy::commitLayerTree): 18 (WebKit::RemoteLayerTreeDrawingAreaProxy::didRefreshDisplay): 19 * WebProcess/WebPage/mac/RemoteLayerTreeContext.mm: 20 (WebKit::RemoteLayerTreeContext::buildTransaction): 21 * WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.mm: 22 (WebKit::RemoteLayerTreeDrawingArea::didUpdate): 23 (WebKit::RemoteLayerTreeDrawingArea::BackingStoreFlusher::flush): 24 1 25 2017-03-16 Youenn Fablet <youenn@apple.com> 2 26 -
trunk/Source/WebKit2/UIProcess/ChildProcessProxy.h
r211565 r214084 30 30 #include "ProcessLauncher.h" 31 31 32 #include <wtf/SystemTracing.h> 32 33 #include <wtf/ThreadSafeRefCounted.h> 33 34 … … 118 119 return false; 119 120 121 TraceScope scope(SyncMessageStart, SyncMessageEnd); 122 120 123 return connection()->sendSync(std::forward<U>(message), WTFMove(reply), destinationID, timeout, sendSyncOptions); 121 124 } -
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp
r214019 r214084 134 134 #include <stdio.h> 135 135 #include <wtf/NeverDestroyed.h> 136 #include <wtf/SystemTracing.h> 136 137 #include <wtf/text/StringBuilder.h> 137 138 #include <wtf/text/StringView.h> … … 2180 2181 return; 2181 2182 2183 TraceScope scope(SyncTouchEventStart, SyncTouchEventEnd); 2184 2182 2185 if (event.type() == WebEvent::TouchStart) 2183 2186 updateTouchEventTracking(event); -
trunk/Source/WebKit2/UIProcess/mac/RemoteLayerTreeDrawingAreaProxy.mm
r213719 r214084 178 178 void RemoteLayerTreeDrawingAreaProxy::commitLayerTree(const RemoteLayerTreeTransaction& layerTreeTransaction, const RemoteScrollingCoordinatorTransaction& scrollingTreeTransaction) 179 179 { 180 TraceScope tracingScope( RAFCommitLayerTreeStart, RAFCommitLayerTreeEnd);180 TraceScope tracingScope(CommitLayerTreeStart, CommitLayerTreeEnd); 181 181 182 182 LOG(RemoteLayerTree, "%s", layerTreeTransaction.description().data()); … … 411 411 m_didUpdateMessageState = DoesNotNeedDidUpdate; 412 412 413 TraceScope tracingScope(RAFDidRefreshDisplayStart, RAFDidRefreshDisplayEnd);414 415 413 // Waiting for CA to commit is insufficient, because the render server can still be 416 414 // using our backing store. We can improve this by waiting for the render server to commit -
trunk/Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerTreeContext.mm
r208841 r214084 108 108 void RemoteLayerTreeContext::buildTransaction(RemoteLayerTreeTransaction& transaction, PlatformCALayer& rootLayer) 109 109 { 110 TraceScope tracingScope( RAFBuildTransactionStart, RAFBuildTransactionEnd);110 TraceScope tracingScope(BuildTransactionStart, BuildTransactionEnd); 111 111 112 112 PlatformCALayerRemote& rootLayerRemote = downcast<PlatformCALayerRemote>(rootLayer); -
trunk/Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.mm
r213566 r214084 438 438 void RemoteLayerTreeDrawingArea::didUpdate() 439 439 { 440 TraceScope tracingScope(RAFDidUpdateStart, RAFDidUpdateEnd);441 442 440 // FIXME: This should use a counted replacement for setLayerTreeStateIsFrozen, but 443 441 // the callers of that function are not strictly paired. … … 489 487 ASSERT(!m_hasFlushed); 490 488 491 TraceScope tracingScope( RAFBackingStoreFlushStart, RAFBackingStoreFlushEnd);489 TraceScope tracingScope(BackingStoreFlushStart, BackingStoreFlushEnd); 492 490 493 491 for (auto& context : m_contextsToFlush) -
trunk/Tools/ChangeLog
r214080 r214084 1 2017-03-16 Simon Fraser <simon.fraser@apple.com> 2 3 Improve the system tracing points 4 https://bugs.webkit.org/show_bug.cgi?id=169790 5 6 Reviewed by Zalan Bujtas. 7 8 Use a more cohesive set of system trace points that give a good overview of what 9 WebKit is doing. Added points for resource loading, render tree building, sync messages 10 to the web process, async image decode, WASM and fetching cookies. 11 12 * Tracing/SystemTracePoints.plist: 13 1 14 2017-03-16 Youenn Fablet <youenn@apple.com> 2 15 -
trunk/Tools/Tracing/SystemTracePoints.plist
r209773 r214084 22 22 <dict> 23 23 <key>Name</key> 24 <string>Document::recalcStyle()</string> 24 <string>Compile WebAssembly</string> 25 <key>Type</key> 26 <string>Interval</string> 27 <key>Component</key> 28 <string>47</string> 29 <key>CodeBegin</key> 30 <string>2503</string> 31 <key>CodeEnd</key> 32 <string>2504</string> 33 </dict> 34 <dict> 35 <key>Name</key> 36 <string>Execute WebAssembly</string> 37 <key>Type</key> 38 <string>Interval</string> 39 <key>Component</key> 40 <string>47</string> 41 <key>CodeBegin</key> 42 <string>2505</string> 43 <key>CodeEnd</key> 44 <string>2506</string> 45 </dict> 46 <dict> 47 <key>Name</key> 48 <string>Main Resource Load</string> 25 49 <key>Type</key> 26 50 <string>Interval</string> … … 34 58 <dict> 35 59 <key>Name</key> 36 <string> FrameView::layout()</string>60 <string>Subresource Load</string> 37 61 <key>Type</key> 38 62 <string>Interval</string> … … 46 70 <dict> 47 71 <key>Name</key> 48 <string>F rameView::paintContents()</string>72 <string>Fetch Cookies</string> 49 73 <key>Type</key> 50 74 <string>Interval</string> … … 58 82 <dict> 59 83 <key>Name</key> 60 <string> GraphicsLayerCA::paintLayerContents()</string>84 <string>Style recalc</string> 61 85 <key>Type</key> 62 86 <string>Interval</string> … … 70 94 <dict> 71 95 <key>Name</key> 72 <string> DisplayRefreshMonitor</string>96 <string>Build render tree</string> 73 97 <key>Type</key> 74 98 <string>Interval</string> … … 82 106 <dict> 83 107 <key>Name</key> 84 <string> ScriptedAnimationController::serviceScriptedAnimations()</string>108 <string>Layout</string> 85 109 <key>Type</key> 86 110 <string>Interval</string> … … 94 118 <dict> 95 119 <key>Name</key> 96 <string>RemoteLayerTreeDrawingArea::didUpdate()</string> 120 <string>Paint layer</string> 121 <key>Type</key> 122 <string>Interval</string> 123 <key>Component</key> 124 <string>47</string> 125 <key>CodeBegin</key> 126 <string>5013</string> 127 <key>CodeEnd</key> 128 <string>5014</string> 129 </dict> 130 <dict> 131 <key>Name</key> 132 <string>Async Image Decode</string> 133 <key>Type</key> 134 <string>Interval</string> 135 <key>Component</key> 136 <string>47</string> 137 <key>CodeBegin</key> 138 <string>5015</string> 139 <key>CodeEnd</key> 140 <string>5016</string> 141 </dict> 142 <dict> 143 <key>Name</key> 144 <string>requestAnimationFrame</string> 145 <key>Type</key> 146 <string>Interval</string> 147 <key>Component</key> 148 <string>47</string> 149 <key>CodeBegin</key> 150 <string>5017</string> 151 <key>CodeEnd</key> 152 <string>5018</string> 153 </dict> 154 <dict> 155 <key>Name</key> 156 <string>Paint WebHTMLView</string> 157 <key>Type</key> 158 <string>Interval</string> 159 <key>Component</key> 160 <string>47</string> 161 <key>CodeBegin</key> 162 <string>10001</string> 163 <key>CodeEnd</key> 164 <string>10002</string> 165 </dict> 166 <dict> 167 <key>Name</key> 168 <string>Flush backing store drawing</string> 97 169 <key>Type</key> 98 170 <string>Interval</string> … … 106 178 <dict> 107 179 <key>Name</key> 108 <string> RemoteLayerTreeDrawingArea::BackingStoreFlusher::flush()</string>180 <string>Build RemoteLayerTree transaction</string> 109 181 <key>Type</key> 110 182 <string>Interval</string> … … 118 190 <dict> 119 191 <key>Name</key> 120 <string> RemoteLayerTreeContext::buildTransaction()</string>192 <string>Sync message</string> 121 193 <key>Type</key> 122 194 <string>Interval</string> … … 130 202 <dict> 131 203 <key>Name</key> 132 <string>RemoteLayerTreeDrawingAreaProxy::commitLayerTree()</string> 204 <string>Sync touch event</string> 205 <key>Type</key> 206 <string>Interval</string> 207 <key>Component</key> 208 <string>47</string> 209 <key>CodeBegin</key> 210 <string>12007</string> 211 <key>CodeEnd</key> 212 <string>12008</string> 213 </dict> 214 <dict> 215 <key>Name</key> 216 <string>Commit RemoteLayerTree transaction</string> 133 217 <key>Type</key> 134 218 <string>Interval</string> … … 139 223 <key>CodeEnd</key> 140 224 <string>14002</string> 141 </dict>142 <dict>143 <key>Name</key>144 <string>RemoteLayerTreeDrawingAreaProxy::didRefreshDisplay()</string>145 <key>Type</key>146 <string>Interval</string>147 <key>Component</key>148 <string>47</string>149 <key>CodeBegin</key>150 <string>14003</string>151 <key>CodeEnd</key>152 <string>14004</string>153 225 </dict> 154 226 </array>
Note:
See TracChangeset
for help on using the changeset viewer.