| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | A few cosmetic fixes (#858) | Alexandre Julliard | 2023-06-24 | 21 | -40/+38 |
| | | | | | | | | | | | | | | | | | | | | | | * [DYNAREC] Don't include pthread.h in C files. It's already included from box64context.h. Since there's no pthread.h on Win32, including it only once avoids having to add ifdefs everywhere. * [DYNAREC] Remove some duplicate definitions of the GETG helper macros. * Declare void functions with an explicit void. To avoid 'function declaration is not a prototype' warnings when using -Wstrict-prototypes. * Avoid including bridge_private.h in files that don't need it. * Avoid defining ZYDIS_RUNTIME_ADDRESS_NONE. It's not used, and conflicts with the original Zydis headers. | ||||
| * | [32BITS][DYNAREC] Preparing Dynarec to handle 32bits code | ptitSeb | 2023-06-22 | 2 | -3/+3 |
| | | |||||
| * | [TRACE] Improve trace for 32bits part | ptitSeb | 2023-06-18 | 1 | -1/+1 |
| | | |||||
| * | Added some support for 32bits code (doesn't seems enough for wow64 yet) | ptitSeb | 2023-06-18 | 3 | -4/+3 |
| | | |||||
| * | Added ability to trace and dump 32bits code | ptitSeb | 2023-06-17 | 3 | -2/+6 |
| | | |||||
| * | Added support for creating 32bits selector (no 32bits execution yet) | ptitSeb | 2023-06-17 | 2 | -2/+6 |
| | | |||||
| * | [DYNAREC] Addeddetection of libjvm (and an option to disable it) to apply ↵ | ptitSeb | 2023-05-31 | 1 | -0/+1 |
| | | | | | conservative settings when loaded (should help #813) and probably other java based games/apps) | ||||
| * | Added GstTaskPoll to gtkclass wrapping | ptitSeb | 2023-05-28 | 1 | -0/+10 |
| | | |||||
| * | [RV64_DYNAREC] Added F3 0F B8 POPCNT opcode and fixed LOCK CMPXCHG16B for ↵ | xctan | 2023-05-28 | 1 | -0/+3 |
| | | | | | | | | | | ML2 (#808) * [RV64_DYNAREC] Added lock to F0 48 0F C7 LOCK CMPXCHG16B opcode * [RV64_DYNAREC] Added F3 0F B8 POPCNT opcode * [RV64_DYNAREC] Moved 16B lock to box64context | ||||
| * | [WRAPPER] Fixed stack align on varargs (for #789) (#790) | Yang Liu | 2023-05-16 | 1 | -1/+1 |
| | | |||||
| * | Optimized Exit bridge managment | ptitSeb | 2023-05-10 | 2 | -2/+1 |
| | | |||||
| * | Some small changes to thread and fork and cloning x64emu_t struct | ptitSeb | 2023-05-08 | 1 | -1/+1 |
| | | |||||
| * | [DYNAREC] Added BOX64_DYNAREC_MISSING to only print dynarec missing opcode | ptitSeb | 2023-05-07 | 1 | -0/+1 |
| | | |||||
| * | [DYNAREC] Disabled custom mutex for now | ptitSeb | 2023-05-07 | 2 | -3/+14 |
| | | |||||
| * | Improved mallock_hack_2, trying to reduce potential memory leaks | ptitSeb | 2023-05-03 | 1 | -1/+2 |
| | | |||||
| * | [RV64_DYNAREC] Add detection of Zba, Zbb, Zbc and Zbs CPU extensions | ptitSeb | 2023-05-01 | 1 | -0/+5 |
| | | |||||
| * | Introduced RunFunctionFmt (should help RV64 and other signe extended ↵ | ptitSeb | 2023-04-28 | 1 | -0/+1 |
| | | | | | platform), conversion not finished | ||||
| * | Fix for local library open using dlopen that are then promoted to global ↵ | ptitSeb | 2023-04-28 | 1 | -0/+2 |
| | | | | | with another dlopen (help java 17, probably other too) | ||||
| * | Improved/fixed (agaaaaain) Load/Unload of library (might help #740 &nd #742) | ptitSeb | 2023-04-25 | 2 | -0/+2 |
| | | |||||
| * | Made the to/from_complex function static inline (might help #738) | ptitSeb | 2023-04-24 | 1 | -4/+4 |
| | | |||||
| * | Added more gtk3 wrapped functions (#731) | lizhuoheng | 2023-04-23 | 1 | -0/+96 |
| | | |||||
| * | Added more gtk3 wrapped functions (#727) | lizhuoheng | 2023-04-23 | 1 | -0/+68 |
| | | |||||
| * | Fixed and improved __cxa_atexit handling | ptitSeb | 2023-04-22 | 1 | -2/+2 |
| | | |||||
| * | Added more gtk3 wrapped functions (#720) | lizhuoheng | 2023-04-21 | 1 | -1/+32 |
| | | |||||
| * | [DYNAREC] Try to test last opcode at end of block for unimplemented opcode | ptitSeb | 2023-04-20 | 1 | -1/+1 |
| | | |||||
| * | [DYNAREC] Fixed signature of x64test function | ptitSeb | 2023-04-19 | 1 | -1/+1 |
| | | |||||
| * | [DYNAREC] General fixes and improvment for multithread and jit program. ↵ | ptitSeb | 2023-04-16 | 2 | -0/+3 |
| | | | | | Helps Java, mono and Unity3d program... (should help #519, #464, #433, #272, #232, #193, #112...) | ||||
| * | More fixes for dlclose/dlopen sequences | ptitSeb | 2023-04-15 | 1 | -0/+1 |
| | | |||||
| * | Improve loading/unloading of libs, and fixed a regression when dlopen a lib ↵ | ptitSeb | 2023-04-12 | 1 | -0/+1 |
| | | | | | after some dlclose | ||||
| * | [RV64_DYNAREC] Added 0F BC/BD opcodes | ptitSeb | 2023-04-11 | 1 | -0/+3 |
| | | |||||
| * | [ELFLOADER] Improved handling of Failed-to-load library (and unloading of ↵ | ptitSeb | 2023-04-10 | 3 | -4/+6 |
| | | | | | libs too) | ||||
| * | [ELFLOADER] Improved handling of default versions | ptitSeb | 2023-04-10 | 5 | -11/+14 |
| | | |||||
| * | Fixed float complex handling as parameter | ptitSeb | 2023-04-07 | 1 | -1/+1 |
| | | |||||
| * | Try to add complex function in libm | ptitSeb | 2023-04-06 | 1 | -0/+33 |
| | | |||||
| * | [DYNAREC] Never protect bridge memory (ported from box86) | ptitSeb | 2023-04-02 | 1 | -3/+4 |
| | | |||||
| * | [DYNAREC] Added BOX64_DYNAREC_TEST to run interpeter and dynarec at the same ↵ | ptitSeb | 2023-03-27 | 5 | -0/+8 |
| | | | | | time and compare states | ||||
| * | fix some spelling mistakes (#640) | josch | 2023-03-26 | 3 | -11/+11 |
| | | |||||
| * | [RV64][LA464][PPC64] Fixed some issues with VALIST handling | ptitSeb | 2023-03-25 | 1 | -6/+7 |
| | | |||||
| * | [RV64_DYNAREC] Optimize MOV64 emitter (#572) | Yang Liu | 2023-03-16 | 1 | -0/+7 |
| | | |||||
| * | Tried to optimize TLS fetching | ptitSeb | 2023-03-12 | 1 | -2/+1 |
| | | |||||
| * | Rv64 dynarec (#550) | ptitSeb | 2023-03-12 | 1 | -0/+10 |
| | | | | | | | | | | | | | | | * [RV64_DYNAREC] Pushed the rv64_lock.h * [RV64_DYNAREC] Add initial support for atomic functions * [RV64_DYNAREC] Added some basic infrastructure for the Dynarec (and 1 opcode) * [RV64_DYNAREC] Add a disassembler for RV64 instructions * [RV64_DYNAREC] Added 86 MOV opcode, and some fixes too * [RV64_DYNAREC] Added 8D LEA opcode * [RV64_DYNAREC] Added POP reg opcode * [RV64_DYNAREC] Various fixes and small optims --------- Co-authored-by: Yang Liu <liuyang22@iscas.ac.cn> | ||||
| * | [DYNAREC] Added BOX64_DYNAREC_FORWARD parameter, with a default value to 128 ↵ | ptitSeb | 2023-03-07 | 1 | -0/+1 |
| | | | | | (works well on box64, with up to 30% more speed) | ||||
| * | Refactored OpenGL symbol fetching and managment | ptitSeb | 2023-03-05 | 3 | -8/+13 |
| | | |||||
| * | Added automatic detection of libcef (will help zoon #510, #451, #302 and ↵ | ptitSeb | 2023-03-05 | 1 | -0/+1 |
| | | | | | probably other too) | ||||
| * | [DYNAREC] Fixed (again) and improved new jmptable memory manager | ptitSeb | 2023-03-05 | 1 | -3/+3 |
| | | |||||
| * | Better way to use CREATE_VALIST_FROM_VAARG macro | ptitSeb | 2023-03-03 | 1 | -1/+3 |
| | | |||||
| * | [DYNAREC] Finetuned the jump table memory allocation | ptitSeb | 2023-03-02 | 2 | -1/+13 |
| | | |||||
| * | Merge branch 'main' into steam_chrome | ptitSeb | 2023-02-20 | 2 | -0/+4 |
| |\ | |||||
| | * | [DYNAREC] Optimized FillBlock64 to avoid 3 for loop on all block ↵ | ptitSeb | 2023-02-19 | 1 | -0/+3 |
| | | | | | | | | | instructions and a temporary malloc/free | ||||
| | * | [DYNAREC] Introduced BOX64_DYNAREC_FASTPAGE to use an alternate way to ↵ | ptitSeb | 2023-02-19 | 1 | -0/+1 |
| | | | | | | | | | handle HotPages (faster but crashy) | ||||