shader_recompiler/frontend: implement V_MIN3_U32

This commit is contained in:
Daniel R. 2024-11-21 19:52:48 +01:00
parent e968b1c23f
commit 6904764aab
No known key found for this signature in database
GPG Key ID: B8ADC8F57BA18DBA
2 changed files with 10 additions and 0 deletions

View File

@ -221,6 +221,7 @@ public:
void V_FMA_F64(const GcnInst& inst);
void V_MIN3_F32(const GcnInst& inst);
void V_MIN3_I32(const GcnInst& inst);
void V_MIN3_U32(const GcnInst& inst);
void V_MAX3_F32(const GcnInst& inst);
void V_MAX3_U32(bool is_signed, const GcnInst& inst);
void V_MED3_F32(const GcnInst& inst);

View File

@ -347,6 +347,8 @@ void Translator::EmitVectorAlu(const GcnInst& inst) {
return V_MIN3_F32(inst);
case Opcode::V_MIN3_I32:
return V_MIN3_I32(inst);
case Opcode::V_MIN3_U32:
return V_MIN3_U32(inst);
case Opcode::V_MAX3_F32:
return V_MAX3_F32(inst);
case Opcode::V_MAX3_I32:
@ -1064,6 +1066,13 @@ void Translator::V_MIN3_I32(const GcnInst& inst) {
SetDst(inst.dst[0], ir.SMin(src0, ir.SMin(src1, src2)));
}
void Translator::V_MIN3_U32(const GcnInst& inst) {
const IR::U32 src0{GetSrc(inst.src[0])};
const IR::U32 src1{GetSrc(inst.src[1])};
const IR::U32 src2{GetSrc(inst.src[2])};
SetDst(inst.dst[0], ir.UMin(src0, ir.UMin(src1, src2)));
}
void Translator::V_MAX3_F32(const GcnInst& inst) {
const IR::F32 src0{GetSrc<IR::F32>(inst.src[0])};
const IR::F32 src1{GetSrc<IR::F32>(inst.src[1])};