sirit/src/sirit.cpp

135 lines
3.5 KiB
C++
Raw Normal View History

2018-08-23 08:59:57 +01:00
/* This file is part of the sirit project.
* Copyright (c) 2018 ReinUsesLisp
* This software may be used and distributed according to the terms of the GNU
2018-08-27 03:28:39 +01:00
* Lesser General Public License version 2.1 or any later version.
2018-08-23 08:59:57 +01:00
*/
2018-08-26 00:16:37 +01:00
#include "sirit/sirit.h"
#include "common_types.h"
2018-08-26 00:34:06 +01:00
#include "op.h"
2018-08-26 00:16:37 +01:00
#include "stream.h"
2018-10-03 04:32:45 +01:00
#include <algorithm>
#include <cassert>
2018-08-26 00:16:37 +01:00
namespace Sirit {
2018-10-03 04:32:45 +01:00
template <typename T>
static void WriteEnum(Stream& stream, spv::Op opcode, T value) {
2018-08-28 08:05:47 +01:00
Op op{opcode};
op.Add(static_cast<u32>(value));
op.Write(stream);
}
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;
2018-08-31 07:41:30 +01:00
std::vector<u8> Module::Assemble() const {
2018-08-26 00:16:37 +01:00
std::vector<u8> bytes;
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-08-26 00:16:37 +01:00
WriteEnum(stream, spv::Op::OpCapability, capability);
}
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
// TODO write ext inst imports
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-08-26 00:16:37 +01:00
// TODO write execution mode
2018-10-20 06:52:55 +01:00
WriteSet(stream, debug);
2018-10-23 08:45:56 +01:00
WriteSet(stream, annotations);
2018-10-20 06:52:55 +01:00
WriteSet(stream, declarations);
WriteSet(stream, global_variables);
WriteSet(stream, code);
2018-08-26 00:16:37 +01:00
return bytes;
}
void Module::AddCapability(spv::Capability capability) {
capabilities.insert(capability);
}
2018-10-03 04:32:45 +01:00
void Module::SetMemoryModel(spv::AddressingModel addressing_model,
spv::MemoryModel memory_model) {
2018-08-26 00:16:37 +01:00
this->addressing_model = addressing_model;
this->memory_model = memory_model;
}
2018-11-01 01:20:49 +00:00
void Module::AddEntryPoint(spv::ExecutionModel execution_model, Id entry_point,
2018-10-03 04:32:45 +01:00
const std::string& name,
2018-11-01 01:20:49 +00:00
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(name);
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-11-01 01:20:49 +00:00
Id Module::Emit(Id op) {
2018-08-26 00:34:06 +01:00
code.push_back(op);
return op;
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);
global_variables.push_back(variable);
return variable;
}
Id Module::AddCode(std::unique_ptr<Op> op) {
2018-11-01 08:13:30 +00:00
const auto id = op.get();
code_store.push_back(std::move(op));
2018-11-01 08:13:30 +00:00
return 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) {
2018-10-03 04:32:45 +01:00
const auto& found{
std::find_if(declarations.begin(), declarations.end(),
[&op](const auto& other) { return *other == *op; })};
2018-08-26 00:16:37 +01:00
if (found != declarations.end()) {
return found->get();
}
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) {
2018-11-01 08:13:30 +00:00
const auto id = op.get();
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++);
}
return glsl_std_450.get();
}
2018-08-26 00:16:37 +01:00
} // namespace Sirit