1 | /* $Id: alloc-ef-cpp.cpp 8155 2008-04-18 15:16:47Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - Memory Allocation, C++ electric fence.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 | /*******************************************************************************
|
---|
32 | * Header Files *
|
---|
33 | *******************************************************************************/
|
---|
34 | #include "alloc-ef.h"
|
---|
35 |
|
---|
36 | #ifdef RTALLOC_EFENCE_CPP /* rest of the file */
|
---|
37 |
|
---|
38 | #include <new>
|
---|
39 |
|
---|
40 |
|
---|
41 | /*******************************************************************************
|
---|
42 | * Defined Constants And Macros *
|
---|
43 | *******************************************************************************/
|
---|
44 | /** @todo test this on MSC */
|
---|
45 |
|
---|
46 | /* MSC declares the operators as cdecl it seems. */
|
---|
47 | #ifdef _MSC_VER
|
---|
48 | # define RT_EF_CDECL __cdecl
|
---|
49 | #else
|
---|
50 | # define RT_EF_CDECL
|
---|
51 | #endif
|
---|
52 |
|
---|
53 | /* MSC doesn't use the standard namespace. */
|
---|
54 | #ifdef _MSC_VER
|
---|
55 | # define RT_EF_SIZE_T size_t
|
---|
56 | #else
|
---|
57 | # define RT_EF_SIZE_T std::size_t
|
---|
58 | #endif
|
---|
59 |
|
---|
60 |
|
---|
61 | void *RT_EF_CDECL operator new(RT_EF_SIZE_T cb) throw(std::bad_alloc)
|
---|
62 | {
|
---|
63 | void *pv = rtMemAlloc("new", RTMEMTYPE_NEW, cb, ((void **)&cb)[-1], 0, NULL, NULL);
|
---|
64 | if (!pv)
|
---|
65 | throw std::bad_alloc();
|
---|
66 | return pv;
|
---|
67 | }
|
---|
68 |
|
---|
69 |
|
---|
70 | void *RT_EF_CDECL operator new(RT_EF_SIZE_T cb, const std::nothrow_t &) throw()
|
---|
71 | {
|
---|
72 | void *pv = rtMemAlloc("new nothrow", RTMEMTYPE_NEW, cb, ((void **)&cb)[-1], 0, NULL, NULL);
|
---|
73 | return pv;
|
---|
74 | }
|
---|
75 |
|
---|
76 |
|
---|
77 | void RT_EF_CDECL operator delete(void *pv) throw()
|
---|
78 | {
|
---|
79 | rtMemFree("delete", RTMEMTYPE_DELETE, pv, ((void **)&pv)[-1], 0, NULL, NULL);
|
---|
80 | }
|
---|
81 |
|
---|
82 |
|
---|
83 | void RT_EF_CDECL operator delete(void * pv, const std::nothrow_t &) throw()
|
---|
84 | {
|
---|
85 | rtMemFree("delete nothrow", RTMEMTYPE_DELETE, pv, ((void **)&pv)[-1], 0, NULL, NULL);
|
---|
86 | }
|
---|
87 |
|
---|
88 |
|
---|
89 | /*
|
---|
90 | *
|
---|
91 | * Array object form.
|
---|
92 | * Array object form.
|
---|
93 | * Array object form.
|
---|
94 | *
|
---|
95 | */
|
---|
96 |
|
---|
97 | void *RT_EF_CDECL operator new[](RT_EF_SIZE_T cb) throw(std::bad_alloc)
|
---|
98 | {
|
---|
99 | void *pv = rtMemAlloc("new[]", RTMEMTYPE_NEW_ARRAY, cb, ((void **)&cb)[-1], 0, NULL, NULL);
|
---|
100 | if (!pv)
|
---|
101 | throw std::bad_alloc();
|
---|
102 | return pv;
|
---|
103 | }
|
---|
104 |
|
---|
105 |
|
---|
106 | void * RT_EF_CDECL operator new[](RT_EF_SIZE_T cb, const std::nothrow_t &) throw()
|
---|
107 | {
|
---|
108 | void *pv = rtMemAlloc("new[] nothrow", RTMEMTYPE_NEW_ARRAY, cb, ((void **)&cb)[-1], 0, NULL, NULL);
|
---|
109 | return pv;
|
---|
110 | }
|
---|
111 |
|
---|
112 |
|
---|
113 | void RT_EF_CDECL operator delete[](void * pv) throw()
|
---|
114 | {
|
---|
115 | rtMemFree("delete[]", RTMEMTYPE_DELETE_ARRAY, pv, ((void **)&pv)[-1], 0, NULL, NULL);
|
---|
116 | }
|
---|
117 |
|
---|
118 |
|
---|
119 | void RT_EF_CDECL operator delete[](void *pv, const std::nothrow_t &) throw()
|
---|
120 | {
|
---|
121 | rtMemFree("delete[] nothrow", RTMEMTYPE_DELETE_ARRAY, pv, ((void **)&pv)[-1], 0, NULL, NULL);
|
---|
122 | }
|
---|
123 |
|
---|
124 | #endif /* RTALLOC_EFENCE_CPP */
|
---|