yuzu/src/shader_recompiler/backend/glsl/emit_context.h

172 lines
5 KiB
C++
Raw Normal View History

2021-05-20 02:58:32 +01:00
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <string>
#include <utility>
2021-05-27 02:18:17 +01:00
#include <vector>
2021-05-20 02:58:32 +01:00
#include <fmt/format.h>
#include "shader_recompiler/backend/glsl/var_alloc.h"
2021-05-20 02:58:32 +01:00
#include "shader_recompiler/stage.h"
namespace Shader {
struct Info;
struct Profile;
struct RuntimeInfo;
2021-05-20 02:58:32 +01:00
} // namespace Shader
namespace Shader::Backend {
struct Bindings;
}
namespace Shader::IR {
class Inst;
struct Program;
} // namespace Shader::IR
namespace Shader::Backend::GLSL {
2021-06-02 05:33:03 +01:00
struct GenericElementInfo {
2021-06-04 01:57:52 +01:00
std::string name;
2021-06-02 05:33:03 +01:00
u32 first_element{};
u32 num_components{};
};
struct TextureImageDefinition {
u32 binding;
u32 count;
};
2021-05-20 02:58:32 +01:00
class EmitContext {
public:
explicit EmitContext(IR::Program& program, Bindings& bindings, const Profile& profile_,
const RuntimeInfo& runtime_info_);
2021-05-20 02:58:32 +01:00
template <GlslVarType type, typename... Args>
void Add(const char* format_str, IR::Inst& inst, Args&&... args) {
const auto var_def{var_alloc.AddDefine(inst, type)};
if (var_def.empty()) {
// skip assigment.
2021-06-11 05:33:33 +01:00
code += fmt::format(format_str + 3, std::forward<Args>(args)...);
} else {
code += fmt::format(format_str, var_def, std::forward<Args>(args)...);
}
2021-05-21 07:00:12 +01:00
// TODO: Remove this
code += '\n';
}
template <typename... Args>
void AddU1(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::U1>(format_str, inst, args...);
}
2021-05-25 06:52:02 +01:00
template <typename... Args>
void AddF16x2(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::F16x2>(format_str, inst, args...);
2021-05-25 06:52:02 +01:00
}
template <typename... Args>
void AddU32(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::U32>(format_str, inst, args...);
}
2021-05-20 02:58:32 +01:00
template <typename... Args>
2021-05-21 07:00:12 +01:00
void AddF32(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::F32>(format_str, inst, args...);
}
template <typename... Args>
void AddU64(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::U64>(format_str, inst, args...);
}
2021-05-22 06:52:03 +01:00
template <typename... Args>
void AddF64(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::F64>(format_str, inst, args...);
2021-05-22 06:52:03 +01:00
}
template <typename... Args>
void AddU32x2(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::U32x2>(format_str, inst, args...);
}
template <typename... Args>
void AddF32x2(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::F32x2>(format_str, inst, args...);
}
template <typename... Args>
void AddU32x3(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::U32x3>(format_str, inst, args...);
}
template <typename... Args>
void AddF32x3(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::F32x3>(format_str, inst, args...);
}
template <typename... Args>
void AddU32x4(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::U32x4>(format_str, inst, args...);
2021-05-20 02:58:32 +01:00
}
template <typename... Args>
void AddF32x4(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::F32x4>(format_str, inst, args...);
}
template <typename... Args>
void AddPrecF32(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::PrecF32>(format_str, inst, args...);
}
template <typename... Args>
void AddPrecF64(const char* format_str, IR::Inst& inst, Args&&... args) {
Add<GlslVarType::PrecF64>(format_str, inst, args...);
}
2021-05-20 02:58:32 +01:00
template <typename... Args>
void Add(const char* format_str, Args&&... args) {
code += fmt::format(format_str, std::forward<Args>(args)...);
// TODO: Remove this
code += '\n';
}
std::string header;
2021-05-20 02:58:32 +01:00
std::string code;
VarAlloc var_alloc;
2021-05-20 02:58:32 +01:00
const Info& info;
const Profile& profile;
const RuntimeInfo& runtime_info;
2021-05-20 02:58:32 +01:00
Stage stage{};
std::string_view stage_name = "invalid";
std::string_view position_name = "gl_Position";
std::vector<TextureImageDefinition> texture_buffers;
std::vector<TextureImageDefinition> image_buffers;
std::vector<TextureImageDefinition> textures;
std::vector<TextureImageDefinition> images;
2021-06-02 05:33:03 +01:00
std::array<std::array<GenericElementInfo, 4>, 32> output_generics{};
2021-05-27 02:18:17 +01:00
bool uses_y_direction{};
2021-05-30 01:00:06 +01:00
bool uses_cc_carry{};
2021-05-20 02:58:32 +01:00
private:
2021-06-13 01:14:56 +01:00
void SetupExtensions();
2021-05-28 03:28:33 +01:00
void DefineConstantBuffers(Bindings& bindings);
void DefineStorageBuffers(Bindings& bindings);
2021-06-02 05:33:03 +01:00
void DefineGenericOutput(size_t index, u32 invocations);
2021-05-24 23:35:37 +01:00
void DefineHelperFunctions();
void DefineConstants();
2021-06-04 01:24:56 +01:00
std::string DefineGlobalMemoryFunctions();
2021-05-27 02:18:17 +01:00
void SetupImages(Bindings& bindings);
2021-06-04 01:57:52 +01:00
void SetupTextures(Bindings& bindings);
2021-05-20 02:58:32 +01:00
};
} // namespace Shader::Backend::GLSL