pound-emu_pound/src
kokomo123 3c269833a1
Adjust one typo
Signed-off-by: kokomo123 <70863536+kokomo123@users.noreply.github.com>
2025-12-05 10:37:57 -05: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 Adjust one typo 2025-12-05 10:37:57 -05:00

Tiered JIT Compilation

Pound's current goal is to create a Task-Based Parallel 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.