Introduce <slot> objects in GOOPS
[bpt/guile.git] / libguile / gc-malloc.c
CommitLineData
8fc5ef7d 1/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
475772ea 2 * 2004, 2006, 2008, 2009, 2010, 2011, 2012, 2013,
bc8e6d7d 3 * 2014 Free Software Foundation, Inc.
c7743d02 4 *
73be1d9e 5 * This library is free software; you can redistribute it and/or
53befeb7
NJ
6 * modify it under the terms of the GNU Lesser General Public License
7 * as published by the Free Software Foundation; either version 3 of
8 * the License, or (at your option) any later version.
c7743d02 9 *
53befeb7
NJ
10 * This library is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
c7743d02 14 *
73be1d9e
MV
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
53befeb7
NJ
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301 USA
73be1d9e 19 */
c7743d02
HWN
20
21
22\f
dbb605f5 23#ifdef HAVE_CONFIG_H
132fa21f
RB
24# include <config.h>
25#endif
26
c7743d02
HWN
27#include <stdio.h>
28#include <errno.h>
29#include <string.h>
34cf38c3 30#include <stdlib.h>
c7743d02
HWN
31
32#ifdef __ia64__
33#include <ucontext.h>
34extern unsigned long * __libc_ia64_register_backing_store_base;
35#endif
36
37#include "libguile/_scm.h"
38#include "libguile/eval.h"
39#include "libguile/stime.h"
40#include "libguile/stackchk.h"
41#include "libguile/struct.h"
42#include "libguile/smob.h"
2fa901a5 43#include "libguile/arrays.h"
c7743d02
HWN
44#include "libguile/async.h"
45#include "libguile/ports.h"
46#include "libguile/root.h"
47#include "libguile/strings.h"
48#include "libguile/vectors.h"
c7743d02
HWN
49#include "libguile/hashtab.h"
50#include "libguile/tags.h"
51
52#include "libguile/validate.h"
53#include "libguile/deprecation.h"
54#include "libguile/gc.h"
55
c7743d02
HWN
56#ifdef GUILE_DEBUG_MALLOC
57#include "libguile/debug-malloc.h"
58#endif
59
c7743d02 60#include <unistd.h>
c7743d02
HWN
61
62/*
63 INIT_MALLOC_LIMIT is the initial amount of malloc usage which will
64 trigger a GC.
65
66 After startup (at the guile> prompt), we have approximately 100k of
67 alloced memory, which won't go away on GC. Let's set the init such
68 that we get a nice yield on the next allocation:
69*/
c2cbcc57 70#define SCM_DEFAULT_INIT_MALLOC_LIMIT 200*1024
c7743d02
HWN
71#define SCM_DEFAULT_MALLOC_MINYIELD 40
72
61ef9c1f 73/* #define DEBUGINFO */
c7743d02 74
c7743d02
HWN
75
76\f
817307cc
AW
77
78static void*
79do_realloc (void *from, size_t new_size)
80{
81 scm_gc_register_allocation (new_size);
82 return realloc (from, new_size);
83}
84
85static void*
86do_calloc (size_t n, size_t size)
87{
88 scm_gc_register_allocation (size);
89 return calloc (n, size);
90}
91
92static void*
93do_gc_malloc (size_t size, const char *what)
94{
95 /* Ensure nonzero size to be compatible with always-nonzero return of
96 glibc malloc. */
97 return GC_MALLOC (size ? size : sizeof (void *));
98}
99
100static void*
101do_gc_malloc_atomic (size_t size, const char *what)
102{
103 return GC_MALLOC_ATOMIC (size ? size : sizeof (void *));
104}
105
106static void*
107do_gc_realloc (void *from, size_t size, const char *what)
108{
109 return GC_REALLOC (from, size ? size : sizeof (void *));
110}
111
112static void
113do_gc_free (void *ptr)
114{
115 GC_FREE (ptr);
116}
117
118
119\f
c7743d02
HWN
120/* Function for non-cell memory management.
121 */
122
c7743d02
HWN
123void *
124scm_realloc (void *mem, size_t size)
125{
126 void *ptr;
127
817307cc 128 ptr = do_realloc (mem, size);
fd51e661 129
817307cc 130 if (ptr || size == 0)
c7743d02
HWN
131 return ptr;
132
26224b3f 133 /* Time is hard: trigger a full, ``stop-the-world'' GC, and try again. */
fd51e661 134 GC_gcollect_and_unmap ();
b17e0ac3 135
817307cc 136 ptr = do_realloc (mem, size);
c7743d02
HWN
137 if (ptr)
138 return ptr;
139
c2247b78
AW
140 scm_report_out_of_memory ();
141
142 /* Not reached. */
143 return NULL;
c7743d02
HWN
144}
145
39e8f371
HWN
146void *
147scm_malloc (size_t sz)
148{
149 return scm_realloc (NULL, sz);
150}
ba1b2226
HWN
151
152/*
153 Hmm. Should we use the C convention for arguments (i.e. N_ELTS,
154 SIZEOF_ELT)? --hwn
155 */
156void *
157scm_calloc (size_t sz)
158{
1383773b
HWN
159 void * ptr;
160
161 /*
162 By default, try to use calloc, as it is likely more efficient than
163 calling memset by hand.
164 */
817307cc
AW
165 ptr = do_calloc (sz, 1);
166 if (ptr || sz == 0)
1383773b 167 return ptr;
26224b3f 168
1383773b 169 ptr = scm_realloc (NULL, sz);
ba1b2226
HWN
170 memset (ptr, 0x0, sz);
171 return ptr;
172}
173
39e8f371 174
c7743d02
HWN
175char *
176scm_strndup (const char *str, size_t n)
177{
fb50ef08 178 char *dst = scm_malloc (n + 1);
c7743d02
HWN
179 memcpy (dst, str, n);
180 dst[n] = 0;
181 return dst;
182}
183
184char *
185scm_strdup (const char *str)
186{
187 return scm_strndup (str, strlen (str));
188}
189
b17e0ac3 190
cbfe8e62
HWN
191
192void
193scm_gc_register_collectable_memory (void *mem, size_t size, const char *what)
194{
76f3ee77
AW
195 scm_gc_register_allocation (size);
196
c7743d02
HWN
197#ifdef GUILE_DEBUG_MALLOC
198 if (mem)
8fc5ef7d 199 scm_malloc_register (mem, what);
c7743d02
HWN
200#endif
201}
202
cbfe8e62 203
c7743d02
HWN
204void
205scm_gc_unregister_collectable_memory (void *mem, size_t size, const char *what)
206{
c5018a2b 207 /* Nothing to do. */
c7743d02
HWN
208#ifdef GUILE_DEBUG_MALLOC
209 if (mem)
210 scm_malloc_unregister (mem);
211#endif
212}
213
3ef6650d
AW
214/* Allocate SIZE bytes of memory whose contents should not be scanned
215 for pointers (useful, e.g., for strings). Note though that this
216 memory is *not* cleared; be sure to initialize it to prevent
217 information leaks. */
c5018a2b
LC
218void *
219scm_gc_malloc_pointerless (size_t size, const char *what)
220{
817307cc 221 return do_gc_malloc_atomic (size, what);
c5018a2b
LC
222}
223
c7743d02
HWN
224void *
225scm_gc_malloc (size_t size, const char *what)
226{
817307cc 227 return do_gc_malloc (size, what);
c7743d02
HWN
228}
229
39e8f371
HWN
230void *
231scm_gc_calloc (size_t size, const char *what)
232{
b1f6293e 233 /* `GC_MALLOC ()' always returns a zeroed buffer. */
817307cc 234 return do_gc_malloc (size, what);
39e8f371
HWN
235}
236
c7743d02
HWN
237void *
238scm_gc_realloc (void *mem, size_t old_size, size_t new_size, const char *what)
239{
817307cc 240 return do_gc_realloc (mem, new_size, what);
c7743d02
HWN
241}
242
243void
244scm_gc_free (void *mem, size_t size, const char *what)
245{
817307cc 246 do_gc_free (mem);
c7743d02
HWN
247}
248
249char *
250scm_gc_strndup (const char *str, size_t n, const char *what)
251{
817307cc 252 char *dst = do_gc_malloc_atomic (n + 1, what);
c7743d02
HWN
253 memcpy (dst, str, n);
254 dst[n] = 0;
255 return dst;
256}
257
258char *
259scm_gc_strdup (const char *str, const char *what)
260{
261 return scm_gc_strndup (str, strlen (str), what);
262}