| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440 |
- // Copyright 2021 yuzu Emulator Project
- // Licensed under GPLv2 or any later version
- // Refer to the license.txt file included.
- #include <boost/container/static_vector.hpp>
- #include "shader_recompiler/backend/spirv/emit_spirv.h"
- #include "shader_recompiler/frontend/ir/modifiers.h"
- namespace Shader::Backend::SPIRV {
- namespace {
- class ImageOperands {
- public:
- explicit ImageOperands(EmitContext& ctx, bool has_bias, bool has_lod, bool has_lod_clamp,
- Id lod, const IR::Value& offset) {
- if (has_bias) {
- const Id bias{has_lod_clamp ? ctx.OpCompositeExtract(ctx.F32[1], lod, 0) : lod};
- Add(spv::ImageOperandsMask::Bias, bias);
- }
- if (has_lod) {
- const Id lod_value{has_lod_clamp ? ctx.OpCompositeExtract(ctx.F32[1], lod, 0) : lod};
- Add(spv::ImageOperandsMask::Lod, lod_value);
- }
- AddOffset(ctx, offset);
- if (has_lod_clamp) {
- const Id lod_clamp{has_bias ? ctx.OpCompositeExtract(ctx.F32[1], lod, 1) : lod};
- Add(spv::ImageOperandsMask::MinLod, lod_clamp);
- }
- }
- explicit ImageOperands(EmitContext& ctx, const IR::Value& offset, const IR::Value& offset2) {
- if (offset2.IsEmpty()) {
- if (offset.IsEmpty()) {
- return;
- }
- Add(spv::ImageOperandsMask::Offset, ctx.Def(offset));
- return;
- }
- const std::array values{offset.InstRecursive(), offset2.InstRecursive()};
- if (!values[0]->AreAllArgsImmediates() || !values[1]->AreAllArgsImmediates()) {
- // LOG_WARNING("Not all arguments in PTP are immediate, STUBBING");
- return;
- }
- const IR::Opcode opcode{values[0]->GetOpcode()};
- if (opcode != values[1]->GetOpcode() || opcode != IR::Opcode::CompositeConstructU32x4) {
- throw LogicError("Invalid PTP arguments");
- }
- auto read{[&](unsigned int a, unsigned int b) { return values[a]->Arg(b).U32(); }};
- const Id offsets{ctx.ConstantComposite(
- ctx.TypeArray(ctx.U32[2], ctx.Const(4U)), ctx.Const(read(0, 0), read(0, 1)),
- ctx.Const(read(0, 2), read(0, 3)), ctx.Const(read(1, 0), read(1, 1)),
- ctx.Const(read(1, 2), read(1, 3)))};
- Add(spv::ImageOperandsMask::ConstOffsets, offsets);
- }
- explicit ImageOperands(Id offset, Id lod, Id ms) {
- if (Sirit::ValidId(lod)) {
- Add(spv::ImageOperandsMask::Lod, lod);
- }
- if (Sirit::ValidId(offset)) {
- Add(spv::ImageOperandsMask::Offset, offset);
- }
- if (Sirit::ValidId(ms)) {
- Add(spv::ImageOperandsMask::Sample, ms);
- }
- }
- explicit ImageOperands(EmitContext& ctx, bool has_lod_clamp, Id derivates, u32 num_derivates,
- Id offset, Id lod_clamp) {
- if (!Sirit::ValidId(derivates)) {
- throw LogicError("Derivates must be present");
- }
- boost::container::static_vector<Id, 3> deriv_x_accum;
- boost::container::static_vector<Id, 3> deriv_y_accum;
- for (u32 i = 0; i < num_derivates; ++i) {
- deriv_x_accum.push_back(ctx.OpCompositeExtract(ctx.F32[1], derivates, i * 2));
- deriv_y_accum.push_back(ctx.OpCompositeExtract(ctx.F32[1], derivates, i * 2 + 1));
- }
- const Id derivates_X{ctx.OpCompositeConstruct(
- ctx.F32[num_derivates], std::span{deriv_x_accum.data(), deriv_x_accum.size()})};
- const Id derivates_Y{ctx.OpCompositeConstruct(
- ctx.F32[num_derivates], std::span{deriv_y_accum.data(), deriv_y_accum.size()})};
- Add(spv::ImageOperandsMask::Grad, derivates_X, derivates_Y);
- if (Sirit::ValidId(offset)) {
- Add(spv::ImageOperandsMask::Offset, offset);
- }
- if (has_lod_clamp) {
- Add(spv::ImageOperandsMask::MinLod, lod_clamp);
- }
- }
- std::span<const Id> Span() const noexcept {
- return std::span{operands.data(), operands.size()};
- }
- spv::ImageOperandsMask Mask() const noexcept {
- return mask;
- }
- private:
- void AddOffset(EmitContext& ctx, const IR::Value& offset) {
- if (offset.IsEmpty()) {
- return;
- }
- if (offset.IsImmediate()) {
- Add(spv::ImageOperandsMask::ConstOffset, ctx.Const(offset.U32()));
- return;
- }
- IR::Inst* const inst{offset.InstRecursive()};
- if (inst->AreAllArgsImmediates()) {
- switch (inst->GetOpcode()) {
- case IR::Opcode::CompositeConstructU32x2:
- Add(spv::ImageOperandsMask::ConstOffset,
- ctx.Const(inst->Arg(0).U32(), inst->Arg(1).U32()));
- return;
- case IR::Opcode::CompositeConstructU32x3:
- Add(spv::ImageOperandsMask::ConstOffset,
- ctx.Const(inst->Arg(0).U32(), inst->Arg(1).U32(), inst->Arg(2).U32()));
- return;
- case IR::Opcode::CompositeConstructU32x4:
- Add(spv::ImageOperandsMask::ConstOffset,
- ctx.Const(inst->Arg(0).U32(), inst->Arg(1).U32(), inst->Arg(2).U32(),
- inst->Arg(3).U32()));
- return;
- default:
- break;
- }
- }
- Add(spv::ImageOperandsMask::Offset, ctx.Def(offset));
- }
- void Add(spv::ImageOperandsMask new_mask, Id value) {
- mask = static_cast<spv::ImageOperandsMask>(static_cast<unsigned>(mask) |
- static_cast<unsigned>(new_mask));
- operands.push_back(value);
- }
- void Add(spv::ImageOperandsMask new_mask, Id value_1, Id value_2) {
- mask = static_cast<spv::ImageOperandsMask>(static_cast<unsigned>(mask) |
- static_cast<unsigned>(new_mask));
- operands.push_back(value_1);
- operands.push_back(value_2);
- }
- boost::container::static_vector<Id, 4> operands;
- spv::ImageOperandsMask mask{};
- };
- Id Texture(EmitContext& ctx, const IR::Value& index) {
- if (index.IsImmediate()) {
- const TextureDefinition def{ctx.textures.at(index.U32())};
- return ctx.OpLoad(def.sampled_type, def.id);
- }
- throw NotImplementedException("Indirect texture sample");
- }
- Id TextureImage(EmitContext& ctx, const IR::Value& index, IR::TextureInstInfo info) {
- if (!index.IsImmediate()) {
- throw NotImplementedException("Indirect texture sample");
- }
- if (info.type == TextureType::Buffer) {
- const Id sampler_id{ctx.texture_buffers.at(index.U32())};
- const Id id{ctx.OpLoad(ctx.sampled_texture_buffer_type, sampler_id)};
- return ctx.OpImage(ctx.image_buffer_type, id);
- } else {
- const TextureDefinition def{ctx.textures.at(index.U32())};
- return ctx.OpImage(def.image_type, ctx.OpLoad(def.sampled_type, def.id));
- }
- }
- Id Image(EmitContext& ctx, const IR::Value& index, IR::TextureInstInfo info) {
- if (!index.IsImmediate()) {
- throw NotImplementedException("Indirect image indexing");
- }
- if (info.type == TextureType::Buffer) {
- const ImageBufferDefinition def{ctx.image_buffers.at(index.U32())};
- return ctx.OpLoad(def.image_type, def.id);
- } else {
- const ImageDefinition def{ctx.images.at(index.U32())};
- return ctx.OpLoad(def.image_type, def.id);
- }
- }
- Id Decorate(EmitContext& ctx, IR::Inst* inst, Id sample) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- if (info.relaxed_precision != 0) {
- ctx.Decorate(sample, spv::Decoration::RelaxedPrecision);
- }
- return sample;
- }
- template <typename MethodPtrType, typename... Args>
- Id Emit(MethodPtrType sparse_ptr, MethodPtrType non_sparse_ptr, EmitContext& ctx, IR::Inst* inst,
- Id result_type, Args&&... args) {
- IR::Inst* const sparse{inst->GetAssociatedPseudoOperation(IR::Opcode::GetSparseFromOp)};
- if (!sparse) {
- return Decorate(ctx, inst, (ctx.*non_sparse_ptr)(result_type, std::forward<Args>(args)...));
- }
- const Id struct_type{ctx.TypeStruct(ctx.U32[1], result_type)};
- const Id sample{(ctx.*sparse_ptr)(struct_type, std::forward<Args>(args)...)};
- const Id resident_code{ctx.OpCompositeExtract(ctx.U32[1], sample, 0U)};
- sparse->SetDefinition(ctx.OpImageSparseTexelsResident(ctx.U1, resident_code));
- sparse->Invalidate();
- Decorate(ctx, inst, sample);
- return ctx.OpCompositeExtract(result_type, sample, 1U);
- }
- } // Anonymous namespace
- Id EmitBindlessImageSampleImplicitLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageSampleExplicitLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageSampleDrefImplicitLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageSampleDrefExplicitLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageGather(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageGatherDref(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageFetch(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageQueryDimensions(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageQueryLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageGradient(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageRead(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBindlessImageWrite(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageSampleImplicitLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageSampleExplicitLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageSampleDrefImplicitLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageSampleDrefExplicitLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageGather(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageGatherDref(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageFetch(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageQueryDimensions(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageQueryLod(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageGradient(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageRead(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitBoundImageWrite(EmitContext&) {
- throw LogicError("Unreachable instruction");
- }
- Id EmitImageSampleImplicitLod(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,
- Id bias_lc, const IR::Value& offset) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- if (ctx.stage == Stage::Fragment) {
- const ImageOperands operands(ctx, info.has_bias != 0, false, info.has_lod_clamp != 0,
- bias_lc, offset);
- return Emit(&EmitContext::OpImageSparseSampleImplicitLod,
- &EmitContext::OpImageSampleImplicitLod, ctx, inst, ctx.F32[4],
- Texture(ctx, index), coords, operands.Mask(), operands.Span());
- } else {
- // We can't use implicit lods on non-fragment stages on SPIR-V. Maxwell hardware behaves as
- // if the lod was explicitly zero. This may change on Turing with implicit compute
- // derivatives
- const Id lod{ctx.Const(0.0f)};
- const ImageOperands operands(ctx, false, true, info.has_lod_clamp != 0, lod, offset);
- return Emit(&EmitContext::OpImageSparseSampleExplicitLod,
- &EmitContext::OpImageSampleExplicitLod, ctx, inst, ctx.F32[4],
- Texture(ctx, index), coords, operands.Mask(), operands.Span());
- }
- }
- Id EmitImageSampleExplicitLod(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,
- Id lod_lc, const IR::Value& offset) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- const ImageOperands operands(ctx, false, true, info.has_lod_clamp != 0, lod_lc, offset);
- return Emit(&EmitContext::OpImageSparseSampleExplicitLod,
- &EmitContext::OpImageSampleExplicitLod, ctx, inst, ctx.F32[4], Texture(ctx, index),
- coords, operands.Mask(), operands.Span());
- }
- Id EmitImageSampleDrefImplicitLod(EmitContext& ctx, IR::Inst* inst, const IR::Value& index,
- Id coords, Id dref, Id bias_lc, const IR::Value& offset) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- const ImageOperands operands(ctx, info.has_bias != 0, false, info.has_lod_clamp != 0, bias_lc,
- offset);
- return Emit(&EmitContext::OpImageSparseSampleDrefImplicitLod,
- &EmitContext::OpImageSampleDrefImplicitLod, ctx, inst, ctx.F32[1],
- Texture(ctx, index), coords, dref, operands.Mask(), operands.Span());
- }
- Id EmitImageSampleDrefExplicitLod(EmitContext& ctx, IR::Inst* inst, const IR::Value& index,
- Id coords, Id dref, Id lod_lc, const IR::Value& offset) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- const ImageOperands operands(ctx, false, true, info.has_lod_clamp != 0, lod_lc, offset);
- return Emit(&EmitContext::OpImageSparseSampleDrefExplicitLod,
- &EmitContext::OpImageSampleDrefExplicitLod, ctx, inst, ctx.F32[1],
- Texture(ctx, index), coords, dref, operands.Mask(), operands.Span());
- }
- Id EmitImageGather(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,
- const IR::Value& offset, const IR::Value& offset2) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- const ImageOperands operands(ctx, offset, offset2);
- return Emit(&EmitContext::OpImageSparseGather, &EmitContext::OpImageGather, ctx, inst,
- ctx.F32[4], Texture(ctx, index), coords, ctx.Const(info.gather_component),
- operands.Mask(), operands.Span());
- }
- Id EmitImageGatherDref(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,
- const IR::Value& offset, const IR::Value& offset2, Id dref) {
- const ImageOperands operands(ctx, offset, offset2);
- return Emit(&EmitContext::OpImageSparseDrefGather, &EmitContext::OpImageDrefGather, ctx, inst,
- ctx.F32[4], Texture(ctx, index), coords, dref, operands.Mask(), operands.Span());
- }
- Id EmitImageFetch(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords, Id offset,
- Id lod, Id ms) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- if (info.type == TextureType::Buffer) {
- lod = Id{};
- }
- const ImageOperands operands(offset, lod, ms);
- return Emit(&EmitContext::OpImageSparseFetch, &EmitContext::OpImageFetch, ctx, inst, ctx.F32[4],
- TextureImage(ctx, index, info), coords, operands.Mask(), operands.Span());
- }
- Id EmitImageQueryDimensions(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id lod) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- const Id image{TextureImage(ctx, index, info)};
- const Id zero{ctx.u32_zero_value};
- const auto mips{[&] { return ctx.OpImageQueryLevels(ctx.U32[1], image); }};
- switch (info.type) {
- case TextureType::Color1D:
- return ctx.OpCompositeConstruct(ctx.U32[4], ctx.OpImageQuerySizeLod(ctx.U32[1], image, lod),
- zero, zero, mips());
- case TextureType::ColorArray1D:
- case TextureType::Color2D:
- case TextureType::ColorCube:
- return ctx.OpCompositeConstruct(ctx.U32[4], ctx.OpImageQuerySizeLod(ctx.U32[2], image, lod),
- zero, mips());
- case TextureType::ColorArray2D:
- case TextureType::Color3D:
- case TextureType::ColorArrayCube:
- return ctx.OpCompositeConstruct(ctx.U32[4], ctx.OpImageQuerySizeLod(ctx.U32[3], image, lod),
- mips());
- case TextureType::Buffer:
- return ctx.OpCompositeConstruct(ctx.U32[4], ctx.OpImageQuerySize(ctx.U32[1], image), zero,
- zero, mips());
- }
- throw LogicError("Unspecified image type {}", info.type.Value());
- }
- Id EmitImageQueryLod(EmitContext& ctx, IR::Inst*, const IR::Value& index, Id coords) {
- const Id zero{ctx.f32_zero_value};
- const Id sampler{Texture(ctx, index)};
- return ctx.OpCompositeConstruct(ctx.F32[4], ctx.OpImageQueryLod(ctx.F32[2], sampler, coords),
- zero, zero);
- }
- Id EmitImageGradient(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords,
- Id derivates, Id offset, Id lod_clamp) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- const ImageOperands operands(ctx, info.has_lod_clamp != 0, derivates, info.num_derivates,
- offset, lod_clamp);
- return Emit(&EmitContext::OpImageSparseSampleExplicitLod,
- &EmitContext::OpImageSampleExplicitLod, ctx, inst, ctx.F32[4], Texture(ctx, index),
- coords, operands.Mask(), operands.Span());
- }
- Id EmitImageRead(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- if (info.image_format == ImageFormat::Typeless && !ctx.profile.support_typeless_image_loads) {
- // LOG_WARNING(..., "Typeless image read not supported by host");
- return ctx.ConstantNull(ctx.U32[4]);
- }
- return Emit(&EmitContext::OpImageSparseRead, &EmitContext::OpImageRead, ctx, inst, ctx.U32[4],
- Image(ctx, index, info), coords, std::nullopt, std::span<const Id>{});
- }
- void EmitImageWrite(EmitContext& ctx, IR::Inst* inst, const IR::Value& index, Id coords, Id color) {
- const auto info{inst->Flags<IR::TextureInstInfo>()};
- ctx.OpImageWrite(Image(ctx, index, info), coords, color);
- }
- } // namespace Shader::Backend::SPIRV
|