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

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
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_rfa_.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_rfa_.clear();
848 eviction_tiles_eventually_.clear();
849 eviction_tiles_eventually_and_rfa_.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_rfa_.push_back(tile);
861 else
862 eviction_tiles_eventually_.push_back(tile);
864 break; 863 break;
865 case TilePriority::SOON: 864 case TilePriority::SOON:
866 soon_eviction_tiles_.push_back(tile); 865 if (tile->required_for_activation())
866 eviction_tiles_soon_and_rfa_.push_back(tile);
867 else
868 eviction_tiles_soon_.push_back(tile);
867 break; 869 break;
868 case TilePriority::NOW: 870 case TilePriority::NOW:
869 if (tile->required_for_activation()) 871 if (tile->required_for_activation())
870 now_and_required_for_activation_eviction_tiles_.push_back(tile); 872 eviction_tiles_now_and_rfa_.push_back(tile);
871 else 873 else
872 now_eviction_tiles_.push_back(tile); 874 eviction_tiles_now_.push_back(tile);
873 break; 875 break;
874 } 876 }
875 } 877 }
876 878
877 // TODO(vmpstr): Do this lazily. One option is to have a "sorted" flag that 879 // TODO(vmpstr): Do this lazily. One option is to have a "sorted" flag that
878 // can be updated for each of the queues. 880 // can be updated for each of the queues.
879 TileEvictionOrder sort_order(tree_priority); 881 TileEvictionOrder sort_order(tree_priority);
880 std::sort(eventually_eviction_tiles_.begin(), 882 std::sort(eviction_tiles_now_.begin(), eviction_tiles_now_.end(), sort_order);
881 eventually_eviction_tiles_.end(), 883 std::sort(eviction_tiles_now_and_rfa_.begin(),
884 eviction_tiles_now_and_rfa_.end(),
882 sort_order); 885 sort_order);
883 std::sort( 886 std::sort(
884 soon_eviction_tiles_.begin(), soon_eviction_tiles_.end(), sort_order); 887 eviction_tiles_soon_.begin(), eviction_tiles_soon_.end(), sort_order);
885 std::sort(now_eviction_tiles_.begin(), now_eviction_tiles_.end(), sort_order); 888 std::sort(eviction_tiles_soon_and_rfa_.begin(),
886 std::sort(now_and_required_for_activation_eviction_tiles_.begin(), 889 eviction_tiles_soon_and_rfa_.end(),
887 now_and_required_for_activation_eviction_tiles_.end(), 890 sort_order);
891 std::sort(eviction_tiles_eventually_.begin(),
892 eviction_tiles_eventually_.end(),
893 sort_order);
894 std::sort(eviction_tiles_eventually_and_rfa_.begin(),
895 eviction_tiles_eventually_and_rfa_.end(),
888 sort_order); 896 sort_order);
889 897
890 eviction_tiles_cache_valid_ = true; 898 eviction_tiles_cache_valid_ = true;
891 eviction_cache_tree_priority_ = tree_priority; 899 eviction_cache_tree_priority_ = tree_priority;
892 } 900 }
893 901
894 const std::vector<Tile*>* PictureLayerTiling::GetEvictionTiles( 902 const std::vector<Tile*>* PictureLayerTiling::GetEvictionTiles(
895 TreePriority tree_priority, 903 TreePriority tree_priority,
896 EvictionCategory category) { 904 EvictionCategory category) {
897 UpdateEvictionCacheIfNeeded(tree_priority); 905 UpdateEvictionCacheIfNeeded(tree_priority);
898 switch (category) { 906 switch (category) {
899 case EVENTUALLY: 907 case EVENTUALLY:
900 return &eventually_eviction_tiles_; 908 return &eviction_tiles_eventually_;
909 case EVENTUALLY_AND_REQUIRED_FOR_ACTIVATION:
910 return &eviction_tiles_eventually_and_rfa_;
901 case SOON: 911 case SOON:
902 return &soon_eviction_tiles_; 912 return &eviction_tiles_soon_;
913 case SOON_AND_REQUIRED_FOR_ACTIVATION:
914 return &eviction_tiles_soon_and_rfa_;
903 case NOW: 915 case NOW:
904 return &now_eviction_tiles_; 916 return &eviction_tiles_now_;
905 case NOW_AND_REQUIRED_FOR_ACTIVATION: 917 case NOW_AND_REQUIRED_FOR_ACTIVATION:
906 return &now_and_required_for_activation_eviction_tiles_; 918 return &eviction_tiles_now_and_rfa_;
907 } 919 }
908 NOTREACHED(); 920 NOTREACHED();
909 return &eventually_eviction_tiles_; 921 return &eviction_tiles_eventually_;
910 } 922 }
911 923
912 PictureLayerTiling::TilingRasterTileIterator::TilingRasterTileIterator() 924 PictureLayerTiling::TilingRasterTileIterator::TilingRasterTileIterator()
913 : tiling_(NULL), current_tile_(NULL) {} 925 : tiling_(NULL), current_tile_(NULL) {}
914 926
915 PictureLayerTiling::TilingRasterTileIterator::TilingRasterTileIterator( 927 PictureLayerTiling::TilingRasterTileIterator::TilingRasterTileIterator(
916 PictureLayerTiling* tiling, 928 PictureLayerTiling* tiling,
917 WhichTree tree) 929 WhichTree tree)
918 : tiling_(tiling), phase_(VISIBLE_RECT), tree_(tree), current_tile_(NULL) { 930 : tiling_(tiling), phase_(VISIBLE_RECT), tree_(tree), current_tile_(NULL) {
919 if (!tiling_->has_visible_rect_tiles_) { 931 if (!tiling_->has_visible_rect_tiles_) {
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 DCHECK(*this); 1085 DCHECK(*this);
1074 do { 1086 do {
1075 ++current_eviction_tiles_index_; 1087 ++current_eviction_tiles_index_;
1076 } while (current_eviction_tiles_index_ != eviction_tiles_->size() && 1088 } while (current_eviction_tiles_index_ != eviction_tiles_->size() &&
1077 !(*eviction_tiles_)[current_eviction_tiles_index_]->HasResources()); 1089 !(*eviction_tiles_)[current_eviction_tiles_index_]->HasResources());
1078 1090
1079 return *this; 1091 return *this;
1080 } 1092 }
1081 1093
1082 } // namespace cc 1094 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698