2021-01-09 06:30:07 +00:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2021-02-11 19:39:06 +00:00
|
|
|
#include <chrono>
|
2021-01-09 06:30:07 +00:00
|
|
|
#include <filesystem>
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
|
2021-02-08 05:54:35 +00:00
|
|
|
#include "shader_recompiler/backend/spirv/emit_spirv.h"
|
2021-01-09 06:30:07 +00:00
|
|
|
#include "shader_recompiler/file_environment.h"
|
|
|
|
#include "shader_recompiler/frontend/ir/basic_block.h"
|
|
|
|
#include "shader_recompiler/frontend/ir/ir_emitter.h"
|
|
|
|
#include "shader_recompiler/frontend/maxwell/control_flow.h"
|
|
|
|
#include "shader_recompiler/frontend/maxwell/decode.h"
|
|
|
|
#include "shader_recompiler/frontend/maxwell/location.h"
|
|
|
|
#include "shader_recompiler/frontend/maxwell/program.h"
|
|
|
|
#include "shader_recompiler/frontend/maxwell/translate/translate.h"
|
|
|
|
|
|
|
|
using namespace Shader;
|
|
|
|
using namespace Shader::Maxwell;
|
|
|
|
|
|
|
|
template <typename Func>
|
|
|
|
static void ForEachFile(const std::filesystem::path& path, Func&& func) {
|
|
|
|
std::filesystem::directory_iterator end;
|
|
|
|
for (std::filesystem::directory_iterator it{path}; it != end; ++it) {
|
|
|
|
if (std::filesystem::is_directory(*it)) {
|
|
|
|
ForEachFile(*it, func);
|
|
|
|
} else {
|
|
|
|
func(*it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RunDatabase() {
|
|
|
|
std::vector<std::unique_ptr<FileEnvironment>> map;
|
|
|
|
ForEachFile("D:\\Shaders\\Database", [&](const std::filesystem::path& path) {
|
|
|
|
map.emplace_back(std::make_unique<FileEnvironment>(path.string().c_str()));
|
|
|
|
});
|
2021-02-11 19:39:06 +00:00
|
|
|
auto block_pool{std::make_unique<ObjectPool<Flow::Block>>()};
|
2021-02-14 04:24:32 +00:00
|
|
|
using namespace std::chrono;
|
|
|
|
auto t0 = high_resolution_clock::now();
|
2021-02-11 19:39:06 +00:00
|
|
|
int N = 1;
|
|
|
|
int n = 0;
|
|
|
|
for (int i = 0; i < N; ++i) {
|
2021-01-09 06:30:07 +00:00
|
|
|
for (auto& env : map) {
|
2021-02-11 19:39:06 +00:00
|
|
|
++n;
|
2021-01-09 06:30:07 +00:00
|
|
|
// fmt::print(stdout, "Decoding {}\n", path.string());
|
2021-02-11 19:39:06 +00:00
|
|
|
|
2021-01-09 06:30:07 +00:00
|
|
|
const Location start_address{0};
|
2021-02-11 19:39:06 +00:00
|
|
|
block_pool->ReleaseContents();
|
|
|
|
Flow::CFG cfg{*env, *block_pool, start_address};
|
2021-02-03 00:07:00 +00:00
|
|
|
// fmt::print(stdout, "{}\n", cfg->Dot());
|
2021-01-09 06:30:07 +00:00
|
|
|
// IR::Program program{env, cfg};
|
|
|
|
// Optimize(program);
|
|
|
|
// const std::string code{EmitGLASM(program)};
|
|
|
|
}
|
|
|
|
}
|
2021-02-14 04:24:32 +00:00
|
|
|
auto t = high_resolution_clock::now();
|
|
|
|
fmt::print(stdout, "{} ms", duration_cast<milliseconds>(t - t0).count() / double(N));
|
2021-01-09 06:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
// RunDatabase();
|
|
|
|
|
2021-02-11 19:39:06 +00:00
|
|
|
auto flow_block_pool{std::make_unique<ObjectPool<Flow::Block>>()};
|
2021-02-06 02:11:23 +00:00
|
|
|
auto inst_pool{std::make_unique<ObjectPool<IR::Inst>>()};
|
|
|
|
auto block_pool{std::make_unique<ObjectPool<IR::Block>>()};
|
|
|
|
|
2021-02-14 04:24:32 +00:00
|
|
|
// FileEnvironment env{"D:\\Shaders\\Database\\Oninaki\\CS8F146B41DB6BD826.bin"};
|
|
|
|
FileEnvironment env{"D:\\Shaders\\shader.bin"};
|
2021-02-14 23:15:42 +00:00
|
|
|
block_pool->ReleaseContents();
|
|
|
|
inst_pool->ReleaseContents();
|
|
|
|
flow_block_pool->ReleaseContents();
|
|
|
|
Flow::CFG cfg{env, *flow_block_pool, 0};
|
|
|
|
fmt::print(stdout, "{}\n", cfg.Dot());
|
|
|
|
IR::Program program{TranslateProgram(*inst_pool, *block_pool, env, cfg)};
|
|
|
|
fmt::print(stdout, "{}\n", IR::DumpProgram(program));
|
2021-02-15 01:46:40 +00:00
|
|
|
Backend::SPIRV::EmitSPIRV spirv{program};
|
2021-01-09 06:30:07 +00:00
|
|
|
}
|