suyu/src/shader_recompiler/ir_opt/passes.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.4 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2021-01-09 07:30:07 +01:00
#pragma once
#include "shader_recompiler/environment.h"
2021-02-16 08:10:22 +01:00
#include "shader_recompiler/frontend/ir/program.h"
2021-01-09 07:30:07 +01:00
namespace Shader {
struct HostTranslateInfo;
}
2021-01-09 07:30:07 +01:00
namespace Shader::Optimization {
2021-04-04 06:47:14 +02:00
void CollectShaderInfoPass(Environment& env, IR::Program& program);
void ConditionalBarrierPass(IR::Program& program);
void ConstantPropagationPass(Environment& env, IR::Program& program);
void DeadCodeEliminationPass(IR::Program& program);
void GlobalMemoryToStorageBufferPass(IR::Program& program, const HostTranslateInfo& host_info);
void IdentityRemovalPass(IR::Program& program);
void LowerFp64ToFp32(IR::Program& program);
2021-02-19 22:10:18 +01:00
void LowerFp16ToFp32(IR::Program& program);
void LowerInt64ToInt32(IR::Program& program);
2021-07-22 03:25:34 +02:00
void RescalingPass(IR::Program& program);
void SsaRewritePass(IR::Program& program);
void PositionPass(Environment& env, IR::Program& program);
void TexturePass(Environment& env, IR::Program& program, const HostTranslateInfo& host_info);
void LayerPass(IR::Program& program, const HostTranslateInfo& host_info);
void VendorWorkaroundPass(IR::Program& program);
void VerificationPass(const IR::Program& program);
2021-01-09 07:30:07 +01:00
2021-04-19 01:03:38 +02:00
// Dual Vertex
void VertexATransformPass(IR::Program& program);
void VertexBTransformPass(IR::Program& program);
void JoinTextureInfo(Info& base, Info& source);
void JoinStorageInfo(Info& base, Info& source);
2021-01-09 07:30:07 +01:00
} // namespace Shader::Optimization