blob: 3b2c71734890a753b0efb3dd3451fe4d130e04a8 [file] [log] [blame]
#!/usr/bin/python3 -i
#
# Copyright (c) 2015-2021 The Khronos Group Inc.
# Copyright (c) 2015-2021 Valve Corporation
# Copyright (c) 2015-2021 LunarG, Inc.
# Copyright (c) 2015-2021 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Author: Mark Lobodzinski <mark@lunarg.com>
# Author: Tobin Ehlis <tobine@google.com>
# Author: John Zulauf <jzulauf@lunarg.com>
import os,re,sys
import xml.etree.ElementTree as etree
from generator import *
from collections import namedtuple
from common_codegen import *
import sync_val_gen
#
# HelperFileOutputGeneratorOptions - subclass of GeneratorOptions.
class HelperFileOutputGeneratorOptions(GeneratorOptions):
def __init__(self,
conventions = None,
filename = None,
directory = '.',
genpath = None,
apiname = 'vulkan',
profile = None,
versions = '.*',
emitversions = '.*',
defaultExtensions = 'vulkan',
addExtensions = None,
removeExtensions = None,
emitExtensions = None,
emitSpirv = None,
sortProcedure = regSortFeatures,
genFuncPointers = True,
protectFile = True,
protectFeature = True,
apicall = 'VKAPI_ATTR ',
apientry = 'VKAPI_CALL ',
apientryp = 'VKAPI_PTR *',
alignFuncParam = 48,
library_name = '',
expandEnumerants = False,
helper_file_type = '',
valid_usage_path = ''):
GeneratorOptions.__init__(self,
conventions = conventions,
filename = filename,
directory = directory,
genpath = genpath,
apiname = apiname,
profile = profile,
versions = versions,
emitversions = emitversions,
defaultExtensions = defaultExtensions,
addExtensions = addExtensions,
removeExtensions = removeExtensions,
emitExtensions = emitExtensions,
emitSpirv = emitSpirv,
sortProcedure = sortProcedure)
self.genFuncPointers = genFuncPointers
self.protectFile = protectFile
self.protectFeature = protectFeature
self.apicall = apicall
self.apientry = apientry
self.apientryp = apientryp
self.alignFuncParam = alignFuncParam
self.library_name = library_name
self.helper_file_type = helper_file_type
self.valid_usage_path = valid_usage_path
#
# HelperFileOutputGenerator - subclass of OutputGenerator. Outputs Vulkan helper files
class HelperFileOutputGenerator(OutputGenerator):
"""Generate helper file based on XML element attributes"""
def __init__(self,
errFile = sys.stderr,
warnFile = sys.stderr,
diagFile = sys.stdout):
OutputGenerator.__init__(self, errFile, warnFile, diagFile)
# Internal state - accumulators for different inner block text
self.enum_output = '' # string built up of enum string routines
# Internal state - accumulators for different inner block text
self.structNames = [] # List of Vulkan struct typenames
self.structTypes = dict() # Map of Vulkan struct typename to required VkStructureType
self.structMembers = [] # List of StructMemberData records for all Vulkan structs
self.object_types = [] # List of all handle types
self.object_guards = {} # Ifdef guards for object types
self.object_type_aliases = [] # Aliases to handles types (for handles that were extensions)
self.debug_report_object_types = [] # Handy copy of debug_report_object_type enum data
self.core_object_types = [] # Handy copy of core_object_type enum data
self.sync_enum = dict() # Handy copy of synchronization enum data
self.device_extension_info = dict() # Dict of device extension name defines and ifdef values
self.instance_extension_info = dict() # Dict of instance extension name defines and ifdef values
self.structextends_list = [] # List of structs which extend another struct via pNext
self.structOrUnion = dict() # Map of Vulkan typename to 'struct' or 'union'
self.inst_header_decls = '' # String of instrumentation function declarations
self.inst_source_funcs = '' # String of instrumentation function definitions
# Named tuples to store struct and command data
self.StructType = namedtuple('StructType', ['name', 'value'])
self.CommandParam = namedtuple('CommandParam', ['type', 'name', 'ispointer', 'isstaticarray', 'isconst', 'iscount', 'len', 'extstructs', 'cdecl'])
self.StructMemberData = namedtuple('StructMemberData', ['name', 'members', 'ifdef_protect', 'allowduplicate'])
self.custom_construct_params = {
# safe_VkGraphicsPipelineCreateInfo needs to know if subpass has color and\or depth\stencil attachments to use its pointers
'VkGraphicsPipelineCreateInfo' :
', const bool uses_color_attachment, const bool uses_depthstencil_attachment',
# safe_VkPipelineViewportStateCreateInfo needs to know if viewport and scissor is dynamic to use its pointers
'VkPipelineViewportStateCreateInfo' :
', const bool is_dynamic_viewports, const bool is_dynamic_scissors',
}
# Note that adding an API here requires that all three pre/post routines be added to inline_corechecks_instrumentation_source.
self.inst_manually_written_functions = [
'vkQueuePresentKHR',
]
inline_corechecks_instrumentation_source = """
#include "core_validation.h"
#include "corechecks_optick_instrumentation.h"
#ifdef INSTRUMENT_OPTICK
// Manually written intercepts
void CoreChecksOptickInstrumented::PostCallRecordQueuePresentKHR(VkQueue queue, const VkPresentInfoKHR* pPresentInfo, VkResult result) {
OPTICK_FRAME("CPU FRAME");
OPTICK_EVENT();
CoreChecks::PostCallRecordQueuePresentKHR(queue, pPresentInfo, result);
};
bool CoreChecksOptickInstrumented::PreCallValidateQueuePresentKHR(VkQueue queue, const VkPresentInfoKHR* pPresentInfo) const {
OPTICK_EVENT();
auto result = CoreChecks::PreCallValidateQueuePresentKHR(queue, pPresentInfo);
return result;
};
void CoreChecksOptickInstrumented::PreCallRecordQueuePresentKHR(VkQueue queue, const VkPresentInfoKHR* pPresentInfo) {
OPTICK_EVENT();
CoreChecks::PreCallRecordQueuePresentKHR(queue, pPresentInfo);
};
// Code-generated intercepts
"""
#
# Called once at the beginning of each run
def beginFile(self, genOpts):
OutputGenerator.beginFile(self, genOpts)
# Initialize members that require the tree
self.handle_types = GetHandleTypes(self.registry.tree)
# User-supplied prefix text, if any (list of strings)
self.helper_file_type = genOpts.helper_file_type
self.library_name = genOpts.library_name
# File Comment
file_comment = '// *** THIS FILE IS GENERATED - DO NOT EDIT ***\n'
file_comment += '// See helper_file_generator.py for modifications\n'
write(file_comment, file=self.outFile)
# Copyright Notice
copyright = ''
copyright += '\n'
copyright += '/***************************************************************************\n'
copyright += ' *\n'
copyright += ' * Copyright (c) 2015-2021 The Khronos Group Inc.\n'
copyright += ' * Copyright (c) 2015-2021 Valve Corporation\n'
copyright += ' * Copyright (c) 2015-2021 LunarG, Inc.\n'
copyright += ' * Copyright (c) 2015-2021 Google Inc.\n'
copyright += ' *\n'
copyright += ' * Licensed under the Apache License, Version 2.0 (the "License");\n'
copyright += ' * you may not use this file except in compliance with the License.\n'
copyright += ' * You may obtain a copy of the License at\n'
copyright += ' *\n'
copyright += ' * http://www.apache.org/licenses/LICENSE-2.0\n'
copyright += ' *\n'
copyright += ' * Unless required by applicable law or agreed to in writing, software\n'
copyright += ' * distributed under the License is distributed on an "AS IS" BASIS,\n'
copyright += ' * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n'
copyright += ' * See the License for the specific language governing permissions and\n'
copyright += ' * limitations under the License.\n'
copyright += ' *\n'
copyright += ' * Author: Mark Lobodzinski <mark@lunarg.com>\n'
copyright += ' * Author: Courtney Goeltzenleuchter <courtneygo@google.com>\n'
copyright += ' * Author: Tobin Ehlis <tobine@google.com>\n'
copyright += ' * Author: Chris Forbes <chrisforbes@google.com>\n'
copyright += ' * Author: John Zulauf<jzulauf@lunarg.com>\n'
copyright += ' *\n'
copyright += ' ****************************************************************************/\n'
write(copyright, file=self.outFile)
#
# Write generated file content to output file
def endFile(self):
dest_file = ''
dest_file += self.OutputDestFile()
# Remove blank lines at EOF
if dest_file.endswith('\n'):
dest_file = dest_file[:-1]
write(dest_file, file=self.outFile)
# Finish processing in superclass
OutputGenerator.endFile(self)
#
# Override parent class to be notified of the beginning of an extension
def beginFeature(self, interface, emit):
# Start processing in superclass
OutputGenerator.beginFeature(self, interface, emit)
self.featureExtraProtect = GetFeatureProtect(interface)
if interface.tag != 'extension':
return
name = self.featureName
requires = interface.get('requires')
if requires is not None:
required_extensions = requires.split(',')
else:
required_extensions = list()
requiresCore = interface.get('requiresCore')
if requiresCore is not None:
required_extensions.append('VK_VERSION_%s' % ('_'.join(requiresCore.split('.'))))
info = { 'define': GetNameDefine(interface), 'ifdef':self.featureExtraProtect, 'reqs':required_extensions }
if interface.get('type') == 'instance':
self.instance_extension_info[name] = info
else:
self.device_extension_info[name] = info
#
# Override parent class to be notified of the end of an extension
def endFeature(self):
# Finish processing in superclass
OutputGenerator.endFeature(self)
#
# Grab group (e.g. C "enum" type) info to output for enum-string conversion helper
def genGroup(self, groupinfo, groupName, alias):
OutputGenerator.genGroup(self, groupinfo, groupName, alias)
groupElem = groupinfo.elem
bitwidth = int(groupElem.get('bitwidth','32'))
# For enum_string_header
if self.helper_file_type == 'enum_string_header':
value_set = set()
protect_dict = dict()
for elem in groupElem.findall('enum'):
if elem.get('supported') != 'disabled' and elem.get('alias') is None:
value_set.add(elem.get('name'))
if elem.get('protect') is not None:
protect_dict[elem.get('name')] = elem.get('protect')
if value_set != set():
self.enum_output += self.GenerateEnumStringConversion(groupName, value_set, bitwidth, protect_dict)
elif self.helper_file_type == 'object_types_header':
if groupName == 'VkDebugReportObjectTypeEXT':
for elem in groupElem.findall('enum'):
if elem.get('supported') != 'disabled':
if elem.get('alias') is None: # TODO: Strangely the "alias" fn parameter does not work
item_name = elem.get('name')
if self.debug_report_object_types.count(item_name) == 0: # TODO: Strangely there are duplicates
self.debug_report_object_types.append(item_name)
elif groupName == 'VkObjectType':
for elem in groupElem.findall('enum'):
if elem.get('supported') != 'disabled':
if elem.get('alias') is None: # TODO: Strangely the "alias" fn parameter does not work
item_name = elem.get('name')
self.core_object_types.append(item_name)
elif self.helper_file_type == 'synchronization_helper_header' or self.helper_file_type == 'synchronization_helper_source':
if groupName in sync_val_gen.sync_enum_types:
self.sync_enum[groupName] = []
for elem in groupElem.findall('enum'):
if elem.get('supported') != 'disabled':
self.sync_enum[groupName].append(elem)
#
# Called for each type -- if the type is a struct/union, grab the metadata
def genType(self, typeinfo, name, alias):
OutputGenerator.genType(self, typeinfo, name, alias)
typeElem = typeinfo.elem
# If the type is a struct type, traverse the imbedded <member> tags generating a structure.
# Otherwise, emit the tag text.
category = typeElem.get('category')
if category == 'handle':
if alias:
self.object_type_aliases.append((name,alias))
else:
self.object_types.append(name)
self.object_guards[name] = self.featureExtraProtect
elif (category == 'struct' or category == 'union'):
self.structNames.append(name)
self.genStruct(typeinfo, name, alias)
if (category == 'union'):
self.structOrUnion[name] = 'union'
else:
self.structOrUnion[name] = 'struct'
#
# Command generation
def genCmd(self, cmdInfo, name, alias):
if 'optick_instrumentation' not in self.helper_file_type:
return
header_ignore_functions = [
'vkEnumerateInstanceVersion',
'vkGetDeviceProcAddr',
'vkGetInstanceProcAddr',
'vkGetPhysicalDeviceProcAddr',
]
if self.helper_file_type == 'optick_instrumentation_header':
if name in header_ignore_functions:
return
if self.featureExtraProtect != None:
self.inst_header_decls += '#ifdef %s\n' % self.featureExtraProtect
if 'ValidationCache' not in name:
self.inst_header_decls += self.InstBaseClassCdecl(cmdInfo, name)
if self.featureExtraProtect != None:
self.inst_header_decls += '#endif // %s\n' % self.featureExtraProtect
return
elif self.helper_file_type == 'optick_instrumentation_source':
if name in header_ignore_functions:
return
if self.featureExtraProtect != None:
self.inst_source_funcs += '#ifdef %s\n' % self.featureExtraProtect
if 'ValidationCache' not in name:
self.inst_source_funcs += self.InstBaseClassCdecl(cmdInfo, name)
if self.featureExtraProtect != None:
self.inst_source_funcs += '#endif // %s\n' % self.featureExtraProtect
return
#
# Get parameters from function definition
def GetParameterList(self, func_call):
parm_list = ''
parms = func_call.split("(")[1]
parms = parms.split(")")[0]
parm_defs = parms.split(",")
for parm_def in parm_defs:
parm_name = parm_def.split(" ")[-1]
parm_name = parm_name.split("[")[0]
parm_list += parm_name + ', '
parm_list = parm_list[:-2]
return parm_list
#
# Customize Cdecl for corechecks instrumentation header base class
def InstBaseClassCdecl(self, cmdinfo, name):
if name in self.inst_manually_written_functions and self.helper_file_type == "optick_instrumentation_source":
return ''
# These APIs are special-cased by the chassis and include an extra void* for a final parameter
inst_overloaded_apis = [
'PreCallValidateCreateGraphicsPipelines',
'PreCallRecordCreateGraphicsPipelines',
'PostCallRecordCreateGraphicsPipelines',
'PreCallValidateCreateComputePipelines',
'PreCallRecordCreateComputePipelines',
'PostCallRecordCreateComputePipelines',
'PreCallValidateCreateRayTracingPipelinesNV',
'PreCallRecordCreateRayTracingPipelinesNV',
'PostCallRecordCreateRayTracingPipelinesNV',
'PreCallValidateCreateRayTracingPipelinesKHR',
'PreCallRecordCreateRayTracingPipelinesKHR',
'PostCallRecordCreateRayTracingPipelinesKHR',
'PreCallRecordCreatePipelineLayout',
'PreCallRecordCreateShaderModule',
'PostCallRecordCreateShaderModule',
'PreCallValidateAllocateDescriptorSets',
'PostCallRecordAllocateDescriptorSets',
'PreCallRecordCreateBuffer',
'PreCallRecordCreateDevice',
]
raw = self.makeCDecls(cmdinfo.elem)[1]
prototype = raw.split("VKAPI_PTR *PFN_vk")[1]
prototype = prototype.replace(")", "", 1)
decl_terminator = ';'
if self.helper_file_type == 'optick_instrumentation_header':
decl_terminator = ' override;'
# Build up pre/post call function declarations
pre_call_validate = 'bool PreCallValidate' + prototype
pre_call_validate = pre_call_validate.replace(");", ") const" + decl_terminator)
if 'PreCallValidate' + name[2:] in inst_overloaded_apis:
pre_call_validate = pre_call_validate.replace(")", ", void* extra_data)")
pre_call_record = 'void PreCallRecord' + prototype
pre_call_record = pre_call_record.replace(");", ")" + decl_terminator)
if 'PreCallRecord' + name[2:] in inst_overloaded_apis:
pre_call_record = pre_call_record.replace(")", ", void* extra_data)")
post_call_record = 'void PostCallRecord' + prototype
resulttype = cmdinfo.elem.find('proto/type')
if resulttype.text == 'VkResult':
post_call_record = post_call_record.replace(');', ', VkResult result);')
elif resulttype.text == 'VkDeviceAddress':
post_call_record = post_call_record.replace(');', ', VkDeviceAddress result);')
post_call_record = post_call_record.replace(');', ')' + decl_terminator)
if 'PostCallRecord' + name[2:] in inst_overloaded_apis:
post_call_record = post_call_record.replace(")", ", void* extra_data)")
# If creating header, done
if self.helper_file_type == 'optick_instrumentation_header':
return ' %s\n %s\n %s\n' % (pre_call_validate, pre_call_record, post_call_record)
optick_event = " OPTICK_EVENT();\n"
# Create PreCallValidate Function
pre_call_validate_sig = pre_call_validate.replace("bool ", "bool CoreChecksOptickInstrumented::")
pre_call_validate_sig = pre_call_validate_sig.replace(";", " {\n")
pre_call_validate_func = pre_call_validate.replace("bool ", " auto result = CoreChecks::")
pre_call_validate_func = pre_call_validate_func.split("(")[0] + "(" + self.GetParameterList(pre_call_validate) + ")" + pre_call_validate_func.split(")")[1]
pre_call_validate_func = pre_call_validate_func.replace(" const;", ";\n")
pre_call_validate = pre_call_validate_sig + optick_event + pre_call_validate_func + ' return result;\n}\n'
# Create PreCallRecord Function
pre_call_record_sig = pre_call_record.replace("void ", "void CoreChecksOptickInstrumented::")
pre_call_record_sig = pre_call_record_sig.replace(";", " {\n")
pre_call_record_func = pre_call_record.replace("void ", " CoreChecks::")
pre_call_record_func = pre_call_record_func.split("(")[0] + "(" + self.GetParameterList(pre_call_record) + ")" + pre_call_record_func.split(")")[1]
pre_call_record_func = pre_call_record_func.replace(";", ";\n")
pre_call_record = pre_call_record_sig + optick_event + pre_call_record_func + '}\n'
# Create PostCallRecord Function
post_call_record_sig = post_call_record.replace("void ", "void CoreChecksOptickInstrumented::")
post_call_record_sig = post_call_record_sig.replace(";", " {\n")
post_call_record_func = post_call_record.replace("void ", " CoreChecks::")
post_call_record_func = post_call_record_func.split("(")[0] + "(" + self.GetParameterList(post_call_record) + ")" + post_call_record_func.split(")")[1]
post_call_record_func = post_call_record_func.replace(";", ";\n")
post_call_record = post_call_record_sig + optick_event + post_call_record_func + '}\n'
return '%s\n%s\n%s\n' % (pre_call_validate, pre_call_record, post_call_record)
#
# Check if the parameter passed in is a pointer
def paramIsPointer(self, param):
ispointer = False
for elem in param:
if elem.tag == 'type' and elem.tail is not None and '*' in elem.tail:
ispointer = True
return ispointer
#
# Check if the parameter passed in is a static array
def paramIsStaticArray(self, param):
isstaticarray = 0
paramname = param.find('name')
if (paramname.tail is not None) and ('[' in paramname.tail):
isstaticarray = paramname.tail.count('[')
return isstaticarray
#
# Retrieve the type and name for a parameter
def getTypeNameTuple(self, param):
type = ''
name = ''
for elem in param:
if elem.tag == 'type':
type = noneStr(elem.text)
elif elem.tag == 'name':
name = noneStr(elem.text)
return (type, name)
#
# Retrieve the value of the len tag
def getLen(self, param):
result = None
len = param.attrib.get('len')
if len and len != 'null-terminated':
# For string arrays, 'len' can look like 'count,null-terminated', indicating that we
# have a null terminated array of strings. We strip the null-terminated from the
# 'len' field and only return the parameter specifying the string count
if 'null-terminated' in len:
result = len.split(',')[0]
else:
result = len
if 'altlen' in param.attrib:
# Elements with latexmath 'len' also contain a C equivalent 'altlen' attribute
# Use indexing operator instead of get() so we fail if the attribute is missing
result = param.attrib['altlen']
# Spec has now notation for len attributes, using :: instead of platform specific pointer symbol
result = str(result).replace('::', '->')
return result
#
# Check if a structure is or contains a dispatchable (dispatchable = True) or
# non-dispatchable (dispatchable = False) handle
def TypeContainsObjectHandle(self, handle_type, dispatchable):
if dispatchable:
type_check = self.handle_types.IsDispatchable
else:
type_check = self.handle_types.IsNonDispatchable
if type_check(handle_type):
return True
# if handle_type is a struct, search its members
if handle_type in self.structNames:
member_index = next((i for i, v in enumerate(self.structMembers) if v[0] == handle_type), None)
if member_index is not None:
for item in self.structMembers[member_index].members:
if type_check(item.type):
return True
return False
#
# Generate local ready-access data describing Vulkan structures and unions from the XML metadata
def genStruct(self, typeinfo, typeName, alias):
OutputGenerator.genStruct(self, typeinfo, typeName, alias)
members = typeinfo.elem.findall('.//member')
# Iterate over members once to get length parameters for arrays
lens = set()
for member in members:
len = self.getLen(member)
if len:
lens.add(len)
# Generate member info
membersInfo = []
for member in members:
# Get the member's type and name
info = self.getTypeNameTuple(member)
type = info[0]
name = info[1]
cdecl = self.makeCParamDecl(member, 1)
# Process VkStructureType
if type == 'VkStructureType':
# Extract the required struct type value from the comments
# embedded in the original text defining the 'typeinfo' element
rawXml = etree.tostring(typeinfo.elem).decode('ascii')
result = re.search(r'VK_STRUCTURE_TYPE_\w+', rawXml)
if result:
value = result.group(0)
# Store the required type value
self.structTypes[typeName] = self.StructType(name=name, value=value)
# Store pointer/array/string info
isstaticarray = self.paramIsStaticArray(member)
membersInfo.append(self.CommandParam(type=type,
name=name,
ispointer=self.paramIsPointer(member),
isstaticarray=isstaticarray,
isconst=True if 'const' in cdecl else False,
iscount=True if name in lens else False,
len=self.getLen(member),
extstructs=self.registry.validextensionstructs[typeName] if name == 'pNext' else None,
cdecl=cdecl))
# If true, this structure type can appear multiple times within a pNext chain
allowduplicate = self.getBoolAttribute(typeinfo.elem, 'allowduplicate')
# If this struct extends another, keep its name in list for further processing
if typeinfo.elem.attrib.get('structextends') is not None:
self.structextends_list.append(typeName)
self.structMembers.append(self.StructMemberData(name=typeName, members=membersInfo, ifdef_protect=self.featureExtraProtect, allowduplicate=allowduplicate))
#
# Enum_string_header: Create a routine to convert an enumerated value into a string
def GenerateEnumStringConversion(self, groupName, value_list, bitwidth, protect_dict):
outstring = '\n'
if self.featureExtraProtect is not None:
outstring += '\n#ifdef %s\n\n' % self.featureExtraProtect
groupType = 'uint64_t' if bitwidth == 64 else groupName
outstring += 'static inline const char* string_%s(%s input_value)\n' % (groupName, groupType)
outstring += '{\n'
outstring += ' switch (input_value)\n'
outstring += ' {\n'
# Emit these in a repeatable order so file is generated with the same contents each time.
# This helps compiler caching systems like ccache.
for item in sorted(value_list):
if item in protect_dict:
outstring += '#ifdef %s\n' % protect_dict[item]
outstring += ' case %s:\n' % item
outstring += ' return "%s";\n' % item
if item in protect_dict:
outstring += '#endif // %s\n' % protect_dict[item]
outstring += ' default:\n'
outstring += ' return "Unhandled %s";\n' % groupName
outstring += ' }\n'
outstring += '}\n'
bitsIndex = groupName.find('Bits')
if (bitsIndex != -1):
outstring += '\n'
flagsName = groupName[0:bitsIndex] + "s" + groupName[bitsIndex+4:]
intsuffix = 'ULL' if bitwidth == 64 else 'U'
outstring += 'static inline std::string string_%s(%s input_value)\n' % (flagsName, flagsName)
outstring += '{\n'
outstring += ' std::string ret;\n'
outstring += ' int index = 0;\n'
outstring += ' while(input_value) {\n'
outstring += ' if (input_value & 1) {\n'
outstring += ' if( !ret.empty()) ret.append("|");\n'
outstring += ' ret.append(string_%s(static_cast<%s>(1%s << index)));\n' % (groupName, groupType, intsuffix)
outstring += ' }\n'
outstring += ' ++index;\n'
outstring += ' input_value >>= 1;\n'
outstring += ' }\n'
outstring += ' if( ret.empty()) ret.append(string_%s(static_cast<%s>(0)));\n' % (groupName, groupType)
outstring += ' return ret;\n'
outstring += '}\n'
if self.featureExtraProtect is not None:
outstring += '#endif // %s\n' % self.featureExtraProtect
return outstring
#
# Enum_string_header: Create a routine to determine whether or not a structure type can appear multiple times in a pNext chain
def GenerateDuplicatePnextInfo(self, value_list):
outstring = '\nstatic inline bool IsDuplicatePnext(VkStructureType input_value)\n'
outstring += '{\n'
outstring += ' switch (input_value)\n'
outstring += ' {\n'
# Emit these in a repeatable order so file is generated with the same contents each time.
# This helps compiler caching systems like ccache.
for item in sorted(value_list):
outstring += ' case %s:\n' % item
outstring += ' return true;\n'
outstring += ' default:\n'
outstring += ' return false;\n'
outstring += ' }\n'
outstring += '}\n'
return outstring
def DuplicatePnextInfo(self):
return self.GenerateDuplicatePnextInfo([self.structTypes[struct.name].value for struct in self.structMembers if struct.allowduplicate])
#
# Tack on a helper which, given an index into a VkPhysicalDeviceFeatures structure, will print the corresponding feature name
def DeIndexPhysDevFeatures(self):
pdev_members = None
for name, members, ifdef, allowduplicate in self.structMembers:
if name == 'VkPhysicalDeviceFeatures':
pdev_members = members
break
deindex = '\n'
deindex += 'static inline const char * GetPhysDevFeatureString(uint32_t index) {\n'
deindex += ' const char * IndexToPhysDevFeatureString[] = {\n'
for feature in pdev_members:
deindex += ' "%s",\n' % feature.name
deindex += ' };\n\n'
deindex += ' return IndexToPhysDevFeatureString[index];\n'
deindex += '}\n'
return deindex
#
# Combine enum string helper header file preamble with body text and return
def GenerateEnumStringHelperHeader(self):
enum_string_helper_header = '\n'
enum_string_helper_header += '#pragma once\n'
enum_string_helper_header += '#ifdef _MSC_VER\n'
enum_string_helper_header += '#pragma warning( disable : 4065 )\n'
enum_string_helper_header += '#endif\n'
enum_string_helper_header += '\n'
enum_string_helper_header += '#include <string>\n'
enum_string_helper_header += '#include <vulkan/vulkan.h>\n'
enum_string_helper_header += '\n'
enum_string_helper_header += self.enum_output
enum_string_helper_header += self.DeIndexPhysDevFeatures()
enum_string_helper_header += self.DuplicatePnextInfo()
return enum_string_helper_header
#
# Helper function for declaring a counter variable only once
def DeclareCounter(self, string_var, declare_flag):
if declare_flag == False:
string_var += ' uint32_t i = 0;\n'
declare_flag = True
return string_var, declare_flag
#
# Combine safe struct helper header file preamble with body text and return
def GenerateSafeStructHelperHeader(self):
safe_struct_helper_header = '\n'
safe_struct_helper_header += '#pragma once\n'
safe_struct_helper_header += '#include <vulkan/vulkan.h>\n'
safe_struct_helper_header += '#include <stdlib.h>\n'
safe_struct_helper_header += '\n'
safe_struct_helper_header += 'void *SafePnextCopy(const void *pNext);\n'
safe_struct_helper_header += 'void FreePnextChain(const void *pNext);\n'
safe_struct_helper_header += 'char *SafeStringCopy(const char *in_string);\n'
safe_struct_helper_header += '\n'
safe_struct_helper_header += self.GenerateSafeStructHeader()
return safe_struct_helper_header
#
# safe_struct header: build function prototypes for header file
def GenerateSafeStructHeader(self):
safe_struct_header = ''
for item in self.structMembers:
if self.NeedSafeStruct(item) == True:
safe_struct_header += '\n'
if item.ifdef_protect is not None:
safe_struct_header += '#ifdef %s\n' % item.ifdef_protect
safe_struct_header += self.structOrUnion[item.name] + ' safe_%s {\n' % (item.name)
for member in item.members:
if member.type in self.structNames:
member_index = next((i for i, v in enumerate(self.structMembers) if v[0] == member.type), None)
if member_index is not None and self.NeedSafeStruct(self.structMembers[member_index]) == True:
if member.ispointer:
num_indirections = member.cdecl.count('*')
safe_struct_header += ' safe_%s%s %s;\n' % (member.type, '*' * num_indirections, member.name)
else:
safe_struct_header += ' safe_%s %s;\n' % (member.type, member.name)
continue
if member.len is not None and (self.TypeContainsObjectHandle(member.type, True) or self.TypeContainsObjectHandle(member.type, False)):
safe_struct_header += ' %s* %s;\n' % (member.type, member.name)
else:
safe_struct_header += '%s;\n' % member.cdecl
safe_struct_header += ' safe_%s(const %s* in_struct%s);\n' % (item.name, item.name, self.custom_construct_params.get(item.name, ''))
safe_struct_header += ' safe_%s(const safe_%s& copy_src);\n' % (item.name, item.name)
safe_struct_header += ' safe_%s& operator=(const safe_%s& copy_src);\n' % (item.name, item.name)
safe_struct_header += ' safe_%s();\n' % item.name
safe_struct_header += ' ~safe_%s();\n' % item.name
safe_struct_header += ' void initialize(const %s* in_struct%s);\n' % (item.name, self.custom_construct_params.get(item.name, ''))
safe_struct_header += ' void initialize(const safe_%s* copy_src);\n' % (item.name)
safe_struct_header += ' %s *ptr() { return reinterpret_cast<%s *>(this); }\n' % (item.name, item.name)
safe_struct_header += ' %s const *ptr() const { return reinterpret_cast<%s const *>(this); }\n' % (item.name, item.name)
safe_struct_header += '};\n'
if item.ifdef_protect is not None:
safe_struct_header += '#endif // %s\n' % item.ifdef_protect
return safe_struct_header
#
# Combine helper preamble with instrumented function declarations
def GenerateCcOptickInstrumentationHelperHeader(self):
header = ''
header += '#pragma once\n'
header += '\n'
header += '#ifdef INSTRUMENT_OPTICK\n'
header += '#include "optick.h"\n'
header += '#endif // INSTRUMENT_OPTICK\n'
header += '\n'
header += 'class CoreChecksOptickInstrumented : public CoreChecks {\n'
header += ' public:\n'
header += '#ifdef INSTRUMENT_OPTICK\n'
header += self.inst_header_decls
header += '#endif // INSTRUMENT_OPTICK\n'
header += '\n'
header += '};\n'
return header
#
# Combine helper preamble with instrumented function definitions
def GenerateCcOptickInstrumentationHelperSource(self):
source = self.inline_corechecks_instrumentation_source
source += self.inst_source_funcs
source += '#endif // INSTRUMENT_OPTICK'
return source
#
# Generate extension helper header file
def GenerateExtensionHelperHeader(self):
V_1_0_instance_extensions_promoted_to_V_1_1_core = [
'VK_KHR_device_group_creation',
'VK_KHR_external_fence_capabilities',
'VK_KHR_external_memory_capabilities',
'VK_KHR_external_semaphore_capabilities',
'VK_KHR_get_physical_device_properties2',
]
V_1_0_device_extensions_promoted_to_V_1_1_core = [
'VK_KHR_16bit_storage',
'VK_KHR_bind_memory2',
'VK_KHR_dedicated_allocation',
'VK_KHR_descriptor_update_template',
'VK_KHR_device_group',
'VK_KHR_external_fence',
'VK_KHR_external_memory',
'VK_KHR_external_semaphore',
'VK_KHR_get_memory_requirements2',
'VK_KHR_maintenance1',
'VK_KHR_maintenance2',
'VK_KHR_maintenance3',
'VK_KHR_multiview',
'VK_KHR_relaxed_block_layout',
'VK_KHR_sampler_ycbcr_conversion',
'VK_KHR_shader_draw_parameters',
'VK_KHR_storage_buffer_storage_class',
'VK_KHR_variable_pointers',
]
V_1_1_instance_extensions_promoted_to_V_1_2_core = [
]
V_1_1_device_extensions_promoted_to_V_1_2_core = [
'VK_KHR_8bit_storage',
'VK_KHR_buffer_device_address',
'VK_KHR_create_renderpass2',
'VK_KHR_depth_stencil_resolve',
'VK_KHR_draw_indirect_count',
'VK_KHR_driver_properties',
'VK_KHR_image_format_list',
'VK_KHR_imageless_framebuffer',
'VK_KHR_sampler_mirror_clamp_to_edge',
'VK_KHR_separate_depth_stencil_layouts',
'VK_KHR_shader_atomic_int64',
'VK_KHR_shader_float16_int8',
'VK_KHR_shader_float_controls',
'VK_KHR_shader_subgroup_extended_types',
'VK_KHR_spirv_1_4',
'VK_KHR_timeline_semaphore',
'VK_KHR_uniform_buffer_standard_layout',
'VK_KHR_vulkan_memory_model',
'VK_EXT_descriptor_indexing',
'VK_EXT_host_query_reset',
'VK_EXT_sampler_filter_minmax',
'VK_EXT_scalar_block_layout',
'VK_EXT_separate_stencil_usage',
'VK_EXT_shader_viewport_index_layer',
]
output = [
'',
'#ifndef VK_EXTENSION_HELPER_H_',
'#define VK_EXTENSION_HELPER_H_',
'#include <string>',
'#include <utility>',
'#include <set>',
'#include <vector>',
'#include <cassert>',
'',
'#include <vulkan/vulkan.h>',
'#include "vk_layer_data.h"',
''
'#define VK_VERSION_1_1_NAME "VK_VERSION_1_1"',
'',
'// Suppress unused warning on Linux',
'#if defined(__GNUC__)',
'#define DECORATE_UNUSED __attribute__((unused))',
'#else',
'#define DECORATE_UNUSED',
'#endif',
'',
'enum ExtEnabled : unsigned char {',
' kNotEnabled,',
' kEnabledByCreateinfo,',
' kEnabledByApiLevel,',
'};',
'',
'static bool DECORATE_UNUSED IsExtEnabled(ExtEnabled extension) {',
' return (extension != kNotEnabled);',
'};',
'',
'static bool DECORATE_UNUSED IsExtEnabledByCreateinfo(ExtEnabled extension) {',
' return (extension == kEnabledByCreateinfo);',
'};',
'#define VK_VERSION_1_2_NAME "VK_VERSION_1_2"',
'']
for type in ['Instance', 'Device']:
struct_type = '%sExtensions' % type
if type == 'Instance':
extension_dict = self.instance_extension_info
promoted_1_1_ext_list = V_1_0_instance_extensions_promoted_to_V_1_1_core
promoted_1_2_ext_list = V_1_1_instance_extensions_promoted_to_V_1_2_core
struct_decl = 'struct %s {' % struct_type
instance_struct_type = struct_type
else:
extension_dict = self.device_extension_info
promoted_1_1_ext_list = V_1_0_device_extensions_promoted_to_V_1_1_core
promoted_1_2_ext_list = V_1_1_device_extensions_promoted_to_V_1_2_core
struct_decl = 'struct %s : public %s {' % (struct_type, instance_struct_type)
extension_items = sorted(extension_dict.items())
field_name = { ext_name: ext_name.lower() for ext_name, info in extension_items }
# Add in pseudo-extensions for core API versions so real extensions can depend on them
extension_dict['VK_VERSION_1_2'] = {'define':"VK_VERSION_1_2_NAME", 'ifdef':None, 'reqs':[]}
field_name['VK_VERSION_1_2'] = "vk_feature_version_1_2"
extension_dict['VK_VERSION_1_1'] = {'define':"VK_VERSION_1_1_NAME", 'ifdef':None, 'reqs':[]}
field_name['VK_VERSION_1_1'] = "vk_feature_version_1_1"
if type == 'Instance':
instance_field_name = field_name
instance_extension_dict = extension_dict
else:
# Get complete field name and extension data for both Instance and Device extensions
field_name.update(instance_field_name)
extension_dict = extension_dict.copy() # Don't modify the self.<dict> we're pointing to
extension_dict.update(instance_extension_dict)
# Output the data member list
struct = [struct_decl]
struct.extend([ ' ExtEnabled vk_feature_version_1_1{kNotEnabled};'])
struct.extend([ ' ExtEnabled vk_feature_version_1_2{kNotEnabled};'])
struct.extend([ ' ExtEnabled %s{kNotEnabled};' % field_name[ext_name] for ext_name, info in extension_items])
# Construct the extension information map -- mapping name to data member (field), and required extensions
# The map is contained within a static function member for portability reasons.
info_type = '%sInfo' % type
info_map_type = '%sMap' % info_type
req_type = '%sReq' % type
req_vec_type = '%sVec' % req_type
struct.extend([
'',
' struct %s {' % req_type,
' const ExtEnabled %s::* enabled;' % struct_type,
' const char *name;',
' };',
' typedef std::vector<%s> %s;' % (req_type, req_vec_type),
' struct %s {' % info_type,
' %s(ExtEnabled %s::* state_, const %s requirements_): state(state_), requirements(requirements_) {}' % ( info_type, struct_type, req_vec_type),
' ExtEnabled %s::* state;' % struct_type,
' %s requirements;' % req_vec_type,
' };',
'',
' typedef layer_data::unordered_map<std::string,%s> %s;' % (info_type, info_map_type),
' static const %s &get_info_map() {' %info_map_type,
' static const %s info_map = {' % info_map_type ])
struct.extend([
' {"VK_VERSION_1_1", %sInfo(&%sExtensions::vk_feature_version_1_1, {})},' % (type, type)])
struct.extend([
' {"VK_VERSION_1_2", %sInfo(&%sExtensions::vk_feature_version_1_2, {})},' % (type, type)])
field_format = '&' + struct_type + '::%s'
req_format = '{' + field_format+ ', %s}'
req_indent = '\n '
req_join = ',' + req_indent
info_format = (' {%s, ' + info_type + '(' + field_format + ', {%s})},')
def format_info(ext_name, info):
reqs = req_join.join([req_format % (field_name[req], extension_dict[req]['define']) for req in info['reqs']])
return info_format % (info['define'], field_name[ext_name], '{%s}' % (req_indent + reqs) if reqs else '')
struct.extend([Guarded(info['ifdef'], format_info(ext_name, info)) for ext_name, info in extension_items])
struct.extend([
' };',
'',
' return info_map;',
' }',
'',
' static const %s &get_info(const char *name) {' % info_type,
' static const %s empty_info {nullptr, %s()};' % (info_type, req_vec_type),
' const auto &ext_map = %s::get_info_map();' % struct_type,
' const auto info = ext_map.find(name);',
' if ( info != ext_map.cend()) {',
' return info->second;',
' }',
' return empty_info;',
' }',
''])
if type == 'Instance':
struct.extend([
' uint32_t NormalizeApiVersion(uint32_t specified_version) {',
' if (specified_version < VK_API_VERSION_1_1)',
' return VK_API_VERSION_1_0;',
' else if (specified_version < VK_API_VERSION_1_2)',
' return VK_API_VERSION_1_1;',
' else',
' return VK_API_VERSION_1_2;',
' }',
'',
' uint32_t InitFromInstanceCreateInfo(uint32_t requested_api_version, const VkInstanceCreateInfo *pCreateInfo) {'])
else:
struct.extend([
' %s() = default;' % struct_type,
' %s(const %s& instance_ext) : %s(instance_ext) {}' % (struct_type, instance_struct_type, instance_struct_type),
'',
' uint32_t InitFromDeviceCreateInfo(const %s *instance_extensions, uint32_t requested_api_version,' % instance_struct_type,
' const VkDeviceCreateInfo *pCreateInfo) {',
' // Initialize: this to defaults, base class fields to input.',
' assert(instance_extensions);',
' *this = %s(*instance_extensions);' % struct_type,
'']),
struct.extend([
'',
' static const std::vector<const char *> V_1_1_promoted_%s_apis = {' % type.lower() ])
struct.extend([' %s,' % extension_dict[ext_name]['define'] for ext_name in promoted_1_1_ext_list])
struct.extend([
' };',
' static const std::vector<const char *> V_1_2_promoted_%s_apis = {' % type.lower() ])
struct.extend([' %s,' % extension_dict[ext_name]['define'] for ext_name in promoted_1_2_ext_list])
struct.extend([
' };',
'',
' // Initialize struct data, robust to invalid pCreateInfo',
' uint32_t api_version = NormalizeApiVersion(requested_api_version);',
' if (api_version >= VK_API_VERSION_1_1) {',
' auto info = get_info("VK_VERSION_1_1");',
' if (info.state) this->*(info.state) = kEnabledByCreateinfo;',
' for (auto promoted_ext : V_1_1_promoted_%s_apis) {' % type.lower(),
' info = get_info(promoted_ext);',
' assert(info.state);',
' if (info.state) this->*(info.state) = kEnabledByApiLevel;',
' }',
' }',
' if (api_version >= VK_API_VERSION_1_2) {',
' auto info = get_info("VK_VERSION_1_2");',
' if (info.state) this->*(info.state) = kEnabledByCreateinfo;',
' for (auto promoted_ext : V_1_2_promoted_%s_apis) {' % type.lower(),
' info = get_info(promoted_ext);',
' assert(info.state);',
' if (info.state) this->*(info.state) = kEnabledByApiLevel;',
' }',
' }',
' // CreateInfo takes precedence over promoted',
' if (pCreateInfo->ppEnabledExtensionNames) {',
' for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) {',
' if (!pCreateInfo->ppEnabledExtensionNames[i]) continue;',
' auto info = get_info(pCreateInfo->ppEnabledExtensionNames[i]);',
' if (info.state) this->*(info.state) = kEnabledByCreateinfo;',
' }',
' }',
' return api_version;',
' }',
'};'])
# Output reference lists of instance/device extension names
struct.extend(['', 'static const std::set<std::string> k%sExtensionNames = {' % type])
struct.extend([Guarded(info['ifdef'], ' %s,' % info['define']) for ext_name, info in extension_items])
struct.extend(['};', ''])
output.extend(struct)
output.extend(['', '#endif // VK_EXTENSION_HELPER_H_'])
return '\n'.join(output)
#
# Combine object types helper header file preamble with body text and return
def GenerateObjectTypesHelperHeader(self):
object_types_helper_header = '\n'
object_types_helper_header += '#pragma once\n'
object_types_helper_header += '\n'
object_types_helper_header += self.GenerateObjectTypesHeader()
return object_types_helper_header
#
# Object types header: create object enum type header file
def GenerateObjectTypesHeader(self):
object_types_header = '#include "cast_utils.h"\n'
object_types_header += '\n'
object_types_header += '// Object Type enum for validation layer internal object handling\n'
object_types_header += 'typedef enum VulkanObjectType {\n'
object_types_header += ' kVulkanObjectTypeUnknown = 0,\n'
enum_num = 1
type_list = []
enum_entry_map = {}
non_dispatchable = {}
dispatchable = {}
object_type_info = {}
# Output enum definition as each handle is processed, saving the names to use for the conversion routine
for item in self.object_types:
fixup_name = item[2:]
enum_entry = 'kVulkanObjectType%s' % fixup_name
enum_entry_map[item] = enum_entry
object_types_header += ' ' + enum_entry
object_types_header += ' = %d,\n' % enum_num
enum_num += 1
type_list.append(enum_entry)
object_type_info[enum_entry] = { 'VkType': item , 'Guard': self.object_guards[item]}
# We'll want lists of the dispatchable and non dispatchable handles below with access to the same info
if self.handle_types.IsNonDispatchable(item):
non_dispatchable[item] = enum_entry
else:
dispatchable[item] = enum_entry
object_types_header += ' kVulkanObjectTypeMax = %d,\n' % enum_num
object_types_header += ' // Aliases for backwards compatibilty of "promoted" types\n'
for (name, alias) in self.object_type_aliases:
fixup_name = name[2:]
object_types_header += ' kVulkanObjectType{} = {},\n'.format(fixup_name, enum_entry_map[alias])
object_types_header += '} VulkanObjectType;\n\n'
# Output name string helper
object_types_header += '// Array of object name strings for OBJECT_TYPE enum conversion\n'
object_types_header += 'static const char * const object_string[kVulkanObjectTypeMax] = {\n'
object_types_header += ' "VkNonDispatchableHandle",\n'
for item in self.object_types:
object_types_header += ' "%s",\n' % item
object_types_header += '};\n'
# Helpers to create unified dict key from k<Name>, VK_OBJECT_TYPE_<Name>, and VK_DEBUG_REPORT_OBJECT_TYPE_<Name>
def dro_to_key(raw_key): return re.search('^VK_DEBUG_REPORT_OBJECT_TYPE_(.*)_EXT$', raw_key).group(1).lower().replace("_","")
def vko_to_key(raw_key): return re.search('^VK_OBJECT_TYPE_(.*)', raw_key).group(1).lower().replace("_","")
def kenum_to_key(raw_key): return re.search('^kVulkanObjectType(.*)', raw_key).group(1).lower()
dro_dict = {dro_to_key(dro) : dro for dro in self.debug_report_object_types}
vko_dict = {vko_to_key(vko) : vko for vko in self.core_object_types}
# Output a conversion routine from the layer object definitions to the debug report definitions
object_types_header += '\n'
object_types_header += '// Helper array to get Vulkan VK_EXT_debug_report object type enum from the internal layers version\n'
object_types_header += 'const VkDebugReportObjectTypeEXT get_debug_report_enum[] = {\n'
object_types_header += ' VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, // kVulkanObjectTypeUnknown\n' # no unknown handle, so this must be here explicitly
for object_type in type_list:
# VK_DEBUG_REPORT is not updated anymore; there might be missing object types
kenum_type = dro_dict.get(kenum_to_key(object_type), 'VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT')
if object_type_info[object_type]['Guard']:
object_types_header += '#ifdef %s\n' % object_type_info[object_type]['Guard']
object_types_header += ' %s, // %s\n' % (kenum_type, object_type)
if object_type_info[object_type]['Guard']:
object_types_header += '#else\n'
object_types_header += ' VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, // %s\n' % object_type
object_types_header += '#endif\n'
object_type_info[object_type]['DbgType'] = kenum_type
object_types_header += '};\n'
# Output a conversion routine from the layer object definitions to the core object type definitions
# This will intentionally *fail* for unmatched types as the VK_OBJECT_TYPE list should match the kVulkanObjectType list
object_types_header += '\n'
object_types_header += '// Helper function to get Official Vulkan VkObjectType enum from the internal layers version\n'
object_types_header += 'static inline VkObjectType ConvertVulkanObjectToCoreObject(VulkanObjectType internal_type) {\n'
object_types_header += ' switch (internal_type) {\n'
for object_type in type_list:
kenum_type = vko_dict[kenum_to_key(object_type)]
object_types_header += ' case %s: return %s;\n' % (object_type, kenum_type)
object_type_info[object_type]['VkoType'] = kenum_type
object_types_header += ' default: return VK_OBJECT_TYPE_UNKNOWN;\n'
object_types_header += ' }\n'
object_types_header += '};\n'
# Output a function converting from core object type definitions to the Vulkan object type enums
object_types_header += '\n'
object_types_header += '// Helper function to get internal layers object ids from the official Vulkan VkObjectType enum\n'
object_types_header += 'static inline VulkanObjectType ConvertCoreObjectToVulkanObject(VkObjectType vulkan_object_type) {\n'
object_types_header += ' switch (vulkan_object_type) {\n'
for object_type in type_list:
kenum_type = vko_dict[kenum_to_key(object_type)]
object_types_header += ' case %s: return %s;\n' % (kenum_type, object_type)
object_types_header += ' default: return kVulkanObjectTypeUnknown;\n'
object_types_header += ' }\n'
object_types_header += '};\n'
# Create a functions to convert between VkDebugReportObjectTypeEXT and VkObjectType
object_types_header += '\n'
object_types_header += 'static inline VkObjectType convertDebugReportObjectToCoreObject(VkDebugReportObjectTypeEXT debug_report_obj) {\n'
object_types_header += ' switch (debug_report_obj) {\n'
for dr_object_type in self.debug_report_object_types:
object_types_header += ' case %s: return %s;\n' % (dr_object_type, vko_dict[dro_to_key(dr_object_type)])
object_types_header += ' default: return VK_OBJECT_TYPE_UNKNOWN;\n'
object_types_header += ' }\n'
object_types_header += '}\n'
object_types_header += '\n'
object_types_header += 'static inline VkDebugReportObjectTypeEXT convertCoreObjectToDebugReportObject(VkObjectType core_report_obj) {\n'
object_types_header += ' switch (core_report_obj) {\n'
for core_object_type in self.core_object_types:
# VK_DEBUG_REPORT is not updated anymore; there might be missing object types
dr_object_type = dro_dict.get(vko_to_key(core_object_type))
if dr_object_type is not None:
object_types_header += ' case %s: return %s;\n' % (core_object_type, dr_object_type)
object_types_header += ' default: return VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT;\n'
object_types_header += ' }\n'
object_types_header += '}\n'
#
object_types_header += '\n'
traits_format = Outdent('''
template <> struct VkHandleInfo<{vk_type}> {{
static const VulkanObjectType kVulkanObjectType = {obj_type};
static const VkDebugReportObjectTypeEXT kDebugReportObjectType = {dbg_type};
static const VkObjectType kVkObjectType = {vko_type};
static const char* Typename() {{
return "{vk_type}";
}}
}};
template <> struct VulkanObjectTypeInfo<{obj_type}> {{
typedef {vk_type} Type;
}};
''')
object_types_header += Outdent('''
// Traits objects from each type statically map from Vk<handleType> to the various enums
template <typename VkType> struct VkHandleInfo {};
template <VulkanObjectType id> struct VulkanObjectTypeInfo {};
// The following line must match the vulkan_core.h condition guarding VK_DEFINE_NON_DISPATCHABLE_HANDLE
#if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__)) || defined(_M_X64) || defined(__ia64) || \
defined(_M_IA64) || defined(__aarch64__) || defined(__powerpc64__)
#define TYPESAFE_NONDISPATCHABLE_HANDLES
#else
VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkNonDispatchableHandle)
''') +'\n'
object_types_header += traits_format.format(vk_type='VkNonDispatchableHandle', obj_type='kVulkanObjectTypeUnknown',
dbg_type='VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT',
vko_type='VK_OBJECT_TYPE_UNKNOWN') + '\n'
object_types_header += '#endif // VK_DEFINE_HANDLE logic duplication\n'
for vk_type, object_type in sorted(dispatchable.items()):
info = object_type_info[object_type]
object_types_header += traits_format.format(vk_type=vk_type, obj_type=object_type, dbg_type=info['DbgType'],
vko_type=info['VkoType'])
object_types_header += '#ifdef TYPESAFE_NONDISPATCHABLE_HANDLES\n'
for vk_type, object_type in sorted(non_dispatchable.items()):
info = object_type_info[object_type]
if info['Guard']:
object_types_header += '#ifdef {}\n'.format(info['Guard'])
object_types_header += traits_format.format(vk_type=vk_type, obj_type=object_type, dbg_type=info['DbgType'],
vko_type=info['VkoType'])
if info['Guard']:
object_types_header += '#endif\n'
object_types_header += '#endif // TYPESAFE_NONDISPATCHABLE_HANDLES\n'
object_types_header += Outdent('''
struct VulkanTypedHandle {
uint64_t handle;
VulkanObjectType type;
template <typename Handle>
VulkanTypedHandle(Handle handle_, VulkanObjectType type_) :
handle(CastToUint64(handle_)),
type(type_) {
#ifdef TYPESAFE_NONDISPATCHABLE_HANDLES
// For 32 bit it's not always safe to check for traits <-> type
// as all non-dispatchable handles have the same type-id and thus traits,
// but on 64 bit we can validate the passed type matches the passed handle
assert(type == VkHandleInfo<Handle>::kVulkanObjectType);
#endif // TYPESAFE_NONDISPATCHABLE_HANDLES
}
template <typename Handle>
Handle Cast() const {
#ifdef TYPESAFE_NONDISPATCHABLE_HANDLES
assert(type == VkHandleInfo<Handle>::kVulkanObjectType);
#endif // TYPESAFE_NONDISPATCHABLE_HANDLES
return CastFromUint64<Handle>(handle);
}
VulkanTypedHandle() :
handle(CastToUint64(VK_NULL_HANDLE)),
type(kVulkanObjectTypeUnknown) {}
}; ''') +'\n'
return object_types_header
#
# Generate pNext handling function
def build_safe_struct_utility_funcs(self):
# Construct Safe-struct helper functions
string_copy_proc = '\n\n'
string_copy_proc += 'char *SafeStringCopy(const char *in_string) {\n'
string_copy_proc += ' if (nullptr == in_string) return nullptr;\n'
string_copy_proc += ' char* dest = new char[std::strlen(in_string) + 1];\n'
string_copy_proc += ' return std::strcpy(dest, in_string);\n'
string_copy_proc += '}\n'
build_pnext_proc = '\n'
build_pnext_proc += 'void *SafePnextCopy(const void *pNext) {\n'
build_pnext_proc += ' if (!pNext) return nullptr;\n'
build_pnext_proc += '\n'
build_pnext_proc += ' void *safe_pNext{};\n'
build_pnext_proc += ' const VkBaseOutStructure *header = reinterpret_cast<const VkBaseOutStructure *>(pNext);\n'
build_pnext_proc += '\n'
build_pnext_proc += ' switch (header->sType) {\n'
# Add special-case code to copy beloved secret loader structs
build_pnext_proc += ' // Special-case Loader Instance Struct passed to/from layer in pNext chain\n'
build_pnext_proc += ' case VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO: {\n'
build_pnext_proc += ' VkLayerInstanceCreateInfo *struct_copy = new VkLayerInstanceCreateInfo;\n'
build_pnext_proc += ' // TODO: Uses original VkLayerInstanceLink* chain, which should be okay for our uses\n'
build_pnext_proc += ' memcpy(struct_copy, pNext, sizeof(VkLayerInstanceCreateInfo));\n'
build_pnext_proc += ' struct_copy->pNext = SafePnextCopy(header->pNext);\n'
build_pnext_proc += ' safe_pNext = struct_copy;\n'
build_pnext_proc += ' break;\n'
build_pnext_proc += ' }\n'
build_pnext_proc += ' // Special-case Loader Device Struct passed to/from layer in pNext chain\n'
build_pnext_proc += ' case VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO: {\n'
build_pnext_proc += ' VkLayerDeviceCreateInfo *struct_copy = new VkLayerDeviceCreateInfo;\n'
build_pnext_proc += ' // TODO: Uses original VkLayerDeviceLink*, which should be okay for our uses\n'
build_pnext_proc += ' memcpy(struct_copy, pNext, sizeof(VkLayerDeviceCreateInfo));\n'
build_pnext_proc += ' struct_copy->pNext = SafePnextCopy(header->pNext);\n'
build_pnext_proc += ' safe_pNext = struct_copy;\n'
build_pnext_proc += ' break;\n'
build_pnext_proc += ' }\n'
free_pnext_proc = '\n'
free_pnext_proc += 'void FreePnextChain(const void *pNext) {\n'
free_pnext_proc += ' if (!pNext) return;\n'
free_pnext_proc += '\n'
free_pnext_proc += ' auto header = reinterpret_cast<const VkBaseOutStructure *>(pNext);\n'
free_pnext_proc += '\n'
free_pnext_proc += ' switch (header->sType) {\n'
free_pnext_proc += ' // Special-case Loader Instance Struct passed to/from layer in pNext chain\n'
free_pnext_proc += ' case VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO:\n'
free_pnext_proc += ' FreePnextChain(header->pNext);\n'
free_pnext_proc += ' delete reinterpret_cast<const VkLayerInstanceCreateInfo *>(pNext);\n'
free_pnext_proc += ' break;\n'
free_pnext_proc += ' // Special-case Loader Device Struct passed to/from layer in pNext chain\n'
free_pnext_proc += ' case VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO:\n'
free_pnext_proc += ' FreePnextChain(header->pNext);\n'
free_pnext_proc += ' delete reinterpret_cast<const VkLayerDeviceCreateInfo *>(pNext);\n'
free_pnext_proc += ' break;\n'
chain_structs = tuple(s for s in self.structMembers if s.name in self.structextends_list)
ifdefs = sorted({cs.ifdef_protect for cs in chain_structs}, key = lambda i : i if i is not None else '')
for ifdef in ifdefs:
if ifdef is not None:
build_pnext_proc += '#ifdef %s\n' % ifdef
free_pnext_proc += '#ifdef %s\n' % ifdef
assorted_chain_structs = tuple(s for s in chain_structs if s.ifdef_protect == ifdef)
for struct in assorted_chain_structs:
build_pnext_proc += ' case %s:\n' % self.structTypes[struct.name].value
build_pnext_proc += ' safe_pNext = new safe_%s(reinterpret_cast<const %s *>(pNext));\n' % (struct.name, struct.name)
build_pnext_proc += ' break;\n'
free_pnext_proc += ' case %s:\n' % self.structTypes[struct.name].value
free_pnext_proc += ' delete reinterpret_cast<const safe_%s *>(header);\n' % struct.name
free_pnext_proc += ' break;\n'
if ifdef is not None:
build_pnext_proc += '#endif // %s\n' % ifdef
free_pnext_proc += '#endif // %s\n' % ifdef
build_pnext_proc += ' default: // Encountered an unknown sType -- skip (do not copy) this entry in the chain\n'
build_pnext_proc += ' // If sType is in custom list, construct blind copy\n'
build_pnext_proc += ' for (auto item : custom_stype_info) {\n'
build_pnext_proc += ' if (item.first == header->sType) {\n'
build_pnext_proc += ' safe_pNext = malloc(item.second);\n'
build_pnext_proc += ' memcpy(safe_pNext, header, item.second);\n'
build_pnext_proc += ' // Deep copy the rest of the pNext chain\n'
build_pnext_proc += ' VkBaseOutStructure *custom_struct = reinterpret_cast<VkBaseOutStructure *>(safe_pNext);\n'
build_pnext_proc += ' if (custom_struct->pNext) {\n'
build_pnext_proc += ' custom_struct->pNext = reinterpret_cast<VkBaseOutStructure *>(SafePnextCopy(custom_struct->pNext));\n'
build_pnext_proc += ' }\n'
build_pnext_proc += ' }\n'
build_pnext_proc += ' }\n'
build_pnext_proc += ' if (!safe_pNext) {\n'
build_pnext_proc += ' safe_pNext = SafePnextCopy(header->pNext);\n'
build_pnext_proc += ' }\n'
build_pnext_proc += ' break;\n'
build_pnext_proc += ' }\n'
build_pnext_proc += '\n'
build_pnext_proc += ' return safe_pNext;\n'
build_pnext_proc += '}\n'
free_pnext_proc += ' default: // Encountered an unknown sType\n'
free_pnext_proc += ' // If sType is in custom list, free custom struct memory and clean up\n'
free_pnext_proc += ' for (auto item : custom_stype_info) {\n'
free_pnext_proc += ' if (item.first == header->sType) {\n'
free_pnext_proc += ' if (header->pNext) {\n'
free_pnext_proc += ' FreePnextChain(header->pNext);\n'
free_pnext_proc += ' }\n'
free_pnext_proc += ' free(const_cast<void *>(pNext));\n'
free_pnext_proc += ' pNext = nullptr;\n'
free_pnext_proc += ' break;\n'
free_pnext_proc += ' }\n'
free_pnext_proc += ' }\n'
free_pnext_proc += ' if (pNext) {\n'
free_pnext_proc += ' FreePnextChain(header->pNext);\n'
free_pnext_proc += ' }\n'
free_pnext_proc += ' break;\n'
free_pnext_proc += ' }\n'
free_pnext_proc += '}\n'
pnext_procs = string_copy_proc + build_pnext_proc + free_pnext_proc
return pnext_procs
#
# Determine if a structure needs a safe_struct helper function
# That is, it has an sType or one of its members is a pointer
def NeedSafeStruct(self, structure):
if 'VkBase' in structure.name:
return False
if 'sType' == structure.name:
return True
for member in structure.members:
if member.ispointer == True:
return True
return False
#
# Combine safe struct helper source file preamble with body text and return
def GenerateSafeStructHelperSource(self):
safe_struct_helper_source = '\n'
safe_struct_helper_source += '#include "vk_safe_struct.h"\n'
safe_struct_helper_source += '\n'
safe_struct_helper_source += '#include <string.h>\n'
safe_struct_helper_source += '#include <cassert>\n'
safe_struct_helper_source += '#include <cstring>\n'
safe_struct_helper_source += '#include <vector>\n'
safe_struct_helper_source += '\n'
safe_struct_helper_source += '#include <vulkan/vk_layer.h>\n'
safe_struct_helper_source += '\n'
safe_struct_helper_source += 'extern std::vector<std::pair<uint32_t, uint32_t>> custom_stype_info;\n'
safe_struct_helper_source += '\n'
safe_struct_helper_source += self.GenerateSafeStructSource()
safe_struct_helper_source += self.build_safe_struct_utility_funcs()
return safe_struct_helper_source
#
# safe_struct source -- create bodies of safe struct helper functions
def GenerateSafeStructSource(self):
safe_struct_body = []
wsi_structs = ['VkXlibSurfaceCreateInfoKHR',
'VkXcbSurfaceCreateInfoKHR',
'VkWaylandSurfaceCreateInfoKHR',
'VkAndroidSurfaceCreateInfoKHR',
'VkWin32SurfaceCreateInfoKHR',
'VkIOSSurfaceCreateInfoMVK',
'VkMacOSSurfaceCreateInfoMVK',
'VkMetalSurfaceCreateInfoEXT'
]
member_init_transforms = {
'queueFamilyIndexCount': lambda m: f'{m.name}(0)'
}
def qfi_construct(item, member):
true_index_setter = lambda i: f'{i}queueFamilyIndexCount = in_struct->queueFamilyIndexCount;\n'
false_index_setter = lambda i: f'{i}queueFamilyIndexCount = 0;\n'
if item.name == 'VkSwapchainCreateInfoKHR':
return (f'(in_struct->imageSharingMode == VK_SHARING_MODE_CONCURRENT) && in_struct->{member.name}', true_index_setter, false_index_setter)
else:
return (f'(in_struct->sharingMode == VK_SHARING_MODE_CONCURRENT) && in_struct->{member.name}', true_index_setter, false_index_setter)
# map of:
# <member name>: function(item, member) -> (condition, true statement, false statement)
member_construct_conditions = {
'pQueueFamilyIndices': qfi_construct
}
# For abstract types just want to save the pointer away
# since we cannot make a copy.
abstract_types = ['AHardwareBuffer',
'ANativeWindow',
'CAMetalLayer'
]
for item in self.structMembers:
if self.NeedSafeStruct(item) == False:
continue
if item.name in wsi_structs:
continue
if item.ifdef_protect is not None:
safe_struct_body.append("#ifdef %s\n" % item.ifdef_protect)
ss_name = "safe_%s" % item.name
init_list = '' # list of members in struct constructor initializer
default_init_list = '' # Default constructor just inits ptrs to nullptr in initializer
init_func_txt = '' # Txt for initialize() function that takes struct ptr and inits members
construct_txt = '' # Body of constuctor as well as body of initialize() func following init_func_txt
destruct_txt = ''
custom_construct_txt = {
# VkWriteDescriptorSet is special case because pointers may be non-null but ignored
'VkWriteDescriptorSet' :
' switch (descriptorType) {\n'
' case VK_DESCRIPTOR_TYPE_SAMPLER:\n'
' case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:\n'
' case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:\n'
' case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:\n'
' case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:\n'
' if (descriptorCount && in_struct->pImageInfo) {\n'
' pImageInfo = new VkDescriptorImageInfo[descriptorCount];\n'
' for (uint32_t i = 0; i < descriptorCount; ++i) {\n'
' pImageInfo[i] = in_struct->pImageInfo[i];\n'
' }\n'
' }\n'
' break;\n'
' case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER:\n'
' case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER:\n'
' case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:\n'
' case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC:\n'
' if (descriptorCount && in_struct->pBufferInfo) {\n'
' pBufferInfo = new VkDescriptorBufferInfo[descriptorCount];\n'
' for (uint32_t i = 0; i < descriptorCount; ++i) {\n'
' pBufferInfo[i] = in_struct->pBufferInfo[i];\n'
' }\n'
' }\n'
' break;\n'
' case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:\n'
' case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:\n'
' if (descriptorCount && in_struct->pTexelBufferView) {\n'
' pTexelBufferView = new VkBufferView[descriptorCount];\n'
' for (uint32_t i = 0; i < descriptorCount; ++i) {\n'
' pTexelBufferView[i] = in_struct->pTexelBufferView[i];\n'
' }\n'
' }\n'
' break;\n'
' default:\n'
' break;\n'
' }\n',
'VkShaderModuleCreateInfo' :
' if (in_struct->pCode) {\n'
' pCode = reinterpret_cast<uint32_t *>(new uint8_t[codeSize]);\n'
' memcpy((void *)pCode, (void *)in_struct->pCode, codeSize);\n'
' }\n',
# VkGraphicsPipelineCreateInfo is special case because its pointers may be non-null but ignored
'VkGraphicsPipelineCreateInfo' :
' if (stageCount && in_struct->pStages) {\n'
' pStages = new safe_VkPipelineShaderStageCreateInfo[stageCount];\n'
' for (uint32_t i = 0; i < stageCount; ++i) {\n'
' pStages[i].initialize(&in_struct->pStages[i]);\n'
' }\n'
' }\n'
' if (in_struct->pVertexInputState)\n'
' pVertexInputState = new safe_VkPipelineVertexInputStateCreateInfo(in_struct->pVertexInputState);\n'
' else\n'
' pVertexInputState = NULL;\n'
' if (in_struct->pInputAssemblyState)\n'
' pInputAssemblyState = new safe_VkPipelineInputAssemblyStateCreateInfo(in_struct->pInputAssemblyState);\n'
' else\n'
' pInputAssemblyState = NULL;\n'
' bool has_tessellation_stage = false;\n'
' if (stageCount && pStages)\n'
' for (uint32_t i = 0; i < stageCount && !has_tessellation_stage; ++i)\n'
' if (pStages[i].stage == VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT || pStages[i].stage == VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT)\n'
' has_tessellation_stage = true;\n'
' if (in_struct->pTessellationState && has_tessellation_stage)\n'
' pTessellationState = new safe_VkPipelineTessellationStateCreateInfo(in_struct->pTessellationState);\n'
' else\n'
' pTessellationState = NULL; // original pTessellationState pointer ignored\n'
' bool is_dynamic_has_rasterization = false;\n'
' if (in_struct->pDynamicState && in_struct->pDynamicState->pDynamicStates) {\n'
' for (uint32_t i = 0; i < in_struct->pDynamicState->dynamicStateCount && !is_dynamic_has_rasterization; ++i)\n'
' if (in_struct->pDynamicState->pDynamicStates[i] == VK_DYNAMIC_STATE_RASTERIZER_DISCARD_ENABLE_EXT)\n'
' is_dynamic_has_rasterization = true;\n'
' }\n'
' bool has_rasterization = in_struct->pRasterizationState ? (is_dynamic_has_rasterization || !in_struct->pRasterizationState->rasterizerDiscardEnable) : false;\n'
' if (in_struct->pViewportState && has_rasterization) {\n'
' bool is_dynamic_viewports = false;\n'
' bool is_dynamic_scissors = false;\n'
' if (in_struct->pDynamicState && in_struct->pDynamicState->pDynamicStates) {\n'
' for (uint32_t i = 0; i < in_struct->pDynamicState->dynamicStateCount && !is_dynamic_viewports; ++i)\n'
' if (in_struct->pDynamicState->pDynamicStates[i] == VK_DYNAMIC_STATE_VIEWPORT)\n'
' is_dynamic_viewports = true;\n'
' for (uint32_t i = 0; i < in_struct->pDynamicState->dynamicStateCount && !is_dynamic_scissors; ++i)\n'
' if (in_struct->pDynamicState->pDynamicStates[i] == VK_DYNAMIC_STATE_SCISSOR)\n'
' is_dynamic_scissors = true;\n'
' }\n'
' pViewportState = new safe_VkPipelineViewportStateCreateInfo(in_struct->pViewportState, is_dynamic_viewports, is_dynamic_scissors);\n'
' } else\n'
' pViewportState = NULL; // original pViewportState pointer ignored\n'
' if (in_struct->pRasterizationState)\n'
' pRasterizationState = new safe_VkPipelineRasterizationStateCreateInfo(in_struct->pRasterizationState);\n'
' else\n'
' pRasterizationState = NULL;\n'
' if (in_struct->pMultisampleState && has_rasterization)\n'
' pMultisampleState = new safe_VkPipelineMultisampleStateCreateInfo(in_struct->pMultisampleState);\n'
' else\n'
' pMultisampleState = NULL; // original pMultisampleState pointer ignored\n'
' // needs a tracked subpass state uses_depthstencil_attachment\n'
' if (in_struct->pDepthStencilState && has_rasterization && uses_depthstencil_attachment)\n'
' pDepthStencilState = new safe_VkPipelineDepthStencilStateCreateInfo(in_struct->pDepthStencilState);\n'
' else\n'
' pDepthStencilState = NULL; // original pDepthStencilState pointer ignored\n'
' // needs a tracked subpass state usesColorAttachment\n'
' if (in_struct->pColorBlendState && has_rasterization && uses_color_attachment)\n'
' pColorBlendState = new safe_VkPipelineColorBlendStateCreateInfo(in_struct->pColorBlendState);\n'
' else\n'
' pColorBlendState = NULL; // original pColorBlendState pointer ignored\n'
' if (in_struct->pDynamicState)\n'
' pDynamicState = new safe_VkPipelineDynamicStateCreateInfo(in_struct->pDynamicState);\n'
' else\n'
' pDynamicState = NULL;\n',
# VkPipelineViewportStateCreateInfo is special case because its pointers may be non-null but ignored
'VkPipelineViewportStateCreateInfo' :
' if (in_struct->pViewports && !is_dynamic_viewports) {\n'
' pViewports = new VkViewport[in_struct->viewportCount];\n'
' memcpy ((void *)pViewports, (void *)in_struct->pViewports, sizeof(VkViewport)*in_struct->viewportCount);\n'
' }\n'
' else\n'
' pViewports = NULL;\n'
' if (in_struct->pScissors && !is_dynamic_scissors) {\n'
' pScissors = new VkRect2D[in_struct->scissorCount];\n'
' memcpy ((void *)pScissors, (void *)in_struct->pScissors, sizeof(VkRect2D)*in_struct->scissorCount);\n'
' }\n'
' else\n'
' pScissors = NULL;\n',
# VkFrameBufferCreateInfo is special case because its pAttachments pointer may be non-null but ignored
'VkFramebufferCreateInfo' :
' if (attachmentCount && in_struct->pAttachments && !(flags & VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT)) {\n'
' pAttachments = new VkImageView[attachmentCount];\n'
' for (uint32_t i = 0; i < attachmentCount; ++i) {\n'
' pAttachments[i] = in_struct->pAttachments[i];\n'
' }\n'
' }\n',
# VkDescriptorSetLayoutBinding is special case because its pImmutableSamplers pointer may be non-null but ignored
'VkDescriptorSetLayoutBinding' :
' const bool sampler_type = in_struct->descriptorType == VK_DESCRIPTOR_TYPE_SAMPLER || in_struct->descriptorType == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER;\n'
' if (descriptorCount && in_struct->pImmutableSamplers && sampler_type) {\n'
' pImmutableSamplers = new VkSampler[descriptorCount];\n'
' for (uint32_t i = 0; i < descriptorCount; ++i) {\n'
' pImmutableSamplers[i] = in_struct->pImmutableSamplers[i];\n'
' }\n'
' }\n',
'VkAccelerationStructureBuildGeometryInfoKHR':
' if (geometryCount) {\n'
' if ( in_struct->ppGeometries) {\n'
' ppGeometries = new safe_VkAccelerationStructureGeometryKHR *[geometryCount];\n'
' for (uint32_t i = 0; i < geometryCount; ++i) {\n'
' ppGeometries[i] = new safe_VkAccelerationStructureGeometryKHR(in_struct->ppGeometries[i]);\n'
' }\n'
' } else {\n'
' pGeometries = new safe_VkAccelerationStructureGeometryKHR[geometryCount];\n'
' for (uint32_t i = 0; i < geometryCount; ++i) {\n'
' (pGeometries)[i] = safe_VkAccelerationStructureGeometryKHR(&(in_struct->pGeometries)[i]);\n'
' }\n'
' }\n'
' }\n',
}
custom_copy_txt = {
# VkGraphicsPipelineCreateInfo is special case because it has custom construct parameters
'VkGraphicsPipelineCreateInfo' :
' pNext = SafePnextCopy(copy_src.pNext);\n'
' if (stageCount && copy_src.pStages) {\n'
' pStages = new safe_VkPipelineShaderStageCreateInfo[stageCount];\n'
' for (uint32_t i = 0; i < stageCount; ++i) {\n'
' pStages[i].initialize(&copy_src.pStages[i]);\n'
' }\n'
' }\n'
' if (copy_src.pVertexInputState)\n'
' pVertexInputState = new safe_VkPipelineVertexInputStateCreateInfo(*copy_src.pVertexInputState);\n'
' else\n'
' pVertexInputState = NULL;\n'
' if (copy_src.pInputAssemblyState)\n'
' pInputAssemblyState = new safe_VkPipelineInputAssemblyStateCreateInfo(*copy_src.pInputAssemblyState);\n'
' else\n'
' pInputAssemblyState = NULL;\n'
' bool has_tessellation_stage = false;\n'
' if (stageCount && pStages)\n'
' for (uint32_t i = 0; i < stageCount && !has_tessellation_stage; ++i)\n'
' if (pStages[i].stage == VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT || pStages[i].stage == VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT)\n'
' has_tessellation_stage = true;\n'
' if (copy_src.pTessellationState && has_tessellation_stage)\n'
' pTessellationState = new safe_VkPipelineTessellationStateCreateInfo(*copy_src.pTessellationState);\n'
' else\n'
' pTessellationState = NULL; // original pTessellationState pointer ignored\n'
' bool is_dynamic_has_rasterization = false;\n'
' if (copy_src.pDynamicState && copy_src.pDynamicState->pDynamicStates) {\n'
' for (uint32_t i = 0; i < copy_src.pDynamicState->dynamicStateCount && !is_dynamic_has_rasterization; ++i)\n'
' if (copy_src.pDynamicState->pDynamicStates[i] == VK_DYNAMIC_STATE_RASTERIZER_DISCARD_ENABLE_EXT)\n'
' is_dynamic_has_rasterization = true;\n'
' }\n'
' bool has_rasterization = copy_src.pRasterizationState ? (is_dynamic_has_rasterization || !copy_src.pRasterizationState->rasterizerDiscardEnable) : false;\n'
' if (copy_src.pViewportState && has_rasterization) {\n'
' pViewportState = new safe_VkPipelineViewportStateCreateInfo(*copy_src.pViewportState);\n'
' } else\n'
' pViewportState = NULL; // original pViewportState pointer ignored\n'
' if (copy_src.pRasterizationState)\n'
' pRasterizationState = new safe_VkPipelineRasterizationStateCreateInfo(*copy_src.pRasterizationState);\n'
' else\n'
' pRasterizationState = NULL;\n'
' if (copy_src.pMultisampleState && has_rasterization)\n'
' pMultisampleState = new safe_VkPipelineMultisampleStateCreateInfo(*copy_src.pMultisampleState);\n'
' else\n'
' pMultisampleState = NULL; // original pMultisampleState pointer ignored\n'
' if (copy_src.pDepthStencilState && has_rasterization)\n'
' pDepthStencilState = new safe_VkPipelineDepthStencilStateCreateInfo(*copy_src.pDepthStencilState);\n'
' else\n'
' pDepthStencilState = NULL; // original pDepthStencilState pointer ignored\n'
' if (copy_src.pColorBlendState && has_rasterization)\n'
' pColorBlendState = new safe_VkPipelineColorBlendStateCreateInfo(*copy_src.pColorBlendState);\n'
' else\n'
' pColorBlendState = NULL; // original pColorBlendState pointer ignored\n'
' if (copy_src.pDynamicState)\n'
' pDynamicState = new safe_VkPipelineDynamicStateCreateInfo(*copy_src.pDynamicState);\n'
' else\n'
' pDynamicState = NULL;\n',
# VkPipelineViewportStateCreateInfo is special case because it has custom construct parameters
'VkPipelineViewportStateCreateInfo' :
' pNext = SafePnextCopy(copy_src.pNext);\n'
' if (copy_src.pViewports) {\n'
' pViewports = new VkViewport[copy_src.viewportCount];\n'
' memcpy ((void *)pViewports, (void *)copy_src.pViewports, sizeof(VkViewport)*copy_src.viewportCount);\n'
' }\n'
' else\n'
' pViewports = NULL;\n'
' if (copy_src.pScissors) {\n'
' pScissors = new VkRect2D[copy_src.scissorCount];\n'
' memcpy ((void *)pScissors, (void *)copy_src.pScissors, sizeof(VkRect2D)*copy_src.scissorCount);\n'
' }\n'
' else\n'
' pScissors = NULL;\n',
'VkFramebufferCreateInfo' :
' pNext = SafePnextCopy(copy_src.pNext);\n'
' if (attachmentCount && copy_src.pAttachments && !(flags & VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT)) {\n'
' pAttachments = new VkImageView[attachmentCount];\n'
' for (uint32_t i = 0; i < attachmentCount; ++i) {\n'
' pAttachments[i] = copy_src.pAttachments[i];\n'
' }\n'
' }\n',
'VkAccelerationStructureBuildGeometryInfoKHR':
' if (geometryCount) {\n'
' if ( copy_src.ppGeometries) {\n'
' ppGeometries = new safe_VkAccelerationStructureGeometryKHR *[geometryCount];\n'
' for (uint32_t i = 0; i < geometryCount; ++i) {\n'
' ppGeometries[i] = new safe_VkAccelerationStructureGeometryKHR(*copy_src.ppGeometries[i]);\n'
' }\n'
' } else {\n'
' pGeometries = new safe_VkAccelerationStructureGeometryKHR[geometryCount];\n'
' for (uint32_t i = 0; i < geometryCount; ++i) {\n'
' pGeometries[i] = safe_VkAccelerationStructureGeometryKHR(copy_src.pGeometries[i]);\n'
' }\n'
' }\n'
' }\n',
}
custom_destruct_txt = {
'VkShaderModuleCreateInfo' :
' if (pCode)\n'
' delete[] reinterpret_cast<const uint8_t *>(pCode);\n',
'VkAccelerationStructureBuildGeometryInfoKHR' :
' if (ppGeometries) {\n'
' for (uint32_t i = 0; i < geometryCount; ++i) {\n'
' delete ppGeometries[i];\n'
' }\n'
' delete[] ppGeometries;\n'
' } else if(pGeometries) {\n'
' delete[] pGeometries;\n'
' }\n'
}
copy_pnext = ''
copy_strings = ''
for member in item.members:
m_type = member.type
if member.name == 'pNext':
copy_pnext = ' pNext = SafePnextCopy(in_struct->pNext);\n'
if member.type in self.structNames:
member_index = next((i for i, v in enumerate(self.structMembers) if v[0] == member.type), None)
if member_index is not None and self.NeedSafeStruct(self.structMembers[member_index]) == True:
m_type = 'safe_%s' % member.type
if member.name == 'sType':
if item.name in self.structTypes:
struct_type = self.structTypes[item.name]
default_init_list += '\n %s(%s),' % (member.name, struct_type.value)
if member.ispointer and 'safe_' not in m_type and self.TypeContainsObjectHandle(member.type, False) == False:
# Ptr types w/o a safe_struct, for non-null case need to allocate new ptr and copy data in
if m_type in ['void', 'char']:
if member.name != 'pNext':
if m_type == 'char':
# Create deep copies of strings
if member.len:
copy_strings += ' char **tmp_%s = new char *[in_struct->%s];\n' % (member.name, member.len)
copy_strings += ' for (uint32_t i = 0; i < %s; ++i) {\n' % member.len
copy_strings += ' tmp_%s[i] = SafeStringCopy(in_struct->%s[i]);\n' % (member.name, member.name)
copy_strings += ' }\n'
copy_strings += ' %s = tmp_%s;\n' % (member.name, member.name)
destruct_txt += ' if (%s) {\n' % member.name
destruct_txt += ' for (uint32_t i = 0; i < %s; ++i) {\n' % member.len
destruct_txt += ' delete [] %s[i];\n' % member.name
destruct_txt += ' }\n'
destruct_txt += ' delete [] %s;\n' % member.name
destruct_txt += ' }\n'
else:
copy_strings += ' %s = SafeStringCopy(in_struct->%s);\n' % (member.name, member.name)
destruct_txt += ' if (%s) delete [] %s;\n' % (member.name, member.name)
else:
# For these exceptions just copy initial value over for now
init_list += '\n %s(in_struct->%s),' % (member.name, member.name)
init_func_txt += ' %s = in_struct->%s;\n' % (member.name, member.name)
default_init_list += '\n %s(nullptr),' % (member.name)
else:
default_init_list += '\n %s(nullptr),' % (member.name)
init_list += '\n %s(nullptr),' % (member.name)
if m_type in abstract_types:
construct_txt += ' %s = in_struct->%s;\n' % (member.name, member.name)
else:
init_func_txt += ' %s = nullptr;\n' % (member.name)
if not member.isstaticarray and (member.len is None or '/' in member.len):
construct_txt += ' if (in_struct->%s) {\n' % member.name
construct_txt += ' %s = new %s(*in_struct->%s);\n' % (member.name, m_type, member.name)
construct_txt += ' }\n'
destruct_txt += ' if (%s)\n' % member.name
destruct_txt += ' delete %s;\n' % member.name
else:
# Prepend struct members with struct name
decorated_length = member.len
for other_member in item.members:
decorated_length = re.sub(r'\b({})\b'.format(other_member.name), r'in_struct->\1', decorated_length)
try:
concurrent_clause = member_construct_conditions[member.name](item, member)
except:
concurrent_clause = (f'in_struct->{member.name}', lambda x: '')
construct_txt += f' if ({concurrent_clause[0]}) {{' + '\n'
construct_txt += ' %s = new %s[%s];\n' % (member.name, m_type, decorated_length)
construct_txt += ' memcpy ((void *)%s, (void *)in_struct->%s, sizeof(%s)*%s);\n' % (member.name, member.name, m_type, decorated_length)
construct_txt += concurrent_clause[1](' ')
if len(concurrent_clause) > 2:
construct_txt += ' } else {\n'
construct_txt += concurrent_clause[2](' ')
construct_txt += ' }\n'
destruct_txt += ' if (%s)\n' % member.name
destruct_txt += ' delete[] %s;\n' % member.name
elif member.isstaticarray or member.len is not None:
if member.len is None:
# Extract length of static array by grabbing val between []
static_array_size = re.match(r"[^[]*\[([^]]*)\]", member.cdecl)
construct_txt += ' for (uint32_t i = 0; i < %s; ++i) {\n' % static_array_size.group(1)
construct_txt += ' %s[i] = in_struct->%s[i];\n' % (member.name, member.name)
construct_txt += ' }\n'
else:
# Init array ptr to NULL
default_init_list += '\n %s(nullptr),' % member.name
init_list += '\n %s(nullptr),' % member.name
init_func_txt += ' %s = nullptr;\n' % member.name
array_element = 'in_struct->%s[i]' % member.name
if member.type in self.structNames:
member_index = next((i for i, v in enumerate(self.structMembers) if v[0] == member.type), None)
if member_index is not None and self.NeedSafeStruct(self.structMembers[member_index]) == True:
array_element = '%s(&in_struct->safe_%s[i])' % (member.type, member.name)
construct_txt += ' if (%s && in_struct->%s) {\n' % (member.len, member.name)
construct_txt += ' %s = new %s[%s];\n' % (member.name, m_type, member.len)
destruct_txt += ' if (%s)\n' % member.name
destruct_txt += ' delete[] %s;\n' % member.name
construct_txt += ' for (uint32_t i = 0; i < %s; ++i) {\n' % (member.len)
if 'safe_' in m_type:
construct_txt += ' %s[i].initialize(&in_struct->%s[i]);\n' % (member.name, member.name)
else:
construct_txt += ' %s[i] = %s;\n' % (member.name, array_element)
construct_txt += ' }\n'
construct_txt += ' }\n'
elif member.ispointer == True:
default_init_list += '\n %s(nullptr),' % (member.name)
init_list += '\n %s(nullptr),' % (member.name)
init_func_txt += ' %s = nullptr;\n' % (member.name)
construct_txt += ' if (in_struct->%s)\n' % member.name
construct_txt += ' %s = new %s(in_struct->%s);\n' % (member.name, m_type, member.name)
destruct_txt += ' if (%s)\n' % member.name
destruct_txt += ' delete %s;\n' % member.name
elif 'safe_' in m_type:
init_list += '\n %s(&in_struct->%s),' % (member.name, member.name)
init_func_txt += ' %s.initialize(&in_struct->%s);\n' % (member.name, member.name)
else:
try:
init_list += f'\n {member_init_transforms[member.name](member)},'
except:
init_list += '\n %s(in_struct->%s),' % (member.name, member.name)
init_func_txt += ' %s = in_struct->%s;\n' % (member.name, member.name)
if '' != init_list:
init_list = init_list[:-1] # hack off final comma
if item.name in custom_construct_txt:
construct_txt = custom_construct_txt[item.name]
construct_txt = copy_pnext + copy_strings + construct_txt
if item.name in custom_destruct_txt:
destruct_txt = custom_destruct_txt[item.name]
if copy_pnext:
destruct_txt += ' if (pNext)\n FreePnextChain(pNext);\n'
if (self.structOrUnion[item.name] == 'union'):
# Unions don't allow multiple members in the initialization list, so just call initialize
safe_struct_body.append("\n%s::%s(const %s* in_struct%s)\n{\n initialize(in_struct);\n}" % (ss_name, ss_name, item.name, self.custom_construct_params.get(item.name, '')))
else:
safe_struct_body.append("\n%s::%s(const %s* in_struct%s) :%s\n{\n%s}" % (ss_name, ss_name, item.name, self.custom_construct_params.get(item.name, ''), init_list, construct_txt))
if '' != default_init_list:
default_init_list = " :%s" % (default_init_list[:-1])
safe_struct_body.append("\n%s::%s()%s\n{}" % (ss_name, ss_name, default_init_list))
# Create slight variation of init and construct txt for copy constructor that takes a copy_src object reference vs. struct ptr
copy_construct_init = init_func_txt.replace('in_struct->', 'copy_src.')
copy_construct_txt = re.sub('(new \\w+)\\(in_struct->', '\\1(*copy_src.', construct_txt) # Pass object to copy constructors
copy_construct_txt = copy_construct_txt.replace('in_struct->', 'copy_src.') # Modify remaining struct refs for copy_src object
if item.name in custom_copy_txt:
copy_construct_txt = custom_copy_txt[item.name]
copy_assign_txt = ' if (&copy_src == this) return *this;\n\n' + destruct_txt + '\n' + copy_construct_init + copy_construct_txt + '\n return *this;'
safe_struct_body.append("\n%s::%s(const %s& copy_src)\n{\n%s%s}" % (ss_name, ss_name, ss_name, copy_construct_init, copy_construct_txt)) # Copy constructor
safe_struct_body.append("\n%s& %s::operator=(const %s& copy_src)\n{\n%s\n}" % (ss_name, ss_name, ss_name, copy_assign_txt)) # Copy assignment operator
safe_struct_body.append("\n%s::~%s()\n{\n%s}" % (ss_name, ss_name, destruct_txt))
safe_struct_body.append("\nvoid %s::initialize(const %s* in_struct%s)\n{\n%s%s}" % (ss_name, item.name, self.custom_construct_params.get(item.name, ''), init_func_txt, construct_txt))
# Copy initializer uses same txt as copy constructor but has a ptr and not a reference
init_copy = copy_construct_init.replace('copy_src.', 'copy_src->')
init_construct = copy_construct_txt.replace('copy_src.', 'copy_src->')
safe_struct_body.append("\nvoid %s::initialize(const %s* copy_src)\n{\n%s%s}" % (ss_name, ss_name, init_copy, init_construct))
if item.ifdef_protect is not None:
safe_struct_body.append("#endif // %s\n" % item.ifdef_protect)
return "\n".join(safe_struct_body)
#
# Generate the type map
def GenerateTypeMapHelperHeader(self):
prefix = 'Lvl'
typemap = prefix + 'TypeMap'
idmap = prefix + 'STypeMap'
type_member = 'Type'
id_member = 'kSType'
id_decl = 'static const VkStructureType '
generic_header = 'VkBaseOutStructure'
explanatory_comment = '\n'.join((
'// These empty generic templates are specialized for each type with sType',
'// members and for each sType -- providing a two way map between structure',
'// types and sTypes'))
empty_typemap = 'template <typename T> struct ' + typemap + ' {};'
typemap_format = 'template <> struct {template}<{typename}> {{\n'
typemap_format += ' {id_decl}{id_member} = {id_value};\n'
typemap_format += '}};\n'
empty_idmap = 'template <VkStructureType id> struct ' + idmap + ' {};'
idmap_format = ''.join((
'template <> struct {template}<{id_value}> {{\n',
' typedef {typename} {typedef};\n',
'}};\n'))
# Define the utilities (here so any renaming stays consistent), if this grows large, refactor to a fixed .h file
utilities_format = '\n'.join((
'// Find an entry of the given type in the pNext chain',
'template <typename T> const T *{find_func}(const void *next) {{',
' const {header} *current = reinterpret_cast<const {header} *>(next);',
' const T *found = nullptr;',
' while (current) {{',
' if ({type_map}<T>::{id_member} == current->sType) {{',
' found = reinterpret_cast<const T*>(current);',
' current = nullptr;',
' }} else {{',
' current = current->pNext;',
' }}',
' }}',
' return found;',
'}}',
'',
'// Init the header of an sType struct with pNext',
'template <typename T> T {init_func}(void *p_next) {{',
' T out = {{}};',
' out.sType = {type_map}<T>::kSType;',
' out.pNext = p_next;',
' return out;',
'}}',
'',
'// Init the header of an sType struct',
'template <typename T> T {init_func}() {{',
' T out = {{}};',
' out.sType = {type_map}<T>::kSType;',
' out.pNext = nullptr;',
' return out;',
'}}',
''))
code = []
# Generate header
code.append('\n'.join((
'#pragma once',
'#include <vulkan/vulkan.h>\n',
explanatory_comment, '',
empty_idmap,
empty_typemap, '')))
# Generate the specializations for each type and stype
for item in self.structMembers:
typename = item.name
info = self.structTypes.get(typename)
if not info:
continue
if item.ifdef_protect is not None:
code.append('#ifdef %s' % item.ifdef_protect)
code.append('// Map type {} to id {}'.format(typename, info.value))
code.append(typemap_format.format(template=typemap, typename=typename, id_value=info.value,
id_decl=id_decl, id_member=id_member))
code.append(idmap_format.format(template=idmap, typename=typename, id_value=info.value, typedef=type_member))
if item.ifdef_protect is not None:
code.append('#endif // %s' % item.ifdef_protect)
# Generate Generate utilities for all types
find_func = 'LvlFindInChain'
init_func = 'LvlInitStruct'
code.append('\n'.join((
utilities_format.format(id_member=id_member, type_map=typemap,
header=generic_header, find_func=find_func, init_func=init_func), ''
)))
# Generate utilities using legacy names for backwards compatibility
fprefix = 'lvl_'
find_func = fprefix + 'find_in_chain'
init_func = fprefix + 'init_struct'
code.append('\n'.join((
utilities_format.format(id_member=id_member, type_map=typemap,
header=generic_header, find_func=find_func, init_func=init_func), ''
)))
return "\n".join(code)
#
# Generate the type map
def GenerateSyncHelperHeader(self):
return sync_val_gen.GenSyncTypeHelper(self, False)
def GenerateSyncHelperSource(self):
return sync_val_gen.GenSyncTypeHelper(self, True)
#
# Create a helper file and return it as a string
def OutputDestFile(self):
if self.helper_file_type == 'enum_string_header':
return self.GenerateEnumStringHelperHeader()
elif self.helper_file_type == 'safe_struct_header':
return self.GenerateSafeStructHelperHeader()
elif self.helper_file_type == 'safe_struct_source':
return self.GenerateSafeStructHelperSource()
elif self.helper_file_type == 'object_types_header':
return self.GenerateObjectTypesHelperHeader()
elif self.helper_file_type == 'extension_helper_header':
return self.GenerateExtensionHelperHeader()
elif self.helper_file_type == 'typemap_helper_header':
return self.GenerateTypeMapHelperHeader()
elif self.helper_file_type == 'synchronization_helper_header':
return self.GenerateSyncHelperHeader()
elif self.helper_file_type == 'synchronization_helper_source':
return self.GenerateSyncHelperSource()
elif self.helper_file_type == 'optick_instrumentation_header':
return self.GenerateCcOptickInstrumentationHelperHeader()
elif self.helper_file_type == 'optick_instrumentation_source':
return self.GenerateCcOptickInstrumentationHelperSource()
else:
return 'Bad Helper File Generator Option %s' % self.helper_file_type
# Check if attribute is "true"
def getBoolAttribute(self, member, name):
try: return member.attrib[name].lower() == 'true'
except: return False