summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKEKW555 <152369890+KEKW555@users.noreply.github.com>2023-12-10 06:25:04 +0530
committerGitHub <noreply@github.com>2023-12-09 16:55:04 -0800
commitb4d0946c077c3d7a57d720a7ee041a9a5faf817e (patch)
tree33678f66d89430003664182146372a86f4ce02bc /src
parentdbdb121e88448d2d1a63c79c85e1c779785cffe5 (diff)
Match zmalloc (#644)
* Nuke zMalloc.inc * Match zMalloc * Fix comments
Diffstat (limited to 'src')
-rw-r--r--src/common.c107
1 files changed, 106 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c
index 60461523..06cb3def 100644
--- a/src/common.c
+++ b/src/common.c
@@ -25,6 +25,7 @@ typedef struct {
extern u8 gUnk_03003DE0;
extern u8 gzHeap[0x1000];
+extern u8 gUnk_02035542[];
extern u32 gUnk_0201AEE0[0x800];
extern s16 gUnk_02018EE0[];
@@ -348,7 +349,111 @@ void sub_0801D898(void* dest, void* src, u32 word, u32 size) {
} while (--size);
}
-ASM_FUNC("asm/non_matching/common/zMalloc.inc", void* zMalloc(u32 size));
+void* zMalloc(u32 size) {
+
+ FORCE_REGISTER(u32 slotFound, r5);
+ u16* heapStartOffset;
+ u8* allocatedEntryStartOffset;
+ u8* allocatedEntryEndOffset;
+ u8* candidateSlotEndOffset;
+ u8* candidateSlotStartOffset;
+ u16 index1, index2;
+ u16 numEntries;
+ // align to 4
+ size = (size + 3) & ~3;
+
+ heapStartOffset = (u16*)(gzHeap);
+ numEntries = heapStartOffset[0];
+ slotFound = TRUE;
+
+ // Check for a candidate slot at the tail-end of the heap buffer
+ candidateSlotEndOffset = (u8*)heapStartOffset + sizeof(gzHeap);
+ candidateSlotStartOffset = candidateSlotEndOffset - size;
+ for (index2 = 0; index2 < numEntries; index2++) {
+
+ // Check if there is overlap with already allocated slots
+ allocatedEntryStartOffset = gzHeap + heapStartOffset[(index2 * 2) + 1];
+ allocatedEntryEndOffset = gzHeap + heapStartOffset[(index2 * 2) + 2];
+
+ if ((allocatedEntryStartOffset <= candidateSlotStartOffset &&
+ candidateSlotStartOffset <= allocatedEntryEndOffset)) {
+ goto other_search;
+ }
+
+ if ((allocatedEntryStartOffset <= candidateSlotEndOffset &&
+ candidateSlotEndOffset <= allocatedEntryEndOffset)) {
+ slotFound = FALSE;
+ break;
+ }
+
+ if ((allocatedEntryStartOffset <= candidateSlotStartOffset &&
+ candidateSlotEndOffset <= allocatedEntryEndOffset) ||
+ (candidateSlotStartOffset <= allocatedEntryStartOffset &&
+ allocatedEntryEndOffset <= candidateSlotEndOffset)) {
+ goto other_search;
+ }
+ }
+
+ if (!slotFound) {
+ other_search:
+
+ index1 = 0;
+ // Start searching for candidate slot from the left side of the heap buffer.
+ do {
+
+ candidateSlotEndOffset = gzHeap + heapStartOffset[(index1 * 2) + 1];
+ candidateSlotStartOffset = candidateSlotEndOffset - size;
+ slotFound = FALSE;
+
+ // Ensure that the candidate slot doesn't collide with heap offsets section
+ if (candidateSlotStartOffset >= (u8*)(2 + (u32)heapStartOffset + (numEntries << 2) + 4)) {
+ slotFound = TRUE;
+
+ // Check if there is overlap with already allocated slots
+ for (index2 = 0; index2 < numEntries; index2++) {
+
+ allocatedEntryStartOffset = gzHeap + heapStartOffset[(index2 * 2) + 1];
+ allocatedEntryEndOffset = gzHeap + heapStartOffset[(index2 * 2) + 2];
+
+ if ((allocatedEntryStartOffset <= candidateSlotStartOffset &&
+ candidateSlotStartOffset < allocatedEntryEndOffset)) {
+ goto iter_end;
+ }
+
+ if ((allocatedEntryStartOffset < candidateSlotEndOffset &&
+ candidateSlotEndOffset <= allocatedEntryEndOffset)) {
+ slotFound = FALSE;
+ break;
+ }
+
+ if ((allocatedEntryStartOffset <= candidateSlotStartOffset &&
+ candidateSlotEndOffset <= allocatedEntryEndOffset) ||
+ (candidateSlotStartOffset <= allocatedEntryStartOffset &&
+ allocatedEntryEndOffset <= candidateSlotEndOffset)) {
+ goto iter_end;
+ }
+ }
+ if (slotFound) {
+ break;
+ } else {
+ continue;
+ }
+
+ iter_end:
+ slotFound = FALSE;
+ }
+ } while ((index1 = (u16)(index1 + 1)) < numEntries);
+ }
+ if (!slotFound)
+ return 0;
+
+ // Register successful allocation
+ *(u16*)(gUnk_02035542 + (numEntries << 2)) = candidateSlotStartOffset - (gUnk_02035542 - 2);
+ *(u16*)(gUnk_02035542 + (numEntries << 2) + 2) = candidateSlotStartOffset - (gUnk_02035542 - 2) + size;
+ *(u16*)(gUnk_02035542 - 2) = numEntries + 1;
+ MemClear(candidateSlotStartOffset, size);
+ return candidateSlotStartOffset;
+}
void zFree(void* ptr) {
u32 uVar1;