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.
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
|
2021-03-14 06:41:05 +00:00
|
|
|
#include "shader_recompiler/frontend/ir/basic_block.h"
|
2021-02-06 02:11:23 +00:00
|
|
|
#include "shader_recompiler/frontend/ir/program.h"
|
2021-04-21 03:35:47 +00:00
|
|
|
#include "shader_recompiler/frontend/ir/value.h"
|
2021-02-06 02:11:23 +00:00
|
|
|
|
|
|
|
namespace Shader::IR {
|
|
|
|
|
|
|
|
std::string DumpProgram(const Program& program) {
|
|
|
|
size_t index{0};
|
|
|
|
std::map<const IR::Inst*, size_t> inst_to_index;
|
|
|
|
std::map<const IR::Block*, size_t> block_to_index;
|
|
|
|
|
2021-03-14 06:41:05 +00:00
|
|
|
for (const IR::Block* const block : program.blocks) {
|
|
|
|
block_to_index.emplace(block, index);
|
|
|
|
++index;
|
2021-02-06 02:11:23 +00:00
|
|
|
}
|
|
|
|
std::string ret;
|
2021-03-14 06:41:05 +00:00
|
|
|
for (const auto& block : program.blocks) {
|
|
|
|
ret += IR::DumpBlock(*block, block_to_index, inst_to_index, index) + '\n';
|
2021-02-06 02:11:23 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-02-19 21:10:18 +00:00
|
|
|
} // namespace Shader::IR
|