Define __STDC_CONSTANT_MACROS/__STDC_LIMIT_MACROS again.
[deliverable/binutils-gdb.git] / gdb / common / new-op.c
CommitLineData
503b1c39
PA
1/* Replace operator new/new[], for GDB, the GNU debugger.
2
3 Copyright (C) 2016 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
3ef9d661
YQ
20/* GCC does not understand __has_feature. */
21#if !defined(__has_feature)
22# define __has_feature(x) 0
23#endif
24
25#if !__has_feature(address_sanitizer) && !defined(__SANITIZE_ADDRESS__)
503b1c39
PA
26#include "common-defs.h"
27#include "host-defs.h"
28#include <new>
29
30/* Override operator new / operator new[], in order to internal_error
31 on allocation failure and thus query the user for abort/core
32 dump/continue, just like xmalloc does. We don't do this from a
33 new-handler function instead (std::set_new_handler) because we want
34 to catch allocation errors from within global constructors too.
35
36 Note that C++ implementations could either have their throw
37 versions call the nothrow versions (libstdc++), or the other way
38 around (clang/libc++). For that reason, we replace both throw and
39 nothrow variants and call malloc directly. */
40
41void *
42operator new (std::size_t sz)
43{
44 /* malloc (0) is unpredictable; avoid it. */
45 if (sz == 0)
46 sz = 1;
47
48 void *p = malloc (sz); /* ARI: malloc */
49 if (p == NULL)
50 {
51 /* If the user decides to continue debugging, throw a
52 gdb_quit_bad_alloc exception instead of a regular QUIT
53 gdb_exception. The former extends both std::bad_alloc and a
54 QUIT gdb_exception. This is necessary because operator new
55 can only ever throw std::bad_alloc, or something that extends
56 it. */
57 TRY
58 {
59 malloc_failure (sz);
60 }
61 CATCH (ex, RETURN_MASK_ALL)
62 {
63 do_cleanups (all_cleanups ());
64
65 throw gdb_quit_bad_alloc (ex);
66 }
67 END_CATCH
68 }
69 return p;
70}
71
72void *
73operator new (std::size_t sz, const std::nothrow_t&)
74{
75 /* malloc (0) is unpredictable; avoid it. */
76 if (sz == 0)
77 sz = 1;
78 return malloc (sz); /* ARI: malloc */
79}
80
81void *
82operator new[] (std::size_t sz)
83{
84 return ::operator new (sz);
85}
86
87void*
88operator new[] (std::size_t sz, const std::nothrow_t&)
89{
90 return ::operator new (sz, std::nothrow);
91}
3ef9d661 92#endif
This page took 0.032852 seconds and 4 git commands to generate.