about summary refs log tree commit diff stats
path: root/src/libtools/signals.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Show some value around RSP when a Signal is dumpedptitSeb2022-07-031-0/+4
|
* [DYNAREC] Fixed an issue with unwinding x86 address from signalptitSeb2022-07-021-1/+2
|
* [DYNAREC] Added CPU Dump on Signal to help debugging (only if signal inside ↵ptitSeb2022-06-251-0/+10
| | | | a DynaBlock for now)
* Rollback the signal/return address change limitptitSeb2022-06-211-8/+5
|
* Various small debugging improvmentsptitSeb2022-06-191-5/+8
|
* Fixed a potential issue with stack overwritten on sigaction callptitSeb2022-04-241-1/+1
|
* Only retry a memory access is the protection has both PROT_READ and PROT_WRITEptitSeb2022-04-061-1/+1
|
* Rolback this change in signal, and better change the interpretor handling of ↵ptitSeb2022-03-071-2/+5
| | | | IP instead
* Fix some special case on mmap64 wrappingptitSeb2022-03-071-5/+2
|
* Added an option to always show SIGSEGV messagesptitSeb2022-03-061-1/+1
|
* Include pthread.h when used (should help #249)ptitSeb2022-03-051-0/+1
|
* [DYNAREC] And even more multi-arch workptitSeb2022-02-271-37/+37
|
* [DYNAREC] Improve signals to better handle multiple archsptitSeb2022-02-271-4/+88
|
* ensure uc_link is properly initialized in getcontext(), fixes ppc64leCameron Kaiser2022-02-031-0/+2
|
* Minor changes to allow box64 to build and run on ppc64le.Joseph Allen2021-11-181-1/+1
|
* [DYNAREC] Improved JIT handling, and added a HotPage detection to ↵ptitSeb2021-11-181-4/+38
| | | | temporarily disable Dynarec when write occurs on the same page of some Dynablocks (help speedup some C#/Unity3D programs)
* [DYNAREC] Changed Dynarec a bit to try stabilise program using many threads ↵ptitSeb2021-11-111-2/+6
| | | | and a JIT (help RimWorld Linux, but not enough to be 100% stable)
* Chnaged memory protection tracking to reduce usage of lock, especially for ↵ptitSeb2021-11-051-2/+2
| | | | [DYNAREC] reduced mutrex and chances of deadlock (help RimWorld)
* [DYNAREC] Cancel a dynablock if a segfault occurs while building itptitSeb2021-10-271-0/+2
|
* Fixed some nasty copypasta on EmuCallptitSeb2021-09-191-2/+2
|
* Small fix for Default and Ignore signal handlingptitSeb2021-08-101-2/+6
|
* Added handling of longjmp inside signals handler (from box86)ptitSeb2021-08-091-54/+62
|
* Less log for generated signalsptitSeb2021-07-171-1/+1
|
* Handling HLT / CLI / STI has privileged instruction (and so trigger a GPF)ptitSeb2021-07-151-5/+9
|
* [DYNAREC] Don't limit the retry pattern on access error signal, as it often ↵ptitSeb2021-07-151-1/+1
| | | | happens when creating new bridges (might help #57)
* Fixed regression introduced with 27d79eddec (for #54)ptitSeb2021-07-141-1/+1
|
* Fixed and improved handling of segments and Call Far and signal (helps Wine64)ptitSeb2021-07-131-7/+7
|
* Improved log when encountering SIGILL (to help diagnose #44)ptitSeb2021-07-091-1/+1
|
* [DYNAREC] Improved the fast native call pathptitSeb2021-07-021-0/+17
|
* More logs on 'strange' SIGSEGV...ptitSeb2021-06-211-3/+4
|
* Fixed a warningptitSeb2021-06-161-2/+2
|
* Improved Log for emit_signalptitSeb2021-06-151-1/+10
|
* Some small improvments in signal handlingptitSeb2021-06-061-5/+8
|
* Better handling of on-purpose SIGSEGVptitSeb2021-06-051-4/+15
|
* [DYNAREC] Improved SMC handlingptitSeb2021-06-041-8/+10
|
* Added signal mask handling in setjmp/longjmp functionsptitSeb2021-05-181-3/+3
|
* Also handle internal mutex in my_sighandlerptitSeb2021-04-141-2/+5
|
* Second passrajdakin2021-04-141-1/+1
|
* First passrajdakin2021-04-141-0/+2
|
* Improvement in internal mutex handling on signal, and [DYNAREC] multitasking ↵ptitSeb2021-04-111-6/+20
| | | | changes to the JmpTable
* Changed missed unwanted "box86"rajdakin2021-04-091-2/+2
|
* [TRACE] Added a new trace optionrajdakin2021-04-071-1/+7
|
* More work on mmap and the MAP_32BIT flagptitSeb2021-04-041-1/+3
|
* Try to improve a bit signal handlingptitSeb2021-03-301-11/+34
|
* Removed x64emu_t structure dedicated to signal handling, using main thread ↵ptitSeb2021-03-291-58/+66
| | | | one now
* Better Stack handling (backported from box86)ptitSeb2021-03-281-4/+12
|
* Added some more libc wrapped functionsptitSeb2021-03-261-1/+1
|
* [DYNAREC] Added 70..7F opcodes (and fixed ORR/AND bitmask coding/decoding, ↵ptitSeb2021-03-161-2/+2
| | | | that's some convoluted encoding here)
* [DYNAREC] Added Basic blocks for dynarecptitSeb2021-03-141-43/+66
|
* Fixed a few minor leaksptitSeb2021-03-131-1/+1
|