Displaying 1 result from an estimated 1 matches for "risc_armv4l".
Did you mean:
risc_armv4le
2015 Jul 22
2
[LLVMdev] Would DosBox benefit from LLVM JIT?
...est 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 was too slow to me, I asked myself the question "how could it speed
up?" and assumed that perhaps LLVM could optimize it on the fly....