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