mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
e3eb68dd58
Since the allocated memory is going to be zeroed immediately anyway, let's avoid redundantly scrubbing it with MALLOC_SCRUB_BYTE just before that. The latest versions of gcc and Clang can automatically do this malloc + memset -> calloc optimization, but I've seen a couple of places where it failed to be done. This commit also adds a naive kcalloc function to the kernel that doesn't (yet) eliminate the redundancy like the userland does.
89 lines
3.8 KiB
C++
89 lines
3.8 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <Kernel/Debug.h>
|
|
#include <LibC/limits.h>
|
|
|
|
#define KMALLOC_SCRUB_BYTE 0xbb
|
|
#define KFREE_SCRUB_BYTE 0xaa
|
|
|
|
#define MAKE_ALIGNED_ALLOCATED(type, alignment) \
|
|
public: \
|
|
[[nodiscard]] void* operator new(size_t) \
|
|
{ \
|
|
void* ptr = kmalloc_aligned(sizeof(type), alignment); \
|
|
VERIFY(ptr); \
|
|
return ptr; \
|
|
} \
|
|
[[nodiscard]] void* operator new(size_t, const std::nothrow_t&) noexcept { return kmalloc_aligned(sizeof(type), alignment); } \
|
|
void operator delete(void* ptr) noexcept { kfree_aligned(ptr); } \
|
|
\
|
|
private:
|
|
|
|
// The C++ standard specifies that the nothrow allocation tag should live in the std namespace.
|
|
// Otherwise, `new (std::nothrow)` calls wouldn't get resolved.
|
|
namespace std { // NOLINT(cert-dcl58-cpp) These declarations must be in ::std and we are not using <new>
|
|
struct nothrow_t {
|
|
explicit nothrow_t() = default;
|
|
};
|
|
|
|
extern const nothrow_t nothrow;
|
|
|
|
enum class align_val_t : size_t {};
|
|
};
|
|
|
|
void kmalloc_init();
|
|
|
|
void kfree_sized(void*, size_t);
|
|
|
|
struct kmalloc_stats {
|
|
size_t bytes_allocated;
|
|
size_t bytes_free;
|
|
size_t kmalloc_call_count;
|
|
size_t kfree_call_count;
|
|
};
|
|
void get_kmalloc_stats(kmalloc_stats&);
|
|
|
|
extern bool g_dump_kmalloc_stacks;
|
|
|
|
inline void* operator new(size_t, void* p) { return p; }
|
|
inline void* operator new[](size_t, void* p) { return p; }
|
|
|
|
[[nodiscard]] void* operator new(size_t size);
|
|
[[nodiscard]] void* operator new(size_t size, const std::nothrow_t&) noexcept;
|
|
[[nodiscard]] void* operator new(size_t size, std::align_val_t);
|
|
[[nodiscard]] void* operator new(size_t size, std::align_val_t, const std::nothrow_t&) noexcept;
|
|
|
|
void operator delete(void* ptr) noexcept DISALLOW("All deletes in the kernel should have a known size.");
|
|
void operator delete(void* ptr, size_t) noexcept;
|
|
void operator delete(void* ptr, std::align_val_t) noexcept DISALLOW("All deletes in the kernel should have a known size.");
|
|
void operator delete(void* ptr, size_t, std::align_val_t) noexcept;
|
|
|
|
[[nodiscard]] void* operator new[](size_t size);
|
|
[[nodiscard]] void* operator new[](size_t size, const std::nothrow_t&) noexcept;
|
|
|
|
void operator delete[](void* ptrs) noexcept DISALLOW("All deletes in the kernel should have a known size.");
|
|
void operator delete[](void* ptr, size_t) noexcept;
|
|
|
|
[[gnu::malloc, gnu::alloc_size(1)]] void* kmalloc(size_t);
|
|
[[gnu::malloc, gnu::alloc_size(1, 2)]] void* kcalloc(size_t, size_t);
|
|
|
|
[[gnu::malloc, gnu::alloc_size(1), gnu::alloc_align(2)]] void* kmalloc_aligned(size_t size, size_t alignment);
|
|
|
|
inline void kfree_aligned(void* ptr)
|
|
{
|
|
if (ptr == nullptr)
|
|
return;
|
|
kfree_sized((u8*)ptr - ((ptrdiff_t const*)ptr)[-1], ((size_t const*)ptr)[-2]);
|
|
}
|
|
|
|
size_t kmalloc_good_size(size_t);
|
|
|
|
void kmalloc_enable_expand();
|