aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-04-30 13:06:56 -0400
committerMarge Bot <[email protected]>2020-05-01 18:26:36 +0000
commit23a20cfcf30d3c303b2c08ebc1e7557cb7a2e48b (patch)
treee17fb8754b326cf8219ae2a5e31cad9224634e06 /src
parent1628c144a98b5bac11571fbdbb12538ce60dcd2a (diff)
pan/mdg: Move constant switch opts to algebraic pass
No shader-db changes. Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4852>
Diffstat (limited to 'src')
-rw-r--r--src/panfrost/midgard/midgard_compile.c45
-rw-r--r--src/panfrost/midgard/midgard_nir_algebraic.py16
2 files changed, 15 insertions, 46 deletions
diff --git a/src/panfrost/midgard/midgard_compile.c b/src/panfrost/midgard/midgard_compile.c
index a560990ffc4..3fab4d6c37c 100644
--- a/src/panfrost/midgard/midgard_compile.c
+++ b/src/panfrost/midgard/midgard_compile.c
@@ -2045,41 +2045,6 @@ inline_alu_constants(compiler_context *ctx, midgard_block *block)
}
}
-/* Being a little silly with the names, but returns the op that is the bitwise
- * inverse of the op with the argument switched. I.e. (f and g are
- * contrapositives):
- *
- * f(a, b) = ~g(b, a)
- *
- * Corollary: if g is the contrapositve of f, f is the contrapositive of g:
- *
- * f(a, b) = ~g(b, a)
- * ~f(a, b) = g(b, a)
- * ~f(a, b) = ~h(a, b) where h is the contrapositive of g
- * f(a, b) = h(a, b)
- *
- * Thus we define this function in pairs.
- */
-
-static inline midgard_alu_op
-mir_contrapositive(midgard_alu_op op)
-{
- switch (op) {
- case midgard_alu_op_flt:
- return midgard_alu_op_fle;
- case midgard_alu_op_fle:
- return midgard_alu_op_flt;
-
- case midgard_alu_op_ilt:
- return midgard_alu_op_ile;
- case midgard_alu_op_ile:
- return midgard_alu_op_ilt;
-
- default:
- unreachable("No known contrapositive");
- }
-}
-
/* Midgard supports two types of constants, embedded constants (128-bit) and
* inline constants (16-bit). Sometimes, especially with scalar ops, embedded
* constants can be demoted to inline constants, for space savings and
@@ -2112,16 +2077,6 @@ embedded_to_inline_constant(compiler_context *ctx, midgard_block *block)
bool flip = alu_opcode_props[op].props & OP_COMMUTES;
switch (op) {
- /* Conditionals can be inverted */
- case midgard_alu_op_flt:
- case midgard_alu_op_ilt:
- case midgard_alu_op_fle:
- case midgard_alu_op_ile:
- ins->alu.op = mir_contrapositive(ins->alu.op);
- ins->invert = true;
- flip = true;
- break;
-
case midgard_alu_op_fcsel:
case midgard_alu_op_icsel:
DBG("Missed non-commutative flip (%s)\n", alu_opcode_props[op].name);
diff --git a/src/panfrost/midgard/midgard_nir_algebraic.py b/src/panfrost/midgard/midgard_nir_algebraic.py
index e8547a5067c..ae399c36d5b 100644
--- a/src/panfrost/midgard/midgard_nir_algebraic.py
+++ b/src/panfrost/midgard/midgard_nir_algebraic.py
@@ -92,6 +92,20 @@ SPECIAL = ['fexp2', 'flog2', 'fsin', 'fcos', 'frcp', 'frsq']
for op in SPECIAL:
converts += [((op + '@16', a), ('f2f16', (op, ('f2f32', a))))]
+# Try to force constants to the right
+constant_switch = [
+ # fge gets flipped to fle, so we invert to keep the order
+ (('fge', 'a', '#b'), (('inot', ('flt', a, b)))),
+ (('fge32', 'a', '#b'), (('inot', ('flt32', a, b)))),
+ (('ige32', 'a', '#b'), (('inot', ('ilt32', a, b)))),
+ (('uge32', 'a', '#b'), (('inot', ('ult32', a, b)))),
+
+ # fge gets mapped to fle with a flip
+ (('flt32', '#a', 'b'), ('inot', ('fge32', a, b))),
+ (('ilt32', '#a', 'b'), ('inot', ('ige32', a, b))),
+ (('ult32', '#a', 'b'), ('inot', ('uge32', a, b)))
+]
+
# Midgard scales fsin/fcos arguments by pi.
# Pass must be run only once, after the main loop
@@ -114,7 +128,7 @@ def run():
print('#include "midgard_nir.h"')
print(nir_algebraic.AlgebraicPass("midgard_nir_lower_algebraic_late",
- algebraic_late + converts).render())
+ algebraic_late + converts + constant_switch).render())
print(nir_algebraic.AlgebraicPass("midgard_nir_scale_trig",
scale_trig).render())