VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstHeapSimple.cpp@ 6677

Last change on this file since 6677 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:keywords set to Id
File size: 6.9 KB
Line 
1/* $Id $ */
2/** @file
3 * innotek Portable Runtime Testcase - Simple Heap.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27/*******************************************************************************
28* Header Files *
29*******************************************************************************/
30#include <iprt/heap.h>
31#include <iprt/initterm.h>
32#include <iprt/err.h>
33#include <iprt/stream.h>
34#include <iprt/string.h>
35#include <iprt/param.h>
36#include <iprt/assert.h>
37
38
39int main(int argc, char *argv[])
40{
41 /*
42 * Init runtime.
43 */
44 int rc = RTR3Init();
45 if (RT_FAILURE(rc))
46 {
47 RTPrintf("RTR3Init failed: %Vrc\n", rc);
48 return 1;
49 }
50 RTPrintf("tstHeapSimple: TESTING...\n");
51
52 /*
53 * Create a heap.
54 */
55 static uint8_t s_abMem[128*1024];
56 RTHEAPSIMPLE Heap;
57 rc = RTHeapSimpleInit(&Heap, &s_abMem[1], sizeof(s_abMem) - 1);
58 if (RT_FAILURE(rc))
59 {
60 RTPrintf("RTHeapSimpleInit failed: %Vrc\n", rc);
61 return 1;
62 }
63
64 /*
65 * Try allocate.
66 */
67 static struct
68 {
69 size_t cb;
70 unsigned uAlignment;
71 void *pvAlloc;
72 unsigned iFreeOrder;
73 } aOps[] =
74 {
75 { 16, 0, NULL, 0 }, // 0
76 { 16, 4, NULL, 1 },
77 { 16, 8, NULL, 2 },
78 { 16, 16, NULL, 5 },
79 { 16, 32, NULL, 4 },
80 { 32, 0, NULL, 3 }, // 5
81 { 31, 0, NULL, 6 },
82 { 1024, 0, NULL, 8 },
83 { 1024, 32, NULL, 10 },
84 { 1024, 32, NULL, 12 },
85 { PAGE_SIZE, PAGE_SIZE, NULL, 13 }, // 10
86 { 1024, 32, NULL, 9 },
87 { PAGE_SIZE, 32, NULL, 11 },
88 { PAGE_SIZE, PAGE_SIZE, NULL, 14 },
89 { 16, 0, NULL, 15 },
90 { 9, 0, NULL, 7 }, // 15
91 { 16, 0, NULL, 7 },
92 { 36, 0, NULL, 7 },
93 { 16, 0, NULL, 7 },
94 { 12344, 0, NULL, 7 },
95 { 50, 0, NULL, 7 }, // 20
96 { 16, 0, NULL, 7 },
97 };
98 unsigned i;
99 RTHeapSimpleDump(Heap, (PFNRTHEAPSIMPLEPRINTF)RTPrintf);
100 size_t cbBefore = RTHeapSimpleGetFreeSize(Heap);
101 static char szFill[] = "01234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
102
103 /* allocate */
104 for (i = 0; i < ELEMENTS(aOps); i++)
105 {
106 aOps[i].pvAlloc = RTHeapSimpleAlloc(Heap, aOps[i].cb, aOps[i].uAlignment);
107 if (!aOps[i].pvAlloc)
108 {
109 RTPrintf("Failure: RTHeapSimpleAlloc(%p, %#x, %#x,) -> NULL i=%d\n", (void *)Heap, aOps[i].cb, aOps[i].uAlignment, i);
110 return 1;
111 }
112 memset(aOps[i].pvAlloc, szFill[i], aOps[i].cb);
113 if (RT_ALIGN_P(aOps[i].pvAlloc, (aOps[i].uAlignment ? aOps[i].uAlignment : 8)) != aOps[i].pvAlloc)
114 {
115 RTPrintf("Failure: RTHeapSimpleAlloc(%p, %#x, %#x,) -> %p\n", (void *)Heap, aOps[i].cb, aOps[i].uAlignment, i);
116 return 1;
117 }
118 }
119
120 /* free and allocate the same node again. */
121 for (i = 0; i < ELEMENTS(aOps); i++)
122 {
123 if (!aOps[i].pvAlloc)
124 continue;
125 //RTPrintf("debug: i=%d pv=%#x cb=%#zx align=%#zx cbReal=%#zx\n", i, aOps[i].pvAlloc,
126 // aOps[i].cb, aOps[i].uAlignment, RTHeapSimpleSize(Heap, aOps[i].pvAlloc));
127 size_t cbBeforeSub = RTHeapSimpleGetFreeSize(Heap);
128 RTHeapSimpleFree(Heap, aOps[i].pvAlloc);
129 size_t cbAfterSubFree = RTHeapSimpleGetFreeSize(Heap);
130
131 void *pv;
132 pv = RTHeapSimpleAlloc(Heap, aOps[i].cb, aOps[i].uAlignment);
133 if (!pv)
134 {
135 RTPrintf("Failure: RTHeapSimpleAlloc(%p, %#x, %#x,) -> NULL i=%d\n", (void *)Heap, aOps[i].cb, aOps[i].uAlignment, i);
136 return 1;
137 }
138 //RTPrintf("debug: i=%d pv=%p cbReal=%#zx cbBeforeSub=%#zx cbAfterSubFree=%#zx cbAfterSubAlloc=%#zx \n", i, pv, RTHeapSimpleSize(Heap, pv),
139 // cbBeforeSub, cbAfterSubFree, RTHeapSimpleGetFreeSize(Heap));
140 if (pv != aOps[i].pvAlloc)
141 RTPrintf("Warning: Free+Alloc returned different address. new=%p old=%p i=%d\n", pv, aOps[i].pvAlloc, i);
142 aOps[i].pvAlloc = pv;
143 size_t cbAfterSubAlloc = RTHeapSimpleGetFreeSize(Heap);
144 if (cbBeforeSub != cbAfterSubAlloc)
145 {
146 RTPrintf("Warning: cbBeforeSub=%#zx cbAfterSubFree=%#zx cbAfterSubAlloc=%#zx. i=%d\n",
147 cbBeforeSub, cbAfterSubFree, cbAfterSubAlloc, i);
148 //return 1; - won't work correctly until we start creating free block instead of donating memory on alignment.
149 }
150 }
151
152 /* free it in a specific order. */
153 int cFreed = 0;
154 for (i = 0; i < ELEMENTS(aOps); i++)
155 {
156 unsigned j;
157 for (j = 0; j < ELEMENTS(aOps); j++)
158 {
159 if ( aOps[j].iFreeOrder != i
160 || !aOps[j].pvAlloc)
161 continue;
162 //RTPrintf("j=%d i=%d free=%d cb=%d pv=%p\n", j, i, RTHeapSimpleGetFreeSize(Heap), aOps[j].cb, aOps[j].pvAlloc);
163 RTHeapSimpleFree(Heap, aOps[j].pvAlloc);
164 aOps[j].pvAlloc = NULL;
165 cFreed++;
166 }
167 }
168 Assert(cFreed == RT_ELEMENTS(aOps));
169 RTPrintf("i=done free=%d\n", RTHeapSimpleGetFreeSize(Heap));
170
171 /* check that we're back at the right amount of free memory. */
172 size_t cbAfter = RTHeapSimpleGetFreeSize(Heap);
173 if (cbBefore != cbAfter)
174 {
175 RTPrintf("Warning: Either we've split out an alignment chunk at the start, or we've got\n"
176 " an alloc/free accounting bug: cbBefore=%d cbAfter=%d\n", cbBefore, cbAfter);
177 RTHeapSimpleDump(Heap, (PFNRTHEAPSIMPLEPRINTF)RTPrintf);
178 }
179
180 RTPrintf("tstHeapSimple: Success\n");
181#ifdef LOG_ENABLED
182 RTLogFlush(NULL);
183#endif
184 return 0;
185}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette