Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1462)

Unified Diff: cc/resources/raster_tile_priority_queue.cc

Issue 541843002: cc: Optimise shared raster tile handling in raster tile priority queue. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Stop special casing the same tile case. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/resources/raster_tile_priority_queue.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/raster_tile_priority_queue.cc
diff --git a/cc/resources/raster_tile_priority_queue.cc b/cc/resources/raster_tile_priority_queue.cc
index e0591b3d2a228a07db43edbdd28b371aa372d4c9..d7bd2f8ce7f63656fac2856100b902c328b4a6a3 100644
--- a/cc/resources/raster_tile_priority_queue.cc
+++ b/cc/resources/raster_tile_priority_queue.cc
@@ -122,7 +122,8 @@ RasterTilePriorityQueue::PairedPictureLayerQueue::PairedPictureLayerQueue(
? PictureLayerImpl::LayerRasterTileIterator(
layer_pair.pending,
tree_priority == SMOOTHNESS_TAKES_PRIORITY)
- : PictureLayerImpl::LayerRasterTileIterator()) {
+ : PictureLayerImpl::LayerRasterTileIterator()),
+ has_both_layers(layer_pair.active && layer_pair.pending) {
}
RasterTilePriorityQueue::PairedPictureLayerQueue::~PairedPictureLayerQueue() {
@@ -141,9 +142,7 @@ Tile* RasterTilePriorityQueue::PairedPictureLayerQueue::Top(
next_tree == ACTIVE_TREE ? &active_iterator : &pending_iterator;
DCHECK(*next_iterator);
Tile* tile = **next_iterator;
- DCHECK(std::find(returned_shared_tiles.begin(),
- returned_shared_tiles.end(),
- tile) == returned_shared_tiles.end());
+ DCHECK(returned_tiles_for_debug.find(tile) == returned_tiles_for_debug.end());
return tile;
}
@@ -155,25 +154,32 @@ void RasterTilePriorityQueue::PairedPictureLayerQueue::Pop(
PictureLayerImpl::LayerRasterTileIterator* next_iterator =
next_tree == ACTIVE_TREE ? &active_iterator : &pending_iterator;
DCHECK(*next_iterator);
- returned_shared_tiles.push_back(**next_iterator);
+ DCHECK(returned_tiles_for_debug.insert(**next_iterator).second);
++(*next_iterator);
- if (IsEmpty())
- return;
-
- next_tree = NextTileIteratorTree(tree_priority);
- next_iterator =
- next_tree == ACTIVE_TREE ? &active_iterator : &pending_iterator;
- while (std::find(returned_shared_tiles.begin(),
- returned_shared_tiles.end(),
- **next_iterator) != returned_shared_tiles.end()) {
- ++(*next_iterator);
- if (IsEmpty())
- break;
+ for (; !IsEmpty(); ++(*next_iterator)) {
next_tree = NextTileIteratorTree(tree_priority);
next_iterator =
next_tree == ACTIVE_TREE ? &active_iterator : &pending_iterator;
+
+ if (has_both_layers) {
reveman 2014/09/09 18:26:47 doesn't seem to make sense to enter this loop unle
USE eero AT chromium.org 2014/09/10 07:38:23 Yes, that could be done. It is just that the DCHEC
USE eero AT chromium.org 2014/09/10 14:08:26 It turned out to be quite easy to work-a-round tha
+ // We have both layers (active and pending) thus we can encounter shared
+ // tiles twice (from the active iterator and from the pending iterator).
+ // Skip a shared tile if the tree is not the primary one corresponding
+ // the iterator (active or pending) which usually (but due to spiral
+ // iterators not always) returns the shared tile first.
+ const Tile* tile = **next_iterator;
+ if (tile->is_shared() &&
+ next_tree != PrimarySharedTileTree(tree_priority, tile))
+ continue;
+ }
+
+ break;
reveman 2014/09/09 18:26:47 I think it would be less awkward to keep iterating
USE eero AT chromium.org 2014/09/10 07:38:24 Done.
}
+
+ DCHECK(!*next_iterator ||
+ returned_tiles_for_debug.find(**next_iterator) ==
+ returned_tiles_for_debug.end());
}
WhichTree
@@ -188,6 +194,7 @@ RasterTilePriorityQueue::PairedPictureLayerQueue::NextTileIteratorTree(
return ACTIVE_TREE;
// Now both iterators have tiles, so we have to decide based on tree priority.
+ // Keep in sync with PrimarySharedTileTree.
switch (tree_priority) {
case SMOOTHNESS_TAKES_PRIORITY:
return ACTIVE_TREE;
@@ -196,8 +203,6 @@ RasterTilePriorityQueue::PairedPictureLayerQueue::NextTileIteratorTree(
case SAME_PRIORITY_FOR_BOTH_TREES: {
const Tile* active_tile = *active_iterator;
const Tile* pending_tile = *pending_iterator;
- if (active_tile == pending_tile)
- return ACTIVE_TREE;
const TilePriority& active_priority = active_tile->priority(ACTIVE_TREE);
const TilePriority& pending_priority =
@@ -216,4 +221,40 @@ RasterTilePriorityQueue::PairedPictureLayerQueue::NextTileIteratorTree(
return ACTIVE_TREE;
}
+WhichTree
+RasterTilePriorityQueue::PairedPictureLayerQueue::PrimarySharedTileTree(
reveman 2014/09/09 18:26:47 PrimaryTreeForSharedTile?
USE eero AT chromium.org 2014/09/10 07:38:23 Done.
+ TreePriority tree_priority,
+ const Tile* tile) const {
+ DCHECK(has_both_layers && tile->is_shared());
+
+ // Keep in sync with NextTileIteratorTree.
reveman 2014/09/09 18:26:47 Instead of having to keep these functions in sync,
USE eero AT chromium.org 2014/09/10 07:38:23 The only but is that for the first two cases there
USE eero AT chromium.org 2014/09/10 14:08:26 It does have a major impact. Half of the improveme
reveman 2014/09/10 18:53:35 I'm not sure I understand the reasoning here. I'm
+ switch (tree_priority) {
+ case SMOOTHNESS_TAKES_PRIORITY:
+ // Return shared tiles as active tiles as we return all active tiles
+ // before the first pending tile.
+ return ACTIVE_TREE;
+ case NEW_CONTENT_TAKES_PRIORITY:
+ // Return shared tiles as pending tiles as we return all pending tiles
+ // before the first active tile.
+ return PENDING_TREE;
+ case SAME_PRIORITY_FOR_BOTH_TREES: {
+ // Return shared tiles as either active or pending tiles based on their
+ // active and pending priorities order to return them on the first time
+ // they are encountered and to skip them on the second time.
+ const TilePriority& active_priority = tile->priority(ACTIVE_TREE);
+ const TilePriority& pending_priority = tile->priority(PENDING_TREE);
+
+ if (active_priority.IsHigherPriorityThan(pending_priority))
+ return ACTIVE_TREE;
+ return PENDING_TREE;
+ }
+ default:
+ NOTREACHED();
+ }
+
+ NOTREACHED();
reveman 2014/09/09 18:26:47 You're just being consistent here and that's good
USE eero AT chromium.org 2014/09/10 07:38:24 Done.
+ // Keep the compiler happy.
+ return ACTIVE_TREE;
+}
+
} // namespace cc
« no previous file with comments | « cc/resources/raster_tile_priority_queue.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698