339214ac53e38bdb37ca59e5005e30ca54d4f412
[mesa.git] / src / compiler / nir / nir_intrinsics_c.py
1
2 template = """\
3 /* Copyright (C) 2018 Red Hat
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
25 #include "nir.h"
26
27 const nir_intrinsic_info nir_intrinsic_infos[nir_num_intrinsics] = {
28 % for name, opcode in sorted(INTR_OPCODES.iteritems()):
29 {
30 .name = "${name}",
31 .num_srcs = ${opcode.num_srcs},
32 % if opcode.src_components:
33 .src_components = {
34 ${", ".join(str(comp) for comp in opcode.src_components)}
35 },
36 % endif
37 .has_dest = ${"true" if opcode.has_dest else "false"},
38 .dest_components = ${opcode.dest_components},
39 .num_variables = ${opcode.num_variables},
40 .num_indices = ${opcode.num_indices},
41 % if opcode.indices:
42 .index_map = {
43 % for i in range(len(opcode.indices)):
44 [${opcode.indices[i]}] = ${i + 1},
45 % endfor
46 },
47 % endif
48 .flags = ${"0" if len(opcode.flags) == 0 else " | ".join(opcode.flags)},
49 },
50 % endfor
51 };
52 """
53
54 from nir_intrinsics import INTR_OPCODES
55 from mako.template import Template
56 import argparse
57 import os
58
59 def main():
60 parser = argparse.ArgumentParser()
61 parser.add_argument('--outdir', required=True,
62 help='Directory to put the generated files in')
63
64 args = parser.parse_args()
65
66 path = os.path.join(args.outdir, 'nir_intrinsics.c')
67 with open(path, 'wb') as f:
68 f.write(Template(template).render(INTR_OPCODES=INTR_OPCODES))
69
70 if __name__ == '__main__':
71 main()
72