Document SPIR-V binary and assembly file naming convention.
[platform/upstream/SPIRV-Tools.git] / README.md
1 # SPIR-V Tools
2
3 [![Build Status](https://travis-ci.org/KhronosGroup/SPIRV-Tools.svg?branch=master)](https://travis-ci.org/KhronosGroup/SPIRV-Tools)
4
5 ## Overview
6
7 The SPIR-V Tools project provides an API and commands for processing SPIR-V
8 modules.
9
10 The project includes an assembler, binary module parser, disassembler, and
11 validator for SPIR-V, all based on a common static library. The library contains
12 all of the implementation details, and is used in the standalone tools whilst
13 also enabling integration into other code bases directly.
14
15 The interfaces are still under development, and are expected to change.
16
17 SPIR-V is defined by the Khronos Group Inc.
18 See the [SPIR-V Registry](https://www.khronos.org/registry/spir-v/) for the
19 SPIR-V specification, headers, and XML registry.
20
21 ## Supported features
22
23 ### Assembler, binary parser, and disassembler
24
25 * Based on SPIR-V 1.0 Revision 3.
26   * Supports GLSL std450 extended instructions.
27   * Supports OpenCL extended instructions.
28 * Assembler only does basic syntax checking.  No cross validation of
29   IDs or types is performed, except to check literal arguments to
30   `OpConstant`, `OpSpecConstant`, and `OpSwitch`.
31
32 See [`syntax.md`](syntax.md) for the assembly language syntax.
33
34 ### Validator
35
36 *Warning:* The validator is incomplete.
37
38 ## Source code
39
40 The SPIR-V Tools are maintained by members of the The Khronos Group Inc.,
41 at [https://github.com/KhronosGroup/SPIRV-Tools](https://github.com/KhronosGroup/SPIRV-Tools).
42
43 Contributions via merge request are welcome. Changes should:
44 * Be provided under the [Khronos license](#license).
45 * Include tests to cover updated functionality.
46 * C++ code should follow the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html).
47 * Code should be formatted with `clang-format`.  Settings are defined by
48   the included [.clang-format](.clang-format) file.
49
50 We intend to maintain a linear history on the GitHub `master` branch.
51
52 ### Source code organization
53
54 * `external/googletest`: Intended location for the
55   [googletest](https://github.com/google/googletest) sources, not provided
56 * `include/` : API clients should add this directory to the include search
57   path
58 * `include/spirv-tools/libspirv.h`: C API public interface
59 * `include/spirv/` : Contains header files from the SPIR-V Registry, required
60   by the public API.
61 * `source/`: API implementation
62 * `test/`: Tests, using the [googletest](https://github.com/google/googletest)
63   framework.
64 * `tools/`: Command line executables
65
66 ### Tests
67
68 The project contains a number of tests, used to drive development
69 and ensure correctness.  The tests are written using the
70 [googletest](https://github.com/google/googletest) framework.  The `googletest`
71 source is not provided with this project.  There are two ways to enable
72 tests:
73 * If SPIR-V Tools is configured as part of an enclosing project, then the
74   enclosing project should configure `googletest` before configuring SPIR-V Tools.
75 * If SPIR-V Tools is configured as a standalone project, then download the
76   `googletest` source into the `<spirv-dir>/external/googletest` directory before
77   configuring and building the project.
78
79 *Note*: You must use a version of googletest that includes
80 [a fix](https://github.com/google/googletest/pull/612) for
81 [googletest issue 610](https://github.com/google/googletest/issues/610).
82 The fix is included on the googletest master branch any time after 2015-11-10.
83 In particular, googletest must be newer than version 1.7.0.
84
85 ## Build
86
87 The project uses [CMake](https://cmake.org/) to generate platform-specific
88 build configurations.  To generate these build files, issue the following
89 commands:
90
91 ```
92 mkdir <spirv-dir>/build
93 cd <spirv-dir>/build
94 cmake [-G <platform-generator>] <spirv-dir>
95 ```
96
97 Once the build files have been generated, build using your preferred
98 development environment.
99
100 ### CMake options
101
102 The following CMake options are supported:
103
104 * `SPIRV_COLOR_TERMINAL={ON|OFF}`, default `ON` - Enables color console output.
105 * `SPIRV_SKIP_EXECUTABLES={ON|OFF}`, default `OFF`- Build only the library, not
106   the command line tools.  This will also prevent the tests from being built.
107 * `SPIRV_USE_SANITIZER=<sanitizer>`, default is no sanitizing - On UNIX platforms
108   with an appropriate version of `clang` this option enables the use of the
109   sanitizers documented
110   [here](http://clang.llvm.org/docs/UsersManual.html#controlling-code-generation).
111   This should only be used with a debug build.
112 * `SPIRV_WARN_EVERYTHING={ON|OFF}`, default `OFF` - On UNIX platforms enable
113   more strict warnings.  The code might not compile with this option enabled.
114   For Clang, enables `-Weverything`.  For GCC, enables `-Wpedantic`.
115   See [`CMakeLists.txt`](CMakeLists.txt) for details.
116 * `SPIRV_WERROR={ON|OFF}`, default `ON` - Forces a compilation error on any
117   warnings encountered by enabling the compiler-specific compiler front-end
118   option.
119
120 ## Library
121
122 ### Usage
123
124 The library provides a C API, but the internals use C++11.
125
126 In order to use the library from an application, the include path should point to
127 `<spirv-dir>/include`, which will enable the application to include the header
128 `<spirv-dir>/include/libspirv/libspirv.h` then linking against the static
129 library in `<spirv-build-dir>/libSPIRV-Tools.a` or
130 `<spirv-build-dir>/SPIRV-Tools.lib`.
131
132 * `SPIRV-Tools` CMake target: Creates the static library:
133   * `<spirv-build-dir>/libSPIRV-Tools.a` on Linux and OS X.
134   * `<spirv-build-dir>/libSPIRV-Tools.lib` on Windows.
135
136 #### Entry points
137
138 The interfaces are still under development, and are expected to change.
139
140 There are three main entry points into the library.
141
142 * `spvTextToBinary`: An assembler, translating text to a binary SPIR-V module.
143 * `spvBinaryToText`: A disassembler, translating a binary SPIR-V module to
144   text.
145 * `spvBinaryParse`: The entry point to a binary parser API.  It issues callbacks
146   for the header and each parsed instruction.  The disassembler is implemented
147   as a client of `spvBinaryParse`.
148 * `spvValidate` implements the validator functionality. *Incomplete*
149
150 ## Command line tools
151
152 Command line tools, which wrap the above library functions, are provided to
153 assemble or disassemble shader files.  It's a convention to name SPIR-V
154 assembly and binary files with suffix `.spvasm` and `.spv`, respectively.
155
156 ### Assembler tool
157
158 The assembler reads the assembly language text, and emits the binary form.
159
160 The standalone assembler is the exectuable called `spirv-as`, and is located in
161 `<spirv-build-dir>/spirv-as`.  The functionality of the assembler is implemented
162 by the `spvTextToBinary` library function.
163
164 * `spirv-as` - the standalone assembler
165   * `<spirv-dir>/spirv-as`
166
167 Use option `-h` to print help.
168
169 ### Disassembler tool
170
171 The disassembler reads the binary form, and emits assembly language text.
172
173 The standalone disassembler is the executable called `spirv-dis`, and is located in
174 `<spirv-build-dir>/spirv-dis`. The functionality of the disassembler is implemented
175 by the `spvBinaryToText` library function.
176
177 * `spirv-dis` - the standalone disassembler
178   * `<spirv-dir>/spirv-dis`
179
180 Use option `-h` to print help.
181
182 The output includes syntax colouring when printing to the standard output stream,
183 on Linux, Windows, and OS X.
184
185 ### Validator tool
186
187 *Warning:* This functionality is under development, and is incomplete.
188
189 The standalone validator is the executable called `spirv-val`, and is located in
190 `<spirv-build-dir>/spirv-val`. The functionality of the validator is implemented
191 by the `spvValidate` library function.
192
193 The validator operates on the binary form.
194
195 * `spirv-val` - the standalone validator
196   * `<spirv-dir>/spirv-val`
197
198 ### Tests
199
200 Tests are only built when googletest is found.
201
202 The `<spirv-build-dir>/UnitSPIRV` executable runs the project tests.
203 It supports the standard `googletest` command line options.
204
205 The project also adds a CMake test `spirv-tools-testsuite`, which executes
206 `UnitSPIRV`.  That way it's possible to run the tests using `ctest`.
207
208 ## Future Work
209 <a name="future"></a>
210
211 ### Assembler and disassembler
212
213 * The disassembler could emit helpful annotations in comments.  For example:
214   * Use variable name information from debug instructions to annotate
215     key operations on variables.
216   * Show control flow information by annotating `OpLabel` instructions with
217     that basic block's predecessors.
218 * Error messages could be improved.
219
220 ### Validator
221
222 This is a work in progress.
223
224 ## Licence
225 <a name="license"></a>
226 ```
227 Copyright (c) 2015-2016 The Khronos Group Inc.
228
229 Permission is hereby granted, free of charge, to any person obtaining a
230 copy of this software and/or associated documentation files (the
231 "Materials"), to deal in the Materials without restriction, including
232 without limitation the rights to use, copy, modify, merge, publish,
233 distribute, sublicense, and/or sell copies of the Materials, and to
234 permit persons to whom the Materials are furnished to do so, subject to
235 the following conditions:
236
237 The above copyright notice and this permission notice shall be included
238 in all copies or substantial portions of the Materials.
239
240 MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS
241 KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS
242 SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT
243    https://www.khronos.org/registry/
244
245 THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
246 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
247 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
248 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
249 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
250 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
251 MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
252 ```