Contributions are much needed! Emulators are big projects and there’s always a lot of work to do!
I want to optimize instructions
You can get an idea of what sort of RISC-V instructions we emit for an x86-64 instruction by looking in counts/
. If some instruction looks like it could be implemented in a more efficient way, feel free to optimize its respective handler in handlers.cpp
or handlers_x87.cpp
.
If an instruction could be optimized when no flags need to be emitted or under specific circumstances, that’s also welcome!
I want to debug a game
There’s some things to make your life easier. Currently due to a gdb bug our JIT reader gdb implementation is not ready.
Still, here’s some tips:
- When in JIT code, the
s11
RISC-V register holds the x86-64 state- You can view the value individual registers like so:
p/x ((ThreadState*)$s11)->gprs[0]
orp/x ((ThreadState*)$s11)->xmm[0]
- You can get the RIP value:
p/x ((ThreadState*)$s11)->rip
- You can view the value individual registers like so:
- The
FELIX86_CALLTRACE=1
environment variable is very useful when debugging. You can executecall dump_states()
from gdb to print the calltraces. It should have symbols if it can find them and should tell you what binary the code is in - If you are not in JIT code, you can get the
ThreadState
object usingp/x ThreadState::Get()
- The
FELIX86_STRACE=1
environment variable makes the emulator produce a trace of all emulated syscalls it runs - Logs are saved in
/tmp/felix86-<PID>-XXXXXX.log
for every run - Verbose logging can be helpful sometimes, set
FELIX86_VERBOSE=1
Feel free to report any findings in the compatibility list!
I want to profile
There’s symbol support for perf
!
Set FELIX86_PERF=1
to enable it. Additionally, felix86 may detect when it’s run under perf
sometimes and it will print a log letting you know that it did. However it’s recommended you set the environment variable instead, for example if you need to attach perf later.
I want to report an issue with a game
Check out https://github.com/felix86-emu/compatibility-list. Try to follow the format of other issues and use the template!
https://felix86.com/compat/ is manually updated when new issues are added.