sirit/tests/main.cpp

68 lines
2 KiB
C++
Raw Normal View History

2018-08-23 07:59:57 +00: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 02:28:39 +00:00
* Lesser General Public License version 2.1 or any later version.
2018-08-23 07:59:57 +00:00
*/
#include <sirit/sirit.h>
2018-08-25 23:16:37 +00:00
#include <cstdio>
#include <cstdlib>
class MyModule : public Sirit::Module {
public:
MyModule() {}
~MyModule() = default;
void Generate() {
AddCapability(spv::Capability::Shader);
SetMemoryModel(spv::AddressingModel::Logical, spv::MemoryModel::GLSL450);
2018-08-26 17:25:59 +00:00
// Type testing
TypeBool();
TypeBool();
TypeInt(64, true);
TypeInt(64, false);
TypeInt(16, false);
TypeFloat(16);
TypeFloat(32);
TypeFloat(64);
TypeVector(TypeBool(), 4);
TypeVector(TypeBool(), 3);
TypeMatrix(TypeVector(TypeFloat(32), 4), 4);
TypeImage(TypeFloat(32), spv::Dim::Dim2D, 0, false, false, 0,
2018-08-26 18:48:10 +00:00
spv::ImageFormat::Rg32f);
2018-08-26 17:25:59 +00:00
TypeSampledImage(TypeImage(TypeFloat(32), spv::Dim::Rect, 0, false, false, 0,
2018-08-26 18:48:10 +00:00
spv::ImageFormat::Rg32f));
TypeVector(TypeInt(32, true), 4);
TypeVector(TypeInt(64, true), 4);
TypeRuntimeArray(TypeInt(32, true));
TypeStruct({TypeInt(32, true), TypeFloat(64)});
TypePointer(spv::StorageClass::Private, TypeFloat(16));
2018-08-26 22:35:48 +00:00
ConstantTrue(TypeBool());
ConstantTrue(TypeBool());
ConstantFalse(TypeBool());
2018-08-26 17:25:59 +00:00
2018-08-25 23:16:37 +00:00
auto main_type{TypeFunction(TypeVoid())};
2018-08-25 23:34:06 +00:00
auto main_func{Emit(Function(TypeVoid(), spv::FunctionControlMask::MaskNone, main_type))};
Emit(Label());
Emit(Return());
Emit(FunctionEnd());
2018-08-25 23:16:37 +00:00
AddEntryPoint(spv::ExecutionModel::Vertex, main_func, "main");
}
};
int main(int argc, char** argv) {
MyModule module;
module.Generate();
module.Optimize(2);
std::vector<std::uint8_t> code{module.Assembly()};
FILE* file = fopen("sirit.spv", "wb");
fwrite(code.data(), 1, code.size(), file);
fclose(file);
2018-08-23 07:59:57 +00:00
return 0;
}