VirtualBox

source: vbox/trunk/include/iprt/mem.h@ 3636

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

AMD64 -> RT_ARCH_AMD64; X86 -> RT_ARCH_X86; [OS] (except LINUX) -> RT_OS_[OS].

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.1 KB
Line 
1/** @file
2 * innotek Portable Runtime - Memory Management and Manipulation.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef ___iprt_mem_h
22#define ___iprt_mem_h
23
24
25#include <iprt/cdefs.h>
26#include <iprt/types.h>
27
28#ifdef IN_GC
29# error "There are no RTMem APIs available Guest Context!"
30#endif
31
32__BEGIN_DECLS
33
34/** @defgroup grp_rt_mem RTMem - Memory Management and Manipulation
35 * @ingroup grp_rt
36 * @{
37 */
38
39/** @def RTMEM_ALIGNMENT
40 * The alignment of the memory blocks returned by RTMemAlloc(), RTMemAllocZ(),
41 * RTMemRealloc(), RTMemTmpAlloc() and RTMemTmpAllocZ() for allocations greater
42 * than RTMEM_ALIGNMENT.
43 */
44#define RTMEM_ALIGNMENT 8
45
46/**
47 * Allocates temporary memory.
48 *
49 * Temporary memory blocks are used for not too large memory blocks which
50 * are believed not to stick around for too long. Using this API instead
51 * of RTMemAlloc() not only gives the heap manager room for optimization
52 * but makes the code easier to read.
53 *
54 * @returns Pointer to the allocated memory.
55 * @returns NULL on failure.
56 * @param cb Size in bytes of the memory block to allocated.
57 */
58RTDECL(void *) RTMemTmpAlloc(size_t cb);
59
60/**
61 * Allocates zero'ed temporary memory.
62 *
63 * Same as RTMemTmpAlloc() but the memory will be zero'ed.
64 *
65 * @returns Pointer to the allocated memory.
66 * @returns NULL on failure.
67 * @param cb Size in bytes of the memory block to allocated.
68 */
69RTDECL(void *) RTMemTmpAllocZ(size_t cb);
70
71/**
72 * Free temporary memory.
73 *
74 * @param pv Pointer to memory block.
75 */
76RTDECL(void) RTMemTmpFree(void *pv);
77
78
79/**
80 * Allocates memory.
81 *
82 * @returns Pointer to the allocated memory.
83 * @returns NULL on failure.
84 * @param cb Size in bytes of the memory block to allocated.
85 */
86RTDECL(void *) RTMemAlloc(size_t cb);
87
88/**
89 * Allocates zero'ed memory.
90 *
91 * Instead of memset(pv, 0, sizeof()) use this when you want zero'ed
92 * memory. This keeps the code smaller and the heap can skip the memset
93 * in about 0.42% of calls :-).
94 *
95 * @returns Pointer to the allocated memory.
96 * @returns NULL on failure.
97 * @param cb Size in bytes of the memory block to allocated.
98 */
99RTDECL(void *) RTMemAllocZ(size_t cb);
100
101/**
102 * Duplicates a chunk of memory into a new heap block.
103 *
104 * @returns New heap block with the duplicate data.
105 * @returns NULL if we're out of memory.
106 * @param pvSrc The memory to duplicate.
107 * @param cb The amount of memory to duplicate.
108 */
109RTDECL(void *) RTMemDup(const void *pvSrc, size_t cb);
110
111/**
112 * Duplicates a chunk of memory into a new heap block with some
113 * additional zeroed memory.
114 *
115 * @returns New heap block with the duplicate data.
116 * @returns NULL if we're out of memory.
117 * @param pvSrc The memory to duplicate.
118 * @param cbSrc The amount of memory to duplicate.
119 * @param cbExtra The amount of extra memory to allocate and zero.
120 */
121RTDECL(void *) RTMemDupEx(const void *pvSrc, size_t cbSrc, size_t cbExtra);
122
123/**
124 * Reallocates memory.
125 *
126 * @returns Pointer to the allocated memory.
127 * @returns NULL on failure.
128 * @param pvOld The memory block to reallocate.
129 * @param cbNew The new block size (in bytes).
130 */
131RTDECL(void *) RTMemRealloc(void *pvOld, size_t cbNew);
132
133/**
134 * Free memory related to an virtual machine
135 *
136 * @param pv Pointer to memory block.
137 */
138RTDECL(void) RTMemFree(void *pv);
139
140/**
141 * Allocates memory which may contain code.
142 *
143 * @returns Pointer to the allocated memory.
144 * @returns NULL on failure.
145 * @param cb Size in bytes of the memory block to allocate.
146 */
147RTDECL(void *) RTMemExecAlloc(size_t cb);
148
149/**
150 * Free executable/read/write memory allocated by RTMemExecAlloc().
151 *
152 * @param pv Pointer to memory block.
153 */
154RTDECL(void) RTMemExecFree(void *pv);
155
156#if defined(IN_RING0) && defined(RT_ARCH_AMD64) && defined(__LINUX__)
157/**
158 * Donate read+write+execute memory to the exec heap.
159 *
160 * This API is specific to AMD64 and Linux/GNU. A kernel module that desires to
161 * use RTMemExecAlloc on AMD64 Linux/GNU will have to donate some statically
162 * allocated memory in the module if it wishes for GCC generated code to work.
163 * GCC can only generate modules that work in the address range ~2GB to ~0
164 * currently.
165 *
166 * The API only accept one single donation.
167 *
168 * @returns IPRT status code.
169 * @param pvMemory Pointer to the memory block.
170 * @param cb The size of the memory block.
171 */
172RTR0DECL(int) RTR0MemExecDonate(void *pvMemory, size_t cb);
173#endif /* R0+AMD64+LINUX */
174
175/**
176 * Allocate page aligned memory.
177 *
178 * @returns Pointer to the allocated memory.
179 * @returns NULL if we're out of memory.
180 * @param cb Size of the memory block. Will be rounded up to page size.
181 */
182RTDECL(void *) RTMemPageAlloc(size_t cb);
183
184/**
185 * Allocate zero'ed page aligned memory.
186 *
187 * @returns Pointer to the allocated memory.
188 * @returns NULL if we're out of memory.
189 * @param cb Size of the memory block. Will be rounded up to page size.
190 */
191RTDECL(void *) RTMemPageAllocZ(size_t cb);
192
193/**
194 * Free a memory block allocated with RTMemPageAlloc() or RTMemPageAllocZ().
195 *
196 * @param pv Pointer to the block as it was returned by the allocation function.
197 * NULL will be ignored.
198 */
199RTDECL(void) RTMemPageFree(void *pv);
200
201/** Page level protection flags for RTMemProtect().
202 * @{
203 */
204/** Read access. */
205#define RTMEM_PROT_NONE 0
206/** Read access. */
207#define RTMEM_PROT_READ 1
208/** Write access. */
209#define RTMEM_PROT_WRITE 2
210/** Execute access. */
211#define RTMEM_PROT_EXEC 4
212/** @} */
213
214/**
215 * Change the page level protection of a memory region.
216 *
217 * @returns iprt status code.
218 * @param pv Start of the region. Will be rounded down to nearest page boundary.
219 * @param cb Size of the region. Will be rounded up to the nearest page boundary.
220 * @param fProtect The new protection, a combination of the RTMEM_PROT_* defines.
221 */
222RTDECL(int) RTMemProtect(void *pv, size_t cb, unsigned fProtect);
223
224
225#ifdef IN_RING0
226
227/**
228 * Allocates physical contiguous memory (below 4GB).
229 * The allocation is page aligned and the content is undefined.
230 *
231 * @returns Pointer to the memory block. This is page aligned.
232 * @param pPhys Where to store the physical address.
233 * @param cb The allocation size in bytes. This is always
234 * rounded up to PAGE_SIZE.
235 */
236RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb);
237
238/**
239 * Frees memory allocated ysing RTMemContAlloc().
240 *
241 * @param pv Pointer to return from RTMemContAlloc().
242 * @param cb The cb parameter passed to RTMemContAlloc().
243 */
244RTR0DECL(void) RTMemContFree(void *pv, size_t cb);
245
246#endif
247
248
249/** @name Electrical Fence Version of some APIs.
250 * @{
251 */
252
253/**
254 * Same as RTMemTmpAlloc() except that it's fenced.
255 *
256 * @returns Pointer to the allocated memory.
257 * @returns NULL on failure.
258 * @param cb Size in bytes of the memory block to allocate.
259 */
260RTDECL(void *) RTMemEfTmpAlloc(size_t cb);
261
262/**
263 * Same as RTMemTmpAllocZ() except that it's fenced.
264 *
265 * @returns Pointer to the allocated memory.
266 * @returns NULL on failure.
267 * @param cb Size in bytes of the memory block to allocate.
268 */
269RTDECL(void *) RTMemEfTmpAllocZ(size_t cb);
270
271/**
272 * Same as RTMemTmpFree() except that it's for fenced memory.
273 *
274 * @param pv Pointer to memory block.
275 */
276RTDECL(void) RTMemEfTmpFree(void *pv);
277
278/**
279 * Same as RTMemAlloc() except that it's fenced.
280 *
281 * @returns Pointer to the allocated memory. Free with RTMemEfFree().
282 * @returns NULL on failure.
283 * @param cb Size in bytes of the memory block to allocate.
284 */
285RTDECL(void *) RTMemEfAlloc(size_t cb);
286
287/**
288 * Same as RTMemAllocZ() except that it's fenced.
289 *
290 * @returns Pointer to the allocated memory.
291 * @returns NULL on failure.
292 * @param cb Size in bytes of the memory block to allocate.
293 */
294RTDECL(void *) RTMemEfAllocZ(size_t cb);
295
296/**
297 * Same as RTMemRealloc() except that it's fenced.
298 *
299 * @returns Pointer to the allocated memory.
300 * @returns NULL on failure.
301 * @param pvOld The memory block to reallocate.
302 * @param cbNew The new block size (in bytes).
303 */
304RTDECL(void *) RTMemEfRealloc(void *pvOld, size_t cbNew);
305
306/**
307 * Free memory allocated by any of the RTMemEf* allocators.
308 *
309 * @param pv Pointer to memory block.
310 */
311RTDECL(void) RTMemEfFree(void *pv);
312
313/**
314 * Same as RTMemDup() except that it's fenced.
315 *
316 * @returns New heap block with the duplicate data.
317 * @returns NULL if we're out of memory.
318 * @param pvSrc The memory to duplicate.
319 * @param cb The amount of memory to duplicate.
320 */
321RTDECL(void *) RTMemEfDup(const void *pvSrc, size_t cb);
322
323/**
324 * Same as RTMemEfDupEx except that it's fenced.
325 *
326 * @returns New heap block with the duplicate data.
327 * @returns NULL if we're out of memory.
328 * @param pvSrc The memory to duplicate.
329 * @param cbSrc The amount of memory to duplicate.
330 * @param cbExtra The amount of extra memory to allocate and zero.
331 */
332RTDECL(void *) RTMemEfDupEx(const void *pvSrc, size_t cbSrc, size_t cbExtra);
333
334/** @def RTMEM_WRAP_TO_EF_APIS
335 * Define RTMEM_WRAP_TO_EF_APIS to wrap RTMem APIs to RTMemEf APIs.
336 */
337#ifdef RTMEM_WRAP_TO_EF_APIS
338# define RTMemTmpAlloc RTMemEfTmpAlloc
339# define RTMemTmpAllocZ RTMemEfTmpAllocZ
340# define RTMemTmpFree RTMemEfTmpFree
341# define RTMemAlloc RTMemEfAlloc
342# define RTMemAllocZ RTMemEfAllocZ
343# define RTMemRealloc RTMemEfRealloc
344# define RTMemFree RTMemEfFree
345# define RTMemDup RTMemEfDup
346# define RTMemDupEx RTMemEfDupEx
347#endif
348#ifdef __DOXYGEN__
349# define RTMEM_WRAP_TO_EF_APIS
350#endif
351
352/** @} */
353
354/** @} */
355
356__END_DECLS
357
358#endif
359
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