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

Side by Side Diff: cc/resources/picture_layer_tiling.cc

Issue 471833002: cc: Add more eviction categories to picture layer impl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 6 years, 4 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 unified diff | Download patch
« no previous file with comments | « cc/resources/picture_layer_tiling.h ('k') | cc/resources/tile_manager_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/resources/picture_layer_tiling.h" 5 #include "cc/resources/picture_layer_tiling.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <limits> 9 #include <limits>
10 10
(...skipping 18 matching lines...) Expand all
29 explicit TileEvictionOrder(TreePriority tree_priority) 29 explicit TileEvictionOrder(TreePriority tree_priority)
30 : tree_priority_(tree_priority) {} 30 : tree_priority_(tree_priority) {}
31 ~TileEvictionOrder() {} 31 ~TileEvictionOrder() {}
32 32
33 bool operator()(const Tile* a, const Tile* b) { 33 bool operator()(const Tile* a, const Tile* b) {
34 const TilePriority& a_priority = 34 const TilePriority& a_priority =
35 a->priority_for_tree_priority(tree_priority_); 35 a->priority_for_tree_priority(tree_priority_);
36 const TilePriority& b_priority = 36 const TilePriority& b_priority =
37 b->priority_for_tree_priority(tree_priority_); 37 b->priority_for_tree_priority(tree_priority_);
38 38
39 // Evict a before b if their priority bins differ and a has the higher 39 DCHECK(a_priority.priority_bin == b_priority.priority_bin);
40 // priority bin. 40 DCHECK(a->required_for_activation() == b->required_for_activation());
41 if (a_priority.priority_bin != b_priority.priority_bin)
42 return a_priority.priority_bin > b_priority.priority_bin;
43
44 // Or if a is not required and b is required.
45 if (a->required_for_activation() != b->required_for_activation())
46 return b->required_for_activation();
47 41
48 // Or if a is occluded and b is unoccluded. 42 // Or if a is occluded and b is unoccluded.
49 bool a_is_occluded = a->is_occluded_for_tree_priority(tree_priority_); 43 bool a_is_occluded = a->is_occluded_for_tree_priority(tree_priority_);
50 bool b_is_occluded = b->is_occluded_for_tree_priority(tree_priority_); 44 bool b_is_occluded = b->is_occluded_for_tree_priority(tree_priority_);
51 if (a_is_occluded != b_is_occluded) 45 if (a_is_occluded != b_is_occluded)
52 return a_is_occluded; 46 return a_is_occluded;
53 47
54 // Or if a is farther away from visible. 48 // Or if a is farther away from visible.
55 return a_priority.distance_to_visible > b_priority.distance_to_visible; 49 return a_priority.distance_to_visible > b_priority.distance_to_visible;
56 } 50 }
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 cache->previous_result = result; 834 cache->previous_result = result;
841 return result; 835 return result;
842 } 836 }
843 837
844 void PictureLayerTiling::UpdateEvictionCacheIfNeeded( 838 void PictureLayerTiling::UpdateEvictionCacheIfNeeded(
845 TreePriority tree_priority) { 839 TreePriority tree_priority) {
846 if (eviction_tiles_cache_valid_ && 840 if (eviction_tiles_cache_valid_ &&
847 eviction_cache_tree_priority_ == tree_priority) 841 eviction_cache_tree_priority_ == tree_priority)
848 return; 842 return;
849 843
850 eventually_eviction_tiles_.clear(); 844 eviction_tiles_now_.clear();
851 soon_eviction_tiles_.clear(); 845 eviction_tiles_now_and_required_for_activation_.clear();
852 now_eviction_tiles_.clear(); 846 eviction_tiles_soon_.clear();
853 now_and_required_for_activation_eviction_tiles_.clear(); 847 eviction_tiles_soon_and_required_for_activation_.clear();
848 eviction_tiles_eventually_.clear();
849 eviction_tiles_eventually_and_required_for_activation_.clear();
854 850
855 for (TileMap::iterator it = tiles_.begin(); it != tiles_.end(); ++it) { 851 for (TileMap::iterator it = tiles_.begin(); it != tiles_.end(); ++it) {
856 // TODO(vmpstr): This should update the priority if UpdateTilePriorities 852 // TODO(vmpstr): This should update the priority if UpdateTilePriorities
857 // changes not to do this. 853 // changes not to do this.
858 Tile* tile = it->second; 854 Tile* tile = it->second;
859 const TilePriority& priority = 855 const TilePriority& priority =
860 tile->priority_for_tree_priority(tree_priority); 856 tile->priority_for_tree_priority(tree_priority);
861 switch (priority.priority_bin) { 857 switch (priority.priority_bin) {
862 case TilePriority::EVENTUALLY: 858 case TilePriority::EVENTUALLY:
863 eventually_eviction_tiles_.push_back(tile); 859 if (tile->required_for_activation())
860 eviction_tiles_eventually_and_required_for_activation_.push_back(
861 tile);
862 else
863 eviction_tiles_eventually_.push_back(tile);
864 break; 864 break;
865 case TilePriority::SOON: 865 case TilePriority::SOON:
866 soon_eviction_tiles_.push_back(tile); 866 if (tile->required_for_activation())
867 eviction_tiles_soon_and_required_for_activation_.push_back(tile);
868 else
869 eviction_tiles_soon_.push_back(tile);
867 break; 870 break;
868 case TilePriority::NOW: 871 case TilePriority::NOW:
869 if (tile->required_for_activation()) 872 if (tile->required_for_activation())
870 now_and_required_for_activation_eviction_tiles_.push_back(tile); 873 eviction_tiles_now_and_required_for_activation_.push_back(tile);
871 else 874 else
872 now_eviction_tiles_.push_back(tile); 875 eviction_tiles_now_.push_back(tile);
873 break; 876 break;
874 } 877 }
875 } 878 }
876 879
877 // TODO(vmpstr): Do this lazily. One option is to have a "sorted" flag that 880 // TODO(vmpstr): Do this lazily. One option is to have a "sorted" flag that
878 // can be updated for each of the queues. 881 // can be updated for each of the queues.
879 TileEvictionOrder sort_order(tree_priority); 882 TileEvictionOrder sort_order(tree_priority);
880 std::sort(eventually_eviction_tiles_.begin(), 883 std::sort(eviction_tiles_now_.begin(), eviction_tiles_now_.end(), sort_order);
881 eventually_eviction_tiles_.end(), 884 std::sort(eviction_tiles_now_and_required_for_activation_.begin(),
885 eviction_tiles_now_and_required_for_activation_.end(),
882 sort_order); 886 sort_order);
883 std::sort( 887 std::sort(
884 soon_eviction_tiles_.begin(), soon_eviction_tiles_.end(), sort_order); 888 eviction_tiles_soon_.begin(), eviction_tiles_soon_.end(), sort_order);
885 std::sort(now_eviction_tiles_.begin(), now_eviction_tiles_.end(), sort_order); 889 std::sort(eviction_tiles_soon_and_required_for_activation_.begin(),
886 std::sort(now_and_required_for_activation_eviction_tiles_.begin(), 890 eviction_tiles_soon_and_required_for_activation_.end(),
887 now_and_required_for_activation_eviction_tiles_.end(), 891 sort_order);
892 std::sort(eviction_tiles_eventually_.begin(),
893 eviction_tiles_eventually_.end(),
894 sort_order);
895 std::sort(eviction_tiles_eventually_and_required_for_activation_.begin(),
896 eviction_tiles_eventually_and_required_for_activation_.end(),
888 sort_order); 897 sort_order);
889 898
890 eviction_tiles_cache_valid_ = true; 899 eviction_tiles_cache_valid_ = true;
891 eviction_cache_tree_priority_ = tree_priority; 900 eviction_cache_tree_priority_ = tree_priority;
892 } 901 }
893 902
894 const std::vector<Tile*>* PictureLayerTiling::GetEvictionTiles( 903 const std::vector<Tile*>* PictureLayerTiling::GetEvictionTiles(
895 TreePriority tree_priority, 904 TreePriority tree_priority,
896 EvictionCategory category) { 905 EvictionCategory category) {
897 UpdateEvictionCacheIfNeeded(tree_priority); 906 UpdateEvictionCacheIfNeeded(tree_priority);
898 switch (category) { 907 switch (category) {
899 case EVENTUALLY: 908 case EVENTUALLY:
900 return &eventually_eviction_tiles_; 909 return &eviction_tiles_eventually_;
910 case EVENTUALLY_AND_REQUIRED_FOR_ACTIVATION:
911 return &eviction_tiles_eventually_and_required_for_activation_;
901 case SOON: 912 case SOON:
902 return &soon_eviction_tiles_; 913 return &eviction_tiles_soon_;
914 case SOON_AND_REQUIRED_FOR_ACTIVATION:
915 return &eviction_tiles_soon_and_required_for_activation_;
903 case NOW: 916 case NOW:
904 return &now_eviction_tiles_; 917 return &eviction_tiles_now_;
905 case NOW_AND_REQUIRED_FOR_ACTIVATION: 918 case NOW_AND_REQUIRED_FOR_ACTIVATION:
906 return &now_and_required_for_activation_eviction_tiles_; 919 return &eviction_tiles_now_and_required_for_activation_;
907 } 920 }
908 NOTREACHED(); 921 NOTREACHED();
909 return &eventually_eviction_tiles_; 922 return &eviction_tiles_eventually_;
910 } 923 }
911 924
912 PictureLayerTiling::TilingRasterTileIterator::TilingRasterTileIterator() 925 PictureLayerTiling::TilingRasterTileIterator::TilingRasterTileIterator()
913 : tiling_(NULL), current_tile_(NULL) {} 926 : tiling_(NULL), current_tile_(NULL) {}
914 927
915 PictureLayerTiling::TilingRasterTileIterator::TilingRasterTileIterator( 928 PictureLayerTiling::TilingRasterTileIterator::TilingRasterTileIterator(
916 PictureLayerTiling* tiling, 929 PictureLayerTiling* tiling,
917 WhichTree tree) 930 WhichTree tree)
918 : tiling_(tiling), phase_(VISIBLE_RECT), tree_(tree), current_tile_(NULL) { 931 : tiling_(tiling), phase_(VISIBLE_RECT), tree_(tree), current_tile_(NULL) {
919 if (!tiling_->has_visible_rect_tiles_) { 932 if (!tiling_->has_visible_rect_tiles_) {
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 DCHECK(*this); 1086 DCHECK(*this);
1074 do { 1087 do {
1075 ++current_eviction_tiles_index_; 1088 ++current_eviction_tiles_index_;
1076 } while (current_eviction_tiles_index_ != eviction_tiles_->size() && 1089 } while (current_eviction_tiles_index_ != eviction_tiles_->size() &&
1077 !(*eviction_tiles_)[current_eviction_tiles_index_]->HasResources()); 1090 !(*eviction_tiles_)[current_eviction_tiles_index_]->HasResources());
1078 1091
1079 return *this; 1092 return *this;
1080 } 1093 }
1081 1094
1082 } // namespace cc 1095 } // namespace cc
OLDNEW
« no previous file with comments | « cc/resources/picture_layer_tiling.h ('k') | cc/resources/tile_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698