1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package runtime
- import "../sanitizer"
- foreign import kernel32 "system:Kernel32.lib"
- @(private="file")
- @(default_calling_convention="system")
- foreign kernel32 {
- // NOTE(bill): The types are not using the standard names (e.g. DWORD and LPVOID) to just minimizing the dependency
- // default_allocator
- GetProcessHeap :: proc() -> rawptr ---
- HeapAlloc :: proc(hHeap: rawptr, dwFlags: u32, dwBytes: uint) -> rawptr ---
- HeapReAlloc :: proc(hHeap: rawptr, dwFlags: u32, lpMem: rawptr, dwBytes: uint) -> rawptr ---
- HeapFree :: proc(hHeap: rawptr, dwFlags: u32, lpMem: rawptr) -> b32 ---
- }
- _heap_alloc :: proc "contextless" (size: int, zero_memory := true) -> rawptr {
- HEAP_ZERO_MEMORY :: 0x00000008
- ptr := HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY if zero_memory else 0, uint(size))
- // NOTE(lucas): asan not guarunteed to unpoison win32 heap out of the box, do it ourselves
- sanitizer.address_unpoison(ptr, size)
- return ptr
- }
- _heap_resize :: proc "contextless" (ptr: rawptr, new_size: int) -> rawptr {
- if new_size == 0 {
- _heap_free(ptr)
- return nil
- }
- if ptr == nil {
- return _heap_alloc(new_size)
- }
- HEAP_ZERO_MEMORY :: 0x00000008
- new_ptr := HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, ptr, uint(new_size))
- // NOTE(lucas): asan not guarunteed to unpoison win32 heap out of the box, do it ourselves
- sanitizer.address_unpoison(new_ptr, new_size)
- return new_ptr
- }
- _heap_free :: proc "contextless" (ptr: rawptr) {
- if ptr == nil {
- return
- }
- HeapFree(GetProcessHeap(), 0, ptr)
- }
|