sirit/README.md

54 lines
1.4 KiB
Markdown
Raw Normal View History

2018-08-23 07:59:57 +00:00
Sirit
=====
2018-08-25 23:53:12 +00:00
A runtime SPIR-V assembler. It aims to ease dynamic SPIR-V code generation
without calling external applications (like Khronos' `spirv-as`)
2018-08-23 07:59:57 +00:00
2019-10-24 06:25:42 +00:00
Its design aims to move code that does not belong in the application to the
library, without limiting its functionality.
2018-08-25 23:53:12 +00:00
2019-10-24 06:25:42 +00:00
What Sirit does for you:
2018-08-25 23:53:12 +00:00
* Sort declaration opcodes
* Handle types and constant duplicates
* Emit SPIR-V opcodes
2019-10-24 06:25:42 +00:00
What Sirit won't do for you:
* Avoid ID duplicates (e.g. emitting the same label twice)
2018-08-25 23:53:12 +00:00
* Dump code to disk
2019-10-24 06:25:42 +00:00
* Handle control flow
2018-08-25 23:53:12 +00:00
* Compile from a higher level language
It's in early stages of development, many instructions are missing since
they are written manually instead of being generated from a file.
Example
-------
```cpp
class MyModule : public Sirit::Module {
public:
MyModule() {}
~MyModule() = default;
void Generate() {
AddCapability(spv::Capability::Shader);
SetMemoryModel(spv::AddressingModel::Logical, spv::MemoryModel::GLSL450);
2019-03-13 21:32:38 +00:00
auto main_type{TypeFunction(TypeVoid())};
2019-10-24 05:55:35 +00:00
auto main_func{OpFunction(TypeVoid(), spv::FunctionControlMask::MaskNone, main_type)};
AddLabel(OpLabel());
OpReturn();
OpFunctionEnd();
2018-08-25 23:53:12 +00:00
AddEntryPoint(spv::ExecutionModel::Vertex, main_func, "main");
}
};
// Then...
MyModule module;
module.Generate();
2019-10-24 05:55:35 +00:00
std::vector<std::uint32_t> code{module.Assemble()};
2018-08-25 23:53:12 +00:00
```