1 | /* $Id: alloc-ef-cpp.cpp 83546 2020-04-04 10:46:18Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Memory Allocation, C++ electric fence.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2020 Oracle Corporation
|
---|
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 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include "alloc-ef.h"
|
---|
32 |
|
---|
33 | #include <iprt/asm.h>
|
---|
34 | #include <new>
|
---|
35 |
|
---|
36 |
|
---|
37 | /*********************************************************************************************************************************
|
---|
38 | * Defined Constants And Macros *
|
---|
39 | *********************************************************************************************************************************/
|
---|
40 | /** @todo test this on MSC */
|
---|
41 |
|
---|
42 | /** MSC declares the operators as cdecl it seems. */
|
---|
43 | #ifdef _MSC_VER
|
---|
44 | # define RT_EF_CDECL __cdecl
|
---|
45 | #else
|
---|
46 | # define RT_EF_CDECL
|
---|
47 | #endif
|
---|
48 |
|
---|
49 | /** MSC doesn't use the standard namespace. */
|
---|
50 | #ifdef _MSC_VER
|
---|
51 | # define RT_EF_SIZE_T size_t
|
---|
52 | #else
|
---|
53 | # define RT_EF_SIZE_T std::size_t
|
---|
54 | #endif
|
---|
55 |
|
---|
56 | /** The hint that we're throwing std::bad_alloc is not apprecitated by MSC. */
|
---|
57 | #ifdef RT_EXCEPTIONS_ENABLED
|
---|
58 | # ifdef _MSC_VER
|
---|
59 | # define RT_EF_THROWS_BAD_ALLOC
|
---|
60 | # define RT_EF_NOTHROW RT_NO_THROW_DEF
|
---|
61 | # else
|
---|
62 | # ifdef _GLIBCXX_THROW
|
---|
63 | # define RT_EF_THROWS_BAD_ALLOC _GLIBCXX_THROW(std::bad_alloc)
|
---|
64 | # else
|
---|
65 | # define RT_EF_THROWS_BAD_ALLOC throw(std::bad_alloc)
|
---|
66 | # endif
|
---|
67 | # define RT_EF_NOTHROW throw()
|
---|
68 | # endif
|
---|
69 | #else /* !RT_EXCEPTIONS_ENABLED */
|
---|
70 | # define RT_EF_THROWS_BAD_ALLOC
|
---|
71 | # define RT_EF_NOTHROW
|
---|
72 | #endif /* !RT_EXCEPTIONS_ENABLED */
|
---|
73 |
|
---|
74 |
|
---|
75 | void *RT_EF_CDECL operator new(RT_EF_SIZE_T cb) RT_EF_THROWS_BAD_ALLOC
|
---|
76 | {
|
---|
77 | void *pv = rtR3MemAlloc("new", RTMEMTYPE_NEW, cb, cb, NULL, ASMReturnAddress(), NULL, 0, NULL);
|
---|
78 | if (!pv)
|
---|
79 | throw std::bad_alloc();
|
---|
80 | return pv;
|
---|
81 | }
|
---|
82 |
|
---|
83 |
|
---|
84 | void *RT_EF_CDECL operator new(RT_EF_SIZE_T cb, const std::nothrow_t &) RT_EF_NOTHROW
|
---|
85 | {
|
---|
86 | void *pv = rtR3MemAlloc("new nothrow", RTMEMTYPE_NEW, cb, cb, NULL, ASMReturnAddress(), NULL, 0, NULL);
|
---|
87 | return pv;
|
---|
88 | }
|
---|
89 |
|
---|
90 |
|
---|
91 | void RT_EF_CDECL operator delete(void *pv) RT_EF_NOTHROW
|
---|
92 | {
|
---|
93 | rtR3MemFree("delete", RTMEMTYPE_DELETE, pv, 0, ASMReturnAddress(), NULL, 0, NULL);
|
---|
94 | }
|
---|
95 |
|
---|
96 |
|
---|
97 | #ifdef __cpp_sized_deallocation
|
---|
98 | void RT_EF_CDECL operator delete(void *pv, RT_EF_SIZE_T cb) RT_EF_NOTHROW
|
---|
99 | {
|
---|
100 | NOREF(cb);
|
---|
101 | AssertMsgFailed(("cb ignored!\n"));
|
---|
102 | rtR3MemFree("delete", RTMEMTYPE_DELETE, pv, 0, ASMReturnAddress(), NULL, 0, NULL);
|
---|
103 | }
|
---|
104 | #endif
|
---|
105 |
|
---|
106 |
|
---|
107 | void RT_EF_CDECL operator delete(void * pv, const std::nothrow_t &) RT_EF_NOTHROW
|
---|
108 | {
|
---|
109 | rtR3MemFree("delete nothrow", RTMEMTYPE_DELETE, pv, 0, ASMReturnAddress(), NULL, 0, NULL);
|
---|
110 | }
|
---|
111 |
|
---|
112 |
|
---|
113 | /*
|
---|
114 | *
|
---|
115 | * Array object form.
|
---|
116 | * Array object form.
|
---|
117 | * Array object form.
|
---|
118 | *
|
---|
119 | */
|
---|
120 |
|
---|
121 | void *RT_EF_CDECL operator new[](RT_EF_SIZE_T cb) RT_EF_THROWS_BAD_ALLOC
|
---|
122 | {
|
---|
123 | void *pv = rtR3MemAlloc("new[]", RTMEMTYPE_NEW_ARRAY, cb, cb, NULL, ASMReturnAddress(), NULL, 0, NULL);
|
---|
124 | if (!pv)
|
---|
125 | throw std::bad_alloc();
|
---|
126 | return pv;
|
---|
127 | }
|
---|
128 |
|
---|
129 |
|
---|
130 | void * RT_EF_CDECL operator new[](RT_EF_SIZE_T cb, const std::nothrow_t &) RT_EF_NOTHROW
|
---|
131 | {
|
---|
132 | void *pv = rtR3MemAlloc("new[] nothrow", RTMEMTYPE_NEW_ARRAY, cb, cb, NULL, ASMReturnAddress(), NULL, 0, NULL);
|
---|
133 | return pv;
|
---|
134 | }
|
---|
135 |
|
---|
136 |
|
---|
137 | void RT_EF_CDECL operator delete[](void * pv) RT_EF_NOTHROW
|
---|
138 | {
|
---|
139 | rtR3MemFree("delete[]", RTMEMTYPE_DELETE_ARRAY, pv, 0, ASMReturnAddress(), NULL, 0, NULL);
|
---|
140 | }
|
---|
141 |
|
---|
142 |
|
---|
143 | #ifdef __cpp_sized_deallocation
|
---|
144 | void RT_EF_CDECL operator delete[](void * pv, RT_EF_SIZE_T cb) RT_EF_NOTHROW
|
---|
145 | {
|
---|
146 | NOREF(cb);
|
---|
147 | AssertMsgFailed(("cb ignored!\n"));
|
---|
148 | rtR3MemFree("delete[]", RTMEMTYPE_DELETE_ARRAY, pv, 0, ASMReturnAddress(), NULL, 0, NULL);
|
---|
149 | }
|
---|
150 | #endif
|
---|
151 |
|
---|
152 |
|
---|
153 | void RT_EF_CDECL operator delete[](void *pv, const std::nothrow_t &) RT_EF_NOTHROW
|
---|
154 | {
|
---|
155 | rtR3MemFree("delete[] nothrow", RTMEMTYPE_DELETE_ARRAY, pv, 0, ASMReturnAddress(), NULL, 0, NULL);
|
---|
156 | }
|
---|
157 |
|
---|