Ronald Caesar 1b4192f7ab tests/memory: fix segfault
`context->code_buffer` was only declared, not initialized, so the
OS gave code_buffer a random address in memory. This random memory
address was then freed during test_teardown(), causing a segfault.

Signed-off-by: Ronald Caesar <github43132@proton.me>
2026-03-09 05:25:35 +00:00
2026-03-02 09:08:04 +00:00
2026-03-09 05:25:35 +00:00
2026-03-04 07:12:46 +00:00
2025-12-12 18:29:36 -04:00
2026-02-21 02:52:28 -04:00
2025-12-07 13:09:15 -04:00
2026-03-06 21:12:24 +00:00

The Ballistic JIT Engine

„The world's fastest ARM recompiler“

Overview

This is a rewrite of the dynarmic recompiler, with the goal of fixing its many flaws.

Immediate Goals

  • Support MOVZ, MOVK, MOVN instructions.
  • Support ADD instructions.
  • Implement backend.

Building Ballistic

Install Dependencies

macOS

brew install cmake python3 llvm

Debian/Ubuntu

sudo apt update
sudo apt install build-essential cmake python3 libclang-dev llvm-dev

Fedora

sudo dnf install cmake python3 gcc-c++ clang-devel llvm-devel

Configure CMake

mkdir build
cd build
cmake ..

macOS (If LLVM is not found)

cmake -DCMAKE_PREFIX_PATH=$(brew --prefix llvm) ..

Build Binaries

cmake --build .

The following executables will be created in the build/ directory:

  • libBallistic.a (Static Library)
  • ballistic_cli (Used for Ballistic development)
  • decoder_cli (Instruction decoding tool)
  • cdoc (Documentation generator)
  • test_* (Test suite, run with ctest)

See tools/ for more information on these executables.

Description
No description provided
Readme GPL-2.0 13 MiB
Languages
C 92.4%
XSLT 5.4%
Python 1.4%
CSS 0.5%
CMake 0.3%