mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-02-25 12:35:11 +00:00
* Update release number to 122. Internal Issues: * Add style guide language on not using standalone `+` signs (internal issue 736); not using leading whitespace for markup (internal issue 747); and on keeping descriptions of a single API in a contiguous block of markup (internal issue 949), and apply them to the specification. * Add a glossary definition of "`constant integral expression`", pointing to the SPIR-V "`constant instruction`" definition (internal issue 1225). * Many minor edits to improve writing style consistency and capture additional style guidelines (internal issue 1553). * Clarify that <<fragops-depth-write, depth writes are not performed>> if there is no depth framebuffer attachment (internal issue 1771). * Allow implementations to use rectangular line style of interpolation for <<primsrast-lines-bresenham, wide Bresenham lines>>, though replicating attributes is still preferred. Clarify that code:FragCoord is not replicated (internal issue 1772). * Resolve a contradiction in valid usage statements for slink:VkImageCreateInfo and slink:VkImageStencilUsageCreateInfoEXT (internal issue 1773). * Add style guide discussion of markup for indented equations, and use markup workaround for asciidoctor 2 compatibility (internal issue 1793). * Deprecate the `<<VK_EXT_validation_flags>>` extension in `vk.xml` and the extension appendix (internal issue 1801). * Add a new checker script `scripts/xml_consistency.py`. This is not currently run as part of internal CI (internal merge request 3285). * Correct "`an`" -> "`a`" prepositions where needed (internal merge request 3334). * Clarify that the <<features-uniformBufferStandardLayout, pname:uniformBufferStandardLayout>> feature is only required when the extension defining it is supported (internal merge request 3341). * Bring scripts into closer sync with OpenXR, mainly through conversion of comments to docstrings where appropriate, and add gen-scripts-docs.sh (internal merge request 3324). * Correct pname:maxDrawMeshTasksCount to 2^16^-1 in the <<limits-required, Required Limits>> table (internal merge requests 3361). New Extensions * `<<VK_IMG_format_pvrtc>>` (public issue 512).
165 lines
6.5 KiB
Python
165 lines
6.5 KiB
Python
#!/usr/bin/python3 -i
|
|
#
|
|
# Copyright (c) 2013-2019 The Khronos Group 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.
|
|
|
|
from generator import OutputGenerator, write
|
|
from spec_tools.attributes import ExternSyncEntry
|
|
from spec_tools.validity import ValidityCollection, ValidityEntry
|
|
from spec_tools.util import getElemName
|
|
|
|
|
|
class HostSynchronizationOutputGenerator(OutputGenerator):
|
|
"""HostSynchronizationOutputGenerator - subclass of OutputGenerator.
|
|
Generates AsciiDoc includes of the externsync parameter table for the
|
|
fundamentals chapter of the API specification. Similar to
|
|
DocOutputGenerator.
|
|
|
|
---- methods ----
|
|
HostSynchronizationOutputGenerator(errFile, warnFile, diagFile) - args as for
|
|
OutputGenerator. Defines additional internal state.
|
|
---- methods overriding base class ----
|
|
genCmd(cmdinfo)"""
|
|
# Generate Host Synchronized Parameters in a table at the top of the spec
|
|
|
|
threadsafety = {
|
|
'parameters': ValidityCollection(),
|
|
'parameterlists': ValidityCollection(),
|
|
'implicit': ValidityCollection()
|
|
}
|
|
|
|
def makeParameterName(self, name):
|
|
return 'pname:' + name
|
|
|
|
def makeFLink(self, name):
|
|
return 'flink:' + name
|
|
|
|
def writeBlock(self, basename, title, contents):
|
|
"""Generate an include file.
|
|
|
|
- directory - subdirectory to put file in
|
|
- basename - base name of the file
|
|
- contents - contents of the file (Asciidoc boilerplate aside)"""
|
|
filename = self.genOpts.directory + '/' + basename
|
|
self.logMsg('diag', '# Generating include file:', filename)
|
|
with open(filename, 'w', encoding='utf-8') as fp:
|
|
write(self.genOpts.conventions.warning_comment, file=fp)
|
|
|
|
if contents:
|
|
write('.%s' % title, file=fp)
|
|
write('****', file=fp)
|
|
write(contents, file=fp, end='')
|
|
write('****', file=fp)
|
|
write('', file=fp)
|
|
else:
|
|
self.logMsg('diag', '# No contents for:', filename)
|
|
|
|
def writeInclude(self):
|
|
"Generates the asciidoc include files."""
|
|
self.writeBlock('parameters.txt',
|
|
'Externally Synchronized Parameters',
|
|
self.threadsafety['parameters'])
|
|
self.writeBlock('parameterlists.txt',
|
|
'Externally Synchronized Parameter Lists',
|
|
self.threadsafety['parameterlists'])
|
|
self.writeBlock('implicit.txt',
|
|
'Implicit Externally Synchronized Parameters',
|
|
self.threadsafety['implicit'])
|
|
|
|
def paramIsArray(self, param):
|
|
"""Check if the parameter passed in is a pointer to an array."""
|
|
return param.get('len') is not None
|
|
|
|
def paramIsPointer(self, param):
|
|
"""Check if the parameter passed in is a pointer."""
|
|
tail = param.find('type').tail
|
|
return tail is not None and '*' in tail
|
|
|
|
def makeThreadSafetyBlocks(self, cmd, paramtext):
|
|
# See also makeThreadSafetyBlock in validitygenerator.py - similar but not entirely identical
|
|
protoname = cmd.find('proto/name').text
|
|
|
|
# Find and add any parameters that are thread unsafe
|
|
explicitexternsyncparams = cmd.findall(paramtext + "[@externsync]")
|
|
if explicitexternsyncparams is not None:
|
|
for param in explicitexternsyncparams:
|
|
self.makeThreadSafetyForParam(protoname, param)
|
|
|
|
# Find and add any "implicit" parameters that are thread unsafe
|
|
implicitexternsyncparams = cmd.find('implicitexternsyncparams')
|
|
if implicitexternsyncparams is not None:
|
|
for elem in implicitexternsyncparams:
|
|
entry = ValidityEntry()
|
|
entry += elem.text
|
|
entry += ' in '
|
|
entry += self.makeFLink(protoname)
|
|
self.threadsafety['implicit'] += entry
|
|
|
|
# Add a VU for any command requiring host synchronization.
|
|
# This could be further parameterized, if a future non-Vulkan API
|
|
# requires it.
|
|
if self.genOpts.conventions.is_externsync_command(protoname):
|
|
entry = ValidityEntry()
|
|
entry += 'The sname:VkCommandPool that pname:commandBuffer was allocated from, in '
|
|
entry += self.makeFLink(protoname)
|
|
self.threadsafety['implicit'] += entry
|
|
|
|
def makeThreadSafetyForParam(self, protoname, param):
|
|
"""Create thread safety validity for a single param of a command."""
|
|
externsyncattribs = ExternSyncEntry.parse_externsync_from_param(param)
|
|
param_name = getElemName(param)
|
|
|
|
for attrib in externsyncattribs:
|
|
entry = ValidityEntry()
|
|
is_array = False
|
|
if attrib.entirely_extern_sync:
|
|
# "true" or "true_with_children"
|
|
if self.paramIsArray(param):
|
|
entry += 'Each element of the '
|
|
is_array = True
|
|
elif self.paramIsPointer(param):
|
|
entry += 'The object referenced by the '
|
|
else:
|
|
entry += 'The '
|
|
|
|
entry += self.makeParameterName(param_name)
|
|
entry += ' parameter'
|
|
|
|
if attrib.children_extern_sync:
|
|
entry += ', and any child handles,'
|
|
|
|
else:
|
|
# parameter/member reference
|
|
readable = attrib.get_human_readable(make_param_name=self.makeParameterName)
|
|
is_array = (' element of ' in readable)
|
|
entry += readable
|
|
|
|
entry += ' in '
|
|
entry += self.makeFLink(protoname)
|
|
|
|
if is_array:
|
|
self.threadsafety['parameterlists'] += entry
|
|
else:
|
|
self.threadsafety['parameters'] += entry
|
|
|
|
def genCmd(self, cmdinfo, name, alias):
|
|
"Generate command."
|
|
OutputGenerator.genCmd(self, cmdinfo, name, alias)
|
|
|
|
# @@@ (Jon) something needs to be done here to handle aliases, probably
|
|
|
|
self.makeThreadSafetyBlocks(cmdinfo.elem, 'param')
|
|
|
|
self.writeInclude()
|