summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir
diff options
context:
space:
mode:
authorGravatar ameerj2021-02-28 23:33:53 -0500
committerGravatar ameerj2021-07-22 21:51:22 -0400
commit20390c0548d6eef2af67a363ee120a630267b741 (patch)
tree0df880552f80d79c769403f04df5c364397396d1 /src/shader_recompiler/frontend/ir
parentshader: Implement BFI (diff)
downloadyuzu-20390c0548d6eef2af67a363ee120a630267b741.tar.gz
yuzu-20390c0548d6eef2af67a363ee120a630267b741.tar.xz
yuzu-20390c0548d6eef2af67a363ee120a630267b741.zip
shader: Implement IMNMX
Diffstat (limited to 'src/shader_recompiler/frontend/ir')
-rw-r--r--src/shader_recompiler/frontend/ir/ir_emitter.cpp16
-rw-r--r--src/shader_recompiler/frontend/ir/ir_emitter.h5
-rw-r--r--src/shader_recompiler/frontend/ir/opcodes.inc4
3 files changed, 25 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/ir_emitter.cpp b/src/shader_recompiler/frontend/ir/ir_emitter.cpp
index 54fdf9559..04edcdfd8 100644
--- a/src/shader_recompiler/frontend/ir/ir_emitter.cpp
+++ b/src/shader_recompiler/frontend/ir/ir_emitter.cpp
@@ -816,6 +816,22 @@ U32 IREmitter::BitwiseNot(const U32& a) {
816 return Inst<U32>(Opcode::BitwiseNot32, a); 816 return Inst<U32>(Opcode::BitwiseNot32, a);
817} 817}
818 818
819U32 IREmitter::SMin(const U32& a, const U32& b) {
820 return Inst<U32>(Opcode::SMin32, a, b);
821}
822
823U32 IREmitter::UMin(const U32& a, const U32& b) {
824 return Inst<U32>(Opcode::UMin32, a, b);
825}
826
827U32 IREmitter::SMax(const U32& a, const U32& b) {
828 return Inst<U32>(Opcode::SMax32, a, b);
829}
830
831U32 IREmitter::UMax(const U32& a, const U32& b) {
832 return Inst<U32>(Opcode::UMax32, a, b);
833}
834
819U1 IREmitter::ILessThan(const U32& lhs, const U32& rhs, bool is_signed) { 835U1 IREmitter::ILessThan(const U32& lhs, const U32& rhs, bool is_signed) {
820 return Inst<U1>(is_signed ? Opcode::SLessThan : Opcode::ULessThan, lhs, rhs); 836 return Inst<U1>(is_signed ? Opcode::SLessThan : Opcode::ULessThan, lhs, rhs);
821} 837}
diff --git a/src/shader_recompiler/frontend/ir/ir_emitter.h b/src/shader_recompiler/frontend/ir/ir_emitter.h
index 9dec22145..00ba2e4cd 100644
--- a/src/shader_recompiler/frontend/ir/ir_emitter.h
+++ b/src/shader_recompiler/frontend/ir/ir_emitter.h
@@ -163,6 +163,11 @@ public:
163 [[nodiscard]] U32 BitCount(const U32& value); 163 [[nodiscard]] U32 BitCount(const U32& value);
164 [[nodiscard]] U32 BitwiseNot(const U32& a); 164 [[nodiscard]] U32 BitwiseNot(const U32& a);
165 165
166 [[nodiscard]] U32 SMin(const U32& a, const U32& b);
167 [[nodiscard]] U32 UMin(const U32& a, const U32& b);
168 [[nodiscard]] U32 SMax(const U32& a, const U32& b);
169 [[nodiscard]] U32 UMax(const U32& a, const U32& b);
170
166 [[nodiscard]] U1 ILessThan(const U32& lhs, const U32& rhs, bool is_signed); 171 [[nodiscard]] U1 ILessThan(const U32& lhs, const U32& rhs, bool is_signed);
167 [[nodiscard]] U1 IEqual(const U32& lhs, const U32& rhs); 172 [[nodiscard]] U1 IEqual(const U32& lhs, const U32& rhs);
168 [[nodiscard]] U1 ILessThanEqual(const U32& lhs, const U32& rhs, bool is_signed); 173 [[nodiscard]] U1 ILessThanEqual(const U32& lhs, const U32& rhs, bool is_signed);
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc
index 59a13e911..2c4a997dc 100644
--- a/src/shader_recompiler/frontend/ir/opcodes.inc
+++ b/src/shader_recompiler/frontend/ir/opcodes.inc
@@ -235,6 +235,10 @@ OPCODE(BitReverse32, U32, U32,
235OPCODE(BitCount32, U32, U32, ) 235OPCODE(BitCount32, U32, U32, )
236OPCODE(BitwiseNot32, U32, U32, ) 236OPCODE(BitwiseNot32, U32, U32, )
237 237
238OPCODE(SMin32, U32, U32, U32, )
239OPCODE(UMin32, U32, U32, U32, )
240OPCODE(SMax32, U32, U32, U32, )
241OPCODE(UMax32, U32, U32, U32, )
238OPCODE(SLessThan, U1, U32, U32, ) 242OPCODE(SLessThan, U1, U32, U32, )
239OPCODE(ULessThan, U1, U32, U32, ) 243OPCODE(ULessThan, U1, U32, U32, )
240OPCODE(IEqual, U1, U32, U32, ) 244OPCODE(IEqual, U1, U32, U32, )