1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/viz/client/client_resource_provider.h"
#include <algorithm>
#include <utility>
#include "base/debug/stack_trace.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/metrics/histogram_functions.h"
#include "base/task/bind_post_task.h"
#include "base/trace_event/trace_event.h"
#include "build/build_config.h"
#include "components/viz/common/features.h"
#include "components/viz/common/gpu/raster_context_provider.h"
#include "components/viz/common/resources/returned_resource.h"
#include "gpu/GLES2/gl2extchromium.h"
#include "gpu/command_buffer/client/context_support.h"
#include "gpu/command_buffer/client/gles2_interface.h"
#include "gpu/command_buffer/client/raster_interface.h"
#include "gpu/command_buffer/common/capabilities.h"
namespace viz {
namespace {
void CustomUmaHistogramMemoryKB(const char* name, int sample) {
// Based on UmaHistogramMemoryKB, but with a starting bucket for under 1 MB.
// This gives granularity for smaller resources that are held around. Vs 0 KB
// representing an estimation error.
base::UmaHistogramCustomCounts(name, sample, 0, 500000, 50);
}
void ReportResourceSourceUsage(TransferableResource::ResourceSource source,
size_t usage) {
const size_t usage_in_kb = usage / 1024u;
switch (source) {
case TransferableResource::ResourceSource::kUnknown:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.Unknown", usage_in_kb);
break;
case TransferableResource::ResourceSource::kAR:
CustomUmaHistogramMemoryKB("Memory.Renderer.EvictedLockedResources.AR",
usage_in_kb);
break;
case TransferableResource::ResourceSource::kCanvas:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.Canvas", usage_in_kb);
break;
case TransferableResource::ResourceSource::kDrawingBuffer:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.DrawingBuffer", usage_in_kb);
break;
case TransferableResource::ResourceSource::kExoBuffer:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.ExoBuffer", usage_in_kb);
break;
case TransferableResource::ResourceSource::kHeadsUpDisplay:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.HeadsUpDisplay", usage_in_kb);
break;
case TransferableResource::ResourceSource::kImageLayerBridge:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.ImageLayerBridge",
usage_in_kb);
break;
case TransferableResource::ResourceSource::kPPBGraphics3D:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.PPBGraphics3D", usage_in_kb);
break;
case TransferableResource::ResourceSource::kPepperGraphics2D:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.PepperGraphics2D",
usage_in_kb);
break;
case TransferableResource::ResourceSource::kViewTransition:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.ViewTransition", usage_in_kb);
break;
case TransferableResource::ResourceSource::kStaleContent:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.StaleContent", usage_in_kb);
break;
case TransferableResource::ResourceSource::kTest:
CustomUmaHistogramMemoryKB("Memory.Renderer.EvictedLockedResources.Test",
usage_in_kb);
break;
case TransferableResource::ResourceSource::kTileRasterTask:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.TileRasterTask", usage_in_kb);
break;
case TransferableResource::ResourceSource::kUI:
CustomUmaHistogramMemoryKB("Memory.Renderer.EvictedLockedResources.UI",
usage_in_kb);
break;
case TransferableResource::ResourceSource::kVideo:
CustomUmaHistogramMemoryKB("Memory.Renderer.EvictedLockedResources.Video",
usage_in_kb);
break;
case TransferableResource::ResourceSource::kWebGPUSwapBuffer:
CustomUmaHistogramMemoryKB(
"Memory.Renderer.EvictedLockedResources.WebGPUSwapBuffer",
usage_in_kb);
break;
}
}
class ScopedBatchResourcesReleaseImpl
: public ClientResourceProvider::ScopedBatchResourcesRelease {
public:
using ScopedBatchResourcesRelease::ScopedBatchResourcesRelease;
explicit ScopedBatchResourcesReleaseImpl(
base::OnceClosure batch_release_callback);
};
ScopedBatchResourcesReleaseImpl::ScopedBatchResourcesReleaseImpl(
base::OnceClosure batch_release_callback)
: ScopedBatchResourcesRelease(std::move(batch_release_callback)) {}
} // namespace
struct ClientResourceProvider::ImportedResource {
TransferableResource resource;
ReleaseCallback impl_release_callback;
ReleaseCallback main_thread_release_callback;
int exported_count = 0;
bool marked_for_deletion = false;
gpu::SyncToken returned_sync_token;
bool returned_lost = false;
ResourceEvictedCallback evicted_callback;
#if DCHECK_IS_ON()
base::debug::StackTrace stack_trace;
#endif
ImportedResource(ResourceId id,
const TransferableResource& resource,
ReleaseCallback impl_release_callback,
ReleaseCallback main_thread_release_callback,
ResourceEvictedCallback evicted_callback)
: resource(resource),
impl_release_callback(std::move(impl_release_callback)),
main_thread_release_callback(std::move(main_thread_release_callback)),
// If the resource is immediately deleted, it returns the same SyncToken
// it came with. The client may need to wait on that before deleting the
// backing or reusing it.
returned_sync_token(resource.sync_token()),
evicted_callback(std::move(evicted_callback)) {
// We should never have no ReleaseCallback.
CHECK(this->impl_release_callback || this->main_thread_release_callback);
// Replace the |resource| id with the local id from this
// ClientResourceProvider.
this->resource.id = id;
}
~ImportedResource() = default;
ImportedResource(ImportedResource&&) = default;
ImportedResource& operator=(ImportedResource&&) = default;
void RunReleaseCallbacks() {
if (impl_release_callback) {
std::move(impl_release_callback).Run(returned_sync_token, returned_lost);
}
// We intend for `main_thread_release_callback` to be run on
// `main_tast_runner_`. This is done in
// `ClientResourceProvider::BatchMainReleaseCallbacks`, in response to
// resources being returned. However the client can also remove resources
// independently. Since we currently do not know when these removals would
// start/stop, we cannot batch them. Instead maintain previous behaviour
// of just calling these directly.
if (main_thread_release_callback) {
std::move(main_thread_release_callback)
.Run(returned_sync_token, returned_lost);
}
}
};
ClientResourceProvider::ScopedBatchResourcesRelease::
ScopedBatchResourcesRelease(
ClientResourceProvider::ScopedBatchResourcesRelease&& other) = default;
ClientResourceProvider::ScopedBatchResourcesRelease::
~ScopedBatchResourcesRelease() {
if (batch_release_callback_) {
std::move(batch_release_callback_).Run();
}
}
ClientResourceProvider::ScopedBatchResourcesRelease::
ScopedBatchResourcesRelease(
base::OnceCallback<void()> batch_release_callback)
: batch_release_callback_(std::move(batch_release_callback)) {}
ClientResourceProvider::ClientResourceProvider() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
}
ClientResourceProvider::ClientResourceProvider(
scoped_refptr<base::SequencedTaskRunner> main_task_runner,
scoped_refptr<base::SequencedTaskRunner> impl_task_runner,
ResourceFlushCallback resource_flush_callback)
: main_task_runner_(main_task_runner),
impl_task_runner_(impl_task_runner),
resource_flush_callback_(std::move(resource_flush_callback)),
threaded_release_callbacks_supported_(
base::FeatureList::IsEnabled(
features::kBatchMainThreadReleaseCallbacks) &&
main_task_runner_ && impl_task_runner_ &&
main_task_runner_ != impl_task_runner_ && resource_flush_callback_) {}
ClientResourceProvider::~ClientResourceProvider() {
// If this fails, there are outstanding resources exported that should be
// lost and returned by calling ShutdownAndReleaseAllResources(), or there
// are resources that were imported without being removed by
// RemoveImportedResource(). In either case, calling
// ShutdownAndReleaseAllResources() will help, as it will report which
// resources were imported without being removed as well.
DCHECK(imported_resources_.empty());
// It is possible that we were deleted while a `ScopedBatchResourcesRelease`
// was still being held. This ensures the callbacks are ran.
BatchResourceRelease();
}
gpu::SyncToken ClientResourceProvider::GenerateSyncTokenHelper(
gpu::raster::RasterInterface* ri) {
DCHECK(ri);
gpu::SyncToken sync_token;
ri->GenUnverifiedSyncTokenCHROMIUM(sync_token.GetData());
DCHECK(sync_token.HasData() ||
ri->GetGraphicsResetStatusKHR() != GL_NO_ERROR);
return sync_token;
}
void ClientResourceProvider::PrepareSendToParent(
const std::vector<ResourceId>& export_ids,
std::vector<TransferableResource>* list,
RasterContextProvider* context_provider) {
PrepareSendToParentInternal(
export_ids, list,
base::BindOnce(
[](scoped_refptr<RasterContextProvider> context_provider,
std::vector<GLbyte*>* tokens) {
context_provider->RasterInterface()->VerifySyncTokensCHROMIUM(
tokens->data(), tokens->size());
},
base::WrapRefCounted(context_provider)));
}
void ClientResourceProvider::PrepareSendToParentInternal(
const std::vector<ResourceId>& export_ids,
std::vector<TransferableResource>* list,
base::OnceCallback<void(std::vector<GLbyte*>* tokens)> verify_sync_tokens) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// This function goes through the array multiple times, store the resources
// as pointers so we don't have to look up the resource id multiple times.
// Make sure the maps do not change while these vectors are alive or they
// will become invalid.
std::vector<ImportedResource*> imports;
imports.reserve(export_ids.size());
for (const ResourceId id : export_ids) {
auto it = imported_resources_.find(id);
CHECK(it != imported_resources_.end());
imports.push_back(&it->second);
}
// Lazily create any mailboxes and verify all unverified sync tokens.
std::vector<GLbyte*> unverified_sync_tokens;
for (ImportedResource* imported : imports) {
if (!imported->resource.is_software &&
!imported->resource.sync_token().verified_flush()) {
unverified_sync_tokens.push_back(
imported->resource.mutable_sync_token().GetData());
}
}
if (!unverified_sync_tokens.empty()) {
DCHECK(verify_sync_tokens);
std::move(verify_sync_tokens).Run(&unverified_sync_tokens);
}
list->reserve(list->size() + imports.size());
for (ImportedResource* imported : imports) {
list->push_back(imported->resource);
imported->exported_count++;
}
}
void ClientResourceProvider::ReceiveReturnsFromParent(
std::vector<ReturnedResource> resources) {
TRACE_EVENT0("viz", __PRETTY_FUNCTION__);
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// |imported_resources_| is a set sorted by id, so if we sort the incoming
// |resources| list by id also, we can walk through both structures in order,
// replacing things to be removed from imported_resources_ with things that
// we want to keep, making the removal of all items O(N+MlogM) instead of
// O(N*M). This algorithm is modelled after std::remove_if() but with a
// parallel walk through |resources| instead of an O(logM) lookup into
// |resources| for each step.
std::sort(resources.begin(), resources.end(),
[](const ReturnedResource& a, const ReturnedResource& b) {
return a.id < b.id;
});
auto returned_it = resources.begin();
auto returned_end = resources.end();
auto imported_keep_end_it = imported_resources_.begin();
auto imported_compare_it = imported_resources_.begin();
auto imported_end = imported_resources_.end();
std::vector<base::OnceClosure> impl_release_callbacks;
impl_release_callbacks.reserve(resources.size());
std::vector<base::OnceClosure> main_impl_release_callbacks;
main_impl_release_callbacks.reserve(resources.size());
while (imported_compare_it != imported_end) {
if (returned_it == returned_end) {
// Nothing else to remove from |imported_resources_|.
if (imported_keep_end_it == imported_compare_it) {
// We didn't remove anything, so we're done.
break;
}
// If something was removed, we need to shift everything into the empty
// space that was made.
*imported_keep_end_it = std::move(*imported_compare_it);
++imported_keep_end_it;
++imported_compare_it;
continue;
}
const ResourceId returned_resource_id = returned_it->id;
const ResourceId imported_resource_id = imported_compare_it->first;
if (returned_resource_id != imported_resource_id) {
// They're both sorted, and everything being returned should already
// be in the imported list. So we should be able to walk through the
// resources list in order, and find each id in both sets when present.
// That means if it's not matching, we should be above it in the sorted
// order of the |imported_resources_|, allowing us to get to it by
// continuing to traverse |imported_resources_|.
DCHECK_GT(returned_resource_id, imported_resource_id);
// This means we want to keep the resource at |imported_compare_it|. So go
// to the next. If we removed anything previously and made empty space,
// fill it as we move.
if (imported_keep_end_it != imported_compare_it)
*imported_keep_end_it = std::move(*imported_compare_it);
++imported_keep_end_it;
++imported_compare_it;
continue;
}
const ReturnedResource& returned = *returned_it;
ImportedResource& imported = imported_compare_it->second;
DCHECK_GE(imported.exported_count, returned.count);
imported.exported_count -= returned.count;
imported.returned_lost |= returned.lost;
if (imported.exported_count) {
// Can't remove the imported yet so go to the next, looking for the next
// returned resource.
++returned_it;
// The same ResourceId may appear multiple times (in a row) in the
// returned set. In that case, we do not want to increment the iterators
// in |imported_resources_| yet. So we don't increment them here, and let
// the next iteration of the loop do so.
continue;
}
// Save the sync token only when the exported count is going to 0. Or IOW
// drop all by the last returned sync token.
if (returned.sync_token.HasData()) {
imported.returned_sync_token = returned.sync_token;
}
if (!imported.marked_for_deletion) {
// Not going to remove the imported yet so go to the next, looking for the
// next returned resource.
++returned_it;
// If we removed anything previously and made empty space, fill it as we
// move.
if (imported_keep_end_it != imported_compare_it)
*imported_keep_end_it = std::move(*imported_compare_it);
++imported_keep_end_it;
++imported_compare_it;
continue;
}
if (imported.main_thread_release_callback) {
main_impl_release_callbacks.push_back(
base::BindOnce(std::move(imported.main_thread_release_callback),
imported.returned_sync_token, imported.returned_lost));
}
if (imported.impl_release_callback) {
impl_release_callbacks.push_back(
base::BindOnce(std::move(imported.impl_release_callback),
imported.returned_sync_token, imported.returned_lost));
}
// We don't want to keep this resource, so we leave |imported_keep_end_it|
// pointing to it (since it points past the end of what we're keeping). We
// do move |imported_compare_it| in order to move on to the next resource.
++imported_compare_it;
// The imported iterator is pointing at the next element already, so no need
// to increment it, and we can move on to looking for the next returned
// resource.
++returned_it;
}
// Drop anything that was moved after the |imported_end| iterator in a single
// O(N) operation.
if (imported_keep_end_it != imported_compare_it)
imported_resources_.erase(imported_keep_end_it, imported_resources_.end());
for (auto& cb : impl_release_callbacks) {
std::move(cb).Run();
}
if (!main_impl_release_callbacks.empty()) {
BatchMainReleaseCallbacks(std::move(main_impl_release_callbacks));
}
}
ResourceId ClientResourceProvider::ImportResource(
const TransferableResource& resource,
ReleaseCallback impl_release_callback,
ReleaseCallback main_thread_release_callback,
ResourceEvictedCallback evicted_callback) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// Clients are not allowed to import any empty resource.
CHECK(!resource.is_empty());
ResourceId id = id_generator_.GenerateNextId();
auto result = imported_resources_.emplace(
id, ImportedResource(id, resource, std::move(impl_release_callback),
std::move(main_thread_release_callback),
std::move(evicted_callback)));
CHECK(result.second); // If false, the id was already in the map.
return id;
}
void ClientResourceProvider::RemoveImportedResource(ResourceId id) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
auto it = imported_resources_.find(id);
CHECK(it != imported_resources_.end());
ImportedResource& imported = it->second;
imported.marked_for_deletion = true;
// We clear the callback here, as we will hold onto `imported` until it has
// been returned. Which could occur after the lifetime of the importer.
imported.evicted_callback = ResourceEvictedCallback();
if (imported.exported_count == 0) {
TakeOrRunResourceReleases(batch_release_callbacks_, imported);
imported_resources_.erase(it);
}
}
void ClientResourceProvider::ReleaseAllExportedResources(bool lose) {
const bool batch =
base::FeatureList::IsEnabled(features::kBatchResourceRelease);
if (batch) {
batch_main_release_callbacks_.reserve(imported_resources_.size());
}
auto release_and_remove =
[lose, batch, this](std::pair<ResourceId, ImportedResource>& pair) {
ImportedResource& imported = pair.second;
if (!imported.exported_count) {
// Not exported, not up for consideration to be returned here.
return false;
}
imported.exported_count = 0;
imported.returned_lost |= lose;
if (!imported.marked_for_deletion) {
// Was exported, but not removed by the client, so don't return it
// yet.
return false;
}
TakeOrRunResourceReleases(batch, imported);
// Was exported and removed by the client, so return it now.
return true;
};
// This will run |release_and_remove| on each element of |imported_resources_|
// and drop any resources from the set that it requests.
base::EraseIf(imported_resources_, release_and_remove);
BatchResourceRelease();
}
void ClientResourceProvider::ShutdownAndReleaseAllResources() {
const bool batch =
base::FeatureList::IsEnabled(features::kBatchResourceRelease);
if (batch) {
batch_main_release_callbacks_.reserve(imported_resources_.size());
}
for (auto& pair : imported_resources_) {
ImportedResource& imported = pair.second;
#if DCHECK_IS_ON()
// If this is false, then the resource has not been removed via
// RemoveImportedResource(), and all resources should be removed before
// we resort to marking resources as lost during shutdown.
DCHECK(imported.marked_for_deletion)
<< "id: " << pair.first << " from:\n"
<< imported.stack_trace.ToString() << "===";
DCHECK(imported.exported_count) << "id: " << pair.first << " from:\n"
<< imported.stack_trace.ToString() << "===";
#endif
imported.returned_lost = true;
TakeOrRunResourceReleases(batch, imported);
}
imported_resources_.clear();
BatchResourceRelease();
}
void ClientResourceProvider::ValidateResource(ResourceId id) const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(id);
DCHECK(imported_resources_.find(id) != imported_resources_.end());
}
bool ClientResourceProvider::InUseByConsumer(ResourceId id) {
auto it = imported_resources_.find(id);
CHECK(it != imported_resources_.end());
ImportedResource& imported = it->second;
return imported.exported_count > 0 || imported.returned_lost;
}
void ClientResourceProvider::SetEvicted(bool evicted) {
if (evicted_ == evicted) {
return;
}
evicted_ = evicted;
HandleEviction();
}
void ClientResourceProvider::SetVisible(bool visible) {
if (visible_ == visible) {
return;
}
visible_ = visible;
HandleEviction();
}
ClientResourceProvider::ScopedBatchResourcesRelease
ClientResourceProvider::CreateScopedBatchResourcesRelease() {
// Typically `batch_release_callbacks_` will remain `true` until the callback
// `BatchResourceRelease` is called.
//
// However other internal batching can lead to this being `false` as bot
// `ReleaseAllExportedResources` and `ShutdownAndReleaseAllResources`.
batch_release_callbacks_ =
base::FeatureList::IsEnabled(features::kBatchResourceRelease);
return ScopedBatchResourcesReleaseImpl(
base::BindOnce(&ClientResourceProvider::BatchResourceRelease,
weak_factory_.GetWeakPtr()));
}
void ClientResourceProvider::HandleEviction() {
// The eviction and visibility change messages are racy. The Renderer
// Main-thread can be slow enough that we are still considered visible when
// the eviction signal is received. We do not count the locked resources
// solely when evicted. Instead we await the visibility change, as the Main
// thread may be in the process of unlocking resources, and the visibility
// change itself will attempt to free more resources.
if (!evicted_ || visible_) {
return;
}
int locked = 0;
size_t total_mem = 0u;
base::flat_map<TransferableResource::ResourceSource, size_t> mem_per_source;
std::vector<ResourceId> ids_to_unlock;
for (auto& [id, imported] : imported_resources_) {
if (!imported.marked_for_deletion) {
++locked;
auto resource_source = imported.resource.resource_source;
size_t resource_mem =
imported.resource.format.EstimatedSizeInBytes(imported.resource.size);
total_mem += resource_mem;
mem_per_source[resource_source] += resource_mem;
if (!base::FeatureList::IsEnabled(features::kEvictionUnlocksResources) ||
!imported.evicted_callback) {
continue;
}
ids_to_unlock.push_back(id);
}
}
for (const auto id : ids_to_unlock) {
auto imported = imported_resources_.find(id);
if (imported == imported_resources_.end()) {
continue;
}
std::move(imported->second.evicted_callback).Run();
}
// Only report when there are locked resources. Evictions where all resources
// can be released are not interesting
if (!locked) {
return;
}
size_t total_mem_in_kb = total_mem / 1024u;
CustomUmaHistogramMemoryKB("Memory.Renderer.EvictedLockedResources.Total",
total_mem_in_kb);
for (auto& [source, size] : mem_per_source) {
if (size) {
ReportResourceSourceUsage(source, size);
}
}
}
void ClientResourceProvider::BatchMainReleaseCallbacks(
std::vector<base::OnceClosure> release_callbacks) {
if (threaded_release_callbacks_supported_) {
main_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(
[](std::vector<base::OnceClosure> release_callbacks,
scoped_refptr<base::SequencedTaskRunner> impl_task_runner,
base::OnceClosure completed_callback) {
for (auto& cb : release_callbacks) {
std::move(cb).Run();
}
std::move(completed_callback).Run();
},
std::move(release_callbacks), impl_task_runner_,
base::BindPostTask(impl_task_runner_, resource_flush_callback_)));
} else {
for (auto& cb : release_callbacks) {
std::move(cb).Run();
}
}
}
void ClientResourceProvider::BatchResourceRelease() {
batch_release_callbacks_ = false;
if (!batch_main_release_callbacks_.empty()) {
BatchMainReleaseCallbacks(std::move(batch_main_release_callbacks_));
}
batch_main_release_callbacks_.clear();
}
void ClientResourceProvider::TakeOrRunResourceReleases(
bool batch,
ImportedResource& imported) {
if (batch) {
if (imported.impl_release_callback) {
std::move(imported.impl_release_callback)
.Run(imported.returned_sync_token, imported.returned_lost);
}
if (imported.main_thread_release_callback) {
batch_main_release_callbacks_.push_back(
base::BindOnce(std::move(imported.main_thread_release_callback),
imported.returned_sync_token, imported.returned_lost));
}
} else {
imported.RunReleaseCallbacks();
}
}
size_t ClientResourceProvider::num_resources_for_testing() const {
return imported_resources_.size();
}
} // namespace viz
|