// Config #include #include #include #include #include #include #include #include #define USE_DL_PREFIX 1 #define LACKS_SYS_TYPES_H 1 #define NO_MALLOC_STATS 1 #define LACKS_ERRNO_H 1 #define LACKS_TIME_H 1 #define LACKS_STDLIB_H 1 #define LACKS_SYS_MMAN_H 1 #define LACKS_FCNTL_H 1 #define LACKS_UNISTD_H 1 #define LACKS_SYS_PARAM_H 1 #define LACKS_STRINGS_H 1 #define LACKS_SCHED_H 1 #define HAVE_MMAP 0 #define ABORT \ do { \ uprintf("dlmalloc: Aborting...\n"); \ } while(0) #define MALLOC_FAILURE_ACTION #define HAVE_MORECORE 1 #define USE_LOCKS 2 #define malloc_getpagesize 0x1000 #define EINVAL E_INVALIDARGUMENT #define ENOMEM E_NOMEMORY #define MLOCK_T SpinLock int ACQUIRE_LOCK(SpinLock *sl) { spinlock_acquire(sl); return 0; } int RELEASE_LOCK(SpinLock *sl) { spinlock_release(sl); return 0; } int INITIAL_LOCK(SpinLock *sl) { spinlock_init(sl); return 0; } static MLOCK_T malloc_global_mutex = { 0 }; #define PAGE_SIZE 0x1000 static uint8_t *heap_start = NULL; static uint8_t *heap_end = NULL; static uint8_t *heap_commit = NULL; static size_t _roundpage(size_t sz) { return (sz + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1); } void *sbrk(ptrdiff_t inc) { if (!heap_end) { size_t allocsz = PAGE_SIZE; uint8_t *maddr = NULL; int32_t ret = mman_map(NULL, allocsz, MMAN_MAP_PF_RW, 0, &maddr); if (ret != E_OK || maddr == NULL) { return (void *)-1; } heap_start = maddr; heap_end = maddr; heap_commit = maddr + allocsz; } if (inc == 0) { return heap_end; } uint8_t *oldbrk = heap_end; uint8_t *newbrk = heap_end + inc; if (newbrk < heap_start) { return (void *)-1; } if (inc > 0) { if (newbrk > heap_commit) { size_t need = (size_t)(newbrk - heap_commit); size_t extra = _roundpage(need); uint8_t *maddr = NULL; int32_t ret = mman_map(NULL, extra, MMAN_MAP_PF_RW, 0, &maddr); if (ret != E_OK || maddr == NULL) { return (void *)-1; } heap_commit += extra; } } heap_end = newbrk; return (void *)oldbrk; }