2016-04-22 00:50:11 +00:00
|
|
|
Revision history for SPIRV-Tools
|
|
|
|
|
2017-01-05 17:53:02 +00:00
|
|
|
v2016.7-dev 2017-01-06
|
2017-03-14 16:43:41 +00:00
|
|
|
- Add SPIR-V 1.2
|
|
|
|
- OpenCL 2.2 support is now based on SPIR-V 1.2
|
2017-06-22 14:22:55 +00:00
|
|
|
- Support AMD extensions in assembler, disassembler:
|
|
|
|
SPV_AMD_gcn_shader
|
|
|
|
SPV_AMD_shader_ballot
|
|
|
|
SPV_AMD_shader_explicit_vertex_parameter
|
|
|
|
SPV_AMD_shader_trinary_minmax
|
|
|
|
SPV_AMD_gpu_shader_half_float
|
|
|
|
SPV_AMD_texture_gather_bias_lod
|
|
|
|
SPV_AMD_gpu_shader_int16
|
|
|
|
- Optimizer: Add support for:
|
|
|
|
- Inline all function calls in entry points.
|
|
|
|
- Flatten of decoration groups. Fixes #602
|
|
|
|
- Id compaction (minimize Id bound). Fixes #624
|
|
|
|
- Eliminate redundant composite insert followed by extract
|
|
|
|
- Simplify access chains to local variables
|
|
|
|
- Eliminate local variables with a single store, if possible
|
|
|
|
- Eliminate loads and stores in same block to local variables
|
2017-04-20 19:54:10 +00:00
|
|
|
- Assembler: Add option to preserve numeric ids. Fixes #625
|
2016-12-16 20:32:56 +00:00
|
|
|
- Add build target spirv-tools-vimsyntax to generate spvasm.vim, a SPIR-V
|
|
|
|
assembly syntax file for Vim.
|
2017-01-17 20:41:23 +00:00
|
|
|
- Version string: Allow overriding of wall clock timestamp with contents
|
|
|
|
of environment variable SOURCE_DATE_EPOCH.
|
2017-02-28 16:53:05 +00:00
|
|
|
- Validator implements relaxed rules for SPV_KHR_16bit_storage.
|
2017-07-04 16:27:31 +00:00
|
|
|
- CMake installation rules use GNUInstallDirs. For example, libraries
|
|
|
|
will be installed into a lib64 directory if that's the norm for the
|
|
|
|
current system.
|
2016-12-19 18:26:42 +00:00
|
|
|
- Fixes:
|
2017-02-15 18:29:33 +00:00
|
|
|
#500: Parameterize validator limit checks
|
2016-12-19 18:26:42 +00:00
|
|
|
#508: Support compilation under CYGWIN
|
2017-01-05 17:53:02 +00:00
|
|
|
#517: Fix validation when continue (or case) contstruct is also the head of a
|
|
|
|
nested control construct.
|
2017-02-09 19:23:52 +00:00
|
|
|
#551: If a merge block is reachable, it must be *strictly* dominated by its
|
|
|
|
header.
|
2017-02-15 18:31:07 +00:00
|
|
|
#548: Validator: Error when the reserved OpImageSparseSampleProj* opcodes
|
|
|
|
are used.
|
2017-04-02 06:17:41 +00:00
|
|
|
#611: spvtools::Optimizer was failing to save the module to the output
|
|
|
|
binary vector when all passes succeded without changes.
|
2017-05-12 21:35:18 +00:00
|
|
|
#629: The inline-entry-points-all optimization could generate invalidly
|
|
|
|
structured code when the inlined function had early returns.
|
2016-12-13 16:49:50 +00:00
|
|
|
|
2016-12-13 16:49:09 +00:00
|
|
|
v2016.6 2016-12-13
|
2016-09-16 20:12:04 +00:00
|
|
|
- Published the C++ interface for assembling, disassembling, validation, and
|
|
|
|
optimization.
|
2016-10-12 14:47:28 +00:00
|
|
|
- Support SPV_KHR_shader_draw_parameters in assembler, disassembler, parser.
|
2016-12-13 16:49:09 +00:00
|
|
|
- Validator:
|
|
|
|
- Add validator API accepting raw binary words
|
|
|
|
- Increased coverage:
|
|
|
|
- Checks "Data rules" in Universal Validation Rules, section 2.16.1
|
|
|
|
- WIP: Universal Limits.
|
|
|
|
- The minimum mandated upper bounds are checked.
|
|
|
|
- TODO: Parameterize the validator to allow larger limits accepted by
|
|
|
|
a more than minimally capable implementation.
|
|
|
|
- OpSampledImage checks
|
|
|
|
- OpConstantComposite checks
|
|
|
|
- Id bound check
|
|
|
|
- Disasssembler:
|
|
|
|
- Generates friendly GLSL-based names for more builtin variables
|
|
|
|
- Generates friendly names for numeric OpConstant values
|
|
|
|
- Vendor tool info extracted from SPIR-V XML registry file.
|
2016-09-22 14:23:08 +00:00
|
|
|
- Fixes issues:
|
|
|
|
#429: Validator: Allow OpTypeForwardPointer and OpTypeStruct to reference
|
|
|
|
undefined IDs
|
2016-12-13 16:49:09 +00:00
|
|
|
#482: Validator: OpVariable initializer can be an ID of a module-scope variable
|
2016-09-16 20:40:00 +00:00
|
|
|
|
2016-09-16 20:39:40 +00:00
|
|
|
v2016.5 2016-09-16
|
2016-09-16 18:40:02 +00:00
|
|
|
- Support SPV_KHR_shader_ballot in assembler, disassembler, parser.
|
2016-09-13 16:38:42 +00:00
|
|
|
- Disassembler: Generate friendly names for built-in variables.
|
2016-09-12 20:48:05 +00:00
|
|
|
- Partial fixes:
|
|
|
|
#359: Add Emacs helper for automatically diassembling/assembling a SPIR-V
|
|
|
|
binary on file load/save.
|
2016-09-14 15:04:19 +00:00
|
|
|
- Fixes:
|
2016-09-14 19:22:47 +00:00
|
|
|
#414: Validator: Allow OpUndef for composite constants
|
2016-09-14 15:04:19 +00:00
|
|
|
#415: Validator: Phi can use its own value in some cases.
|
2016-09-01 19:38:53 +00:00
|
|
|
|
2016-09-01 19:33:59 +00:00
|
|
|
v2016.4 2016-09-01
|
|
|
|
- Relicensed under Apache 2.0
|
2016-08-04 17:24:08 +00:00
|
|
|
- Add optimization passes (in API and spirv-opt command)
|
|
|
|
- Fold spec constants defined with OpSpecConstantOp and
|
|
|
|
OpSpecConstantComposite to normal constants with fixed value(s).
|
2016-09-01 19:33:59 +00:00
|
|
|
- Fixes issues:
|
|
|
|
#318: Relicensed under Apache 2.0
|
2016-08-24 15:18:16 +00:00
|
|
|
|
2016-08-24 15:17:07 +00:00
|
|
|
v2016.3 2016-08-24
|
2016-08-05 22:19:30 +00:00
|
|
|
- Add target environment enums for OpenCL 2.1, OpenCL 2.2,
|
|
|
|
OpenGL 4.0, OpenGL 4.1, OpenGL 4.2, OpenGL 4.3, OpenGL 4.5.
|
2016-08-03 15:55:14 +00:00
|
|
|
- Add spirv-cfg, an experimental tool to dump the control flow graph
|
|
|
|
as a GraphiViz "dot" graph
|
|
|
|
- Add optimization pass: Eliminate dead constants.
|
2016-08-22 15:38:18 +00:00
|
|
|
- Add spirv-lesspipe.sh filter utility
|
2016-08-10 20:02:18 +00:00
|
|
|
- Fixes issues:
|
2016-08-10 14:40:59 +00:00
|
|
|
#288: Check def-use dominance rules for OpPhi (variable,parent) operands
|
2016-08-24 15:17:07 +00:00
|
|
|
#339: Allow OpUndef in types-constants-global-vars section, as required
|
|
|
|
by SPIR-V 1.0 Rev7, 1.1 Rev 3.
|
2016-08-12 18:19:17 +00:00
|
|
|
#340: Avoid race on mkdir during build
|
2016-08-24 13:47:49 +00:00
|
|
|
#365: Relax PointSize, ClipDistance, CullDistance capability check in all
|
|
|
|
environments not just Vulkan 1.0.
|
2016-08-05 21:10:36 +00:00
|
|
|
|
2016-08-05 21:07:34 +00:00
|
|
|
v2016.2 2016-08-05
|
2016-07-13 22:57:52 +00:00
|
|
|
- Validator is incomplete
|
|
|
|
- Checks ID use block is dominated by definition block
|
2016-07-27 21:02:22 +00:00
|
|
|
- Add optimization passes (in API and spirv-opt command)
|
2016-07-26 16:11:03 +00:00
|
|
|
- Strip debug info instructions
|
|
|
|
- Freeze spec constant to their default values
|
2016-08-05 21:07:34 +00:00
|
|
|
- Allow INotEqual as operation for OpSpecConstantOp
|
2016-07-27 21:02:22 +00:00
|
|
|
- Fixes bugs:
|
|
|
|
#270: validator: crash when continue construct is unreachable
|
|
|
|
#279: validator: infinite loop when analyzing some degenerate control
|
|
|
|
flow graphs
|
2016-08-05 21:07:34 +00:00
|
|
|
#286: validator: don't incorrectly generate def-use error for
|
|
|
|
(variable,parent) parameters to OpPhi
|
2016-08-02 15:59:10 +00:00
|
|
|
#290: disassembler: never generate bare % for an identifier
|
2016-08-04 18:57:09 +00:00
|
|
|
#295: validator: def-use dominance check should ignore unreachable uses
|
2016-08-05 21:07:34 +00:00
|
|
|
#276: validator: allow unreachable continue constructs
|
|
|
|
#297: validator: allow an unreachable block to branch to a reachable
|
|
|
|
merge block
|
2016-07-19 19:04:43 +00:00
|
|
|
|
2016-07-19 19:03:52 +00:00
|
|
|
v2016.1 2016-07-19
|
2016-07-07 21:03:22 +00:00
|
|
|
- Fix https://github.com/KhronosGroup/SPIRV-Tools/issues/261
|
|
|
|
Turn off ClipDistance and CullDistance capability checks for Vulkan.
|
2016-07-08 18:29:52 +00:00
|
|
|
- The disassembler can emit friendly names based on debug info (OpName
|
|
|
|
instructions), and will infer somewhat friendly names for most types.
|
|
|
|
This is turned on by default for the spirv-dis command line tool.
|
2016-07-19 19:03:52 +00:00
|
|
|
- Updated to support SPIR-V 1.1 rev 2
|
|
|
|
- Input StorageClass, Sampled1D capability, and SampledBuffer capability
|
|
|
|
do not require Shader capability anymore.
|
2016-07-04 19:13:08 +00:00
|
|
|
|
2016-06-02 19:29:13 +00:00
|
|
|
v2016.0 2016-07-04
|
2016-04-22 00:50:11 +00:00
|
|
|
|
|
|
|
- Adds v<year>.<index> versioning, with "-dev" indicating
|
|
|
|
work in progress. The intent is to more easly report
|
|
|
|
and summarize functionality when SPIRV-Tools is incorporated
|
|
|
|
in downstream projects.
|
|
|
|
|
|
|
|
- Summary of functionality (See the README.md for more):
|
|
|
|
- Supports SPIR-V 1.1 Rev 1
|
|
|
|
- Supports SPIR-V 1.0 Rev 5
|
|
|
|
- Supports GLSL std450 extended instructions 1.0 Rev 3
|
|
|
|
- Supports OpenCL extended instructions 1.0 Rev 2
|
|
|
|
- Assembler, disassembler are complete
|
|
|
|
- Supports floating point widths of 16, 32, 64 bits
|
|
|
|
- Supports integer widths up to 64 bits
|
|
|
|
- Validator is incomplete
|
2016-06-02 19:29:13 +00:00
|
|
|
- Checks capability requirements in most cases
|
|
|
|
- Checks module layout constraints
|
|
|
|
- Checks ID use-definition ordering constraints,
|
|
|
|
ignoring control flow
|
|
|
|
- Checks some control flow graph rules
|
|
|
|
- Optimizer is introduced, with few available transforms.
|
2016-04-22 00:50:11 +00:00
|
|
|
- Supported on Linux, OSX, Android, Windows
|
2016-06-14 15:45:35 +00:00
|
|
|
|
|
|
|
- Fixes bugs:
|
|
|
|
- #143: OpenCL pow and pown arguments
|