Changeset 245219 in webkit
- Timestamp:
- May 12, 2019, 8:07:52 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Source/WebCore/ChangeLog ¶
r245218 r245219 1 2019-05-02 Simon Fraser <simon.fraser@apple.com> 2 3 Add logging for RenderLayer clip rects 4 https://bugs.webkit.org/show_bug.cgi?id=197547 5 6 Reviewed by Zalan Bujtas. 7 8 Add a ClipRects log channel, and stream output for ClipRect and ClipRects. 9 10 The ClipRect code is performance sensitive, even in debug, so guard the log sites 11 with clipRectsLogEnabled() because the macro still evaluates its arguments even if 12 the channel is disabled (we need some better way to log that doesn't do this). 13 14 * platform/Logging.h: 15 * rendering/ClipRect.cpp: 16 (WebCore::operator<<): 17 * rendering/ClipRect.h: 18 * rendering/RenderLayer.cpp: 19 (WebCore::operator<<): 20 (WebCore::RenderLayer::calculateClipRects const): 21 * rendering/RenderLayer.h: 22 1 23 2019-05-12 Simon Fraser <simon.fraser@apple.com> 2 24 -
TabularUnified trunk/Source/WebCore/platform/Logging.h ¶
r245019 r245219 43 43 M(ApplePay) \ 44 44 M(Archives) \ 45 M(ClipRects) \ 45 46 M(Compositing) \ 46 47 M(ContentFiltering) \ -
TabularUnified trunk/Source/WebCore/rendering/ClipRect.cpp ¶
r245019 r245219 39 39 } 40 40 41 TextStream& operator<<(TextStream& ts, const ClipRect& clipRect) 42 { 43 ts << "rect "; 44 if (clipRect.isInfinite()) 45 ts << "infinite"; 46 else 47 ts << clipRect.rect(); 48 49 if (clipRect.affectedByRadius()) 50 ts << " affected by radius"; 51 return ts; 41 52 } 53 54 } -
TabularUnified trunk/Source/WebCore/rendering/ClipRect.h ¶
r245019 r245219 27 27 28 28 #include "LayoutRect.h" 29 30 namespace WTF { 31 class TextStream; 32 } 29 33 30 34 namespace WebCore { … … 104 108 } 105 109 110 WTF::TextStream& operator<<(WTF::TextStream&, const ClipRect&); 111 106 112 } // namespace WebCore -
TabularUnified trunk/Source/WebCore/rendering/RenderLayer.cpp ¶
r245212 r245219 269 269 } 270 270 271 #if !LOG_DISABLED 272 static TextStream& operator<<(TextStream& ts, const ClipRects& clipRects) 273 { 274 TextStream::GroupScope scope(ts); 275 ts << indent << "ClipRects\n"; 276 ts << indent << " overflow : " << clipRects.overflowClipRect() << "\n"; 277 ts << indent << " fixed : " << clipRects.fixedClipRect() << "\n"; 278 ts << indent << " positioned: " << clipRects.posClipRect() << "\n"; 279 280 return ts; 281 } 282 283 static bool clipRectsLogEnabled() 284 { 285 return LogClipRects.state == WTFLogChannelState::On; 286 } 287 #endif 288 271 289 RenderLayer::RenderLayer(RenderLayerModelObject& rendererLayerModelObject) 272 290 : m_isRenderViewLayer(rendererLayerModelObject.isRenderView()) … … 5603 5621 } 5604 5622 } 5623 5624 #if !LOG_DISABLED 5625 if (clipRectsLogEnabled()) 5626 LOG_WITH_STREAM(ClipRects, stream << "RenderLayer " << this << " calculateClipRects " << clipRects); 5627 #endif 5605 5628 } 5606 5629 … … 5647 5670 if (parentRects->fixed() && &clipRectsContext.rootLayer->renderer() == &view && !backgroundClipRect.isInfinite()) 5648 5671 backgroundClipRect.moveBy(view.frameView().scrollPositionForFixedPosition()); 5672 5673 #if !LOG_DISABLED 5674 if (clipRectsLogEnabled()) 5675 LOG_WITH_STREAM(ClipRects, stream << "RenderLayer " << this << " backgroundClipRect with context " << clipRectsContext << " returning " << backgroundClipRect); 5676 #endif 5649 5677 return backgroundClipRect; 5650 5678 } … … 6809 6837 } 6810 6838 6839 TextStream& operator<<(WTF::TextStream& ts, ClipRectsType clipRectsType) 6840 { 6841 switch (clipRectsType) { 6842 case PaintingClipRects: ts << "painting"; break; 6843 case RootRelativeClipRects: ts << "root-relative"; break; 6844 case AbsoluteClipRects: ts << "absolute"; break; 6845 case TemporaryClipRects: ts << "temporary"; break; 6846 case NumCachedClipRectsTypes: 6847 case AllClipRectTypes: 6848 ts << "?"; 6849 break; 6850 } 6851 return ts; 6852 } 6853 6811 6854 TextStream& operator<<(TextStream& ts, const RenderLayer& layer) 6812 6855 { … … 6827 6870 } 6828 6871 6872 TextStream& operator<<(TextStream& ts, const RenderLayer::ClipRectsContext& context) 6873 { 6874 ts.dumpProperty("root layer:", context.rootLayer); 6875 ts.dumpProperty("type:", context.clipRectsType); 6876 ts.dumpProperty("overflow-clip:", context.respectOverflowClip == IgnoreOverflowClip ? "ignore" : "respect"); 6877 6878 return ts; 6879 } 6880 6829 6881 } // namespace WebCore 6830 6882 -
TabularUnified trunk/Source/WebCore/rendering/RenderLayer.h ¶
r245205 r245219 1385 1385 bool compositedWithOwnBackingStore(const RenderLayer&); 1386 1386 1387 WTF::TextStream& operator<<(WTF::TextStream&, ClipRectsType); 1387 1388 WTF::TextStream& operator<<(WTF::TextStream&, const RenderLayer&); 1389 WTF::TextStream& operator<<(WTF::TextStream&, const RenderLayer::ClipRectsContext&); 1388 1390 1389 1391 } // namespace WebCore
Note:
See TracChangeset
for help on using the changeset viewer.