suyu/src/shader_recompiler/backend/spirv/emit_spirv.cpp

294 lines
11 KiB
C++
Raw Normal View History

2021-02-08 06:54:35 +01:00
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
2021-02-17 04:59:28 +01:00
#include <span>
#include <tuple>
2021-02-08 06:54:35 +01:00
#include <type_traits>
2021-02-17 04:59:28 +01:00
#include <utility>
#include <vector>
2021-02-08 06:54:35 +01:00
#include "shader_recompiler/backend/spirv/emit_spirv.h"
#include "shader_recompiler/frontend/ir/basic_block.h"
#include "shader_recompiler/frontend/ir/microinstruction.h"
#include "shader_recompiler/frontend/ir/program.h"
namespace Shader::Backend::SPIRV {
2021-02-16 08:10:22 +01:00
namespace {
template <class Func>
2021-02-17 04:59:28 +01:00
struct FuncTraits : FuncTraits<Func> {};
2021-02-08 06:54:35 +01:00
2021-02-17 04:59:28 +01:00
template <class ReturnType_, class... Args>
struct FuncTraits<ReturnType_ (*)(Args...)> {
2021-02-16 08:10:22 +01:00
using ReturnType = ReturnType_;
2021-02-08 06:54:35 +01:00
2021-02-16 08:10:22 +01:00
static constexpr size_t NUM_ARGS = sizeof...(Args);
2021-02-08 06:54:35 +01:00
2021-02-16 08:10:22 +01:00
template <size_t I>
using ArgType = std::tuple_element_t<I, std::tuple<Args...>>;
};
2021-02-14 05:24:32 +01:00
2021-02-17 04:59:28 +01:00
template <auto func, typename... Args>
void SetDefinition(EmitContext& ctx, IR::Inst* inst, Args... args) {
2021-02-16 08:10:22 +01:00
const Id forward_id{inst->Definition<Id>()};
const bool has_forward_id{Sirit::ValidId(forward_id)};
Id current_id{};
if (has_forward_id) {
current_id = ctx.ExchangeCurrentId(forward_id);
}
2021-02-17 04:59:28 +01:00
const Id new_id{func(ctx, std::forward<Args>(args)...)};
2021-02-16 08:10:22 +01:00
if (has_forward_id) {
ctx.ExchangeCurrentId(current_id);
} else {
inst->SetDefinition<Id>(new_id);
}
}
template <typename ArgType>
ArgType Arg(EmitContext& ctx, const IR::Value& arg) {
if constexpr (std::is_same_v<ArgType, Id>) {
return ctx.Def(arg);
} else if constexpr (std::is_same_v<ArgType, const IR::Value&>) {
return arg;
} else if constexpr (std::is_same_v<ArgType, u32>) {
return arg.U32();
} else if constexpr (std::is_same_v<ArgType, IR::Block*>) {
return arg.Label();
} else if constexpr (std::is_same_v<ArgType, IR::Attribute>) {
return arg.Attribute();
2021-02-16 08:10:22 +01:00
}
}
2021-02-17 04:59:28 +01:00
template <auto func, bool is_first_arg_inst, size_t... I>
void Invoke(EmitContext& ctx, IR::Inst* inst, std::index_sequence<I...>) {
using Traits = FuncTraits<decltype(func)>;
2021-02-16 08:10:22 +01:00
if constexpr (std::is_same_v<Traits::ReturnType, Id>) {
if constexpr (is_first_arg_inst) {
2021-02-17 04:59:28 +01:00
SetDefinition<func>(ctx, inst, inst, Arg<Traits::ArgType<I + 2>>(ctx, inst->Arg(I))...);
2021-02-16 08:10:22 +01:00
} else {
2021-02-17 04:59:28 +01:00
SetDefinition<func>(ctx, inst, Arg<Traits::ArgType<I + 1>>(ctx, inst->Arg(I))...);
2021-02-16 08:10:22 +01:00
}
} else {
if constexpr (is_first_arg_inst) {
2021-02-17 04:59:28 +01:00
func(ctx, inst, Arg<Traits::ArgType<I + 2>>(ctx, inst->Arg(I))...);
2021-02-16 08:10:22 +01:00
} else {
2021-02-17 04:59:28 +01:00
func(ctx, Arg<Traits::ArgType<I + 1>>(ctx, inst->Arg(I))...);
2021-02-08 06:54:35 +01:00
}
}
}
2021-02-17 04:59:28 +01:00
template <auto func>
void Invoke(EmitContext& ctx, IR::Inst* inst) {
using Traits = FuncTraits<decltype(func)>;
2021-02-16 08:10:22 +01:00
static_assert(Traits::NUM_ARGS >= 1, "Insufficient arguments");
if constexpr (Traits::NUM_ARGS == 1) {
2021-02-17 04:59:28 +01:00
Invoke<func, false>(ctx, inst, std::make_index_sequence<0>{});
2021-02-16 08:10:22 +01:00
} else {
using FirstArgType = typename Traits::template ArgType<1>;
static constexpr bool is_first_arg_inst = std::is_same_v<FirstArgType, IR::Inst*>;
using Indices = std::make_index_sequence<Traits::NUM_ARGS - (is_first_arg_inst ? 2 : 1)>;
2021-02-17 04:59:28 +01:00
Invoke<func, is_first_arg_inst>(ctx, inst, Indices{});
}
}
void EmitInst(EmitContext& ctx, IR::Inst* inst) {
switch (inst->Opcode()) {
#define OPCODE(name, result_type, ...) \
case IR::Opcode::name: \
return Invoke<&Emit##name>(ctx, inst);
#include "shader_recompiler/frontend/ir/opcodes.inc"
#undef OPCODE
}
throw LogicError("Invalid opcode {}", inst->Opcode());
}
Id TypeId(const EmitContext& ctx, IR::Type type) {
switch (type) {
case IR::Type::U1:
return ctx.U1;
case IR::Type::U32:
return ctx.U32[1];
default:
throw NotImplementedException("Phi node type {}", type);
2021-02-16 08:10:22 +01:00
}
}
2021-02-20 07:30:13 +01:00
void SetupDenormControl(const Profile& profile, const IR::Program& program, EmitContext& ctx,
Id main_func) {
if (!profile.support_float_controls) {
return;
}
const Info& info{program.info};
if (!info.uses_fp32_denorms_flush && !info.uses_fp32_denorms_preserve &&
!info.uses_fp16_denorms_flush && !info.uses_fp16_denorms_preserve) {
return;
}
ctx.AddExtension("SPV_KHR_float_controls");
if (info.uses_fp16 && profile.support_fp16_signed_zero_nan_preserve) {
ctx.AddCapability(spv::Capability::SignedZeroInfNanPreserve);
ctx.AddExecutionMode(main_func, spv::ExecutionMode::SignedZeroInfNanPreserve, 16U);
}
if (profile.support_fp32_signed_zero_nan_preserve) {
ctx.AddCapability(spv::Capability::SignedZeroInfNanPreserve);
ctx.AddExecutionMode(main_func, spv::ExecutionMode::SignedZeroInfNanPreserve, 32U);
}
2021-02-20 07:30:13 +01:00
if (info.uses_fp32_denorms_flush && info.uses_fp32_denorms_preserve) {
// LOG_ERROR(HW_GPU, "Fp32 denorm flush and preserve on the same shader");
} else if (info.uses_fp32_denorms_flush) {
if (profile.support_fp32_denorm_flush) {
ctx.AddCapability(spv::Capability::DenormFlushToZero);
ctx.AddExecutionMode(main_func, spv::ExecutionMode::DenormFlushToZero, 32U);
} else {
// Drivers will most likely flush denorms by default, no need to warn
}
} else if (info.uses_fp32_denorms_preserve) {
if (profile.support_fp32_denorm_preserve) {
ctx.AddCapability(spv::Capability::DenormPreserve);
ctx.AddExecutionMode(main_func, spv::ExecutionMode::DenormPreserve, 32U);
} else {
// LOG_WARNING(HW_GPU, "Fp32 denorm preserve used in shader without host support");
}
}
if (!profile.support_separate_denorm_behavior) {
// No separate denorm behavior
return;
}
if (info.uses_fp16_denorms_flush && info.uses_fp16_denorms_preserve) {
// LOG_ERROR(HW_GPU, "Fp16 denorm flush and preserve on the same shader");
} else if (info.uses_fp16_denorms_flush) {
if (profile.support_fp16_denorm_flush) {
ctx.AddCapability(spv::Capability::DenormFlushToZero);
ctx.AddExecutionMode(main_func, spv::ExecutionMode::DenormFlushToZero, 16U);
2021-02-20 07:30:13 +01:00
} else {
// Same as fp32, no need to warn as most drivers will flush by default
}
} else if (info.uses_fp16_denorms_preserve) {
2021-02-20 07:30:13 +01:00
if (profile.support_fp16_denorm_preserve) {
ctx.AddCapability(spv::Capability::DenormPreserve);
ctx.AddExecutionMode(main_func, spv::ExecutionMode::DenormPreserve, 16U);
} else {
// LOG_WARNING(HW_GPU, "Fp16 denorm preserve used in shader without host support");
}
}
}
Id PhiArgDef(EmitContext& ctx, IR::Inst* inst, size_t index) {
// Phi nodes can have forward declarations, if an argument is not defined provide a forward
// declaration of it. Invoke will take care of giving it the right definition when it's
// actually defined.
const IR::Value arg{inst->Arg(index)};
if (arg.IsImmediate()) {
// Let the context handle immediate definitions, as it already knows how
return ctx.Def(arg);
}
IR::Inst* const arg_inst{arg.Inst()};
if (const Id def{arg_inst->Definition<Id>()}; Sirit::ValidId(def)) {
// Return the current definition if it exists
return def;
}
if (arg_inst == inst) {
// This is a self referencing phi node
// Self-referencing definition will be set by the caller, so just grab the current id
return ctx.CurrentId();
}
// If it hasn't been defined and it's not a self reference, get a forward declaration
const Id def{ctx.ForwardDeclarationId()};
arg_inst->SetDefinition<Id>(def);
return def;
}
2021-02-16 08:10:22 +01:00
} // Anonymous namespace
2021-02-08 06:54:35 +01:00
std::vector<u32> EmitSPIRV(const Profile& profile, Environment& env, IR::Program& program,
u32& binding) {
EmitContext ctx{profile, program, binding};
2021-02-08 06:54:35 +01:00
const Id void_function{ctx.TypeFunction(ctx.void_id)};
const Id func{ctx.OpFunction(ctx.void_id, spv::FunctionControlMask::MaskNone, void_function)};
for (IR::Block* const block : program.blocks) {
ctx.AddLabel(block->Definition<Id>());
for (IR::Inst& inst : block->Instructions()) {
EmitInst(ctx, &inst);
2021-02-08 06:54:35 +01:00
}
}
ctx.OpFunctionEnd();
const std::span interfaces(ctx.interfaces.data(), ctx.interfaces.size());
spv::ExecutionModel execution_model{};
switch (env.ShaderStage()) {
case Shader::Stage::Compute: {
const std::array<u32, 3> workgroup_size{env.WorkgroupSize()};
execution_model = spv::ExecutionModel::GLCompute;
ctx.AddExecutionMode(func, spv::ExecutionMode::LocalSize, workgroup_size[0],
workgroup_size[1], workgroup_size[2]);
break;
2021-02-16 08:10:22 +01:00
}
case Shader::Stage::VertexB:
execution_model = spv::ExecutionModel::Vertex;
break;
case Shader::Stage::Fragment:
execution_model = spv::ExecutionModel::Fragment;
ctx.AddExecutionMode(func, spv::ExecutionMode::OriginUpperLeft);
break;
default:
throw NotImplementedException("Stage {}", env.ShaderStage());
2021-02-16 08:10:22 +01:00
}
ctx.AddEntryPoint(execution_model, func, "main", interfaces);
2021-02-08 06:54:35 +01:00
2021-02-20 07:30:13 +01:00
SetupDenormControl(profile, program, ctx, func);
const Info& info{program.info};
if (info.uses_sampled_1d) {
ctx.AddCapability(spv::Capability::Sampled1D);
}
if (info.uses_sparse_residency) {
ctx.AddCapability(spv::Capability::SparseResidency);
}
if (info.uses_demote_to_helper_invocation) {
ctx.AddExtension("SPV_EXT_demote_to_helper_invocation");
ctx.AddCapability(spv::Capability::DemoteToHelperInvocationEXT);
}
// TODO: Track this usage
ctx.AddCapability(spv::Capability::ImageGatherExtended);
2021-02-20 07:30:13 +01:00
2021-02-17 04:59:28 +01:00
return ctx.Assemble();
}
2021-02-17 04:59:28 +01:00
Id EmitPhi(EmitContext& ctx, IR::Inst* inst) {
const size_t num_args{inst->NumArgs()};
boost::container::small_vector<Id, 32> operands;
operands.reserve(num_args * 2);
for (size_t index = 0; index < num_args; ++index) {
operands.push_back(PhiArgDef(ctx, inst, index));
operands.push_back(inst->PhiBlock(index)->Definition<Id>());
}
const Id result_type{TypeId(ctx, inst->Arg(0).Type())};
return ctx.OpPhi(result_type, std::span(operands.data(), operands.size()));
2021-02-08 06:54:35 +01:00
}
2021-02-17 04:59:28 +01:00
void EmitVoid(EmitContext&) {}
2021-02-08 06:54:35 +01:00
2021-02-17 04:59:28 +01:00
Id EmitIdentity(EmitContext& ctx, const IR::Value& value) {
2021-02-16 23:48:58 +01:00
return ctx.Def(value);
2021-02-08 06:54:35 +01:00
}
2021-02-17 04:59:28 +01:00
void EmitGetZeroFromOp(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw LogicError("Unreachable instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetSignFromOp(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw LogicError("Unreachable instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetCarryFromOp(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw LogicError("Unreachable instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetOverflowFromOp(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw LogicError("Unreachable instruction");
}
void EmitGetSparseFromOp(EmitContext&) {
throw LogicError("Unreachable instruction");
}
2021-02-08 06:54:35 +01:00
} // namespace Shader::Backend::SPIRV