2015-11-13 01:42:16 +00:00
|
|
|
# SPIR-V Tools
|
|
|
|
|
2016-01-07 04:55:16 +00:00
|
|
|
[![Build Status](https://travis-ci.org/KhronosGroup/SPIRV-Tools.svg?branch=master)](https://travis-ci.org/KhronosGroup/SPIRV-Tools)
|
2016-06-22 14:53:41 +00:00
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/gpue87cesrx3pi0d/branch/master?svg=true)](https://ci.appveyor.com/project/Khronoswebmaster/spirv-tools/branch/master)
|
2016-01-07 04:55:16 +00:00
|
|
|
|
2015-11-13 01:42:16 +00:00
|
|
|
## Overview
|
|
|
|
|
2015-11-14 14:23:03 +00:00
|
|
|
The SPIR-V Tools project provides an API and commands for processing SPIR-V
|
|
|
|
modules.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
The project includes an assembler, binary module parser, disassembler, and
|
|
|
|
validator for SPIR-V, all based on a common static library. The library contains
|
|
|
|
all of the implementation details, and is used in the standalone tools whilst
|
|
|
|
also enabling integration into other code bases directly.
|
|
|
|
|
|
|
|
The interfaces are still under development, and are expected to change.
|
|
|
|
|
|
|
|
SPIR-V is defined by the Khronos Group Inc.
|
2016-04-14 18:10:35 +00:00
|
|
|
See the [SPIR-V Registry][spirv-registry] for the SPIR-V specification,
|
|
|
|
headers, and XML registry.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
2016-04-22 00:50:11 +00:00
|
|
|
## Verisoning SPIRV-Tools
|
|
|
|
|
|
|
|
See [`CHANGES`](CHANGES) for a high level summary of recent changes, by version.
|
|
|
|
|
|
|
|
SPIRV-Tools project version numbers are of the form `v`*year*`.`*index* and with
|
|
|
|
an optional `-dev` suffix to indicate work in progress. For exampe, the
|
|
|
|
following versions are ordered from oldest to newest:
|
|
|
|
|
|
|
|
* `v2016.0`
|
|
|
|
* `v2016.1-dev`
|
|
|
|
* `v2016.1`
|
|
|
|
* `v2016.2-dev`
|
|
|
|
* `v2016.2`
|
|
|
|
|
|
|
|
Use the `--version` option on each command line tool to see the software
|
|
|
|
version. An API call reports the software version as a C-style string.
|
|
|
|
|
2015-11-13 01:42:16 +00:00
|
|
|
## Supported features
|
|
|
|
|
|
|
|
### Assembler, binary parser, and disassembler
|
|
|
|
|
2016-08-24 15:17:07 +00:00
|
|
|
* Based on SPIR-V version 1.1 Rev 3
|
2016-04-19 20:53:47 +00:00
|
|
|
* Support for extended instruction sets:
|
|
|
|
* GLSL std450 version 1.0 Rev 3
|
|
|
|
* OpenCL version 1.0 Rev 2
|
|
|
|
* Support for SPIR-V 1.0 (with or without additional restrictions from Vulkan 1.0)
|
2015-11-13 01:42:16 +00:00
|
|
|
* Assembler only does basic syntax checking. No cross validation of
|
|
|
|
IDs or types is performed, except to check literal arguments to
|
|
|
|
`OpConstant`, `OpSpecConstant`, and `OpSwitch`.
|
|
|
|
|
|
|
|
See [`syntax.md`](syntax.md) for the assembly language syntax.
|
|
|
|
|
|
|
|
### Validator
|
|
|
|
|
|
|
|
*Warning:* The validator is incomplete.
|
|
|
|
|
|
|
|
## Source code
|
|
|
|
|
|
|
|
The SPIR-V Tools are maintained by members of the The Khronos Group Inc.,
|
2016-04-14 18:10:35 +00:00
|
|
|
at https://github.com/KhronosGroup/SPIRV-Tools.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
Contributions via merge request are welcome. Changes should:
|
2016-09-01 19:33:59 +00:00
|
|
|
* Be provided under the [Apache 2.0](#license).
|
2016-09-02 14:29:14 +00:00
|
|
|
You'll be prompted with a one-time "click-through" Contributor's License
|
|
|
|
Agreement (CLA) dialog as part of submitting your pull request or
|
|
|
|
other contribution to GitHub.
|
2015-11-13 01:42:16 +00:00
|
|
|
* Include tests to cover updated functionality.
|
2016-04-14 18:10:35 +00:00
|
|
|
* C++ code should follow the [Google C++ Style Guide][cpp-style-guide].
|
2015-11-13 01:42:16 +00:00
|
|
|
* Code should be formatted with `clang-format`. Settings are defined by
|
|
|
|
the included [.clang-format](.clang-format) file.
|
|
|
|
|
|
|
|
We intend to maintain a linear history on the GitHub `master` branch.
|
|
|
|
|
|
|
|
### Source code organization
|
|
|
|
|
|
|
|
* `external/googletest`: Intended location for the
|
2016-04-14 18:10:35 +00:00
|
|
|
[googletest][googletest] sources, not provided
|
|
|
|
* `include/`: API clients should add this directory to the include search path
|
2016-04-14 18:05:53 +00:00
|
|
|
* `external/spirv-headers`: Intended location for
|
|
|
|
[SPIR-V headers][spirv-headers], not provided
|
2016-02-18 03:27:46 +00:00
|
|
|
* `include/spirv-tools/libspirv.h`: C API public interface
|
2015-11-13 01:42:16 +00:00
|
|
|
* `source/`: API implementation
|
2016-04-14 18:10:35 +00:00
|
|
|
* `test/`: Tests, using the [googletest][googletest] framework
|
2015-11-13 01:42:16 +00:00
|
|
|
* `tools/`: Command line executables
|
|
|
|
|
|
|
|
### Tests
|
|
|
|
|
|
|
|
The project contains a number of tests, used to drive development
|
|
|
|
and ensure correctness. The tests are written using the
|
2016-04-14 18:10:35 +00:00
|
|
|
[googletest][googletest] framework. The `googletest`
|
2016-02-15 14:36:20 +00:00
|
|
|
source is not provided with this project. There are two ways to enable
|
|
|
|
tests:
|
|
|
|
* If SPIR-V Tools is configured as part of an enclosing project, then the
|
|
|
|
enclosing project should configure `googletest` before configuring SPIR-V Tools.
|
|
|
|
* If SPIR-V Tools is configured as a standalone project, then download the
|
|
|
|
`googletest` source into the `<spirv-dir>/external/googletest` directory before
|
|
|
|
configuring and building the project.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
2015-12-01 17:01:59 +00:00
|
|
|
*Note*: You must use a version of googletest that includes
|
2016-04-14 18:10:35 +00:00
|
|
|
[a fix][googletest-pull-612] for [googletest issue 610][googletest-issue-610].
|
2015-12-01 17:01:59 +00:00
|
|
|
The fix is included on the googletest master branch any time after 2015-11-10.
|
|
|
|
In particular, googletest must be newer than version 1.7.0.
|
|
|
|
|
2015-11-13 01:42:16 +00:00
|
|
|
## Build
|
|
|
|
|
2016-04-14 18:10:35 +00:00
|
|
|
The project uses [CMake][cmake] to generate platform-specific build
|
2016-07-07 19:04:06 +00:00
|
|
|
configurations. Assume that `<spirv-dir>` is the root directory of the checked
|
|
|
|
out code:
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
```
|
2016-07-07 19:04:06 +00:00
|
|
|
cd <spirv-dir>
|
|
|
|
git clone https://github.com/KhronosGroup/SPIRV-Headers.git external/spirv-headers
|
|
|
|
git clone https://github.com/google/googletest.git external/googletest # optional
|
|
|
|
|
|
|
|
mkdir build && cd build
|
2015-11-13 01:42:16 +00:00
|
|
|
cmake [-G <platform-generator>] <spirv-dir>
|
|
|
|
```
|
|
|
|
|
|
|
|
Once the build files have been generated, build using your preferred
|
|
|
|
development environment.
|
|
|
|
|
|
|
|
### CMake options
|
|
|
|
|
|
|
|
The following CMake options are supported:
|
|
|
|
|
2015-12-09 16:40:56 +00:00
|
|
|
* `SPIRV_COLOR_TERMINAL={ON|OFF}`, default `ON` - Enables color console output.
|
|
|
|
* `SPIRV_SKIP_EXECUTABLES={ON|OFF}`, default `OFF`- Build only the library, not
|
|
|
|
the command line tools. This will also prevent the tests from being built.
|
2016-04-14 18:10:35 +00:00
|
|
|
* `SPIRV_USE_SANITIZER=<sanitizer>`, default is no sanitizing - On UNIX
|
|
|
|
platforms with an appropriate version of `clang` this option enables the use
|
|
|
|
of the sanitizers documented [here][clang-sanitizers].
|
2015-12-09 16:40:56 +00:00
|
|
|
This should only be used with a debug build.
|
|
|
|
* `SPIRV_WARN_EVERYTHING={ON|OFF}`, default `OFF` - On UNIX platforms enable
|
|
|
|
more strict warnings. The code might not compile with this option enabled.
|
|
|
|
For Clang, enables `-Weverything`. For GCC, enables `-Wpedantic`.
|
|
|
|
See [`CMakeLists.txt`](CMakeLists.txt) for details.
|
|
|
|
* `SPIRV_WERROR={ON|OFF}`, default `ON` - Forces a compilation error on any
|
|
|
|
warnings encountered by enabling the compiler-specific compiler front-end
|
|
|
|
option.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
## Library
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
The library provides a C API, but the internals use C++11.
|
|
|
|
|
2016-04-14 18:10:35 +00:00
|
|
|
In order to use the library from an application, the include path should point
|
|
|
|
to `<spirv-dir>/include`, which will enable the application to include the
|
2016-08-09 21:57:18 +00:00
|
|
|
header `<spirv-dir>/include/spirv-tools/libspirv.h` then linking against the
|
|
|
|
static library in `<spirv-build-dir>/source/libSPIRV-Tools.a` or
|
|
|
|
`<spirv-build-dir>/source/SPIRV-Tools.lib`.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
* `SPIRV-Tools` CMake target: Creates the static library:
|
2016-08-09 21:57:18 +00:00
|
|
|
* `<spirv-build-dir>/source/libSPIRV-Tools.a` on Linux and OS X.
|
|
|
|
* `<spirv-build-dir>/source/libSPIRV-Tools.lib` on Windows.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
#### Entry points
|
|
|
|
|
|
|
|
The interfaces are still under development, and are expected to change.
|
|
|
|
|
|
|
|
There are three main entry points into the library.
|
|
|
|
|
|
|
|
* `spvTextToBinary`: An assembler, translating text to a binary SPIR-V module.
|
|
|
|
* `spvBinaryToText`: A disassembler, translating a binary SPIR-V module to
|
|
|
|
text.
|
|
|
|
* `spvBinaryParse`: The entry point to a binary parser API. It issues callbacks
|
|
|
|
for the header and each parsed instruction. The disassembler is implemented
|
|
|
|
as a client of `spvBinaryParse`.
|
|
|
|
* `spvValidate` implements the validator functionality. *Incomplete*
|
|
|
|
|
|
|
|
## Command line tools
|
|
|
|
|
2016-02-18 20:51:04 +00:00
|
|
|
Command line tools, which wrap the above library functions, are provided to
|
|
|
|
assemble or disassemble shader files. It's a convention to name SPIR-V
|
|
|
|
assembly and binary files with suffix `.spvasm` and `.spv`, respectively.
|
|
|
|
|
2015-11-13 01:42:16 +00:00
|
|
|
### Assembler tool
|
|
|
|
|
|
|
|
The assembler reads the assembly language text, and emits the binary form.
|
|
|
|
|
|
|
|
The standalone assembler is the exectuable called `spirv-as`, and is located in
|
2016-08-09 21:57:18 +00:00
|
|
|
`<spirv-build-dir>/tools/spirv-as`. The functionality of the assembler is implemented
|
2015-11-20 14:44:13 +00:00
|
|
|
by the `spvTextToBinary` library function.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
* `spirv-as` - the standalone assembler
|
2016-08-09 21:57:18 +00:00
|
|
|
* `<spirv-dir>/tools/as`
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
Use option `-h` to print help.
|
|
|
|
|
|
|
|
### Disassembler tool
|
|
|
|
|
|
|
|
The disassembler reads the binary form, and emits assembly language text.
|
|
|
|
|
|
|
|
The standalone disassembler is the executable called `spirv-dis`, and is located in
|
2016-08-09 21:57:18 +00:00
|
|
|
`<spirv-build-dir>/tools/spirv-dis`. The functionality of the disassembler is implemented
|
2015-11-20 14:44:13 +00:00
|
|
|
by the `spvBinaryToText` library function.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
* `spirv-dis` - the standalone disassembler
|
2016-08-09 21:57:18 +00:00
|
|
|
* `<spirv-dir>/tools/dis`
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
Use option `-h` to print help.
|
|
|
|
|
|
|
|
The output includes syntax colouring when printing to the standard output stream,
|
|
|
|
on Linux, Windows, and OS X.
|
|
|
|
|
2016-06-02 19:29:13 +00:00
|
|
|
### Optimizer tool
|
|
|
|
|
|
|
|
The optimizer processes a SPIR-V binary module, applying transformations
|
|
|
|
in the specified order.
|
|
|
|
|
|
|
|
This is a work in progress, with initially only few available transformations.
|
|
|
|
|
|
|
|
* `spirv-opt` - the standalone optimizer
|
2016-08-09 21:57:18 +00:00
|
|
|
* `<spirv-dir>/tools/opt`
|
2016-06-02 19:29:13 +00:00
|
|
|
|
2015-11-13 01:42:16 +00:00
|
|
|
### Validator tool
|
|
|
|
|
|
|
|
*Warning:* This functionality is under development, and is incomplete.
|
|
|
|
|
|
|
|
The standalone validator is the executable called `spirv-val`, and is located in
|
2016-08-09 21:57:18 +00:00
|
|
|
`<spirv-build-dir>/tools/spirv-val`. The functionality of the validator is implemented
|
2015-11-20 14:44:13 +00:00
|
|
|
by the `spvValidate` library function.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
|
|
|
The validator operates on the binary form.
|
|
|
|
|
|
|
|
* `spirv-val` - the standalone validator
|
2016-08-09 21:57:18 +00:00
|
|
|
* `<spirv-dir>/tools/val`
|
2015-11-13 01:42:16 +00:00
|
|
|
|
2016-08-03 15:55:14 +00:00
|
|
|
### Control flow dumper tool
|
|
|
|
|
|
|
|
The control flow dumper prints the control flow graph for a SPIR-V module as a
|
|
|
|
[GraphViz](http://www.graphviz.org/) graph.
|
|
|
|
|
|
|
|
This is experimental.
|
|
|
|
|
|
|
|
* `spirv-cfg` - the control flow graph dumper
|
|
|
|
* `<spirv-dir>/tools/cfg`
|
|
|
|
|
2016-08-22 15:38:18 +00:00
|
|
|
### Utility filters
|
|
|
|
|
|
|
|
* `spirv-lesspipe.sh` - Automatically disassembles `.spv` binary files for the
|
|
|
|
`less` program, on compatible systems. For example, set the `LESSOPEN`
|
|
|
|
environment variable as follows, assuming both `spirv-lesspipe.sh` and
|
|
|
|
`spirv-dis` are on your executable search path:
|
|
|
|
```
|
|
|
|
export LESSOPEN='| spirv-lesspipe.sh "%s"'
|
|
|
|
```
|
|
|
|
Then you page through a disassembled module as follows:
|
|
|
|
```
|
|
|
|
less foo.spv
|
|
|
|
```
|
|
|
|
* The `spirv-lesspipe.sh` script will pass through any extra arguments to
|
|
|
|
`spirv-dis`. So, for example, you can turn off colours and friendly ID
|
|
|
|
naming as follows:
|
|
|
|
```
|
|
|
|
export LESSOPEN='| spirv-lesspipe.sh "%s" --no-color --raw-id'
|
|
|
|
```
|
|
|
|
|
2016-02-02 19:41:35 +00:00
|
|
|
### Tests
|
|
|
|
|
|
|
|
Tests are only built when googletest is found.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
2016-08-09 21:57:18 +00:00
|
|
|
The `<spirv-build-dir>/test/UnitSPIRV` executable runs the project tests.
|
2015-11-13 01:42:16 +00:00
|
|
|
It supports the standard `googletest` command line options.
|
|
|
|
|
2016-02-02 19:41:35 +00:00
|
|
|
The project also adds a CMake test `spirv-tools-testsuite`, which executes
|
|
|
|
`UnitSPIRV`. That way it's possible to run the tests using `ctest`.
|
|
|
|
|
2015-11-13 01:42:16 +00:00
|
|
|
## Future Work
|
|
|
|
<a name="future"></a>
|
|
|
|
|
|
|
|
### Assembler and disassembler
|
|
|
|
|
|
|
|
* The disassembler could emit helpful annotations in comments. For example:
|
|
|
|
* Use variable name information from debug instructions to annotate
|
|
|
|
key operations on variables.
|
|
|
|
* Show control flow information by annotating `OpLabel` instructions with
|
|
|
|
that basic block's predecessors.
|
|
|
|
* Error messages could be improved.
|
|
|
|
|
|
|
|
### Validator
|
|
|
|
|
|
|
|
This is a work in progress.
|
|
|
|
|
|
|
|
## Licence
|
|
|
|
<a name="license"></a>
|
2016-09-01 19:33:59 +00:00
|
|
|
Full license terms are in [LICENSE](LICENSE)
|
2015-11-13 01:42:16 +00:00
|
|
|
```
|
2016-01-07 18:44:22 +00:00
|
|
|
Copyright (c) 2015-2016 The Khronos Group Inc.
|
2015-11-13 01:42:16 +00:00
|
|
|
|
2016-09-01 19:33:59 +00:00
|
|
|
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.
|
2015-11-13 01:42:16 +00:00
|
|
|
```
|
2016-04-14 18:10:35 +00:00
|
|
|
|
|
|
|
[spirv-registry]: https://www.khronos.org/registry/spir-v/
|
2016-04-14 18:05:53 +00:00
|
|
|
[spirv-headers]: https://github.com/KhronosGroup/SPIRV-Headers
|
2016-04-14 18:10:35 +00:00
|
|
|
[googletest]: https://github.com/google/googletest
|
|
|
|
[googletest-pull-612]: https://github.com/google/googletest/pull/612
|
|
|
|
[googletest-issue-610]: https://github.com/google/googletest/issues/610
|
|
|
|
[CMake]: https://cmake.org/
|
|
|
|
[cpp-style-guide]: https://google.github.io/styleguide/cppguide.html
|
|
|
|
[clang-sanitizers]: http://clang.llvm.org/docs/UsersManual.html#controlling-code-generation
|