pound-emu_pound/src
Ronald Caesar cc8cc63478
host/memory: Fix typo
Signed-off-by: Ronald Caesar <github43132@proton.me>
2025-12-04 19:52:37 -04:00
..
common refactor: Humongous Commit 2025-11-29 14:53:02 -04:00
host host/memory: Fix typo 2025-12-04 19:52:37 -04:00
jit jit/interpreter: Add stub files for arm32 decoding 2025-12-04 19:43:40 -04:00
main.c jit/decoder: Add generated arm32 tests 2025-11-30 06:14:03 -04:00
README.md jit/interpreter: Add stub files for arm32 decoding 2025-12-04 19:43:40 -04:00

Tiered JIT Compilation

Pound's current goal is to create a Task-Based Parrallel JIT with Work-Stealing. This should hopefully be faster than Dynarmic's multithreading model. Wish me luck.

Roadmap:

[ ] Interpreter: Runs code immediately while the JIT compiles a faster version in the background.

[ ] Single Worker Pipeline Model: Basic asynchronous compilation.

[ ] Task-Based System: Final Implementation.