2021-05-05 07:19:08 +02:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2021-05-07 11:31:30 +02:00
|
|
|
#include <utility>
|
2021-05-19 02:04:09 +02:00
|
|
|
#include <vector>
|
2021-05-07 11:31:30 +02:00
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2021-05-05 07:19:08 +02:00
|
|
|
|
|
|
|
#include "shader_recompiler/backend/glasm/reg_alloc.h"
|
2021-05-19 21:32:03 +02:00
|
|
|
#include "shader_recompiler/stage.h"
|
2021-05-05 07:19:08 +02:00
|
|
|
|
2021-05-19 02:04:09 +02:00
|
|
|
namespace Shader {
|
|
|
|
struct Info;
|
2021-05-19 21:32:03 +02:00
|
|
|
struct Profile;
|
2021-05-21 07:12:32 +02:00
|
|
|
struct RuntimeInfo;
|
2021-05-19 21:32:03 +02:00
|
|
|
} // namespace Shader
|
2021-05-19 02:04:09 +02:00
|
|
|
|
|
|
|
namespace Shader::Backend {
|
|
|
|
struct Bindings;
|
|
|
|
}
|
|
|
|
|
2021-05-07 11:31:30 +02:00
|
|
|
namespace Shader::IR {
|
|
|
|
class Inst;
|
2021-05-08 21:28:52 +02:00
|
|
|
struct Program;
|
|
|
|
} // namespace Shader::IR
|
2021-05-07 11:31:30 +02:00
|
|
|
|
2021-05-05 07:19:08 +02:00
|
|
|
namespace Shader::Backend::GLASM {
|
|
|
|
|
|
|
|
class EmitContext {
|
|
|
|
public:
|
2021-05-21 07:12:32 +02:00
|
|
|
explicit EmitContext(IR::Program& program, Bindings& bindings, const Profile& profile_,
|
|
|
|
const RuntimeInfo& runtime_info_);
|
2021-05-05 07:19:08 +02:00
|
|
|
|
2021-05-07 11:31:30 +02:00
|
|
|
template <typename... Args>
|
2021-05-09 08:11:34 +02:00
|
|
|
void Add(const char* format_str, IR::Inst& inst, Args&&... args) {
|
2021-06-29 05:44:03 +02:00
|
|
|
code += fmt::format(fmt::runtime(format_str), reg_alloc.Define(inst),
|
|
|
|
std::forward<Args>(args)...);
|
2021-05-07 11:31:30 +02:00
|
|
|
// TODO: Remove this
|
|
|
|
code += '\n';
|
|
|
|
}
|
|
|
|
|
2021-05-09 23:03:01 +02:00
|
|
|
template <typename... Args>
|
|
|
|
void LongAdd(const char* format_str, IR::Inst& inst, Args&&... args) {
|
2021-06-29 05:44:03 +02:00
|
|
|
code += fmt::format(fmt::runtime(format_str), reg_alloc.LongDefine(inst),
|
|
|
|
std::forward<Args>(args)...);
|
2021-05-09 23:03:01 +02:00
|
|
|
// TODO: Remove this
|
|
|
|
code += '\n';
|
|
|
|
}
|
|
|
|
|
2021-05-07 11:31:30 +02:00
|
|
|
template <typename... Args>
|
2021-05-09 08:11:34 +02:00
|
|
|
void Add(const char* format_str, Args&&... args) {
|
2021-06-29 05:44:03 +02:00
|
|
|
code += fmt::format(fmt::runtime(format_str), std::forward<Args>(args)...);
|
2021-05-07 11:31:30 +02:00
|
|
|
// TODO: Remove this
|
|
|
|
code += '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string code;
|
|
|
|
RegAlloc reg_alloc{*this};
|
2021-05-22 23:29:43 +02:00
|
|
|
const Info& info;
|
2021-05-19 21:32:03 +02:00
|
|
|
const Profile& profile;
|
2021-05-21 07:12:32 +02:00
|
|
|
const RuntimeInfo& runtime_info;
|
2021-05-19 02:04:09 +02:00
|
|
|
|
2021-05-19 07:05:24 +02:00
|
|
|
std::vector<u32> texture_buffer_bindings;
|
2021-05-20 07:18:52 +02:00
|
|
|
std::vector<u32> image_buffer_bindings;
|
2021-05-19 02:04:09 +02:00
|
|
|
std::vector<u32> texture_bindings;
|
2021-05-20 07:18:52 +02:00
|
|
|
std::vector<u32> image_bindings;
|
2021-05-10 23:21:28 +02:00
|
|
|
|
2021-05-19 21:32:03 +02:00
|
|
|
Stage stage{};
|
2021-05-10 23:21:28 +02:00
|
|
|
std::string_view stage_name = "invalid";
|
2021-05-20 22:28:09 +02:00
|
|
|
std::string_view attrib_name = "invalid";
|
2021-05-26 21:00:36 +02:00
|
|
|
|
2021-06-21 06:07:10 +02:00
|
|
|
u32 num_safety_loop_vars{};
|
2021-05-26 21:00:36 +02:00
|
|
|
bool uses_y_direction{};
|
2021-05-05 07:19:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Shader::Backend::GLASM
|