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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "gpu/command_buffer/client/webgpu_implementation.h"
#include <dawn/wire/client/webgpu.h>
#include <algorithm>
#include <vector>
#include "base/notimplemented.h"
#include "base/numerics/checked_math.h"
#include "base/run_loop.h"
#include "base/trace_event/trace_event.h"
#include "gpu/command_buffer/client/dawn_client_memory_transfer_service.h"
#include "gpu/command_buffer/client/dawn_client_serializer.h"
#include "gpu/command_buffer/client/gpu_control.h"
#include "gpu/command_buffer/client/shared_memory_limits.h"
#define GPU_CLIENT_SINGLE_THREAD_CHECK()
namespace gpu {
namespace webgpu {
#if BUILDFLAG(USE_DAWN)
DawnWireServices::~DawnWireServices() {
wgpuDawnWireClientInstanceRelease(wgpu_instance_);
}
DawnWireServices::DawnWireServices(
WebGPUImplementation* webgpu_implementation,
WebGPUCmdHelper* helper,
MappedMemoryManager* mapped_memory,
std::unique_ptr<TransferBuffer> transfer_buffer)
: memory_transfer_service_(mapped_memory),
serializer_(webgpu_implementation,
helper,
&memory_transfer_service_,
std::move(transfer_buffer)),
wire_client_(dawn::wire::WireClientDescriptor{
&serializer_,
&memory_transfer_service_,
}),
wgpu_instance_(wire_client_.ReserveInstance().instance) {
DCHECK(wgpu_instance_);
}
WGPUInstance DawnWireServices::GetWGPUInstance() const {
return wgpu_instance_;
}
dawn::wire::WireClient* DawnWireServices::wire_client() {
return &wire_client_;
}
DawnClientSerializer* DawnWireServices::serializer() {
return &serializer_;
}
DawnClientMemoryTransferService* DawnWireServices::memory_transfer_service() {
return &memory_transfer_service_;
}
void DawnWireServices::Disconnect() {
disconnected_ = true;
wire_client_.Disconnect();
serializer_.Disconnect();
memory_transfer_service_.Disconnect();
}
bool DawnWireServices::IsDisconnected() const {
return disconnected_;
}
void DawnWireServices::FreeMappedResources(WebGPUCmdHelper* helper) {
memory_transfer_service_.FreeHandles(helper);
}
#endif
// Include the auto-generated part of this file. We split this because it means
// we can easily edit the non-auto generated parts right here in this file
// instead of having to edit some template or the code generator.
#include "gpu/command_buffer/client/webgpu_implementation_impl_autogen.h"
WebGPUImplementation::WebGPUImplementation(
WebGPUCmdHelper* helper,
TransferBufferInterface* transfer_buffer,
GpuControl* gpu_control)
: ImplementationBase(helper, transfer_buffer, gpu_control),
helper_(helper) {}
WebGPUImplementation::~WebGPUImplementation() {
LoseContext();
// Before destroying WebGPUImplementation, all mappable buffers
// must be destroyed first. This means that all shared memory mappings are
// detached. If they are not destroyed, MappedMemoryManager (member of
// base class ImplementationBase) will assert on destruction that some
// memory blocks are in use. Calling |FreeMappedResources| marks all
// blocks that are no longer in use as free.
#if BUILDFLAG(USE_DAWN)
if (dawn_wire_) {
dawn_wire_->FreeMappedResources(helper_);
}
#endif
// Wait for commands to finish before we continue destruction.
// WebGPUImplementation no longer owns the WebGPU transfer buffer, but still
// owns the GPU command buffer. We should not free shared memory that the
// GPU process is using.
helper_->Finish();
}
void WebGPUImplementation::LoseContext() {
lost_ = true;
#if BUILDFLAG(USE_DAWN)
if (dawn_wire_) {
dawn_wire_->Disconnect();
}
#endif
}
gpu::ContextResult WebGPUImplementation::Initialize(
const SharedMemoryLimits& limits) {
TRACE_EVENT0("gpu", "WebGPUImplementation::Initialize");
auto result = ImplementationBase::Initialize(limits);
if (result != gpu::ContextResult::kSuccess) {
return result;
}
std::unique_ptr<TransferBuffer> transfer_buffer =
std::make_unique<TransferBuffer>(helper_);
if (!transfer_buffer->Initialize(
limits.start_transfer_buffer_size,
/* start offset */ 0, limits.min_transfer_buffer_size,
limits.max_transfer_buffer_size, kAlignment)) {
return gpu::ContextResult::kFatalFailure;
}
#if BUILDFLAG(USE_DAWN)
dawn_wire_ = base::MakeRefCounted<DawnWireServices>(
this, helper_, mapped_memory_.get(), std::move(transfer_buffer));
#endif
return gpu::ContextResult::kSuccess;
}
// ContextSupport implementation.
void WebGPUImplementation::SetAggressivelyFreeResources(
bool aggressively_free_resources) {
NOTIMPLEMENTED();
}
uint64_t WebGPUImplementation::ShareGroupTracingGUID() const {
NOTIMPLEMENTED();
return 0;
}
void WebGPUImplementation::SetErrorMessageCallback(
base::RepeatingCallback<void(const char*, int32_t)> callback) {
NOTIMPLEMENTED();
}
bool WebGPUImplementation::ThreadSafeShallowLockDiscardableTexture(
uint32_t texture_id) {
NOTREACHED();
}
void WebGPUImplementation::CompleteLockDiscardableTexureOnContextThread(
uint32_t texture_id) {
NOTREACHED();
}
bool WebGPUImplementation::ThreadsafeDiscardableTextureIsDeletedForTracing(
uint32_t texture_id) {
NOTREACHED();
}
void* WebGPUImplementation::MapTransferCacheEntry(uint32_t serialized_size) {
NOTREACHED();
}
void WebGPUImplementation::UnmapAndCreateTransferCacheEntry(uint32_t type,
uint32_t id) {
NOTREACHED();
}
bool WebGPUImplementation::ThreadsafeLockTransferCacheEntry(uint32_t type,
uint32_t id) {
NOTREACHED();
}
void WebGPUImplementation::UnlockTransferCacheEntries(
const std::vector<std::pair<uint32_t, uint32_t>>& entries) {
NOTREACHED();
}
void WebGPUImplementation::DeleteTransferCacheEntry(uint32_t type,
uint32_t id) {
NOTREACHED();
}
unsigned int WebGPUImplementation::GetTransferBufferFreeSize() const {
NOTREACHED();
}
bool WebGPUImplementation::IsJpegDecodeAccelerationSupported() const {
NOTREACHED();
}
bool WebGPUImplementation::IsWebPDecodeAccelerationSupported() const {
NOTREACHED();
}
bool WebGPUImplementation::CanDecodeWithHardwareAcceleration(
const cc::ImageHeaderMetadata* image_metadata) const {
NOTREACHED();
}
// InterfaceBase implementation.
void WebGPUImplementation::GenSyncTokenCHROMIUM(GLbyte* sync_token) {
// Need to commit the commands to the GPU command buffer first for SyncToken
// to work.
#if BUILDFLAG(USE_DAWN)
dawn_wire_->serializer()->Commit();
#endif
ImplementationBase::GenSyncToken(sync_token);
}
void WebGPUImplementation::GenUnverifiedSyncTokenCHROMIUM(GLbyte* sync_token) {
// Need to commit the commands to the GPU command buffer first for SyncToken
// to work.
#if BUILDFLAG(USE_DAWN)
dawn_wire_->serializer()->Commit();
#endif
ImplementationBase::GenUnverifiedSyncToken(sync_token);
}
void WebGPUImplementation::VerifySyncTokensCHROMIUM(GLbyte** sync_tokens,
GLsizei count) {
ImplementationBase::VerifySyncTokens(sync_tokens, count);
}
void WebGPUImplementation::WaitSyncTokenCHROMIUM(const GLbyte* sync_token) {
// Need to commit the commands to the GPU command buffer first for SyncToken
// to work.
#if BUILDFLAG(USE_DAWN)
dawn_wire_->serializer()->Commit();
#endif
ImplementationBase::WaitSyncToken(sync_token);
}
void WebGPUImplementation::ShallowFlushCHROMIUM() {
FlushCommands();
}
bool WebGPUImplementation::HasGrContextSupport() const {
return true;
}
// ImplementationBase implementation.
void WebGPUImplementation::IssueShallowFlush() {
NOTIMPLEMENTED();
}
void WebGPUImplementation::SetGLError(GLenum error,
const char* function_name,
const char* msg) {
GPU_CLIENT_LOG("[" << GetLogPrefix() << "] Client Synthesized Error: "
<< gles2::GLES2Util::GetStringError(error) << ": "
<< function_name << ": " << msg);
NOTIMPLEMENTED();
}
// GpuControlClient implementation.
void WebGPUImplementation::OnGpuControlLostContext() {
LoseContext();
// This should never occur more than once.
DCHECK(!lost_context_callback_run_);
lost_context_callback_run_ = true;
if (!lost_context_callback_.is_null()) {
std::move(lost_context_callback_).Run();
}
}
void WebGPUImplementation::OnGpuControlLostContextMaybeReentrant() {
// If this function is called, we are guaranteed to also get a call
// to |OnGpuControlLostContext| when the callstack unwinds. Thus, this
// function only handles immediately setting state so that other operations
// which occur while the callstack is unwinding are aware that the context
// is lost.
lost_ = true;
}
void WebGPUImplementation::OnGpuControlErrorMessage(const char* message,
int32_t id) {
NOTIMPLEMENTED();
}
void WebGPUImplementation::OnGpuControlReturnData(
base::span<const uint8_t> data) {
if (lost_) {
return;
}
#if BUILDFLAG(USE_DAWN)
TRACE_EVENT1(TRACE_DISABLED_BY_DEFAULT("gpu.dawn"),
"WebGPUImplementation::OnGpuControlReturnData", "bytes",
data.size());
CHECK_GT(data.size(), sizeof(cmds::DawnReturnDataHeader));
const cmds::DawnReturnDataHeader& dawnReturnDataHeader =
*reinterpret_cast<const cmds::DawnReturnDataHeader*>(data.data());
switch (dawnReturnDataHeader.return_data_type) {
case DawnReturnDataType::kDawnCommands: {
CHECK_GE(data.size(), sizeof(cmds::DawnReturnCommandsInfo));
const cmds::DawnReturnCommandsInfo* dawn_return_commands_info =
reinterpret_cast<const cmds::DawnReturnCommandsInfo*>(data.data());
if (dawn_wire_->IsDisconnected()) {
break;
}
TRACE_EVENT_WITH_FLOW0(
TRACE_DISABLED_BY_DEFAULT("gpu.dawn"), "DawnReturnCommands",
dawn_return_commands_info->header.return_data_header.trace_id,
TRACE_EVENT_FLAG_FLOW_IN);
// TODO(enga): Instead of a CHECK, this could generate a device lost
// event on just that device. It doesn't seem worth doing right now
// since a failure here is likely not recoverable.
CHECK(dawn_wire_->wire_client()->HandleCommands(
reinterpret_cast<const char*>(
dawn_return_commands_info->deserialized_buffer),
data.size() -
offsetof(cmds::DawnReturnCommandsInfo, deserialized_buffer)));
} break;
default:
NOTREACHED();
}
#endif
}
void WebGPUImplementation::FlushCommands() {
#if BUILDFLAG(USE_DAWN)
dawn_wire_->serializer()->Commit();
helper_->Flush();
#endif
}
bool WebGPUImplementation::EnsureAwaitingFlush() {
#if BUILDFLAG(USE_DAWN)
// If there is already a flush waiting, we don't need to flush.
// We only want to ask for a flush on state transition from
// false -> true.
if (dawn_wire_->serializer()->AwaitingFlush()) {
return false;
}
// Set the state to waiting for flush.
dawn_wire_->serializer()->SetAwaitingFlush(true);
return true;
#else
return false;
#endif
}
void WebGPUImplementation::FlushAwaitingCommands() {
#if BUILDFLAG(USE_DAWN)
dawn_wire_->serializer()->Commit();
helper_->FlushLazy();
dawn_wire_->serializer()->SetAwaitingFlush(false);
#endif
}
scoped_refptr<APIChannel> WebGPUImplementation::GetAPIChannel() const {
#if BUILDFLAG(USE_DAWN)
return dawn_wire_.get();
#else
return nullptr;
#endif
}
ReservedBuffer WebGPUImplementation::ReserveBuffer(
WGPUDevice device,
const WGPUBufferDescriptor* optionalDesc) {
#if BUILDFLAG(USE_DAWN)
// Commit because we need to make sure messages that free a previously used
// buffer is seen first. ReserveBuffer may reuse an existing ID.
dawn_wire_->serializer()->Commit();
WGPUBufferDescriptor placeholderDesc;
if (optionalDesc == nullptr) {
placeholderDesc = {}; // Zero initialize.
optionalDesc = &placeholderDesc;
}
auto reserved =
dawn_wire_->wire_client()->ReserveBuffer(device, optionalDesc);
ReservedBuffer result;
result.buffer = reserved.buffer;
result.id = reserved.handle.id;
result.generation = reserved.handle.generation;
result.deviceId = reserved.deviceHandle.id;
result.deviceGeneration = reserved.deviceHandle.generation;
return result;
#else
return {};
#endif
}
ReservedTexture WebGPUImplementation::ReserveTexture(
WGPUDevice device,
const WGPUTextureDescriptor* optionalDesc) {
#if BUILDFLAG(USE_DAWN)
// Commit because we need to make sure messages that free a previously used
// texture are seen first. ReserveTexture may reuse an existing ID.
dawn_wire_->serializer()->Commit();
WGPUTextureDescriptor placeholderDesc;
if (optionalDesc == nullptr) {
placeholderDesc = {}; // Zero initialize.
optionalDesc = &placeholderDesc;
}
auto reserved =
dawn_wire_->wire_client()->ReserveTexture(device, optionalDesc);
ReservedTexture result;
result.texture = reserved.texture;
result.id = reserved.handle.id;
result.generation = reserved.handle.generation;
result.deviceId = reserved.deviceHandle.id;
result.deviceGeneration = reserved.deviceHandle.generation;
return result;
#else
NOTREACHED();
#endif
}
WGPUDevice WebGPUImplementation::DeprecatedEnsureDefaultDeviceSync() {
NOTIMPLEMENTED();
return nullptr;
}
void WebGPUImplementation::AssociateMailbox(
GLuint device_id,
GLuint device_generation,
GLuint texture_id,
GLuint texture_generation,
uint64_t usage,
uint64_t internal_usage,
const WGPUTextureFormat* view_formats,
GLuint view_format_count,
MailboxFlags flags,
const Mailbox& mailbox) {
#if BUILDFLAG(USE_DAWN)
// Commit previous Dawn commands as they may manipulate texture object IDs
// and need to be resolved prior to the AssociateMailbox command. Otherwise
// the service side might not know, for example that the previous texture
// using that ID has been released.
dawn_wire_->serializer()->Commit();
// The command buffer transfer data in 4-byte "entries". So the array of data
// we pass must have a byte-length that's a multiple of 4.
constexpr size_t kEntrySize = 4u;
static_assert(sizeof(mailbox.name) % kEntrySize == 0u);
static_assert(sizeof(WGPUTextureFormat) % kEntrySize == 0u);
size_t num_bytes =
sizeof(mailbox.name) + sizeof(WGPUTextureFormat) * view_format_count;
std::vector<char> immediate_data(num_bytes);
uint32_t num_entries = ComputeNumEntries(immediate_data.size());
memcpy(immediate_data.data(), mailbox.name, sizeof(mailbox.name));
memcpy(immediate_data.data() + sizeof(mailbox.name), view_formats,
sizeof(WGPUTextureFormat) * view_format_count);
helper_->AssociateMailboxImmediate(
device_id, device_generation, texture_id, texture_generation, usage,
internal_usage, flags, view_format_count, num_entries,
reinterpret_cast<GLuint*>(immediate_data.data()));
#endif
}
void WebGPUImplementation::AssociateMailboxForBuffer(GLuint device_id,
GLuint device_generation,
GLuint buffer_id,
GLuint buffer_generation,
uint64_t usage,
const Mailbox& mailbox) {
#if BUILDFLAG(USE_DAWN)
// Commit previous Dawn commands as they may manipulate buffer object IDs
// and need to be resolved prior to the AssociateMailboxForBuffer command.
// Otherwise the service side might not know, for example that the previous
// buffer using that ID has been released.
dawn_wire_->serializer()->Commit();
// The command buffer transfer data in 4-byte "entries". So the array of data
// we pass must have a byte-length that's a multiple of 4.
constexpr size_t kEntrySize = 4u;
static_assert(sizeof(mailbox.name) % kEntrySize == 0u);
helper_->AssociateMailboxForBufferImmediate(
device_id, device_generation, buffer_id, buffer_generation, usage,
reinterpret_cast<const GLuint*>(mailbox.name));
#endif
}
void WebGPUImplementation::DissociateMailbox(GLuint texture_id,
GLuint texture_generation) {
#if BUILDFLAG(USE_DAWN)
// Commit previous Dawn commands that might be rendering to the texture, prior
// to Dissociating the shared image from that texture.
dawn_wire_->serializer()->Commit();
helper_->DissociateMailbox(texture_id, texture_generation);
#endif
}
void WebGPUImplementation::DissociateMailboxForBuffer(
GLuint buffer_id,
GLuint buffer_generation) {
#if BUILDFLAG(USE_DAWN)
// Commit previous Dawn commands that might be rendering to the buffer, prior
// to Dissociating the shared image from that buffer.
dawn_wire_->serializer()->Commit();
helper_->DissociateMailboxForBuffer(buffer_id, buffer_generation);
#endif
}
void WebGPUImplementation::DissociateMailboxForPresent(
GLuint device_id,
GLuint device_generation,
GLuint texture_id,
GLuint texture_generation) {
#if BUILDFLAG(USE_DAWN)
// Commit previous Dawn commands that might be rendering to the texture, prior
// to Dissociating the shared image from that texture.
dawn_wire_->serializer()->Commit();
helper_->DissociateMailboxForPresent(device_id, device_generation, texture_id,
texture_generation);
#endif
}
void WebGPUImplementation::SetWebGPUExecutionContextToken(uint32_t type,
uint32_t high_high,
uint32_t high_low,
uint32_t low_high,
uint32_t low_low) {
#if BUILDFLAG(USE_DAWN)
helper_->SetWebGPUExecutionContextToken(type, high_high, high_low, low_high,
low_low);
#endif
}
} // namespace webgpu
} // namespace gpu
|