Bug 1159042 - p4. Make mDirtyRoots manage roots in preferred depth order - r=dbaron
When popping a dirty root, take the shallowest one first (so we reflow from outer frames first, to avoid potential duplicate reflow of inner frames). Prevent duplicate roots (to be reworked in a future bug). Differential Revision: https://phabricator.services.mozilla.com/D9490
This commit is contained in:
@@ -591,27 +591,40 @@ private:
|
||||
};
|
||||
|
||||
void
|
||||
nsIPresShell::DirtyRootsList::AppendElement(nsIFrame* aFrame)
|
||||
nsIPresShell::DirtyRootsList::Add(nsIFrame* aFrame)
|
||||
{
|
||||
mList.AppendElement(aFrame);
|
||||
// Is this root already scheduled for reflow?
|
||||
// FIXME: This could possibly be changed to a uniqueness assertion, with some
|
||||
// work in ResizeReflowIgnoreOverride (and maybe others?)
|
||||
if (mList.Contains(aFrame)) {
|
||||
// We don't expect frame to change depths.
|
||||
MOZ_ASSERT(aFrame->GetDepthInFrameTree() ==
|
||||
mList[mList.IndexOf(aFrame)].mDepth);
|
||||
return;
|
||||
}
|
||||
|
||||
mList.InsertElementSorted(
|
||||
FrameAndDepth{ aFrame, aFrame->GetDepthInFrameTree() },
|
||||
FrameAndDepth::CompareByReverseDepth{});
|
||||
}
|
||||
|
||||
void
|
||||
nsIPresShell::DirtyRootsList::RemoveElement(nsIFrame* aFrame)
|
||||
nsIPresShell::DirtyRootsList::Remove(nsIFrame* aFrame)
|
||||
{
|
||||
mList.RemoveElement(aFrame);
|
||||
}
|
||||
|
||||
void
|
||||
nsIPresShell::DirtyRootsList::RemoveElements(nsIFrame* aFrame)
|
||||
nsIFrame*
|
||||
nsIPresShell::DirtyRootsList::PopShallowestRoot()
|
||||
{
|
||||
mList.RemoveElementsBy([&](nsIFrame* aRoot){ return aRoot == aFrame; });
|
||||
}
|
||||
|
||||
void
|
||||
nsIPresShell::DirtyRootsList::RemoveElementAt(size_t aIndex)
|
||||
{
|
||||
return mList.RemoveElementAt(aIndex);
|
||||
// List is sorted in order of decreasing depth, so there are no deeper
|
||||
// frames than the last one.
|
||||
const FrameAndDepth& lastFAD = mList.LastElement();
|
||||
nsIFrame* frame = lastFAD.mFrame;
|
||||
// We don't expect frame to change depths.
|
||||
MOZ_ASSERT(frame->GetDepthInFrameTree() == lastFAD.mDepth);
|
||||
mList.RemoveLastElement();
|
||||
return frame;
|
||||
}
|
||||
|
||||
void
|
||||
@@ -632,10 +645,24 @@ nsIPresShell::DirtyRootsList::IsEmpty() const
|
||||
return mList.IsEmpty();
|
||||
}
|
||||
|
||||
size_t
|
||||
nsIPresShell::DirtyRootsList::Length() const
|
||||
bool
|
||||
nsIPresShell::DirtyRootsList::FrameIsAncestorOfDirtyRoot(nsIFrame* aFrame) const
|
||||
{
|
||||
return mList.Length();
|
||||
MOZ_ASSERT(aFrame);
|
||||
|
||||
// Look for a path from any dirty roots to aFrame, following GetParent().
|
||||
// This check mirrors what FrameNeedsReflow() would have done if the reflow
|
||||
// root didn't get in the way.
|
||||
for (nsIFrame* dirtyFrame : mList) {
|
||||
do {
|
||||
if (dirtyFrame == aFrame) {
|
||||
return true;
|
||||
}
|
||||
dirtyFrame = dirtyFrame->GetParent();
|
||||
} while (dirtyFrame);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool PresShell::sDisableNonTestMouseEvents = false;
|
||||
@@ -2069,7 +2096,7 @@ PresShell::ResizeReflowIgnoreOverride(nscoord aWidth, nscoord aHeight,
|
||||
AUTO_LAYOUT_PHASE_ENTRY_POINT(GetPresContext(), Reflow);
|
||||
nsViewManager::AutoDisableRefresh refreshBlocker(viewManager);
|
||||
|
||||
mDirtyRoots.RemoveElement(rootFrame);
|
||||
mDirtyRoots.Remove(rootFrame);
|
||||
DoReflow(rootFrame, true, nullptr);
|
||||
|
||||
if (shrinkToFit) {
|
||||
@@ -2205,7 +2232,7 @@ PresShell::NotifyDestroyingFrame(nsIFrame* aFrame)
|
||||
|
||||
mFrameConstructor->NotifyDestroyingFrame(aFrame);
|
||||
|
||||
mDirtyRoots.RemoveElements(aFrame);
|
||||
mDirtyRoots.Remove(aFrame);
|
||||
|
||||
// Remove frame properties
|
||||
aFrame->DeleteAllProperties();
|
||||
@@ -2863,7 +2890,7 @@ PresShell::FrameNeedsReflow(nsIFrame *aFrame, IntrinsicDirty aIntrinsicDirty,
|
||||
if (FRAME_IS_REFLOW_ROOT(f) || !f->GetParent()) {
|
||||
// we've hit a reflow root or the root frame
|
||||
if (!wasDirty) {
|
||||
mDirtyRoots.AppendElement(f);
|
||||
mDirtyRoots.Add(f);
|
||||
SetNeedLayoutFlush();
|
||||
}
|
||||
#ifdef DEBUG
|
||||
@@ -4671,22 +4698,7 @@ PresShell::NotifyCounterStylesAreDirty()
|
||||
bool
|
||||
nsIPresShell::FrameIsAncestorOfDirtyRoot(nsIFrame* aFrame) const
|
||||
{
|
||||
MOZ_ASSERT(aFrame);
|
||||
|
||||
// Look for a path from any dirty roots to aFrame, following GetParent().
|
||||
// This check mirrors what FrameNeedsReflow() would have done if the reflow
|
||||
// root didn't get in the way.
|
||||
for (nsIFrame* dirtyFrame : mDirtyRoots) {
|
||||
while (dirtyFrame) {
|
||||
if (dirtyFrame == aFrame) {
|
||||
return true;
|
||||
}
|
||||
|
||||
dirtyFrame = dirtyFrame->GetParent();
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
return mDirtyRoots.FrameIsAncestorOfDirtyRoot(aFrame);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -9140,7 +9152,7 @@ PresShell::DoReflow(nsIFrame* target, bool aInterruptible,
|
||||
}
|
||||
|
||||
NS_ASSERTION(NS_SUBTREE_DIRTY(target), "Why is the target not dirty?");
|
||||
mDirtyRoots.AppendElement(target);
|
||||
mDirtyRoots.Add(target);
|
||||
SetNeedLayoutFlush();
|
||||
|
||||
// Clear mFramesToDirty after we've done the NS_SUBTREE_DIRTY(target)
|
||||
@@ -9237,9 +9249,7 @@ PresShell::ProcessReflowCommands(bool aInterruptible)
|
||||
|
||||
do {
|
||||
// Send an incremental reflow notification to the target frame.
|
||||
int32_t idx = mDirtyRoots.Length() - 1;
|
||||
nsIFrame *target = mDirtyRoots[idx];
|
||||
mDirtyRoots.RemoveElementAt(idx);
|
||||
nsIFrame *target = mDirtyRoots.PopShallowestRoot();
|
||||
|
||||
if (!NS_SUBTREE_DIRTY(target)) {
|
||||
// It's not dirty anymore, which probably means the notification
|
||||
|
||||
Reference in New Issue
Block a user