2021-02-05 18:11:23 -08:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-03-26 23:08:31 -07:00
|
|
|
#include <array>
|
2021-02-05 18:11:23 -08:00
|
|
|
#include <string>
|
|
|
|
|
2021-05-13 20:40:54 -07:00
|
|
|
#include "shader_recompiler/frontend/ir/abstract_syntax_list.h"
|
2021-03-13 22:41:05 -08:00
|
|
|
#include "shader_recompiler/frontend/ir/basic_block.h"
|
2021-04-12 15:41:22 -07:00
|
|
|
#include "shader_recompiler/program_header.h"
|
2021-02-15 23:10:22 -08:00
|
|
|
#include "shader_recompiler/shader_info.h"
|
2021-03-19 15:28:31 -07:00
|
|
|
#include "shader_recompiler/stage.h"
|
2021-02-05 18:11:23 -08:00
|
|
|
|
|
|
|
namespace Shader::IR {
|
|
|
|
|
|
|
|
struct Program {
|
2021-05-13 20:40:54 -07:00
|
|
|
AbstractSyntaxList syntax_list;
|
2021-03-13 22:41:05 -08:00
|
|
|
BlockList blocks;
|
|
|
|
BlockList post_order_blocks;
|
2021-02-15 23:10:22 -08:00
|
|
|
Info info;
|
2021-03-19 15:28:31 -07:00
|
|
|
Stage stage{};
|
2021-03-26 23:08:31 -07:00
|
|
|
std::array<u32, 3> workgroup_size{};
|
2021-04-12 15:41:22 -07:00
|
|
|
OutputTopology output_topology{};
|
|
|
|
u32 output_vertices{};
|
|
|
|
u32 invocations{};
|
2021-03-28 15:53:34 -07:00
|
|
|
u32 local_memory_size{};
|
|
|
|
u32 shared_memory_size{};
|
2021-06-23 22:41:09 -07:00
|
|
|
bool is_geometry_passthrough{};
|
2021-02-05 18:11:23 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
[[nodiscard]] std::string DumpProgram(const Program& program);
|
|
|
|
|
|
|
|
} // namespace Shader::IR
|