about summary refs log tree commit diff stats
path: root/src/custommem.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* [DYNAREC] Some light rework of the hotpage handlingptitSeb2024-12-231-4/+21
|
* Added more rbtrees in dynarec managment, to speedup ↵ptitSeb2024-12-231-57/+42
| | | | FindDynablockFromNativeAddress function
* Fix build for older system (for #2190)ptitSeb2024-12-231-0/+6
|
* Improved memory tracking and 32bits memory allocationptitSeb2024-12-211-6/+92
|
* Changed customme block resize to lower the number of reallocptitSeb2024-12-211-1/+1
|
* [BOX32] Improved pre-reserve highmem, and use that memory for dynablocksptitSeb2024-12-171-2/+10
|
* Added a new memExist helper function and use it instead of getMmapped were ↵ptitSeb2024-11-301-0/+6
| | | | it make sense
* [DYNAREC] Mark existing block as dirty when re-creating a memory blockptitSeb2024-11-171-2/+11
|
* [DYNAREC] Only test page protection when needed (and using a fester way) ↵ptitSeb2024-11-091-0/+10
| | | | (should address the performance regression of #2009)
* [RBTREE] Unify naming and prevent unintended symbol exposure (#2005)Jim Huang2024-11-061-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 bitptitSeb2024-11-041-3/+7
|
* [BOX32] Fixed some X11 function so wine launch (and added BOX64_X11SYNC to ↵ptitSeb2024-10-081-1/+10
| | | | help debug X11 programs)
* Improve debugging trace of rb_treeptitSeb2024-10-081-4/+4
|
* [BOX32][DYNAREC] Allocate Dynarec memory in higher prereserve regionsptitSeb2024-10-081-2/+31
|
* Removed wine prereserve hack on munmap now that prereserve is better handledptitSeb2024-10-081-5/+2
|
* Small adjustment in 32bits custom memory hinterptitSeb2024-10-081-1/+1
|
* Small change in custom Aligned Memory AllocatorptitSeb2024-10-071-2/+3
|
* Some cosmetic changes and more macro, to ease future testings on custom mallocptitSeb2024-10-071-1/+1
|
* Reworked mmap allocator and wine prereserve handling ([BOX32] fix handling ↵ptitSeb2024-10-071-1/+3
| | | | of wine prereserve)
* [BOX32] Added more 32bits wrapped function and reworked 32bits memory allocatorptitSeb2024-10-031-5/+19
|
* [BOX32] Keep low memory free by defaultptitSeb2024-09-301-1/+1
|
* [ANDROID][BOX32] Fix __libc_init, Fix Some Warnings (#1887)Pablo Labs2024-09-291-6/+11
| | | | | | | * [ANDROID][BOX32] Fix __libc_init, Fix Some Warnings * Fix More Warnings * Revert fillALProcWrapper() change
* Improved legendary stabilityptitSeb2024-09-101-2/+2
|
* More work on Custom Mem speedupptitSeb2024-09-041-35/+29
|
* Added an rbtree is Custom Mem Manager to speedup customFree and customReallocptitSeb2024-09-041-11/+42
|
* Some refactor (and small bugfixes) around Custom Mem ManagerptitSeb2024-09-041-138/+379
|
* Added preliminary Box32 support (#1760)ptitSeb2024-08-261-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 loadptitSeb2024-08-171-5/+21
|
* Leave low memory for wine if it's loadedptitSeb2024-07-211-1/+2
|
* Change (again) how Wine prereserved memory is allocated and freedptitSeb2024-07-161-2/+5
|
* Fixed some issue on tracking when protecting memory with PROT=0ptitSeb2024-07-131-1/+4
|
* Fixed a nasty bug on memory permission trackingptitSeb2024-07-111-0/+1
|
* fix some spelling (#1668)josch2024-07-101-1/+1
|
* Added BOX64_RESERVE_HIGH in rcfile handlingptitSeb2024-06-181-8/+18
|
* Try to fix mmap64 already defined error in custommem.c (#1552)Romain TISSERAND2024-06-031-26/+1
|
* [DYNAREC] Re-introduce a simple HotPage handling, to speedup heavily ↵ptitSeb2024-05-031-0/+21
| | | | obfuscated program loading
* [DYNAREC] Allocate Dynarec memory by 2Mb batch, and advise for hugepage if ↵ptitSeb2024-04-291-4/+20
| | | | available
* Improve memory handling for wine, againptitSeb2024-03-271-2/+22
|
* [DYNAREC] Small changeon the critical section handling of custommemptitSeb2024-03-081-2/+3
|
* Small optim to speedup mmap64ptitSeb2024-02-171-5/+2
|
* [DYNAREC] Jumptable now use custom Malloc instead of regular oneptitSeb2024-02-071-18/+18
|
* [ARM64_DYNAREC][32BITS] Small optim on jump table for 32bits access (1 less ↵ptitSeb2024-02-041-0/+9
| | | | read, or 2 in SAVE_MEM configuration)
* [DYNAREC] Reworked a bit the Strange SEGSIGV handlingptitSeb2024-02-031-0/+19
|
* Block signals while traicking memory protectionptitSeb2024-02-021-8/+13
|
* Refactored a bit protection traking to avoid re-entranceptitSeb2024-02-021-58/+76
|
* [DYNAREC] Handling of memfd_create backed mmap on dynarec (help #1234 but ↵ptitSeb2024-02-011-5/+5
| | | | doesn't solve it completly)
* [DYNAREC] Small improvment in dynablock/protectDB handlingptitSeb2024-01-291-1/+38
|
* [MMAP32] 31bits address space is in fact 3GB address space (so 31.5 bits?)ptitSeb2024-01-241-1/+1
|
* Small improvment to MMAP32 managmentptitSeb2024-01-231-1/+1
|
* Added a new option BOX64_MMAP32 to use 32bits mapping on external MMAP (help ↵ptitSeb2024-01-231-5/+42
| | | | Snapdragon device running Vulkan with Wine/Wow64, active by default on SD845/SD888/SD8G2 profiles)