c0c715505 oaknut: pragma once git-subtree-dir: externals/oaknut git-subtree-split: c0c715505020e69e3acbd959cbfe112083f292b5
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.
Description
Languages
C
64%
C++
23.4%
POV-Ray SDL
10.9%
Pascal
0.7%
SourcePawn
0.7%
Other
0.2%