Expand description
Data representation of various SPIR-V language constructs.
By language constructs, I mean general language concepts like module, function, block, instruction, and operands. This is different from the “control flow constructs” mentioned in the SPIR-V specification.
This data representation is designed to be lightweight; there are no excessive sanity check or cross referrences within each language construct. It is intended to be used as a plain data vehicle of SPIR-V language constructs in the memory.
Required components of a language construct may still be wrapped around
using Option
; it makes the data representation more flexible since
we don’t always require valid language constructs.
Apart from definitions of various language constructs, this module also provides a loader for loading SPIR-V binaries (together with the parser) and a builder for building a SPIR-V data representation interactively.
Structs
- Data representation of a SPIR-V block.
- The data representation builder.
- Data representation of a SPIR-V function.
- Data representation of a SPIR-V instruction.
- The data representation loader.
- Data representation of a SPIR-V module.
- Data representation of a SPIR-V module header.
Enums
- Data representation loading errors.
- Data representation of a SPIR-V operand.
Functions
- Loads the SPIR-V
binary
into memory and returns aModule
. - Loads the SPIR-V
binary
into memory and returns aModule
.