1 /* memory allocation routines with error checking.
2 Copyright 1989, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
4 This file is part of the libiberty library.
5 Libiberty is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 Libiberty is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with libiberty; see the file COPYING.LIB. If
17 not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
22 @deftypefn Replacement void* xmalloc (size_t)
24 Allocate memory without fail. If @code{malloc} fails, this will print
25 a message to @code{stderr} (using the name set by
26 @code{xmalloc_set_program_name},
27 if any) and then call @code{xexit}. Note that it is therefore safe for
28 a program to contain @code{#define malloc xmalloc} in its source.
32 @deftypefn Replacement void* xrealloc (void *@var{ptr}, size_t @var{size})
33 Reallocate memory without fail. This routine functions like @code{realloc},
34 but will behave the same as @code{xmalloc} if memory cannot be found.
38 @deftypefn Replacement void* xcalloc (size_t @var{nelem}, size_t @var{elsize})
40 Allocate memory without fail, and set it to zero. This routine functions
41 like @code{calloc}, but will behave the same as @code{xmalloc} if memory
46 @deftypefn Replacement void xmalloc_set_program_name (const char *@var{name})
48 You can use this to set the name of the program used by
49 @code{xmalloc_failed} when printing a failure message.
53 @deftypefn Replacement void xmalloc_failed (size_t)
55 This function is not meant to be called by client code, and is listed
56 here for completeness only. If any of the allocation routines fail, this
57 function will be called to print an error message and terminate execution.
67 #include "libiberty.h"
71 #ifdef ANSI_PROTOTYPES
74 #define size_t unsigned long
75 #define ptrdiff_t long
82 /* For systems with larger pointers than ints, these must be declared. */
83 PTR malloc
PARAMS ((size_t));
84 PTR realloc
PARAMS ((PTR
, size_t));
85 PTR calloc
PARAMS ((size_t, size_t));
86 PTR sbrk
PARAMS ((ptrdiff_t));
89 /* The program name if set. */
90 static const char *name
= "";
93 /* The initial sbrk, set when the program name is set. Not used for win32
94 ports other than cygwin32. */
95 static char *first_break
= NULL
;
96 #endif /* HAVE_SBRK */
99 xmalloc_set_program_name (s
)
104 /* Win32 ports other than cygwin32 don't have brk() */
105 if (first_break
== NULL
)
106 first_break
= (char *) sbrk (0);
107 #endif /* HAVE_SBRK */
111 xmalloc_failed (size
)
115 extern char **environ
;
118 if (first_break
!= NULL
)
119 allocated
= (char *) sbrk (0) - first_break
;
121 allocated
= (char *) sbrk (0) - (char *) &environ
;
123 "\n%s%sout of memory allocating %lu bytes after a total of %lu bytes\n",
124 name
, *name
? ": " : "",
125 (unsigned long) size
, (unsigned long) allocated
);
126 #else /* HAVE_SBRK */
128 "\n%s%sout of memory allocating %lu bytes\n",
129 name
, *name
? ": " : "",
130 (unsigned long) size
);
131 #endif /* HAVE_SBRK */
143 newmem
= malloc (size
);
145 xmalloc_failed (size
);
151 xcalloc (nelem
, elsize
)
152 size_t nelem
, elsize
;
156 if (nelem
== 0 || elsize
== 0)
159 newmem
= calloc (nelem
, elsize
);
161 xmalloc_failed (nelem
* elsize
);
167 xrealloc (oldmem
, size
)
176 newmem
= malloc (size
);
178 newmem
= realloc (oldmem
, size
);
180 xmalloc_failed (size
);