forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkmalloc.cpp
69 lines (55 loc) · 1.51 KB
/
kmalloc.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* Copyright (c) 2018-2020, Andreas Kling <[email protected]>
* Copyright (c) 2021, Daniel Bertalan <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/kmalloc.h>
#if defined(AK_OS_SERENITY) && !defined(KERNEL)
# include <AK/Assertions.h>
// However deceptively simple these functions look, they must not be inlined.
// Memory allocated in one translation unit has to be deallocatable in another
// translation unit, so these functions must be the same everywhere.
// By making these functions global, this invariant is enforced.
void* operator new(size_t size)
{
void* ptr = malloc(size);
VERIFY(ptr);
return ptr;
}
void* operator new(size_t size, std::nothrow_t const&) noexcept
{
return malloc(size);
}
void operator delete(void* ptr) noexcept
{
return free(ptr);
}
void operator delete(void* ptr, size_t) noexcept
{
return free(ptr);
}
void* operator new[](size_t size)
{
void* ptr = malloc(size);
VERIFY(ptr);
return ptr;
}
void* operator new[](size_t size, std::nothrow_t const&) noexcept
{
return malloc(size);
}
void operator delete[](void* ptr) noexcept
{
return free(ptr);
}
void operator delete[](void* ptr, size_t) noexcept
{
return free(ptr);
}
// This is usually provided by libstdc++ in most cases, and the kernel has its own definition in
// Kernel/Heap/kmalloc.cpp. If neither of those apply, the following should suffice to not fail during linking.
namespace AK_REPLACED_STD_NAMESPACE {
nothrow_t const nothrow;
}
#endif