RESOLVED FIXED 62837
[chromium]Optimize GraphicsLayerChromium::setChildren
https://bugs.webkit.org/show_bug.cgi?id=62837
Summary [chromium]Optimize GraphicsLayerChromium::setChildren
zeng huiqing
Reported 2011-06-16 18:13:49 PDT
The GraphicsLayerChromium::setChildren will call GraphicsLayer::setChildren, and it will call addChild() for each child, which will end up calling updateChildList() N times. This is potentially(N^2).
Attachments
Proposed patch (2.73 KB, patch)
2011-06-17 00:27 PDT, zeng huiqing
no flags
Proposed patch (2.74 KB, patch)
2011-06-17 00:43 PDT, zeng huiqing
no flags
Proposed patch (2.74 KB, patch)
2011-06-17 00:52 PDT, zeng huiqing
kbr: review-
new patch (2.75 KB, patch)
2011-06-27 21:53 PDT, zeng huiqing
no flags
new patch (3.35 KB, patch)
2011-06-27 23:32 PDT, zeng huiqing
no flags
newPatch (2.81 KB, patch)
2011-06-27 23:56 PDT, zeng huiqing
kbr: review-
newPatch (2.77 KB, text/plain)
2011-06-28 16:21 PDT, zeng huiqing
no flags
newPatch (2.77 KB, patch)
2011-06-28 16:24 PDT, zeng huiqing
no flags
zeng huiqing
Comment 1 2011-06-17 00:27:40 PDT
Created attachment 97552 [details] Proposed patch
WebKit Review Bot
Comment 2 2011-06-17 00:30:43 PDT
Attachment 97552 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/ChangeLog', u'Source/WebCor..." exit_code: 1 Source/WebCore/ChangeLog:6: Line contains tab character. [whitespace/tab] [5] Total errors found: 1 in 3 files If any of these errors are false positives, please file a bug against check-webkit-style.
zeng huiqing
Comment 3 2011-06-17 00:43:31 PDT
Created attachment 97554 [details] Proposed patch
zeng huiqing
Comment 4 2011-06-17 00:52:33 PDT
Created attachment 97556 [details] Proposed patch
zeng huiqing
Comment 5 2011-06-23 01:35:53 PDT
For page load performance test, we find that while load a page that has 3D CSS transformation property, disable h/w accleration is 2x of enable h/w acceleration on chromium both on Linux and Win7. Through analysis, we find the root cause is that with hardware acceleration enabled, when update the compositingLayers, the GraphicsLayerChromium::setChildren will call GraphicsLayer::setChildren, and it will call addChild() for each child, which will end up calling updateChildList() N times. This is potentially(N^2). The patch is to add an flag(m_setChildren)in class 'GraphicsLayerChromium' to avoid the unnecessary call, and the gap between disable h/w and enable h/w becomes < 10%.
Eric Seidel (no email)
Comment 6 2011-06-23 20:17:24 PDT
I assume this is only a problem for Chromium and not other platforms?
Simon Fraser (smfr)
Comment 7 2011-06-23 20:26:42 PDT
Yeah. We used to have this issue on Windows/CA, but now share code with Mac.
zeng huiqing
Comment 8 2011-06-23 21:56:20 PDT
Have checked that qt&gtk also don't have this issue.
Vangelis Kokkevis
Comment 9 2011-06-27 10:30:29 PDT
Comment on attachment 97556 [details] Proposed patch View in context: https://bugs.webkit.org/attachment.cgi?id=97556&action=review Thanks for the patch! This solution will fix the problem. I do think that the GraphicsLayerChromium child management code needs some clean up and batching up pushes to the platform layers much like the CA implementation does would be nice. However, I think this is a good intermediate solution. > Source/WebCore/platform/graphics/chromium/GraphicsLayerChromium.cpp:133 > + m_setChildren = true; Maybe using m_inSetChildren (instead of m_setChildren) would be more descriptive? > Source/WebCore/platform/graphics/chromium/GraphicsLayerChromium.cpp:135 > // FIXME: GraphicsLayer::setChildren calls addChild() for each child, which This fixme should be removed now.
Kenneth Russell
Comment 10 2011-06-27 10:55:56 PDT
Comment on attachment 97556 [details] Proposed patch Per Vangelis' review, it looks like this is close to being ready to land. Please submit a revised one and I'll gladly r+ it. (Also, please set the r? and cq? bits on the new patch.)
zeng huiqing
Comment 11 2011-06-27 21:53:15 PDT
Created attachment 98856 [details] new patch update the old patch according to Vangelis's comments
Vangelis Kokkevis
Comment 12 2011-06-27 23:06:00 PDT
Comment on attachment 98856 [details] new patch View in context: https://bugs.webkit.org/attachment.cgi?id=98856&action=review one additional comments.. Otherwise looks good! > Source/WebCore/platform/graphics/chromium/GraphicsLayerChromium.cpp:98 > + m_inSetChildren = false; This should move up to the initializer list.
zeng huiqing
Comment 13 2011-06-27 23:32:32 PDT
Created attachment 98864 [details] new patch update the patch: move the "m_inSetChildren = false" to initializer list.
Vangelis Kokkevis
Comment 14 2011-06-27 23:38:08 PDT
Comment on attachment 98864 [details] new patch View in context: https://bugs.webkit.org/attachment.cgi?id=98864&action=review > Source/WebCore/ChangeLog:16 > +2011-06-27 Zeng Huiqing <huiqing.zeng@intel.com> Double changelog entry...
zeng huiqing
Comment 15 2011-06-27 23:56:40 PDT
Created attachment 98867 [details] newPatch sorry for the double changelog entry, have removed it.
Kenneth Russell
Comment 16 2011-06-28 10:58:51 PDT
Comment on attachment 98867 [details] newPatch View in context: https://bugs.webkit.org/attachment.cgi?id=98867&action=review > Source/WebCore/platform/graphics/chromium/GraphicsLayerChromium.cpp:136 > // FIXME: GraphicsLayer::setChildren calls addChild() for each child, which > // will end up calling updateChildList() N times. You forgot to remove this FIXME.
zeng huiqing
Comment 17 2011-06-28 16:21:48 PDT
Created attachment 98994 [details] newPatch
zeng huiqing
Comment 18 2011-06-28 16:24:45 PDT
Created attachment 98996 [details] newPatch new patch: remove the 'FIXME'
Kenneth Russell
Comment 19 2011-06-28 16:32:40 PDT
Comment on attachment 98996 [details] newPatch Thanks, this last version looks good. r=me
WebKit Review Bot
Comment 20 2011-06-28 17:57:36 PDT
Comment on attachment 98996 [details] newPatch Clearing flags on attachment: 98996 Committed r89980: <http://trac.webkit.org/changeset/89980>
WebKit Review Bot
Comment 21 2011-06-28 17:57:42 PDT
All reviewed patches have been landed. Closing bug.
zeng huiqing
Comment 22 2011-06-28 18:15:07 PDT
Thanks for the review.
Note You need to log in before you can comment on or make changes to this bug.