Files
haiku-beta6/src/system/kernel/slab/allocator.cpp
T
Ingo Weinhold deee8524b7 * Introduced {malloc,memalign,free}_etc() which take an additional "flags"
argument. They replace the previous special-purpose allocation functions
  (malloc_nogrow(), vip_io_request_malloc()).
* Moved the I/O VIP heap to heap.cpp accordingly.
* Added quite a bit of passing around of allocation flags in the VM,
  particularly in the VM*AddressSpace classes.
* Fixed IOBuffer::GetNextVirtualVec(): It was ignoring the VIP flag and always
  allocated on the normal heap.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35316 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-01-27 12:45:53 +00:00

278 lines
6.1 KiB
C++

/*
* Copyright 2010, Ingo Weinhold <[email protected]>.
* Copyright 2007, Hugo Santos. All Rights Reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Hugo Santos, [email protected]
*/
#include "slab_private.h"
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <debug.h>
#include <heap.h>
#include <kernel.h> // for ROUNDUP
#include <malloc.h>
#include <vm/vm.h>
#include <vm/VMAddressSpace.h>
#include "ObjectCache.h"
#include "MemoryManager.h"
#define DEBUG_ALLOCATOR
//#define TEST_ALL_CACHES_DURING_BOOT
static const size_t kBlockSizes[] = {
16, 24, 32, 48, 64, 80, 96, 112,
128, 160, 192, 224, 256, 320, 384, 448,
512, 640, 768, 896, 1024, 1280, 1536, 1792,
2048, 2560, 3072, 3584, 4096, 4608, 5120, 5632,
6144, 6656, 7168, 7680, 8192,
0
};
static const size_t kNumBlockSizes = sizeof(kBlockSizes) / sizeof(size_t) - 1;
static object_cache* sBlockCaches[kNumBlockSizes];
static addr_t sBootStrapMemory = 0;
static size_t sBootStrapMemorySize = 0;
static size_t sUsedBootStrapMemory = 0;
static int
size_to_index(size_t size)
{
if (size <= 16)
return 0;
else if (size <= 32)
return 1 + (size - 16 - 1) / 8;
else if (size <= 128)
return 3 + (size - 32 - 1) / 16;
else if (size <= 256)
return 9 + (size - 128 - 1) / 32;
else if (size <= 512)
return 13 + (size - 256 - 1) / 64;
else if (size <= 1024)
return 17 + (size - 512 - 1) / 128;
else if (size <= 2048)
return 21 + (size - 1024 - 1) / 256;
else if (size <= 8192)
return 25 + (size - 2048 - 1) / 512;
return -1;
}
void*
block_alloc(size_t size, size_t alignment, uint32 flags)
{
if (alignment > 8) {
// Make size >= alignment and a power of two. This is sufficient, since
// all of our object caches with power of two sizes are aligned. We may
// waste quite a bit of memory, but memalign() is very rarely used
// in the kernel and always with power of two size == alignment anyway.
ASSERT((alignment & (alignment - 1)) == 0);
while (alignment < size)
alignment <<= 1;
size = alignment;
// If we're not using an object cache, make sure that the memory
// manager knows it has to align the allocation.
if (size > kBlockSizes[kNumBlockSizes])
flags |= CACHE_ALIGN_ON_SIZE;
}
// allocate from the respective object cache, if any
int index = size_to_index(size);
if (index >= 0)
return object_cache_alloc(sBlockCaches[index], flags);
// the allocation is too large for our object caches -- ask the memory
// manager
void* block;
if (MemoryManager::AllocateRaw(size, flags, block) != B_OK)
return NULL;
return block;
}
void*
block_alloc_early(size_t size)
{
int index = size_to_index(size);
if (index >= 0 && sBlockCaches[index] != NULL)
return object_cache_alloc(sBlockCaches[index], CACHE_DURING_BOOT);
if (size > SLAB_CHUNK_SIZE_SMALL) {
// This is a sufficiently large allocation -- just ask the memory
// manager directly.
void* block;
if (MemoryManager::AllocateRaw(size, 0, block) != B_OK)
return NULL;
return block;
}
// A small allocation, but no object cache yet. Use the bootstrap memory.
// This allocation must never be freed!
if (sBootStrapMemorySize - sUsedBootStrapMemory < size) {
// We need more memory.
void* block;
if (MemoryManager::AllocateRaw(SLAB_CHUNK_SIZE_SMALL, 0, block) != B_OK)
return NULL;
sBootStrapMemory = (addr_t)block;
sBootStrapMemorySize = SLAB_CHUNK_SIZE_SMALL;
sUsedBootStrapMemory = 0;
}
size_t neededSize = ROUNDUP(size, sizeof(double));
if (sUsedBootStrapMemory + neededSize > sBootStrapMemorySize)
return NULL;
void* block = (void*)(sBootStrapMemory + sUsedBootStrapMemory);
sUsedBootStrapMemory += neededSize;
return block;
}
void
block_free(void* block, uint32 flags)
{
if (block == NULL)
return;
ObjectCache* cache = MemoryManager::FreeRawOrReturnCache(block, flags);
if (cache != NULL) {
// a regular small allocation
ASSERT(cache->object_size >= kBlockSizes[0]);
ASSERT(cache->object_size <= kBlockSizes[kNumBlockSizes - 1]);
ASSERT(cache == sBlockCaches[size_to_index(cache->object_size)]);
object_cache_free(cache, block, flags);
}
}
void
block_allocator_init_boot()
{
for (int index = 0; kBlockSizes[index] != 0; index++) {
char name[32];
snprintf(name, sizeof(name), "block cache: %lu", kBlockSizes[index]);
uint32 flags = CACHE_DURING_BOOT;
size_t size = kBlockSizes[index];
// align the power of two objects to their size
if ((size & (size - 1)) == 0)
flags |= CACHE_ALIGN_ON_SIZE;
// For the larger allocation sizes disable the object depot, so we don't
// keep lot's of unused objects around.
if (size > 2048)
flags |= CACHE_NO_DEPOT;
sBlockCaches[index] = create_object_cache_etc(name, size, 0, 0, flags,
NULL, NULL, NULL, NULL);
if (sBlockCaches[index] == NULL)
panic("allocator: failed to init block cache");
}
}
void
block_allocator_init_rest()
{
#ifdef TEST_ALL_CACHES_DURING_BOOT
for (int index = 0; kBlockSizes[index] != 0; index++) {
block_free(block_alloc(kBlockSizes[index] - sizeof(boundary_tag)), 0,
0);
}
#endif
}
// #pragma mark - public API
#if USE_SLAB_ALLOCATOR_FOR_MALLOC
void*
memalign(size_t alignment, size_t size)
{
return block_alloc(size, alignment, 0);
}
void *
memalign_etc(size_t alignment, size_t size, uint32 flags)
{
return block_alloc(size, alignment, flags & CACHE_ALLOC_FLAGS);
}
void
free_etc(void *address, uint32 flags)
{
block_free(address, flags & CACHE_ALLOC_FLAGS);
}
void*
malloc(size_t size)
{
return block_alloc(size, 0, 0);
}
void
free(void* address)
{
block_free(address, 0);
}
void*
realloc(void* address, size_t newSize)
{
if (newSize == 0) {
block_free(address, 0);
return NULL;
}
if (address == NULL)
return block_alloc(newSize, 0, 0);
size_t oldSize;
ObjectCache* cache = MemoryManager::GetAllocationInfo(address, oldSize);
if (cache == NULL && oldSize == 0) {
panic("block_realloc(): allocation %p not known", address);
return NULL;
}
if (oldSize == newSize)
return address;
void* newBlock = block_alloc(newSize, 0, 0);
if (newBlock == NULL)
return NULL;
memcpy(newBlock, address, std::min(oldSize, newSize));
block_free(address, 0);
return newBlock;
}
#endif // USE_SLAB_ALLOCATOR_FOR_MALLOC