Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2016-10-26 | Added passing of the opt data to records | Yifan Lu | 2 | -2/+6 | |
2016-10-24 | Vita: Added logging and changed cache flush name | Yifan Lu | 1 | -2/+10 | |
2016-10-24 | Set outro pointer to use mirrored address | Yifan Lu | 1 | -1/+2 | |
2016-10-23 | Forgot NULL pointer check | Yifan Lu | 1 | -4/+6 | |
2016-10-23 | Moved cache flushing to an export | Yifan Lu | 1 | -7/+3 | |
2016-10-23 | Fixed warning about unused function | Yifan Lu | 2 | -2/+2 | |
Fixed warning about incompatible types | |||||
2016-10-18 | Added execmem foreign write for Vita | Yifan Lu | 1 | -1/+16 | |
2016-10-18 | Added exemem for Vita | Yifan Lu | 3 | -6/+36 | |
Removed unneeded field for hooks | |||||
2016-10-09 | Moved slab allocator out of substitute | Yifan Lu | 3 | -428/+6 | |
2016-10-09 | Getting the mirror address from Vita exec slab | Yifan Lu | 2 | -0/+14 | |
2016-10-09 | Added basic hook removal support | Yifan Lu | 2 | -2/+58 | |
2016-10-09 | Slab allocation mirroring for Vita | Yifan Lu | 6 | -27/+32 | |
2016-10-08 | Added slab allocator for trampoline in Vita platform | Yifan Lu | 6 | -20/+491 | |
Added support for smaller (non-page) allocations for trampoline | |||||
2016-10-08 | Added support for platform specific aux data to execmem | Yifan Lu | 5 | -19/+28 | |
2016-10-05 | Support using a different VMA for the hook dest | Yifan Lu | 2 | -1/+4 | |
2016-10-05 | Changed malloc in substitute_hook_functions to alloca | Yifan Lu | 1 | -2/+2 | |
2016-10-05 | execmem_alloc_unsealed now outputs a separate pointer for exec and writing ↵ | Yifan Lu | 4 | -21/+33 | |
to allow for mirrored writes | |||||
2016-10-05 | Fixed missing trampoline_size_left decrement for making initial trampoline jump | Yifan Lu | 2 | -0/+25 | |
Added comment about min exec page size requirement | |||||
2016-10-04 | Added option to removed pthread dependency | Yifan Lu | 3 | -2/+12 | |
Added option to remove dynamic linker stuff Fixed a reference in strerror.c that depends on __APPLE__ being defined | |||||
2016-07-12 | replace broken gen-manual-mach.sh with a Python version | comex | 1 | -2/+0 | |
it was dropping the #pragma pack(4) declarations, rendering it broken for like most of the last year | |||||
2016-04-19 | comment | comex | 1 | -1/+2 | |
2016-04-19 | comment | comex | 1 | -1/+1 | |
2016-01-27 | Fix incorrect handling if there is no local symbol info in the cache. | comex | 1 | -1/+4 | |
2015-08-17 | stuff | comex | 5 | -3/+87 | |
2015-08-07 | formatting | comex | 2 | -93/+94 | |
2015-08-07 | add VEC_STORAGE_INIT_STATIC to match the HTAB one | comex | 1 | -0/+5 | |
2015-08-07 | fix vec.h bug | comex | 2 | -3/+3 | |
2015-07-18 | future proofing | comex | 1 | -1/+2 | |
2015-07-17 | formatting | comex | 1 | -1/+1 | |
2015-07-16 | baton fix | comex | 1 | -2/+9 | |
2015-07-16 | optimization | comex | 1 | -2/+5 | |
2015-07-16 | fix idiotic mistake from the <redacted> symbols commit | comex | 1 | -1/+1 | |
2015-07-16 | Revert <stdatomic.h> dependency. | comex | 1 | -10/+8 | |
it was added in the otherwise cosmetic dfd16cc1f759a103707ebd27743abc621486e131 because I didn't change the generated code at all - just switched to the standard aliases of the functions I was already using. But I forgot that <stdatomic.h> isn't present in relatively recent Xcode, so I'm switching back for now. | |||||
2015-07-16 | Add options field to struct substitute_{function,import}_hook. | comex | 1 | -2/+12 | |
I will probably need to add an option to deal with GCC 5.2's new optimization - to not save caller-saved registers if the called function is known not to use them, which would break with hooked functions. Don't want to emit the required stub by default because it will likely be slow. I need to verify that Clang doesn't currently have such an optimization... (ABI break - need to avoid this once it gets widely distributed Soon, obviously) | |||||
2015-07-16 | style police | comex | 12 | -45/+94 | |
2015-07-16 | work around (incorrect, since it's not code) alignment warning | comex | 1 | -1/+1 | |
2015-07-16 | fix accidentally exported symbols | comex | 2 | -2/+2 | |
2015-07-16 | typo | comex | 1 | -1/+1 | |
2015-07-16 | ordering | comex | 1 | -8/+8 | |
2015-07-16 | Import some code to handle <redacted> syms. | comex | 2 | -11/+199 | |
2015-07-13 | hook up the list of dylibs | comex | 2 | -0/+9 | |
2015-07-12 | don't be n^2 for removal, lol. i should probably switch to rust's robin ↵ | comex | 1 | -21/+12 | |
hood hashing - it isn't that much code and supposedly performs much better when the table gets full. *however*, it requires checking the hash of every entry in the chain during insert, which basically means storing it, which means more memory usage ... but by allowing fuller tables it could decrease memory usage. but if you have a big table anyway to avoid copying, you don't want *extra*... and storing the hash twice in the simple case is so dumb feeling. dunno. | |||||
2015-07-12 | fix my hash table algorithm - argh | comex | 1 | -14/+35 | |
2015-07-12 | fixes | comex | 1 | -0/+4 | |
2015-07-12 | redo crash reporting - untested (but it compiles) | comex | 2 | -21/+41 | |
2015-07-12 | how did that style violation get in there? must have been tired | comex | 1 | -4/+8 | |
2015-07-11 | working on safety | comex | 1 | -5/+18 | |
2015-07-11 | fix anti-noise | comex | 1 | -1/+4 | |
2015-07-10 | stuff! | comex | 3 | -5/+6 | |
2015-07-07 | redo all the things with xpc - not tested yet | comex | 1 | -0/+63 | |