2018-10-16 09:01:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-01-12 22:33:13 +00:00
|
|
|
//#define KMALLOC_DEBUG_LARGE_ALLOCATIONS
|
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
void kmalloc_init();
|
2019-01-12 22:23:35 +00:00
|
|
|
void* kmalloc_impl(dword size) __attribute__ ((malloc));
|
2018-10-31 22:19:15 +00:00
|
|
|
void* kmalloc_eternal(size_t) __attribute__ ((malloc));
|
2018-11-01 08:01:51 +00:00
|
|
|
void* kmalloc_page_aligned(size_t) __attribute__ ((malloc));
|
2018-12-26 20:31:46 +00:00
|
|
|
void* kmalloc_aligned(size_t, size_t alignment) __attribute__ ((malloc));
|
2018-10-16 09:01:38 +00:00
|
|
|
void kfree(void*);
|
2018-12-26 20:31:46 +00:00
|
|
|
void kfree_aligned(void*);
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2019-01-27 09:17:56 +00:00
|
|
|
bool is_kmalloc_address(const void*);
|
2018-10-26 22:14:24 +00:00
|
|
|
|
2018-12-02 22:34:50 +00:00
|
|
|
extern volatile size_t sum_alloc;
|
|
|
|
extern volatile size_t sum_free;
|
|
|
|
extern volatile size_t kmalloc_sum_eternal;
|
|
|
|
extern volatile size_t kmalloc_sum_page_aligned;
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
inline void* operator new(size_t, void* p) { return p; }
|
|
|
|
inline void* operator new[](size_t, void* p) { return p; }
|
2019-01-12 22:23:35 +00:00
|
|
|
|
|
|
|
ALWAYS_INLINE void* kmalloc(size_t size)
|
|
|
|
{
|
2019-01-12 22:33:13 +00:00
|
|
|
#ifdef KMALLOC_DEBUG_LARGE_ALLOCATIONS
|
|
|
|
// Any kernel allocation >= 1M is 99.9% a bug.
|
|
|
|
if (size >= 1048576)
|
2019-01-12 22:23:35 +00:00
|
|
|
asm volatile("cli;hlt");
|
2019-01-12 22:33:13 +00:00
|
|
|
#endif
|
2019-01-12 22:23:35 +00:00
|
|
|
return kmalloc_impl(size);
|
|
|
|
}
|