nir: Remove useless ftrunc inside f2i/f2u.
[mesa.git] / src / glsl / nir / nir_opt_algebraic.py
1 #! /usr/bin/env python
2 #
3 # Copyright (C) 2014 Intel Corporation
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a
6 # copy of this software and associated documentation files (the "Software"),
7 # to deal in the Software without restriction, including without limitation
8 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 # and/or sell copies of the Software, and to permit persons to whom the
10 # Software is furnished to do so, subject to the following conditions:
11 #
12 # The above copyright notice and this permission notice (including the next
13 # paragraph) shall be included in all copies or substantial portions of the
14 # Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 # IN THE SOFTWARE.
23 #
24 # Authors:
25 # Jason Ekstrand (jason@jlekstrand.net)
26
27 import nir_algebraic
28
29 # Convenience variables
30 a = 'a'
31 b = 'b'
32 c = 'c'
33 d = 'd'
34
35 # Written in the form (<search>, <replace>) where <search> is an expression
36 # and <replace> is either an expression or a value. An expression is
37 # defined as a tuple of the form (<op>, <src0>, <src1>, <src2>, <src3>)
38 # where each source is either an expression or a value. A value can be
39 # either a numeric constant or a string representing a variable name.
40 #
41 # Variable names are specified as "[#]name[@type]" where "#" inicates that
42 # the given variable will only match constants and the type indicates that
43 # the given variable will only match values from ALU instructions with the
44 # given output type.
45 #
46 # For constants, you have to be careful to make sure that it is the right
47 # type because python is unaware of the source and destination types of the
48 # opcodes.
49
50 optimizations = [
51 (('fneg', ('fneg', a)), a),
52 (('ineg', ('ineg', a)), a),
53 (('fabs', ('fabs', a)), ('fabs', a)),
54 (('fabs', ('fneg', a)), ('fabs', a)),
55 (('iabs', ('iabs', a)), ('iabs', a)),
56 (('iabs', ('ineg', a)), ('iabs', a)),
57 (('fadd', a, 0.0), a),
58 (('iadd', a, 0), a),
59 (('fadd', ('fmul', a, b), ('fmul', a, c)), ('fmul', a, ('fadd', b, c))),
60 (('iadd', ('imul', a, b), ('imul', a, c)), ('imul', a, ('iadd', b, c))),
61 (('fadd', ('fneg', a), a), 0.0),
62 (('iadd', ('ineg', a), a), 0),
63 (('fmul', a, 0.0), 0.0),
64 (('imul', a, 0), 0),
65 (('fmul', a, 1.0), a),
66 (('imul', a, 1), a),
67 (('fmul', a, -1.0), ('fneg', a)),
68 (('imul', a, -1), ('ineg', a)),
69 (('ffma', 0.0, a, b), b),
70 (('ffma', a, 0.0, b), b),
71 (('ffma', a, b, 0.0), ('fmul', a, b)),
72 (('ffma', a, 1.0, b), ('fadd', a, b)),
73 (('ffma', 1.0, a, b), ('fadd', a, b)),
74 (('flrp', a, b, 0.0), a),
75 (('flrp', a, b, 1.0), b),
76 (('flrp', a, a, b), a),
77 (('flrp', 0.0, a, b), ('fmul', a, b)),
78 (('flrp', a, b, c), ('fadd', ('fmul', c, ('fsub', b, a)), a), 'options->lower_flrp'),
79 (('fadd', ('fmul', a, ('fadd', 1.0, ('fneg', c))), ('fmul', b, c)), ('flrp', a, b, c), '!options->lower_flrp'),
80 (('fadd', a, ('fmul', c, ('fadd', b, ('fneg', a)))), ('flrp', a, b, c), '!options->lower_flrp'),
81 (('ffma', a, b, c), ('fadd', ('fmul', a, b), c), 'options->lower_ffma'),
82 (('fadd', ('fmul', a, b), c), ('ffma', a, b, c), '!options->lower_ffma'),
83 # Comparison simplifications
84 (('inot', ('flt', a, b)), ('fge', a, b)),
85 (('inot', ('fge', a, b)), ('flt', a, b)),
86 (('inot', ('ilt', a, b)), ('ige', a, b)),
87 (('inot', ('ige', a, b)), ('ilt', a, b)),
88 (('fge', ('fneg', ('fabs', a)), 0.0), ('feq', a, 0.0)),
89 (('bcsel', ('flt', a, b), a, b), ('fmin', a, b)),
90 (('bcsel', ('flt', a, b), b, a), ('fmax', a, b)),
91 (('bcsel', ('inot', 'a@bool'), b, c), ('bcsel', a, c, b)),
92 (('bcsel', a, ('bcsel', a, b, c), d), ('bcsel', a, b, d)),
93 (('fmin', ('fmax', a, 0.0), 1.0), ('fsat', a), '!options->lower_fsat'),
94 (('fsat', a), ('fmin', ('fmax', a, 0.0), 1.0), 'options->lower_fsat'),
95 (('fsat', ('fsat', a)), ('fsat', a)),
96 (('fmin', ('fmax', ('fmin', ('fmax', a, 0.0), 1.0), 0.0), 1.0), ('fmin', ('fmax', a, 0.0), 1.0)),
97 (('ior', ('flt', a, b), ('flt', a, c)), ('flt', a, ('fmax', b, c))),
98 (('ior', ('fge', a, b), ('fge', a, c)), ('fge', a, ('fmin', b, c))),
99 # Emulating booleans
100 (('fmul', ('b2f', a), ('b2f', b)), ('b2f', ('iand', a, b))),
101 (('fsat', ('fadd', ('b2f', a), ('b2f', b))), ('b2f', ('ior', a, b))),
102 (('iand', 'a@bool', 1.0), ('b2f', a)),
103 (('flt', ('fneg', ('b2f', a)), 0), a), # Generated by TGSI KILL_IF.
104 (('flt', ('fsub', 0.0, ('b2f', a)), 0), a), # Generated by TGSI KILL_IF.
105 # Comparison with the same args. Note that these are not done for
106 # the float versions because NaN always returns false on float
107 # inequalities.
108 (('ilt', a, a), False),
109 (('ige', a, a), True),
110 (('ieq', a, a), True),
111 (('ine', a, a), False),
112 (('ult', a, a), False),
113 (('uge', a, a), True),
114 # Logical and bit operations
115 (('fand', a, 0.0), 0.0),
116 (('iand', a, a), a),
117 (('iand', a, 0), 0),
118 (('ior', a, a), a),
119 (('ior', a, 0), a),
120 (('fxor', a, a), 0.0),
121 (('ixor', a, a), 0),
122 (('inot', ('inot', a)), a),
123 # DeMorgan's Laws
124 (('iand', ('inot', a), ('inot', b)), ('inot', ('ior', a, b))),
125 (('ior', ('inot', a), ('inot', b)), ('inot', ('iand', a, b))),
126 # Shift optimizations
127 (('ishl', 0, a), 0),
128 (('ishl', a, 0), a),
129 (('ishr', 0, a), 0),
130 (('ishr', a, 0), a),
131 (('ushr', 0, a), 0),
132 (('ushr', a, 0), 0),
133 # Exponential/logarithmic identities
134 (('fexp2', ('flog2', a)), a), # 2^lg2(a) = a
135 (('fexp', ('flog', a)), a), # e^ln(a) = a
136 (('flog2', ('fexp2', a)), a), # lg2(2^a) = a
137 (('flog', ('fexp', a)), a), # ln(e^a) = a
138 (('fpow', a, b), ('fexp2', ('fmul', ('flog2', a), b)), 'options->lower_fpow'), # a^b = 2^(lg2(a)*b)
139 (('fexp2', ('fmul', ('flog2', a), b)), ('fpow', a, b), '!options->lower_fpow'), # 2^(lg2(a)*b) = a^b
140 (('fexp', ('fmul', ('flog', a), b)), ('fpow', a, b), '!options->lower_fpow'), # e^(ln(a)*b) = a^b
141 (('fpow', a, 1.0), a),
142 (('fpow', a, 2.0), ('fmul', a, a)),
143 (('fpow', 2.0, a), ('fexp2', a)),
144 (('fsqrt', ('fexp2', a)), ('fexp2', ('fmul', 0.5, a))),
145 (('fsqrt', ('fexp', a)), ('fexp', ('fmul', 0.5, a))),
146 (('frcp', ('fexp2', a)), ('fexp2', ('fneg', a))),
147 (('frcp', ('fexp', a)), ('fexp', ('fneg', a))),
148 (('frsq', ('fexp2', a)), ('fexp2', ('fmul', -0.5, a))),
149 (('frsq', ('fexp', a)), ('fexp', ('fmul', -0.5, a))),
150 (('flog2', ('fsqrt', a)), ('fmul', 0.5, ('flog2', a))),
151 (('flog', ('fsqrt', a)), ('fmul', 0.5, ('flog', a))),
152 (('flog2', ('frcp', a)), ('fneg', ('flog2', a))),
153 (('flog', ('frcp', a)), ('fneg', ('flog', a))),
154 (('flog2', ('frsq', a)), ('fmul', -0.5, ('flog2', a))),
155 (('flog', ('frsq', a)), ('fmul', -0.5, ('flog', a))),
156 (('flog2', ('fpow', a, b)), ('fmul', b, ('flog2', a))),
157 (('flog', ('fpow', a, b)), ('fmul', b, ('flog', a))),
158 (('fadd', ('flog2', a), ('flog2', b)), ('flog2', ('fmul', a, b))),
159 (('fadd', ('flog', a), ('flog', b)), ('flog', ('fmul', a, b))),
160 (('fadd', ('flog2', a), ('fneg', ('flog2', b))), ('flog2', ('fdiv', a, b))),
161 (('fadd', ('flog', a), ('fneg', ('flog', b))), ('flog', ('fdiv', a, b))),
162 (('fmul', ('fexp2', a), ('fexp2', b)), ('fexp2', ('fadd', a, b))),
163 (('fmul', ('fexp', a), ('fexp', b)), ('fexp', ('fadd', a, b))),
164 # Division and reciprocal
165 (('fdiv', 1.0, a), ('frcp', a)),
166 (('frcp', ('frcp', a)), a),
167 (('frcp', ('fsqrt', a)), ('frsq', a)),
168 (('fsqrt', a), ('frcp', ('frsq', a)), 'options->lower_fsqrt'),
169 (('frcp', ('frsq', a)), ('fsqrt', a), '!options->lower_fsqrt'),
170 # Boolean simplifications
171 (('ine', 'a@bool', 0), 'a'),
172 (('ieq', 'a@bool', 0), ('inot', 'a')),
173 (('bcsel', a, True, False), ('ine', a, 0)),
174 (('bcsel', a, False, True), ('ieq', a, 0)),
175 (('bcsel', True, b, c), b),
176 (('bcsel', False, b, c), c),
177 # The result of this should be hit by constant propagation and, in the
178 # next round of opt_algebraic, get picked up by one of the above two.
179 (('bcsel', '#a', b, c), ('bcsel', ('ine', 'a', 0), b, c)),
180
181 (('bcsel', a, b, b), b),
182 (('fcsel', a, b, b), b),
183
184 # Conversions
185 (('f2i', ('ftrunc', a)), ('f2i', a)),
186 (('f2u', ('ftrunc', a)), ('f2u', a)),
187
188 # Subtracts
189 (('fsub', a, ('fsub', 0.0, b)), ('fadd', a, b)),
190 (('isub', a, ('isub', 0, b)), ('iadd', a, b)),
191 (('fsub', a, b), ('fadd', a, ('fneg', b)), '!options->lower_negate'),
192 (('isub', a, b), ('iadd', a, ('ineg', b)), '!options->lower_negate'),
193 (('fneg', a), ('fsub', 0.0, a), 'options->lower_negate'),
194 (('ineg', a), ('isub', 0, a), 'options->lower_negate'),
195 (('fadd', a, ('fsub', 0.0, b)), ('fsub', a, b)),
196 (('iadd', a, ('isub', 0, b)), ('isub', a, b)),
197 (('fabs', ('fsub', 0.0, a)), ('fabs', a)),
198 (('iabs', ('isub', 0, a)), ('iabs', a)),
199 ]
200
201 # Add optimizations to handle the case where the result of a ternary is
202 # compared to a constant. This way we can take things like
203 #
204 # (a ? 0 : 1) > 0
205 #
206 # and turn it into
207 #
208 # a ? (0 > 0) : (1 > 0)
209 #
210 # which constant folding will eat for lunch. The resulting ternary will
211 # further get cleaned up by the boolean reductions above and we will be
212 # left with just the original variable "a".
213 for op in ['flt', 'fge', 'feq', 'fne',
214 'ilt', 'ige', 'ieq', 'ine', 'ult', 'uge']:
215 optimizations += [
216 ((op, ('bcsel', 'a', '#b', '#c'), '#d'),
217 ('bcsel', 'a', (op, 'b', 'd'), (op, 'c', 'd'))),
218 ((op, '#d', ('bcsel', a, '#b', '#c')),
219 ('bcsel', 'a', (op, 'd', 'b'), (op, 'd', 'c'))),
220 ]
221
222 # This section contains "late" optimizations that should be run after the
223 # regular optimizations have finished. Optimizations should go here if
224 # they help code generation but do not necessarily produce code that is
225 # more easily optimizable.
226 late_optimizations = [
227 (('flt', ('fadd', a, b), 0.0), ('flt', a, ('fneg', b))),
228 (('fge', ('fadd', a, b), 0.0), ('fge', a, ('fneg', b))),
229 (('feq', ('fadd', a, b), 0.0), ('feq', a, ('fneg', b))),
230 (('fne', ('fadd', a, b), 0.0), ('fne', a, ('fneg', b))),
231 ]
232
233 print nir_algebraic.AlgebraicPass("nir_opt_algebraic", optimizations).render()
234 print nir_algebraic.AlgebraicPass("nir_opt_algebraic_late",
235 late_optimizations).render()