mirror of
https://github.com/wiiu-env/MemoryMappingModule.git
synced 2024-11-22 09:49:20 +01:00
Add DCFlushRange to HeapBlockHeader on malloc/free
This commit is contained in:
parent
989b455eff
commit
9c9e1cc5ce
@ -388,8 +388,22 @@ void *MemoryMapping_alloc(uint32_t size, uint32_t align) {
|
|||||||
if (mem_mapping[i].physical_addresses == NULL) {
|
if (mem_mapping[i].physical_addresses == NULL) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
res = MEMAllocFromExpHeapEx((MEMHeapHandle) mem_mapping[i].effective_start_address, size, align);
|
MEMHeapHandle heapHandle = (MEMHeapHandle) mem_mapping[i].effective_start_address;
|
||||||
if (res != NULL) {
|
MEMExpHeap *heap = (MEMExpHeap *) heapHandle;
|
||||||
|
OSUninterruptibleSpinLock_Acquire(&heap->header.lock);
|
||||||
|
res = MEMAllocFromExpHeapEx(heapHandle, size, align);
|
||||||
|
auto cur = heap->usedList.head;
|
||||||
|
while (cur != nullptr) {
|
||||||
|
DCFlushRange(cur, sizeof(MEMExpHeapBlock));
|
||||||
|
cur = cur->next;
|
||||||
|
}
|
||||||
|
cur = heap->freeList.head;
|
||||||
|
while (cur != nullptr) {
|
||||||
|
DCFlushRange(cur, sizeof(MEMExpHeapBlock));
|
||||||
|
cur = cur->next;
|
||||||
|
}
|
||||||
|
OSUninterruptibleSpinLock_Release(&heap->header.lock);
|
||||||
|
if (res != nullptr) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -427,7 +441,21 @@ void MemoryMapping_free(void *ptr) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (ptr_val > mem_mapping[i].effective_start_address && ptr_val < mem_mapping[i].effective_end_address) {
|
if (ptr_val > mem_mapping[i].effective_start_address && ptr_val < mem_mapping[i].effective_end_address) {
|
||||||
|
MEMHeapHandle heapHandle = (MEMHeapHandle) mem_mapping[i].effective_start_address;
|
||||||
|
MEMExpHeap *heap = (MEMExpHeap *) heapHandle;
|
||||||
|
OSUninterruptibleSpinLock_Acquire(&heap->header.lock);
|
||||||
MEMFreeToExpHeap((MEMHeapHandle) mem_mapping[i].effective_start_address, ptr);
|
MEMFreeToExpHeap((MEMHeapHandle) mem_mapping[i].effective_start_address, ptr);
|
||||||
|
auto cur = heap->usedList.head;
|
||||||
|
while (cur != nullptr) {
|
||||||
|
DCFlushRange(cur, sizeof(MEMExpHeapBlock));
|
||||||
|
cur = cur->next;
|
||||||
|
}
|
||||||
|
cur = heap->freeList.head;
|
||||||
|
while (cur != nullptr) {
|
||||||
|
DCFlushRange(cur, sizeof(MEMExpHeapBlock));
|
||||||
|
cur = cur->next;
|
||||||
|
}
|
||||||
|
OSUninterruptibleSpinLock_Release(&heap->header.lock);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -472,6 +500,8 @@ void MemoryMapping_CreateHeaps() {
|
|||||||
}
|
}
|
||||||
void *address = (void *) (mem_mapping[i].effective_start_address);
|
void *address = (void *) (mem_mapping[i].effective_start_address);
|
||||||
uint32_t size = mem_mapping[i].effective_end_address - mem_mapping[i].effective_start_address;
|
uint32_t size = mem_mapping[i].effective_end_address - mem_mapping[i].effective_start_address;
|
||||||
|
|
||||||
|
memset(reinterpret_cast<void *>(mem_mapping[i].effective_start_address), 0, size);
|
||||||
MEMCreateExpHeapEx(address, size, MEM_HEAP_FLAG_USE_LOCK);
|
MEMCreateExpHeapEx(address, size, MEM_HEAP_FLAG_USE_LOCK);
|
||||||
DEBUG_FUNCTION_LINE("Created heap @%08X, size %d KiB", address, size / 1024);
|
DEBUG_FUNCTION_LINE("Created heap @%08X, size %d KiB", address, size / 1024);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user