1 /* Shared general utility routines for GDB, the GNU debugger.
3 Copyright (C) 1986, 1988-2012 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
26 #include "gdb_assert.h"
31 /* The xmalloc() (libiberty.h) family of memory management routines.
33 These are like the ISO-C malloc() family except that they implement
34 consistent semantics and guard against typical memory management
37 /* NOTE: These are declared using PTR to ensure consistency with
38 "libiberty.h". xfree() is GDB local. */
45 /* See libiberty/xmalloc.c. This function need's to match that's
46 semantics. It never returns NULL. */
50 val
= malloc (size
); /* ARI: malloc */
52 malloc_failure (size
);
58 xrealloc (PTR ptr
, size_t size
) /* ARI: PTR */
62 /* See libiberty/xmalloc.c. This function need's to match that's
63 semantics. It never returns NULL. */
68 val
= realloc (ptr
, size
); /* ARI: realloc */
70 val
= malloc (size
); /* ARI: malloc */
72 malloc_failure (size
);
78 xcalloc (size_t number
, size_t size
)
82 /* See libiberty/xmalloc.c. This function need's to match that's
83 semantics. It never returns NULL. */
84 if (number
== 0 || size
== 0)
90 mem
= calloc (number
, size
); /* ARI: xcalloc */
92 malloc_failure (number
* size
);
100 return xcalloc (1, size
);
107 free (ptr
); /* ARI: free */
110 /* Like asprintf/vasprintf but get an internal_error if the call
114 xstrprintf (const char *format
, ...)
119 va_start (args
, format
);
120 ret
= xstrvprintf (format
, args
);
126 xstrvprintf (const char *format
, va_list ap
)
129 int status
= vasprintf (&ret
, format
, ap
);
131 /* NULL is returned when there was a memory allocation problem, or
132 any other error (for instance, a bad format string). A negative
133 status (the printed length) with a non-NULL buffer should never
134 happen, but just to be sure. */
135 if (ret
== NULL
|| status
< 0)
136 internal_error (__FILE__
, __LINE__
, _("vasprintf call failed"));
141 xasprintf (char **ret
, const char *format
, ...)
145 va_start (args
, format
);
146 (*ret
) = xstrvprintf (format
, args
);
151 xvasprintf (char **ret
, const char *format
, va_list ap
)
153 (*ret
) = xstrvprintf (format
, ap
);
157 xsnprintf (char *str
, size_t size
, const char *format
, ...)
162 va_start (args
, format
);
163 ret
= vsnprintf (str
, size
, format
, args
);
164 gdb_assert (ret
< size
);