yuzu/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp

103 lines
2.7 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.
#include "shader_recompiler/backend/spirv/emit_spirv.h"
namespace Shader::Backend::SPIRV {
2021-02-17 04:59:28 +01:00
void EmitGetRegister(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitSetRegister(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetPred(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitSetPred(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitSetGotoVariable(EmitContext&) {
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetGotoVariable(EmitContext&) {
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
Id EmitGetCbuf(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset) {
2021-02-08 06:54:35 +01:00
if (!binding.IsImmediate()) {
throw NotImplementedException("Constant buffer indexing");
}
if (!offset.IsImmediate()) {
throw NotImplementedException("Variable constant buffer offset");
}
2021-02-16 08:10:22 +01:00
const Id imm_offset{ctx.Constant(ctx.U32[1], offset.U32() / 4)};
const Id cbuf{ctx.cbufs[binding.U32()]};
const Id access_chain{ctx.OpAccessChain(ctx.uniform_u32, cbuf, ctx.u32_zero_value, imm_offset)};
return ctx.OpLoad(ctx.U32[1], access_chain);
2021-02-08 06:54:35 +01:00
}
2021-02-17 04:59:28 +01:00
void EmitGetAttribute(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitSetAttribute(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetAttributeIndexed(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitSetAttributeIndexed(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetZFlag(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetSFlag(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetCFlag(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitGetOFlag(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitSetZFlag(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitSetSFlag(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitSetCFlag(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitSetOFlag(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
Id EmitWorkgroupId(EmitContext& ctx) {
2021-02-16 08:10:22 +01:00
return ctx.OpLoad(ctx.U32[3], ctx.workgroup_id);
2021-02-08 06:54:35 +01:00
}
2021-02-17 04:59:28 +01:00
Id EmitLocalInvocationId(EmitContext& ctx) {
2021-02-16 08:10:22 +01:00
return ctx.OpLoad(ctx.U32[3], ctx.local_invocation_id);
2021-02-08 06:54:35 +01:00
}
} // namespace Shader::Backend::SPIRV