summaryrefslogtreecommitdiffstats
path: root/src/panfrost/midgard/midgard_ops.h
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-02-11 21:20:30 -0500
committerAlyssa Rosenzweig <[email protected]>2020-02-16 09:16:47 -0500
commit453c64663ce938952588325ba4c960bc63297582 (patch)
tree9b586400362ab6d9f7026ba19ebb5f1276b0b90e /src/panfrost/midgard/midgard_ops.h
parent9168e7a65deefae7bb8a40c583c205c408cbecab (diff)
pan/midgard: Overhaul tag handling
We unify disparate metadata about tags into a single structure to ensure information is not left out. Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3835>
Diffstat (limited to 'src/panfrost/midgard/midgard_ops.h')
-rw-r--r--src/panfrost/midgard/midgard_ops.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/panfrost/midgard/midgard_ops.h b/src/panfrost/midgard/midgard_ops.h
index 205ac968a8c..f0cfc5db424 100644
--- a/src/panfrost/midgard/midgard_ops.h
+++ b/src/panfrost/midgard/midgard_ops.h
@@ -28,8 +28,7 @@
extern struct mir_op_props alu_opcode_props[256];
extern struct mir_ldst_op_props load_store_opcode_props[256];
-extern midgard_word_type midgard_word_types[16];
-extern unsigned midgard_word_size[16];
+extern struct mir_tag_props midgard_tag_props[16];
#define OP_IS_STORE(op) (load_store_opcode_props[op].props & LDST_STORE)