Changeset 210226 in webkit


Ignore:
Timestamp:
Jan 2, 2017, 1:16:09 PM (8 years ago)
Author:
akling@apple.com
Message:

Drop the render tree for documents in the page cache.
<https://webkit.org/b/121798>

Reviewed by Antti Koivisto.

To save memory and reduce complexity, have documents tear down their render tree
when entering the page cache. I've wanted to do this for a long time and it seems
like we can actually do it now.

This patch will enable a number of clean-ups since it's no longer valid for renderers
to exist while the document is in page cache.

  • dom/Document.cpp:

(WebCore::Document::destroyRenderTree): Remove assertion that we're not in the page cache
since we will now be tearing down render trees right as they enter the page cache.

  • dom/PageCache.cpp:

(WebCore::destroyRenderTree):
(WebCore::PageCache::addIfCacheable): Tear down the render tree right before setting
the in-cache flag. The render tree is destroyed in bottom-up order to ensure that the
main frame renderers die last.

  • history/CachedFrame.cpp:

(WebCore::CachedFrameBase::restore):

  • page/FrameView.h:
  • page/FrameView.cpp:

(WebCore::FrameView::didRestoreFromPageCache): Update the scollable area set after restoring
a frame from the page cache. This dirties the scrolling tree, which was covered by tests.

  • page/animation/AnimationBase.cpp:

(WebCore::AnimationBase::setNeedsStyleRecalc):

  • page/animation/AnimationController.cpp:

(WebCore::AnimationController::cancelAnimations): Make these no-ops if called
while the render tree is being torn down. This fixes some assertion failures
on layout tests and avoids pointless style invalidation.

Location:
trunk/Source/WebCore
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r210224 r210226  
     12017-01-02  Andreas Kling  <akling@apple.com>
     2
     3        Drop the render tree for documents in the page cache.
     4        <https://webkit.org/b/121798>
     5
     6        Reviewed by Antti Koivisto.
     7
     8        To save memory and reduce complexity, have documents tear down their render tree
     9        when entering the page cache. I've wanted to do this for a long time and it seems
     10        like we can actually do it now.
     11
     12        This patch will enable a number of clean-ups since it's no longer valid for renderers
     13        to exist while the document is in page cache.
     14
     15        * dom/Document.cpp:
     16        (WebCore::Document::destroyRenderTree): Remove assertion that we're not in the page cache
     17        since we will now be tearing down render trees right as they enter the page cache.
     18
     19        * dom/PageCache.cpp:
     20        (WebCore::destroyRenderTree):
     21        (WebCore::PageCache::addIfCacheable): Tear down the render tree right before setting
     22        the in-cache flag. The render tree is destroyed in bottom-up order to ensure that the
     23        main frame renderers die last.
     24
     25        * history/CachedFrame.cpp:
     26        (WebCore::CachedFrameBase::restore):
     27        * page/FrameView.h:
     28        * page/FrameView.cpp:
     29        (WebCore::FrameView::didRestoreFromPageCache): Update the scollable area set after restoring
     30        a frame from the page cache. This dirties the scrolling tree, which was covered by tests.
     31
     32        * page/animation/AnimationBase.cpp:
     33        (WebCore::AnimationBase::setNeedsStyleRecalc):
     34        * page/animation/AnimationController.cpp:
     35        (WebCore::AnimationController::cancelAnimations): Make these no-ops if called
     36        while the render tree is being torn down. This fixes some assertion failures
     37        on layout tests and avoids pointless style invalidation.
     38
    1392017-01-02  Andreas Kling  <akling@apple.com>
    240
  • trunk/Source/WebCore/dom/Document.cpp

    r210216 r210226  
    22032203{
    22042204    ASSERT(hasLivingRenderTree());
    2205     ASSERT(m_pageCacheState != InPageCache);
    22062205
    22072206    SetForScope<bool> change(m_renderTreeBeingDestroyed, true);
  • trunk/Source/WebCore/history/CachedFrame.cpp

    r210212 r210226  
    131131#endif
    132132
     133    frame.view()->didRestoreFromPageCache();
    133134}
    134135
  • trunk/Source/WebCore/history/PageCache.cpp

    r208841 r210226  
    365365}
    366366
     367// When entering page cache, tear down the render tree before setting the in-cache flag.
     368// This maintains the invariant that render trees are never present in the page cache.
     369// Note that destruction happens bottom-up so that the main frame's tree dies last.
     370static void destroyRenderTree(MainFrame& mainFrame)
     371{
     372    for (Frame* frame = mainFrame.tree().traversePreviousWithWrap(true); frame; frame = frame->tree().traversePreviousWithWrap(false)) {
     373        if (!frame->document())
     374            continue;
     375        auto& document = *frame->document();
     376        if (document.hasLivingRenderTree())
     377            document.destroyRenderTree();
     378    }
     379}
     380
    367381static void firePageHideEventRecursively(Frame& frame)
    368382{
     
    408422    }
    409423
     424    destroyRenderTree(page->mainFrame());
     425
    410426    setPageCacheState(*page, Document::InPageCache);
    411427
  • trunk/Source/WebCore/page/FrameView.cpp

    r210212 r210226  
    637637}
    638638
     639void FrameView::didRestoreFromPageCache()
     640{
     641    // When restoring from page cache, the main frame stays in place while subframes get swapped in.
     642    // We update the scrollable area set to ensure that scrolling data structures get invalidated.
     643    updateScrollableAreaSet();
     644}
     645
    639646void FrameView::setContentsSize(const IntSize& size)
    640647{
  • trunk/Source/WebCore/page/FrameView.h

    r210212 r210226  
    588588    bool shouldPlaceBlockDirectionScrollbarOnLeft() const final;
    589589
     590    void didRestoreFromPageCache();
     591
    590592protected:
    591593    bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) override;
  • trunk/Source/WebCore/page/animation/AnimationBase.cpp

    r210212 r210226  
    9090void AnimationBase::setNeedsStyleRecalc(Element* element)
    9191{
    92     ASSERT(!element || element->document().pageCacheState() == Document::NotInPageCache);
    93     if (element)
    94         element->invalidateStyleAndLayerComposition();
     92    if (!element || element->document().renderTreeBeingDestroyed())
     93        return;
     94
     95    ASSERT(element->document().pageCacheState() == Document::NotInPageCache);
     96    element->invalidateStyleAndLayerComposition();
    9597}
    9698
  • trunk/Source/WebCore/page/animation/AnimationController.cpp

    r209666 r210226  
    589589
    590590    Element* element = renderer.element();
    591     ASSERT(!element || element->document().pageCacheState() == Document::NotInPageCache);
    592     if (element)
    593         element->invalidateStyleAndLayerComposition();
     591    if (!element || element->document().renderTreeBeingDestroyed())
     592        return;
     593    ASSERT(element->document().pageCacheState() == Document::NotInPageCache);
     594    element->invalidateStyleAndLayerComposition();
    594595}
    595596
Note: See TracChangeset for help on using the changeset viewer.