suyu/src/shader_recompiler/ir_opt/passes.h

27 lines
777 B
C++
Raw Normal View History

2021-01-09 07:30:07 +01:00
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "shader_recompiler/frontend/ir/basic_block.h"
2021-02-03 01:07:00 +01:00
#include "shader_recompiler/frontend/ir/function.h"
2021-01-09 07:30:07 +01:00
namespace Shader::Optimization {
2021-02-03 01:07:00 +01:00
template <typename Func>
void Invoke(Func&& func, IR::Function& function) {
for (const auto& block : function.blocks) {
func(*block);
}
}
void ConstantPropagationPass(IR::Block& block);
2021-01-09 07:30:07 +01:00
void DeadCodeEliminationPass(IR::Block& block);
void GlobalMemoryToStorageBufferPass(IR::Block& block);
void IdentityRemovalPass(IR::Function& function);
2021-02-03 01:07:00 +01:00
void SsaRewritePass(IR::Function& function);
void VerificationPass(const IR::Function& function);
2021-01-09 07:30:07 +01:00
} // namespace Shader::Optimization