about summary refs log tree commit diff stats
path: root/src/custommem.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Chnaged memory protection tracking to reduce usage of lock, especially for ↵ptitSeb2021-11-051-155/+161
| | | | [DYNAREC] reduced mutrex and chances of deadlock (help RimWorld)
* [DYNAREC] Cancel a dynablock if a segfault occurs while building itptitSeb2021-10-271-2/+2
|
* Optimized (and small fixes) to custom allocator ([DYNAREC] Speedup long ↵ptitSeb2021-10-241-68/+134
| | | | launch time)
* [DYNAREC] Fixed a potential deadlock (for #64, thx again)ptitSeb2021-07-161-1/+3
|
* Fixed some issue with memory protection trackingptitSeb2021-07-101-5/+6
|
* Fixed nextFree memory search function (fixing regression with RaceTheSun and ↵ptitSeb2021-07-021-1/+1
| | | | probably a few other)
* Improved low memory pre-allocation and added 47bits pre-allocation for Wine64ptitSeb2021-07-011-32/+137
|
* Various change to try improve stability on JIT'd program (like mono for ↵ptitSeb2021-06-211-29/+12
| | | | Terraria, with moderate success)
* [DYNAREC] Try to free dynablocks when no longer usedptitSeb2021-06-191-3/+26
|
* Optimized memory protection trackingptitSeb2021-06-171-14/+47
|
* Change the way locked mutex are detected (taken from box86)ptitSeb2021-06-141-2/+1
|
* Another small change to custommem MaxFreeblock handlingptitSeb2021-04-201-4/+2
|
* Fixed a small issue with Custom Mem handler and MexFreeBlock calculationptitSeb2021-04-191-1/+3
|
* Some improvement to custommem handlingptitSeb2021-04-161-4/+4
|
* Second passrajdakin2021-04-141-29/+30
|
* First passrajdakin2021-04-141-19/+25
|
* Improvement in internal mutex handling on signal, and [DYNAREC] multitasking ↵ptitSeb2021-04-111-17/+65
| | | | changes to the JmpTable
* Fixed memory protection that wasn't updated correctlyptitSeb2021-04-081-4/+4
|
* Unlock all mutex on child process when forkingptitSeb2021-04-061-0/+10
|
* More work on mmap and the MAP_32BIT flagptitSeb2021-04-041-5/+50
|
* Implemented a workaround for mmap64 with MAP_32BIT flagptitSeb2021-04-021-0/+35
|
* [DYNAREC] DynaMap is behind a strict mutex nowptitSeb2021-03-291-15/+24
|
* [DYNAREC] Improved Dynablock construction, stopping when overlaping block is ↵ptitSeb2021-03-281-0/+19
| | | | detected
* Renamed arm64_lock_helper to arm64_lockptitSeb2021-03-201-1/+1
|
* Fixed Protection handlingptitSeb2021-03-181-35/+32
|
* [DYNAREC] Added Basic blocks for dynarecptitSeb2021-03-141-387/+482
|
* Added custom memory handlingptitSeb2021-03-131-276/+274
|
* Added Protection handlingptitSeb2021-03-021-30/+66
|
* Read elf header of launched executableptitSeb2021-03-011-0/+748