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