| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | [DYNAREC] Some light rework of the hotpage handling | ptitSeb | 2024-12-23 | 1 | -4/+21 | |
| | | ||||||
| * | Added more rbtrees in dynarec managment, to speedup ↵ | ptitSeb | 2024-12-23 | 1 | -57/+42 | |
| | | | | | FindDynablockFromNativeAddress function | |||||
| * | Fix build for older system (for #2190) | ptitSeb | 2024-12-23 | 1 | -0/+6 | |
| | | ||||||
| * | Improved memory tracking and 32bits memory allocation | ptitSeb | 2024-12-21 | 1 | -6/+92 | |
| | | ||||||
| * | Changed customme block resize to lower the number of realloc | ptitSeb | 2024-12-21 | 1 | -1/+1 | |
| | | ||||||
| * | [BOX32] Improved pre-reserve highmem, and use that memory for dynablocks | ptitSeb | 2024-12-17 | 1 | -2/+10 | |
| | | ||||||
| * | Added a new memExist helper function and use it instead of getMmapped were ↵ | ptitSeb | 2024-11-30 | 1 | -0/+6 | |
| | | | | | it make sense | |||||
| * | [DYNAREC] Mark existing block as dirty when re-creating a memory block | ptitSeb | 2024-11-17 | 1 | -2/+11 | |
| | | ||||||
| * | [DYNAREC] Only test page protection when needed (and using a fester way) ↵ | ptitSeb | 2024-11-09 | 1 | -0/+10 | |
| | | | | | (should address the performance regression of #2009) | |||||
| * | [RBTREE] Unify naming and prevent unintended symbol exposure (#2005) | Jim Huang | 2024-11-06 | 1 | -12/+12 | |
| | | | | | | Red-black tree operations now consistently use the 'rbtree_' prefix, and internal functions remain unexposed. Tested on RV64GC, resulting in a 498-byte reduction in the .text section size. | |||||
| * | Improve handling of memory protection, and excution bit | ptitSeb | 2024-11-04 | 1 | -3/+7 | |
| | | ||||||
| * | [BOX32] Fixed some X11 function so wine launch (and added BOX64_X11SYNC to ↵ | ptitSeb | 2024-10-08 | 1 | -1/+10 | |
| | | | | | help debug X11 programs) | |||||
| * | Improve debugging trace of rb_tree | ptitSeb | 2024-10-08 | 1 | -4/+4 | |
| | | ||||||
| * | [BOX32][DYNAREC] Allocate Dynarec memory in higher prereserve regions | ptitSeb | 2024-10-08 | 1 | -2/+31 | |
| | | ||||||
| * | Removed wine prereserve hack on munmap now that prereserve is better handled | ptitSeb | 2024-10-08 | 1 | -5/+2 | |
| | | ||||||
| * | Small adjustment in 32bits custom memory hinter | ptitSeb | 2024-10-08 | 1 | -1/+1 | |
| | | ||||||
| * | Small change in custom Aligned Memory Allocator | ptitSeb | 2024-10-07 | 1 | -2/+3 | |
| | | ||||||
| * | Some cosmetic changes and more macro, to ease future testings on custom malloc | ptitSeb | 2024-10-07 | 1 | -1/+1 | |
| | | ||||||
| * | Reworked mmap allocator and wine prereserve handling ([BOX32] fix handling ↵ | ptitSeb | 2024-10-07 | 1 | -1/+3 | |
| | | | | | of wine prereserve) | |||||
| * | [BOX32] Added more 32bits wrapped function and reworked 32bits memory allocator | ptitSeb | 2024-10-03 | 1 | -5/+19 | |
| | | ||||||
| * | [BOX32] Keep low memory free by default | ptitSeb | 2024-09-30 | 1 | -1/+1 | |
| | | ||||||
| * | [ANDROID][BOX32] Fix __libc_init, Fix Some Warnings (#1887) | Pablo Labs | 2024-09-29 | 1 | -6/+11 | |
| | | | | | | | | * [ANDROID][BOX32] Fix __libc_init, Fix Some Warnings * Fix More Warnings * Revert fillALProcWrapper() change | |||||
| * | Improved legendary stability | ptitSeb | 2024-09-10 | 1 | -2/+2 | |
| | | ||||||
| * | More work on Custom Mem speedup | ptitSeb | 2024-09-04 | 1 | -35/+29 | |
| | | ||||||
| * | Added an rbtree is Custom Mem Manager to speedup customFree and customRealloc | ptitSeb | 2024-09-04 | 1 | -11/+42 | |
| | | ||||||
| * | Some refactor (and small bugfixes) around Custom Mem Manager | ptitSeb | 2024-09-04 | 1 | -138/+379 | |
| | | ||||||
| * | Added preliminary Box32 support (#1760) | ptitSeb | 2024-08-26 | 1 | -4/+51 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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> | |||||
| * | [BOX32] Added 32bits elf alloc and load | ptitSeb | 2024-08-17 | 1 | -5/+21 | |
| | | ||||||
| * | Leave low memory for wine if it's loaded | ptitSeb | 2024-07-21 | 1 | -1/+2 | |
| | | ||||||
| * | Change (again) how Wine prereserved memory is allocated and freed | ptitSeb | 2024-07-16 | 1 | -2/+5 | |
| | | ||||||
| * | Fixed some issue on tracking when protecting memory with PROT=0 | ptitSeb | 2024-07-13 | 1 | -1/+4 | |
| | | ||||||
| * | Fixed a nasty bug on memory permission tracking | ptitSeb | 2024-07-11 | 1 | -0/+1 | |
| | | ||||||
| * | fix some spelling (#1668) | josch | 2024-07-10 | 1 | -1/+1 | |
| | | ||||||
| * | Added BOX64_RESERVE_HIGH in rcfile handling | ptitSeb | 2024-06-18 | 1 | -8/+18 | |
| | | ||||||
| * | Try to fix mmap64 already defined error in custommem.c (#1552) | Romain TISSERAND | 2024-06-03 | 1 | -26/+1 | |
| | | ||||||
| * | [DYNAREC] Re-introduce a simple HotPage handling, to speedup heavily ↵ | ptitSeb | 2024-05-03 | 1 | -0/+21 | |
| | | | | | obfuscated program loading | |||||
| * | [DYNAREC] Allocate Dynarec memory by 2Mb batch, and advise for hugepage if ↵ | ptitSeb | 2024-04-29 | 1 | -4/+20 | |
| | | | | | available | |||||
| * | Improve memory handling for wine, again | ptitSeb | 2024-03-27 | 1 | -2/+22 | |
| | | ||||||
| * | [DYNAREC] Small changeon the critical section handling of custommem | ptitSeb | 2024-03-08 | 1 | -2/+3 | |
| | | ||||||
| * | Small optim to speedup mmap64 | ptitSeb | 2024-02-17 | 1 | -5/+2 | |
| | | ||||||
| * | [DYNAREC] Jumptable now use custom Malloc instead of regular one | ptitSeb | 2024-02-07 | 1 | -18/+18 | |
| | | ||||||
| * | [ARM64_DYNAREC][32BITS] Small optim on jump table for 32bits access (1 less ↵ | ptitSeb | 2024-02-04 | 1 | -0/+9 | |
| | | | | | read, or 2 in SAVE_MEM configuration) | |||||
| * | [DYNAREC] Reworked a bit the Strange SEGSIGV handling | ptitSeb | 2024-02-03 | 1 | -0/+19 | |
| | | ||||||
| * | Block signals while traicking memory protection | ptitSeb | 2024-02-02 | 1 | -8/+13 | |
| | | ||||||
| * | Refactored a bit protection traking to avoid re-entrance | ptitSeb | 2024-02-02 | 1 | -58/+76 | |
| | | ||||||
| * | [DYNAREC] Handling of memfd_create backed mmap on dynarec (help #1234 but ↵ | ptitSeb | 2024-02-01 | 1 | -5/+5 | |
| | | | | | doesn't solve it completly) | |||||
| * | [DYNAREC] Small improvment in dynablock/protectDB handling | ptitSeb | 2024-01-29 | 1 | -1/+38 | |
| | | ||||||
| * | [MMAP32] 31bits address space is in fact 3GB address space (so 31.5 bits?) | ptitSeb | 2024-01-24 | 1 | -1/+1 | |
| | | ||||||
| * | Small improvment to MMAP32 managment | ptitSeb | 2024-01-23 | 1 | -1/+1 | |
| | | ||||||
| * | Added a new option BOX64_MMAP32 to use 32bits mapping on external MMAP (help ↵ | ptitSeb | 2024-01-23 | 1 | -5/+42 | |
| | | | | | Snapdragon device running Vulkan with Wine/Wow64, active by default on SD845/SD888/SD8G2 profiles) | |||||