about summary refs log tree commit diff stats
path: root/src/emu (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* [TRACE] Better trace for F3 0F 1E FA opcodeptitSeb2024-09-091-1/+3
|
* Fixed name of opcode in commentptitSeb2024-09-061-2/+2
|
* Fixed a regression introduced with box32 that broke Bladur's Gate 3 (and ↵ptitSeb2024-09-052-8/+10
| | | | probably a few other)
* [CI] Refactored CI (#1795)Yang Liu2024-09-058-114/+1
| | | | | | | | | | | | | | | | | * [CI] Enable Box32 tests on LA64 * upgrade QEMU * [COSIM] Removed thread-safe tests * Use regular cosim in CI * [CI] Simplified "Test Box64" * exclude certain tests when testing with cosim * review * box64.pod too
* [BOX32] Better trace for 32bits posix_memalignptitSeb2024-09-031-1/+6
|
* [BOX32] Fixes and hacks to get steamcmd shows the promptptitSeb2024-09-012-3/+72
|
* [BOX32] Some fixes to strtol/strtoul and read 32bits wrapped functionsptitSeb2024-09-011-4/+5
|
* [BOX32] More wrapped function and a few fixes for steamclient.so (still ↵ptitSeb2024-09-011-0/+1
| | | | crashing)
* [BOX32] Another batch of 32bits wrapped function, for libvstdlib_s.so this timeptitSeb2024-08-311-0/+3
|
* [BOX32] More 32bits wrapped function and fixesptitSeb2024-08-301-1/+1
|
* [BOX32] Added more 32bits wrapped function and fixesptitSeb2024-08-302-2/+2
|
* [BOX32] More 32bits wrapped functions and fixesptitSeb2024-08-302-21/+28
|
* Added 67 F3 0F 38 F6 opcode (for #1775)ptitSeb2024-08-301-0/+40
|
* [BOX32] More fixes to ctype_b_loc and added a few more wrapped functionsptitSeb2024-08-291-0/+2
|
* [BOX32] Added more 32bits wrapped function and more fixesptitSeb2024-08-291-1/+0
|
* [TRACE] Added one 32bits jump decoding dest addressptitSeb2024-08-291-0/+4
|
* [BOX32][TRACE] Improve function trace logptitSeb2024-08-291-65/+65
|
* [BOX32] More wrapped 32bits functions, and some fixes tooptitSeb2024-08-281-0/+2
|
* [BOX32] More 32bits wrapped functionsptitSeb2024-08-282-1/+4
|
* Added preliminary Box32 support (#1760)ptitSeb2024-08-2612-55/+1011
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Improve the ReserveHigMemory helper function * [BOX32] Added some wrapping infrastructure * [BOX32] More wrapped 32bits lib infrastructure * [BOX32] Added callback and tls 32bits handling * [BOX32] Added more 32bits, around wrappers and elfs * [BOX32] Added the 32bits version of myalign * [BOX32] More wrapped libs and 32bits fixes and imrpovments * [BOX32] Added some 32bits tests * [BOX32] Try to enable some Box32 build and test on the CI * [BOX32] Disable Box32 testing on CI platform that use qemu * [BOX32] Another attempt to disable Box32 testing on CI platform that use qemu * [BOX32] Small fix for another attempt to disable Box32 testing on CI platform that use qemu * [BOX32] Yet another fix for another attempt to disable Box32 testing on CI platform that use qemu * [BOX32] Fixed a typo in CI script * [BOX32] Better scratch alighnment and enabled more tests * [BOX32] Added (partial) wrapped 32bits librt * [BOX32] Added mention of Box32 in README * [BOX32] Added phtread handling, and numerous fixes to 32bits handling. [ARM64_DYNAREC] Fixed access to segment with negative offset * [BOX32] Added system libs and cpp testing, plus some more fixes * [BOX32] Fix previous commit * [BOX32] Better stack adjustment for 32bits processes * [BOX32] Added getenv wrapped 32bits function and friends * [BOX32] Don't look for box86 for a Box32 build * [BOX32] Don't do 32bits cppThreads test for now on CI * [BOX32] Enabled a few more 32bits tests * [BOX32] For ld_lib_path for both CppThreads tests * [BOX32] [ANDROID] Some Fixes for Android Build * [BOX32] Still need to disable cppThread_32bits test on CI for some reason * [BOX32] [ANDROID] Don't show PreInit Array Warning (#1751) * [BOX32] [ANDROID] One More Fix for Android Build That I forgotten to … (#1752) * [BOX32] [ANDROID] One More Fix for Android Build That I forgotten to push before * [BOX32] [ANDROID] Try to Create __libc_init * [BOX32] [ANDROID] Try to disable NEEDED_LIBS for now (libdl is not wrapped) * [BOX32] Updated generated files * [BOX32] Added 32bits context functions * [BOX32] Added 32bits signal handling * [BOX32] Added some missing 32bits elfloader functions * [BOX32] Fix build on x86_64 machine * [BOX32] Better fix for x86_64 build * [BOX32] Actually added missing libs, and re-enabled cppThreads_32bits test * [BOX32] Added wrapped 32bits libdl * [BOX32] Try to re-enabled Box32 test on CI for ARM64 builds * [BOX32] fine-tuning Box32 test on CI for ARM64 builds * [BOX32] More fine-tuning to Box32 test on CI for ARM64 builds * [BOX32] Enabled Box32 test on CI for LA64 and RV64 builds too * [BOX32] re-Disabled Box32 test on CI for LA64 and RV64 builds, not working for now * [BOX32] Temporarily disabled cppThreads_32bits test on CI --------- Co-authored-by: KreitinnSoftware <pablopro5051@gmail.com> Co-authored-by: KreitinnSoftware <80591934+KreitinnSoftware@users.noreply.github.com>
* [EMU] [ARM64_DYNAREC] Fix Some Warnings on Clang Compilers (#1757)KreitinnSoftware2024-08-264-6/+6
|
* [BOX32] prepare elfheader_t structure for 32bits elfsptitSeb2024-08-171-3/+3
|
* [RV64_DYNAREC] Added more opcodes (#1740)Yang Liu2024-08-161-2/+2
| | | | | | | * [RV64_DYNAREC] Added more opcodes * more opcodes * more
* Added syscalls 444-446ptitSeb2024-08-151-0/+9
|
* [TRACE] Better trace for libc syscallptitSeb2024-08-151-2/+5
|
* Added syscalls 122-124ptitSeb2024-08-151-0/+3
|
* Added (fake) syscall 175 to libs syscallptitSeb2024-08-121-0/+4
|
* [RV64_DYNAREC] More fixes (#1732)xctan2024-08-121-0/+4
| | | | | | | * [RV64_DYNAREC] Fixed pending flag type in emit_sar16 * [RV64_DYNAREC] Fixed imm12 overflow in geted * [SYSCALL] Added fake sys_init_module
* Added 67.AVX.0F.66 D6 opcode ([ARM64_DYNAREC] too)ptitSeb2024-08-101-2/+18
|
* Added 64bits 67 F3 0F 7F opcode ([ARM64_DYNAREC] too)ptitSeb2024-08-101-0/+6
|
* [INTERP] Fixed some undefined behaviour (#1717)Yang Liu2024-08-081-6/+12
|
* Small optimisation on xsave / xrstor helperptitSeb2024-08-071-12/+6
|
* Added 3 syscallsptitSeb2024-07-301-0/+3
|
* Added 67 66 0F EF opcode ([ARM64_DYNAREC] too)ptitSeb2024-07-231-1/+9
|
* Added 67 66 0F FE opcode ([ARM64_DYNAREC] too)ptitSeb2024-07-231-0/+10
|
* Improved exception/int 3 handlingptitSeb2024-07-212-4/+16
|
* Improved TF handlingptitSeb2024-07-211-2/+3
|
* [INTERPRETER] Fixed some issue with INT opcodes and STEP logicptitSeb2024-07-171-3/+3
|
* [TRACE] Fixed some issue with function name printingptitSeb2024-07-131-1/+4
|
* Added 1 syscall (for #1672)ptitSeb2024-07-121-0/+1
|
* fix some spelling (#1668)josch2024-07-101-2/+2
|
* Fixes (#1659)rajdakin2024-07-0918-190/+190
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Replaced some tabs with spaces * Fixed some signedness warnings * Added more debug info * Fixed an improper alignment * [WRAPPEDWAYLAND] Added return statements to wrappers * [EMU] [AVX] Fixed some issues * [ARM DYNAREC] Fixed some minor warnings * [ARM DYNAREC] Removed unused macro arguments * [EMU] Fixed a noisy warning * [ARM DYNAREC] Removed "empty body" warnings * [EMU] Fixed an opcode in dynarec, non-cosim builds * [LA64 DYNAREC] Minor warning fixes * [LA64 DYNAREC] Fixed empty body warnings * [LA64 DYNAREC] Added parenthesis around assignments in if statements * [LA64 DYNAREC] Fixed missing parenthesis in macro definitions * [RV64 DYNAREC] Fixed minor warnings * [RV64 DYNAREC] Fixed wrong/missing parentheses * [WRAPPER] Fixed the WaylandClient callback signatures
* [INTERPRETER] Added 64 66 8D opcode (#1648)Haichen Wu2024-07-062-3/+13
|
* Cosmetic changeptitSeb2024-07-041-3/+3
|
* Impl `sys_getpgrp` & `sys_getpgid` (#1637)Yip Coekjan2024-07-041-0/+4
|
* Handle `.relr.dyn` section (#1626)Yip Coekjan2024-07-021-1/+1
|
* [INTERPRETER] Added 64/65 F3 0F 58 opcodeptitSeb2024-06-251-0/+13
|
* [INTERPRETER] opcode F1 is valid alson in 64bitsptitSeb2024-06-241-4/+0
|
* [INTERPRETER] Added 32bits F1 opcodeptitSeb2024-06-241-0/+10
|
* Improved CPUID a bit more, adding RDRAND (helps geekbench6 avx2 version)ptitSeb2024-06-241-2/+18
|