sirit/src/sirit.cpp

150 lines
4 KiB
C++
Raw Normal View History

2018-08-23 08:59:57 +01:00
/* This file is part of the sirit project.
2019-07-14 22:48:59 +01:00
* Copyright (c) 2019 sirit
* This software may be used and distributed according to the terms of the
* 3-Clause BSD License
2018-08-23 08:59:57 +01:00
*/
2019-03-11 06:26:21 +00:00
#include <algorithm>
#include <cassert>
2018-08-26 00:16:37 +01:00
#include "common_types.h"
2018-08-26 00:34:06 +01:00
#include "op.h"
2019-03-11 06:26:21 +00:00
#include "sirit/sirit.h"
2018-08-26 00:16:37 +01:00
#include "stream.h"
namespace Sirit {
2019-03-11 06:26:21 +00:00
template <typename T>
static void WriteSet(Stream& stream, const T& set) {
2018-10-20 06:52:55 +01:00
for (const auto& item : set) {
item->Write(stream);
}
}
2018-11-02 16:38:33 +00:00
Module::Module(u32 version) : version(version) {}
2018-08-26 00:16:37 +01:00
Module::~Module() = default;
std::vector<u32> Module::Assemble() const {
std::vector<u32> bytes;
2018-08-26 00:16:37 +01:00
Stream stream{bytes};
stream.Write(spv::MagicNumber);
2018-11-02 16:38:33 +00:00
stream.Write(version);
2018-10-03 04:32:45 +01:00
stream.Write(GENERATOR_MAGIC_NUMBER);
2018-08-26 00:16:37 +01:00
stream.Write(bound);
stream.Write(static_cast<u32>(0));
2018-10-23 09:09:17 +01:00
for (const auto capability : capabilities) {
2018-11-16 07:21:37 +00:00
Op op(spv::Op::OpCapability);
op.Add(static_cast<u32>(capability));
op.Write(stream);
2018-08-26 00:16:37 +01:00
}
2019-03-09 00:09:11 +00:00
for (const auto& extension_name : extensions) {
Op op(spv::Op::OpExtension);
op.Add(extension_name);
op.Write(stream);
}
2018-11-04 06:03:06 +00:00
if (glsl_std_450) {
glsl_std_450->Write(stream);
}
2018-08-26 00:16:37 +01:00
2018-08-26 00:34:06 +01:00
Op memory_model_ref{spv::Op::OpMemoryModel};
2018-08-26 00:16:37 +01:00
memory_model_ref.Add(static_cast<u32>(addressing_model));
memory_model_ref.Add(static_cast<u32>(memory_model));
memory_model_ref.Write(stream);
2018-10-20 06:52:55 +01:00
WriteSet(stream, entry_points);
2018-12-05 00:30:32 +00:00
WriteSet(stream, execution_modes);
2018-10-20 06:52:55 +01:00
WriteSet(stream, debug);
2018-10-23 08:45:56 +01:00
WriteSet(stream, annotations);
WriteSet(stream, declarations);
2018-10-20 06:52:55 +01:00
WriteSet(stream, global_variables);
WriteSet(stream, code);
2018-08-26 00:16:37 +01:00
return bytes;
}
void Module::AddExtension(std::string extension_name) {
extensions.insert(std::move(extension_name));
2019-03-09 00:09:11 +00:00
}
2018-08-26 00:16:37 +01:00
void Module::AddCapability(spv::Capability capability) {
capabilities.insert(capability);
}
void Module::SetMemoryModel(spv::AddressingModel addressing_model_, spv::MemoryModel memory_model_) {
this->addressing_model = addressing_model_;
this->memory_model = memory_model_;
2018-08-26 00:16:37 +01:00
}
void Module::AddEntryPoint(spv::ExecutionModel execution_model, Id entry_point,
std::string name, const std::vector<Id>& interfaces) {
2018-11-01 08:13:30 +00:00
auto op{std::make_unique<Op>(spv::Op::OpEntryPoint)};
2018-08-26 00:16:37 +01:00
op->Add(static_cast<u32>(execution_model));
op->Add(entry_point);
op->Add(std::move(name));
2018-08-26 00:16:37 +01:00
op->Add(interfaces);
2018-11-01 08:13:30 +00:00
entry_points.push_back(std::move(op));
2018-08-26 00:16:37 +01:00
}
2018-12-05 00:30:32 +00:00
void Module::AddExecutionMode(Id entry_point, spv::ExecutionMode mode,
2019-03-11 06:26:21 +00:00
const std::vector<Literal>& literals) {
2018-12-05 00:30:32 +00:00
auto op{std::make_unique<Op>(spv::Op::OpExecutionMode)};
op->Add(entry_point);
op->Add(static_cast<u32>(mode));
op->Add(literals);
execution_modes.push_back(std::move(op));
}
Id Module::AddLabel(Id label) {
assert(label != nullptr);
return code.emplace_back(label);
}
Id Module::AddLocalVariable(Id variable) {
assert(variable != nullptr);
return code.emplace_back(variable);
2018-08-26 00:16:37 +01:00
}
2018-11-01 01:20:49 +00:00
Id Module::AddGlobalVariable(Id variable) {
2018-10-20 06:52:55 +01:00
assert(variable);
return global_variables.emplace_back(variable);
2018-10-20 06:52:55 +01:00
}
Id Module::AddCode(std::unique_ptr<Op> op) {
const Id id = code_store.emplace_back(std::move(op)).get();
return code.emplace_back(id);
2018-08-26 00:16:37 +01:00
}
2018-11-01 01:20:49 +00:00
Id Module::AddCode(spv::Op opcode, std::optional<u32> id) {
return AddCode(std::make_unique<Op>(opcode, id));
2018-08-26 00:16:37 +01:00
}
Id Module::AddDeclaration(std::unique_ptr<Op> op) {
const auto& found{std::find_if(declarations.begin(), declarations.end(),
[&op](const auto& other) { return *other == *op; })};
if (found != declarations.end()) {
return found->get();
2018-08-26 00:16:37 +01:00
}
const auto id = op.get();
declarations.push_back(std::move(op));
bound++;
return id;
2018-08-26 00:16:37 +01:00
}
void Module::AddAnnotation(std::unique_ptr<Op> op) {
annotations.push_back(std::move(op));
2018-10-23 08:45:56 +01:00
}
2018-11-04 06:03:06 +00:00
Id Module::GetGLSLstd450() {
if (!glsl_std_450) {
glsl_std_450 = std::make_unique<Op>(spv::Op::OpExtInstImport, bound++);
2018-11-13 22:30:29 +00:00
glsl_std_450->Add("GLSL.std.450");
2018-11-04 06:03:06 +00:00
}
return glsl_std_450.get();
}
2018-08-26 00:16:37 +01:00
} // namespace Sirit