2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2017 The Dawn Authors
|
2017-06-05 21:08:55 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2018-07-24 14:42:33 +00:00
|
|
|
#ifndef DAWNNATIVE_D3D12_DEVICED3D12_H_
|
|
|
|
#define DAWNNATIVE_D3D12_DEVICED3D12_H_
|
2017-06-05 21:08:55 +00:00
|
|
|
|
2018-07-25 15:03:23 +00:00
|
|
|
#include "dawn_native/dawn_platform.h"
|
2017-06-05 21:08:55 +00:00
|
|
|
|
2020-04-10 18:43:22 +00:00
|
|
|
#include "common/Constants.h"
|
2018-03-02 16:07:07 +00:00
|
|
|
#include "common/SerialQueue.h"
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/Device.h"
|
2019-10-10 18:06:58 +00:00
|
|
|
#include "dawn_native/d3d12/CommandRecordingContext.h"
|
2019-11-01 18:19:01 +00:00
|
|
|
#include "dawn_native/d3d12/D3D12Info.h"
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/d3d12/Forward.h"
|
2019-10-09 16:50:42 +00:00
|
|
|
#include "dawn_native/d3d12/ResourceHeapAllocationD3D12.h"
|
2017-06-05 21:13:58 +00:00
|
|
|
|
2018-09-06 13:26:48 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
namespace dawn_native { namespace d3d12 {
|
2017-06-05 21:08:55 +00:00
|
|
|
|
2017-06-16 19:23:10 +00:00
|
|
|
class CommandAllocatorManager;
|
2017-06-16 18:26:26 +00:00
|
|
|
class DescriptorHeapAllocator;
|
2018-08-30 12:20:28 +00:00
|
|
|
class PlatformFunctions;
|
2020-03-17 13:47:57 +00:00
|
|
|
class ResidencyManager;
|
2020-04-10 18:43:22 +00:00
|
|
|
class ResourceAllocatorManager;
|
2020-05-18 23:25:31 +00:00
|
|
|
class SamplerHeapCache;
|
2020-04-10 18:43:22 +00:00
|
|
|
class ShaderVisibleDescriptorAllocator;
|
|
|
|
class StagingDescriptorAllocator;
|
2017-06-16 19:23:10 +00:00
|
|
|
|
2019-10-01 02:30:32 +00:00
|
|
|
#define ASSERT_SUCCESS(hr) \
|
2020-04-11 03:22:33 +00:00
|
|
|
do { \
|
2019-10-01 02:30:32 +00:00
|
|
|
HRESULT succeeded = hr; \
|
|
|
|
ASSERT(SUCCEEDED(succeeded)); \
|
2020-04-11 03:22:33 +00:00
|
|
|
} while (0)
|
2017-06-05 21:13:58 +00:00
|
|
|
|
2017-06-05 21:08:55 +00:00
|
|
|
// Definition of backend types
|
|
|
|
class Device : public DeviceBase {
|
2017-11-24 19:04:22 +00:00
|
|
|
public:
|
2020-04-07 15:10:17 +00:00
|
|
|
static ResultOrError<Device*> Create(Adapter* adapter, const DeviceDescriptor* descriptor);
|
2020-04-08 16:04:32 +00:00
|
|
|
~Device() override;
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-06-12 18:54:57 +00:00
|
|
|
MaybeError Initialize();
|
|
|
|
|
2019-11-13 17:00:37 +00:00
|
|
|
CommandBufferBase* CreateCommandBuffer(CommandEncoder* encoder,
|
2019-07-10 20:43:13 +00:00
|
|
|
const CommandBufferDescriptor* descriptor) override;
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-10-07 15:32:10 +00:00
|
|
|
MaybeError TickImpl() override;
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2020-04-16 18:59:53 +00:00
|
|
|
ID3D12Device* GetD3D12Device() const;
|
2019-01-30 16:07:48 +00:00
|
|
|
ComPtr<ID3D12CommandQueue> GetCommandQueue() const;
|
2020-03-30 20:31:45 +00:00
|
|
|
ID3D12SharingContract* GetSharingContract() const;
|
2018-09-19 00:32:52 +00:00
|
|
|
|
2019-06-10 20:56:27 +00:00
|
|
|
ComPtr<ID3D12CommandSignature> GetDispatchIndirectSignature() const;
|
|
|
|
ComPtr<ID3D12CommandSignature> GetDrawIndirectSignature() const;
|
|
|
|
ComPtr<ID3D12CommandSignature> GetDrawIndexedIndirectSignature() const;
|
|
|
|
|
2019-10-10 18:06:58 +00:00
|
|
|
CommandAllocatorManager* GetCommandAllocatorManager() const;
|
2020-03-17 13:47:57 +00:00
|
|
|
ResidencyManager* GetResidencyManager() const;
|
2019-01-30 16:07:48 +00:00
|
|
|
|
|
|
|
const PlatformFunctions* GetFunctions() const;
|
|
|
|
ComPtr<IDXGIFactory4> GetFactory() const;
|
2020-05-18 23:56:11 +00:00
|
|
|
ResultOrError<IDxcLibrary*> GetOrCreateDxcLibrary() const;
|
|
|
|
ResultOrError<IDxcCompiler*> GetOrCreateDxcCompiler() const;
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-10-10 18:06:58 +00:00
|
|
|
ResultOrError<CommandRecordingContext*> GetPendingCommandContext();
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-11-01 18:19:01 +00:00
|
|
|
const D3D12DeviceInfo& GetDeviceInfo() const;
|
|
|
|
|
2019-10-16 09:26:54 +00:00
|
|
|
MaybeError NextSerial();
|
|
|
|
MaybeError WaitForSerial(Serial serial);
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2018-03-02 16:07:07 +00:00
|
|
|
void ReferenceUntilUnused(ComPtr<IUnknown> object);
|
|
|
|
|
2019-10-18 00:37:42 +00:00
|
|
|
MaybeError ExecutePendingCommandContext();
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-01-29 00:10:07 +00:00
|
|
|
ResultOrError<std::unique_ptr<StagingBufferBase>> CreateStagingBuffer(size_t size) override;
|
|
|
|
MaybeError CopyFromStagingToBuffer(StagingBufferBase* source,
|
2019-04-05 20:51:29 +00:00
|
|
|
uint64_t sourceOffset,
|
2019-01-29 00:10:07 +00:00
|
|
|
BufferBase* destination,
|
2019-04-05 20:51:29 +00:00
|
|
|
uint64_t destinationOffset,
|
|
|
|
uint64_t size) override;
|
2019-01-29 00:10:07 +00:00
|
|
|
|
2020-07-06 08:24:30 +00:00
|
|
|
void CopyFromStagingToBufferImpl(CommandRecordingContext* commandContext,
|
|
|
|
StagingBufferBase* source,
|
|
|
|
uint64_t sourceOffset,
|
|
|
|
BufferBase* destination,
|
|
|
|
uint64_t destinationOffset,
|
|
|
|
uint64_t size);
|
|
|
|
|
2019-10-09 16:50:42 +00:00
|
|
|
ResultOrError<ResourceHeapAllocation> AllocateMemory(
|
2019-08-27 23:36:26 +00:00
|
|
|
D3D12_HEAP_TYPE heapType,
|
|
|
|
const D3D12_RESOURCE_DESC& resourceDescriptor,
|
2019-10-17 17:25:28 +00:00
|
|
|
D3D12_RESOURCE_STATES initialUsage);
|
2019-08-27 23:36:26 +00:00
|
|
|
|
2019-10-09 16:50:42 +00:00
|
|
|
void DeallocateMemory(ResourceHeapAllocation& allocation);
|
2019-08-27 23:36:26 +00:00
|
|
|
|
2020-04-30 23:19:16 +00:00
|
|
|
ShaderVisibleDescriptorAllocator* GetViewShaderVisibleDescriptorAllocator() const;
|
|
|
|
ShaderVisibleDescriptorAllocator* GetSamplerShaderVisibleDescriptorAllocator() const;
|
2020-02-27 01:14:22 +00:00
|
|
|
|
2020-04-10 18:43:22 +00:00
|
|
|
// Returns nullptr when descriptor count is zero.
|
|
|
|
StagingDescriptorAllocator* GetViewStagingDescriptorAllocator(
|
|
|
|
uint32_t descriptorCount) const;
|
|
|
|
|
|
|
|
StagingDescriptorAllocator* GetSamplerStagingDescriptorAllocator(
|
|
|
|
uint32_t descriptorCount) const;
|
|
|
|
|
2020-05-18 23:25:31 +00:00
|
|
|
SamplerHeapCache* GetSamplerHeapCache();
|
|
|
|
|
2020-04-22 23:57:30 +00:00
|
|
|
StagingDescriptorAllocator* GetRenderTargetViewAllocator() const;
|
|
|
|
|
|
|
|
StagingDescriptorAllocator* GetDepthStencilViewAllocator() const;
|
|
|
|
|
2020-04-23 19:47:12 +00:00
|
|
|
Ref<TextureBase> WrapSharedHandle(const ExternalImageDescriptor* descriptor,
|
|
|
|
HANDLE sharedHandle,
|
|
|
|
uint64_t acquireMutexKey,
|
|
|
|
bool isSwapChainTexture);
|
2019-10-18 00:37:42 +00:00
|
|
|
ResultOrError<ComPtr<IDXGIKeyedMutex>> CreateKeyedMutexForTexture(
|
|
|
|
ID3D12Resource* d3d12Resource);
|
|
|
|
void ReleaseKeyedMutexForTexture(ComPtr<IDXGIKeyedMutex> dxgiKeyedMutex);
|
2019-09-02 19:19:34 +00:00
|
|
|
|
2019-11-01 18:19:01 +00:00
|
|
|
void InitTogglesFromDriver();
|
|
|
|
|
2017-11-24 19:04:22 +00:00
|
|
|
private:
|
2020-04-07 15:10:17 +00:00
|
|
|
using DeviceBase::DeviceBase;
|
|
|
|
|
2018-12-05 07:18:30 +00:00
|
|
|
ResultOrError<BindGroupBase*> CreateBindGroupImpl(
|
|
|
|
const BindGroupDescriptor* descriptor) override;
|
2018-07-10 19:23:50 +00:00
|
|
|
ResultOrError<BindGroupLayoutBase*> CreateBindGroupLayoutImpl(
|
2018-07-25 15:03:23 +00:00
|
|
|
const BindGroupLayoutDescriptor* descriptor) override;
|
2020-07-08 19:45:40 +00:00
|
|
|
ResultOrError<Ref<BufferBase>> CreateBufferImpl(
|
|
|
|
const BufferDescriptor* descriptor) override;
|
2018-08-27 21:12:56 +00:00
|
|
|
ResultOrError<ComputePipelineBase*> CreateComputePipelineImpl(
|
|
|
|
const ComputePipelineDescriptor* descriptor) override;
|
2018-06-27 23:21:39 +00:00
|
|
|
ResultOrError<PipelineLayoutBase*> CreatePipelineLayoutImpl(
|
2018-07-25 15:03:23 +00:00
|
|
|
const PipelineLayoutDescriptor* descriptor) override;
|
2020-06-11 00:34:14 +00:00
|
|
|
ResultOrError<QuerySetBase*> CreateQuerySetImpl(
|
|
|
|
const QuerySetDescriptor* descriptor) override;
|
2018-12-10 19:47:22 +00:00
|
|
|
ResultOrError<RenderPipelineBase*> CreateRenderPipelineImpl(
|
|
|
|
const RenderPipelineDescriptor* descriptor) override;
|
2018-07-25 15:03:23 +00:00
|
|
|
ResultOrError<SamplerBase*> CreateSamplerImpl(const SamplerDescriptor* descriptor) override;
|
2018-08-20 15:01:20 +00:00
|
|
|
ResultOrError<ShaderModuleBase*> CreateShaderModuleImpl(
|
|
|
|
const ShaderModuleDescriptor* descriptor) override;
|
2019-02-15 11:15:58 +00:00
|
|
|
ResultOrError<SwapChainBase*> CreateSwapChainImpl(
|
|
|
|
const SwapChainDescriptor* descriptor) override;
|
2020-01-25 10:05:40 +00:00
|
|
|
ResultOrError<NewSwapChainBase*> CreateSwapChainImpl(
|
2020-01-23 17:20:38 +00:00
|
|
|
Surface* surface,
|
2020-01-25 10:05:40 +00:00
|
|
|
NewSwapChainBase* previousSwapChain,
|
2020-01-23 17:20:38 +00:00
|
|
|
const SwapChainDescriptor* descriptor) override;
|
2020-04-23 19:47:12 +00:00
|
|
|
ResultOrError<Ref<TextureBase>> CreateTextureImpl(
|
|
|
|
const TextureDescriptor* descriptor) override;
|
2018-10-12 08:32:58 +00:00
|
|
|
ResultOrError<TextureViewBase*> CreateTextureViewImpl(
|
|
|
|
TextureBase* texture,
|
|
|
|
const TextureViewDescriptor* descriptor) override;
|
2018-09-06 13:26:48 +00:00
|
|
|
|
2020-04-07 16:19:47 +00:00
|
|
|
void ShutDownImpl() override;
|
2019-12-16 23:36:16 +00:00
|
|
|
MaybeError WaitForIdleForDestruction() override;
|
|
|
|
|
2020-05-29 08:29:58 +00:00
|
|
|
MaybeError CheckDebugLayerAndGenerateErrors();
|
|
|
|
|
2017-11-24 19:04:22 +00:00
|
|
|
ComPtr<ID3D12Fence> mFence;
|
2019-08-23 22:41:48 +00:00
|
|
|
HANDLE mFenceEvent = nullptr;
|
2020-05-07 21:52:54 +00:00
|
|
|
Serial CheckAndUpdateCompletedSerials() override;
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-06-12 18:54:57 +00:00
|
|
|
ComPtr<ID3D12Device> mD3d12Device; // Device is owned by adapter and will not be outlived.
|
2017-11-24 19:04:22 +00:00
|
|
|
ComPtr<ID3D12CommandQueue> mCommandQueue;
|
2020-03-30 20:31:45 +00:00
|
|
|
ComPtr<ID3D12SharingContract> mD3d12SharingContract;
|
2019-10-21 15:13:29 +00:00
|
|
|
|
|
|
|
// 11on12 device and device context corresponding to mCommandQueue
|
|
|
|
ComPtr<ID3D11On12Device> mD3d11On12Device;
|
|
|
|
ComPtr<ID3D11DeviceContext2> mD3d11On12DeviceContext;
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-06-10 20:56:27 +00:00
|
|
|
ComPtr<ID3D12CommandSignature> mDispatchIndirectSignature;
|
|
|
|
ComPtr<ID3D12CommandSignature> mDrawIndirectSignature;
|
|
|
|
ComPtr<ID3D12CommandSignature> mDrawIndexedIndirectSignature;
|
|
|
|
|
2019-10-10 18:06:58 +00:00
|
|
|
CommandRecordingContext mPendingCommands;
|
2018-03-02 16:07:07 +00:00
|
|
|
|
|
|
|
SerialQueue<ComPtr<IUnknown>> mUsedComObjectRefs;
|
2018-09-06 13:26:48 +00:00
|
|
|
|
|
|
|
std::unique_ptr<CommandAllocatorManager> mCommandAllocatorManager;
|
2019-10-02 21:45:09 +00:00
|
|
|
std::unique_ptr<ResourceAllocatorManager> mResourceAllocatorManager;
|
2020-03-17 13:47:57 +00:00
|
|
|
std::unique_ptr<ResidencyManager> mResidencyManager;
|
2020-04-10 18:43:22 +00:00
|
|
|
|
|
|
|
// Index corresponds to the descriptor count in the range [0, kMaxBindingsPerGroup].
|
|
|
|
static constexpr uint32_t kNumOfStagingDescriptorAllocators = kMaxBindingsPerGroup + 1;
|
|
|
|
|
|
|
|
std::array<std::unique_ptr<StagingDescriptorAllocator>, kNumOfStagingDescriptorAllocators>
|
|
|
|
mViewAllocators;
|
|
|
|
|
|
|
|
std::array<std::unique_ptr<StagingDescriptorAllocator>, kNumOfStagingDescriptorAllocators>
|
|
|
|
mSamplerAllocators;
|
2020-04-22 23:57:30 +00:00
|
|
|
|
|
|
|
std::unique_ptr<StagingDescriptorAllocator> mRenderTargetViewAllocator;
|
|
|
|
|
|
|
|
std::unique_ptr<StagingDescriptorAllocator> mDepthStencilViewAllocator;
|
2020-04-30 23:19:16 +00:00
|
|
|
|
|
|
|
std::unique_ptr<ShaderVisibleDescriptorAllocator> mViewShaderVisibleDescriptorAllocator;
|
|
|
|
|
|
|
|
std::unique_ptr<ShaderVisibleDescriptorAllocator> mSamplerShaderVisibleDescriptorAllocator;
|
2020-05-18 23:25:31 +00:00
|
|
|
|
|
|
|
// Sampler cache needs to be destroyed before the CPU sampler allocator to ensure the final
|
|
|
|
// release is called.
|
|
|
|
std::unique_ptr<SamplerHeapCache> mSamplerHeapCache;
|
2017-06-05 21:08:55 +00:00
|
|
|
};
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
}} // namespace dawn_native::d3d12
|
2017-06-05 21:08:55 +00:00
|
|
|
|
2018-07-24 14:42:33 +00:00
|
|
|
#endif // DAWNNATIVE_D3D12_DEVICED3D12_H_
|