shader_recompiler: redundant IR opcode removed
This commit is contained in:
parent
9227a2b868
commit
0212e68752
|
@ -122,10 +122,6 @@ Id EmitFPSqrt(EmitContext& ctx, Id value) {
|
|||
return ctx.OpSqrt(ctx.F32[1], value);
|
||||
}
|
||||
|
||||
Id EmitFPInvSqrt(EmitContext& ctx, Id value) {
|
||||
return ctx.OpInverseSqrt(ctx.F32[1], value);
|
||||
}
|
||||
|
||||
Id EmitFPSaturate16(EmitContext& ctx, Id value) {
|
||||
const Id zero{ctx.Constant(ctx.F16[1], u16{0})};
|
||||
const Id one{ctx.Constant(ctx.F16[1], u16{0x3c00})};
|
||||
|
|
|
@ -174,7 +174,6 @@ Id EmitFPRecip64(EmitContext& ctx, Id value);
|
|||
Id EmitFPRecipSqrt32(EmitContext& ctx, Id value);
|
||||
Id EmitFPRecipSqrt64(EmitContext& ctx, Id value);
|
||||
Id EmitFPSqrt(EmitContext& ctx, Id value);
|
||||
Id EmitFPInvSqrt(EmitContext& ctx, Id value);
|
||||
Id EmitFPSaturate16(EmitContext& ctx, Id value);
|
||||
Id EmitFPSaturate32(EmitContext& ctx, Id value);
|
||||
Id EmitFPSaturate64(EmitContext& ctx, Id value);
|
||||
|
|
|
@ -195,7 +195,7 @@ void Translator::V_MAX_F32(const GcnInst& inst) {
|
|||
|
||||
void Translator::V_RSQ_F32(const GcnInst& inst) {
|
||||
const IR::F32 src0{GetSrc(inst.src[0], true)};
|
||||
SetDst(inst.dst[0], ir.FPInvSqrt(src0));
|
||||
SetDst(inst.dst[0], ir.FPRecipSqrt(src0));
|
||||
}
|
||||
|
||||
} // namespace Shader::Gcn
|
||||
|
|
|
@ -609,10 +609,6 @@ F32 IREmitter::FPSqrt(const F32& value) {
|
|||
return Inst<F32>(Opcode::FPSqrt, value);
|
||||
}
|
||||
|
||||
F32 IREmitter::FPInvSqrt(const F32& value) {
|
||||
return Inst<F32>(Opcode::FPInvSqrt, value);
|
||||
}
|
||||
|
||||
F32F64 IREmitter::FPSaturate(const F32F64& value) {
|
||||
switch (value.Type()) {
|
||||
case Type::F32:
|
||||
|
|
|
@ -123,7 +123,6 @@ public:
|
|||
[[nodiscard]] F32F64 FPRecip(const F32F64& value);
|
||||
[[nodiscard]] F32F64 FPRecipSqrt(const F32F64& value);
|
||||
[[nodiscard]] F32 FPSqrt(const F32& value);
|
||||
[[nodiscard]] F32 FPInvSqrt(const F32& value);
|
||||
[[nodiscard]] F32F64 FPSaturate(const F32F64& value);
|
||||
[[nodiscard]] F32F64 FPClamp(const F32F64& value, const F32F64& min_value,
|
||||
const F32F64& max_value);
|
||||
|
|
|
@ -142,7 +142,6 @@ OPCODE(FPRecip64, F64, F64,
|
|||
OPCODE(FPRecipSqrt32, F32, F32, )
|
||||
OPCODE(FPRecipSqrt64, F64, F64, )
|
||||
OPCODE(FPSqrt, F32, F32, )
|
||||
OPCODE(FPInvSqrt, F32, F32, )
|
||||
OPCODE(FPSin, F32, F32, )
|
||||
OPCODE(FPExp2, F32, F32, )
|
||||
OPCODE(FPCos, F32, F32, )
|
||||
|
|
Loading…
Reference in New Issue