The general idea is to keep the 'old', C-style MEM_callocN signature, and slowly replace most of its usages with the new, C++-style type-safer template version. * `MEM_cnew<T>` allocation version is renamed to `MEM_callocN<T>`. * `MEM_cnew_array<T>` allocation version is renamed to `MEM_calloc_arrayN<T>`. * `MEM_cnew<T>` duplicate version is renamed to `MEM_dupallocN<T>`. Similar templates type-safe version of `MEM_mallocN` will be added soon as well. Following discussions in !134452. NOTE: For now static type checking in `MEM_callocN` and related are slightly different for Windows MSVC. This compiler seems to consider structs using the `DNA_DEFINE_CXX_METHODS` macro as non-trivial (likely because their default copy constructors are deleted). So using checks on trivially constructible/destructible instead on this compiler/system. Pull Request: https://projects.blender.org/blender/blender/pulls/134771
183 lines
5.1 KiB
C++
183 lines
5.1 KiB
C++
/* SPDX-FileCopyrightText: 2008 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup bli
|
|
*
|
|
* Dead simple, fast memory allocator for allocating many elements of the same size.
|
|
*/
|
|
|
|
#include <algorithm>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
#include "BLI_memblock.h" /* own include */
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
#include "BLI_strict_flags.h" /* IWYU pragma: keep. Keep last. */
|
|
|
|
#define CHUNK_LIST_SIZE 16
|
|
|
|
struct BLI_memblock {
|
|
void **chunk_list;
|
|
|
|
/** Element size in bytes. */
|
|
int elem_size;
|
|
/** First unused element index. */
|
|
int elem_next;
|
|
/** Last "touched" element. */
|
|
int elem_last;
|
|
/** Offset in a chunk of the next elem. */
|
|
int elem_next_ofs;
|
|
/** Max offset in a chunk. */
|
|
int chunk_max_ofs;
|
|
/** Id of the chunk used for the next allocation. */
|
|
int chunk_next;
|
|
/** Chunk size in bytes. */
|
|
int chunk_size;
|
|
/** Number of allocated chunk. */
|
|
int chunk_len;
|
|
};
|
|
|
|
BLI_memblock *BLI_memblock_create_ex(uint elem_size, uint chunk_size)
|
|
{
|
|
BLI_assert(elem_size < chunk_size);
|
|
|
|
BLI_memblock *mblk = MEM_callocN<BLI_memblock>("BLI_memblock");
|
|
mblk->elem_size = int(elem_size);
|
|
mblk->elem_next = 0;
|
|
mblk->elem_last = -1;
|
|
mblk->chunk_size = int(chunk_size);
|
|
mblk->chunk_len = CHUNK_LIST_SIZE;
|
|
mblk->chunk_list = MEM_calloc_arrayN<void *>(size_t(mblk->chunk_len), "chunk list");
|
|
mblk->chunk_list[0] = MEM_mallocN_aligned(size_t(mblk->chunk_size), 32, "BLI_memblock chunk");
|
|
memset(mblk->chunk_list[0], 0x0, uint(mblk->chunk_size));
|
|
mblk->chunk_max_ofs = (mblk->chunk_size / mblk->elem_size) * mblk->elem_size;
|
|
mblk->elem_next_ofs = 0;
|
|
mblk->chunk_next = 0;
|
|
return mblk;
|
|
}
|
|
|
|
void BLI_memblock_destroy(BLI_memblock *mblk, MemblockValFreeFP free_callback)
|
|
{
|
|
int elem_per_chunk = mblk->chunk_size / mblk->elem_size;
|
|
|
|
if (free_callback) {
|
|
for (int i = 0; i <= mblk->elem_last; i++) {
|
|
int chunk_idx = i / elem_per_chunk;
|
|
int elem_idx = i - elem_per_chunk * chunk_idx;
|
|
void *val = (char *)(mblk->chunk_list[chunk_idx]) + mblk->elem_size * elem_idx;
|
|
free_callback(val);
|
|
}
|
|
}
|
|
|
|
for (int i = 0; i < mblk->chunk_len; i++) {
|
|
MEM_SAFE_FREE(mblk->chunk_list[i]);
|
|
}
|
|
MEM_SAFE_FREE(mblk->chunk_list);
|
|
MEM_freeN(mblk);
|
|
}
|
|
|
|
void BLI_memblock_clear(BLI_memblock *mblk, MemblockValFreeFP free_callback)
|
|
{
|
|
int elem_per_chunk = mblk->chunk_size / mblk->elem_size;
|
|
int last_used_chunk = mblk->elem_next / elem_per_chunk;
|
|
|
|
if (free_callback) {
|
|
for (int i = mblk->elem_last; i >= mblk->elem_next; i--) {
|
|
int chunk_idx = i / elem_per_chunk;
|
|
int elem_idx = i - elem_per_chunk * chunk_idx;
|
|
void *val = (char *)(mblk->chunk_list[chunk_idx]) + mblk->elem_size * elem_idx;
|
|
free_callback(val);
|
|
}
|
|
}
|
|
|
|
for (int i = last_used_chunk + 1; i < mblk->chunk_len; i++) {
|
|
MEM_SAFE_FREE(mblk->chunk_list[i]);
|
|
}
|
|
|
|
if (UNLIKELY(last_used_chunk + 1 < mblk->chunk_len - CHUNK_LIST_SIZE)) {
|
|
mblk->chunk_len -= CHUNK_LIST_SIZE;
|
|
mblk->chunk_list = static_cast<void **>(
|
|
MEM_recallocN(mblk->chunk_list, sizeof(void *) * uint(mblk->chunk_len)));
|
|
}
|
|
|
|
mblk->elem_last = mblk->elem_next - 1;
|
|
mblk->elem_next = 0;
|
|
mblk->elem_next_ofs = 0;
|
|
mblk->chunk_next = 0;
|
|
}
|
|
|
|
void *BLI_memblock_alloc(BLI_memblock *mblk)
|
|
{
|
|
/* Bookkeeping. */
|
|
mblk->elem_last = std::max(mblk->elem_last, mblk->elem_next);
|
|
mblk->elem_next++;
|
|
|
|
void *ptr = (char *)(mblk->chunk_list[mblk->chunk_next]) + mblk->elem_next_ofs;
|
|
|
|
mblk->elem_next_ofs += mblk->elem_size;
|
|
|
|
if (mblk->elem_next_ofs == mblk->chunk_max_ofs) {
|
|
mblk->elem_next_ofs = 0;
|
|
mblk->chunk_next++;
|
|
|
|
if (UNLIKELY(mblk->chunk_next >= mblk->chunk_len)) {
|
|
mblk->chunk_len += CHUNK_LIST_SIZE;
|
|
mblk->chunk_list = static_cast<void **>(
|
|
MEM_recallocN(mblk->chunk_list, sizeof(void *) * uint(mblk->chunk_len)));
|
|
}
|
|
|
|
if (UNLIKELY(mblk->chunk_list[mblk->chunk_next] == nullptr)) {
|
|
mblk->chunk_list[mblk->chunk_next] = MEM_mallocN_aligned(
|
|
uint(mblk->chunk_size), 32, "BLI_memblock chunk");
|
|
memset(mblk->chunk_list[mblk->chunk_next], 0x0, uint(mblk->chunk_size));
|
|
}
|
|
}
|
|
return ptr;
|
|
}
|
|
|
|
void BLI_memblock_iternew(BLI_memblock *mblk, BLI_memblock_iter *iter)
|
|
{
|
|
/* Small copy of the memblock used for better cache coherence. */
|
|
iter->chunk_list = mblk->chunk_list;
|
|
iter->end_index = mblk->elem_next;
|
|
iter->cur_index = 0;
|
|
iter->chunk_idx = 0;
|
|
iter->elem_ofs = 0;
|
|
iter->elem_size = mblk->elem_size;
|
|
iter->chunk_max_ofs = mblk->chunk_max_ofs;
|
|
}
|
|
|
|
void *BLI_memblock_iterstep(BLI_memblock_iter *iter)
|
|
{
|
|
if (iter->cur_index == iter->end_index) {
|
|
return nullptr;
|
|
}
|
|
|
|
iter->cur_index++;
|
|
|
|
void *ptr = (char *)(iter->chunk_list[iter->chunk_idx]) + iter->elem_ofs;
|
|
|
|
iter->elem_ofs += iter->elem_size;
|
|
|
|
if (iter->elem_ofs == iter->chunk_max_ofs) {
|
|
iter->elem_ofs = 0;
|
|
iter->chunk_idx++;
|
|
}
|
|
return ptr;
|
|
}
|
|
|
|
void *BLI_memblock_elem_get(BLI_memblock *mblk, int chunk, int elem)
|
|
{
|
|
BLI_assert(chunk < mblk->chunk_len);
|
|
int elem_per_chunk = mblk->chunk_size / mblk->elem_size;
|
|
chunk += elem / elem_per_chunk;
|
|
elem = elem % elem_per_chunk;
|
|
return (char *)(mblk->chunk_list[chunk]) + mblk->elem_size * elem;
|
|
}
|