diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-03-24 22:27:06 +0000 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-03-26 23:35:15 +0000 |
commit | 89fdbb67072f0a1e62fda812f9c07bcf9ec79ea1 (patch) | |
tree | 11eb27df6860dcfe887d63ac66e8688dfb31a20c /src/gallium/drivers/panfrost/midgard/helpers.h | |
parent | 121417ef1d3d5b1b039174eb171cedab59f2deb0 (diff) |
panfrost/midgard: Add fcsel_i opcode
Whereas a normal fcsel acts on a boolean input in r31.w, the fcsel_i
variant acts on an integer input in r31.w, which can be preloaded with
an instruction like imov (with the appropriate negate flag on the
source).
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/midgard/helpers.h')
-rw-r--r-- | src/gallium/drivers/panfrost/midgard/helpers.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/panfrost/midgard/helpers.h b/src/gallium/drivers/panfrost/midgard/helpers.h index 606eb9982e7..268259ce432 100644 --- a/src/gallium/drivers/panfrost/midgard/helpers.h +++ b/src/gallium/drivers/panfrost/midgard/helpers.h @@ -223,6 +223,7 @@ static unsigned alu_opcode_props[256] = { [midgard_alu_op_ile] = UNITS_MOST, [midgard_alu_op_icsel] = UNITS_ADD, + [midgard_alu_op_fcsel_i] = UNITS_ADD, [midgard_alu_op_fcsel] = UNITS_ADD | UNIT_SMUL, [midgard_alu_op_frcp] = UNIT_VLUT, |