2015-04-06 18:04:13 -05:00
|
|
|
// 4 december 2014
|
2015-04-07 22:40:18 -05:00
|
|
|
#import <stdio.h>
|
2015-04-06 23:26:27 -05:00
|
|
|
#import "uipriv_darwin.h"
|
2015-04-06 18:04:13 -05:00
|
|
|
|
2015-04-06 19:01:14 -05:00
|
|
|
// TODO is there a better alternative to NSCAssert()? preferably a built-in allocator that panics on out of memory for us?
|
|
|
|
|
2015-04-07 22:40:18 -05:00
|
|
|
void *uiAlloc(size_t size, const char *type)
|
2015-04-06 18:04:13 -05:00
|
|
|
{
|
|
|
|
void *out;
|
|
|
|
|
|
|
|
out = malloc(size);
|
2015-04-06 19:01:14 -05:00
|
|
|
NSCAssert(out != NULL, @"out of memory in uiAlloc()");
|
2015-04-06 18:04:13 -05:00
|
|
|
memset(out, 0, size);
|
2015-04-07 22:40:18 -05:00
|
|
|
#ifdef uiLogAllocations
|
|
|
|
fprintf(stderr, "%p alloc %s\n", out, type);
|
|
|
|
#endif
|
2015-04-06 18:04:13 -05:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2015-04-07 22:40:18 -05:00
|
|
|
void *uiRealloc(void *p, size_t size, const char *type)
|
2015-04-06 18:04:13 -05:00
|
|
|
{
|
|
|
|
void *out;
|
|
|
|
|
|
|
|
if (p == NULL)
|
2015-04-07 22:40:18 -05:00
|
|
|
return uiAlloc(size, type);
|
2015-04-06 18:04:13 -05:00
|
|
|
out = realloc(p, size);
|
2015-04-06 19:01:14 -05:00
|
|
|
NSCAssert(out != NULL, @"out of memory in uiRealloc()");
|
2015-04-06 18:04:13 -05:00
|
|
|
// TODO zero the extra memory
|
2015-04-07 22:40:18 -05:00
|
|
|
#ifdef uiLogAllocations
|
|
|
|
fprintf(stderr, "%p realloc %p\n", p, out);
|
|
|
|
#endif
|
2015-04-06 18:04:13 -05:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
void uiFree(void *p)
|
|
|
|
{
|
|
|
|
if (p == NULL)
|
|
|
|
return;
|
|
|
|
free(p);
|
2015-04-07 22:40:18 -05:00
|
|
|
#ifdef uiLogAllocations
|
|
|
|
fprintf(stderr, "%p free\n", p);
|
|
|
|
#endif
|
2015-04-06 18:04:13 -05:00
|
|
|
}
|