pan/midgard: Bytemasks should round up, not round down
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Fri, 10 Jan 2020 23:04:39 +0000 (18:04 -0500)
committerMarge Bot <eric+marge@anholt.net>
Sat, 18 Jan 2020 14:18:48 +0000 (14:18 +0000)
Otherwise we'll lost components in DCE.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3462>

src/panfrost/midgard/compiler.h
src/panfrost/midgard/midgard_opt_dce.c
src/panfrost/midgard/mir.c

index 172b6d70f6951ed99f7e6e2ad2083596acf563a9..ab9cc819ef6aee927dd7e1455c3625fc7438207c 100644 (file)
@@ -537,7 +537,7 @@ midgard_reg_mode mir_mode_for_destsize(unsigned size);
 uint16_t mir_from_bytemask(uint16_t bytemask, midgard_reg_mode mode);
 uint16_t mir_to_bytemask(midgard_reg_mode mode, unsigned mask);
 uint16_t mir_bytemask(midgard_instruction *ins);
-uint16_t mir_round_bytemask_down(uint16_t mask, midgard_reg_mode mode);
+uint16_t mir_round_bytemask_up(uint16_t mask, midgard_reg_mode mode);
 void mir_set_bytemask(midgard_instruction *ins, uint16_t bytemask);
 unsigned mir_upper_override(midgard_instruction *ins);
 
index aaac84fe16e4608a0b9681d953f6d4b36b278198..0b2823be782e2ac95af9f9264f8d6da6b98e3018 100644 (file)
@@ -74,7 +74,7 @@ midgard_opt_dead_code_eliminate(compiler_context *ctx, midgard_block *block)
                         midgard_reg_mode mode = mir_typesize(ins);
                         unsigned oldmask = ins->mask;
 
-                        unsigned rounded = mir_round_bytemask_down(live[ins->dest], mode);
+                        unsigned rounded = mir_round_bytemask_up(live[ins->dest], mode);
                         unsigned cmask = mir_from_bytemask(rounded, mode);
 
                         ins->mask &= cmask;
index 506bcabe656a69d2e9aaf075fd8697fd970b40bc..d4ce935934c0079ff6ded92d51fb5a7f6d10685a 100644 (file)
@@ -381,22 +381,21 @@ mir_from_bytemask(uint16_t bytemask, midgard_reg_mode mode)
         return value;
 }
 
-/* Rounds down a bytemask to fit a given component count. Iterate each
- * component, and check if all bytes in the component are masked on */
+/* Rounds up a bytemask to fill a given component count. Iterate each
+ * component, and check if any bytes in the component are masked on */
 
 uint16_t
-mir_round_bytemask_down(uint16_t mask, midgard_reg_mode mode)
+mir_round_bytemask_up(uint16_t mask, midgard_reg_mode mode)
 {
         unsigned bytes = mir_bytes_for_mode(mode);
         unsigned maxmask = mask_of(bytes);
         unsigned channels = 16 / bytes;
 
         for (unsigned c = 0; c < channels; ++c) {
-                /* Get bytes in component */
-                unsigned submask = (mask >> (c * bytes)) & maxmask;
+                unsigned submask = maxmask << (c * bytes);
 
-                if (submask != maxmask)
-                        mask &= ~(maxmask << (c * bytes));
+                if (mask & submask)
+                        mask |= submask;
         }
 
         return mask;