AsmJit ------ AsmJit is a library for low-latency machine code generation written in C++. * [Official Home Page (asmjit.com)](https://asmjit.com) * [Official Repository (asmjit/asmjit)](https://github.com/asmjit/asmjit) * [Public Chat Channel](https://app.element.io/#/room/#asmjit:matrix.org) * [Zlib License](./LICENSE.md) See [asmjit.com](https://asmjit.com) page for more details, examples, and documentation. Project Organization -------------------- * **`/`** - Project root - project files and scripts, `include` path points here * **asmjit** - AsmJit source code and headers * **core** - Core API, backend independent except relocations * **support** - Support classes and functions * **arm** - ARM specific API, designed to be common for both AArch32 and AArch64 * **a64** - AArch64 specific API, used only by AArch64 backends * **x86** - X86 specific API, used only by X86 and X64 backends * **ujit** - Universal JIT API * **asmjit-testing** - Unit tests, integration tests, and benchmarks (don't embed in your project) * **commons** - Common utilities shared between tests and benchmarks * **bench** - Benchmarks * **tests** - Unit tests and integration tests * **db** - Instruction database * **tools** - Tools used to re-regenerate generated files (instruction DB, enum strings) Roadmap ------- * See [Roadmap](https://asmjit.com/roadmap.html) page for more details Documentation ------------- * [Documentation Index](https://asmjit.com/doc/index.html) * [Build Instructions](https://asmjit.com/doc/group__asmjit__build.html) (includes [CMake Integration](https://asmjit.com/doc/group__asmjit__build.html#cmake_integration)) Contributing Guidelines ----------------------- * See [CONTRIBUTING](./CONTRIBUTING.md) page for more details Development & Testing --------------------- * Basic configure scripts that invoke cmake are provided in project root. Breaking Changes ---------------- Breaking the API is sometimes inevitable, what to do? * See [Breaking Changes Guide](https://asmjit.com/doc/group__asmjit__breaking__changes.html), which is now part of AsmJit documentation * See asmjit tests, they always compile and provide implementation of many use-cases: * [asmjit_test_emitters.cpp](./asmjit-testing/tests/asmjit_test_emitters.cpp) - Tests that demonstrate the purpose of emitters * [asmjit_test_assembler_x86.cpp](./asmjit-testing/tests/asmjit_test_assembler_x86.cpp) - Tests targeting AsmJit's Assembler (x86/x64) * [asmjit_test_compiler_x86.cpp](./asmjit-testing/tests/asmjit_test_compiler_x86.cpp) - Tests targeting AsmJit's Compiler (x86/x64) * [asmjit_test_instinfo.cpp](./asmjit-testing/tests/asmjit_test_instinfo.cpp) - Tests that query instruction information * [asmjit_test_x86_sections.cpp](./asmjit-testing/tests/asmjit_test_x86_sections.cpp) - Multiple sections test * Visit our [Public Chat](https://app.element.io/#/room/#asmjit:matrix.org) if you need a quick help Support & Funding ----------------- * AsmJit project has both community and commercial support, see [AsmJit's Support Page](https://asmjit.com/support.html) * If you use this software commercially, please see the [Funding Page](https://kobalicek.com/funding.html) and support the development Notable Donors List: * [ZehMatt](https://github.com/ZehMatt) Authors & Maintainers --------------------- * Petr Kobalicek ([website](https://kobalicek.com))