jif is a just in time (JIT) compiler for brainfuck programming language
- Efficient Execution: Translates repetitive Brainfuck commands into efficient intermediate representation (e.g.,
++++
toINST_ADD 4
) to reduce execution time. - Precalculated Jumps: All posible jump offsets are precalculated to improve performance.
git clone https://github.com/deep9977/jif.git
cd jif
make
Some sample programs can be found in example/ directory. To run a sample program run the following cammand:
./jif example/hello-world.bf