VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/alloc.cpp@ 5285

Last change on this file since 5285 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.3 KB
Line 
1/* $Id: alloc.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Memory Allocation.
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#include "alloc-ef.h"
23#include <iprt/alloc.h>
24#include <iprt/assert.h>
25#include <iprt/param.h>
26#include <iprt/string.h>
27
28#include <stdlib.h>
29
30
31/**
32 * Allocates temporary memory.
33 *
34 * Temporary memory blocks are used for not too large memory blocks which
35 * are believed not to stick around for too long. Using this API instead
36 * of RTMemAlloc() not only gives the heap manager room for optimization
37 * but makes the code easier to read.
38 *
39 * @returns Pointer to the allocated memory.
40 * @returns NULL on failure.
41 * @param cb Size in bytes of the memory block to allocate.
42 */
43RTDECL(void *) RTMemTmpAlloc(size_t cb)
44{
45 return RTMemAlloc(cb);
46}
47
48
49/**
50 * Allocates zero'ed temporary memory.
51 *
52 * Same as RTMemTmpAlloc() but the memory will be zero'ed.
53 *
54 * @returns Pointer to the allocated memory.
55 * @returns NULL on failure.
56 * @param cb Size in bytes of the memory block to allocate.
57 */
58RTDECL(void *) RTMemTmpAllocZ(size_t cb)
59{
60 return RTMemAllocZ(cb);
61}
62
63
64/**
65 * Free temporary memory.
66 *
67 * @param pv Pointer to memory block.
68 */
69RTDECL(void) RTMemTmpFree(void *pv)
70{
71 RTMemFree(pv);
72}
73
74
75/**
76 * Allocates memory.
77 *
78 * @returns Pointer to the allocated memory.
79 * @returns NULL on failure.
80 * @param cb Size in bytes of the memory block to allocate.
81 */
82RTDECL(void *) RTMemAlloc(size_t cb)
83{
84#ifdef RTALLOC_USE_EFENCE
85 void *pv = rtMemAlloc("Alloc", RTMEMTYPE_RTMEMALLOC, cb, ((void **)&cb)[-1], 0, NULL, NULL);
86
87#else /* !RTALLOC_USE_EFENCE */
88
89 AssertMsg(cb, ("Allocating ZERO bytes is really not a good idea! Good luck with the next assertion!\n"));
90 void *pv = malloc(cb);
91 AssertMsg(pv, ("malloc(%d) failed!!!\n", cb));
92#ifdef RT_OS_OS2 /* temporary workaround until libc062. */
93 AssertMsg( cb < 32
94 || !((uintptr_t)pv & (RTMEM_ALIGNMENT - 1)), ("pv=%p RTMEM_ALIGNMENT=%#x\n", pv, RTMEM_ALIGNMENT));
95#else
96 AssertMsg( cb < RTMEM_ALIGNMENT
97 || !((uintptr_t)pv & (RTMEM_ALIGNMENT - 1)), ("pv=%p RTMEM_ALIGNMENT=%#x\n", pv, RTMEM_ALIGNMENT));
98#endif
99#endif /* !RTALLOC_USE_EFENCE */
100 return pv;
101}
102
103
104/**
105 * Allocates zero'ed memory.
106 *
107 * Instead of memset(pv, 0, sizeof()) use this when you want zero'ed
108 * memory. This keeps the code smaller and the heap can skip the memset
109 * in about 0.42% of the calls :-).
110 *
111 * @returns Pointer to the allocated memory.
112 * @returns NULL on failure.
113 * @param cb Size in bytes of the memory block to allocate.
114 */
115RTDECL(void *) RTMemAllocZ(size_t cb)
116{
117#ifdef RTALLOC_USE_EFENCE
118 void *pv = rtMemAlloc("AllocZ", RTMEMTYPE_RTMEMALLOCZ, cb, ((void **)&cb)[-1], 0, NULL, NULL);
119
120#else /* !RTALLOC_USE_EFENCE */
121
122 AssertMsg(cb, ("Allocating ZERO bytes is really not a good idea! Good luck with the next assertion!\n"));
123
124 void *pv = calloc(1, cb);
125 AssertMsg(pv, ("calloc(1,%d) failed!!!\n", cb));
126#ifdef RT_OS_OS2 /* temporary workaround until libc062. */
127 AssertMsg( cb < 32
128 || !((uintptr_t)pv & (RTMEM_ALIGNMENT - 1)), ("pv=%p RTMEM_ALIGNMENT=%#x\n", pv, RTMEM_ALIGNMENT));
129#else
130 AssertMsg( cb < RTMEM_ALIGNMENT
131 || !((uintptr_t)pv & (RTMEM_ALIGNMENT - 1)), ("pv=%p RTMEM_ALIGNMENT=%#x\n", pv, RTMEM_ALIGNMENT));
132#endif
133#endif /* !RTALLOC_USE_EFENCE */
134 return pv;
135}
136
137
138/**
139 * Reallocates memory.
140 *
141 * @returns Pointer to the allocated memory.
142 * @returns NULL on failure.
143 * @param pvOld The memory block to reallocate.
144 * @param cbNew The new block size (in bytes).
145 */
146RTDECL(void *) RTMemRealloc(void *pvOld, size_t cbNew)
147{
148#ifdef RTALLOC_USE_EFENCE
149 void *pv = rtMemRealloc("Realloc", RTMEMTYPE_RTMEMREALLOC, pvOld, cbNew, ((void **)&pvOld)[-1], 0, NULL, NULL);
150
151#else /* !RTALLOC_USE_EFENCE */
152
153 void *pv = realloc(pvOld, cbNew);
154 AssertMsg(pv && cbNew, ("realloc(%p, %d) failed!!!\n", pvOld, cbNew));
155#ifdef RT_OS_OS2 /* temporary workaround until libc062. */
156 AssertMsg( cbNew < 32
157 || !((uintptr_t)pv & (RTMEM_ALIGNMENT - 1)), ("pv=%p RTMEM_ALIGNMENT=%#x\n", pv, RTMEM_ALIGNMENT));
158#else
159 AssertMsg( cbNew < RTMEM_ALIGNMENT
160 || !((uintptr_t)pv & (RTMEM_ALIGNMENT - 1)), ("pv=%p RTMEM_ALIGNMENT=%#x\n", pv, RTMEM_ALIGNMENT));
161#endif
162#endif /* !RTALLOC_USE_EFENCE */
163 return pv;
164}
165
166
167/**
168 * Free memory related to a virtual machine
169 *
170 * @param pv Pointer to memory block.
171 */
172RTDECL(void) RTMemFree(void *pv)
173{
174 if (pv)
175#ifdef RTALLOC_USE_EFENCE
176 rtMemFree("Free", RTMEMTYPE_RTMEMFREE, pv, ((void **)&pv)[-1], 0, NULL, NULL);
177#else
178 free(pv);
179#endif
180}
181
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