VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/alloc-ef-cpp.cpp@ 57432

Last change on this file since 57432 was 57432, checked in by vboxsync, 9 years ago

iprt/cdefs.h,*: Split RT_NO_THROW into prototype and definition macros named RT_NO_THROW_PROTO and RT_NO_THROW_DEF respecitively.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 4.3 KB
Line 
1/* $Id: alloc-ef-cpp.cpp 57432 2015-08-18 14:57:46Z vboxsync $ */
2/** @file
3 * IPRT - Memory Allocation, C++ electric fence.
4 */
5
6/*
7 * Copyright (C) 2006-2015 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# else
61# ifdef _GLIBCXX_THROW
62# define RT_EF_THROWS_BAD_ALLOC _GLIBCXX_THROW(std::bad_alloc)
63# else
64# define RT_EF_THROWS_BAD_ALLOC throw(std::bad_alloc)
65# endif
66# endif
67#else /* !RT_EXCEPTIONS_ENABLED */
68# define RT_EF_THROWS_BAD_ALLOC
69#endif /* !RT_EXCEPTIONS_ENABLED */
70
71
72void *RT_EF_CDECL operator new(RT_EF_SIZE_T cb) RT_EF_THROWS_BAD_ALLOC
73{
74 void *pv = rtR3MemAlloc("new", RTMEMTYPE_NEW, cb, cb, NULL, ASMReturnAddress(), NULL, 0, NULL);
75 if (!pv)
76 throw std::bad_alloc();
77 return pv;
78}
79
80
81void *RT_EF_CDECL operator new(RT_EF_SIZE_T cb, const std::nothrow_t &) RT_NO_THROW_DEF
82{
83 void *pv = rtR3MemAlloc("new nothrow", RTMEMTYPE_NEW, cb, cb, NULL, ASMReturnAddress(), NULL, 0, NULL);
84 return pv;
85}
86
87
88void RT_EF_CDECL operator delete(void *pv) RT_NO_THROW_DEF
89{
90 rtR3MemFree("delete", RTMEMTYPE_DELETE, pv, ASMReturnAddress(), NULL, 0, NULL);
91}
92
93
94void RT_EF_CDECL operator delete(void * pv, const std::nothrow_t &) RT_NO_THROW_DEF
95{
96 rtR3MemFree("delete nothrow", RTMEMTYPE_DELETE, pv, ASMReturnAddress(), NULL, 0, NULL);
97}
98
99
100/*
101 *
102 * Array object form.
103 * Array object form.
104 * Array object form.
105 *
106 */
107
108void *RT_EF_CDECL operator new[](RT_EF_SIZE_T cb) RT_EF_THROWS_BAD_ALLOC
109{
110 void *pv = rtR3MemAlloc("new[]", RTMEMTYPE_NEW_ARRAY, cb, cb, NULL, ASMReturnAddress(), NULL, 0, NULL);
111 if (!pv)
112 throw std::bad_alloc();
113 return pv;
114}
115
116
117void * RT_EF_CDECL operator new[](RT_EF_SIZE_T cb, const std::nothrow_t &) RT_NO_THROW_DEF
118{
119 void *pv = rtR3MemAlloc("new[] nothrow", RTMEMTYPE_NEW_ARRAY, cb, cb, NULL, ASMReturnAddress(), NULL, 0, NULL);
120 return pv;
121}
122
123
124void RT_EF_CDECL operator delete[](void * pv) RT_NO_THROW_DEF
125{
126 rtR3MemFree("delete[]", RTMEMTYPE_DELETE_ARRAY, pv, ASMReturnAddress(), NULL, 0, NULL);
127}
128
129
130void RT_EF_CDECL operator delete[](void *pv, const std::nothrow_t &) RT_NO_THROW_DEF
131{
132 rtR3MemFree("delete[] nothrow", RTMEMTYPE_DELETE_ARRAY, pv, ASMReturnAddress(), NULL, 0, NULL);
133}
134
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