mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
226aaf3547
This commit makes numerous refinements to cosmopolitan memory handling. The default stack size has been reduced from 2mb to 128kb. A new macro is now provided so you can easily reconfigure the stack size to be any value you want. Work around the breaking change by adding to your main: STATIC_STACK_SIZE(0x00200000); // 2mb stack If you're not sure how much stack you need, then you can use: STATIC_YOINK("stack_usage_logging"); After which you can `sort -nr o/$MODE/stack.log`. Based on the unit test suite, nothing in the Cosmopolitan repository (except for Python) needs a stack size greater than 30kb. There are also new macros for detecting the size and address of the stack at runtime, e.g. GetStackAddr(). We also now support sigaltstack() so if you want to see nice looking crash reports whenever a stack overflow happens, you can put this in main(): ShowCrashReports(); Under `make MODE=dbg` and `make MODE=asan` the unit testing framework will now automatically print backtraces of memory allocations when things like memory leaks happen. Bugs are now fixed in ASAN global variable overrun detection. The memtrack and asan runtimes also handle edge cases now. The new tools helped to identify a few memory leaks, which are fixed by this change. This change should fix an issue reported in #288 with ARG_MAX limits. Fixing this doubled the performance of MKDEPS.COM and AR.COM yet again.
32 lines
1.3 KiB
C
32 lines
1.3 KiB
C
#include "libc/mem/mem.h"
|
|
#include "third_party/dlmalloc/dlmalloc.internal.h"
|
|
|
|
/**
|
|
* If possible, gives memory back to the system (via negative arguments
|
|
* to sbrk) if there is unused memory at the `high` end of the malloc
|
|
* pool or in unused MMAP segments. You can call this after freeing
|
|
* large blocks of memory to potentially reduce the system-level memory
|
|
* requirements of a program. However, it cannot guarantee to reduce
|
|
* memory. Under some allocation patterns, some large free blocks of
|
|
* memory will be locked between two used chunks, so they cannot be
|
|
* given back to the system.
|
|
*
|
|
* The `pad` argument to malloc_trim represents the amount of free
|
|
* trailing space to leave untrimmed. If this argument is zero, only the
|
|
* minimum amount of memory to maintain internal data structures will be
|
|
* left. Non-zero arguments can be supplied to maintain enough trailing
|
|
* space to service future expected allocations without having to
|
|
* re-obtain memory from the system.
|
|
*
|
|
* @return 1 if it actually released any memory, else 0
|
|
*/
|
|
int dlmalloc_trim(size_t pad) {
|
|
/* asan runtime depends on this function */
|
|
int result = 0;
|
|
ensure_initialization();
|
|
if (!PREACTION(g_dlmalloc)) {
|
|
result = dlmalloc_sys_trim(g_dlmalloc, pad);
|
|
POSTACTION(g_dlmalloc);
|
|
}
|
|
return result;
|
|
}
|