[Mesa-dev] [PATCH 02/30] pan/midgard: Fix component count handling for ldst
Alyssa Rosenzweig
alyssa.rosenzweig at collabora.com
Sat Sep 28 19:02:07 UTC 2019
It's not based on the writemask and it can't be inferred; it's just
intrinsic to the op itself.
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
---
src/panfrost/midgard/helpers.h | 15 +++++++--
src/panfrost/midgard/mir.c | 59 ++++++++++++++--------------------
2 files changed, 37 insertions(+), 37 deletions(-)
diff --git a/src/panfrost/midgard/helpers.h b/src/panfrost/midgard/helpers.h
index 343fad0fea8..024a6380d29 100644
--- a/src/panfrost/midgard/helpers.h
+++ b/src/panfrost/midgard/helpers.h
@@ -392,9 +392,20 @@ swizzle_to_component(unsigned swizzle)
static inline unsigned
-component_to_swizzle(unsigned c)
+component_to_swizzle(unsigned c, unsigned count)
{
- return SWIZZLE(c, c, c, c);
+ switch (count) {
+ case 1:
+ return SWIZZLE(c, c, c, c);
+ case 2:
+ return SWIZZLE(c, c + 1, c + 1, c + 1);
+ case 3:
+ return SWIZZLE(c, c + 1, c + 2, c + 2);
+ case 4:
+ return SWIZZLE(c, c + 1, c + 2, c + 3);
+ default:
+ unreachable("Invalid component count");
+ }
}
#endif
diff --git a/src/panfrost/midgard/mir.c b/src/panfrost/midgard/mir.c
index 8874937aa5d..9e5ba7abcb0 100644
--- a/src/panfrost/midgard/mir.c
+++ b/src/panfrost/midgard/mir.c
@@ -64,7 +64,24 @@ mir_get_swizzle(midgard_instruction *ins, unsigned idx)
uint8_t raw =
(idx == 2) ? ins->load_store.arg_2 : ins->load_store.arg_1;
- return component_to_swizzle(midgard_ldst_select(raw).component);
+ /* TODO: Integrate component count with properties */
+ unsigned components = 1;
+ switch (ins->load_store.op) {
+ case midgard_op_ld_int4:
+ components = (idx == 0) ? 2 : 1;
+ break;
+ case midgard_op_st_int4:
+ components = (idx == 1) ? 2 : 1;
+ break;
+ case midgard_op_ld_cubemap_coords:
+ components = 3;
+ break;
+ default:
+ components = 1;
+ break;
+ }
+
+ return component_to_swizzle(midgard_ldst_select(raw).component, components);
}
default:
unreachable("Unknown load/store source");
@@ -362,26 +379,6 @@ mir_source_count(midgard_instruction *ins)
}
}
-static unsigned
-mir_component_count_implicit(midgard_instruction *ins, unsigned i)
-{
- if (ins->type == TAG_LOAD_STORE_4) {
- switch (ins->load_store.op) {
- /* Address implicitly 64-bit */
- case midgard_op_ld_int4:
- return (i == 0) ? 1 : 0;
-
- case midgard_op_st_int4:
- return (i == 1) ? 1 : 0;
-
- default:
- return 0;
- }
- }
-
- return 0;
-}
-
unsigned
mir_mask_of_read_components(midgard_instruction *ins, unsigned node)
{
@@ -394,21 +391,13 @@ mir_mask_of_read_components(midgard_instruction *ins, unsigned node)
if (ins->compact_branch && ins->writeout && (i == 0))
return 0xF;
- unsigned swizzle = mir_get_swizzle(ins, i);
- unsigned m = mir_mask_of_read_components_single(swizzle, ins->mask);
-
- /* Sometimes multi-arg ops are passed implicitly */
- unsigned implicit = mir_component_count_implicit(ins, i);
- assert(implicit < 2);
-
- /* Extend the mask */
- if (implicit == 1) {
- /* Ensure it's a single bit currently */
- assert((m >> __builtin_ctz(m)) == 0x1);
+ /* ALU ops act componentwise so we need to pay attention to
+ * their mask. Texture/ldst does not so we don't clamp source
+ * readmasks based on the writemask */
+ unsigned qmask = (ins->type == TAG_ALU_4) ? ins->mask : 0xF;
- /* Set the next bit to extend one*/
- m |= (m << 1);
- }
+ unsigned swizzle = mir_get_swizzle(ins, i);
+ unsigned m = mir_mask_of_read_components_single(swizzle, qmask);
/* Handle dot products and things */
if (ins->type == TAG_ALU_4 && !ins->compact_branch) {
--
2.23.0
More information about the mesa-dev
mailing list