Updated Interpreter optimization resources (markdown)

Mamy Ratsimbazafy 2018-06-15 09:49:04 +02:00
parent 4c2e71df37
commit 2eb83e62c1

@ -23,6 +23,7 @@ Target audience is Nimbus developers.
## JIT / Dynamic recompilation
* Simple portable JIT (x86, x64, ARM, PowerPC and MIPS) for Brainfuck using DynASM (by LuaJIT author) - [Link](http://blog.reverberate.org/2012/12/hello-jit-world-joy-of-simple-jits.html)
* Optimizing direct threaded code by selective inlining - [link](http://flint.cs.yale.edu/jvmsem/doc/threaded.ps)
* Dynamic recompilation introduction - [link](http://ngemu.com/threads/dynamic-recompilation-an-introduction.20491/)
* Dynamic recompilation guide with Chip8 - [link](https://github.com/marco9999/Dynarec_Guide/blob/master/Introduction%20to%20Dynamic%20Recompilation%20in%20Emulation.pdf)