Code Monkey home page Code Monkey logo

sirit's Introduction

Sirit

A runtime SPIR-V assembler. It aims to ease dynamic SPIR-V code generation without calling external applications (like Khronos' spirv-as)

Its design aims to move code that does not belong in the application to the library, without limiting its functionality.

What Sirit does for you:

  • Sort declaration opcodes
  • Handle types and constant duplicates
  • Emit SPIR-V opcodes

What Sirit won't do for you:

  • Avoid ID duplicates (e.g. emitting the same label twice)
  • Dump code to disk
  • Handle control flow
  • 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

class MyModule : public Sirit::Module {
public:
    MyModule() {}
    ~MyModule() = default;

    void Generate() {
        AddCapability(spv::Capability::Shader);
        SetMemoryModel(spv::AddressingModel::Logical, spv::MemoryModel::GLSL450);
        
        auto main_type{TypeFunction(TypeVoid())};
        auto main_func{OpFunction(TypeVoid(), spv::FunctionControlMask::MaskNone, main_type)};
        AddLabel(OpLabel());
        OpReturn();
        OpFunctionEnd();

        AddEntryPoint(spv::ExecutionModel::Vertex, main_func, "main");
    }
};

// Then...

MyModule module;
module.Generate();

std::vector<std::uint32_t> code{module.Assemble()};

sirit's People

Contributors

abouvier avatar bylaws avatar comex avatar fernandos27 avatar liamwhite avatar lioncash avatar reinuseslisp avatar voidanix avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

sirit's Issues

Missing file (Sirit.h)

The declaration file sirit.h is missing which makes a problem in building yuzu the switch emulator

Merge Block in OpSelectionMerge

First, I want to say thank you for this project. I know it from yuzu. I'm trying use it to write the SPIR-V code.
Now, I have a problem. I don't know how to handle Merge Block in OpSelectionMerge. In SPIR-V, OpSelectionMerge can use the Merge Block id that defines later. But for C++, I can't use the variable that is undefined.

Fails to build without -DNDEBUG e.g., via -DCMAKE_BUILD_TYPE=Unknown

Regressed by 22cc6f6. Found via Yuzu.

Clang 9.0.0 reports:

src/op.cpp:85:21: fatal error: implicit conversion turns string literal into bool: 'const char [21]' to 'bool' [-Wstring-conversion]
            assert(!"Invalid literal type");
                   ~^~~~~~~~~~~~~~~~~~~~~~
/usr/include/assert.h:56:21: note: expanded from macro 'assert'
#define assert(e)       ((e) ? (void)0 : __assert(__func__, __FILE__, \
                          ^
src/op.cpp:115:56: fatal error: declaration shadows a field of 'Sirit::Op' [-Wshadow]
    assert(std::all_of(ids.begin(), ids.end(), [](auto id) { return id; }));
                                                       ^
src/./op.h:56:24: note: previous declaration is here
    std::optional<u32> id;
                       ^
2 errors generated.

GCC 9.1.0 reports:

In file included from /usr/include/c++/cassert:44,
                 from src/op.cpp:8:
src/op.cpp: In lambda function:
src/op.cpp:115:58: error: declaration of 'id' shadows a member of 'Sirit::Op' [-Werror=shadow]
  115 |     assert(std::all_of(ids.begin(), ids.end(), [](auto id) { return id; }));
      |                                                          ^
compilation terminated due to -Wfatal-errors.
cc1plus: all warnings being treated as errors

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.