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
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.
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
46 #include "nsFixedSizeAllocator.h"
48 nsFixedSizeAllocator::Bucket
*
49 nsFixedSizeAllocator::AddBucket(size_t aSize
)
52 PL_ARENA_ALLOCATE(p
, &mPool
, sizeof(Bucket
));
56 Bucket
* bucket
= static_cast<Bucket
*>(p
);
57 bucket
->mSize
= aSize
;
58 bucket
->mFirst
= nsnull
;
59 bucket
->mNext
= mBuckets
;
66 nsFixedSizeAllocator::Init(const char* aName
,
67 const size_t* aBucketSizes
,
72 NS_PRECONDITION(aNumBuckets
> 0, "no buckets");
74 return NS_ERROR_INVALID_ARG
;
76 // Blow away the old pool if we're being re-initialized.
78 PL_FinishArenaPool(&mPool
);
80 PRInt32 bucketspace
= aNumBuckets
* sizeof(Bucket
);
81 PL_InitArenaPool(&mPool
, aName
, bucketspace
+ aInitialSize
, aAlign
);
84 for (PRInt32 i
= 0; i
< aNumBuckets
; ++i
)
85 AddBucket(aBucketSizes
[i
]);
90 nsFixedSizeAllocator::Bucket
*
91 nsFixedSizeAllocator::FindBucket(size_t aSize
)
93 Bucket
** link
= &mBuckets
;
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
;
106 link
= &bucket
->mNext
;
112 nsFixedSizeAllocator::Alloc(size_t aSize
)
114 Bucket
* bucket
= FindBucket(aSize
);
116 // Oops, we don't carry that size. Let's fix that.
117 bucket
= AddBucket(aSize
);
123 if (bucket
->mFirst
) {
124 next
= bucket
->mFirst
;
125 bucket
->mFirst
= bucket
->mFirst
->mNext
;
128 PL_ARENA_ALLOCATE(next
, &mPool
, aSize
);
134 memset(next
, 0xc8, aSize
);
141 nsFixedSizeAllocator::Free(void* aPtr
, size_t aSize
)
143 FreeEntry
* entry
= reinterpret_cast<FreeEntry
*>(aPtr
);
144 Bucket
* bucket
= FindBucket(aSize
);
147 NS_ASSERTION(bucket
&& bucket
->mSize
== aSize
, "ack! corruption! bucket->mSize != aSize!");
148 memset(aPtr
, 0xd8, bucket
->mSize
);
151 entry
->mNext
= bucket
->mFirst
;
152 bucket
->mFirst
= entry
;