| // Copyright 2018 The Dawn & Tint Authors |
| // |
| // Redistribution and use in source and binary forms, with or without |
| // modification, are permitted provided that the following conditions are met: |
| // |
| // 1. Redistributions of source code must retain the above copyright notice, this |
| // list of conditions and the following disclaimer. |
| // |
| // 2. Redistributions in binary form must reproduce the above copyright notice, |
| // this list of conditions and the following disclaimer in the documentation |
| // and/or other materials provided with the distribution. |
| // |
| // 3. Neither the name of the copyright holder nor the names of its |
| // contributors may be used to endorse or promote products derived from |
| // this software without specific prior written permission. |
| // |
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
| #include "dawn/native/vulkan/ShaderModuleVk.h" |
| |
| #include <cstdint> |
| #include <string> |
| #include <unordered_map> |
| #include <unordered_set> |
| #include <vector> |
| |
| #include "absl/container/flat_hash_map.h" |
| #include "dawn/common/HashUtils.h" |
| #include "dawn/common/MatchVariant.h" |
| #include "dawn/common/Ref.h" |
| #include "dawn/native/Adapter.h" |
| #include "dawn/native/CacheRequest.h" |
| #include "dawn/native/ComputePipeline.h" |
| #include "dawn/native/Device.h" |
| #include "dawn/native/ImmediateConstantsLayout.h" |
| #include "dawn/native/Instance.h" |
| #include "dawn/native/PhysicalDevice.h" |
| #include "dawn/native/RenderPipeline.h" |
| #include "dawn/native/Serializable.h" |
| #include "dawn/native/TintUtils.h" |
| #include "dawn/native/utils/WGPUHelpers.h" |
| #include "dawn/native/vulkan/BindGroupLayoutVk.h" |
| #include "dawn/native/vulkan/DeviceVk.h" |
| #include "dawn/native/vulkan/FencedDeleter.h" |
| #include "dawn/native/vulkan/PhysicalDeviceVk.h" |
| #include "dawn/native/vulkan/PipelineLayoutVk.h" |
| #include "dawn/native/vulkan/UtilsVulkan.h" |
| #include "dawn/native/vulkan/VulkanError.h" |
| #include "dawn/native/wgpu_structs_autogen.h" |
| #include "dawn/platform/DawnPlatform.h" |
| #include "dawn/platform/metrics/HistogramMacros.h" |
| #include "dawn/platform/tracing/TraceEvent.h" |
| #include "partition_alloc/pointers/raw_ptr.h" |
| #include "tint/tint.h" |
| |
| #ifdef DAWN_ENABLE_SPIRV_VALIDATION |
| #include "dawn/native/SpirvValidation.h" |
| #endif |
| |
| namespace dawn::native::vulkan { |
| |
| #define COMPILED_SPIRV_MEMBERS(X) X(std::vector<uint32_t>, spirv) |
| |
| // Represents the result and metadata for a SPIR-V compilation. |
| // clang-format off |
| DAWN_SERIALIZABLE(struct, CompiledSpirv, COMPILED_SPIRV_MEMBERS) { |
| static ResultOrError<CompiledSpirv> FromValidatedBlob(Blob blob) { |
| CompiledSpirv result; |
| DAWN_TRY_ASSIGN(result, FromBlob(std::move(blob))); |
| DAWN_INVALID_IF(result.spirv.empty(), "Cached CompiledSpirv result has no instructions"); |
| return result; |
| } |
| }; |
| // clang-format on |
| #undef COMPILED_SPIRV_MEMBERS |
| |
| // static |
| ResultOrError<Ref<ShaderModule>> ShaderModule::Create( |
| Device* device, |
| const UnpackedPtr<ShaderModuleDescriptor>& descriptor, |
| const std::vector<tint::wgsl::Extension>& internalExtensions, |
| ShaderModuleParseResult* parseResult) { |
| Ref<ShaderModule> module = AcquireRef(new ShaderModule(device, descriptor, internalExtensions)); |
| DAWN_TRY(module->Initialize(parseResult)); |
| return module; |
| } |
| |
| ShaderModule::ShaderModule(Device* device, |
| const UnpackedPtr<ShaderModuleDescriptor>& descriptor, |
| std::vector<tint::wgsl::Extension> internalExtensions) |
| : ShaderModuleBase(device, descriptor, std::move(internalExtensions)) {} |
| |
| MaybeError ShaderModule::Initialize(ShaderModuleParseResult* parseResult) { |
| return InitializeBase(parseResult); |
| } |
| |
| void ShaderModule::DestroyImpl() { |
| ShaderModuleBase::DestroyImpl(); |
| } |
| |
| ShaderModule::~ShaderModule() = default; |
| |
| #if TINT_BUILD_SPV_WRITER |
| |
| using SubstituteOverrideConfig = std::unordered_map<tint::OverrideId, double>; |
| |
| #define SPIRV_COMPILATION_REQUEST_MEMBERS(X) \ |
| X(SingleShaderStage, stage) \ |
| X(ShaderModuleBase::ShaderModuleHash, shaderModuleHash) \ |
| X(UnsafeUnserializedValue<ShaderModuleBase::ScopedUseTintProgram>, inputProgram) \ |
| X(SubstituteOverrideConfig, substituteOverrideConfig) \ |
| X(LimitsForCompilationRequest, limits) \ |
| X(UnsafeUnserializedValue<LimitsForCompilationRequest>, adapterSupportedLimits) \ |
| X(uint32_t, maxSubgroupSize) \ |
| X(std::string_view, entryPointName) \ |
| X(bool, usesSubgroupMatrix) \ |
| X(tint::spirv::writer::Options, tintOptions) \ |
| X(UnsafeUnserializedValue<dawn::platform::Platform*>, platform) |
| |
| DAWN_MAKE_CACHE_REQUEST(SpirvCompilationRequest, SPIRV_COMPILATION_REQUEST_MEMBERS); |
| #undef SPIRV_COMPILATION_REQUEST_MEMBERS |
| |
| #endif // TINT_BUILD_SPV_WRITER |
| |
| ResultOrError<ShaderModule::ModuleAndSpirv> ShaderModule::GetHandleAndSpirv( |
| SingleShaderStage stage, |
| const ProgrammableStage& programmableStage, |
| const PipelineLayout* layout, |
| bool emitPointSize, |
| const ImmediateConstantMask& pipelineImmediateMask) { |
| TRACE_EVENT0(GetDevice()->GetPlatform(), General, "ShaderModuleVk::GetHandleAndSpirv"); |
| |
| #if TINT_BUILD_SPV_WRITER |
| // Creation of module and spirv is deferred to this point when using tint generator |
| |
| tint::spirv::writer::Bindings bindings; |
| std::unordered_set<tint::BindingPoint> statically_paired_texture_binding_points; |
| |
| const BindingInfoArray& moduleBindingInfo = |
| GetEntryPoint(programmableStage.entryPoint.c_str()).bindings; |
| |
| for (BindGroupIndex group : layout->GetBindGroupLayoutsMask()) { |
| const BindGroupLayout* bgl = ToBackend(layout->GetBindGroupLayout(group)); |
| |
| for (const auto& currentModuleBindingInfo : moduleBindingInfo[group]) { |
| // We cannot use structured binding here because lambda expressions can only capture |
| // variables, while structured binding doesn't introduce variables. |
| const auto& binding = currentModuleBindingInfo.first; |
| const auto& shaderBindingInfo = currentModuleBindingInfo.second; |
| |
| tint::BindingPoint srcBindingPoint{static_cast<uint32_t>(group), |
| static_cast<uint32_t>(binding)}; |
| |
| tint::BindingPoint dstBindingPoint{ |
| static_cast<uint32_t>(group), static_cast<uint32_t>(bgl->GetBindingIndex(binding))}; |
| |
| MatchVariant( |
| shaderBindingInfo.bindingInfo, |
| [&](const BufferBindingInfo& bindingInfo) { |
| switch (bindingInfo.type) { |
| case wgpu::BufferBindingType::Uniform: |
| bindings.uniform.emplace( |
| srcBindingPoint, |
| tint::spirv::writer::binding::Uniform{dstBindingPoint.group, |
| dstBindingPoint.binding}); |
| break; |
| case kInternalStorageBufferBinding: |
| case wgpu::BufferBindingType::Storage: |
| case wgpu::BufferBindingType::ReadOnlyStorage: |
| case kInternalReadOnlyStorageBufferBinding: |
| bindings.storage.emplace( |
| srcBindingPoint, |
| tint::spirv::writer::binding::Storage{dstBindingPoint.group, |
| dstBindingPoint.binding}); |
| break; |
| case wgpu::BufferBindingType::BindingNotUsed: |
| case wgpu::BufferBindingType::Undefined: |
| DAWN_UNREACHABLE(); |
| break; |
| } |
| }, |
| [&](const SamplerBindingInfo& bindingInfo) { |
| bindings.sampler.emplace(srcBindingPoint, |
| tint::spirv::writer::binding::Sampler{ |
| dstBindingPoint.group, dstBindingPoint.binding}); |
| }, |
| [&](const TextureBindingInfo& bindingInfo) { |
| if (auto samplerIndex = bgl->GetStaticSamplerIndexForTexture( |
| BindingIndex{dstBindingPoint.binding})) { |
| dstBindingPoint.binding = static_cast<uint32_t>(samplerIndex.value()); |
| statically_paired_texture_binding_points.insert(srcBindingPoint); |
| } |
| bindings.texture.emplace(srcBindingPoint, |
| tint::spirv::writer::binding::Texture{ |
| dstBindingPoint.group, dstBindingPoint.binding}); |
| }, |
| [&](const StorageTextureBindingInfo& bindingInfo) { |
| bindings.storage_texture.emplace( |
| srcBindingPoint, tint::spirv::writer::binding::StorageTexture{ |
| dstBindingPoint.group, dstBindingPoint.binding}); |
| }, |
| [&](const ExternalTextureBindingInfo& bindingInfo) { |
| const auto& bindingMap = bgl->GetExternalTextureBindingExpansionMap(); |
| const auto& expansion = bindingMap.find(binding); |
| DAWN_ASSERT(expansion != bindingMap.end()); |
| |
| const auto& bindingExpansion = expansion->second; |
| tint::spirv::writer::binding::BindingInfo plane0{ |
| static_cast<uint32_t>(group), |
| static_cast<uint32_t>(bgl->GetBindingIndex(bindingExpansion.plane0))}; |
| tint::spirv::writer::binding::BindingInfo plane1{ |
| static_cast<uint32_t>(group), |
| static_cast<uint32_t>(bgl->GetBindingIndex(bindingExpansion.plane1))}; |
| tint::spirv::writer::binding::BindingInfo metadata{ |
| static_cast<uint32_t>(group), |
| static_cast<uint32_t>(bgl->GetBindingIndex(bindingExpansion.params))}; |
| |
| bindings.external_texture.emplace( |
| srcBindingPoint, |
| tint::spirv::writer::binding::ExternalTexture{metadata, plane0, plane1}); |
| }, |
| [&](const InputAttachmentBindingInfo& bindingInfo) { |
| bindings.input_attachment.emplace( |
| srcBindingPoint, tint::spirv::writer::binding::InputAttachment{ |
| dstBindingPoint.group, dstBindingPoint.binding}); |
| }); |
| } |
| } |
| |
| const bool hasInputAttachment = !bindings.input_attachment.empty(); |
| |
| SpirvCompilationRequest req = {}; |
| req.stage = stage; |
| req.shaderModuleHash = GetHash(); |
| req.inputProgram = UnsafeUnserializedValue(UseTintProgram()); |
| req.entryPointName = programmableStage.entryPoint; |
| req.platform = UnsafeUnserializedValue(GetDevice()->GetPlatform()); |
| req.substituteOverrideConfig = BuildSubstituteOverridesTransformConfig(programmableStage); |
| req.usesSubgroupMatrix = programmableStage.metadata->usesSubgroupMatrix; |
| |
| req.tintOptions.remapped_entry_point_name = GetDevice()->GetIsolatedEntryPointName(); |
| req.tintOptions.strip_all_names = !GetDevice()->IsToggleEnabled(Toggle::DisableSymbolRenaming); |
| |
| req.tintOptions.statically_paired_texture_binding_points = |
| std::move(statically_paired_texture_binding_points); |
| req.tintOptions.disable_robustness = !GetDevice()->IsRobustnessEnabled(); |
| req.tintOptions.emit_vertex_point_size = emitPointSize; |
| |
| req.tintOptions.disable_workgroup_init = |
| GetDevice()->IsToggleEnabled(Toggle::DisableWorkgroupInit); |
| // The only possible alternative for the vulkan demote to helper extension is |
| // "OpTerminateInvocation" which remains unimplemented in dawn/tint. |
| req.tintOptions.use_demote_to_helper_invocation_extensions = |
| GetDevice()->IsToggleEnabled(Toggle::VulkanUseDemoteToHelperInvocationExtension); |
| |
| req.tintOptions.use_zero_initialize_workgroup_memory_extension = |
| GetDevice()->IsToggleEnabled(Toggle::VulkanUseZeroInitializeWorkgroupMemoryExtension); |
| req.tintOptions.use_storage_input_output_16 = |
| GetDevice()->IsToggleEnabled(Toggle::VulkanUseStorageInputOutput16); |
| req.tintOptions.bindings = std::move(bindings); |
| req.tintOptions.disable_image_robustness = |
| GetDevice()->IsToggleEnabled(Toggle::VulkanUseImageRobustAccess2); |
| // Currently we can disable index clamping on all runtime-sized arrays in Tint robustness |
| // transform as unsized arrays can only be declared on storage address space. |
| req.tintOptions.disable_runtime_sized_array_index_clamping = |
| GetDevice()->IsToggleEnabled(Toggle::VulkanUseBufferRobustAccess2); |
| req.tintOptions.polyfill_dot_4x8_packed = |
| GetDevice()->IsToggleEnabled(Toggle::PolyFillPacked4x8DotProduct); |
| req.tintOptions.polyfill_pack_unpack_4x8_norm = |
| GetDevice()->IsToggleEnabled(Toggle::PolyfillPackUnpack4x8Norm); |
| req.tintOptions.disable_polyfill_integer_div_mod = |
| GetDevice()->IsToggleEnabled(Toggle::DisablePolyfillsOnIntegerDivisonAndModulo); |
| req.tintOptions.scalarize_max_min_clamp = |
| GetDevice()->IsToggleEnabled(Toggle::ScalarizeMaxMinClamp); |
| req.tintOptions.use_vulkan_memory_model = |
| GetDevice()->IsToggleEnabled(Toggle::UseVulkanMemoryModel); |
| req.tintOptions.dva_transform_handle = |
| GetDevice()->IsToggleEnabled(Toggle::VulkanDirectVariableAccessTransformHandle); |
| // Pass matrices to user functions by pointer on Qualcomm devices to workaround a known bug. |
| // See crbug.com/tint/2045. |
| if (ToBackend(GetDevice()->GetPhysicalDevice())->IsAndroidQualcomm()) { |
| req.tintOptions.pass_matrix_by_pointer = true; |
| } |
| |
| // Set internal immediate constant offsets |
| if (HasImmediateConstants(&RenderImmediateConstants::clampFragDepth, pipelineImmediateMask)) { |
| uint32_t offsetStartBytes = GetImmediateByteOffsetInPipeline( |
| &RenderImmediateConstants::clampFragDepth, pipelineImmediateMask); |
| req.tintOptions.depth_range_offsets = { |
| offsetStartBytes, offsetStartBytes + kImmediateConstantElementByteSize}; |
| } |
| |
| req.tintOptions.enable_integer_range_analysis = |
| GetDevice()->IsToggleEnabled(Toggle::EnableIntegerRangeAnalysisInRobustness); |
| |
| req.limits = LimitsForCompilationRequest::Create(GetDevice()->GetLimits().v1); |
| req.adapterSupportedLimits = UnsafeUnserializedValue( |
| LimitsForCompilationRequest::Create(GetDevice()->GetAdapter()->GetLimits().v1)); |
| req.maxSubgroupSize = GetDevice()->GetAdapter()->GetPhysicalDevice()->GetSubgroupMaxSize(); |
| |
| CacheResult<CompiledSpirv> compilation; |
| DAWN_TRY_LOAD_OR_RUN( |
| compilation, GetDevice(), std::move(req), CompiledSpirv::FromValidatedBlob, |
| [](SpirvCompilationRequest r) -> ResultOrError<CompiledSpirv> { |
| TRACE_EVENT0(r.platform.UnsafeGetValue(), General, "tint::spirv::writer::Generate()"); |
| |
| // Requires Tint Program here right before actual using. |
| auto inputProgram = r.inputProgram.UnsafeGetValue()->GetTintProgram(); |
| const tint::Program* tintInputProgram = &(inputProgram->program); |
| // Convert the AST program to an IR module. |
| tint::Result<tint::core::ir::Module> ir; |
| { |
| SCOPED_DAWN_HISTOGRAM_TIMER_MICROS(r.platform.UnsafeGetValue(), |
| "ShaderModuleProgramToIR"); |
| ir = tint::wgsl::reader::ProgramToLoweredIR(*tintInputProgram); |
| DAWN_INVALID_IF(ir != tint::Success, |
| "An error occurred while generating Tint IR\n%s", |
| ir.Failure().reason); |
| } |
| |
| { |
| SCOPED_DAWN_HISTOGRAM_TIMER_MICROS(r.platform.UnsafeGetValue(), |
| "ShaderModuleSingleEntryPoint"); |
| // Many Vulkan drivers can't handle multi-entrypoint shader modules. |
| auto singleEntryPointResult = |
| tint::core::ir::transform::SingleEntryPoint(ir.Get(), r.entryPointName); |
| DAWN_INVALID_IF(singleEntryPointResult != tint::Success, |
| "Pipeline single entry point (IR) failed:\n%s", |
| singleEntryPointResult.Failure().reason); |
| } |
| |
| { |
| SCOPED_DAWN_HISTOGRAM_TIMER_MICROS(r.platform.UnsafeGetValue(), |
| "ShaderModuleSubstituteOverrides"); |
| // this needs to run after SingleEntryPoint transform which removes unused |
| // overrides for the current entry point. |
| tint::core::ir::transform::SubstituteOverridesConfig cfg; |
| cfg.map = std::move(r.substituteOverrideConfig); |
| auto substituteOverridesResult = |
| tint::core::ir::transform::SubstituteOverrides(ir.Get(), cfg); |
| DAWN_INVALID_IF(substituteOverridesResult != tint::Success, |
| "Pipeline override substitution (IR) failed:\n%s", |
| substituteOverridesResult.Failure().reason); |
| } |
| |
| tint::Result<tint::spirv::writer::Output> tintResult; |
| { |
| SCOPED_DAWN_HISTOGRAM_TIMER_MICROS(r.platform.UnsafeGetValue(), |
| "ShaderModuleGenerateSPIRV"); |
| // Generate SPIR-V from Tint IR. |
| tintResult = tint::spirv::writer::Generate(ir.Get(), r.tintOptions); |
| DAWN_INVALID_IF(tintResult != tint::Success, |
| "An error occurred while generating SPIR-V\n%s", |
| tintResult.Failure().reason); |
| } |
| |
| // Workgroup validation has to come after `Generate` because it may require |
| // overrides to have been substituted. |
| if (r.stage == SingleShaderStage::Compute) { |
| Extent3D _; |
| DAWN_TRY_ASSIGN( |
| _, ValidateComputeStageWorkgroupSize( |
| tintResult->workgroup_info.x, tintResult->workgroup_info.y, |
| tintResult->workgroup_info.z, tintResult->workgroup_info.storage_size, |
| r.usesSubgroupMatrix, r.maxSubgroupSize, r.limits, |
| r.adapterSupportedLimits.UnsafeGetValue())); |
| } |
| |
| CompiledSpirv result; |
| result.spirv = std::move(tintResult.Get().spirv); |
| return result; |
| }, |
| "Vulkan.CompileShaderToSPIRV"); |
| |
| #ifdef DAWN_ENABLE_SPIRV_VALIDATION |
| // Validate and if required dump the compiled SPIR-V code. |
| DAWN_TRY(ValidateSpirv(GetDevice(), compilation->spirv.data(), compilation->spirv.size())); |
| if (GetDevice()->IsToggleEnabled(Toggle::DumpShaders)) { |
| DumpSpirv(GetDevice(), compilation->spirv.data(), compilation->spirv.size()); |
| } |
| #endif |
| |
| VkShaderModuleCreateInfo createInfo; |
| createInfo.sType = VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO; |
| createInfo.pNext = nullptr; |
| createInfo.flags = 0u; |
| createInfo.codeSize = compilation->spirv.size() * sizeof(uint32_t); |
| createInfo.pCode = compilation->spirv.data(); |
| |
| Device* device = ToBackend(GetDevice()); |
| |
| VkShaderModule newHandle = VK_NULL_HANDLE; |
| { |
| SCOPED_DAWN_HISTOGRAM_TIMER_MICROS(GetDevice()->GetPlatform(), "Vulkan.CreateShaderModule"); |
| TRACE_EVENT0(GetDevice()->GetPlatform(), General, "vkCreateShaderModule"); |
| DAWN_TRY(CheckVkSuccess( |
| device->fn.CreateShaderModule(device->GetVkDevice(), &createInfo, nullptr, &*newHandle), |
| "CreateShaderModule")); |
| } |
| DAWN_CHECK(newHandle != VK_NULL_HANDLE); |
| |
| device->GetBlobCache()->EnsureStored(compilation); |
| SetDebugName(ToBackend(GetDevice()), newHandle, "Dawn_ShaderModule", GetLabel()); |
| |
| return ModuleAndSpirv{.module = newHandle, |
| .spirv = std::move(compilation->spirv), |
| .hasInputAttachment = hasInputAttachment}; |
| #else |
| return DAWN_INTERNAL_ERROR("TINT_BUILD_SPV_WRITER is not defined."); |
| #endif |
| } |
| |
| } // namespace dawn::native::vulkan |