blob: ec82ecfdde6dc8f864cf891a8946afbf87545ce8 [file] [log] [blame]
// Copyright 2020 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 "src/tint/lang/hlsl/writer/writer.h"
#include <memory>
#include <utility>
#include "src/tint/lang/core/ir/function.h"
#include "src/tint/lang/core/ir/module.h"
#include "src/tint/lang/core/ir/var.h"
#include "src/tint/lang/core/type/binding_array.h"
#include "src/tint/lang/core/type/input_attachment.h"
#include "src/tint/lang/core/type/pointer.h"
#include "src/tint/lang/core/type/texel_buffer.h"
#include "src/tint/lang/hlsl/writer/common/option_helpers.h"
#include "src/tint/lang/hlsl/writer/printer/printer.h"
#include "src/tint/lang/hlsl/writer/raise/raise.h"
namespace tint::hlsl::writer {
Result<SuccessType> CanGenerate(const core::ir::Module& ir, const Options& options) {
// Check for unsupported types.
for (auto* ty : ir.Types()) {
if (ty->Is<core::type::SubgroupMatrix>()) {
return Failure("subgroup matrices are not supported by the HLSL backend");
}
if (ty->Is<core::type::TexelBuffer>()) {
// TODO(crbug/382544164): Prototype texel buffer feature
return Failure("texel buffers are not supported by the HLSL backend");
}
if (options.compiler == Options::Compiler::kFXC) {
if (auto* ba = ty->As<core::type::BindingArray>()) {
if (ba->Count()->Is<core::type::RuntimeArrayCount>()) {
return Failure("runtime binding array not supported by the HLSL FXC backend");
}
}
}
}
// Check for unsupported module-scope variable address spaces and types.
for (auto* inst : *ir.root_block) {
auto* var = inst->As<core::ir::Var>();
auto* ptr = var->Result()->Type()->As<core::type::Pointer>();
if (ptr->AddressSpace() == core::AddressSpace::kPixelLocal) {
// Check the pixel_local variables have corresponding entries in the PLS attachment map.
auto* str = ptr->StoreType()->As<core::type::Struct>();
for (uint32_t i = 0; i < str->Members().Length(); i++) {
if (options.pixel_local.attachments.count(i) == 0) {
return Failure("missing pixel local attachment for member index " +
std::to_string(i));
}
}
}
if (ptr->StoreType()->Is<core::type::InputAttachment>()) {
return Failure("input attachments are not supported by the HLSL backend");
}
}
// Check for unsupported shader IO builtins.
for (auto& func : ir.functions) {
if (!func->IsEntryPoint()) {
continue;
}
for (auto* param : func->Params()) {
if (auto* str = param->Type()->As<core::type::Struct>()) {
for (auto* member : str->Members()) {
if (member->Attributes().builtin == core::BuiltinValue::kSubgroupId) {
return Failure("subgroup_id is not yet supported by the HLSL backend");
}
if (member->Attributes().builtin == core::BuiltinValue::kBarycentricCoord &&
options.compiler == Options::Compiler::kFXC) {
return Failure(
"barycentric_coord is not supported by the FXC HLSL backend");
}
}
} else {
if (param->Builtin() == core::BuiltinValue::kSubgroupId) {
return Failure("subgroup_id is not yet supported by the HLSL backend");
}
if (param->Builtin() == core::BuiltinValue::kBarycentricCoord &&
options.compiler == Options::Compiler::kFXC) {
return Failure("barycentric_coord is not supported by the FXC HLSL backend");
}
}
}
}
{
auto res = ValidateBindingOptions(options);
if (res != Success) {
return res.Failure();
}
}
return Success;
}
Result<Output> Generate(core::ir::Module& ir, const Options& options) {
// Raise the core-dialect to HLSL-dialect
auto res = Raise(ir, options);
if (res != Success) {
return res.Failure();
}
return Print(ir, options);
}
} // namespace tint::hlsl::writer