Files
mesa/src/vulkan/util/vk_cmd_queue_gen.py
Antonio Ospite ddf2aa3a4d build: avoid redefining unreachable() which is standard in C23
In the C23 standard unreachable() is now a predefined function-like
macro in <stddef.h>

See https://android.googlesource.com/platform/bionic/+/HEAD/docs/c23.md#is-now-a-predefined-function_like-macro-in

And this causes build errors when building for C23:

-----------------------------------------------------------------------
In file included from ../src/util/log.h:30,
                 from ../src/util/log.c:30:
../src/util/macros.h:123:9: warning: "unreachable" redefined
  123 | #define unreachable(str)    \
      |         ^~~~~~~~~~~
In file included from ../src/util/macros.h:31:
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h:456:9: note: this is the location of the previous definition
  456 | #define unreachable() (__builtin_unreachable ())
      |         ^~~~~~~~~~~
-----------------------------------------------------------------------

So don't redefine it with the same name, but use the name UNREACHABLE()
to also signify it's a macro.

Using a different name also makes sense because the behavior of the
macro was extending the one of __builtin_unreachable() anyway, and it
also had a different signature, accepting one argument, compared to the
standard unreachable() with no arguments.

This change improves the chances of building mesa with the C23 standard,
which for instance is the default in recent AOSP versions.

All the instances of the macro, including the definition, were updated
with the following command line:

  git grep -l '[^_]unreachable(' -- "src/**" | sort | uniq | \
  while read file; \
  do \
    sed -e 's/\([^_]\)unreachable(/\1UNREACHABLE(/g' -i "$file"; \
  done && \
  sed -e 's/#undef unreachable/#undef UNREACHABLE/g' -i src/intel/isl/isl_aux_info.c

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36437>
2025-07-31 17:49:42 +00:00

803 lines
24 KiB
Python

COPYRIGHT=u"""
/* Copyright © 2015-2021 Intel Corporation
* Copyright © 2021 Collabora, Ltd.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
"""
import argparse
import os
import re
from collections import namedtuple
import xml.etree.ElementTree as et
from mako.template import Template
# Mesa-local imports must be declared in meson variable
# '{file_without_suffix}_depend_files'.
from vk_entrypoints import EntrypointParam, get_entrypoints_from_xml
from vk_extensions import filter_api, get_all_required
# These have hand-typed implementations in vk_cmd_enqueue.c
MANUAL_COMMANDS = [
# This script doesn't know how to copy arrays in structs in arrays
'CmdPushDescriptorSet',
# The size of the elements is specified in a stride param
'CmdDrawMultiEXT',
'CmdDrawMultiIndexedEXT',
# The VkPipelineLayout object could be released before the command is
# executed
'CmdBindDescriptorSets',
# Incomplete struct copies which lead to an use after free.
'CmdBuildAccelerationStructuresKHR',
# pData's size cannot be calculated from the xml
'CmdPushDescriptorSetWithTemplate2',
'CmdPushDescriptorSetWithTemplate',
'CmdPushConstants2',
'CmdPushDescriptorSet2',
# VkDispatchGraphCountInfoAMDX::infos is an array of
# VkDispatchGraphInfoAMDX, but the xml specifies that it is a
# VkDeviceOrHostAddressConstAMDX.
'CmdDispatchGraphAMDX',
]
NO_ENQUEUE_COMMANDS = [
# These don't return void
'CmdSetPerformanceMarkerINTEL',
'CmdSetPerformanceStreamMarkerINTEL',
'CmdSetPerformanceOverrideINTEL',
]
TEMPLATE_H = Template(COPYRIGHT + """\
/* This file generated from ${filename}, don't edit directly. */
#pragma once
#include "util/list.h"
#define VK_PROTOTYPES
#include <vulkan/vulkan_core.h>
#ifdef VK_ENABLE_BETA_EXTENSIONS
#include <vulkan/vulkan_beta.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
struct vk_device_dispatch_table;
struct vk_cmd_queue {
const VkAllocationCallbacks *alloc;
struct list_head cmds;
};
enum vk_cmd_type {
% for c in commands:
% if c.guard is not None:
#ifdef ${c.guard}
% endif
${to_enum_name(c.name)},
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
VK_CMD_TYPE_COUNT,
};
extern const char *vk_cmd_queue_type_names[];
extern size_t vk_cmd_queue_type_sizes[];
% for c in commands:
% if len(c.params) <= 1: # Avoid "error C2016: C requires that a struct or union have at least one member"
<% continue %>
% endif
% if c.guard is not None:
#ifdef ${c.guard}
% endif
struct ${to_struct_name(c.name)} {
% for p in c.params[1:]:
${to_field_decl(p.decl)};
% endfor
};
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
struct vk_cmd_queue_entry;
/* this ordering must match vk_cmd_queue_entry */
struct vk_cmd_queue_entry_base {
struct list_head cmd_link;
enum vk_cmd_type type;
void *driver_data;
void (*driver_free_cb)(struct vk_cmd_queue *queue,
struct vk_cmd_queue_entry *cmd);
};
/* this ordering must match vk_cmd_queue_entry_base */
struct vk_cmd_queue_entry {
struct list_head cmd_link;
enum vk_cmd_type type;
void *driver_data;
void (*driver_free_cb)(struct vk_cmd_queue *queue,
struct vk_cmd_queue_entry *cmd);
union {
% for c in commands:
% if len(c.params) <= 1:
<% continue %>
% endif
% if c.guard is not None:
#ifdef ${c.guard}
% endif
struct ${to_struct_name(c.name)} ${to_struct_field_name(c.name)};
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
} u;
};
% for c in commands:
% if c.name in manual_commands or c.name in no_enqueue_commands:
<% continue %>
% endif
% if c.guard is not None:
#ifdef ${c.guard}
% endif
VkResult vk_enqueue_${to_underscore(c.name)}(struct vk_cmd_queue *queue
% for p in c.params[1:]:
, ${p.decl}
% endfor
);
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
void vk_free_queue(struct vk_cmd_queue *queue);
static inline void
vk_cmd_queue_init(struct vk_cmd_queue *queue, VkAllocationCallbacks *alloc)
{
queue->alloc = alloc;
list_inithead(&queue->cmds);
}
static inline void
vk_cmd_queue_reset(struct vk_cmd_queue *queue)
{
vk_free_queue(queue);
list_inithead(&queue->cmds);
}
static inline void
vk_cmd_queue_finish(struct vk_cmd_queue *queue)
{
vk_free_queue(queue);
list_inithead(&queue->cmds);
}
void vk_cmd_queue_execute(struct vk_cmd_queue *queue,
VkCommandBuffer commandBuffer,
const struct vk_device_dispatch_table *disp);
#ifdef __cplusplus
}
#endif
""")
TEMPLATE_C = Template(COPYRIGHT + """
/* This file generated from ${filename}, don't edit directly. */
#include "${header}"
#define VK_PROTOTYPES
#include <vulkan/vulkan_core.h>
#ifdef VK_ENABLE_BETA_EXTENSIONS
#include <vulkan/vulkan_beta.h>
#endif
#include "vk_alloc.h"
#include "vk_cmd_enqueue_entrypoints.h"
#include "vk_command_buffer.h"
#include "vk_dispatch_table.h"
#include "vk_device.h"
const char *vk_cmd_queue_type_names[] = {
% for c in commands:
% if c.guard is not None:
#ifdef ${c.guard}
% endif
"${to_enum_name(c.name)}",
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
};
size_t vk_cmd_queue_type_sizes[] = {
% for c in commands:
% if c.guard is not None:
#ifdef ${c.guard}
% endif
% if len(c.params) > 1:
sizeof(struct ${to_struct_name(c.name)}) +
% endif
sizeof(struct vk_cmd_queue_entry_base),
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
};
% for c in commands:
% if c.guard is not None:
#ifdef ${c.guard}
% endif
static void
vk_free_${to_underscore(c.name)}(struct vk_cmd_queue *queue,
${' ' * len('vk_free_' + to_underscore(c.name) + '(')}\\
struct vk_cmd_queue_entry *cmd)
{
% for p in c.params[1:]:
% if p.len:
vk_free(queue->alloc, (${remove_suffix(p.decl.replace("const", ""), p.name)})cmd->u.${to_struct_field_name(c.name)}.${to_field_name(p.name)});
% elif '*' in p.decl:
${get_struct_free(c, p, types)}
% endif
% endfor
}
% if c.name not in manual_commands and c.name not in no_enqueue_commands:
VkResult vk_enqueue_${to_underscore(c.name)}(struct vk_cmd_queue *queue
% for p in c.params[1:]:
, ${p.decl}
% endfor
)
{
struct vk_cmd_queue_entry *cmd = vk_zalloc(queue->alloc, vk_cmd_queue_type_sizes[${to_enum_name(c.name)}], 8,
VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
if (!cmd) return VK_ERROR_OUT_OF_HOST_MEMORY;
cmd->type = ${to_enum_name(c.name)};
${get_params_copy(c, types)}}
% endif
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
void
vk_free_queue(struct vk_cmd_queue *queue)
{
struct vk_cmd_queue_entry *tmp, *cmd;
LIST_FOR_EACH_ENTRY_SAFE(cmd, tmp, &queue->cmds, cmd_link) {
if (cmd->driver_free_cb) {
cmd->driver_free_cb(queue, cmd);
vk_free(queue->alloc, cmd);
continue;
}
switch(cmd->type) {
% for c in commands:
% if c.guard is not None:
#ifdef ${c.guard}
% endif
case ${to_enum_name(c.name)}:
vk_free_${to_underscore(c.name)}(queue, cmd);
break;
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
case VK_CMD_TYPE_COUNT:
break;
}
vk_free(queue->alloc, cmd->driver_data);
vk_free(queue->alloc, cmd);
}
}
void
vk_cmd_queue_execute(struct vk_cmd_queue *queue,
VkCommandBuffer commandBuffer,
const struct vk_device_dispatch_table *disp)
{
list_for_each_entry(struct vk_cmd_queue_entry, cmd, &queue->cmds, cmd_link) {
switch (cmd->type) {
% for c in commands:
% if c.guard is not None:
#ifdef ${c.guard}
% endif
case ${to_enum_name(c.name)}:
disp->${c.name}(commandBuffer
% for p in c.params[1:]:
, cmd->u.${to_struct_field_name(c.name)}.${to_field_name(p.name)}\\
% endfor
);
break;
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
default: UNREACHABLE("Unsupported command");
}
}
}
% for c in commands:
% if c.name in no_enqueue_commands:
/* TODO: Generate vk_cmd_enqueue_${c.name}() */
<% continue %>
% endif
% if c.guard is not None:
#ifdef ${c.guard}
% endif
<% assert c.return_type == 'void' %>
% if c.name in manual_commands:
/* vk_cmd_enqueue_${c.name}() is hand-typed in vk_cmd_enqueue.c */
% else:
VKAPI_ATTR void VKAPI_CALL
vk_cmd_enqueue_${c.name}(${c.decl_params()})
{
VK_FROM_HANDLE(vk_command_buffer, cmd_buffer, commandBuffer);
if (vk_command_buffer_has_error(cmd_buffer))
return;
% if len(c.params) == 1:
VkResult result = vk_enqueue_${to_underscore(c.name)}(&cmd_buffer->cmd_queue);
% else:
VkResult result = vk_enqueue_${to_underscore(c.name)}(&cmd_buffer->cmd_queue,
${c.call_params(1)});
% endif
if (unlikely(result != VK_SUCCESS))
vk_command_buffer_set_error(cmd_buffer, result);
}
% endif
VKAPI_ATTR void VKAPI_CALL
vk_cmd_enqueue_unless_primary_${c.name}(${c.decl_params()})
{
VK_FROM_HANDLE(vk_command_buffer, cmd_buffer, commandBuffer);
if (cmd_buffer->level == VK_COMMAND_BUFFER_LEVEL_PRIMARY) {
const struct vk_device_dispatch_table *disp =
cmd_buffer->base.device->command_dispatch_table;
disp->${c.name}(${c.call_params()});
} else {
vk_cmd_enqueue_${c.name}(${c.call_params()});
}
}
% if c.guard is not None:
#endif // ${c.guard}
% endif
% endfor
""")
class CodeBuilder:
def __init__(self, level):
self.variable_index = 0
self.code = ""
self.level = level
def add(self, line):
self.code += "%s%s\n" % (" " * self.level, line)
def get_variable_name(self, name):
self.variable_index += 1
return "%s%s" % (name, self.variable_index)
def remove_prefix(text, prefix):
if text.startswith(prefix):
return text[len(prefix):]
return text
def remove_suffix(text, suffix):
if text.endswith(suffix):
return text[:-len(suffix)]
return text
def to_underscore(name):
return remove_prefix(re.sub('([A-Z]+)', r'_\1', name).lower(), '_')
def to_struct_field_name(name):
return to_underscore(name).replace('cmd_', '')
def to_field_name(name):
return remove_prefix(to_underscore(name).replace('cmd_', ''), 'p_')
def to_field_decl(decl):
if 'const*' in decl:
decl = decl.replace('const*', '*')
else:
decl = decl.replace('const ', '')
[decl, name] = decl.rsplit(' ', 1)
return decl + ' ' + to_field_name(name)
def to_enum_name(name):
return "VK_%s" % to_underscore(name).upper()
def to_struct_name(name):
return "vk_%s" % to_underscore(name)
def get_array_len(param):
return param.decl[param.decl.find("[") + 1:param.decl.find("]")]
def get_array_copy(builder, command, param, field_name):
if param.type == "void":
field_size = "1"
else:
field_size = "sizeof(*%s)" % field_name
builder.add("%s = vk_zalloc(queue->alloc, %s * (%s), 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);\n if (%s == NULL) goto err;" % (
field_name, field_size, param.len, field_name
))
builder.add("memcpy((void*)%s, %s, %s * (%s));" % (field_name, param.name, field_size, param.len))
def get_array_member_copy(builder, struct, src_name, member):
field_name = "%s->%s" % (struct, member.name)
if member.len == "struct-ptr":
field_size = "sizeof(*%s)" % (field_name)
else:
field_size = "sizeof(*%s) * %s->%s" % (field_name, struct, member.len)
builder.add("if (%s->%s) {" % (src_name, member.name))
builder.level += 1
builder.add("%s = vk_zalloc(queue->alloc, %s, 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);" % (field_name, field_size))
builder.add("if (%s == NULL) goto err;" % (field_name))
builder.add("memcpy((void*)%s, %s->%s, %s);" % (field_name, src_name, member.name, field_size))
builder.level -= 1
builder.add("}")
def get_pnext_member_copy(builder, struct, src_type, member, types):
if not types[src_type].extended_by:
return
field_name = "%s->%s" % (struct, member.name)
builder.add("const VkBaseInStructure *pnext = %s;" % (field_name))
builder.add("if (pnext) {")
builder.level += 1
builder.add("switch ((int32_t)pnext->sType) {")
case_stmts = ""
for type in types[src_type].extended_by:
if type.guard is not None:
builder.code += "#ifdef %s\n" % (type.guard)
builder.add("case %s:" % (type.enum))
builder.level += 1
get_struct_copy(builder, field_name, "pnext", type.name, "sizeof(%s)" % type.name, types)
builder.add("break;")
builder.level -= 1
if type.guard is not None:
builder.code += "#endif\n"
builder.add("}")
builder.level -= 1
builder.add("}")
def get_pnext_member_free(builder, struct_type, types, field_name):
if not types[struct_type].extended_by:
return
local_pnext = builder.get_variable_name("pnext")
builder.add("const VkBaseInStructure *%s = %s;" % (local_pnext, field_name))
builder.add("if (%s) {" % (local_pnext))
builder.level += 1
builder.add("switch ((int32_t)%s->sType) {" % (local_pnext))
for type in types[struct_type].extended_by:
if type.guard is not None:
builder.code += "#ifdef %s\n" % (type.guard)
builder.add("case %s: {" % (type.enum))
builder.level += 1
get_struct_free(builder, "((%s *)%s)" % (type.name, local_pnext), False, type.name, types)
builder.add("vk_free(queue->alloc, (void*)%s);" % (local_pnext))
builder.add("break;")
builder.level -= 1
builder.add("}")
if type.guard is not None:
builder.code += "#endif\n"
builder.add("}")
builder.level -= 1
builder.add("}")
def get_struct_copy(builder, dst, src_name, src_type, size, types):
tmp_dst_name = builder.get_variable_name("tmp_dst")
tmp_src_name = builder.get_variable_name("tmp_src")
builder.add("if (%s) {" % (src_name))
builder.level += 1
builder.add("%s = vk_zalloc(queue->alloc, %s, 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);" % (dst, size))
builder.add("if (%s == NULL) goto err;" % (dst))
builder.add("%s *%s = (void *)%s;" % (src_type, tmp_dst_name, dst))
builder.add("%s *%s = (void *)%s;" % (src_type, tmp_src_name, src_name))
builder.add("memcpy(%s, %s, %s);" % (tmp_dst_name, tmp_src_name, size))
if src_type in types:
for member in types[src_type].members:
if member.len and member.len == 'struct-ptr':
get_struct_copy(builder, "%s->%s" % (tmp_dst_name, member.name), "%s->%s" % (
tmp_src_name, member.name
), member.type, 'sizeof(%s)' % member.type, types)
elif member.len and member.len == 'null-terminated':
builder.add("%s->%s = strdup(%s->%s);" % (tmp_dst_name, member.name, tmp_src_name, member.name))
elif member.len:
get_array_member_copy(builder, tmp_dst_name, tmp_src_name, member)
elif member.name == 'pNext':
get_pnext_member_copy(builder, tmp_dst_name, src_type, member, types)
builder.level -= 1
builder.add("} else {")
builder.level += 1
builder.add("%s = NULL;" % (dst))
builder.level -= 1
builder.add("}")
def get_command_struct_free(command, param, types):
field_name = "cmd->u.%s.%s" % (to_struct_field_name(command.name), to_field_name(param.name))
builder = CodeBuilder(1)
get_struct_free(builder, field_name, True, param.type, types)
builder.add("vk_free(queue->alloc, (void*)%s);" % (field_name))
return builder.code
def get_struct_free(builder, field_name, nullable, struct_type, types):
if struct_type not in types:
return
members = types[struct_type].members
if members and nullable:
builder.add("if (%s) {" % (field_name))
builder.level += 1
for member in members:
member_name = "%s->%s" % (field_name, member.name)
if member.len and member.len != 'null-terminated':
local_member_name = builder.get_variable_name(member.name)
builder.add("%s *%s = (void *)(%s);" % (member.type, local_member_name, member_name))
guard = member.len != "struct-ptr"
if guard:
builder.add("if (%s->%s) {" % (field_name, member.len))
builder.level += 1
get_struct_free(builder, local_member_name, not guard, member.type, types)
if guard:
builder.level -= 1
builder.add("}")
builder.add("vk_free(queue->alloc, %s);" % (local_member_name))
elif member.name == 'pNext':
get_pnext_member_free(builder, struct_type, types, member_name)
if members and nullable:
builder.level -= 1
builder.add("}")
def get_param_copy(builder, command, param, types):
dst = "cmd->u.%s.%s" % (to_struct_field_name(command.name), to_field_name(param.name))
if param.len:
builder.add("if (%s) {" % (param.name))
builder.level += 1
get_array_copy(builder, command, param, dst)
builder.level -= 1
builder.add("}")
return True
if '[' in param.decl:
builder.add("memcpy(%s, %s, sizeof(*%s) * %s);" % (dst, param.name, param.name, get_array_len(param)))
return False
if param.type == "void":
builder.add("%s = (%s)%s;" % (dst, remove_suffix(param.decl.replace("const", ""), param.name), param.name))
return False
if '*' in param.decl:
get_struct_copy(builder, dst, param.name, param.type, 'sizeof(%s)' % param.type, types)
return True
builder.add("cmd->u.%s.%s = %s;" % (to_struct_field_name(command.name), to_field_name(param.name), param.name))
return False
def get_params_copy(command, types):
builder = CodeBuilder(1)
any_needs_error_handling = False
for param in command.params[1:]:
needs_error_handling = get_param_copy(builder, command, param, types)
any_needs_error_handling = any_needs_error_handling or needs_error_handling
builder.code += "\n"
builder.add("list_addtail(&cmd->cmd_link, &queue->cmds);")
builder.add("return VK_SUCCESS;")
if any_needs_error_handling:
builder.code += "\nerr:\n"
builder.add("if (cmd)")
builder.add(" vk_free_%s(queue, cmd);" % (to_underscore(command.name)))
builder.add("return VK_ERROR_OUT_OF_HOST_MEMORY;")
return builder.code
EntrypointType = namedtuple('EntrypointType', 'name enum members extended_by guard')
def get_types_defines(doc):
"""Maps types to extension defines."""
types_to_defines = {}
platform_define = {}
for platform in doc.findall('./platforms/platform'):
name = platform.attrib['name']
define = platform.attrib['protect']
platform_define[name] = define
for extension in doc.findall('./extensions/extension[@platform]'):
platform = extension.attrib['platform']
define = platform_define[platform]
for types in extension.findall('./require/type'):
fullname = types.attrib['name']
types_to_defines[fullname] = define
return types_to_defines
def get_types(doc, beta, api, types_to_defines):
"""Extract the types from the registry."""
types = {}
required = get_all_required(doc, 'type', api, beta)
for _type in doc.findall('./types/type'):
if _type.attrib.get('category') != 'struct':
continue
if not filter_api(_type, api):
continue
if _type.attrib['name'] not in required:
continue
members = []
type_enum = None
for p in _type.findall('./member'):
if not filter_api(p, api):
continue
mem_type = p.find('./type').text
mem_name = p.find('./name').text
mem_decl = ''.join(p.itertext())
mem_len = p.attrib.get('altlen', p.attrib.get('len', None))
if mem_len is None and '*' in mem_decl and mem_name != 'pNext':
mem_len = "struct-ptr"
member = EntrypointParam(type=mem_type,
name=mem_name,
decl=mem_decl,
len=mem_len)
members.append(member)
if mem_name == 'sType':
type_enum = p.attrib.get('values')
types[_type.attrib['name']] = EntrypointType(name=_type.attrib['name'], enum=type_enum, members=members, extended_by=[], guard=types_to_defines.get(_type.attrib['name']))
for _type in doc.findall('./types/type'):
if _type.attrib.get('category') != 'struct':
continue
if not filter_api(_type, api):
continue
if _type.attrib['name'] not in required:
continue
if _type.attrib.get('structextends') is None:
continue
for extended in _type.attrib.get('structextends').split(','):
if extended not in required:
continue
types[extended].extended_by.append(types[_type.attrib['name']])
return types
def get_types_from_xml(xml_files, beta, api='vulkan'):
types = {}
for filename in xml_files:
doc = et.parse(filename)
types.update(get_types(doc, beta, api, get_types_defines(doc)))
return types
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--out-c', required=True, help='Output C file.')
parser.add_argument('--out-h', required=True, help='Output H file.')
parser.add_argument('--beta', required=True, help='Enable beta extensions.')
parser.add_argument('--xml',
help='Vulkan API XML file.',
required=True, action='append', dest='xml_files')
args = parser.parse_args()
commands = []
for e in get_entrypoints_from_xml(args.xml_files, args.beta):
if e.name.startswith('Cmd') and \
not e.alias:
commands.append(e)
types = get_types_from_xml(args.xml_files, args.beta)
assert os.path.dirname(args.out_c) == os.path.dirname(args.out_h)
environment = {
'header': os.path.basename(args.out_h),
'commands': commands,
'filename': os.path.basename(__file__),
'to_underscore': to_underscore,
'to_struct_field_name': to_struct_field_name,
'to_field_name': to_field_name,
'to_field_decl': to_field_decl,
'to_enum_name': to_enum_name,
'to_struct_name': to_struct_name,
'get_params_copy': get_params_copy,
'get_struct_free': get_command_struct_free,
'types': types,
'manual_commands': MANUAL_COMMANDS,
'no_enqueue_commands': NO_ENQUEUE_COMMANDS,
'remove_suffix': remove_suffix,
}
try:
with open(args.out_h, 'w', encoding='utf-8') as f:
guard = os.path.basename(args.out_h).replace('.', '_').upper()
f.write(TEMPLATE_H.render(guard=guard, **environment))
with open(args.out_c, 'w', encoding='utf-8') as f:
f.write(TEMPLATE_C.render(**environment))
except Exception:
# In the event there's an error, this imports some helpers from mako
# to print a useful stack trace and prints it, then exits with
# status 1, if python is run with debug; otherwise it just raises
# the exception
import sys
from mako import exceptions
print(exceptions.text_error_template().render(), file=sys.stderr)
sys.exit(1)
if __name__ == '__main__':
main()