Change from an array of sizes to a linked list so it can handle new sizes after initialization.

This commit is contained in:
waterson%netscape.com 2000-04-25 01:18:56 +00:00
Родитель ce16b1ecb7
Коммит c7e85ce37b
2 изменённых файлов: 67 добавлений и 142 удалений

Просмотреть файл

@ -32,9 +32,29 @@
#include "nsCRT.h"
#include "nsFixedSizeAllocator.h"
nsresult
nsFixedSizeAllocator::AddBucket(size_t aSize)
{
void* p;
PL_ARENA_ALLOCATE(p, &mPool, sizeof(Bucket));
if (! p)
return NS_ERROR_OUT_OF_MEMORY;
Bucket* bucket = NS_STATIC_CAST(Bucket*, p);
bucket->mSize = aSize;
bucket->mFirst = nsnull;
bucket->mNext = mBuckets;
mBuckets = bucket;
return NS_OK;
}
nsresult
nsFixedSizeAllocator::Init(const char* aName,
size_t* aBucketSizes,
const size_t* aBucketSizes,
PRInt32 aNumBuckets,
PRInt32 aInitialSize,
PRInt32 aAlign)
@ -43,22 +63,15 @@ nsFixedSizeAllocator::Init(const char* aName,
if (aNumBuckets <= 0)
return NS_ERROR_INVALID_ARG;
mNumBuckets = aNumBuckets;
// Blow away the old pool if we're being re-initialized.
if (mBuckets)
PL_FinishArenaPool(&mPool);
PRInt32 bucketspace = aNumBuckets * sizeof(Bucket);
PL_InitArenaPool(&mPool, aName, bucketspace + aInitialSize, aAlign);
void* p;
PL_ARENA_ALLOCATE(p, &mPool, bucketspace);
if (! p)
return NS_ERROR_OUT_OF_MEMORY;
mBuckets = NS_STATIC_CAST(Bucket*, p);
for (PRInt32 i = 0; i < aNumBuckets; ++i) {
mBuckets[i].mSize = aBucketSizes[i];
mBuckets[i].mFirst = nsnull;
}
for (PRInt32 i = 0; i < aNumBuckets; ++i)
AddBucket(aBucketSizes[i]);
return NS_OK;
}
@ -66,39 +79,54 @@ nsFixedSizeAllocator::Init(const char* aName,
void*
nsFixedSizeAllocator::Alloc(size_t aSize)
{
Bucket** link = &mBuckets;
Bucket* bucket = mBuckets;
for (PRInt32 i = mNumBuckets; i >= 0; --i, ++bucket) {
if (aSize != bucket->mSize)
continue;
void* next;
if (bucket->mFirst) {
next = bucket->mFirst;
bucket->mFirst = bucket->mFirst->mNext;
}
else {
// Allocate headroom so we can have a backpointer. Use
// 'sizeof double' so that the block stays well-aligned
PL_ARENA_ALLOCATE(next, &mPool, aSize + sizeof(double));
FreeEntry* entry = NS_STATIC_CAST(FreeEntry*, next);
entry->mBucket = bucket;
while (bucket != nsnull) {
if (aSize == bucket->mSize) {
// Promote to the head of the list, under the assumption
// that we'll allocate same-sized object cotemporaneously.
*link = bucket->mNext;
bucket->mNext = mBuckets;
mBuckets = bucket;
break;
}
next = NS_STATIC_CAST(void*, NS_STATIC_CAST(char*, next) + sizeof(double));
#ifdef DEBUG
nsCRT::memset(next, 0xc8, bucket->mSize);
#endif
return next;
link = &bucket->mNext;
bucket = bucket->mNext;
}
// Oops, we don't carry that size.
NS_ERROR("attempt to allocate bad size from fixed size allocator");
return 0;
}
if (! bucket) {
// Oops, we don't carry that size. Let's fix that.
nsresult rv = AddBucket(aSize);
if (NS_FAILED(rv))
return nsnull;
bucket = mBuckets;
}
void* next;
if (bucket->mFirst) {
next = bucket->mFirst;
bucket->mFirst = bucket->mFirst->mNext;
}
else {
// Allocate headroom so we can have a backpointer. Use
// 'sizeof double' so that the block stays well-aligned
PL_ARENA_ALLOCATE(next, &mPool, aSize + sizeof(double));
FreeEntry* entry = NS_STATIC_CAST(FreeEntry*, next);
entry->mBucket = bucket;
}
next = NS_STATIC_CAST(void*, NS_STATIC_CAST(char*, next) + sizeof(double));
#ifdef DEBUG
nsCRT::memset(next, 0xc8, bucket->mSize);
#endif
return next;
}
void

Просмотреть файл

@ -1,103 +0,0 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Original Author(s):
* Chris Waterson <waterson@netscape.com
*
* Contributor(s):
*/
/*
A simple fixed-size allocator that allocates its memory from an
arena.
*/
#ifndef nsFixedSizeAllocator_h__
#define nsFixedSizeAllocator_h__
#include "nscore.h"
#include "nsError.h"
#include "plarena.h"
#define NS_SIZE_IN_HEAP(_size) ((_size) + sizeof(double))
class nsFixedSizeAllocator
{
protected:
PLArenaPool mPool;
struct Bucket;
struct FreeEntry;
friend struct Bucket;
friend struct FreeEntry;
struct FreeEntry {
Bucket* mBucket;
FreeEntry* mNext;
};
struct Bucket {
size_t mSize;
FreeEntry* mFirst;
};
Bucket* mBuckets;
PRInt32 mNumBuckets;
public:
nsFixedSizeAllocator()
: mBuckets(nsnull), mNumBuckets(0) {}
~nsFixedSizeAllocator() {
if (mBuckets)
PL_FinishArenaPool(&mPool); }
/**
* Initialize the fixed size allocator. 'aName' is used to tag
* the underlying PLArena object for debugging and measurement
* purposes. 'aNumBuckets' specifies the number of elements in
* 'aBucketSizes', which is an array of integral block sizes
* that this allocator should be prepared to handle.
*/
nsresult
Init(const char* aName,
size_t* aBucketSizes,
PRInt32 aNumBuckets,
PRInt32 aInitialSize,
PRInt32 aAlign = 0);
/**
* Allocate a block of memory 'aSize' bytes big. 'aSize' must
* be one of the block sizes passed to 'Init()', or else this
* will fail and return a null pointer.
*/
void* Alloc(size_t aSize);
/**
* Free a pointer allocated using a fixed-size allocator
*/
static void Free(void* aPtr, size_t aSize);
};
#endif // nsFixedSizeAllocator_h__