Try to fix intermittent refcount assertions in the presence of more than one thread...
[mozilla-central.git] / xpcom / ds / nsFixedSizeAllocator.cpp
blob838ea5efe581cd8db0a3a1e77c81541b3949a495
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * Chris Waterson <waterson@netscape.com
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
41 Implementation for nsFixedSizeAllocator
45 #include "nsCRT.h"
46 #include "nsFixedSizeAllocator.h"
48 nsFixedSizeAllocator::Bucket *
49 nsFixedSizeAllocator::AddBucket(size_t aSize)
51 void* p;
52 PL_ARENA_ALLOCATE(p, &mPool, sizeof(Bucket));
53 if (! p)
54 return nsnull;
56 Bucket* bucket = static_cast<Bucket*>(p);
57 bucket->mSize = aSize;
58 bucket->mFirst = nsnull;
59 bucket->mNext = mBuckets;
61 mBuckets = bucket;
62 return bucket;
65 nsresult
66 nsFixedSizeAllocator::Init(const char* aName,
67 const size_t* aBucketSizes,
68 PRInt32 aNumBuckets,
69 PRInt32 aInitialSize,
70 PRInt32 aAlign)
72 NS_PRECONDITION(aNumBuckets > 0, "no buckets");
73 if (aNumBuckets <= 0)
74 return NS_ERROR_INVALID_ARG;
76 // Blow away the old pool if we're being re-initialized.
77 if (mBuckets)
78 PL_FinishArenaPool(&mPool);
80 PRInt32 bucketspace = aNumBuckets * sizeof(Bucket);
81 PL_InitArenaPool(&mPool, aName, bucketspace + aInitialSize, aAlign);
83 mBuckets = nsnull;
84 for (PRInt32 i = 0; i < aNumBuckets; ++i)
85 AddBucket(aBucketSizes[i]);
87 return NS_OK;
90 nsFixedSizeAllocator::Bucket *
91 nsFixedSizeAllocator::FindBucket(size_t aSize)
93 Bucket** link = &mBuckets;
94 Bucket* bucket;
96 while ((bucket = *link) != nsnull) {
97 if (aSize == bucket->mSize) {
98 // Promote to the head of the list, under the assumption
99 // that we'll allocate same-sized object contemporaneously.
100 *link = bucket->mNext;
101 bucket->mNext = mBuckets;
102 mBuckets = bucket;
103 return bucket;
106 link = &bucket->mNext;
108 return nsnull;
111 void*
112 nsFixedSizeAllocator::Alloc(size_t aSize)
114 Bucket* bucket = FindBucket(aSize);
115 if (! bucket) {
116 // Oops, we don't carry that size. Let's fix that.
117 bucket = AddBucket(aSize);
118 if (! bucket)
119 return nsnull;
122 void* next;
123 if (bucket->mFirst) {
124 next = bucket->mFirst;
125 bucket->mFirst = bucket->mFirst->mNext;
127 else {
128 PL_ARENA_ALLOCATE(next, &mPool, aSize);
129 if (!next)
130 return nsnull;
133 #ifdef DEBUG
134 memset(next, 0xc8, aSize);
135 #endif
137 return next;
140 void
141 nsFixedSizeAllocator::Free(void* aPtr, size_t aSize)
143 FreeEntry* entry = reinterpret_cast<FreeEntry*>(aPtr);
144 Bucket* bucket = FindBucket(aSize);
146 #ifdef DEBUG
147 NS_ASSERTION(bucket && bucket->mSize == aSize, "ack! corruption! bucket->mSize != aSize!");
148 memset(aPtr, 0xd8, bucket->mSize);
149 #endif
151 entry->mNext = bucket->mFirst;
152 bucket->mFirst = entry;