projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32e5fbf
)
freedreno/ir3: Handle newly added opcode nir_op_imad24_ir3
author
Eduardo Lima Mitev
<elima@igalia.com>
Fri, 28 Jun 2019 07:43:03 +0000
(09:43 +0200)
committer
Rob Clark
<robdclark@chromium.org>
Fri, 18 Oct 2019 22:08:54 +0000
(15:08 -0700)
Simply emit an ir3_MAD_S24 instruction in the backend.
Signed-off-by: Rob Clark <robdclark@chromium.org>
Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com>
Reviewed-by: Eduardo Lima Mitev <elima@igalia.com>
src/freedreno/ir3/ir3_compiler_nir.c
patch
|
blob
|
history
diff --git
a/src/freedreno/ir3/ir3_compiler_nir.c
b/src/freedreno/ir3/ir3_compiler_nir.c
index c1501d81b90880054f29c94539e620c5917c6383..5396cd219a72adf89d71d153a8e291db58b5f0a0 100644
(file)
--- a/
src/freedreno/ir3/ir3_compiler_nir.c
+++ b/
src/freedreno/ir3/ir3_compiler_nir.c
@@
-555,6
+555,9
@@
emit_alu(struct ir3_context *ctx, nir_alu_instr *alu)
case nir_op_imadsh_mix16:
dst[0] = ir3_MADSH_M16(b, src[0], 0, src[1], 0, src[2], 0);
break;
+ case nir_op_imad24_ir3:
+ dst[0] = ir3_MAD_S24(b, src[0], 0, src[1], 0, src[2], 0);
+ break;
case nir_op_ineg:
dst[0] = ir3_ABSNEG_S(b, src[0], IR3_REG_SNEG);
break;