panfrost: Preliminary work for mipmaps
[mesa.git] / src / gallium / drivers / panfrost / midgard / midgard_nir_algebraic.py
1 #
2 # Copyright (C) 2018 Alyssa Rosenzweig
3 #
4 # Copyright (C) 2016 Intel Corporation
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a
7 # copy of this software and associated documentation files (the "Software"),
8 # to deal in the Software without restriction, including without limitation
9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 # and/or sell copies of the Software, and to permit persons to whom the
11 # Software is furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice (including the next
14 # paragraph) shall be included in all copies or substantial portions of the
15 # Software.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23 # IN THE SOFTWARE.
24
25 import argparse
26 import sys
27 import math
28
29 a = 'a'
30 b = 'b'
31
32 algebraic = [
33 # XXX: We have hw ops for this, just unknown atm..
34 #(('fsign@32', a), ('i2f32@32', ('isign', ('f2i32@32', ('fmul', a, 0x43800000)))))
35 #(('fsign', a), ('fcsel', ('fge', a, 0), 1.0, ('fcsel', ('flt', a, 0.0), -1.0, 0.0)))
36 (('fsign', a), ('bcsel', ('fge', a, 0), 1.0, -1.0)),
37 ]
38
39 algebraic_late = [
40 # ineg must be lowered late, but only for integers; floats will try to
41 # have modifiers attached... hence why this has to be here rather than
42 # a more standard lower_negate approach
43
44 (('ineg', a), ('isub', 0, a)),
45 ]
46
47
48 # Midgard scales fsin/fcos arguments by pi.
49 # Pass must be run only once, after the main loop
50
51 scale_trig = [
52 (('fsin', a), ('fsin', ('fdiv', a, math.pi))),
53 (('fcos', a), ('fcos', ('fdiv', a, math.pi))),
54 ]
55
56 def main():
57 parser = argparse.ArgumentParser()
58 parser.add_argument('-p', '--import-path', required=True)
59 args = parser.parse_args()
60 sys.path.insert(0, args.import_path)
61 run()
62
63
64 def run():
65 import nir_algebraic # pylint: disable=import-error
66
67 print('#include "midgard_nir.h"')
68 print(nir_algebraic.AlgebraicPass("midgard_nir_lower_algebraic",
69 algebraic).render())
70
71 print(nir_algebraic.AlgebraicPass("midgard_nir_lower_algebraic_late",
72 algebraic_late).render())
73
74 print(nir_algebraic.AlgebraicPass("midgard_nir_scale_trig",
75 scale_trig).render())
76
77
78 if __name__ == '__main__':
79 main()