author | Pat Downey <patd@symbian.org> |
Wed, 01 Sep 2010 12:34:56 +0100 | |
branch | RCL_3 |
changeset 44 | 3e88ff8f41d5 |
parent 26 | c734af59ce98 |
permissions | -rw-r--r-- |
0 | 1 |
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). |
2 |
// All rights reserved. |
|
3 |
// This component and the accompanying materials are made available |
|
4 |
// under the terms of the License "Eclipse Public License v1.0" |
|
5 |
// which accompanies this distribution, and is available |
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 |
// |
|
8 |
// Initial Contributors: |
|
9 |
// Nokia Corporation - initial contribution. |
|
10 |
// |
|
11 |
// Contributors: |
|
12 |
// |
|
13 |
// Description: |
|
14 |
// e32test\buffer\t_tbma.cpp |
|
15 |
// |
|
16 |
// |
|
17 |
||
18 |
#define __E32TEST_EXTENSION__ |
|
19 |
#include "t_tbma.h" |
|
20 |
#include <cpudefs.h> |
|
21 |
#include <e32atomics.h> |
|
22 |
||
23 |
RTest test(_L("T_TBMA")); |
|
24 |
||
25 |
||
26 |
/************************************** |
|
27 |
* class TBmaList |
|
28 |
**************************************/ |
|
29 |
||
30 |
TBmaList* TBmaList::New(TInt aNumBmas) |
|
31 |
{ |
|
32 |
TBmaList* pL=new TBmaList; |
|
33 |
if (pL) |
|
34 |
{ |
|
35 |
pL->iNumBmas=aNumBmas; |
|
36 |
pL->iBmaList=(TBitMapAllocator**)User::Alloc(aNumBmas*sizeof(TBitMapAllocator*)); |
|
37 |
if (pL->iBmaList) |
|
38 |
Mem::FillZ(pL->iBmaList, aNumBmas*sizeof(TBitMapAllocator*)); |
|
39 |
pL->iBaseList=(TInt*)User::Alloc((aNumBmas+1)*sizeof(TInt)); |
|
40 |
if (!pL->iBmaList || !pL->iBaseList) |
|
41 |
{ |
|
42 |
delete pL; |
|
43 |
pL=NULL; |
|
44 |
} |
|
45 |
} |
|
46 |
return pL; |
|
47 |
} |
|
48 |
||
49 |
TBmaList* TBmaList::New(const TBitMapAllocator& aBma, TInt aNumSplits, VA_LIST aList) |
|
50 |
{ |
|
51 |
TBmaList* pL=TBmaList::New(aNumSplits+1); |
|
52 |
if (!pL) |
|
53 |
return NULL; |
|
54 |
TInt i; |
|
55 |
pL->iBaseList[0]=0; |
|
56 |
for (i=1; i<=aNumSplits; ++i) |
|
57 |
pL->iBaseList[i]=VA_ARG(aList,TInt); |
|
58 |
pL->iBaseList[aNumSplits+1]=aBma.iSize; |
|
59 |
for (i=0; i<=aNumSplits; ++i) |
|
60 |
{ |
|
61 |
TInt sz=pL->iBaseList[i+1]-pL->iBaseList[i]; |
|
62 |
__ASSERT_ALWAYS(sz>0, TBMA_FAULT()); |
|
63 |
pL->iBmaList[i]=TBitMapAllocator::New(sz,EFalse); |
|
64 |
if (!pL->iBmaList[i]) |
|
65 |
{ |
|
66 |
delete pL; |
|
67 |
return NULL; |
|
68 |
} |
|
69 |
TInt j; |
|
70 |
for (j=0; j<sz; ++j) |
|
71 |
{ |
|
72 |
if (aBma.NotAllocated(j+pL->iBaseList[i],1)) |
|
73 |
pL->iBmaList[i]->Free(j); |
|
74 |
} |
|
75 |
} |
|
76 |
return pL; |
|
77 |
} |
|
78 |
||
79 |
TBmaList::TBmaList() |
|
80 |
{ |
|
81 |
iNumBmas=0; |
|
82 |
iBmaList=NULL; |
|
83 |
iBaseList=NULL; |
|
84 |
} |
|
85 |
||
86 |
TBmaList::~TBmaList() |
|
87 |
{ |
|
88 |
TInt i; |
|
89 |
for (i=0; i<iNumBmas; ++i) |
|
90 |
delete iBmaList[i]; |
|
91 |
User::Free(iBmaList); |
|
92 |
User::Free(iBaseList); |
|
93 |
} |
|
94 |
/* |
|
95 |
* Extended first fit allocator |
|
96 |
*/ |
|
97 |
TInt TBmaList::AllocConsecutiveFF(TInt aLength) |
|
98 |
{ |
|
99 |
TInt base=KErrNotFound; |
|
100 |
TInt bmalen=0; |
|
101 |
TInt carry=0; |
|
102 |
TBitMapAllocator** ppA=iBmaList; // pointer to list of TBitMapAllocator* |
|
103 |
TBitMapAllocator** pE=ppA+iNumBmas; |
|
104 |
TInt* pB=iBaseList; |
|
105 |
for (; ppA<pE; ++ppA, ++pB) |
|
106 |
{ |
|
107 |
TBitMapAllocator* pA=*ppA; |
|
108 |
if (*pB!=base+bmalen) |
|
109 |
{ |
|
110 |
// this BMA is not contiguous with previous one |
|
111 |
carry=0; |
|
112 |
} |
|
113 |
base=*pB; |
|
114 |
bmalen=pA->iSize; |
|
115 |
TInt l; |
|
116 |
TInt r=pA->AllocAligned(aLength,0,0,EFalse,carry,l); |
|
117 |
if (r>=0) |
|
118 |
return base+r-carry; |
|
119 |
} |
|
120 |
return KErrNotFound; |
|
121 |
} |
|
122 |
||
123 |
/* |
|
124 |
* Extended best fit allocator |
|
125 |
*/ |
|
126 |
TInt TBmaList::AllocConsecutiveBF(TInt aLength) |
|
127 |
{ |
|
128 |
TInt bmalen=0; |
|
129 |
TInt carry=0; |
|
130 |
TInt minrun=KMaxTInt; |
|
131 |
TInt minrunpos=KErrNotFound; |
|
132 |
TBitMapAllocator** ppA=iBmaList; // pointer to list of TBitMapAllocator* |
|
133 |
TBitMapAllocator** pE=ppA+iNumBmas; |
|
134 |
TInt* pB=iBaseList; |
|
135 |
TInt base=*pB; |
|
136 |
for (; ppA<pE; ++ppA, ++pB) |
|
137 |
{ |
|
138 |
TBitMapAllocator* pA=*ppA; |
|
139 |
if (*pB!=base+bmalen) |
|
140 |
{ |
|
141 |
// this BMA is not contiguous with previous one |
|
142 |
// check final run of previous BMA |
|
143 |
if (carry<minrun) |
|
144 |
{ |
|
145 |
minrun=carry; |
|
146 |
minrunpos=base+bmalen-carry; |
|
147 |
} |
|
148 |
carry=0; |
|
149 |
} |
|
150 |
base=*pB; |
|
151 |
bmalen=pA->iSize; |
|
152 |
TInt l=KMaxTInt; |
|
153 |
TInt oldc=carry; |
|
154 |
TInt r=pA->AllocAligned(aLength,0,0,ETrue,carry,l); |
|
155 |
if (r>=0) |
|
156 |
{ |
|
157 |
// check shortest run in this BMA |
|
158 |
if (l<minrun) |
|
159 |
{ |
|
160 |
minrun=l; |
|
161 |
minrunpos=r ? (base+r) : (base-oldc); |
|
162 |
if (minrun==aLength) |
|
163 |
break; // exact match so finish |
|
164 |
} |
|
165 |
} |
|
166 |
} |
|
167 |
// check final run of last BMA |
|
168 |
if (ppA==pE && carry>=aLength && carry<minrun) |
|
169 |
minrunpos=base+bmalen-carry; |
|
170 |
return minrunpos; |
|
171 |
} |
|
172 |
||
173 |
/* |
|
174 |
* Extended first fit aligned allocator |
|
175 |
*/ |
|
176 |
TInt TBmaList::AllocAlignedFF(TInt aLength, TInt aAlign) |
|
177 |
{ |
|
178 |
TUint32 alignsize=1<<aAlign; |
|
179 |
TUint32 alignmask=alignsize-1; |
|
180 |
TInt base=KErrNotFound; |
|
181 |
TInt bmalen=0; |
|
182 |
TInt carry=0; |
|
183 |
TBitMapAllocator** ppA=iBmaList; // pointer to list of TBitMapAllocator* |
|
184 |
TBitMapAllocator** pE=ppA+iNumBmas; |
|
185 |
TInt* pB=iBaseList; |
|
186 |
for (; ppA<pE; ++ppA, ++pB) |
|
187 |
{ |
|
188 |
TBitMapAllocator* pA=*ppA; |
|
189 |
if (*pB!=base+bmalen) |
|
190 |
{ |
|
191 |
// this BMA is not contiguous with previous one |
|
192 |
carry=0; |
|
193 |
} |
|
194 |
base=*pB; |
|
195 |
bmalen=pA->iSize; |
|
196 |
TInt l; |
|
197 |
TInt r=pA->AllocAligned(aLength,aAlign,base,EFalse,carry,l); |
|
198 |
if (r>=0) |
|
199 |
return (base+r-carry+alignmask)&~alignmask; |
|
200 |
} |
|
201 |
return KErrNotFound; |
|
202 |
} |
|
203 |
||
204 |
/* |
|
205 |
* Extended best fit aligned allocator |
|
206 |
*/ |
|
207 |
TInt TBmaList::AllocAlignedBF(TInt aLength, TInt aAlign) |
|
208 |
{ |
|
209 |
TInt bmalen=0; |
|
210 |
TInt carry=0; |
|
211 |
TInt minrun=KMaxTInt; |
|
212 |
TInt minrunpos=KErrNotFound; |
|
213 |
TUint32 alignsize=1<<aAlign; |
|
214 |
TUint32 alignmask=alignsize-1; |
|
215 |
TBitMapAllocator** ppA=iBmaList; // pointer to list of TBitMapAllocator* |
|
216 |
TBitMapAllocator** pE=ppA+iNumBmas; |
|
217 |
TInt* pB=iBaseList; |
|
218 |
TInt base=*pB; |
|
219 |
for (; ppA<pE; ++ppA, ++pB) |
|
220 |
{ |
|
221 |
TBitMapAllocator* pA=*ppA; |
|
222 |
if (*pB!=base+bmalen) |
|
223 |
{ |
|
224 |
// this BMA is not contiguous with previous one |
|
225 |
// check final run of previous BMA |
|
226 |
if (carry<minrun) |
|
227 |
{ |
|
228 |
TInt fpos=base+bmalen-carry; |
|
229 |
TInt lost=((fpos+base+alignmask)&~alignmask)-base-fpos; |
|
230 |
if (carry-lost>=aLength) |
|
231 |
{ |
|
232 |
minrun=carry; |
|
233 |
minrunpos=fpos; |
|
234 |
} |
|
235 |
} |
|
236 |
carry=0; |
|
237 |
} |
|
238 |
base=*pB; |
|
239 |
bmalen=pA->iSize; |
|
240 |
TInt l=KMaxTInt; |
|
241 |
TInt oldc=carry; |
|
242 |
TInt r=pA->AllocAligned(aLength,aAlign,base,ETrue,carry,l); |
|
243 |
if (r>=0) |
|
244 |
{ |
|
245 |
// check shortest run in this BMA |
|
246 |
if (l<minrun) |
|
247 |
{ |
|
248 |
minrun=l; |
|
249 |
minrunpos=r ? (base+r) : (base-oldc); |
|
250 |
if (minrun==aLength) |
|
251 |
break; // exact match so finish |
|
252 |
} |
|
253 |
} |
|
254 |
} |
|
255 |
// check final run of last BMA |
|
256 |
if (ppA==pE && carry<minrun) |
|
257 |
{ |
|
258 |
TInt fpos=base+bmalen-carry; |
|
259 |
TInt lost=((fpos+alignmask)&~alignmask)-fpos; |
|
260 |
if (carry-lost>=aLength) |
|
261 |
{ |
|
262 |
minrun=carry; |
|
263 |
minrunpos=fpos; |
|
264 |
} |
|
265 |
} |
|
266 |
return (minrunpos<0) ? minrunpos : ((minrunpos+alignmask)&~alignmask); |
|
267 |
} |
|
268 |
||
269 |
||
270 |
||
271 |
||
272 |
||
273 |
||
274 |
||
275 |
||
276 |
void Display(TBitMapAllocator* aBma) |
|
277 |
{ |
|
278 |
test.Printf(_L("Free %d FirstCheck %08x Size %d Map %08x\n"),aBma->iAvail,aBma->iCheckFirst,aBma->iSize,aBma->iMap); |
|
279 |
TInt i; |
|
280 |
TInt l=0; |
|
281 |
for (i=0; i<((aBma->iSize+31)>>5); i++) |
|
282 |
{ |
|
283 |
if (++l==10) |
|
284 |
{ |
|
285 |
l=0; |
|
286 |
// test.Getch(); |
|
287 |
} |
|
288 |
TUint32 x=aBma->iMap[i]; |
|
289 |
TBuf<80> buf; |
|
290 |
buf.NumFixedWidth(x,EBinary,32); |
|
291 |
buf.Append(_L("\n")); |
|
292 |
test.Printf(buf); |
|
293 |
} |
|
294 |
test.Getch(); |
|
295 |
} |
|
296 |
||
297 |
void Check(TBitMapAllocator& a) |
|
298 |
{ |
|
299 |
TInt l=a.iSize; |
|
300 |
l=(l+31)>>5; |
|
301 |
TInt n=0; |
|
302 |
TInt i; |
|
303 |
TUint32* first=NULL; |
|
304 |
for (i=0; i<l; ++i) |
|
305 |
{ |
|
306 |
TUint32 w=a.iMap[i]; |
|
307 |
if (w && !first) |
|
308 |
first=a.iMap+i; |
|
309 |
n+=__e32_bit_count_32(w); |
|
310 |
} |
|
311 |
test(a.Avail()==n); |
|
312 |
test(first?(a.iCheckFirst<=first):(a.iCheckFirst>=a.iMap && a.iCheckFirst<=a.iMap+l)); |
|
313 |
} |
|
314 |
||
315 |
void TestConstruct(TInt aSize) |
|
316 |
{ |
|
317 |
test.Printf(_L("TestConstruct %d\n"),aSize); |
|
318 |
TBitMapAllocator* pA; |
|
319 |
pA=TBitMapAllocator::New(aSize, EFalse); |
|
320 |
test(pA!=NULL); |
|
321 |
test(pA->Avail()==0); |
|
322 |
Check(*pA); |
|
323 |
delete pA; |
|
324 |
pA=TBitMapAllocator::New(aSize, ETrue); |
|
325 |
test(pA!=NULL); |
|
326 |
test(pA->Avail()==aSize); |
|
327 |
Check(*pA); |
|
328 |
delete pA; |
|
329 |
} |
|
330 |
||
331 |
void TestAlloc1(TInt aSize) |
|
332 |
{ |
|
333 |
test.Printf(_L("TestAlloc1 %d\n"),aSize); |
|
334 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, ETrue); |
|
335 |
test(pA!=NULL); |
|
336 |
test(pA->Avail()==aSize); |
|
337 |
Check(*pA); |
|
338 |
TInt i; |
|
339 |
for (i=0; i<aSize; ++i) |
|
340 |
{ |
|
341 |
TInt r=pA->Alloc(); |
|
342 |
test(r==i); |
|
343 |
test(pA->Avail()==aSize-i-1); |
|
344 |
test(pA->iCheckFirst==pA->iMap+i/32); |
|
345 |
Check(*pA); |
|
346 |
} |
|
347 |
test(pA->Alloc()<0); |
|
348 |
delete pA; |
|
349 |
} |
|
350 |
||
351 |
void TestFree1(TInt aSize) |
|
352 |
{ |
|
353 |
test.Printf(_L("TestFree1 %d\n"),aSize); |
|
354 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, EFalse); |
|
355 |
test(pA!=NULL); |
|
356 |
test(pA->Avail()==0); |
|
357 |
TInt i; |
|
358 |
for (i=aSize-1; i>=0; --i) |
|
359 |
{ |
|
360 |
pA->Free(i); |
|
361 |
test(pA->Avail()==aSize-i); |
|
362 |
test(pA->Alloc()==i); |
|
363 |
pA->Free(i); |
|
364 |
test(pA->iCheckFirst==pA->iMap+i/32); |
|
365 |
Check(*pA); |
|
366 |
} |
|
367 |
delete pA; |
|
368 |
} |
|
369 |
||
370 |
void TestBlockAlloc(TInt aSize) |
|
371 |
{ |
|
372 |
test.Printf(_L("TestBlockAlloc %d\n"),aSize); |
|
373 |
const TInt begin[]={0,1,2,7,16,29,31,32,33,63,64,65,83,128}; |
|
374 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, ETrue); |
|
375 |
test(pA!=NULL); |
|
376 |
test(pA->Avail()==aSize); |
|
377 |
pA->Alloc(0,aSize); |
|
378 |
test(pA->Avail()==0); |
|
379 |
Check(*pA); |
|
380 |
pA->Free(0,aSize); |
|
381 |
test(pA->Avail()==aSize); |
|
382 |
Check(*pA); |
|
383 |
TInt i; |
|
384 |
for (i=0; i<(TInt)(sizeof(begin)/sizeof(TInt)); ++i) |
|
385 |
{ |
|
386 |
TInt j=begin[i]; |
|
387 |
if (j>aSize) |
|
388 |
break; |
|
389 |
TInt l; |
|
390 |
for (l=1; l<=aSize-j; ++l) |
|
391 |
{ |
|
392 |
// test.Printf(_L("j=%d, l=%d, s=%d\n"),j,l,aSize); |
|
393 |
pA->Alloc(j,l); |
|
394 |
test(pA->Avail()==aSize-l); |
|
395 |
test(!pA->NotAllocated(j,l)); |
|
396 |
if (j+l<aSize) |
|
397 |
test(pA->NotAllocated(j,l+1)); |
|
398 |
if (j>0) |
|
399 |
test(pA->NotAllocated(j-1,l)); |
|
400 |
TInt r=pA->Alloc(); |
|
401 |
if (j==0) |
|
402 |
{ |
|
403 |
if (l<aSize) |
|
404 |
test(r==l); |
|
405 |
else |
|
406 |
test(r<0); |
|
407 |
} |
|
408 |
else |
|
409 |
test(r==0); |
|
410 |
if (r==0) |
|
411 |
{ |
|
412 |
pA->Free(r); |
|
413 |
pA->Free(j,l); |
|
414 |
} |
|
415 |
else if (r>0) |
|
416 |
pA->Free(j,l+1); |
|
417 |
else |
|
418 |
pA->Free(j,l); |
|
419 |
test(pA->Avail()==aSize); |
|
420 |
Check(*pA); |
|
421 |
} |
|
422 |
} |
|
423 |
delete pA; |
|
424 |
} |
|
425 |
||
426 |
void TestBlockFree(TInt aSize) |
|
427 |
{ |
|
428 |
test.Printf(_L("TestBlockFree %d\n"),aSize); |
|
429 |
const TInt begin[]={0,1,2,7,16,29,31,32,33,63,64,65,83,128}; |
|
430 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, EFalse); |
|
431 |
test(pA!=NULL); |
|
432 |
test(pA->Avail()==0); |
|
433 |
TInt i; |
|
434 |
for (i=0; i<(TInt)(sizeof(begin)/sizeof(TInt)); ++i) |
|
435 |
{ |
|
436 |
TInt j=begin[i]; |
|
437 |
if (j>aSize) |
|
438 |
break; |
|
439 |
TInt l; |
|
440 |
for (l=1; l<=aSize-j; ++l) |
|
441 |
{ |
|
442 |
// test.Printf(_L("j=%d, l=%d, s=%d\n"),j,l,aSize); |
|
443 |
pA->Free(j,l); |
|
444 |
test(pA->Avail()==l); |
|
445 |
test(!pA->NotFree(j,l)); |
|
446 |
if (j+l<aSize) |
|
447 |
test(pA->NotFree(j,l+1)); |
|
448 |
if (j>0) |
|
449 |
test(pA->NotFree(j-1,l)); |
|
450 |
TInt r=pA->Alloc(); |
|
451 |
test(r==j); |
|
452 |
if (l>1) |
|
453 |
pA->Alloc(j+1,l-1); |
|
454 |
test(pA->Avail()==0); |
|
455 |
Check(*pA); |
|
456 |
} |
|
457 |
} |
|
458 |
delete pA; |
|
459 |
} |
|
460 |
||
461 |
void TestNotFree(TInt aSize) |
|
462 |
{ |
|
463 |
test.Printf(_L("TestNotFree %d\n"),aSize); |
|
464 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, ETrue); |
|
465 |
test(pA!=NULL); |
|
466 |
test(pA->Avail()==aSize); |
|
467 |
test(!pA->NotFree(0,aSize)); |
|
468 |
TInt i; |
|
469 |
for (i=0; i<aSize; ++i) |
|
470 |
{ |
|
471 |
pA->Alloc(i,1); |
|
472 |
test(pA->NotFree(0,aSize)); |
|
473 |
TInt j; |
|
474 |
for (j=1; j*j<=i || j*j+i<=aSize; ++j) |
|
475 |
{ |
|
476 |
TInt a=Max(i-j*j,0); |
|
477 |
TInt b=Min(i+j*j,aSize); |
|
478 |
test(pA->NotFree(a,b-a)); |
|
479 |
} |
|
480 |
pA->Free(i); |
|
481 |
test(!pA->NotFree(0,aSize)); |
|
482 |
} |
|
483 |
const TInt begin[]={0,1,2,7,16,29,31,32,33,63,64,65,83,128}; |
|
484 |
const TInt size[]={2,3,7,16,23,31,32,33,63,64,65,89,128}; |
|
485 |
const TInt* pB=begin; |
|
486 |
const TInt* pBE=pB+sizeof(begin)/sizeof(TInt); |
|
487 |
const TInt* pS=size; |
|
488 |
const TInt* pSE=pS+sizeof(size)/sizeof(TInt); |
|
489 |
for (; pB<pBE; ++pB) |
|
490 |
{ |
|
491 |
TInt b=*pB; |
|
492 |
if (b>=aSize) |
|
493 |
continue; |
|
494 |
for (; pS<pSE; ++pS) |
|
495 |
{ |
|
496 |
TInt l=*pS; |
|
497 |
if (b+l>aSize) |
|
498 |
continue; |
|
499 |
pA->Alloc(b,l); |
|
500 |
TInt j; |
|
501 |
for (j=1; j<aSize; ++j) |
|
502 |
{ |
|
503 |
if (j<=b) |
|
504 |
test(!pA->NotFree(0,j)); |
|
505 |
else |
|
506 |
test(pA->NotFree(0,j)); |
|
507 |
if (aSize-j>=b+l) |
|
508 |
test(!pA->NotFree(aSize-j,j)); |
|
509 |
else |
|
510 |
test(pA->NotFree(aSize-j,j)); |
|
511 |
} |
|
512 |
pA->Free(b,l); |
|
513 |
} |
|
514 |
} |
|
515 |
delete pA; |
|
516 |
} |
|
517 |
||
518 |
void TestNotAllocated(TInt aSize) |
|
519 |
{ |
|
520 |
test.Printf(_L("TestNotAllocated %d\n"),aSize); |
|
521 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, EFalse); |
|
522 |
test(pA!=NULL); |
|
523 |
test(pA->Avail()==0); |
|
524 |
test(!pA->NotAllocated(0,aSize)); |
|
525 |
TInt i; |
|
526 |
for (i=0; i<aSize; ++i) |
|
527 |
{ |
|
528 |
pA->Free(i); |
|
529 |
test(pA->NotAllocated(0,aSize)); |
|
530 |
TInt j; |
|
531 |
for (j=1; j*j<=i || j*j+i<=aSize; ++j) |
|
532 |
{ |
|
533 |
TInt a=Max(i-j*j,0); |
|
534 |
TInt b=Min(i+j*j,aSize); |
|
535 |
test(pA->NotAllocated(a,b-a)); |
|
536 |
} |
|
537 |
pA->Alloc(i,1); |
|
538 |
test(!pA->NotAllocated(0,aSize)); |
|
539 |
} |
|
540 |
const TInt begin[]={0,1,2,7,16,29,31,32,33,63,64,65,83,128}; |
|
541 |
const TInt size[]={2,3,7,16,23,31,32,33,63,64,65,89,128}; |
|
542 |
const TInt* pB=begin; |
|
543 |
const TInt* pBE=pB+sizeof(begin)/sizeof(TInt); |
|
544 |
const TInt* pS=size; |
|
545 |
const TInt* pSE=pS+sizeof(size)/sizeof(TInt); |
|
546 |
for (; pB<pBE; ++pB) |
|
547 |
{ |
|
548 |
TInt b=*pB; |
|
549 |
if (b>=aSize) |
|
550 |
continue; |
|
551 |
for (; pS<pSE; ++pS) |
|
552 |
{ |
|
553 |
TInt l=*pS; |
|
554 |
if (b+l>aSize) |
|
555 |
continue; |
|
556 |
pA->Free(b,l); |
|
557 |
TInt j; |
|
558 |
for (j=1; j<aSize; ++j) |
|
559 |
{ |
|
560 |
if (j<=b) |
|
561 |
test(!pA->NotAllocated(0,j)); |
|
562 |
else |
|
563 |
test(pA->NotAllocated(0,j)); |
|
564 |
if (aSize-j>=b+l) |
|
565 |
test(!pA->NotAllocated(aSize-j,j)); |
|
566 |
else |
|
567 |
test(pA->NotAllocated(aSize-j,j)); |
|
568 |
} |
|
569 |
pA->Alloc(b,l); |
|
570 |
} |
|
571 |
} |
|
572 |
delete pA; |
|
573 |
} |
|
574 |
||
575 |
void TestAllocList(TInt aSize) |
|
576 |
{ |
|
577 |
test.Printf(_L("TestAllocList %d\n"),aSize); |
|
578 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, EFalse); |
|
579 |
test(pA!=NULL); |
|
580 |
test(pA->Avail()==0); |
|
581 |
TInt i; |
|
582 |
TInt list[256]; |
|
583 |
for (i=0; i<aSize; ++i) |
|
584 |
{ |
|
585 |
pA->Free(i); |
|
586 |
test(pA->AllocList(128,list)==1); |
|
587 |
test(list[0]==i); |
|
588 |
test(pA->Avail()==0); |
|
589 |
} |
|
590 |
TInt j; |
|
591 |
for (i=0; i<aSize-1; ++i) |
|
592 |
{ |
|
593 |
for (j=i+1; j<aSize; ++j) |
|
594 |
{ |
|
595 |
pA->Free(i); |
|
596 |
pA->Free(j); |
|
597 |
test(pA->AllocList(1,list)==1); |
|
598 |
test(list[0]==i); |
|
599 |
test(pA->Avail()==1); |
|
600 |
pA->Free(i); |
|
601 |
test(pA->AllocList(128,list)==2); |
|
602 |
test(list[0]==i && list[1]==j); |
|
603 |
test(pA->Avail()==0); |
|
604 |
} |
|
605 |
} |
|
606 |
TInt l; |
|
607 |
for (l=1; l<80; ++l) |
|
608 |
{ |
|
609 |
if (2*l+1>aSize) |
|
610 |
break; |
|
611 |
for (i=l+1; i<=aSize-l; ++i) |
|
612 |
{ |
|
613 |
pA->Free(0,l); |
|
614 |
pA->Free(i,l); |
|
615 |
test(pA->Avail()==2*l); |
|
616 |
TInt l2; |
|
617 |
for (l2=Max(l-1,1); l2<=2*l; ++l2) |
|
618 |
{ |
|
619 |
TInt r=pA->AllocList(l2,list); |
|
620 |
// test.Printf(_L("l2=%d r=%d\n"),l2,r); |
|
621 |
test(r==l2); |
|
622 |
for (j=0; j<Min(l2,l); j++) |
|
623 |
test(list[j]==j); |
|
624 |
for (j=l; j<l2; j++) |
|
625 |
test(list[j]==j-l+i); |
|
626 |
for (j=0; j<l2; ++j) |
|
627 |
pA->Free(list[j]); |
|
628 |
pA->SelectiveFree(0,l); |
|
629 |
pA->SelectiveFree(i,l); |
|
630 |
test(pA->Avail()==2*l); |
|
631 |
} |
|
632 |
pA->Alloc(0,l); |
|
633 |
pA->Alloc(i,l); |
|
634 |
Check(*pA); |
|
635 |
} |
|
636 |
} |
|
637 |
delete pA; |
|
638 |
} |
|
639 |
||
640 |
void TestSelectiveFree(TInt aSize) |
|
641 |
{ |
|
642 |
test.Printf(_L("TestSelectiveFree %d\n"),aSize); |
|
643 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, ETrue); |
|
644 |
test(pA!=NULL); |
|
645 |
test(pA->Avail()==aSize); |
|
646 |
TInt i; |
|
647 |
TInt j; |
|
648 |
TInt l; |
|
649 |
for (i=2; i<8; ++i) |
|
650 |
{ |
|
651 |
for (l=1; l<=aSize; ++l) |
|
652 |
{ |
|
653 |
new (pA) TBitMapAllocator(aSize, ETrue); |
|
654 |
for (j=0; j<aSize; j+=i) |
|
655 |
pA->Alloc(j,1); |
|
656 |
TInt orig=pA->Avail(); |
|
657 |
test(orig==aSize-(aSize+i-1)/i); |
|
658 |
pA->SelectiveFree(0,l); |
|
659 |
TInt freed=pA->Avail()-orig; |
|
660 |
test(freed==(l+i-1)/i); |
|
661 |
Check(*pA); |
|
662 |
} |
|
663 |
} |
|
664 |
for (i=0; i<=Min(32,aSize-1); ++i) |
|
665 |
{ |
|
666 |
for (l=1; l<=aSize-i; ++l) |
|
667 |
{ |
|
668 |
for (j=1; j<=aSize; ++j) |
|
669 |
{ |
|
670 |
new (pA) TBitMapAllocator(aSize, ETrue); |
|
671 |
pA->Alloc(i,l); |
|
672 |
test(pA->Avail()==aSize-l); |
|
673 |
pA->SelectiveFree(0,j); |
|
674 |
test(pA->Avail()==aSize-l+Max(0,Min(i+l,j)-i)); |
|
675 |
test(!pA->NotFree(0,j)); |
|
676 |
if (j>=i && j<i+l) |
|
677 |
test(pA->NotFree(0,j+1)); |
|
678 |
Check(*pA); |
|
679 |
} |
|
680 |
} |
|
681 |
} |
|
682 |
delete pA; |
|
683 |
} |
|
684 |
||
26
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
685 |
|
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
686 |
void TestSelectiveAlloc(TInt aSize) |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
687 |
{ |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
688 |
test.Printf(_L("TestSelectiveAlloc %d\n"),aSize); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
689 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, ETrue); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
690 |
test(pA!=NULL); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
691 |
test(pA->Avail()==aSize); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
692 |
// Allocate whole free bma |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
693 |
test_Equal(aSize, pA->SelectiveAlloc(0, aSize)); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
694 |
test_Equal(0,pA->Avail()); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
695 |
// Allocate whole full bma |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
696 |
test_Equal(0, pA->SelectiveAlloc(0, aSize)); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
697 |
test_Equal(0,pA->Avail()); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
698 |
TInt i; |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
699 |
TInt j; |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
700 |
TInt l; |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
701 |
for (i=2; i<8; ++i) |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
702 |
{ |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
703 |
for (l=1; l<=aSize; ++l) |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
704 |
{ |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
705 |
new (pA) TBitMapAllocator(aSize, ETrue); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
706 |
for (j=0; j<aSize; j+=i) |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
707 |
pA->Alloc(j,1); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
708 |
TInt orig=pA->Avail(); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
709 |
test_Equal(aSize-(aSize+i-1)/i, orig); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
710 |
TUint newAllocs = pA->SelectiveAlloc(0,l); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
711 |
TInt allocated = orig - pA->Avail(); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
712 |
test_Equal(allocated, newAllocs); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
713 |
test_Equal(l - (l+i-1)/i, allocated); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
714 |
Check(*pA); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
715 |
} |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
716 |
} |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
717 |
for (i=0; i<=Min(32,aSize-1); ++i) |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
718 |
{ |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
719 |
for (l=1; l<=aSize-i; ++l) |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
720 |
{ |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
721 |
for (j=1; j<=aSize; ++j) |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
722 |
{ |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
723 |
new (pA) TBitMapAllocator(aSize, ETrue); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
724 |
pA->Alloc(i,l); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
725 |
test_Equal(aSize-l, pA->Avail()); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
726 |
TUint newAllocs = pA->SelectiveAlloc(0,j); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
727 |
TUint allocated = j - Max(0,Min(i+l,j)-i); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
728 |
test_Equal(allocated, newAllocs); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
729 |
test_Equal(pA->Avail(), aSize-l-allocated); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
730 |
test(!pA->NotAllocated(0,j)); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
731 |
if (j>=i && j<i+l) |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
732 |
test(!pA->NotAllocated(0,j+1)); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
733 |
Check(*pA); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
734 |
} |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
735 |
} |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
736 |
} |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
737 |
delete pA; |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
738 |
} |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
739 |
|
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
740 |
|
0 | 741 |
TBitMapAllocator* DoSetupBMA(TInt aSize, VA_LIST aList) |
742 |
{ |
|
743 |
TBitMapAllocator* pA=TBitMapAllocator::New(aSize, EFalse); |
|
744 |
test(pA!=NULL); |
|
745 |
test(pA->Avail()==0); |
|
746 |
TInt totalfree=0; |
|
747 |
FOREVER |
|
748 |
{ |
|
749 |
TInt i=VA_ARG(aList,TInt); |
|
750 |
if (i<0) |
|
751 |
break; |
|
752 |
TInt l=VA_ARG(aList,TInt); |
|
753 |
pA->Free(i,l); |
|
754 |
totalfree+=l; |
|
755 |
} |
|
756 |
test(pA->Avail()==totalfree); |
|
757 |
return pA; |
|
758 |
} |
|
759 |
||
760 |
TBitMapAllocator* SetupBMA(TInt aSize, ...) |
|
761 |
{ |
|
762 |
VA_LIST list; |
|
763 |
VA_START(list,aSize); |
|
764 |
return DoSetupBMA(aSize,list); |
|
765 |
} |
|
766 |
||
767 |
void PopulateRangeArray(RArray<SRange>& aArray, VA_LIST aList) |
|
768 |
{ |
|
769 |
aArray.Reset(); |
|
770 |
TInt n=0; |
|
771 |
FOREVER |
|
772 |
{ |
|
773 |
SRange rng; |
|
774 |
rng.iBase=VA_ARG(aList,TInt); |
|
775 |
if (rng.iBase<0) |
|
776 |
break; |
|
777 |
rng.iLength=VA_ARG(aList,TInt); |
|
778 |
rng.iLength<<=8; |
|
779 |
rng.iLength+=n; |
|
780 |
++n; |
|
781 |
test(aArray.Append(rng)==KErrNone); |
|
782 |
} |
|
783 |
} |
|
784 |
||
785 |
TInt FirstFitPos(RArray<SRange>& aArray, TInt aLength) |
|
786 |
{ |
|
787 |
TInt c=aArray.Count(); |
|
788 |
SRange* pR=&aArray[0]; |
|
789 |
SRange* pE=pR+c; |
|
790 |
for (; pR<pE; ++pR) |
|
791 |
{ |
|
792 |
TInt l=pR->iLength>>8; |
|
793 |
if (l>=aLength) |
|
794 |
{ |
|
795 |
// test.Printf(_L("FFP %d = %d\n"),aLength,pR->iBase); |
|
796 |
return pR->iBase; |
|
797 |
} |
|
798 |
} |
|
799 |
// test.Printf(_L("FFP %d = -1\n"),aLength); |
|
800 |
return -1; |
|
801 |
} |
|
802 |
||
803 |
TInt AlignedFirstFitPos(RArray<SRange>& aArray, TInt aSize, TInt aLength, TInt aAlign, TInt aBase, TInt aOffset=0, TBool aBestFit=EFalse) |
|
804 |
{ |
|
805 |
TInt alignSize=1<<aAlign; |
|
806 |
TInt alignMask=alignSize-1; |
|
807 |
TInt minRun=0; |
|
808 |
TInt minRunStart=0; |
|
809 |
TBool runFound = EFalse; |
|
810 |
TInt c=aArray.Count(); |
|
811 |
SRange* pR=&aArray[0]; |
|
812 |
// Best fit mode should ignore any final run TBitMapAllocator will |
|
813 |
// always ignore the final run in best fit mode and rely on carry being |
|
814 |
// checked by the caller. |
|
815 |
SRange* pE = pR + c - 1; |
|
816 |
if (!aBestFit || aSize > pE->iBase + (pE->iLength >> 8)) |
|
817 |
pE++; |
|
818 |
||
819 |
for (; pR<pE; ++pR) |
|
820 |
{ |
|
821 |
TInt l=pR->iLength>>8; |
|
822 |
TInt b=pR->iBase; |
|
823 |
if (aOffset != 0) |
|
824 |
{ |
|
825 |
aOffset = ((aOffset + aBase + alignMask) & ~alignMask) - aBase; |
|
826 |
if (aOffset + aLength - 1 >= b + l) |
|
827 |
{// The offset is after the end of this region. |
|
828 |
continue; |
|
829 |
} |
|
830 |
l -= (aOffset <= b)? 0 : aOffset - b; |
|
831 |
b += (aOffset <= b)? 0 : aOffset - b; // Start the search from aOffset |
|
832 |
} |
|
833 |
TInt ab=((b+aBase+alignMask)&~alignMask)-aBase; |
|
834 |
TInt al = l + b - ab; |
|
835 |
if (al >= aLength) |
|
836 |
{ |
|
837 |
if (!aBestFit || l == aLength) |
|
838 |
{ |
|
839 |
// test.Printf(_L("AFFP %d %d %d = %d\n"),aLength,aAlign,aBase,ab); |
|
840 |
return ab; |
|
841 |
} |
|
842 |
if (!runFound || minRun > l) |
|
843 |
{ |
|
844 |
minRun = l; |
|
845 |
minRunStart = ab; |
|
846 |
runFound = ETrue; |
|
847 |
} |
|
848 |
} |
|
849 |
} |
|
850 |
if (runFound) |
|
851 |
{ |
|
852 |
return minRunStart; |
|
853 |
} |
|
854 |
// test.Printf(_L("AFFP %d %d %d = -1\n"),aLength,aAlign,aBase); |
|
855 |
return -1; |
|
856 |
} |
|
857 |
||
858 |
void DoConsecTest(TInt aSize, ...) |
|
859 |
{ |
|
860 |
test.Printf(_L("DoConsecTest %d\n"),aSize); |
|
861 |
VA_LIST list; |
|
862 |
VA_LIST list2; |
|
863 |
VA_START(list,aSize); |
|
864 |
VA_START(list2,aSize); |
|
865 |
TBitMapAllocator* pA=DoSetupBMA(aSize,list2); |
|
866 |
RArray<SRange> rangeArray(8,_FOFF(SRange,iLength)); |
|
867 |
PopulateRangeArray(rangeArray, list); |
|
868 |
TInt n; |
|
869 |
for (n=1; n<=aSize; ++n) |
|
870 |
{ |
|
871 |
TInt r1=pA->AllocConsecutive(n,EFalse); |
|
872 |
TInt r2=FirstFitPos(rangeArray,n); |
|
873 |
// test.Printf(_L("ALC(%d,0) = %d [%d]\n"),n,r1,r2); |
|
874 |
test_Equal(r2, r1); |
|
875 |
} |
|
876 |
rangeArray.SortUnsigned(); // sort array in ascending order of length |
|
877 |
for (n=1; n<=aSize; ++n) |
|
878 |
{ |
|
879 |
TInt r1=pA->AllocConsecutive(n,ETrue); |
|
880 |
TInt r2=FirstFitPos(rangeArray,n); |
|
881 |
// test.Printf(_L("ALC(%d,1) = %d [%d]\n"),n,r1,r2); |
|
882 |
test_Equal(r2, r1); |
|
883 |
} |
|
884 |
rangeArray.Close(); |
|
885 |
delete pA; |
|
886 |
} |
|
887 |
||
888 |
void DoAlignedTest(TInt aSize, ...) |
|
889 |
{ |
|
890 |
test.Printf(_L("DoAlignedTest %d\n"),aSize); |
|
891 |
VA_LIST list; |
|
892 |
VA_LIST list2; |
|
893 |
VA_START(list,aSize); |
|
894 |
VA_START(list2,aSize); |
|
895 |
TBitMapAllocator* pA=DoSetupBMA(aSize,list2); |
|
896 |
RArray<SRange> rangeArray(8,_FOFF(SRange,iLength)); |
|
897 |
PopulateRangeArray(rangeArray, list); |
|
898 |
TInt finalRunLength = 0; |
|
899 |
SRange& lastRun = rangeArray[rangeArray.Count() - 1]; |
|
900 |
if (lastRun.iBase + (lastRun.iLength>>8) == aSize) |
|
901 |
{// The last run is at the end of the bma. |
|
902 |
finalRunLength = lastRun.iLength >> 8; |
|
903 |
} |
|
904 |
TInt a; |
|
905 |
TInt b; |
|
906 |
TInt n; |
|
907 |
TUint offset; |
|
908 |
for (a=0; ((1<<a)<=aSize); ++a) |
|
909 |
{ |
|
910 |
TInt alignsize=1<<a; |
|
911 |
TInt alignmask=alignsize-1; |
|
912 |
for (b=0; b<(1<<a); ++b) |
|
913 |
{ |
|
914 |
// test.Printf(_L("size %d a=%d b=%d First\n"),aSize,a,b); |
|
915 |
for (n=1; n<=aSize; ++n) |
|
916 |
{ |
|
917 |
for (offset = 1; offset < (TUint)aSize; offset <<= 1) |
|
918 |
{ |
|
919 |
TInt carry = 0; |
|
920 |
TInt runLength; |
|
921 |
TInt r1=pA->AllocAligned(n,a,b,EFalse, carry, runLength, offset); |
|
922 |
TInt r2=AlignedFirstFitPos(rangeArray,aSize, n,a,b, offset); |
|
923 |
if (r2 < 0 && pA->iSize == pA->iAvail) |
|
924 |
{// Totally empty bmas return KErrOverflow on failure. |
|
925 |
r2 = KErrOverflow; |
|
926 |
} |
|
927 |
// test.Printf(_L("ALA %d %d %d %d 0 = %d [%d]\n"),n,a,b,offset,r1,r2); |
|
928 |
test( (r1<0) || ((r1+b)&alignmask)==0 ); |
|
929 |
test( (r1<0) || !pA->NotFree(r1,n)); |
|
930 |
test( (r1<0) || runLength >= n); |
|
931 |
test_Equal(r2, r1); |
|
932 |
} |
|
933 |
} |
|
934 |
} |
|
935 |
} |
|
936 |
for (a=0; ((1<<a)<=aSize); ++a) |
|
937 |
{ |
|
938 |
TInt alignsize=1<<a; |
|
939 |
TInt alignmask=alignsize-1; |
|
940 |
for (b=0; b<(1<<a); ++b) |
|
941 |
{ |
|
942 |
// test.Printf(_L("size %d a=%d b=%d Best\n"),aSize,a,b); |
|
943 |
for (n=1; n<=aSize; ++n) |
|
944 |
{// test for with offset=0 as that has screwed best fit in past. |
|
945 |
for (offset = 0; offset < (TUint)aSize; offset <<= 1) |
|
946 |
{ |
|
947 |
TInt carry = 0; |
|
948 |
TInt runLength; |
|
949 |
TInt r1=pA->AllocAligned(n,a,b,ETrue, carry, runLength, offset); |
|
950 |
TInt r2=AlignedFirstFitPos(rangeArray,aSize, n,a,b, offset, ETrue); |
|
951 |
if (pA->iSize == pA->iAvail) |
|
952 |
{// Totally empty bmas return KErrOverflow always on best fit mode. |
|
953 |
r2 = KErrOverflow; |
|
954 |
} |
|
955 |
// test.Printf(_L("ALA %d %d %d 1 = %d [%d]\n"),n,a,b,r1,r2); |
|
956 |
test( (r1<0) || ((r1+b)&alignmask)==0 ); |
|
957 |
test( (r1<0) || !pA->NotFree(r1,n)); |
|
958 |
test( (r1<0) || runLength >= n); |
|
959 |
test_Equal(r2, r1); |
|
960 |
// No carry in so if run found then carry should be zero. |
|
961 |
// If no run found then carry should set to the length of |
|
962 |
// any run at the end of the bma minus the aligned offset. |
|
963 |
TInt lost = 0; |
|
964 |
TInt alignOffset = ((offset + b + alignmask) & ~alignmask) - b; |
|
965 |
if (finalRunLength && offset && lastRun.iBase < alignOffset) |
|
966 |
{// This search had started past the start of the final run |
|
967 |
// so the final run length found will be shorter than its |
|
968 |
// total length. |
|
969 |
if (alignOffset < aSize) |
|
970 |
{ |
|
971 |
lost = Min(alignOffset - lastRun.iBase, finalRunLength); |
|
972 |
} |
|
973 |
else // alignedOffset starts past end of bma. |
|
974 |
lost = finalRunLength; |
|
975 |
} |
|
976 |
test((r1>=0 && carry == 0) || carry == finalRunLength - lost); |
|
977 |
offset = (offset)? offset : 1; |
|
978 |
} |
|
979 |
} |
|
980 |
} |
|
981 |
} |
|
982 |
rangeArray.Close(); |
|
983 |
delete pA; |
|
984 |
} |
|
985 |
||
986 |
void Clone(TAny* aDest, const TBitMapAllocator* aSrc) |
|
987 |
{ |
|
988 |
TInt nmapw=(aSrc->iSize+31)>>5; |
|
989 |
TInt memsz=sizeof(TBitMapAllocator)+(nmapw-1)*sizeof(TUint32); |
|
990 |
Mem::Move(aDest,aSrc,memsz); |
|
991 |
} |
|
992 |
||
993 |
void TestAllocConsecutive() |
|
994 |
{ |
|
995 |
test.Printf(_L("TestAllocConsecutive\n")); |
|
996 |
DoConsecTest(256, 0,4 , 20,8 , 38,1 , 58,6 , 65,10, 78,16 , 127,72, 222,19 , 244,12 , -1); |
|
997 |
DoConsecTest(255, 0,2 , 3,2 , 6,3 , 10,3 , 14,5 , 20,5 , 26,7 , 34,7 , 42,11 , 54,11 , 66,13 , 80,37, |
|
998 |
118,19 , 138,23 , 162,47 , 254,1 , -1); |
|
999 |
DoConsecTest(1023, 0,2 , 32,32 , 65,31 , 99,30 , 144,64 , 256,519 , 776,1, 778,245 , -1); |
|
1000 |
||
1001 |
DoAlignedTest(256, 0,4 , 20,8 , 38,1 , 58,6 , 65,10, 78,16 , 127,72, 222,19 , 244,12 , -1); |
|
1002 |
DoAlignedTest(255, 0,2 , 3,2 , 6,3 , 10,3 , 14,5 , 20,5 , 26,7 , 34,7 , 42,11 , 54,11 , 66,13 , 80,37, |
|
1003 |
118,19 , 138,23 , 162,47 , 254,1 , -1); |
|
1004 |
DoAlignedTest(1023, 0,2 , 32,32 , 65,31 , 99,30 , 144,64 , 256,519 , 776,1, 778,245 , -1); |
|
1005 |
// Test some completely free bmas |
|
1006 |
DoAlignedTest(255, 0,255, -1); |
|
1007 |
DoAlignedTest(256, 0,256, -1); |
|
1008 |
DoAlignedTest(1023, 0,1023, -1); |
|
1009 |
DoAlignedTest(1024, 0,1024, -1); |
|
1010 |
} |
|
1011 |
||
1012 |
void DoTestChain(const TBitMapAllocator& aBma, TInt aNumSplits, ...) |
|
1013 |
{ |
|
1014 |
test.Printf(_L("DoTestChain %d %d\n"),aBma.iSize,aNumSplits); |
|
1015 |
VA_LIST list; |
|
1016 |
VA_START(list,aNumSplits); |
|
1017 |
||
1018 |
TBmaList* pL=TBmaList::New(aBma,aNumSplits,list); |
|
1019 |
test(pL!=NULL); |
|
1020 |
||
1021 |
TInt n; |
|
1022 |
for (n=1; n<=aBma.iSize; ++n) |
|
1023 |
{ |
|
1024 |
TInt r1=aBma.AllocConsecutive(n,EFalse); |
|
1025 |
TInt r2=pL->AllocConsecutiveFF(n); |
|
1026 |
// test.Printf(_L("CHAIN C FF %d: r1=%d r2=%d\n"),n,r1,r2); |
|
1027 |
test(r1==r2); |
|
1028 |
} |
|
1029 |
for (n=1; n<=aBma.iSize; ++n) |
|
1030 |
{ |
|
1031 |
TInt r1=aBma.AllocConsecutive(n,ETrue); |
|
1032 |
TInt r2=pL->AllocConsecutiveBF(n); |
|
1033 |
// test.Printf(_L("CHAIN C BF %d: r1=%d r2=%d\n"),n,r1,r2); |
|
1034 |
test(r1==r2); |
|
1035 |
} |
|
1036 |
||
1037 |
TInt a; |
|
1038 |
for (a=0; ((1<<a)<=aBma.iSize); ++a) |
|
1039 |
{ |
|
1040 |
for (n=1; n<=aBma.iSize; ++n) |
|
1041 |
{ |
|
1042 |
if (n==264 && a==9) |
|
1043 |
{ |
|
1044 |
++n; |
|
1045 |
--n; |
|
1046 |
} |
|
1047 |
TInt r1=aBma.AllocAligned(n,a,0,EFalse); |
|
1048 |
TInt r2=pL->AllocAlignedFF(n,a); |
|
1049 |
// test.Printf(_L("CHAIN A FF %d,%d: r1=%d r2=%d\n"),n,a,r1,r2); |
|
1050 |
test(r1==r2); |
|
1051 |
} |
|
1052 |
} |
|
1053 |
for (a=0; ((1<<a)<=aBma.iSize); ++a) |
|
1054 |
{ |
|
1055 |
for (n=1; n<=aBma.iSize; ++n) |
|
1056 |
{ |
|
1057 |
if (n==240 && a==3) |
|
1058 |
{ |
|
1059 |
++n; |
|
1060 |
--n; |
|
1061 |
} |
|
1062 |
TInt r1=aBma.AllocAligned(n,a,0,ETrue); |
|
1063 |
TInt r2=pL->AllocAlignedBF(n,a); |
|
1064 |
// test.Printf(_L("CHAIN A BF %d,%d: r1=%d r2=%d\n"),n,a,r1,r2); |
|
1065 |
test(r1==r2); |
|
1066 |
} |
|
1067 |
} |
|
1068 |
||
1069 |
delete pL; |
|
1070 |
} |
|
1071 |
||
1072 |
void TestChain() |
|
1073 |
{ |
|
1074 |
test.Printf(_L("TestChain\n")); |
|
1075 |
TBitMapAllocator* pA; |
|
1076 |
pA=SetupBMA(1023, 0,2 , 32,32 , 65,31 , 99,30 , 144,64 , 256,519 , 776,1, 778,245 , -1); |
|
1077 |
test(pA!=NULL); |
|
1078 |
DoTestChain(*pA, 2, 300, 700); |
|
1079 |
DoTestChain(*pA, 3, 64, 301, 702); |
|
1080 |
delete pA; |
|
1081 |
pA=SetupBMA(512, 0,2 , 20,10 , 32,32 , 65,31 , 144,64 , 399,113 , -1); |
|
1082 |
test(pA!=NULL); |
|
1083 |
DoTestChain(*pA, 2, 256, 384); |
|
1084 |
DoTestChain(*pA, 3, 128, 256, 384); |
|
1085 |
DoTestChain(*pA, 3, 80, 208, 384); |
|
1086 |
DoTestChain(*pA, 3, 80, 208, 400); |
|
1087 |
delete pA; |
|
1088 |
} |
|
1089 |
||
1090 |
void TestBitOps() |
|
1091 |
{ |
|
1092 |
test.Next(_L("Bit operations (32 bit)")); |
|
1093 |
test(__e32_find_ls1_32(0x00000000)==-1); |
|
1094 |
TInt i, j, k; |
|
1095 |
TInt count = 0; |
|
1096 |
for (i=0; i<=31; ++i) |
|
1097 |
test(__e32_find_ls1_32(1u<<i)==i); |
|
1098 |
TUint x = 0; |
|
1099 |
for (i=0; i<1000; ++i) |
|
1100 |
{ |
|
1101 |
x = 69069*x + 41; |
|
1102 |
TInt bit = x&31; |
|
1103 |
||
1104 |
x = 69069*x + 41; |
|
1105 |
TUint y = ((x|1)<<bit); |
|
1106 |
||
1107 |
test(__e32_find_ls1_32(y) == bit); |
|
1108 |
} |
|
1109 |
||
1110 |
test(__e32_find_ms1_32(0x00000000)==-1); |
|
1111 |
for (i=0; i<=31; ++i) |
|
1112 |
test(__e32_find_ms1_32(1u<<i)==i); |
|
1113 |
for (i=0; i<1000; ++i) |
|
1114 |
{ |
|
1115 |
x = 69069*x + 41; |
|
1116 |
TInt bit = x&31; |
|
1117 |
||
1118 |
x = 69069*x + 41; |
|
1119 |
TUint y = ((x|0x80000000u)>>bit); |
|
1120 |
||
1121 |
test(__e32_find_ms1_32(y) == 31-bit); |
|
1122 |
} |
|
1123 |
||
1124 |
test(__e32_bit_count_32(0)==0); |
|
1125 |
test(__e32_bit_count_32(0xffffffff)==32); |
|
1126 |
for (i=0; i<32; ++i) |
|
1127 |
{ |
|
1128 |
TUint32 y = 0xffffffffu << i; |
|
1129 |
TUint32 z = 0xffffffffu >> i; |
|
1130 |
test(__e32_bit_count_32(y) == 32-i); |
|
1131 |
test(__e32_bit_count_32(z) == 32-i); |
|
1132 |
test(__e32_bit_count_32(~y) == i); |
|
1133 |
test(__e32_bit_count_32(~z) == i); |
|
1134 |
} |
|
1135 |
for (i=0; i<32; ++i) |
|
1136 |
for (j=0; j<32; ++j) |
|
1137 |
for (k=0; k<32; ++k) |
|
1138 |
{ |
|
1139 |
TUint32 b0 = 1u<<i; |
|
1140 |
TUint32 b1 = 1u<<j; |
|
1141 |
TUint32 b2 = 1u<<k; |
|
1142 |
TUint32 y = b0 | b1 | b2; |
|
1143 |
TInt n; |
|
1144 |
if (i==j && j==k) n=1; |
|
1145 |
else if (i==j || j==k || i==k) n=2; |
|
1146 |
else n=3; |
|
1147 |
test(__e32_bit_count_32(y) == n); |
|
1148 |
test(__e32_bit_count_32(~y) == 32-n); |
|
1149 |
++count; |
|
1150 |
} |
|
1151 |
test.Printf(_L("%d iterations done\n"), count); |
|
1152 |
for (i=0; i<=31; ++i) |
|
1153 |
{ |
|
1154 |
test(__e32_bit_count_32(0xaaaaaaaau<<i)==16-(i+1)/2); |
|
1155 |
test(__e32_bit_count_32(0x55555555u<<i)==16-i/2); |
|
1156 |
} |
|
1157 |
test(__e32_bit_count_32(0x33333333u)==16); |
|
1158 |
test(__e32_bit_count_32(0x88888888u)==8); |
|
1159 |
||
1160 |
test.Next(_L("Bit operations (64 bit)")); |
|
1161 |
test(__e32_find_ls1_64(0x00000000)==-1); |
|
1162 |
for (i=0; i<=63; ++i) |
|
1163 |
{ |
|
1164 |
TUint64 x = 1u; |
|
1165 |
x<<=i; |
|
1166 |
test(__e32_find_ls1_64(x)==i); |
|
1167 |
} |
|
1168 |
x = 487; |
|
1169 |
for (i=0; i<1000; ++i) |
|
1170 |
{ |
|
1171 |
x = 69069*x + 41; |
|
1172 |
TInt bit = x&63; |
|
1173 |
||
1174 |
x = 69069*x + 41; |
|
1175 |
TUint32 xl = x|1; |
|
1176 |
x = 69069*x + 41; |
|
1177 |
TUint32 xh = x; |
|
1178 |
TUint64 y = MAKE_TUINT64(xh,xl); |
|
1179 |
y <<= bit; |
|
1180 |
test(__e32_find_ls1_64(y) == bit); |
|
1181 |
} |
|
1182 |
||
1183 |
test(__e32_find_ms1_64(0x00000000)==-1); |
|
1184 |
for (i=0; i<=63; ++i) |
|
1185 |
{ |
|
1186 |
TUint64 x = 1u; |
|
1187 |
x<<=i; |
|
1188 |
test(__e32_find_ms1_64(x)==i); |
|
1189 |
} |
|
1190 |
x = 1039; |
|
1191 |
for (i=0; i<1000; ++i) |
|
1192 |
{ |
|
1193 |
x = 69069*x + 41; |
|
1194 |
TInt bit = x&63; |
|
1195 |
||
1196 |
x = 69069*x + 41; |
|
1197 |
TUint32 xl = x; |
|
1198 |
x = 69069*x + 41; |
|
1199 |
TUint32 xh = x|0x80000000u; |
|
1200 |
TUint64 y = MAKE_TUINT64(xh,xl); |
|
1201 |
y >>= bit; |
|
1202 |
test(__e32_find_ms1_64(y) == 63-bit); |
|
1203 |
} |
|
1204 |
||
1205 |
test(__e32_bit_count_64(0)==0); |
|
1206 |
test(__e32_bit_count_64(MAKE_TUINT64(0x00000000,0xffffffff))==32); |
|
1207 |
test(__e32_bit_count_64(MAKE_TUINT64(0xffffffff,0x00000000))==32); |
|
1208 |
test(__e32_bit_count_64(MAKE_TUINT64(0xffffffff,0xffffffff))==64); |
|
1209 |
for (i=0; i<64; ++i) |
|
1210 |
{ |
|
1211 |
TUint64 y = MAKE_TUINT64(0xffffffff,0xffffffff); |
|
1212 |
TUint64 z = y >> i; |
|
1213 |
y <<= i; |
|
1214 |
test(__e32_bit_count_64(y) == 64-i); |
|
1215 |
test(__e32_bit_count_64(z) == 64-i); |
|
1216 |
test(__e32_bit_count_64(~y) == i); |
|
1217 |
test(__e32_bit_count_64(~z) == i); |
|
1218 |
} |
|
1219 |
count = 0; |
|
1220 |
for (i=0; i<64; ++i) |
|
1221 |
for (j=0; j<64; ++j) |
|
1222 |
for (k=0; k<64; ++k) |
|
1223 |
{ |
|
1224 |
TUint64 b0 = 1u; |
|
1225 |
TUint64 b1 = 1u; |
|
1226 |
TUint64 b2 = 1u; |
|
1227 |
b0 <<= i; |
|
1228 |
b1 <<= j; |
|
1229 |
b2 <<= k; |
|
1230 |
TUint64 y = b0 | b1 | b2; |
|
1231 |
TUint64 z = ~y; |
|
1232 |
TInt n; |
|
1233 |
if (i==j && j==k) n=1; |
|
1234 |
else if (i==j || j==k || i==k) n=2; |
|
1235 |
else n=3; |
|
1236 |
test(__e32_bit_count_64(y) == n); |
|
1237 |
test(__e32_bit_count_64(z) == 64-n); |
|
1238 |
++count; |
|
1239 |
} |
|
1240 |
test.Printf(_L("%d iterations done\n"), count); |
|
1241 |
for (i=0; i<64; ++i) |
|
1242 |
{ |
|
1243 |
TUint64 y = MAKE_TUINT64(0xaaaaaaaa,0xaaaaaaaa); |
|
1244 |
TUint64 z = ~y; |
|
1245 |
test(__e32_bit_count_64(y<<i)==32-(i+1)/2); |
|
1246 |
test(__e32_bit_count_64(z<<i)==32-i/2); |
|
1247 |
} |
|
1248 |
test(__e32_bit_count_64(MAKE_TUINT64(0x33333333u,0x33333333u))==32); |
|
1249 |
test(__e32_bit_count_64(MAKE_TUINT64(0x88888888u,0x88888888u))==16); |
|
1250 |
} |
|
1251 |
||
1252 |
GLDEF_C TInt E32Main() |
|
1253 |
{ |
|
1254 |
test.Title(); |
|
1255 |
__UHEAP_MARK; |
|
1256 |
test.Start(_L("TBitMapAllocator tests")); |
|
1257 |
||
1258 |
TestBitOps(); |
|
1259 |
||
1260 |
TestConstruct(3); |
|
1261 |
TestConstruct(29); |
|
1262 |
TestConstruct(256); |
|
1263 |
TestConstruct(487); |
|
1264 |
||
1265 |
TestAlloc1(3); |
|
1266 |
TestAlloc1(29); |
|
1267 |
TestAlloc1(256); |
|
1268 |
TestAlloc1(181); |
|
1269 |
||
1270 |
TestFree1(3); |
|
1271 |
TestFree1(29); |
|
1272 |
TestFree1(256); |
|
1273 |
TestFree1(181); |
|
1274 |
||
1275 |
TestBlockAlloc(3); |
|
1276 |
TestBlockAlloc(29); |
|
1277 |
TestBlockAlloc(256); |
|
1278 |
TestBlockAlloc(179); |
|
1279 |
||
1280 |
TestBlockFree(3); |
|
1281 |
TestBlockFree(31); |
|
1282 |
TestBlockFree(256); |
|
1283 |
TestBlockFree(149); |
|
1284 |
||
1285 |
TestNotFree(3); |
|
1286 |
TestNotFree(31); |
|
1287 |
TestNotFree(256); |
|
1288 |
TestNotFree(149); |
|
1289 |
||
1290 |
TestNotAllocated(3); |
|
1291 |
TestNotAllocated(31); |
|
1292 |
TestNotAllocated(256); |
|
1293 |
TestNotAllocated(149); |
|
1294 |
||
1295 |
TestAllocList(3); |
|
1296 |
TestAllocList(31); |
|
1297 |
TestAllocList(128); |
|
1298 |
TestAllocList(149); |
|
1299 |
||
1300 |
TestSelectiveFree(3); |
|
1301 |
TestSelectiveFree(31); |
|
1302 |
TestSelectiveFree(128); |
|
1303 |
TestSelectiveFree(149); |
|
1304 |
||
26
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
1305 |
TestSelectiveAlloc(3); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
1306 |
TestSelectiveAlloc(31); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
1307 |
TestSelectiveAlloc(128); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
1308 |
TestSelectiveAlloc(149); |
c734af59ce98
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
1309 |
|
0 | 1310 |
TestAllocConsecutive(); |
1311 |
||
1312 |
TestChain(); |
|
1313 |
||
1314 |
__UHEAP_MARKEND; |
|
1315 |
test.End(); |
|
1316 |
return 0; |
|
1317 |
} |