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

Side by Side Diff: cc/tiles/tile_manager.cc

Issue 1951193002: cc: Add mailbox support to ResourceProvider write locks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@worker_context_stream
Patch Set: Created 4 years, 6 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/tiles/tile_manager.h" 5 #include "cc/tiles/tile_manager.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 void TileManager::FinishTasksAndCleanUp() { 340 void TileManager::FinishTasksAndCleanUp() {
341 if (!tile_task_manager_) 341 if (!tile_task_manager_)
342 return; 342 return;
343 343
344 global_state_ = GlobalStateThatImpactsTilePriority(); 344 global_state_ = GlobalStateThatImpactsTilePriority();
345 345
346 // This cancels tasks if possible, finishes pending tasks, and release any 346 // This cancels tasks if possible, finishes pending tasks, and release any
347 // uninitialized resources. 347 // uninitialized resources.
348 tile_task_manager_->Shutdown(); 348 tile_task_manager_->Shutdown();
349 349
350 // Now that all tasks have been finished, we can clear any 350 raster_buffer_provider_->Shutdown();
351 // |orphan_tasks_|. 351
352 // Now that all tasks have been finished, we can clear any |orphan_tasks_|.
352 orphan_tasks_.clear(); 353 orphan_tasks_.clear();
353 354
354 tile_task_manager_->CheckForCompletedTasks(); 355 tile_task_manager_->CheckForCompletedTasks();
355 356
356 FreeResourcesForReleasedTiles(); 357 FreeResourcesForReleasedTiles();
357 CleanUpReleasedTiles(); 358 CleanUpReleasedTiles();
358 359
359 tile_task_manager_ = nullptr; 360 tile_task_manager_ = nullptr;
360 resource_pool_ = nullptr; 361 resource_pool_ = nullptr;
361 more_tiles_need_prepare_check_notifier_.Cancel(); 362 more_tiles_need_prepare_check_notifier_.Cancel();
362 signals_check_notifier_.Cancel(); 363 signals_check_notifier_.Cancel();
363 task_set_finished_weak_ptr_factory_.InvalidateWeakPtrs(); 364 task_set_finished_weak_ptr_factory_.InvalidateWeakPtrs();
364 365
365 for (auto& draw_image_pair : locked_images_) 366 for (auto& draw_image_pair : locked_images_)
366 image_decode_controller_->UnrefImage(draw_image_pair.first); 367 image_decode_controller_->UnrefImage(draw_image_pair.first);
367 locked_images_.clear(); 368 locked_images_.clear();
368 } 369 }
369 370
370 void TileManager::SetResources(ResourcePool* resource_pool, 371 void TileManager::SetResources(ResourcePool* resource_pool,
371 ImageDecodeController* image_decode_controller, 372 ImageDecodeController* image_decode_controller,
372 TileTaskManager* tile_task_manager, 373 TileTaskManager* tile_task_manager,
374 RasterBufferProvider* raster_buffer_provider,
373 size_t scheduled_raster_task_limit, 375 size_t scheduled_raster_task_limit,
374 bool use_gpu_rasterization) { 376 bool use_gpu_rasterization) {
375 DCHECK(!tile_task_manager_); 377 DCHECK(!tile_task_manager_);
376 DCHECK(tile_task_manager); 378 DCHECK(tile_task_manager);
377 379
378 use_gpu_rasterization_ = use_gpu_rasterization; 380 use_gpu_rasterization_ = use_gpu_rasterization;
379 scheduled_raster_task_limit_ = scheduled_raster_task_limit; 381 scheduled_raster_task_limit_ = scheduled_raster_task_limit;
380 resource_pool_ = resource_pool; 382 resource_pool_ = resource_pool;
381 image_decode_controller_ = image_decode_controller; 383 image_decode_controller_ = image_decode_controller;
382 tile_task_manager_ = tile_task_manager; 384 tile_task_manager_ = tile_task_manager;
385 raster_buffer_provider_ = raster_buffer_provider;
383 } 386 }
384 387
385 void TileManager::Release(Tile* tile) { 388 void TileManager::Release(Tile* tile) {
386 released_tiles_.push_back(tile); 389 released_tiles_.push_back(tile);
387 } 390 }
388 391
389 void TileManager::FreeResourcesForReleasedTiles() { 392 void TileManager::FreeResourcesForReleasedTiles() {
390 for (auto* tile : released_tiles_) 393 for (auto* tile : released_tiles_)
391 FreeResourcesForTile(tile); 394 FreeResourcesForTile(tile);
392 } 395 }
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 TASK_CATEGORY_NONCONCURRENT_FOREGROUND, 888 TASK_CATEGORY_NONCONCURRENT_FOREGROUND,
886 kRequiredForActivationDoneTaskPriority, 889 kRequiredForActivationDoneTaskPriority,
887 required_for_activate_count); 890 required_for_activate_count);
888 InsertNodeForTask(&graph_, required_for_draw_done_task.get(), 891 InsertNodeForTask(&graph_, required_for_draw_done_task.get(),
889 TASK_CATEGORY_NONCONCURRENT_FOREGROUND, 892 TASK_CATEGORY_NONCONCURRENT_FOREGROUND,
890 kRequiredForDrawDoneTaskPriority, required_for_draw_count); 893 kRequiredForDrawDoneTaskPriority, required_for_draw_count);
891 InsertNodeForTask(&graph_, all_done_task.get(), 894 InsertNodeForTask(&graph_, all_done_task.get(),
892 TASK_CATEGORY_NONCONCURRENT_FOREGROUND, 895 TASK_CATEGORY_NONCONCURRENT_FOREGROUND,
893 kAllDoneTaskPriority, all_count); 896 kAllDoneTaskPriority, all_count);
894 897
895 // We must reduce the amount of unused resoruces before calling 898 // We must reduce the amount of unused resources before calling
896 // ScheduleTasks to prevent usage from rising above limits. 899 // ScheduleTasks to prevent usage from rising above limits.
897 resource_pool_->ReduceResourceUsage(); 900 resource_pool_->ReduceResourceUsage();
898 image_decode_controller_->ReduceCacheUsage(); 901 image_decode_controller_->ReduceCacheUsage();
899 902
903 // Synchronize worker with compositor. If that fails do not schedule tasks.
904 if (!raster_buffer_provider_->OrderingBarrier())
905 return;
906
900 // Schedule running of |raster_queue_|. This replaces any previously 907 // Schedule running of |raster_queue_|. This replaces any previously
901 // scheduled tasks and effectively cancels all tasks not present 908 // scheduled tasks and effectively cancels all tasks not present
902 // in |raster_queue_|. 909 // in |raster_queue_|.
903 tile_task_manager_->ScheduleTasks(&graph_); 910 tile_task_manager_->ScheduleTasks(&graph_);
904 911
905 // It's now safe to clean up orphan tasks as raster worker pool is not 912 // It's now safe to clean up orphan tasks as raster worker pool is not
906 // allowed to keep around unreferenced raster tasks after ScheduleTasks() has 913 // allowed to keep around unreferenced raster tasks after ScheduleTasks() has
907 // been called. 914 // been called.
908 orphan_tasks_.clear(); 915 orphan_tasks_.clear();
909 916
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
967 decode_tasks.push_back(task); 974 decode_tasks.push_back(task);
968 975
969 if (need_to_unref_when_finished) 976 if (need_to_unref_when_finished)
970 ++it; 977 ++it;
971 else 978 else
972 it = images.erase(it); 979 it = images.erase(it);
973 } 980 }
974 981
975 bool supports_concurrent_execution = !use_gpu_rasterization_; 982 bool supports_concurrent_execution = !use_gpu_rasterization_;
976 std::unique_ptr<RasterBuffer> raster_buffer = 983 std::unique_ptr<RasterBuffer> raster_buffer =
977 tile_task_manager_->GetRasterBufferProvider()->AcquireBufferForRaster( 984 raster_buffer_provider_->AcquireBufferForRaster(
978 resource, resource_content_id, tile->invalidated_id()); 985 resource, resource_content_id, tile->invalidated_id());
979 return make_scoped_refptr(new RasterTaskImpl( 986 return make_scoped_refptr(new RasterTaskImpl(
980 this, tile, resource, prioritized_tile.raster_source(), playback_settings, 987 this, tile, resource, prioritized_tile.raster_source(), playback_settings,
981 prioritized_tile.priority().resolution, prepare_tiles_count_, 988 prioritized_tile.priority().resolution, prepare_tiles_count_,
982 std::move(raster_buffer), &decode_tasks, supports_concurrent_execution)); 989 std::move(raster_buffer), &decode_tasks, supports_concurrent_execution));
983 } 990 }
984 991
985 void TileManager::OnRasterTaskCompleted( 992 void TileManager::OnRasterTaskCompleted(
986 std::unique_ptr<RasterBuffer> raster_buffer, 993 std::unique_ptr<RasterBuffer> raster_buffer,
987 Tile* tile, 994 Tile* tile,
988 Resource* resource, 995 Resource* resource,
989 bool was_canceled) { 996 bool was_canceled) {
990 DCHECK(tile); 997 DCHECK(tile);
991 DCHECK(tiles_.find(tile->id()) != tiles_.end()); 998 DCHECK(tiles_.find(tile->id()) != tiles_.end());
992 tile_task_manager_->GetRasterBufferProvider()->ReleaseBufferForRaster( 999 raster_buffer_provider_->ReleaseBufferForRaster(std::move(raster_buffer));
993 std::move(raster_buffer));
994 1000
995 TileDrawInfo& draw_info = tile->draw_info(); 1001 TileDrawInfo& draw_info = tile->draw_info();
996 DCHECK(tile->raster_task_.get()); 1002 DCHECK(tile->raster_task_.get());
997 orphan_tasks_.push_back(tile->raster_task_); 1003 orphan_tasks_.push_back(tile->raster_task_);
998 tile->raster_task_ = nullptr; 1004 tile->raster_task_ = nullptr;
999 1005
1000 // Unref all the images. 1006 // Unref all the images.
1001 auto images_it = scheduled_draw_images_.find(tile->id()); 1007 auto images_it = scheduled_draw_images_.find(tile->id());
1002 const std::vector<DrawImage>& images = images_it->second; 1008 const std::vector<DrawImage>& images = images_it->second;
1003 for (const auto& image : images) 1009 for (const auto& image : images)
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
1039 1045
1040 tiles_[tile->id()] = tile.get(); 1046 tiles_[tile->id()] = tile.get();
1041 return tile; 1047 return tile;
1042 } 1048 }
1043 1049
1044 void TileManager::SetTileTaskManagerForTesting( 1050 void TileManager::SetTileTaskManagerForTesting(
1045 TileTaskManager* tile_task_manager) { 1051 TileTaskManager* tile_task_manager) {
1046 tile_task_manager_ = tile_task_manager; 1052 tile_task_manager_ = tile_task_manager;
1047 } 1053 }
1048 1054
1055 void TileManager::SetRasterBufferProviderForTesting(
1056 RasterBufferProvider* raster_buffer_provider) {
1057 raster_buffer_provider_ = raster_buffer_provider;
1058 }
1059
1049 bool TileManager::AreRequiredTilesReadyToDraw( 1060 bool TileManager::AreRequiredTilesReadyToDraw(
1050 RasterTilePriorityQueue::Type type) const { 1061 RasterTilePriorityQueue::Type type) const {
1051 std::unique_ptr<RasterTilePriorityQueue> raster_priority_queue( 1062 std::unique_ptr<RasterTilePriorityQueue> raster_priority_queue(
1052 client_->BuildRasterQueue(global_state_.tree_priority, type)); 1063 client_->BuildRasterQueue(global_state_.tree_priority, type));
1053 // It is insufficient to check whether the raster queue we constructed is 1064 // It is insufficient to check whether the raster queue we constructed is
1054 // empty. The reason for this is that there are situations (rasterize on 1065 // empty. The reason for this is that there are situations (rasterize on
1055 // demand) when the tile both needs raster and it's ready to draw. Hence, we 1066 // demand) when the tile both needs raster and it's ready to draw. Hence, we
1056 // have to iterate the queue to check whether the required tiles are ready to 1067 // have to iterate the queue to check whether the required tiles are ready to
1057 // draw. 1068 // draw.
1058 for (; !raster_priority_queue->IsEmpty(); raster_priority_queue->Pop()) { 1069 for (; !raster_priority_queue->IsEmpty(); raster_priority_queue->Pop()) {
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 Tile* tile = queue->Top().tile(); 1219 Tile* tile = queue->Top().tile();
1209 if (tile->draw_info().IsReadyToDraw()) 1220 if (tile->draw_info().IsReadyToDraw())
1210 continue; 1221 continue;
1211 tile->draw_info().set_oom(); 1222 tile->draw_info().set_oom();
1212 client_->NotifyTileStateChanged(tile); 1223 client_->NotifyTileStateChanged(tile);
1213 } 1224 }
1214 return true; 1225 return true;
1215 } 1226 }
1216 1227
1217 ResourceFormat TileManager::DetermineResourceFormat(const Tile* tile) const { 1228 ResourceFormat TileManager::DetermineResourceFormat(const Tile* tile) const {
1218 return tile_task_manager_->GetRasterBufferProvider()->GetResourceFormat( 1229 return raster_buffer_provider_->GetResourceFormat(!tile->is_opaque());
1230 }
1231
1232 bool TileManager::DetermineResourceRequiresSwizzle(const Tile* tile) const {
1233 return raster_buffer_provider_->GetResourceRequiresSwizzle(
1219 !tile->is_opaque()); 1234 !tile->is_opaque());
1220 } 1235 }
1221 1236
1222 bool TileManager::DetermineResourceRequiresSwizzle(const Tile* tile) const {
1223 return tile_task_manager_->GetRasterBufferProvider()
1224 ->GetResourceRequiresSwizzle(!tile->is_opaque());
1225 }
1226
1227 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> 1237 std::unique_ptr<base::trace_event::ConvertableToTraceFormat>
1228 TileManager::ScheduledTasksStateAsValue() const { 1238 TileManager::ScheduledTasksStateAsValue() const {
1229 std::unique_ptr<base::trace_event::TracedValue> state( 1239 std::unique_ptr<base::trace_event::TracedValue> state(
1230 new base::trace_event::TracedValue()); 1240 new base::trace_event::TracedValue());
1231 state->BeginDictionary("tasks_pending"); 1241 state->BeginDictionary("tasks_pending");
1232 state->SetBoolean("ready_to_activate", signals_.ready_to_activate); 1242 state->SetBoolean("ready_to_activate", signals_.ready_to_activate);
1233 state->SetBoolean("ready_to_draw", signals_.ready_to_draw); 1243 state->SetBoolean("ready_to_draw", signals_.ready_to_draw);
1234 state->SetBoolean("all_tile_tasks_completed", 1244 state->SetBoolean("all_tile_tasks_completed",
1235 signals_.all_tile_tasks_completed); 1245 signals_.all_tile_tasks_completed);
1236 state->EndDictionary(); 1246 state->EndDictionary();
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
1321 all_tile_tasks_completed = false; 1331 all_tile_tasks_completed = false;
1322 did_notify_all_tile_tasks_completed = false; 1332 did_notify_all_tile_tasks_completed = false;
1323 } 1333 }
1324 1334
1325 TileManager::PrioritizedWorkToSchedule::PrioritizedWorkToSchedule() = default; 1335 TileManager::PrioritizedWorkToSchedule::PrioritizedWorkToSchedule() = default;
1326 TileManager::PrioritizedWorkToSchedule::PrioritizedWorkToSchedule( 1336 TileManager::PrioritizedWorkToSchedule::PrioritizedWorkToSchedule(
1327 PrioritizedWorkToSchedule&& other) = default; 1337 PrioritizedWorkToSchedule&& other) = default;
1328 TileManager::PrioritizedWorkToSchedule::~PrioritizedWorkToSchedule() = default; 1338 TileManager::PrioritizedWorkToSchedule::~PrioritizedWorkToSchedule() = default;
1329 1339
1330 } // namespace cc 1340 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698