summaryrefslogtreecommitdiffstats
path: root/realloc.c
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2024-04-19 16:11:24 -0400
committerJon Santmyer <jon@jonsantmyer.com>2024-04-19 16:11:24 -0400
commit5b1b3bec3f25ea5fc1f48c269f300c4211a1bac7 (patch)
treed47b7693dd91a8dd08a5c7def418fd132a7032ac /realloc.c
downloadheap-5b1b3bec3f25ea5fc1f48c269f300c4211a1bac7.tar.gz
heap-5b1b3bec3f25ea5fc1f48c269f300c4211a1bac7.tar.bz2
heap-5b1b3bec3f25ea5fc1f48c269f300c4211a1bac7.zip
initial commit; mostly documented.
Diffstat (limited to 'realloc.c')
-rw-r--r--realloc.c66
1 files changed, 66 insertions, 0 deletions
diff --git a/realloc.c b/realloc.c
new file mode 100644
index 0000000..1b78e9e
--- /dev/null
+++ b/realloc.c
@@ -0,0 +1,66 @@
+#include "malloc.h"
+#include <assert.h>
+#include <string.h>
+
+void*
+__realloc_impl(heap_cache_t *cache, void *ptr, size_t w)
+{
+ if(w == 0) {
+ DBGPRINT("realloc: called with w == 0, freeing %p\n", ptr);
+ __free_impl(cache, ptr);
+ return NULL;
+ }
+ if(ptr == NULL) {
+ DBGPRINT("realloc: called with NULL ptr, alloc %i\n", w);
+ return __malloc_impl(cache, w);
+ }
+
+ w = REALW(w);
+ bucket_obj_t *obj = OBJ_FROM_PTR(ptr);
+
+ assert(OBJ_VALID(obj));
+ size_t objw = OBJ_WIDTH(obj);
+ if(objw > w) return ptr;
+
+ size_t wdiff = w - objw;
+ DBGPRINT("realloc: ptr %p needs %i new bytes\n", ptr, wdiff);
+
+ bucket_obj_t *after = OBJ_AFTER(obj);
+ size_t afterw = 0;
+ bucket_t *bucket = __bucket_from_obj(cache, obj);
+ void *newptr = NULL;
+
+ if(bucket == NULL)
+ goto resize_fail;
+
+ if((uintptr_t)after > bucket->limit) goto resize_fail;
+ assert(OBJ_VALID(after));
+ afterw = OBJ_WIDTH(after);
+
+ if(OBJ_TAKEN(after))
+ goto resize_fail;
+
+ DBGPRINT("realloc: obj %p after obj %p is free (w %i)\n", after, obj, afterw);
+ if(objw + sizeof(bucket_obj_t) + afterw < w)
+ goto resize_fail;
+
+ obj->size_taken = w | 1;
+ if(bucket->firstfree == after)
+ bucket->firstfree = OBJ_AFTER(obj);
+
+ after = OBJ_AFTER(obj);
+ *after = (bucket_obj_t){
+ .checksum = OBJ_CHECKSUM,
+ .size_taken = afterw - wdiff
+ };
+ DBGPRINT("realloc: moved obj %p (%i) to resize obj %p (%i)\n",
+ after, after->size_taken, obj, obj->size_taken);
+ return ptr;
+
+resize_fail:
+ DBGPRINT("realloc: could not resize existing object, calling malloc\n");
+ newptr = __malloc_impl(cache, w);
+ memcpy(newptr, ptr, obj->size_taken & ~1);
+ __free_impl(cache, ptr);
+ return newptr;
+}