add further ioctl time64 fallback conversions
[musl] / src / malloc / lite_malloc.c
index 7643fc2..050d84f 100644 (file)
@@ -2,45 +2,58 @@
 #include <stdint.h>
 #include <limits.h>
 #include <errno.h>
-#include "libc.h"
-
-uintptr_t __brk(uintptr_t);
+#include "lock.h"
+#include "malloc_impl.h"
 
 #define ALIGN 16
 
-void *__simple_malloc(size_t n)
+static void *__simple_malloc(size_t n)
 {
-       static uintptr_t cur, brk;
-       uintptr_t base, new;
-       static volatile int lock[2];
-       size_t align=1;
+       static char *cur, *end;
+       static volatile int lock[1];
+       size_t align=1, pad;
+       void *p;
 
        if (!n) n++;
-       if (n > SIZE_MAX/2) goto toobig;
-
        while (align<n && align<ALIGN)
                align += align;
-       n = n + align - 1 & -align;
 
        LOCK(lock);
-       if (!cur) cur = brk = __brk(0)+16;
-       base = cur + align-1 & -align;
-       if (n > SIZE_MAX - PAGE_SIZE - base) goto fail;
-       if (base+n > brk) {
-               new = base+n + PAGE_SIZE-1 & -PAGE_SIZE;
-               if (__brk(new) != new) goto fail;
-               brk = new;
-       }
-       cur = base+n;
-       UNLOCK(lock);
 
-       return (void *)base;
+       pad = -(uintptr_t)cur & align-1;
+
+       if (n <= SIZE_MAX/2 + ALIGN) n += pad;
+
+       if (n > end-cur) {
+               size_t m = n;
+               char *new = __expand_heap(&m);
+               if (!new) {
+                       UNLOCK(lock);
+                       return 0;
+               }
+               if (new != end) {
+                       cur = new;
+                       n -= pad;
+                       pad = 0;
+               }
+               end = new + m;
+       }
 
-fail:
+       p = cur + pad;
+       cur += n;
        UNLOCK(lock);
-toobig:
-       errno = ENOMEM;
-       return 0;
+       return p;
 }
 
 weak_alias(__simple_malloc, malloc);
+
+static void *__simple_calloc(size_t m, size_t n)
+{
+       if (n && m > (size_t)-1/n) {
+               errno = ENOMEM;
+               return 0;
+       }
+       return __simple_malloc(n * m);
+}
+
+weak_alias(__simple_calloc, calloc);