17ec681f3Smrg
27ec681f3Smrgtemplate = """\
37ec681f3Smrg/*
47ec681f3Smrg * Copyright (c) 2018 Valve Corporation
57ec681f3Smrg *
67ec681f3Smrg * Permission is hereby granted, free of charge, to any person obtaining a
77ec681f3Smrg * copy of this software and associated documentation files (the "Software"),
87ec681f3Smrg * to deal in the Software without restriction, including without limitation
97ec681f3Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
107ec681f3Smrg * and/or sell copies of the Software, and to permit persons to whom the
117ec681f3Smrg * Software is furnished to do so, subject to the following conditions:
127ec681f3Smrg *
137ec681f3Smrg * The above copyright notice and this permission notice (including the next
147ec681f3Smrg * paragraph) shall be included in all copies or substantial portions of the
157ec681f3Smrg * Software.
167ec681f3Smrg *
177ec681f3Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
187ec681f3Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
197ec681f3Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
207ec681f3Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
217ec681f3Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
227ec681f3Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
237ec681f3Smrg * IN THE SOFTWARE.
247ec681f3Smrg *
257ec681f3Smrg * This file was generated by aco_opcodes_h.py
267ec681f3Smrg */
277ec681f3Smrg
287ec681f3Smrg#ifndef _ACO_OPCODES_
297ec681f3Smrg#define _ACO_OPCODES_
307ec681f3Smrg
317ec681f3Smrg#include <cstdint>
327ec681f3Smrg
337ec681f3Smrg<% opcode_names = sorted(opcodes.keys()) %>
347ec681f3Smrg
357ec681f3Smrgenum class aco_opcode : std::uint16_t {
367ec681f3Smrg% for name in opcode_names:
377ec681f3Smrg   ${name},
387ec681f3Smrg% endfor
397ec681f3Smrg   last_opcode = ${opcode_names[-1]},
407ec681f3Smrg   num_opcodes = last_opcode + 1
417ec681f3Smrg};
427ec681f3Smrg
437ec681f3Smrg#endif /* _ACO_OPCODES_ */"""
447ec681f3Smrg
457ec681f3Smrgfrom aco_opcodes import opcodes
467ec681f3Smrgfrom mako.template import Template
477ec681f3Smrg
487ec681f3Smrgprint(Template(template).render(opcodes=opcodes))
49