summaryrefslogtreecommitdiff
path: root/style/vuid.adoc
blob: 87d873d6fc67350024552175e66ee527b4bbd67f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// Copyright 2015-2023 The Khronos Group Inc.
//
// SPDX-License-Identifier: CC-BY-4.0

[appendix]
[[vuid]]
= Valid Usage ID Tags

Valid usage statements in the published Vulkan Specification must all be
given _Valid Usage ID_ or _VUID_ tags.
These tags are asciidoctor anchors, intended for use by the validation layer
to provide unique names for each validation condition, and a way to link
from validation layer reports into the corresponding parts of the
Specification.


[[vuid-format]]
== Format of VUID Tags

For implicit valid usage statements, the tags are formatted like this:

[source,asciidoc]
----
[[VUID-blockname-paramname-category]]
----

_blockname_ is the name of the function or structure for which a valid usage
statement is being generated.

_paramname_ is the name of the parameter being validated.
In some cases, the statement does not validate a single parameter and this
portion of the tag is absent.

_category_ is the type of statement being generated.
There are over one dozen types referring to distinct conditions such as
valid objects, required bitmasks, required array lengths, constraints on
parent objects, and so on.

For explicit valid usage statements, the tags are formatted like this:

[source,asciidoc]
----
[[VUID-blockname-paramname-number]]
----

_blockname_ is the name of the function or structure for which a valid usage
statement is being generated.

_paramname_ is the name of the parameter being validated.
In some cases, the statement does not validate a single parameter and this
portion of the tag is replaced by `-None-`

_number_ is a unique five digit, zero-filled number used to disambiguate
similar tag names.

[NOTE]
.Note
====
The _blockname_, _paramname_, and _category_ portions of a VUID tag name
must each be composed only of the alphanumeric characters A-Z, a-z, and 0-9,
and the ':' character.
In general only the alphabetic subset of these characters is used, but there
are a few exceptions.
====


[[vuid-creating]]
== Creating VUID Tags

For implicit valid usage statements generated automatically from `vk.xml`,
VUID tags are created automatically by the generator scripts.

For explicit valid usage statements, VUID tags are generated by passing
appropriate options to the script `reflow.py`.

Since these tags are of use only to the published validation layer, they are
needed only in the published Specification sources and outputs.
Therefore, authors of extensions, or other branches adding valid usage
statements, are not themselves responsible for adding tags in their
branches.
The specification editors will take care of this as part of the process of
publishing updates.
For reference purposes, this process is described below:

First, after integrating all new specification language into the internal
gitlab default branch (currently `main`) containing the canonical
Specification source, invoke the following command:

[source,sh]
----
python3 scripts/reflow.py -overwrite -noflow -tagvu chapters/*.adoc chapters/*/*.adoc
----

This will add VUID tags to all statements in valid usage blocks which do not
already have them.
Some diagnostics will be reported, but these are do not in general require
any action.

After updating all files, the script will update the file
`scripts/vuidCounts.py` containing reserved ranges of VUIDs for the default
branch and certain other development branches.

Commit the updated source files and `vuidCounts.py` together.
The next time the script is run, VUID tags will be assigned numbers starting
from the next free value in the range available to default branch.

In-development Vulkan extensions are kept in their own branches, with the
branch name the same as the name of the extension being developed.
VUID tags may be assigned in these branches in the same fashion as in
default branch.
To enable this, each development branch must be assigned its own independent
VUID range in the default branch copy of `vuidCounts.py`, to prevent
collisions.
In the event that default branch or any development branch exhausts the
available VUID range, `reflow.py` will report this and stop assigning VUIDs.
At that point, a new range must be assigned to the branch in the default
branch copy of `vuidCounts.py`, as well as in the per-branch copy.


== Updating VUID Tags When Valid Usage Statements Change

Valid usage statements have corresponding tests in the Vulkan Validation
Layer.
The tests must be changed in response to semantic changes in the VU
statements, whether for bug-fixing, adding extension interactions, or
otherwise.
The rule used when updating explicit VU statements is that the merge request
or pull request responsible for making the change must remove the existing
VUID tag, so that a new one can be assigned, _except_ in the following
cases:

  * The changes are non-semantic, such as using consistent phrasing or
    markup.
  * The changes consist of removing or changing extension suffixes when
    promoting an extension to `EXT`, `KHR`, or core status.
  * The valid usage statement has not yet been implemented in the validation
    layers.

[NOTE]
.Note
====
This section may need further modification in response to guidelines agreed
to by the Vulkan Working Group.
====