2024-03-06 06:26:38 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
2022-04-23 10:59:50 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2021-01-09 07:30:07 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-03-08 22:31:53 +01:00
|
|
|
#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
|
|
|
|
2022-11-11 03:32:53 +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);
|
2023-06-10 17:40:58 +02:00
|
|
|
void ConditionalBarrierPass(IR::Program& program);
|
2022-11-09 17:58:10 +01:00
|
|
|
void ConstantPropagationPass(Environment& env, IR::Program& program);
|
2021-03-14 07:41:05 +01:00
|
|
|
void DeadCodeEliminationPass(IR::Program& program);
|
2023-10-29 00:44:27 +02:00
|
|
|
void GlobalMemoryToStorageBufferPass(IR::Program& program, const HostTranslateInfo& host_info);
|
2021-03-14 07:41:05 +01:00
|
|
|
void IdentityRemovalPass(IR::Program& program);
|
2023-06-10 04:57:50 +02:00
|
|
|
void LowerFp64ToFp32(IR::Program& program);
|
2021-02-19 22:10:18 +01:00
|
|
|
void LowerFp16ToFp32(IR::Program& program);
|
2021-06-23 06:33:42 +02:00
|
|
|
void LowerInt64ToInt32(IR::Program& program);
|
2021-07-22 03:25:34 +02:00
|
|
|
void RescalingPass(IR::Program& program);
|
2021-03-14 07:41:05 +01:00
|
|
|
void SsaRewritePass(IR::Program& program);
|
2022-09-01 16:05:11 +02:00
|
|
|
void PositionPass(Environment& env, IR::Program& program);
|
2022-11-11 03:32:53 +01:00
|
|
|
void TexturePass(Environment& env, IR::Program& program, const HostTranslateInfo& host_info);
|
2022-11-30 23:16:00 +01:00
|
|
|
void LayerPass(IR::Program& program, const HostTranslateInfo& host_info);
|
2023-11-18 04:29:12 +01:00
|
|
|
void VendorWorkaroundPass(IR::Program& program);
|
2021-03-14 07:41:05 +01:00
|
|
|
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
|