dynarmic/externals/oaknut
2022-10-18 15:04:30 +01:00
..
.github/workflows externals: Update oaknut 2022-07-12 20:41:36 +01:00
include/oaknut oaknut: Implement arranged accessors from DReg and QReg 2022-10-18 15:04:30 +01:00
tests externals: Add oaknut 2022-07-10 09:38:20 +01:00
.clang-format externals: Add oaknut 2022-07-10 09:38:20 +01:00
.gitignore externals: Add oaknut 2022-07-10 09:38:20 +01:00
CMakeLists.txt externals: Update oaknut 2022-07-12 20:41:36 +01:00
LICENSE externals: Add oaknut 2022-07-10 09:38:20 +01:00
README.md externals: Add oaknut 2022-07-10 09:38:20 +01:00

Oaknut

A C++20 assembler for AArch64 (ARMv8.0)

Oaknut is a header-only library that allows one to dynamically assemble code in-memory at runtime.

Usage

Simple example:

using EmittedFunction = int (*)();

EmittedFunction EmitExample(oaknut::CodeGenerator& code, int value)
{
    using namespace oaknut::util;

    EmittedFunction result = code.ptr<EmittedFunction>();

    code.MOVZ(W0, value);
    code.RET();

    return result;
}

License

This project is MIT licensed.