1b8e80941Smrgfrom functools import reduce
2b8e80941Smrgimport operator
3b8e80941Smrg
4b8e80941Smrgtemplate = """\
5b8e80941Smrg/* Copyright (C) 2018 Red Hat
6b8e80941Smrg *
7b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a
8b8e80941Smrg * copy of this software and associated documentation files (the "Software"),
9b8e80941Smrg * to deal in the Software without restriction, including without limitation
10b8e80941Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11b8e80941Smrg * and/or sell copies of the Software, and to permit persons to whom the
12b8e80941Smrg * Software is furnished to do so, subject to the following conditions:
13b8e80941Smrg *
14b8e80941Smrg * The above copyright notice and this permission notice (including the next
15b8e80941Smrg * paragraph) shall be included in all copies or substantial portions of the
16b8e80941Smrg * Software.
17b8e80941Smrg *
18b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
21b8e80941Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22b8e80941Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23b8e80941Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24b8e80941Smrg * IN THE SOFTWARE.
25b8e80941Smrg */
26b8e80941Smrg
27b8e80941Smrg#include "nir.h"
28b8e80941Smrg
29b8e80941Smrgconst nir_intrinsic_info nir_intrinsic_infos[nir_num_intrinsics] = {
30b8e80941Smrg% for name, opcode in sorted(INTR_OPCODES.items()):
31b8e80941Smrg{
32b8e80941Smrg   .name = "${name}",
33b8e80941Smrg   .num_srcs = ${opcode.num_srcs},
34b8e80941Smrg% if opcode.src_components:
35b8e80941Smrg   .src_components = {
36b8e80941Smrg      ${", ".join(str(comp) for comp in opcode.src_components)}
37b8e80941Smrg   },
38b8e80941Smrg% endif
39b8e80941Smrg   .has_dest = ${"true" if opcode.has_dest else "false"},
40b8e80941Smrg   .dest_components = ${max(opcode.dest_components, 0)},
41b8e80941Smrg   .dest_bit_sizes = ${hex(reduce(operator.or_, opcode.bit_sizes, 0))},
42b8e80941Smrg   .num_indices = ${opcode.num_indices},
43b8e80941Smrg% if opcode.indices:
44b8e80941Smrg   .index_map = {
45b8e80941Smrg% for i in range(len(opcode.indices)):
46b8e80941Smrg      [${opcode.indices[i]}] = ${i + 1},
47b8e80941Smrg% endfor
48b8e80941Smrg    },
49b8e80941Smrg% endif
50b8e80941Smrg   .flags = ${"0" if len(opcode.flags) == 0 else " | ".join(opcode.flags)},
51b8e80941Smrg},
52b8e80941Smrg% endfor
53b8e80941Smrg};
54b8e80941Smrg"""
55b8e80941Smrg
56b8e80941Smrgfrom nir_intrinsics import INTR_OPCODES
57b8e80941Smrgfrom mako.template import Template
58b8e80941Smrgimport argparse
59b8e80941Smrgimport os
60b8e80941Smrg
61b8e80941Smrgdef main():
62b8e80941Smrg    parser = argparse.ArgumentParser()
63b8e80941Smrg    parser.add_argument('--outdir', required=True,
64b8e80941Smrg                        help='Directory to put the generated files in')
65b8e80941Smrg
66b8e80941Smrg    args = parser.parse_args()
67b8e80941Smrg
68b8e80941Smrg    path = os.path.join(args.outdir, 'nir_intrinsics.c')
69b8e80941Smrg    with open(path, 'wb') as f:
70b8e80941Smrg        f.write(Template(template, output_encoding='utf-8').render(INTR_OPCODES=INTR_OPCODES, reduce=reduce, operator=operator))
71b8e80941Smrg
72b8e80941Smrgif __name__ == '__main__':
73b8e80941Smrg    main()
74b8e80941Smrg
75