freedreno: a2xx: fix fneg/fabs/fsat opcodes
authorJonathan Marek <jonathan@marek.ca>
Thu, 1 Aug 2019 18:43:12 +0000 (14:43 -0400)
committerJonathan Marek <jonathan@marek.ca>
Fri, 2 Aug 2019 15:58:22 +0000 (15:58 +0000)
Previously we would get a fmov with modifiers, but now that mov has no type
these opcodes need to be supported.

Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Reviewed-by: Rob Clark <robdclark@chromium.org>
src/gallium/drivers/freedreno/a2xx/ir2_nir.c

index 6121627c080a5396ac581e1798e0aae2a15f3c99..980ab7b1013041f3476edbe2b6ad52b7c1146686 100644 (file)
@@ -286,6 +286,9 @@ instr_create_alu(struct ir2_context *ctx, nir_op opcode, unsigned ncomp)
                [0 ... nir_num_opcodes - 1] = {-1, -1},
 
                [nir_op_mov] = {MAXs, MAXv},
+               [nir_op_fneg] = {MAXs, MAXv},
+               [nir_op_fabs] = {MAXs, MAXv},
+               [nir_op_fsat] = {MAXs, MAXv},
                [nir_op_fsign] = {-1, CNDGTEv},
                [nir_op_fadd] = {ADDs, ADDv},
                [nir_op_fsub] = {ADDs, ADDv},
@@ -428,6 +431,15 @@ emit_alu(struct ir2_context *ctx, nir_alu_instr * alu)
 
        /* workarounds for NIR ops that don't map directly to a2xx ops */
        switch (alu->op) {
+       case nir_op_fneg:
+               instr->src[0].negate = 1;
+               break;
+       case nir_op_fabs:
+               instr->src[0].abs = 1;
+               break;
+       case nir_op_fsat:
+               instr->alu.saturate = 1;
+               break;
        case nir_op_slt:
                tmp = instr->src[0];
                instr->src[0] = instr->src[1];