freedreno/ir3: remove regmask_set_if_not()
authorRob Clark <robdclark@chromium.org>
Mon, 24 Feb 2020 19:55:29 +0000 (11:55 -0800)
committerMarge Bot <eric+marge@anholt.net>
Fri, 28 Feb 2020 16:53:41 +0000 (16:53 +0000)
No longer used.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3989>

src/freedreno/ir3/ir3.h

index 609e93f0299662ad71f695dd81d86033d7fc1e92..c02b748810c68442a6367e7fca869789c04fa1c1 100644 (file)
@@ -1623,27 +1623,6 @@ static inline void regmask_or(regmask_t *dst, regmask_t *a, regmask_t *b)
                (*dst)[i] = (*a)[i] | (*b)[i];
 }
 
-/* set bits in a if not set in b, conceptually:
- *   a |= (reg & ~b)
- */
-static inline void regmask_set_if_not(regmask_t *a,
-               struct ir3_register *reg, regmask_t *b)
-{
-       unsigned idx = regmask_idx(reg);
-       if (reg->flags & IR3_REG_RELATIV) {
-               unsigned i;
-               for (i = 0; i < reg->size; i++, idx++)
-                       if (!((*b)[idx / 8] & (1 << (idx % 8))))
-                               (*a)[idx / 8] |= 1 << (idx % 8);
-       } else {
-               unsigned mask;
-               for (mask = reg->wrmask; mask; mask >>= 1, idx++)
-                       if (mask & 1)
-                               if (!((*b)[idx / 8] & (1 << (idx % 8))))
-                                       (*a)[idx / 8] |= 1 << (idx % 8);
-       }
-}
-
 static inline bool regmask_get(regmask_t *regmask,
                struct ir3_register *reg)
 {