committed by
ameerj
4 changed files with 84 additions and 58 deletions
-
2src/shader_recompiler/CMakeLists.txt
-
60src/shader_recompiler/frontend/maxwell/translate/impl/half_floating_point_add.cpp
-
49src/shader_recompiler/frontend/maxwell/translate/impl/half_floating_point_helper.cpp
-
31src/shader_recompiler/frontend/maxwell/translate/impl/half_floating_point_helper.h
@ -0,0 +1,49 @@ |
|||
// Copyright 2021 yuzu Emulator Project
|
|||
// Licensed under GPLv2 or any later version
|
|||
// Refer to the license.txt file included.
|
|||
|
|||
#include "shader_recompiler/frontend/maxwell/translate/impl/half_floating_point_helper.h"
|
|||
|
|||
namespace Shader::Maxwell { |
|||
|
|||
std::pair<IR::F16F32F64, IR::F16F32F64> Extract(IR::IREmitter& ir, IR::U32 value, Swizzle swizzle) { |
|||
switch (swizzle) { |
|||
case Swizzle::H1_H0: { |
|||
const IR::Value vector{ir.UnpackFloat2x16(value)}; |
|||
return {IR::F16{ir.CompositeExtract(vector, 0)}, IR::F16{ir.CompositeExtract(vector, 1)}}; |
|||
} |
|||
case Swizzle::H0_H0: { |
|||
const IR::F16 scalar{ir.CompositeExtract(ir.UnpackFloat2x16(value), 0)}; |
|||
return {scalar, scalar}; |
|||
} |
|||
case Swizzle::H1_H1: { |
|||
const IR::F16 scalar{ir.CompositeExtract(ir.UnpackFloat2x16(value), 1)}; |
|||
return {scalar, scalar}; |
|||
} |
|||
case Swizzle::F32: { |
|||
const IR::F32 scalar{ir.BitCast<IR::F32>(value)}; |
|||
return {scalar, scalar}; |
|||
} |
|||
} |
|||
throw InvalidArgument("Invalid swizzle {}", swizzle); |
|||
} |
|||
|
|||
IR::U32 MergeResult(IR::IREmitter& ir, IR::Reg dest, const IR::F16& lhs, const IR::F16& rhs, |
|||
Merge merge) { |
|||
switch (merge) { |
|||
case Merge::H1_H0: |
|||
return ir.PackFloat2x16(ir.CompositeConstruct(lhs, rhs)); |
|||
case Merge::F32: |
|||
return ir.BitCast<IR::U32, IR::F32>(ir.FPConvert(32, lhs)); |
|||
case Merge::MRG_H0: |
|||
case Merge::MRG_H1: { |
|||
const IR::Value vector{ir.UnpackFloat2x16(ir.GetReg(dest))}; |
|||
const bool h0{merge == Merge::MRG_H0}; |
|||
const IR::F16& insert{h0 ? lhs : rhs}; |
|||
return ir.PackFloat2x16(ir.CompositeInsert(vector, insert, h0 ? 0 : 1)); |
|||
} |
|||
} |
|||
throw InvalidArgument("Invalid merge {}", merge); |
|||
} |
|||
|
|||
} // namespace Shader::Maxwell
|
|||
@ -0,0 +1,31 @@ |
|||
// Copyright 2021 yuzu Emulator Project |
|||
// Licensed under GPLv2 or any later version |
|||
// Refer to the license.txt file included. |
|||
|
|||
#include "common/common_types.h" |
|||
#include "shader_recompiler/exception.h" |
|||
#include "shader_recompiler/frontend/maxwell/translate/impl/common_encoding.h" |
|||
#include "shader_recompiler/frontend/maxwell/translate/impl/impl.h" |
|||
|
|||
namespace Shader::Maxwell { |
|||
|
|||
enum class Merge : u64 { |
|||
H1_H0, |
|||
F32, |
|||
MRG_H0, |
|||
MRG_H1, |
|||
}; |
|||
|
|||
enum class Swizzle : u64 { |
|||
H1_H0, |
|||
F32, |
|||
H0_H0, |
|||
H1_H1, |
|||
}; |
|||
|
|||
std::pair<IR::F16F32F64, IR::F16F32F64> Extract(IR::IREmitter& ir, IR::U32 value, Swizzle swizzle); |
|||
|
|||
IR::U32 MergeResult(IR::IREmitter& ir, IR::Reg dest, const IR::F16& lhs, const IR::F16& rhs, |
|||
Merge merge); |
|||
|
|||
} // namespace Shader::Maxwell |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue