Displaying 1 result from an estimated 1 matches for "core_dynrec".
2015 Jul 22
2
[LLVMdev] Would DosBox benefit from LLVM JIT?
...to research on it.
I recently tried to run Elder Scrolls: Daggerfall on an ARM netbook
Toshiba AC100 and failed even after turning on the latest patches for
"dynamic recompilation". I took a look at the code and here's what I found:
https://github.com/wjp/dosbox/blob/idados/src/cpu/core_dynrec/decoder.h#L34
The relevant macros and functions are defined there:
https://github.com/wjp/dosbox/blob/idados/src/cpu/core_dynrec/risc_armv4le-o3.h
So basically, it looks like there's code that translates instructions
from x86 to a few other platforms in chunks of 32 opcodes. Since this
code...