aboutsummaryrefslogtreecommitdiff
path: root/src/common.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-01-18 13:11:51 +0000
committergingerBill <bill@gingerbill.org>2018-01-18 13:11:51 +0000
commit386f5f596da284e90565b02d7766ebf79fddb8f7 (patch)
tree96933323160f1afa272ff626caa07409d2425a12 /src/common.cpp
parentadd53228b2ee93f7374a815ce1c4e5a86b7b9d28 (diff)
Change to HeapAlloc et al on Windows
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp35
1 files changed, 34 insertions, 1 deletions
diff --git a/src/common.cpp b/src/common.cpp
index 915ad65cd..b922980db 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -12,6 +12,21 @@
#include <math.h>
+gb_inline i64 align_formula(i64 size, i64 align) {
+ if (align > 0) {
+ i64 result = size + align-1;
+ return result - result%align;
+ }
+ return size;
+}
+gb_inline isize align_formula_isize(isize size, isize align) {
+ if (align > 0) {
+ isize result = size + align-1;
+ return result - result%align;
+ }
+ return size;
+}
+
GB_ALLOCATOR_PROC(heap_allocator_proc);
gbAllocator heap_allocator(void) {
@@ -26,13 +41,18 @@ GB_ALLOCATOR_PROC(heap_allocator_proc) {
void *ptr = NULL;
gb_unused(allocator_data);
gb_unused(old_size);
+
+
+
// TODO(bill): Throughly test!
switch (type) {
#if defined(GB_COMPILER_MSVC)
+ #if 0
case gbAllocation_Alloc:
ptr = _aligned_malloc(size, alignment);
- if (flags & gbAllocatorFlag_ClearToZero)
+ if (flags & gbAllocatorFlag_ClearToZero) {
gb_zero_size(ptr, size);
+ }
break;
case gbAllocation_Free:
_aligned_free(old_memory);
@@ -40,6 +60,19 @@ GB_ALLOCATOR_PROC(heap_allocator_proc) {
case gbAllocation_Resize:
ptr = _aligned_realloc(old_memory, size, alignment);
break;
+ #else
+ case gbAllocation_Alloc:
+ // TODO(bill): Make sure this is aligned correctly
+ // ptr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, align_formula_isize(size, alignment));
+ ptr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, align_formula_isize(size, alignment));
+ break;
+ case gbAllocation_Free:
+ HeapFree(GetProcessHeap(), 0, old_memory);
+ break;
+ case gbAllocation_Resize:
+ ptr = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, old_memory, align_formula_isize(size, alignment));
+ break;
+ #endif
#elif defined(GB_SYSTEM_LINUX)
// TODO(bill): *nix version that's decent