Merge from emacs-24; up to 2012-12-30T19:34:25Z!jan.h.d@swipnet.se
[bpt/emacs.git] / src / alloc.c
CommitLineData
7146af97 1/* Storage allocation and gc for GNU Emacs Lisp interpreter.
999dd333 2
ab422c4d
PE
3Copyright (C) 1985-1986, 1988, 1993-1995, 1997-2013 Free Software
4Foundation, Inc.
7146af97
JB
5
6This file is part of GNU Emacs.
7
9ec0b715 8GNU Emacs is free software: you can redistribute it and/or modify
7146af97 9it under the terms of the GNU General Public License as published by
9ec0b715
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
7146af97
JB
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
9ec0b715 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
7146af97 20
18160b98 21#include <config.h>
f162bcc3
PE
22
23#define LISP_INLINE EXTERN_INLINE
24
e9b309ac 25#include <stdio.h>
ab6780cd 26#include <limits.h> /* For CHAR_BIT. */
92939d31 27
bc8000ff 28#ifdef ENABLE_CHECKING
b09cca6a 29#include <signal.h> /* For SIGABRT. */
bc8000ff
EZ
30#endif
31
ae9e757a 32#ifdef HAVE_PTHREAD
aa477689
JD
33#include <pthread.h>
34#endif
35
7146af97 36#include "lisp.h"
ece93c02 37#include "process.h"
d5e35230 38#include "intervals.h"
4c0be5f4 39#include "puresize.h"
e5560ff7 40#include "character.h"
7146af97
JB
41#include "buffer.h"
42#include "window.h"
2538fae4 43#include "keyboard.h"
502b9b64 44#include "frame.h"
9ac0d9e0 45#include "blockinput.h"
4a729fd8 46#include "termhooks.h" /* For struct terminal. */
0328b6de 47
0065d054 48#include <verify.h>
e065a56e 49
52828e02
PE
50/* GC_CHECK_MARKED_OBJECTS means do sanity checks on allocated objects.
51 Doable only if GC_MARK_STACK. */
52#if ! GC_MARK_STACK
53# undef GC_CHECK_MARKED_OBJECTS
54#endif
55
6b61353c 56/* GC_MALLOC_CHECK defined means perform validity checks of malloc'd
52828e02
PE
57 memory. Can do this only if using gmalloc.c and if not checking
58 marked objects. */
6b61353c 59
52828e02
PE
60#if (defined SYSTEM_MALLOC || defined DOUG_LEA_MALLOC \
61 || defined GC_CHECK_MARKED_OBJECTS)
6b61353c
KH
62#undef GC_MALLOC_CHECK
63#endif
64
bf952fb6 65#include <unistd.h>
de7124a7 66#include <fcntl.h>
de7124a7 67
a411ac43
PE
68#ifdef USE_GTK
69# include "gtkutil.h"
70#endif
69666f77 71#ifdef WINDOWSNT
f892cf9c 72#include "w32.h"
62aba0d4 73#include "w32heap.h" /* for sbrk */
69666f77
EZ
74#endif
75
d1658221 76#ifdef DOUG_LEA_MALLOC
2e471eb5 77
d1658221 78#include <malloc.h>
81d492d5 79
2e471eb5
GM
80/* Specify maximum number of areas to mmap. It would be nice to use a
81 value that explicitly means "no limit". */
82
81d492d5
RS
83#define MMAP_MAX_AREAS 100000000
84
2e471eb5 85#endif /* not DOUG_LEA_MALLOC */
276cbe5a 86
2e471eb5
GM
87/* Mark, unmark, query mark bit of a Lisp string. S must be a pointer
88 to a struct Lisp_String. */
89
7cdee936
SM
90#define MARK_STRING(S) ((S)->size |= ARRAY_MARK_FLAG)
91#define UNMARK_STRING(S) ((S)->size &= ~ARRAY_MARK_FLAG)
b059de99 92#define STRING_MARKED_P(S) (((S)->size & ARRAY_MARK_FLAG) != 0)
2e471eb5 93
eab3844f
PE
94#define VECTOR_MARK(V) ((V)->header.size |= ARRAY_MARK_FLAG)
95#define VECTOR_UNMARK(V) ((V)->header.size &= ~ARRAY_MARK_FLAG)
96#define VECTOR_MARKED_P(V) (((V)->header.size & ARRAY_MARK_FLAG) != 0)
3ef06d12 97
0dd6d66d
DA
98/* Default value of gc_cons_threshold (see below). */
99
663e2b3f 100#define GC_DEFAULT_THRESHOLD (100000 * word_size)
0dd6d66d 101
29208e82
TT
102/* Global variables. */
103struct emacs_globals globals;
104
2e471eb5
GM
105/* Number of bytes of consing done since the last gc. */
106
dac616ff 107EMACS_INT consing_since_gc;
7146af97 108
974aae61
RS
109/* Similar minimum, computed from Vgc_cons_percentage. */
110
dac616ff 111EMACS_INT gc_relative_threshold;
310ea200 112
24d8a105
RS
113/* Minimum number of bytes of consing since GC before next GC,
114 when memory is full. */
115
dac616ff 116EMACS_INT memory_full_cons_threshold;
24d8a105 117
fce31d69 118/* True during GC. */
2e471eb5 119
fce31d69 120bool gc_in_progress;
7146af97 121
fce31d69 122/* True means abort if try to GC.
3de0effb
RS
123 This is for code which is written on the assumption that
124 no GC will happen, so as to verify that assumption. */
125
fce31d69 126bool abort_on_gc;
3de0effb 127
34400008
GM
128/* Number of live and free conses etc. */
129
3ab6e069 130static EMACS_INT total_conses, total_markers, total_symbols, total_buffers;
c0c5c8ae 131static EMACS_INT total_free_conses, total_free_markers, total_free_symbols;
3ab6e069 132static EMACS_INT total_free_floats, total_floats;
fd27a537 133
2e471eb5 134/* Points to memory space allocated as "spare", to be freed if we run
24d8a105
RS
135 out of memory. We keep one large block, four cons-blocks, and
136 two string blocks. */
2e471eb5 137
d3d47262 138static char *spare_memory[7];
276cbe5a 139
2b6148e4
PE
140/* Amount of spare memory to keep in large reserve block, or to see
141 whether this much is available when malloc fails on a larger request. */
2e471eb5 142
276cbe5a 143#define SPARE_MEMORY (1 << 14)
4d09bcf6 144
1b8950e5
RS
145/* Initialize it to a nonzero value to force it into data space
146 (rather than bss space). That way unexec will remap it into text
147 space (pure), on some systems. We have not implemented the
148 remapping on more recent systems because this is less important
149 nowadays than in the days of small memories and timesharing. */
2e471eb5 150
2c4685ee 151EMACS_INT pure[(PURESIZE + sizeof (EMACS_INT) - 1) / sizeof (EMACS_INT)] = {1,};
7146af97 152#define PUREBEG (char *) pure
2e471eb5 153
9e713715 154/* Pointer to the pure area, and its size. */
2e471eb5 155
9e713715 156static char *purebeg;
903fe15d 157static ptrdiff_t pure_size;
9e713715
GM
158
159/* Number of bytes of pure storage used before pure storage overflowed.
160 If this is non-zero, this implies that an overflow occurred. */
161
903fe15d 162static ptrdiff_t pure_bytes_used_before_overflow;
7146af97 163
fce31d69 164/* True if P points into pure space. */
34400008
GM
165
166#define PURE_POINTER_P(P) \
6a0bf43d 167 ((uintptr_t) (P) - (uintptr_t) purebeg <= pure_size)
34400008 168
fecbd8ff 169/* Index in pure at which next pure Lisp object will be allocated.. */
e5bc14d4 170
d311d28c 171static ptrdiff_t pure_bytes_used_lisp;
e5bc14d4
YM
172
173/* Number of bytes allocated for non-Lisp objects in pure storage. */
174
d311d28c 175static ptrdiff_t pure_bytes_used_non_lisp;
e5bc14d4 176
2e471eb5
GM
177/* If nonzero, this is a warning delivered by malloc and not yet
178 displayed. */
179
a8fe7202 180const char *pending_malloc_warning;
7146af97
JB
181
182/* Maximum amount of C stack to save when a GC happens. */
183
184#ifndef MAX_SAVE_STACK
185#define MAX_SAVE_STACK 16000
186#endif
187
188/* Buffer in which we save a copy of the C stack at each GC. */
189
dd3f25f7 190#if MAX_SAVE_STACK > 0
d3d47262 191static char *stack_copy;
903fe15d 192static ptrdiff_t stack_copy_size;
dd3f25f7 193#endif
7146af97 194
fecbd8ff
SM
195static Lisp_Object Qconses;
196static Lisp_Object Qsymbols;
197static Lisp_Object Qmiscs;
198static Lisp_Object Qstrings;
199static Lisp_Object Qvectors;
200static Lisp_Object Qfloats;
201static Lisp_Object Qintervals;
202static Lisp_Object Qbuffers;
f8643a6b 203static Lisp_Object Qstring_bytes, Qvector_slots, Qheap;
955cbe7b 204static Lisp_Object Qgc_cons_threshold;
3d80c99f 205Lisp_Object Qautomatic_gc;
955cbe7b 206Lisp_Object Qchar_table_extra_slots;
e8197642 207
9e713715
GM
208/* Hook run after GC has finished. */
209
955cbe7b 210static Lisp_Object Qpost_gc_hook;
2c5bd608 211
963ea40f 212static void free_save_value (Lisp_Object);
f57e2426 213static void mark_terminals (void);
f57e2426 214static void gc_sweep (void);
72cb32cf 215static Lisp_Object make_pure_vector (ptrdiff_t);
c752cfa9 216static void mark_buffer (struct buffer *);
41c28a37 217
69003fd8
PE
218#if !defined REL_ALLOC || defined SYSTEM_MALLOC
219static void refill_memory_reserve (void);
220#endif
f57e2426
J
221static void compact_small_strings (void);
222static void free_large_strings (void);
196e41e4 223extern Lisp_Object which_symbols (Lisp_Object, EMACS_INT) EXTERNALLY_VISIBLE;
34400008 224
914adc42
DA
225/* When scanning the C stack for live Lisp objects, Emacs keeps track of
226 what memory allocated via lisp_malloc and lisp_align_malloc is intended
227 for what purpose. This enumeration specifies the type of memory. */
34400008
GM
228
229enum mem_type
230{
231 MEM_TYPE_NON_LISP,
232 MEM_TYPE_BUFFER,
233 MEM_TYPE_CONS,
234 MEM_TYPE_STRING,
235 MEM_TYPE_MISC,
236 MEM_TYPE_SYMBOL,
237 MEM_TYPE_FLOAT,
914adc42
DA
238 /* Since all non-bool pseudovectors are small enough to be
239 allocated from vector blocks, this memory type denotes
240 large regular vectors and large bool pseudovectors. */
f3372c87
DA
241 MEM_TYPE_VECTORLIKE,
242 /* Special type to denote vector blocks. */
35aaa1ea
DA
243 MEM_TYPE_VECTOR_BLOCK,
244 /* Special type to denote reserved memory. */
245 MEM_TYPE_SPARE
34400008
GM
246};
247
877935b1 248#if GC_MARK_STACK || defined GC_MALLOC_CHECK
0b378936 249
0b378936
GM
250/* A unique object in pure space used to make some Lisp objects
251 on free lists recognizable in O(1). */
252
d3d47262 253static Lisp_Object Vdead;
ca78dc43 254#define DEADP(x) EQ (x, Vdead)
0b378936 255
877935b1
GM
256#ifdef GC_MALLOC_CHECK
257
258enum mem_type allocated_mem_type;
877935b1
GM
259
260#endif /* GC_MALLOC_CHECK */
261
262/* A node in the red-black tree describing allocated memory containing
263 Lisp data. Each such block is recorded with its start and end
264 address when it is allocated, and removed from the tree when it
265 is freed.
266
267 A red-black tree is a balanced binary tree with the following
268 properties:
269
270 1. Every node is either red or black.
271 2. Every leaf is black.
272 3. If a node is red, then both of its children are black.
273 4. Every simple path from a node to a descendant leaf contains
274 the same number of black nodes.
275 5. The root is always black.
276
277 When nodes are inserted into the tree, or deleted from the tree,
278 the tree is "fixed" so that these properties are always true.
279
280 A red-black tree with N internal nodes has height at most 2
281 log(N+1). Searches, insertions and deletions are done in O(log N).
282 Please see a text book about data structures for a detailed
283 description of red-black trees. Any book worth its salt should
284 describe them. */
285
286struct mem_node
287{
9f7d9210
RS
288 /* Children of this node. These pointers are never NULL. When there
289 is no child, the value is MEM_NIL, which points to a dummy node. */
290 struct mem_node *left, *right;
291
292 /* The parent of this node. In the root node, this is NULL. */
293 struct mem_node *parent;
877935b1
GM
294
295 /* Start and end of allocated region. */
296 void *start, *end;
297
298 /* Node color. */
299 enum {MEM_BLACK, MEM_RED} color;
177c0ea7 300
877935b1
GM
301 /* Memory type. */
302 enum mem_type type;
303};
304
305/* Base address of stack. Set in main. */
306
307Lisp_Object *stack_base;
308
309/* Root of the tree describing allocated Lisp memory. */
310
311static struct mem_node *mem_root;
312
ece93c02
GM
313/* Lowest and highest known address in the heap. */
314
315static void *min_heap_address, *max_heap_address;
316
877935b1
GM
317/* Sentinel node of the tree. */
318
319static struct mem_node mem_z;
320#define MEM_NIL &mem_z
321
52828e02 322#if GC_MARK_STACK || defined GC_MALLOC_CHECK
f57e2426
J
323static struct mem_node *mem_insert (void *, void *, enum mem_type);
324static void mem_insert_fixup (struct mem_node *);
325static void mem_rotate_left (struct mem_node *);
326static void mem_rotate_right (struct mem_node *);
327static void mem_delete (struct mem_node *);
328static void mem_delete_fixup (struct mem_node *);
b0ab8123 329static struct mem_node *mem_find (void *);
0caaedb1 330#endif
34400008 331
877935b1 332#endif /* GC_MARK_STACK || GC_MALLOC_CHECK */
34400008 333
ca78dc43
PE
334#ifndef DEADP
335# define DEADP(x) 0
336#endif
337
1f0b3fd2
GM
338/* Recording what needs to be marked for gc. */
339
340struct gcpro *gcprolist;
341
379b98b1
PE
342/* Addresses of staticpro'd variables. Initialize it to a nonzero
343 value; otherwise some compilers put it into BSS. */
1f0b3fd2 344
d2824928 345#define NSTATICS 0x800
d3d47262 346static Lisp_Object *staticvec[NSTATICS] = {&Vpurify_flag};
1f0b3fd2
GM
347
348/* Index of next unused slot in staticvec. */
349
fff62aa9 350static int staticidx;
1f0b3fd2 351
261cb4bb 352static void *pure_alloc (size_t, int);
1f0b3fd2
GM
353
354
355/* Value is SZ rounded up to the next multiple of ALIGNMENT.
356 ALIGNMENT must be a power of 2. */
357
ab6780cd 358#define ALIGN(ptr, ALIGNMENT) \
261cb4bb
PE
359 ((void *) (((uintptr_t) (ptr) + (ALIGNMENT) - 1) \
360 & ~ ((ALIGNMENT) - 1)))
1f0b3fd2 361
84575e67
PE
362static void
363XFLOAT_INIT (Lisp_Object f, double n)
364{
365 XFLOAT (f)->u.data = n;
366}
ece93c02 367
7146af97 368\f
34400008
GM
369/************************************************************************
370 Malloc
371 ************************************************************************/
372
4455ad75 373/* Function malloc calls this if it finds we are near exhausting storage. */
d457598b
AS
374
375void
a8fe7202 376malloc_warning (const char *str)
7146af97
JB
377{
378 pending_malloc_warning = str;
379}
380
34400008 381
4455ad75 382/* Display an already-pending malloc warning. */
34400008 383
d457598b 384void
971de7fb 385display_malloc_warning (void)
7146af97 386{
4455ad75
RS
387 call3 (intern ("display-warning"),
388 intern ("alloc"),
389 build_string (pending_malloc_warning),
390 intern ("emergency"));
7146af97 391 pending_malloc_warning = 0;
7146af97 392}
49efed3a 393\f
276cbe5a
RS
394/* Called if we can't allocate relocatable space for a buffer. */
395
396void
d311d28c 397buffer_memory_full (ptrdiff_t nbytes)
276cbe5a 398{
2e471eb5
GM
399 /* If buffers use the relocating allocator, no need to free
400 spare_memory, because we may have plenty of malloc space left
401 that we could get, and if we don't, the malloc that fails will
402 itself cause spare_memory to be freed. If buffers don't use the
403 relocating allocator, treat this like any other failing
404 malloc. */
276cbe5a
RS
405
406#ifndef REL_ALLOC
531b0165 407 memory_full (nbytes);
d9df6f40 408#else
2e471eb5
GM
409 /* This used to call error, but if we've run out of memory, we could
410 get infinite recursion trying to build the string. */
9b306d37 411 xsignal (Qnil, Vmemory_signal_data);
d9df6f40 412#endif
7146af97
JB
413}
414
f3372c87
DA
415/* A common multiple of the positive integers A and B. Ideally this
416 would be the least common multiple, but there's no way to do that
417 as a constant expression in C, so do the best that we can easily do. */
418#define COMMON_MULTIPLE(a, b) \
419 ((a) % (b) == 0 ? (a) : (b) % (a) == 0 ? (b) : (a) * (b))
34400008 420
c9d624c6 421#ifndef XMALLOC_OVERRUN_CHECK
903fe15d 422#define XMALLOC_OVERRUN_CHECK_OVERHEAD 0
c9d624c6 423#else
212f33f1 424
903fe15d
PE
425/* Check for overrun in malloc'ed buffers by wrapping a header and trailer
426 around each block.
bdbed949 427
f701dc2a
PE
428 The header consists of XMALLOC_OVERRUN_CHECK_SIZE fixed bytes
429 followed by XMALLOC_OVERRUN_SIZE_SIZE bytes containing the original
430 block size in little-endian order. The trailer consists of
431 XMALLOC_OVERRUN_CHECK_SIZE fixed bytes.
bdbed949
KS
432
433 The header is used to detect whether this block has been allocated
f701dc2a
PE
434 through these functions, as some low-level libc functions may
435 bypass the malloc hooks. */
bdbed949 436
212f33f1 437#define XMALLOC_OVERRUN_CHECK_SIZE 16
903fe15d 438#define XMALLOC_OVERRUN_CHECK_OVERHEAD \
38532ce6
PE
439 (2 * XMALLOC_OVERRUN_CHECK_SIZE + XMALLOC_OVERRUN_SIZE_SIZE)
440
441/* Define XMALLOC_OVERRUN_SIZE_SIZE so that (1) it's large enough to
f701dc2a
PE
442 hold a size_t value and (2) the header size is a multiple of the
443 alignment that Emacs needs for C types and for USE_LSB_TAG. */
444#define XMALLOC_BASE_ALIGNMENT \
e32a5799 445 alignof (union { long double d; intmax_t i; void *p; })
f3372c87 446
bfe3e0a2 447#if USE_LSB_TAG
f701dc2a 448# define XMALLOC_HEADER_ALIGNMENT \
2b90362b 449 COMMON_MULTIPLE (GCALIGNMENT, XMALLOC_BASE_ALIGNMENT)
38532ce6
PE
450#else
451# define XMALLOC_HEADER_ALIGNMENT XMALLOC_BASE_ALIGNMENT
452#endif
453#define XMALLOC_OVERRUN_SIZE_SIZE \
f701dc2a
PE
454 (((XMALLOC_OVERRUN_CHECK_SIZE + sizeof (size_t) \
455 + XMALLOC_HEADER_ALIGNMENT - 1) \
456 / XMALLOC_HEADER_ALIGNMENT * XMALLOC_HEADER_ALIGNMENT) \
457 - XMALLOC_OVERRUN_CHECK_SIZE)
bdbed949 458
903fe15d
PE
459static char const xmalloc_overrun_check_header[XMALLOC_OVERRUN_CHECK_SIZE] =
460 { '\x9a', '\x9b', '\xae', '\xaf',
461 '\xbf', '\xbe', '\xce', '\xcf',
462 '\xea', '\xeb', '\xec', '\xed',
463 '\xdf', '\xde', '\x9c', '\x9d' };
212f33f1 464
903fe15d
PE
465static char const xmalloc_overrun_check_trailer[XMALLOC_OVERRUN_CHECK_SIZE] =
466 { '\xaa', '\xab', '\xac', '\xad',
467 '\xba', '\xbb', '\xbc', '\xbd',
468 '\xca', '\xcb', '\xcc', '\xcd',
469 '\xda', '\xdb', '\xdc', '\xdd' };
212f33f1 470
903fe15d 471/* Insert and extract the block size in the header. */
bdbed949 472
903fe15d
PE
473static void
474xmalloc_put_size (unsigned char *ptr, size_t size)
475{
476 int i;
38532ce6 477 for (i = 0; i < XMALLOC_OVERRUN_SIZE_SIZE; i++)
903fe15d 478 {
38532ce6 479 *--ptr = size & ((1 << CHAR_BIT) - 1);
903fe15d
PE
480 size >>= CHAR_BIT;
481 }
482}
bdbed949 483
903fe15d
PE
484static size_t
485xmalloc_get_size (unsigned char *ptr)
486{
487 size_t size = 0;
488 int i;
38532ce6
PE
489 ptr -= XMALLOC_OVERRUN_SIZE_SIZE;
490 for (i = 0; i < XMALLOC_OVERRUN_SIZE_SIZE; i++)
903fe15d
PE
491 {
492 size <<= CHAR_BIT;
493 size += *ptr++;
494 }
495 return size;
496}
bdbed949
KS
497
498
499/* Like malloc, but wraps allocated block with header and trailer. */
500
261cb4bb 501static void *
e7974947 502overrun_check_malloc (size_t size)
212f33f1 503{
bdbed949 504 register unsigned char *val;
0caaedb1 505 if (SIZE_MAX - XMALLOC_OVERRUN_CHECK_OVERHEAD < size)
1088b922 506 emacs_abort ();
212f33f1 507
0caaedb1
PE
508 val = malloc (size + XMALLOC_OVERRUN_CHECK_OVERHEAD);
509 if (val)
212f33f1 510 {
903fe15d 511 memcpy (val, xmalloc_overrun_check_header, XMALLOC_OVERRUN_CHECK_SIZE);
38532ce6 512 val += XMALLOC_OVERRUN_CHECK_SIZE + XMALLOC_OVERRUN_SIZE_SIZE;
903fe15d 513 xmalloc_put_size (val, size);
72af86bd
AS
514 memcpy (val + size, xmalloc_overrun_check_trailer,
515 XMALLOC_OVERRUN_CHECK_SIZE);
212f33f1 516 }
261cb4bb 517 return val;
212f33f1
KS
518}
519
bdbed949
KS
520
521/* Like realloc, but checks old block for overrun, and wraps new block
522 with header and trailer. */
523
261cb4bb
PE
524static void *
525overrun_check_realloc (void *block, size_t size)
212f33f1 526{
e7974947 527 register unsigned char *val = (unsigned char *) block;
0caaedb1 528 if (SIZE_MAX - XMALLOC_OVERRUN_CHECK_OVERHEAD < size)
1088b922 529 emacs_abort ();
212f33f1
KS
530
531 if (val
72af86bd 532 && memcmp (xmalloc_overrun_check_header,
38532ce6 533 val - XMALLOC_OVERRUN_CHECK_SIZE - XMALLOC_OVERRUN_SIZE_SIZE,
903fe15d 534 XMALLOC_OVERRUN_CHECK_SIZE) == 0)
212f33f1 535 {
903fe15d 536 size_t osize = xmalloc_get_size (val);
72af86bd
AS
537 if (memcmp (xmalloc_overrun_check_trailer, val + osize,
538 XMALLOC_OVERRUN_CHECK_SIZE))
1088b922 539 emacs_abort ();
72af86bd 540 memset (val + osize, 0, XMALLOC_OVERRUN_CHECK_SIZE);
38532ce6
PE
541 val -= XMALLOC_OVERRUN_CHECK_SIZE + XMALLOC_OVERRUN_SIZE_SIZE;
542 memset (val, 0, XMALLOC_OVERRUN_CHECK_SIZE + XMALLOC_OVERRUN_SIZE_SIZE);
212f33f1
KS
543 }
544
0caaedb1 545 val = realloc (val, size + XMALLOC_OVERRUN_CHECK_OVERHEAD);
212f33f1 546
0caaedb1 547 if (val)
212f33f1 548 {
903fe15d 549 memcpy (val, xmalloc_overrun_check_header, XMALLOC_OVERRUN_CHECK_SIZE);
38532ce6 550 val += XMALLOC_OVERRUN_CHECK_SIZE + XMALLOC_OVERRUN_SIZE_SIZE;
903fe15d 551 xmalloc_put_size (val, size);
72af86bd
AS
552 memcpy (val + size, xmalloc_overrun_check_trailer,
553 XMALLOC_OVERRUN_CHECK_SIZE);
212f33f1 554 }
261cb4bb 555 return val;
212f33f1
KS
556}
557
bdbed949
KS
558/* Like free, but checks block for overrun. */
559
2538aa2f 560static void
261cb4bb 561overrun_check_free (void *block)
212f33f1 562{
e7974947 563 unsigned char *val = (unsigned char *) block;
212f33f1
KS
564
565 if (val
72af86bd 566 && memcmp (xmalloc_overrun_check_header,
38532ce6 567 val - XMALLOC_OVERRUN_CHECK_SIZE - XMALLOC_OVERRUN_SIZE_SIZE,
903fe15d 568 XMALLOC_OVERRUN_CHECK_SIZE) == 0)
212f33f1 569 {
903fe15d 570 size_t osize = xmalloc_get_size (val);
72af86bd
AS
571 if (memcmp (xmalloc_overrun_check_trailer, val + osize,
572 XMALLOC_OVERRUN_CHECK_SIZE))
1088b922 573 emacs_abort ();
454d7973 574#ifdef XMALLOC_CLEAR_FREE_MEMORY
38532ce6 575 val -= XMALLOC_OVERRUN_CHECK_SIZE + XMALLOC_OVERRUN_SIZE_SIZE;
903fe15d 576 memset (val, 0xff, osize + XMALLOC_OVERRUN_CHECK_OVERHEAD);
454d7973 577#else
72af86bd 578 memset (val + osize, 0, XMALLOC_OVERRUN_CHECK_SIZE);
38532ce6
PE
579 val -= XMALLOC_OVERRUN_CHECK_SIZE + XMALLOC_OVERRUN_SIZE_SIZE;
580 memset (val, 0, XMALLOC_OVERRUN_CHECK_SIZE + XMALLOC_OVERRUN_SIZE_SIZE);
454d7973 581#endif
212f33f1
KS
582 }
583
584 free (val);
585}
586
587#undef malloc
588#undef realloc
589#undef free
590#define malloc overrun_check_malloc
591#define realloc overrun_check_realloc
592#define free overrun_check_free
593#endif
594
0caaedb1
PE
595/* If compiled with XMALLOC_BLOCK_INPUT_CHECK, define a symbol
596 BLOCK_INPUT_IN_MEMORY_ALLOCATORS that is visible to the debugger.
597 If that variable is set, block input while in one of Emacs's memory
598 allocation functions. There should be no need for this debugging
599 option, since signal handlers do not allocate memory, but Emacs
600 formerly allocated memory in signal handlers and this compile-time
601 option remains as a way to help debug the issue should it rear its
602 ugly head again. */
603#ifdef XMALLOC_BLOCK_INPUT_CHECK
604bool block_input_in_memory_allocators EXTERNALLY_VISIBLE;
605static void
606malloc_block_input (void)
607{
608 if (block_input_in_memory_allocators)
4d7e6e51 609 block_input ();
0caaedb1
PE
610}
611static void
612malloc_unblock_input (void)
613{
614 if (block_input_in_memory_allocators)
4d7e6e51 615 unblock_input ();
0caaedb1
PE
616}
617# define MALLOC_BLOCK_INPUT malloc_block_input ()
618# define MALLOC_UNBLOCK_INPUT malloc_unblock_input ()
dafc79fa 619#else
0caaedb1
PE
620# define MALLOC_BLOCK_INPUT ((void) 0)
621# define MALLOC_UNBLOCK_INPUT ((void) 0)
dafc79fa 622#endif
bdbed949 623
3a880af4
SM
624#define MALLOC_PROBE(size) \
625 do { \
626 if (profiler_memory_running) \
627 malloc_probe (size); \
628 } while (0)
629
630
34400008 631/* Like malloc but check for no memory and block interrupt input.. */
7146af97 632
261cb4bb 633void *
971de7fb 634xmalloc (size_t size)
7146af97 635{
261cb4bb 636 void *val;
7146af97 637
dafc79fa 638 MALLOC_BLOCK_INPUT;
261cb4bb 639 val = malloc (size);
dafc79fa 640 MALLOC_UNBLOCK_INPUT;
7146af97 641
2e471eb5 642 if (!val && size)
531b0165 643 memory_full (size);
c2d7786e 644 MALLOC_PROBE (size);
7146af97
JB
645 return val;
646}
647
23f86fce
DA
648/* Like the above, but zeroes out the memory just allocated. */
649
650void *
651xzalloc (size_t size)
652{
653 void *val;
654
655 MALLOC_BLOCK_INPUT;
656 val = malloc (size);
657 MALLOC_UNBLOCK_INPUT;
658
659 if (!val && size)
660 memory_full (size);
661 memset (val, 0, size);
c2d7786e 662 MALLOC_PROBE (size);
23f86fce
DA
663 return val;
664}
34400008
GM
665
666/* Like realloc but check for no memory and block interrupt input.. */
667
261cb4bb
PE
668void *
669xrealloc (void *block, size_t size)
7146af97 670{
261cb4bb 671 void *val;
7146af97 672
dafc79fa 673 MALLOC_BLOCK_INPUT;
56d2031b
JB
674 /* We must call malloc explicitly when BLOCK is 0, since some
675 reallocs don't do this. */
676 if (! block)
261cb4bb 677 val = malloc (size);
f048679d 678 else
261cb4bb 679 val = realloc (block, size);
dafc79fa 680 MALLOC_UNBLOCK_INPUT;
7146af97 681
531b0165
PE
682 if (!val && size)
683 memory_full (size);
c2d7786e 684 MALLOC_PROBE (size);
7146af97
JB
685 return val;
686}
9ac0d9e0 687
34400008 688
005ca5c7 689/* Like free but block interrupt input. */
34400008 690
9ac0d9e0 691void
261cb4bb 692xfree (void *block)
9ac0d9e0 693{
70fdbb46
JM
694 if (!block)
695 return;
dafc79fa 696 MALLOC_BLOCK_INPUT;
9ac0d9e0 697 free (block);
dafc79fa 698 MALLOC_UNBLOCK_INPUT;
24d8a105 699 /* We don't call refill_memory_reserve here
0caaedb1 700 because in practice the call in r_alloc_free seems to suffice. */
9ac0d9e0
JB
701}
702
c8099634 703
0065d054
PE
704/* Other parts of Emacs pass large int values to allocator functions
705 expecting ptrdiff_t. This is portable in practice, but check it to
706 be safe. */
707verify (INT_MAX <= PTRDIFF_MAX);
708
709
710/* Allocate an array of NITEMS items, each of size ITEM_SIZE.
711 Signal an error on memory exhaustion, and block interrupt input. */
712
713void *
714xnmalloc (ptrdiff_t nitems, ptrdiff_t item_size)
715{
a54e2c05 716 eassert (0 <= nitems && 0 < item_size);
0065d054
PE
717 if (min (PTRDIFF_MAX, SIZE_MAX) / item_size < nitems)
718 memory_full (SIZE_MAX);
719 return xmalloc (nitems * item_size);
720}
721
722
723/* Reallocate an array PA to make it of NITEMS items, each of size ITEM_SIZE.
724 Signal an error on memory exhaustion, and block interrupt input. */
725
726void *
727xnrealloc (void *pa, ptrdiff_t nitems, ptrdiff_t item_size)
728{
a54e2c05 729 eassert (0 <= nitems && 0 < item_size);
0065d054
PE
730 if (min (PTRDIFF_MAX, SIZE_MAX) / item_size < nitems)
731 memory_full (SIZE_MAX);
732 return xrealloc (pa, nitems * item_size);
733}
734
735
736/* Grow PA, which points to an array of *NITEMS items, and return the
737 location of the reallocated array, updating *NITEMS to reflect its
738 new size. The new array will contain at least NITEMS_INCR_MIN more
739 items, but will not contain more than NITEMS_MAX items total.
740 ITEM_SIZE is the size of each item, in bytes.
741
742 ITEM_SIZE and NITEMS_INCR_MIN must be positive. *NITEMS must be
743 nonnegative. If NITEMS_MAX is -1, it is treated as if it were
744 infinity.
745
746 If PA is null, then allocate a new array instead of reallocating
2dd2e622 747 the old one.
0065d054
PE
748
749 Block interrupt input as needed. If memory exhaustion occurs, set
750 *NITEMS to zero if PA is null, and signal an error (i.e., do not
2dd2e622
PE
751 return).
752
753 Thus, to grow an array A without saving its old contents, do
754 { xfree (A); A = NULL; A = xpalloc (NULL, &AITEMS, ...); }.
755 The A = NULL avoids a dangling pointer if xpalloc exhausts memory
756 and signals an error, and later this code is reexecuted and
757 attempts to free A. */
0065d054
PE
758
759void *
760xpalloc (void *pa, ptrdiff_t *nitems, ptrdiff_t nitems_incr_min,
761 ptrdiff_t nitems_max, ptrdiff_t item_size)
762{
763 /* The approximate size to use for initial small allocation
764 requests. This is the largest "small" request for the GNU C
765 library malloc. */
766 enum { DEFAULT_MXFAST = 64 * sizeof (size_t) / 4 };
767
768 /* If the array is tiny, grow it to about (but no greater than)
769 DEFAULT_MXFAST bytes. Otherwise, grow it by about 50%. */
770 ptrdiff_t n = *nitems;
771 ptrdiff_t tiny_max = DEFAULT_MXFAST / item_size - n;
772 ptrdiff_t half_again = n >> 1;
773 ptrdiff_t incr_estimate = max (tiny_max, half_again);
774
775 /* Adjust the increment according to three constraints: NITEMS_INCR_MIN,
776 NITEMS_MAX, and what the C language can represent safely. */
777 ptrdiff_t C_language_max = min (PTRDIFF_MAX, SIZE_MAX) / item_size;
778 ptrdiff_t n_max = (0 <= nitems_max && nitems_max < C_language_max
779 ? nitems_max : C_language_max);
780 ptrdiff_t nitems_incr_max = n_max - n;
781 ptrdiff_t incr = max (nitems_incr_min, min (incr_estimate, nitems_incr_max));
782
7216e43b 783 eassert (0 < item_size && 0 < nitems_incr_min && 0 <= n && -1 <= nitems_max);
0065d054
PE
784 if (! pa)
785 *nitems = 0;
786 if (nitems_incr_max < incr)
787 memory_full (SIZE_MAX);
788 n += incr;
789 pa = xrealloc (pa, n * item_size);
790 *nitems = n;
791 return pa;
792}
793
794
dca7c6a8
GM
795/* Like strdup, but uses xmalloc. */
796
797char *
971de7fb 798xstrdup (const char *s)
dca7c6a8 799{
675d5130 800 size_t len = strlen (s) + 1;
23f86fce 801 char *p = xmalloc (len);
72af86bd 802 memcpy (p, s, len);
dca7c6a8
GM
803 return p;
804}
805
5745a7df
PE
806/* Like putenv, but (1) use the equivalent of xmalloc and (2) the
807 argument is a const pointer. */
808
809void
810xputenv (char const *string)
811{
812 if (putenv ((char *) string) != 0)
813 memory_full (0);
814}
dca7c6a8 815
f61bef8b
KS
816/* Unwind for SAFE_ALLOCA */
817
818Lisp_Object
971de7fb 819safe_alloca_unwind (Lisp_Object arg)
f61bef8b 820{
62c2e5ed 821 free_save_value (arg);
f61bef8b
KS
822 return Qnil;
823}
824
98c6f1e3
PE
825/* Return a newly allocated memory block of SIZE bytes, remembering
826 to free it when unwinding. */
827void *
828record_xmalloc (size_t size)
829{
830 void *p = xmalloc (size);
468afbac 831 record_unwind_protect (safe_alloca_unwind, make_save_pointer (p));
98c6f1e3
PE
832 return p;
833}
834
f61bef8b 835
34400008
GM
836/* Like malloc but used for allocating Lisp data. NBYTES is the
837 number of bytes to allocate, TYPE describes the intended use of the
91af3942 838 allocated memory block (for strings, for conses, ...). */
34400008 839
bfe3e0a2
PE
840#if ! USE_LSB_TAG
841void *lisp_malloc_loser EXTERNALLY_VISIBLE;
212f33f1 842#endif
918a23a7 843
261cb4bb 844static void *
971de7fb 845lisp_malloc (size_t nbytes, enum mem_type type)
c8099634 846{
34400008 847 register void *val;
c8099634 848
dafc79fa 849 MALLOC_BLOCK_INPUT;
877935b1
GM
850
851#ifdef GC_MALLOC_CHECK
852 allocated_mem_type = type;
853#endif
177c0ea7 854
38182d90 855 val = malloc (nbytes);
c8099634 856
bfe3e0a2 857#if ! USE_LSB_TAG
918a23a7
RS
858 /* If the memory just allocated cannot be addressed thru a Lisp
859 object's pointer, and it needs to be,
860 that's equivalent to running out of memory. */
861 if (val && type != MEM_TYPE_NON_LISP)
862 {
863 Lisp_Object tem;
864 XSETCONS (tem, (char *) val + nbytes - 1);
865 if ((char *) XCONS (tem) != (char *) val + nbytes - 1)
866 {
867 lisp_malloc_loser = val;
868 free (val);
869 val = 0;
870 }
871 }
6b61353c 872#endif
918a23a7 873
877935b1 874#if GC_MARK_STACK && !defined GC_MALLOC_CHECK
dca7c6a8 875 if (val && type != MEM_TYPE_NON_LISP)
34400008
GM
876 mem_insert (val, (char *) val + nbytes, type);
877#endif
177c0ea7 878
dafc79fa 879 MALLOC_UNBLOCK_INPUT;
dca7c6a8 880 if (!val && nbytes)
531b0165 881 memory_full (nbytes);
c2d7786e 882 MALLOC_PROBE (nbytes);
c8099634
RS
883 return val;
884}
885
34400008
GM
886/* Free BLOCK. This must be called to free memory allocated with a
887 call to lisp_malloc. */
888
bf952fb6 889static void
261cb4bb 890lisp_free (void *block)
c8099634 891{
dafc79fa 892 MALLOC_BLOCK_INPUT;
c8099634 893 free (block);
877935b1 894#if GC_MARK_STACK && !defined GC_MALLOC_CHECK
34400008
GM
895 mem_delete (mem_find (block));
896#endif
dafc79fa 897 MALLOC_UNBLOCK_INPUT;
c8099634 898}
34400008 899
453b951e
SM
900/***** Allocation of aligned blocks of memory to store Lisp data. *****/
901
902/* The entry point is lisp_align_malloc which returns blocks of at most
903 BLOCK_BYTES and guarantees they are aligned on a BLOCK_ALIGN boundary. */
ab6780cd 904
b4181b01
KS
905#if defined (HAVE_POSIX_MEMALIGN) && defined (SYSTEM_MALLOC)
906#define USE_POSIX_MEMALIGN 1
907#endif
ab6780cd
SM
908
909/* BLOCK_ALIGN has to be a power of 2. */
910#define BLOCK_ALIGN (1 << 10)
ab6780cd
SM
911
912/* Padding to leave at the end of a malloc'd block. This is to give
913 malloc a chance to minimize the amount of memory wasted to alignment.
914 It should be tuned to the particular malloc library used.
19bcad1f
SM
915 On glibc-2.3.2, malloc never tries to align, so a padding of 0 is best.
916 posix_memalign on the other hand would ideally prefer a value of 4
917 because otherwise, there's 1020 bytes wasted between each ablocks.
f501ccb4
SM
918 In Emacs, testing shows that those 1020 can most of the time be
919 efficiently used by malloc to place other objects, so a value of 0 can
920 still preferable unless you have a lot of aligned blocks and virtually
921 nothing else. */
19bcad1f
SM
922#define BLOCK_PADDING 0
923#define BLOCK_BYTES \
0b432f21 924 (BLOCK_ALIGN - sizeof (struct ablocks *) - BLOCK_PADDING)
19bcad1f
SM
925
926/* Internal data structures and constants. */
927
ab6780cd
SM
928#define ABLOCKS_SIZE 16
929
930/* An aligned block of memory. */
931struct ablock
932{
933 union
934 {
935 char payload[BLOCK_BYTES];
936 struct ablock *next_free;
937 } x;
938 /* `abase' is the aligned base of the ablocks. */
939 /* It is overloaded to hold the virtual `busy' field that counts
940 the number of used ablock in the parent ablocks.
941 The first ablock has the `busy' field, the others have the `abase'
942 field. To tell the difference, we assume that pointers will have
943 integer values larger than 2 * ABLOCKS_SIZE. The lowest bit of `busy'
944 is used to tell whether the real base of the parent ablocks is `abase'
945 (if not, the word before the first ablock holds a pointer to the
946 real base). */
947 struct ablocks *abase;
948 /* The padding of all but the last ablock is unused. The padding of
949 the last ablock in an ablocks is not allocated. */
19bcad1f
SM
950#if BLOCK_PADDING
951 char padding[BLOCK_PADDING];
ebb8d410 952#endif
ab6780cd
SM
953};
954
955/* A bunch of consecutive aligned blocks. */
956struct ablocks
957{
958 struct ablock blocks[ABLOCKS_SIZE];
959};
960
4b5afbb0 961/* Size of the block requested from malloc or posix_memalign. */
19bcad1f 962#define ABLOCKS_BYTES (sizeof (struct ablocks) - BLOCK_PADDING)
ab6780cd
SM
963
964#define ABLOCK_ABASE(block) \
d01a7826 965 (((uintptr_t) (block)->abase) <= (1 + 2 * ABLOCKS_SIZE) \
ab6780cd
SM
966 ? (struct ablocks *)(block) \
967 : (block)->abase)
968
969/* Virtual `busy' field. */
970#define ABLOCKS_BUSY(abase) ((abase)->blocks[0].abase)
971
972/* Pointer to the (not necessarily aligned) malloc block. */
349a4500 973#ifdef USE_POSIX_MEMALIGN
19bcad1f
SM
974#define ABLOCKS_BASE(abase) (abase)
975#else
ab6780cd 976#define ABLOCKS_BASE(abase) \
d01a7826 977 (1 & (intptr_t) ABLOCKS_BUSY (abase) ? abase : ((void**)abase)[-1])
19bcad1f 978#endif
ab6780cd
SM
979
980/* The list of free ablock. */
981static struct ablock *free_ablock;
982
983/* Allocate an aligned block of nbytes.
984 Alignment is on a multiple of BLOCK_ALIGN and `nbytes' has to be
985 smaller or equal to BLOCK_BYTES. */
261cb4bb 986static void *
971de7fb 987lisp_align_malloc (size_t nbytes, enum mem_type type)
ab6780cd
SM
988{
989 void *base, *val;
990 struct ablocks *abase;
991
992 eassert (nbytes <= BLOCK_BYTES);
993
dafc79fa 994 MALLOC_BLOCK_INPUT;
ab6780cd
SM
995
996#ifdef GC_MALLOC_CHECK
997 allocated_mem_type = type;
998#endif
999
1000 if (!free_ablock)
1001 {
005ca5c7 1002 int i;
d01a7826 1003 intptr_t aligned; /* int gets warning casting to 64-bit pointer. */
ab6780cd
SM
1004
1005#ifdef DOUG_LEA_MALLOC
1006 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed
1007 because mapped region contents are not preserved in
1008 a dumped Emacs. */
1009 mallopt (M_MMAP_MAX, 0);
1010#endif
1011
349a4500 1012#ifdef USE_POSIX_MEMALIGN
19bcad1f
SM
1013 {
1014 int err = posix_memalign (&base, BLOCK_ALIGN, ABLOCKS_BYTES);
ab349c19
RS
1015 if (err)
1016 base = NULL;
1017 abase = base;
19bcad1f
SM
1018 }
1019#else
ab6780cd
SM
1020 base = malloc (ABLOCKS_BYTES);
1021 abase = ALIGN (base, BLOCK_ALIGN);
ab349c19
RS
1022#endif
1023
6b61353c
KH
1024 if (base == 0)
1025 {
dafc79fa 1026 MALLOC_UNBLOCK_INPUT;
531b0165 1027 memory_full (ABLOCKS_BYTES);
6b61353c 1028 }
ab6780cd
SM
1029
1030 aligned = (base == abase);
1031 if (!aligned)
1032 ((void**)abase)[-1] = base;
1033
1034#ifdef DOUG_LEA_MALLOC
1035 /* Back to a reasonable maximum of mmap'ed areas. */
1036 mallopt (M_MMAP_MAX, MMAP_MAX_AREAS);
1037#endif
1038
bfe3e0a2 1039#if ! USE_LSB_TAG
8f924df7
KH
1040 /* If the memory just allocated cannot be addressed thru a Lisp
1041 object's pointer, and it needs to be, that's equivalent to
1042 running out of memory. */
1043 if (type != MEM_TYPE_NON_LISP)
1044 {
1045 Lisp_Object tem;
1046 char *end = (char *) base + ABLOCKS_BYTES - 1;
1047 XSETCONS (tem, end);
1048 if ((char *) XCONS (tem) != end)
1049 {
1050 lisp_malloc_loser = base;
1051 free (base);
dafc79fa 1052 MALLOC_UNBLOCK_INPUT;
531b0165 1053 memory_full (SIZE_MAX);
8f924df7
KH
1054 }
1055 }
6b61353c 1056#endif
8f924df7 1057
ab6780cd 1058 /* Initialize the blocks and put them on the free list.
453b951e 1059 If `base' was not properly aligned, we can't use the last block. */
ab6780cd
SM
1060 for (i = 0; i < (aligned ? ABLOCKS_SIZE : ABLOCKS_SIZE - 1); i++)
1061 {
1062 abase->blocks[i].abase = abase;
1063 abase->blocks[i].x.next_free = free_ablock;
1064 free_ablock = &abase->blocks[i];
1065 }
8ac068ac 1066 ABLOCKS_BUSY (abase) = (struct ablocks *) aligned;
ab6780cd 1067
d01a7826 1068 eassert (0 == ((uintptr_t) abase) % BLOCK_ALIGN);
ab6780cd
SM
1069 eassert (ABLOCK_ABASE (&abase->blocks[3]) == abase); /* 3 is arbitrary */
1070 eassert (ABLOCK_ABASE (&abase->blocks[0]) == abase);
1071 eassert (ABLOCKS_BASE (abase) == base);
d01a7826 1072 eassert (aligned == (intptr_t) ABLOCKS_BUSY (abase));
ab6780cd
SM
1073 }
1074
1075 abase = ABLOCK_ABASE (free_ablock);
8ac068ac 1076 ABLOCKS_BUSY (abase) =
d01a7826 1077 (struct ablocks *) (2 + (intptr_t) ABLOCKS_BUSY (abase));
ab6780cd
SM
1078 val = free_ablock;
1079 free_ablock = free_ablock->x.next_free;
1080
ab6780cd 1081#if GC_MARK_STACK && !defined GC_MALLOC_CHECK
3687c2ef 1082 if (type != MEM_TYPE_NON_LISP)
ab6780cd
SM
1083 mem_insert (val, (char *) val + nbytes, type);
1084#endif
1085
dafc79fa 1086 MALLOC_UNBLOCK_INPUT;
ab6780cd 1087
c2d7786e
TM
1088 MALLOC_PROBE (nbytes);
1089
d01a7826 1090 eassert (0 == ((uintptr_t) val) % BLOCK_ALIGN);
ab6780cd
SM
1091 return val;
1092}
1093
1094static void
261cb4bb 1095lisp_align_free (void *block)
ab6780cd
SM
1096{
1097 struct ablock *ablock = block;
1098 struct ablocks *abase = ABLOCK_ABASE (ablock);
1099
dafc79fa 1100 MALLOC_BLOCK_INPUT;
ab6780cd
SM
1101#if GC_MARK_STACK && !defined GC_MALLOC_CHECK
1102 mem_delete (mem_find (block));
1103#endif
1104 /* Put on free list. */
1105 ablock->x.next_free = free_ablock;
1106 free_ablock = ablock;
1107 /* Update busy count. */
453b951e
SM
1108 ABLOCKS_BUSY (abase)
1109 = (struct ablocks *) (-2 + (intptr_t) ABLOCKS_BUSY (abase));
d2db1c32 1110
d01a7826 1111 if (2 > (intptr_t) ABLOCKS_BUSY (abase))
ab6780cd 1112 { /* All the blocks are free. */
d01a7826 1113 int i = 0, aligned = (intptr_t) ABLOCKS_BUSY (abase);
ab6780cd
SM
1114 struct ablock **tem = &free_ablock;
1115 struct ablock *atop = &abase->blocks[aligned ? ABLOCKS_SIZE : ABLOCKS_SIZE - 1];
1116
1117 while (*tem)
1118 {
1119 if (*tem >= (struct ablock *) abase && *tem < atop)
1120 {
1121 i++;
1122 *tem = (*tem)->x.next_free;
1123 }
1124 else
1125 tem = &(*tem)->x.next_free;
1126 }
1127 eassert ((aligned & 1) == aligned);
1128 eassert (i == (aligned ? ABLOCKS_SIZE : ABLOCKS_SIZE - 1));
349a4500 1129#ifdef USE_POSIX_MEMALIGN
d01a7826 1130 eassert ((uintptr_t) ABLOCKS_BASE (abase) % BLOCK_ALIGN == 0);
cfb2f32e 1131#endif
ab6780cd
SM
1132 free (ABLOCKS_BASE (abase));
1133 }
dafc79fa 1134 MALLOC_UNBLOCK_INPUT;
ab6780cd 1135}
3ef06d12 1136
9ac0d9e0 1137\f
2e471eb5
GM
1138/***********************************************************************
1139 Interval Allocation
1140 ***********************************************************************/
1a4f1e2c 1141
34400008
GM
1142/* Number of intervals allocated in an interval_block structure.
1143 The 1020 is 1024 minus malloc overhead. */
1144
d5e35230
JA
1145#define INTERVAL_BLOCK_SIZE \
1146 ((1020 - sizeof (struct interval_block *)) / sizeof (struct interval))
1147
bad98418 1148/* Intervals are allocated in chunks in the form of an interval_block
34400008
GM
1149 structure. */
1150
d5e35230 1151struct interval_block
2e471eb5 1152{
6b61353c 1153 /* Place `intervals' first, to preserve alignment. */
2e471eb5 1154 struct interval intervals[INTERVAL_BLOCK_SIZE];
6b61353c 1155 struct interval_block *next;
2e471eb5 1156};
d5e35230 1157
34400008
GM
1158/* Current interval block. Its `next' pointer points to older
1159 blocks. */
1160
d3d47262 1161static struct interval_block *interval_block;
34400008
GM
1162
1163/* Index in interval_block above of the next unused interval
1164 structure. */
1165
fff62aa9 1166static int interval_block_index = INTERVAL_BLOCK_SIZE;
34400008
GM
1167
1168/* Number of free and live intervals. */
1169
c0c5c8ae 1170static EMACS_INT total_free_intervals, total_intervals;
d5e35230 1171
34400008
GM
1172/* List of free intervals. */
1173
244ed907 1174static INTERVAL interval_free_list;
d5e35230 1175
34400008 1176/* Return a new interval. */
d5e35230
JA
1177
1178INTERVAL
971de7fb 1179make_interval (void)
d5e35230
JA
1180{
1181 INTERVAL val;
1182
dafc79fa 1183 MALLOC_BLOCK_INPUT;
cfb2f32e 1184
d5e35230
JA
1185 if (interval_free_list)
1186 {
1187 val = interval_free_list;
439d5cb4 1188 interval_free_list = INTERVAL_PARENT (interval_free_list);
d5e35230
JA
1189 }
1190 else
1191 {
1192 if (interval_block_index == INTERVAL_BLOCK_SIZE)
1193 {
38182d90
PE
1194 struct interval_block *newi
1195 = lisp_malloc (sizeof *newi, MEM_TYPE_NON_LISP);
d5e35230 1196
d5e35230
JA
1197 newi->next = interval_block;
1198 interval_block = newi;
1199 interval_block_index = 0;
3900d5de 1200 total_free_intervals += INTERVAL_BLOCK_SIZE;
d5e35230
JA
1201 }
1202 val = &interval_block->intervals[interval_block_index++];
1203 }
e2984df0 1204
dafc79fa 1205 MALLOC_UNBLOCK_INPUT;
e2984df0 1206
d5e35230 1207 consing_since_gc += sizeof (struct interval);
310ea200 1208 intervals_consed++;
3900d5de 1209 total_free_intervals--;
d5e35230 1210 RESET_INTERVAL (val);
2336fe58 1211 val->gcmarkbit = 0;
d5e35230
JA
1212 return val;
1213}
1214
34400008 1215
ee28be33 1216/* Mark Lisp objects in interval I. */
d5e35230
JA
1217
1218static void
971de7fb 1219mark_interval (register INTERVAL i, Lisp_Object dummy)
d5e35230 1220{
cce7fefc
DA
1221 /* Intervals should never be shared. So, if extra internal checking is
1222 enabled, GC aborts if it seems to have visited an interval twice. */
1223 eassert (!i->gcmarkbit);
2336fe58 1224 i->gcmarkbit = 1;
49723c04 1225 mark_object (i->plist);
d5e35230
JA
1226}
1227
34400008
GM
1228/* Mark the interval tree rooted in I. */
1229
8707c1e5
DA
1230#define MARK_INTERVAL_TREE(i) \
1231 do { \
1232 if (i && !i->gcmarkbit) \
1233 traverse_intervals_noorder (i, mark_interval, Qnil); \
2e471eb5 1234 } while (0)
77c7bcb1 1235
2e471eb5
GM
1236/***********************************************************************
1237 String Allocation
1238 ***********************************************************************/
1a4f1e2c 1239
2e471eb5
GM
1240/* Lisp_Strings are allocated in string_block structures. When a new
1241 string_block is allocated, all the Lisp_Strings it contains are
e0fead5d 1242 added to a free-list string_free_list. When a new Lisp_String is
2e471eb5
GM
1243 needed, it is taken from that list. During the sweep phase of GC,
1244 string_blocks that are entirely free are freed, except two which
1245 we keep.
7146af97 1246
2e471eb5
GM
1247 String data is allocated from sblock structures. Strings larger
1248 than LARGE_STRING_BYTES, get their own sblock, data for smaller
1249 strings is sub-allocated out of sblocks of size SBLOCK_SIZE.
7146af97 1250
2e471eb5
GM
1251 Sblocks consist internally of sdata structures, one for each
1252 Lisp_String. The sdata structure points to the Lisp_String it
1253 belongs to. The Lisp_String points back to the `u.data' member of
1254 its sdata structure.
7146af97 1255
2e471eb5
GM
1256 When a Lisp_String is freed during GC, it is put back on
1257 string_free_list, and its `data' member and its sdata's `string'
1258 pointer is set to null. The size of the string is recorded in the
fbe9e0b9 1259 `n.nbytes' member of the sdata. So, sdata structures that are no
2e471eb5
GM
1260 longer used, can be easily recognized, and it's easy to compact the
1261 sblocks of small strings which we do in compact_small_strings. */
7146af97 1262
2e471eb5
GM
1263/* Size in bytes of an sblock structure used for small strings. This
1264 is 8192 minus malloc overhead. */
7146af97 1265
2e471eb5 1266#define SBLOCK_SIZE 8188
c8099634 1267
2e471eb5
GM
1268/* Strings larger than this are considered large strings. String data
1269 for large strings is allocated from individual sblocks. */
7146af97 1270
2e471eb5
GM
1271#define LARGE_STRING_BYTES 1024
1272
fbe9e0b9 1273/* Struct or union describing string memory sub-allocated from an sblock.
2e471eb5
GM
1274 This is where the contents of Lisp strings are stored. */
1275
fbe9e0b9
PE
1276#ifdef GC_CHECK_STRING_BYTES
1277
1278typedef struct
7146af97 1279{
2e471eb5
GM
1280 /* Back-pointer to the string this sdata belongs to. If null, this
1281 structure is free, and the NBYTES member of the union below
34400008 1282 contains the string's byte size (the same value that STRING_BYTES
2e471eb5
GM
1283 would return if STRING were non-null). If non-null, STRING_BYTES
1284 (STRING) is the size of the data, and DATA contains the string's
1285 contents. */
1286 struct Lisp_String *string;
7146af97 1287
d311d28c 1288 ptrdiff_t nbytes;
fbe9e0b9
PE
1289 unsigned char data[FLEXIBLE_ARRAY_MEMBER];
1290} sdata;
177c0ea7 1291
31d929e5
GM
1292#define SDATA_NBYTES(S) (S)->nbytes
1293#define SDATA_DATA(S) (S)->data
36372bf9 1294#define SDATA_SELECTOR(member) member
177c0ea7 1295
fbe9e0b9 1296#else
31d929e5 1297
fbe9e0b9
PE
1298typedef union
1299{
1300 struct Lisp_String *string;
1301
1302 /* When STRING is non-null. */
1303 struct
2e471eb5 1304 {
fbe9e0b9
PE
1305 struct Lisp_String *string;
1306 unsigned char data[FLEXIBLE_ARRAY_MEMBER];
1307 } u;
2e471eb5 1308
fbe9e0b9
PE
1309 /* When STRING is null. */
1310 struct
1311 {
1312 struct Lisp_String *string;
d311d28c 1313 ptrdiff_t nbytes;
fbe9e0b9
PE
1314 } n;
1315} sdata;
177c0ea7 1316
fbe9e0b9 1317#define SDATA_NBYTES(S) (S)->n.nbytes
31d929e5 1318#define SDATA_DATA(S) (S)->u.data
36372bf9 1319#define SDATA_SELECTOR(member) u.member
31d929e5
GM
1320
1321#endif /* not GC_CHECK_STRING_BYTES */
36372bf9 1322
fbe9e0b9 1323#define SDATA_DATA_OFFSET offsetof (sdata, SDATA_SELECTOR (data))
2e471eb5 1324
31d929e5 1325
2e471eb5
GM
1326/* Structure describing a block of memory which is sub-allocated to
1327 obtain string data memory for strings. Blocks for small strings
1328 are of fixed size SBLOCK_SIZE. Blocks for large strings are made
1329 as large as needed. */
1330
1331struct sblock
7146af97 1332{
2e471eb5
GM
1333 /* Next in list. */
1334 struct sblock *next;
7146af97 1335
2e471eb5
GM
1336 /* Pointer to the next free sdata block. This points past the end
1337 of the sblock if there isn't any space left in this block. */
fbe9e0b9 1338 sdata *next_free;
2e471eb5
GM
1339
1340 /* Start of data. */
fbe9e0b9 1341 sdata first_data;
2e471eb5
GM
1342};
1343
1344/* Number of Lisp strings in a string_block structure. The 1020 is
1345 1024 minus malloc overhead. */
1346
19bcad1f 1347#define STRING_BLOCK_SIZE \
2e471eb5
GM
1348 ((1020 - sizeof (struct string_block *)) / sizeof (struct Lisp_String))
1349
1350/* Structure describing a block from which Lisp_String structures
1351 are allocated. */
1352
1353struct string_block
7146af97 1354{
6b61353c 1355 /* Place `strings' first, to preserve alignment. */
19bcad1f 1356 struct Lisp_String strings[STRING_BLOCK_SIZE];
6b61353c 1357 struct string_block *next;
2e471eb5 1358};
7146af97 1359
2e471eb5
GM
1360/* Head and tail of the list of sblock structures holding Lisp string
1361 data. We always allocate from current_sblock. The NEXT pointers
1362 in the sblock structures go from oldest_sblock to current_sblock. */
3c06d205 1363
2e471eb5 1364static struct sblock *oldest_sblock, *current_sblock;
7146af97 1365
2e471eb5 1366/* List of sblocks for large strings. */
7146af97 1367
2e471eb5 1368static struct sblock *large_sblocks;
7146af97 1369
5a25e253 1370/* List of string_block structures. */
7146af97 1371
2e471eb5 1372static struct string_block *string_blocks;
7146af97 1373
2e471eb5 1374/* Free-list of Lisp_Strings. */
7146af97 1375
2e471eb5 1376static struct Lisp_String *string_free_list;
7146af97 1377
2e471eb5 1378/* Number of live and free Lisp_Strings. */
c8099634 1379
c0c5c8ae 1380static EMACS_INT total_strings, total_free_strings;
7146af97 1381
2e471eb5
GM
1382/* Number of bytes used by live strings. */
1383
3ab6e069 1384static EMACS_INT total_string_bytes;
2e471eb5
GM
1385
1386/* Given a pointer to a Lisp_String S which is on the free-list
1387 string_free_list, return a pointer to its successor in the
1388 free-list. */
1389
1390#define NEXT_FREE_LISP_STRING(S) (*(struct Lisp_String **) (S))
1391
1392/* Return a pointer to the sdata structure belonging to Lisp string S.
1393 S must be live, i.e. S->data must not be null. S->data is actually
1394 a pointer to the `u.data' member of its sdata structure; the
1395 structure starts at a constant offset in front of that. */
177c0ea7 1396
fbe9e0b9 1397#define SDATA_OF_STRING(S) ((sdata *) ((S)->data - SDATA_DATA_OFFSET))
31d929e5 1398
212f33f1
KS
1399
1400#ifdef GC_CHECK_STRING_OVERRUN
bdbed949
KS
1401
1402/* We check for overrun in string data blocks by appending a small
1403 "cookie" after each allocated string data block, and check for the
8349069c 1404 presence of this cookie during GC. */
bdbed949
KS
1405
1406#define GC_STRING_OVERRUN_COOKIE_SIZE 4
bfd1c781
PE
1407static char const string_overrun_cookie[GC_STRING_OVERRUN_COOKIE_SIZE] =
1408 { '\xde', '\xad', '\xbe', '\xef' };
bdbed949 1409
212f33f1 1410#else
bdbed949 1411#define GC_STRING_OVERRUN_COOKIE_SIZE 0
212f33f1
KS
1412#endif
1413
2e471eb5
GM
1414/* Value is the size of an sdata structure large enough to hold NBYTES
1415 bytes of string data. The value returned includes a terminating
1416 NUL byte, the size of the sdata structure, and padding. */
1417
31d929e5
GM
1418#ifdef GC_CHECK_STRING_BYTES
1419
2e471eb5 1420#define SDATA_SIZE(NBYTES) \
36372bf9 1421 ((SDATA_DATA_OFFSET \
2e471eb5 1422 + (NBYTES) + 1 \
d311d28c
PE
1423 + sizeof (ptrdiff_t) - 1) \
1424 & ~(sizeof (ptrdiff_t) - 1))
2e471eb5 1425
31d929e5
GM
1426#else /* not GC_CHECK_STRING_BYTES */
1427
f2d3008d
PE
1428/* The 'max' reserves space for the nbytes union member even when NBYTES + 1 is
1429 less than the size of that member. The 'max' is not needed when
d311d28c 1430 SDATA_DATA_OFFSET is a multiple of sizeof (ptrdiff_t), because then the
f2d3008d
PE
1431 alignment code reserves enough space. */
1432
1433#define SDATA_SIZE(NBYTES) \
1434 ((SDATA_DATA_OFFSET \
d311d28c 1435 + (SDATA_DATA_OFFSET % sizeof (ptrdiff_t) == 0 \
f2d3008d 1436 ? NBYTES \
d311d28c 1437 : max (NBYTES, sizeof (ptrdiff_t) - 1)) \
f2d3008d 1438 + 1 \
d311d28c
PE
1439 + sizeof (ptrdiff_t) - 1) \
1440 & ~(sizeof (ptrdiff_t) - 1))
31d929e5
GM
1441
1442#endif /* not GC_CHECK_STRING_BYTES */
2e471eb5 1443
bdbed949
KS
1444/* Extra bytes to allocate for each string. */
1445
1446#define GC_STRING_EXTRA (GC_STRING_OVERRUN_COOKIE_SIZE)
1447
c9d624c6
PE
1448/* Exact bound on the number of bytes in a string, not counting the
1449 terminating null. A string cannot contain more bytes than
1450 STRING_BYTES_BOUND, nor can it be so long that the size_t
1451 arithmetic in allocate_string_data would overflow while it is
1452 calculating a value to be passed to malloc. */
03a660a6
PE
1453static ptrdiff_t const STRING_BYTES_MAX =
1454 min (STRING_BYTES_BOUND,
1455 ((SIZE_MAX - XMALLOC_OVERRUN_CHECK_OVERHEAD
1456 - GC_STRING_EXTRA
1457 - offsetof (struct sblock, first_data)
1458 - SDATA_DATA_OFFSET)
1459 & ~(sizeof (EMACS_INT) - 1)));
c9d624c6 1460
2e471eb5 1461/* Initialize string allocation. Called from init_alloc_once. */
d457598b 1462
d3d47262 1463static void
971de7fb 1464init_strings (void)
7146af97 1465{
4d774b0f
JB
1466 empty_unibyte_string = make_pure_string ("", 0, 0, 0);
1467 empty_multibyte_string = make_pure_string ("", 0, 0, 1);
7146af97
JB
1468}
1469
2e471eb5 1470
361b097f
GM
1471#ifdef GC_CHECK_STRING_BYTES
1472
361b097f
GM
1473static int check_string_bytes_count;
1474
e499d0ee
DA
1475/* Like STRING_BYTES, but with debugging check. Can be
1476 called during GC, so pay attention to the mark bit. */
676a7251 1477
d311d28c 1478ptrdiff_t
14162469 1479string_bytes (struct Lisp_String *s)
676a7251 1480{
d311d28c 1481 ptrdiff_t nbytes =
14162469
EZ
1482 (s->size_byte < 0 ? s->size & ~ARRAY_MARK_FLAG : s->size_byte);
1483
676a7251
GM
1484 if (!PURE_POINTER_P (s)
1485 && s->data
1486 && nbytes != SDATA_NBYTES (SDATA_OF_STRING (s)))
1088b922 1487 emacs_abort ();
676a7251
GM
1488 return nbytes;
1489}
177c0ea7 1490
2c5bd608 1491/* Check validity of Lisp strings' string_bytes member in B. */
676a7251 1492
d3d47262 1493static void
d0f4e1f5 1494check_sblock (struct sblock *b)
361b097f 1495{
fbe9e0b9 1496 sdata *from, *end, *from_end;
177c0ea7 1497
676a7251 1498 end = b->next_free;
177c0ea7 1499
676a7251 1500 for (from = &b->first_data; from < end; from = from_end)
361b097f 1501 {
676a7251
GM
1502 /* Compute the next FROM here because copying below may
1503 overwrite data we need to compute it. */
d311d28c 1504 ptrdiff_t nbytes;
177c0ea7 1505
676a7251 1506 /* Check that the string size recorded in the string is the
ee28be33 1507 same as the one recorded in the sdata structure. */
e499d0ee
DA
1508 nbytes = SDATA_SIZE (from->string ? string_bytes (from->string)
1509 : SDATA_NBYTES (from));
fbe9e0b9 1510 from_end = (sdata *) ((char *) from + nbytes + GC_STRING_EXTRA);
676a7251
GM
1511 }
1512}
361b097f 1513
676a7251
GM
1514
1515/* Check validity of Lisp strings' string_bytes member. ALL_P
fce31d69 1516 means check all strings, otherwise check only most
676a7251
GM
1517 recently allocated strings. Used for hunting a bug. */
1518
d3d47262 1519static void
fce31d69 1520check_string_bytes (bool all_p)
676a7251
GM
1521{
1522 if (all_p)
1523 {
1524 struct sblock *b;
1525
1526 for (b = large_sblocks; b; b = b->next)
1527 {
1528 struct Lisp_String *s = b->first_data.string;
1529 if (s)
e499d0ee 1530 string_bytes (s);
361b097f 1531 }
177c0ea7 1532
676a7251
GM
1533 for (b = oldest_sblock; b; b = b->next)
1534 check_sblock (b);
361b097f 1535 }
296094c3 1536 else if (current_sblock)
676a7251 1537 check_sblock (current_sblock);
361b097f
GM
1538}
1539
e499d0ee
DA
1540#else /* not GC_CHECK_STRING_BYTES */
1541
1542#define check_string_bytes(all) ((void) 0)
1543
361b097f
GM
1544#endif /* GC_CHECK_STRING_BYTES */
1545
212f33f1
KS
1546#ifdef GC_CHECK_STRING_FREE_LIST
1547
bdbed949
KS
1548/* Walk through the string free list looking for bogus next pointers.
1549 This may catch buffer overrun from a previous string. */
1550
212f33f1 1551static void
d0f4e1f5 1552check_string_free_list (void)
212f33f1
KS
1553{
1554 struct Lisp_String *s;
1555
1556 /* Pop a Lisp_String off the free-list. */
1557 s = string_free_list;
1558 while (s != NULL)
1559 {
d01a7826 1560 if ((uintptr_t) s < 1024)
1088b922 1561 emacs_abort ();
212f33f1
KS
1562 s = NEXT_FREE_LISP_STRING (s);
1563 }
1564}
1565#else
1566#define check_string_free_list()
1567#endif
361b097f 1568
2e471eb5
GM
1569/* Return a new Lisp_String. */
1570
1571static struct Lisp_String *
971de7fb 1572allocate_string (void)
7146af97 1573{
2e471eb5 1574 struct Lisp_String *s;
7146af97 1575
dafc79fa 1576 MALLOC_BLOCK_INPUT;
cfb2f32e 1577
2e471eb5
GM
1578 /* If the free-list is empty, allocate a new string_block, and
1579 add all the Lisp_Strings in it to the free-list. */
1580 if (string_free_list == NULL)
7146af97 1581 {
38182d90 1582 struct string_block *b = lisp_malloc (sizeof *b, MEM_TYPE_STRING);
2e471eb5
GM
1583 int i;
1584
2e471eb5
GM
1585 b->next = string_blocks;
1586 string_blocks = b;
2e471eb5 1587
19bcad1f 1588 for (i = STRING_BLOCK_SIZE - 1; i >= 0; --i)
7146af97 1589 {
2e471eb5 1590 s = b->strings + i;
3fe6dd74
DA
1591 /* Every string on a free list should have NULL data pointer. */
1592 s->data = NULL;
2e471eb5
GM
1593 NEXT_FREE_LISP_STRING (s) = string_free_list;
1594 string_free_list = s;
7146af97 1595 }
2e471eb5 1596
19bcad1f 1597 total_free_strings += STRING_BLOCK_SIZE;
7146af97 1598 }
c0f51373 1599
bdbed949 1600 check_string_free_list ();
212f33f1 1601
2e471eb5
GM
1602 /* Pop a Lisp_String off the free-list. */
1603 s = string_free_list;
1604 string_free_list = NEXT_FREE_LISP_STRING (s);
c0f51373 1605
dafc79fa 1606 MALLOC_UNBLOCK_INPUT;
e2984df0 1607
2e471eb5
GM
1608 --total_free_strings;
1609 ++total_strings;
1610 ++strings_consed;
1611 consing_since_gc += sizeof *s;
c0f51373 1612
361b097f 1613#ifdef GC_CHECK_STRING_BYTES
e39a993c 1614 if (!noninteractive)
361b097f 1615 {
676a7251
GM
1616 if (++check_string_bytes_count == 200)
1617 {
1618 check_string_bytes_count = 0;
1619 check_string_bytes (1);
1620 }
1621 else
1622 check_string_bytes (0);
361b097f 1623 }
676a7251 1624#endif /* GC_CHECK_STRING_BYTES */
361b097f 1625
2e471eb5 1626 return s;
c0f51373 1627}
7146af97 1628
7146af97 1629
2e471eb5
GM
1630/* Set up Lisp_String S for holding NCHARS characters, NBYTES bytes,
1631 plus a NUL byte at the end. Allocate an sdata structure for S, and
1632 set S->data to its `u.data' member. Store a NUL byte at the end of
1633 S->data. Set S->size to NCHARS and S->size_byte to NBYTES. Free
1634 S->data if it was initially non-null. */
7146af97 1635
2e471eb5 1636void
413d18e7
EZ
1637allocate_string_data (struct Lisp_String *s,
1638 EMACS_INT nchars, EMACS_INT nbytes)
7146af97 1639{
fbe9e0b9 1640 sdata *data, *old_data;
2e471eb5 1641 struct sblock *b;
b7ffe040 1642 ptrdiff_t needed, old_nbytes;
7146af97 1643
c9d624c6
PE
1644 if (STRING_BYTES_MAX < nbytes)
1645 string_overflow ();
1646
2e471eb5
GM
1647 /* Determine the number of bytes needed to store NBYTES bytes
1648 of string data. */
1649 needed = SDATA_SIZE (nbytes);
b7ffe040
DA
1650 if (s->data)
1651 {
1652 old_data = SDATA_OF_STRING (s);
e499d0ee 1653 old_nbytes = STRING_BYTES (s);
b7ffe040
DA
1654 }
1655 else
1656 old_data = NULL;
e2984df0 1657
dafc79fa 1658 MALLOC_BLOCK_INPUT;
7146af97 1659
2e471eb5
GM
1660 if (nbytes > LARGE_STRING_BYTES)
1661 {
36372bf9 1662 size_t size = offsetof (struct sblock, first_data) + needed;
2e471eb5
GM
1663
1664#ifdef DOUG_LEA_MALLOC
f8608968
GM
1665 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed
1666 because mapped region contents are not preserved in
d36b182f
DL
1667 a dumped Emacs.
1668
1669 In case you think of allowing it in a dumped Emacs at the
1670 cost of not being able to re-dump, there's another reason:
1671 mmap'ed data typically have an address towards the top of the
1672 address space, which won't fit into an EMACS_INT (at least on
1673 32-bit systems with the current tagging scheme). --fx */
2e471eb5
GM
1674 mallopt (M_MMAP_MAX, 0);
1675#endif
1676
38182d90 1677 b = lisp_malloc (size + GC_STRING_EXTRA, MEM_TYPE_NON_LISP);
177c0ea7 1678
2e471eb5 1679#ifdef DOUG_LEA_MALLOC
b09cca6a 1680 /* Back to a reasonable maximum of mmap'ed areas. */
2e471eb5
GM
1681 mallopt (M_MMAP_MAX, MMAP_MAX_AREAS);
1682#endif
177c0ea7 1683
2e471eb5
GM
1684 b->next_free = &b->first_data;
1685 b->first_data.string = NULL;
1686 b->next = large_sblocks;
1687 large_sblocks = b;
1688 }
1689 else if (current_sblock == NULL
1690 || (((char *) current_sblock + SBLOCK_SIZE
1691 - (char *) current_sblock->next_free)
212f33f1 1692 < (needed + GC_STRING_EXTRA)))
2e471eb5
GM
1693 {
1694 /* Not enough room in the current sblock. */
38182d90 1695 b = lisp_malloc (SBLOCK_SIZE, MEM_TYPE_NON_LISP);
2e471eb5
GM
1696 b->next_free = &b->first_data;
1697 b->first_data.string = NULL;
1698 b->next = NULL;
1699
1700 if (current_sblock)
1701 current_sblock->next = b;
1702 else
1703 oldest_sblock = b;
1704 current_sblock = b;
1705 }
1706 else
1707 b = current_sblock;
5c5fecb3 1708
2e471eb5 1709 data = b->next_free;
fbe9e0b9 1710 b->next_free = (sdata *) ((char *) data + needed + GC_STRING_EXTRA);
a0b08700 1711
dafc79fa 1712 MALLOC_UNBLOCK_INPUT;
e2984df0 1713
2e471eb5 1714 data->string = s;
31d929e5
GM
1715 s->data = SDATA_DATA (data);
1716#ifdef GC_CHECK_STRING_BYTES
1717 SDATA_NBYTES (data) = nbytes;
1718#endif
2e471eb5
GM
1719 s->size = nchars;
1720 s->size_byte = nbytes;
1721 s->data[nbytes] = '\0';
212f33f1 1722#ifdef GC_CHECK_STRING_OVERRUN
000098c1
PE
1723 memcpy ((char *) data + needed, string_overrun_cookie,
1724 GC_STRING_OVERRUN_COOKIE_SIZE);
212f33f1 1725#endif
b7ffe040
DA
1726
1727 /* Note that Faset may call to this function when S has already data
1728 assigned. In this case, mark data as free by setting it's string
1729 back-pointer to null, and record the size of the data in it. */
1730 if (old_data)
1731 {
1732 SDATA_NBYTES (old_data) = old_nbytes;
1733 old_data->string = NULL;
1734 }
1735
2e471eb5
GM
1736 consing_since_gc += needed;
1737}
1738
1739
1740/* Sweep and compact strings. */
1741
1742static void
971de7fb 1743sweep_strings (void)
2e471eb5
GM
1744{
1745 struct string_block *b, *next;
1746 struct string_block *live_blocks = NULL;
177c0ea7 1747
2e471eb5
GM
1748 string_free_list = NULL;
1749 total_strings = total_free_strings = 0;
3ab6e069 1750 total_string_bytes = 0;
2e471eb5
GM
1751
1752 /* Scan strings_blocks, free Lisp_Strings that aren't marked. */
1753 for (b = string_blocks; b; b = next)
1754 {
1755 int i, nfree = 0;
1756 struct Lisp_String *free_list_before = string_free_list;
1757
1758 next = b->next;
1759
19bcad1f 1760 for (i = 0; i < STRING_BLOCK_SIZE; ++i)
2e471eb5
GM
1761 {
1762 struct Lisp_String *s = b->strings + i;
1763
1764 if (s->data)
1765 {
1766 /* String was not on free-list before. */
1767 if (STRING_MARKED_P (s))
1768 {
1769 /* String is live; unmark it and its intervals. */
1770 UNMARK_STRING (s);
177c0ea7 1771
8707c1e5
DA
1772 /* Do not use string_(set|get)_intervals here. */
1773 s->intervals = balance_intervals (s->intervals);
2e471eb5
GM
1774
1775 ++total_strings;
3ab6e069 1776 total_string_bytes += STRING_BYTES (s);
2e471eb5
GM
1777 }
1778 else
1779 {
1780 /* String is dead. Put it on the free-list. */
fbe9e0b9 1781 sdata *data = SDATA_OF_STRING (s);
2e471eb5
GM
1782
1783 /* Save the size of S in its sdata so that we know
1784 how large that is. Reset the sdata's string
1785 back-pointer so that we know it's free. */
31d929e5 1786#ifdef GC_CHECK_STRING_BYTES
e499d0ee 1787 if (string_bytes (s) != SDATA_NBYTES (data))
1088b922 1788 emacs_abort ();
31d929e5 1789#else
fbe9e0b9 1790 data->n.nbytes = STRING_BYTES (s);
31d929e5 1791#endif
2e471eb5
GM
1792 data->string = NULL;
1793
1794 /* Reset the strings's `data' member so that we
1795 know it's free. */
1796 s->data = NULL;
1797
1798 /* Put the string on the free-list. */
1799 NEXT_FREE_LISP_STRING (s) = string_free_list;
1800 string_free_list = s;
1801 ++nfree;
1802 }
1803 }
1804 else
1805 {
1806 /* S was on the free-list before. Put it there again. */
1807 NEXT_FREE_LISP_STRING (s) = string_free_list;
1808 string_free_list = s;
1809 ++nfree;
1810 }
1811 }
1812
34400008 1813 /* Free blocks that contain free Lisp_Strings only, except
2e471eb5 1814 the first two of them. */
19bcad1f
SM
1815 if (nfree == STRING_BLOCK_SIZE
1816 && total_free_strings > STRING_BLOCK_SIZE)
2e471eb5
GM
1817 {
1818 lisp_free (b);
2e471eb5
GM
1819 string_free_list = free_list_before;
1820 }
1821 else
1822 {
1823 total_free_strings += nfree;
1824 b->next = live_blocks;
1825 live_blocks = b;
1826 }
1827 }
1828
bdbed949 1829 check_string_free_list ();
212f33f1 1830
2e471eb5
GM
1831 string_blocks = live_blocks;
1832 free_large_strings ();
1833 compact_small_strings ();
212f33f1 1834
bdbed949 1835 check_string_free_list ();
2e471eb5
GM
1836}
1837
1838
1839/* Free dead large strings. */
1840
1841static void
971de7fb 1842free_large_strings (void)
2e471eb5
GM
1843{
1844 struct sblock *b, *next;
1845 struct sblock *live_blocks = NULL;
177c0ea7 1846
2e471eb5
GM
1847 for (b = large_sblocks; b; b = next)
1848 {
1849 next = b->next;
1850
1851 if (b->first_data.string == NULL)
1852 lisp_free (b);
1853 else
1854 {
1855 b->next = live_blocks;
1856 live_blocks = b;
1857 }
1858 }
1859
1860 large_sblocks = live_blocks;
1861}
1862
1863
1864/* Compact data of small strings. Free sblocks that don't contain
1865 data of live strings after compaction. */
1866
1867static void
971de7fb 1868compact_small_strings (void)
2e471eb5
GM
1869{
1870 struct sblock *b, *tb, *next;
fbe9e0b9
PE
1871 sdata *from, *to, *end, *tb_end;
1872 sdata *to_end, *from_end;
2e471eb5
GM
1873
1874 /* TB is the sblock we copy to, TO is the sdata within TB we copy
1875 to, and TB_END is the end of TB. */
1876 tb = oldest_sblock;
fbe9e0b9 1877 tb_end = (sdata *) ((char *) tb + SBLOCK_SIZE);
2e471eb5
GM
1878 to = &tb->first_data;
1879
1880 /* Step through the blocks from the oldest to the youngest. We
1881 expect that old blocks will stabilize over time, so that less
1882 copying will happen this way. */
1883 for (b = oldest_sblock; b; b = b->next)
1884 {
1885 end = b->next_free;
a54e2c05 1886 eassert ((char *) end <= (char *) b + SBLOCK_SIZE);
177c0ea7 1887
2e471eb5
GM
1888 for (from = &b->first_data; from < end; from = from_end)
1889 {
1890 /* Compute the next FROM here because copying below may
1891 overwrite data we need to compute it. */
d311d28c 1892 ptrdiff_t nbytes;
e499d0ee 1893 struct Lisp_String *s = from->string;
2e471eb5 1894
31d929e5
GM
1895#ifdef GC_CHECK_STRING_BYTES
1896 /* Check that the string size recorded in the string is the
b09cca6a 1897 same as the one recorded in the sdata structure. */
e499d0ee 1898 if (s && string_bytes (s) != SDATA_NBYTES (from))
1088b922 1899 emacs_abort ();
31d929e5 1900#endif /* GC_CHECK_STRING_BYTES */
177c0ea7 1901
e499d0ee
DA
1902 nbytes = s ? STRING_BYTES (s) : SDATA_NBYTES (from);
1903 eassert (nbytes <= LARGE_STRING_BYTES);
212f33f1 1904
2e471eb5 1905 nbytes = SDATA_SIZE (nbytes);
fbe9e0b9 1906 from_end = (sdata *) ((char *) from + nbytes + GC_STRING_EXTRA);
212f33f1
KS
1907
1908#ifdef GC_CHECK_STRING_OVERRUN
72af86bd
AS
1909 if (memcmp (string_overrun_cookie,
1910 (char *) from_end - GC_STRING_OVERRUN_COOKIE_SIZE,
1911 GC_STRING_OVERRUN_COOKIE_SIZE))
1088b922 1912 emacs_abort ();
212f33f1 1913#endif
177c0ea7 1914
e499d0ee
DA
1915 /* Non-NULL S means it's alive. Copy its data. */
1916 if (s)
2e471eb5
GM
1917 {
1918 /* If TB is full, proceed with the next sblock. */
fbe9e0b9 1919 to_end = (sdata *) ((char *) to + nbytes + GC_STRING_EXTRA);
2e471eb5
GM
1920 if (to_end > tb_end)
1921 {
1922 tb->next_free = to;
1923 tb = tb->next;
fbe9e0b9 1924 tb_end = (sdata *) ((char *) tb + SBLOCK_SIZE);
2e471eb5 1925 to = &tb->first_data;
fbe9e0b9 1926 to_end = (sdata *) ((char *) to + nbytes + GC_STRING_EXTRA);
2e471eb5 1927 }
177c0ea7 1928
2e471eb5
GM
1929 /* Copy, and update the string's `data' pointer. */
1930 if (from != to)
1931 {
a54e2c05 1932 eassert (tb != b || to < from);
72af86bd 1933 memmove (to, from, nbytes + GC_STRING_EXTRA);
31d929e5 1934 to->string->data = SDATA_DATA (to);
2e471eb5
GM
1935 }
1936
1937 /* Advance past the sdata we copied to. */
1938 to = to_end;
1939 }
1940 }
1941 }
1942
1943 /* The rest of the sblocks following TB don't contain live data, so
1944 we can free them. */
1945 for (b = tb->next; b; b = next)
1946 {
1947 next = b->next;
1948 lisp_free (b);
1949 }
1950
1951 tb->next_free = to;
1952 tb->next = NULL;
1953 current_sblock = tb;
1954}
1955
cb93f9be
PE
1956void
1957string_overflow (void)
1958{
1959 error ("Maximum string size exceeded");
1960}
2e471eb5 1961
a7ca3326 1962DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0,
69623621
RS
1963 doc: /* Return a newly created string of length LENGTH, with INIT in each element.
1964LENGTH must be an integer.
1965INIT must be an integer that represents a character. */)
5842a27b 1966 (Lisp_Object length, Lisp_Object init)
2e471eb5
GM
1967{
1968 register Lisp_Object val;
1969 register unsigned char *p, *end;
14162469
EZ
1970 int c;
1971 EMACS_INT nbytes;
2e471eb5 1972
b7826503 1973 CHECK_NATNUM (length);
2bccce07 1974 CHECK_CHARACTER (init);
2e471eb5 1975
2bccce07 1976 c = XFASTINT (init);
830ff83b 1977 if (ASCII_CHAR_P (c))
2e471eb5
GM
1978 {
1979 nbytes = XINT (length);
1980 val = make_uninit_string (nbytes);
d5db4077
KR
1981 p = SDATA (val);
1982 end = p + SCHARS (val);
2e471eb5
GM
1983 while (p != end)
1984 *p++ = c;
1985 }
1986 else
1987 {
d942b71c 1988 unsigned char str[MAX_MULTIBYTE_LENGTH];
2e471eb5 1989 int len = CHAR_STRING (c, str);
14162469 1990 EMACS_INT string_len = XINT (length);
2e471eb5 1991
d1f3d2af 1992 if (string_len > STRING_BYTES_MAX / len)
cb93f9be 1993 string_overflow ();
14162469
EZ
1994 nbytes = len * string_len;
1995 val = make_uninit_multibyte_string (string_len, nbytes);
d5db4077 1996 p = SDATA (val);
2e471eb5
GM
1997 end = p + nbytes;
1998 while (p != end)
1999 {
72af86bd 2000 memcpy (p, str, len);
2e471eb5
GM
2001 p += len;
2002 }
2003 }
177c0ea7 2004
2e471eb5
GM
2005 *p = 0;
2006 return val;
2007}
2008
2009
a7ca3326 2010DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0,
909e3b33 2011 doc: /* Return a new bool-vector of length LENGTH, using INIT for each element.
7ee72033 2012LENGTH must be a number. INIT matters only in whether it is t or nil. */)
5842a27b 2013 (Lisp_Object length, Lisp_Object init)
2e471eb5
GM
2014{
2015 register Lisp_Object val;
2016 struct Lisp_Bool_Vector *p;
d311d28c
PE
2017 ptrdiff_t length_in_chars;
2018 EMACS_INT length_in_elts;
14162469 2019 int bits_per_value;
d06714cb
PE
2020 int extra_bool_elts = ((bool_header_size - header_size + word_size - 1)
2021 / word_size);
2e471eb5 2022
b7826503 2023 CHECK_NATNUM (length);
2e471eb5 2024
a097329f 2025 bits_per_value = sizeof (EMACS_INT) * BOOL_VECTOR_BITS_PER_CHAR;
2e471eb5
GM
2026
2027 length_in_elts = (XFASTINT (length) + bits_per_value - 1) / bits_per_value;
2e471eb5 2028
d06714cb 2029 val = Fmake_vector (make_number (length_in_elts + extra_bool_elts), Qnil);
177c0ea7 2030
eab3844f 2031 /* No Lisp_Object to trace in there. */
914adc42 2032 XSETPVECTYPESIZE (XVECTOR (val), PVEC_BOOL_VECTOR, 0, 0);
d2029e5b
SM
2033
2034 p = XBOOL_VECTOR (val);
2e471eb5 2035 p->size = XFASTINT (length);
177c0ea7 2036
d311d28c
PE
2037 length_in_chars = ((XFASTINT (length) + BOOL_VECTOR_BITS_PER_CHAR - 1)
2038 / BOOL_VECTOR_BITS_PER_CHAR);
c0c1ee9f
PE
2039 if (length_in_chars)
2040 {
2041 memset (p->data, ! NILP (init) ? -1 : 0, length_in_chars);
177c0ea7 2042
c0c1ee9f
PE
2043 /* Clear any extraneous bits in the last byte. */
2044 p->data[length_in_chars - 1]
83713154 2045 &= (1 << ((XFASTINT (length) - 1) % BOOL_VECTOR_BITS_PER_CHAR + 1)) - 1;
c0c1ee9f 2046 }
2e471eb5
GM
2047
2048 return val;
2049}
2050
2051
2052/* Make a string from NBYTES bytes at CONTENTS, and compute the number
2053 of characters from the contents. This string may be unibyte or
2054 multibyte, depending on the contents. */
2055
2056Lisp_Object
d311d28c 2057make_string (const char *contents, ptrdiff_t nbytes)
2e471eb5
GM
2058{
2059 register Lisp_Object val;
d311d28c 2060 ptrdiff_t nchars, multibyte_nbytes;
9eac9d59 2061
90256841
PE
2062 parse_str_as_multibyte ((const unsigned char *) contents, nbytes,
2063 &nchars, &multibyte_nbytes);
9eac9d59
KH
2064 if (nbytes == nchars || nbytes != multibyte_nbytes)
2065 /* CONTENTS contains no multibyte sequences or contains an invalid
2066 multibyte sequence. We must make unibyte string. */
495a6df3
KH
2067 val = make_unibyte_string (contents, nbytes);
2068 else
2069 val = make_multibyte_string (contents, nchars, nbytes);
2e471eb5
GM
2070 return val;
2071}
2072
2073
2074/* Make an unibyte string from LENGTH bytes at CONTENTS. */
2075
2076Lisp_Object
d311d28c 2077make_unibyte_string (const char *contents, ptrdiff_t length)
2e471eb5
GM
2078{
2079 register Lisp_Object val;
2080 val = make_uninit_string (length);
72af86bd 2081 memcpy (SDATA (val), contents, length);
2e471eb5
GM
2082 return val;
2083}
2084
2085
2086/* Make a multibyte string from NCHARS characters occupying NBYTES
2087 bytes at CONTENTS. */
2088
2089Lisp_Object
14162469 2090make_multibyte_string (const char *contents,
d311d28c 2091 ptrdiff_t nchars, ptrdiff_t nbytes)
2e471eb5
GM
2092{
2093 register Lisp_Object val;
2094 val = make_uninit_multibyte_string (nchars, nbytes);
72af86bd 2095 memcpy (SDATA (val), contents, nbytes);
2e471eb5
GM
2096 return val;
2097}
2098
2099
2100/* Make a string from NCHARS characters occupying NBYTES bytes at
2101 CONTENTS. It is a multibyte string if NBYTES != NCHARS. */
2102
2103Lisp_Object
14162469 2104make_string_from_bytes (const char *contents,
d311d28c 2105 ptrdiff_t nchars, ptrdiff_t nbytes)
2e471eb5
GM
2106{
2107 register Lisp_Object val;
2108 val = make_uninit_multibyte_string (nchars, nbytes);
72af86bd 2109 memcpy (SDATA (val), contents, nbytes);
d5db4077
KR
2110 if (SBYTES (val) == SCHARS (val))
2111 STRING_SET_UNIBYTE (val);
2e471eb5
GM
2112 return val;
2113}
2114
2115
2116/* Make a string from NCHARS characters occupying NBYTES bytes at
2117 CONTENTS. The argument MULTIBYTE controls whether to label the
229b28c4
KH
2118 string as multibyte. If NCHARS is negative, it counts the number of
2119 characters by itself. */
2e471eb5
GM
2120
2121Lisp_Object
14162469 2122make_specified_string (const char *contents,
fce31d69 2123 ptrdiff_t nchars, ptrdiff_t nbytes, bool multibyte)
2e471eb5 2124{
fce31d69 2125 Lisp_Object val;
229b28c4
KH
2126
2127 if (nchars < 0)
2128 {
2129 if (multibyte)
90256841
PE
2130 nchars = multibyte_chars_in_text ((const unsigned char *) contents,
2131 nbytes);
229b28c4
KH
2132 else
2133 nchars = nbytes;
2134 }
2e471eb5 2135 val = make_uninit_multibyte_string (nchars, nbytes);
72af86bd 2136 memcpy (SDATA (val), contents, nbytes);
2e471eb5 2137 if (!multibyte)
d5db4077 2138 STRING_SET_UNIBYTE (val);
2e471eb5
GM
2139 return val;
2140}
2141
2142
2e471eb5
GM
2143/* Return an unibyte Lisp_String set up to hold LENGTH characters
2144 occupying LENGTH bytes. */
2145
2146Lisp_Object
413d18e7 2147make_uninit_string (EMACS_INT length)
2e471eb5
GM
2148{
2149 Lisp_Object val;
4d774b0f
JB
2150
2151 if (!length)
2152 return empty_unibyte_string;
2e471eb5 2153 val = make_uninit_multibyte_string (length, length);
d5db4077 2154 STRING_SET_UNIBYTE (val);
2e471eb5
GM
2155 return val;
2156}
2157
2158
2159/* Return a multibyte Lisp_String set up to hold NCHARS characters
2160 which occupy NBYTES bytes. */
2161
2162Lisp_Object
413d18e7 2163make_uninit_multibyte_string (EMACS_INT nchars, EMACS_INT nbytes)
2e471eb5
GM
2164{
2165 Lisp_Object string;
2166 struct Lisp_String *s;
2167
2168 if (nchars < 0)
1088b922 2169 emacs_abort ();
4d774b0f
JB
2170 if (!nbytes)
2171 return empty_multibyte_string;
2e471eb5
GM
2172
2173 s = allocate_string ();
77c7bcb1 2174 s->intervals = NULL;
2e471eb5
GM
2175 allocate_string_data (s, nchars, nbytes);
2176 XSETSTRING (string, s);
2177 string_chars_consed += nbytes;
2178 return string;
2179}
2180
a8290ec3
DA
2181/* Print arguments to BUF according to a FORMAT, then return
2182 a Lisp_String initialized with the data from BUF. */
2183
2184Lisp_Object
2185make_formatted_string (char *buf, const char *format, ...)
2186{
2187 va_list ap;
26bccfae 2188 int length;
a8290ec3
DA
2189
2190 va_start (ap, format);
2191 length = vsprintf (buf, format, ap);
2192 va_end (ap);
2193 return make_string (buf, length);
2194}
2e471eb5
GM
2195
2196\f
2197/***********************************************************************
2198 Float Allocation
2199 ***********************************************************************/
2200
2e471eb5
GM
2201/* We store float cells inside of float_blocks, allocating a new
2202 float_block with malloc whenever necessary. Float cells reclaimed
2203 by GC are put on a free list to be reallocated before allocating
ab6780cd 2204 any new float cells from the latest float_block. */
2e471eb5 2205
6b61353c
KH
2206#define FLOAT_BLOCK_SIZE \
2207 (((BLOCK_BYTES - sizeof (struct float_block *) \
2208 /* The compiler might add padding at the end. */ \
2209 - (sizeof (struct Lisp_Float) - sizeof (int))) * CHAR_BIT) \
ab6780cd
SM
2210 / (sizeof (struct Lisp_Float) * CHAR_BIT + 1))
2211
2212#define GETMARKBIT(block,n) \
5e617bc2
JB
2213 (((block)->gcmarkbits[(n) / (sizeof (int) * CHAR_BIT)] \
2214 >> ((n) % (sizeof (int) * CHAR_BIT))) \
ab6780cd
SM
2215 & 1)
2216
2217#define SETMARKBIT(block,n) \
5e617bc2
JB
2218 (block)->gcmarkbits[(n) / (sizeof (int) * CHAR_BIT)] \
2219 |= 1 << ((n) % (sizeof (int) * CHAR_BIT))
ab6780cd
SM
2220
2221#define UNSETMARKBIT(block,n) \
5e617bc2
JB
2222 (block)->gcmarkbits[(n) / (sizeof (int) * CHAR_BIT)] \
2223 &= ~(1 << ((n) % (sizeof (int) * CHAR_BIT)))
ab6780cd
SM
2224
2225#define FLOAT_BLOCK(fptr) \
d01a7826 2226 ((struct float_block *) (((uintptr_t) (fptr)) & ~(BLOCK_ALIGN - 1)))
ab6780cd
SM
2227
2228#define FLOAT_INDEX(fptr) \
d01a7826 2229 ((((uintptr_t) (fptr)) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Float))
2e471eb5
GM
2230
2231struct float_block
2232{
ab6780cd 2233 /* Place `floats' at the beginning, to ease up FLOAT_INDEX's job. */
2e471eb5 2234 struct Lisp_Float floats[FLOAT_BLOCK_SIZE];
5e617bc2 2235 int gcmarkbits[1 + FLOAT_BLOCK_SIZE / (sizeof (int) * CHAR_BIT)];
ab6780cd 2236 struct float_block *next;
2e471eb5
GM
2237};
2238
ab6780cd
SM
2239#define FLOAT_MARKED_P(fptr) \
2240 GETMARKBIT (FLOAT_BLOCK (fptr), FLOAT_INDEX ((fptr)))
2241
2242#define FLOAT_MARK(fptr) \
2243 SETMARKBIT (FLOAT_BLOCK (fptr), FLOAT_INDEX ((fptr)))
2244
2245#define FLOAT_UNMARK(fptr) \
2246 UNSETMARKBIT (FLOAT_BLOCK (fptr), FLOAT_INDEX ((fptr)))
2247
34400008
GM
2248/* Current float_block. */
2249
244ed907 2250static struct float_block *float_block;
34400008
GM
2251
2252/* Index of first unused Lisp_Float in the current float_block. */
2253
fff62aa9 2254static int float_block_index = FLOAT_BLOCK_SIZE;
2e471eb5 2255
34400008
GM
2256/* Free-list of Lisp_Floats. */
2257
244ed907 2258static struct Lisp_Float *float_free_list;
2e471eb5 2259
34400008
GM
2260/* Return a new float object with value FLOAT_VALUE. */
2261
2e471eb5 2262Lisp_Object
971de7fb 2263make_float (double float_value)
2e471eb5
GM
2264{
2265 register Lisp_Object val;
2266
dafc79fa 2267 MALLOC_BLOCK_INPUT;
cfb2f32e 2268
2e471eb5
GM
2269 if (float_free_list)
2270 {
2271 /* We use the data field for chaining the free list
2272 so that we won't use the same field that has the mark bit. */
2273 XSETFLOAT (val, float_free_list);
28a099a4 2274 float_free_list = float_free_list->u.chain;
2e471eb5
GM
2275 }
2276 else
2277 {
2278 if (float_block_index == FLOAT_BLOCK_SIZE)
2279 {
38182d90
PE
2280 struct float_block *new
2281 = lisp_align_malloc (sizeof *new, MEM_TYPE_FLOAT);
2e471eb5 2282 new->next = float_block;
72af86bd 2283 memset (new->gcmarkbits, 0, sizeof new->gcmarkbits);
2e471eb5
GM
2284 float_block = new;
2285 float_block_index = 0;
3900d5de 2286 total_free_floats += FLOAT_BLOCK_SIZE;
2e471eb5 2287 }
6b61353c
KH
2288 XSETFLOAT (val, &float_block->floats[float_block_index]);
2289 float_block_index++;
2e471eb5 2290 }
177c0ea7 2291
dafc79fa 2292 MALLOC_UNBLOCK_INPUT;
e2984df0 2293
f601cdf3 2294 XFLOAT_INIT (val, float_value);
6b61353c 2295 eassert (!FLOAT_MARKED_P (XFLOAT (val)));
2e471eb5
GM
2296 consing_since_gc += sizeof (struct Lisp_Float);
2297 floats_consed++;
3900d5de 2298 total_free_floats--;
2e471eb5
GM
2299 return val;
2300}
2301
2e471eb5
GM
2302
2303\f
2304/***********************************************************************
2305 Cons Allocation
2306 ***********************************************************************/
2307
2308/* We store cons cells inside of cons_blocks, allocating a new
2309 cons_block with malloc whenever necessary. Cons cells reclaimed by
2310 GC are put on a free list to be reallocated before allocating
08b7c2cb 2311 any new cons cells from the latest cons_block. */
2e471eb5 2312
a2821611
AS
2313#define CONS_BLOCK_SIZE \
2314 (((BLOCK_BYTES - sizeof (struct cons_block *) \
2315 /* The compiler might add padding at the end. */ \
2316 - (sizeof (struct Lisp_Cons) - sizeof (int))) * CHAR_BIT) \
08b7c2cb
SM
2317 / (sizeof (struct Lisp_Cons) * CHAR_BIT + 1))
2318
2319#define CONS_BLOCK(fptr) \
d01a7826 2320 ((struct cons_block *) ((uintptr_t) (fptr) & ~(BLOCK_ALIGN - 1)))
08b7c2cb
SM
2321
2322#define CONS_INDEX(fptr) \
d01a7826 2323 (((uintptr_t) (fptr) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Cons))
2e471eb5
GM
2324
2325struct cons_block
2326{
08b7c2cb 2327 /* Place `conses' at the beginning, to ease up CONS_INDEX's job. */
2e471eb5 2328 struct Lisp_Cons conses[CONS_BLOCK_SIZE];
5e617bc2 2329 int gcmarkbits[1 + CONS_BLOCK_SIZE / (sizeof (int) * CHAR_BIT)];
08b7c2cb 2330 struct cons_block *next;
2e471eb5
GM
2331};
2332
08b7c2cb
SM
2333#define CONS_MARKED_P(fptr) \
2334 GETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
2335
2336#define CONS_MARK(fptr) \
2337 SETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
2338
2339#define CONS_UNMARK(fptr) \
2340 UNSETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
2341
34400008
GM
2342/* Current cons_block. */
2343
244ed907 2344static struct cons_block *cons_block;
34400008
GM
2345
2346/* Index of first unused Lisp_Cons in the current block. */
2347
fff62aa9 2348static int cons_block_index = CONS_BLOCK_SIZE;
2e471eb5 2349
34400008
GM
2350/* Free-list of Lisp_Cons structures. */
2351
244ed907 2352static struct Lisp_Cons *cons_free_list;
2e471eb5 2353
34400008 2354/* Explicitly free a cons cell by putting it on the free-list. */
2e471eb5
GM
2355
2356void
971de7fb 2357free_cons (struct Lisp_Cons *ptr)
2e471eb5 2358{
28a099a4 2359 ptr->u.chain = cons_free_list;
34400008 2360#if GC_MARK_STACK
c644523b 2361 ptr->car = Vdead;
34400008 2362#endif
2e471eb5 2363 cons_free_list = ptr;
0dd6d66d 2364 consing_since_gc -= sizeof *ptr;
3900d5de 2365 total_free_conses++;
2e471eb5
GM
2366}
2367
a7ca3326 2368DEFUN ("cons", Fcons, Scons, 2, 2, 0,
a6266d23 2369 doc: /* Create a new cons, give it CAR and CDR as components, and return it. */)
5842a27b 2370 (Lisp_Object car, Lisp_Object cdr)
2e471eb5
GM
2371{
2372 register Lisp_Object val;
2373
dafc79fa 2374 MALLOC_BLOCK_INPUT;
cfb2f32e 2375
2e471eb5
GM
2376 if (cons_free_list)
2377 {
2378 /* We use the cdr for chaining the free list
2379 so that we won't use the same field that has the mark bit. */
2380 XSETCONS (val, cons_free_list);
28a099a4 2381 cons_free_list = cons_free_list->u.chain;
2e471eb5
GM
2382 }
2383 else
2384 {
2385 if (cons_block_index == CONS_BLOCK_SIZE)
2386 {
38182d90
PE
2387 struct cons_block *new
2388 = lisp_align_malloc (sizeof *new, MEM_TYPE_CONS);
72af86bd 2389 memset (new->gcmarkbits, 0, sizeof new->gcmarkbits);
2e471eb5
GM
2390 new->next = cons_block;
2391 cons_block = new;
2392 cons_block_index = 0;
3900d5de 2393 total_free_conses += CONS_BLOCK_SIZE;
2e471eb5 2394 }
6b61353c
KH
2395 XSETCONS (val, &cons_block->conses[cons_block_index]);
2396 cons_block_index++;
2e471eb5 2397 }
177c0ea7 2398
dafc79fa 2399 MALLOC_UNBLOCK_INPUT;
e2984df0 2400
f3fbd155
KR
2401 XSETCAR (val, car);
2402 XSETCDR (val, cdr);
6b61353c 2403 eassert (!CONS_MARKED_P (XCONS (val)));
2e471eb5 2404 consing_since_gc += sizeof (struct Lisp_Cons);
3900d5de 2405 total_free_conses--;
2e471eb5
GM
2406 cons_cells_consed++;
2407 return val;
2408}
2409
e5aab7e7 2410#ifdef GC_CHECK_CONS_LIST
e3e56238
RS
2411/* Get an error now if there's any junk in the cons free list. */
2412void
971de7fb 2413check_cons_list (void)
e3e56238
RS
2414{
2415 struct Lisp_Cons *tail = cons_free_list;
2416
e3e56238 2417 while (tail)
28a099a4 2418 tail = tail->u.chain;
e3e56238 2419}
e5aab7e7 2420#endif
34400008 2421
9b306d37
KS
2422/* Make a list of 1, 2, 3, 4 or 5 specified objects. */
2423
2424Lisp_Object
971de7fb 2425list1 (Lisp_Object arg1)
9b306d37
KS
2426{
2427 return Fcons (arg1, Qnil);
2428}
2e471eb5
GM
2429
2430Lisp_Object
971de7fb 2431list2 (Lisp_Object arg1, Lisp_Object arg2)
2e471eb5
GM
2432{
2433 return Fcons (arg1, Fcons (arg2, Qnil));
2434}
2435
34400008 2436
2e471eb5 2437Lisp_Object
971de7fb 2438list3 (Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
2e471eb5
GM
2439{
2440 return Fcons (arg1, Fcons (arg2, Fcons (arg3, Qnil)));
2441}
2442
34400008 2443
2e471eb5 2444Lisp_Object
971de7fb 2445list4 (Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3, Lisp_Object arg4)
2e471eb5
GM
2446{
2447 return Fcons (arg1, Fcons (arg2, Fcons (arg3, Fcons (arg4, Qnil))));
2448}
2449
34400008 2450
2e471eb5 2451Lisp_Object
971de7fb 2452list5 (Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5)
2e471eb5
GM
2453{
2454 return Fcons (arg1, Fcons (arg2, Fcons (arg3, Fcons (arg4,
2455 Fcons (arg5, Qnil)))));
2456}
2457
694b6c97
DA
2458/* Make a list of COUNT Lisp_Objects, where ARG is the
2459 first one. Allocate conses from pure space if TYPE
3438fe21 2460 is CONSTYPE_PURE, or allocate as usual if type is CONSTYPE_HEAP. */
694b6c97
DA
2461
2462Lisp_Object
2463listn (enum constype type, ptrdiff_t count, Lisp_Object arg, ...)
2464{
2465 va_list ap;
2466 ptrdiff_t i;
2467 Lisp_Object val, *objp;
2468
2469 /* Change to SAFE_ALLOCA if you hit this eassert. */
663e2b3f 2470 eassert (count <= MAX_ALLOCA / word_size);
694b6c97 2471
663e2b3f 2472 objp = alloca (count * word_size);
694b6c97
DA
2473 objp[0] = arg;
2474 va_start (ap, arg);
2475 for (i = 1; i < count; i++)
2476 objp[i] = va_arg (ap, Lisp_Object);
2477 va_end (ap);
2478
bcfbc9de 2479 for (val = Qnil, i = count - 1; i >= 0; i--)
694b6c97 2480 {
3438fe21 2481 if (type == CONSTYPE_PURE)
694b6c97 2482 val = pure_cons (objp[i], val);
3438fe21 2483 else if (type == CONSTYPE_HEAP)
694b6c97
DA
2484 val = Fcons (objp[i], val);
2485 else
1088b922 2486 emacs_abort ();
694b6c97
DA
2487 }
2488 return val;
2489}
34400008 2490
a7ca3326 2491DEFUN ("list", Flist, Slist, 0, MANY, 0,
eae936e2 2492 doc: /* Return a newly created list with specified arguments as elements.
ae8e8122
MB
2493Any number of arguments, even zero arguments, are allowed.
2494usage: (list &rest OBJECTS) */)
f66c7cf8 2495 (ptrdiff_t nargs, Lisp_Object *args)
2e471eb5
GM
2496{
2497 register Lisp_Object val;
2498 val = Qnil;
2499
2500 while (nargs > 0)
2501 {
2502 nargs--;
2503 val = Fcons (args[nargs], val);
2504 }
2505 return val;
2506}
2507
34400008 2508
a7ca3326 2509DEFUN ("make-list", Fmake_list, Smake_list, 2, 2, 0,
a6266d23 2510 doc: /* Return a newly created list of length LENGTH, with each element being INIT. */)
5842a27b 2511 (register Lisp_Object length, Lisp_Object init)
2e471eb5
GM
2512{
2513 register Lisp_Object val;
14162469 2514 register EMACS_INT size;
2e471eb5 2515
b7826503 2516 CHECK_NATNUM (length);
2e471eb5
GM
2517 size = XFASTINT (length);
2518
2519 val = Qnil;
ce070307
GM
2520 while (size > 0)
2521 {
2522 val = Fcons (init, val);
2523 --size;
2524
2525 if (size > 0)
2526 {
2527 val = Fcons (init, val);
2528 --size;
177c0ea7 2529
ce070307
GM
2530 if (size > 0)
2531 {
2532 val = Fcons (init, val);
2533 --size;
177c0ea7 2534
ce070307
GM
2535 if (size > 0)
2536 {
2537 val = Fcons (init, val);
2538 --size;
177c0ea7 2539
ce070307
GM
2540 if (size > 0)
2541 {
2542 val = Fcons (init, val);
2543 --size;
2544 }
2545 }
2546 }
2547 }
2548
2549 QUIT;
2550 }
177c0ea7 2551
7146af97
JB
2552 return val;
2553}
2e471eb5
GM
2554
2555
7146af97 2556\f
2e471eb5
GM
2557/***********************************************************************
2558 Vector Allocation
2559 ***********************************************************************/
7146af97 2560
f3372c87
DA
2561/* This value is balanced well enough to avoid too much internal overhead
2562 for the most common cases; it's not required to be a power of two, but
2563 it's expected to be a mult-of-ROUNDUP_SIZE (see below). */
34400008 2564
f3372c87 2565#define VECTOR_BLOCK_SIZE 4096
7146af97 2566
d06714cb 2567/* Align allocation request sizes to be a multiple of ROUNDUP_SIZE. */
dd0b0efb
PE
2568enum
2569 {
2b90362b 2570 roundup_size = COMMON_MULTIPLE (word_size, USE_LSB_TAG ? GCALIGNMENT : 1)
dd0b0efb 2571 };
34400008 2572
bfe3e0a2
PE
2573/* ROUNDUP_SIZE must be a power of 2. */
2574verify ((roundup_size & (roundup_size - 1)) == 0);
2575
ca95b3eb
DA
2576/* Verify assumptions described above. */
2577verify ((VECTOR_BLOCK_SIZE % roundup_size) == 0);
ee28be33 2578verify (VECTOR_BLOCK_SIZE <= (1 << PSEUDOVECTOR_SIZE_BITS));
ca95b3eb 2579
bfe3e0a2 2580/* Round up X to nearest mult-of-ROUNDUP_SIZE. */
f3372c87
DA
2581
2582#define vroundup(x) (((x) + (roundup_size - 1)) & ~(roundup_size - 1))
2583
2584/* Rounding helps to maintain alignment constraints if USE_LSB_TAG. */
2585
2586#define VECTOR_BLOCK_BYTES (VECTOR_BLOCK_SIZE - vroundup (sizeof (void *)))
2587
2588/* Size of the minimal vector allocated from block. */
2589
fbe9e0b9 2590#define VBLOCK_BYTES_MIN vroundup (header_size + sizeof (Lisp_Object))
f3372c87
DA
2591
2592/* Size of the largest vector allocated from block. */
2593
2594#define VBLOCK_BYTES_MAX \
d06714cb 2595 vroundup ((VECTOR_BLOCK_BYTES / 2) - word_size)
f3372c87
DA
2596
2597/* We maintain one free list for each possible block-allocated
2598 vector size, and this is the number of free lists we have. */
2599
2600#define VECTOR_MAX_FREE_LIST_INDEX \
2601 ((VECTOR_BLOCK_BYTES - VBLOCK_BYTES_MIN) / roundup_size + 1)
2602
f3372c87
DA
2603/* Common shortcut to advance vector pointer over a block data. */
2604
2605#define ADVANCE(v, nbytes) ((struct Lisp_Vector *) ((char *) (v) + (nbytes)))
2606
2607/* Common shortcut to calculate NBYTES-vector index in VECTOR_FREE_LISTS. */
2608
2609#define VINDEX(nbytes) (((nbytes) - VBLOCK_BYTES_MIN) / roundup_size)
2610
76ae24d7
PE
2611/* Get and set the next field in block-allocated vectorlike objects on
2612 the free list. Doing it this way respects C's aliasing rules.
2613 We could instead make 'contents' a union, but that would mean
2614 changes everywhere that the code uses 'contents'. */
2615static struct Lisp_Vector *
2616next_in_free_list (struct Lisp_Vector *v)
7d377c48 2617{
76ae24d7
PE
2618 intptr_t i = XLI (v->contents[0]);
2619 return (struct Lisp_Vector *) i;
2620}
2621static void
2622set_next_in_free_list (struct Lisp_Vector *v, struct Lisp_Vector *next)
2623{
2624 v->contents[0] = XIL ((intptr_t) next);
2625}
914adc42 2626
f3372c87
DA
2627/* Common shortcut to setup vector on a free list. */
2628
914adc42
DA
2629#define SETUP_ON_FREE_LIST(v, nbytes, tmp) \
2630 do { \
2631 (tmp) = ((nbytes - header_size) / word_size); \
2632 XSETPVECTYPESIZE (v, PVEC_FREE, 0, (tmp)); \
2633 eassert ((nbytes) % roundup_size == 0); \
2634 (tmp) = VINDEX (nbytes); \
2635 eassert ((tmp) < VECTOR_MAX_FREE_LIST_INDEX); \
76ae24d7 2636 set_next_in_free_list (v, vector_free_lists[tmp]); \
914adc42
DA
2637 vector_free_lists[tmp] = (v); \
2638 total_free_vector_slots += (nbytes) / word_size; \
f3372c87
DA
2639 } while (0)
2640
914adc42
DA
2641/* This internal type is used to maintain the list of large vectors
2642 which are allocated at their own, e.g. outside of vector blocks. */
2643
2644struct large_vector
2645{
2646 union {
2647 struct large_vector *vector;
2648#if USE_LSB_TAG
2649 /* We need to maintain ROUNDUP_SIZE alignment for the vector member. */
2650 unsigned char c[vroundup (sizeof (struct large_vector *))];
2651#endif
2652 } next;
2653 struct Lisp_Vector v;
2654};
2655
2656/* This internal type is used to maintain an underlying storage
2657 for small vectors. */
2658
f3372c87
DA
2659struct vector_block
2660{
2661 char data[VECTOR_BLOCK_BYTES];
2662 struct vector_block *next;
2663};
2664
2665/* Chain of vector blocks. */
2666
2667static struct vector_block *vector_blocks;
2668
2669/* Vector free lists, where NTH item points to a chain of free
2670 vectors of the same NBYTES size, so NTH == VINDEX (NBYTES). */
2671
2672static struct Lisp_Vector *vector_free_lists[VECTOR_MAX_FREE_LIST_INDEX];
2673
2674/* Singly-linked list of large vectors. */
2675
914adc42 2676static struct large_vector *large_vectors;
f3372c87
DA
2677
2678/* The only vector with 0 slots, allocated from pure space. */
2679
9730daca 2680Lisp_Object zero_vector;
f3372c87 2681
3ab6e069
DA
2682/* Number of live vectors. */
2683
2684static EMACS_INT total_vectors;
2685
5b835e1d 2686/* Total size of live and free vectors, in Lisp_Object units. */
3ab6e069 2687
5b835e1d 2688static EMACS_INT total_vector_slots, total_free_vector_slots;
3ab6e069 2689
f3372c87
DA
2690/* Get a new vector block. */
2691
2692static struct vector_block *
2693allocate_vector_block (void)
2694{
38182d90 2695 struct vector_block *block = xmalloc (sizeof *block);
f3372c87
DA
2696
2697#if GC_MARK_STACK && !defined GC_MALLOC_CHECK
2698 mem_insert (block->data, block->data + VECTOR_BLOCK_BYTES,
2699 MEM_TYPE_VECTOR_BLOCK);
2700#endif
2701
2702 block->next = vector_blocks;
2703 vector_blocks = block;
2704 return block;
2705}
2706
2707/* Called once to initialize vector allocation. */
2708
2709static void
2710init_vectors (void)
2711{
9730daca 2712 zero_vector = make_pure_vector (0);
f3372c87
DA
2713}
2714
2715/* Allocate vector from a vector block. */
2716
2717static struct Lisp_Vector *
2718allocate_vector_from_block (size_t nbytes)
2719{
914adc42 2720 struct Lisp_Vector *vector;
f3372c87
DA
2721 struct vector_block *block;
2722 size_t index, restbytes;
2723
2724 eassert (VBLOCK_BYTES_MIN <= nbytes && nbytes <= VBLOCK_BYTES_MAX);
2725 eassert (nbytes % roundup_size == 0);
2726
2727 /* First, try to allocate from a free list
2728 containing vectors of the requested size. */
2729 index = VINDEX (nbytes);
2730 if (vector_free_lists[index])
2731 {
2732 vector = vector_free_lists[index];
76ae24d7 2733 vector_free_lists[index] = next_in_free_list (vector);
5b835e1d 2734 total_free_vector_slots -= nbytes / word_size;
f3372c87
DA
2735 return vector;
2736 }
2737
2738 /* Next, check free lists containing larger vectors. Since
2739 we will split the result, we should have remaining space
2740 large enough to use for one-slot vector at least. */
2741 for (index = VINDEX (nbytes + VBLOCK_BYTES_MIN);
2742 index < VECTOR_MAX_FREE_LIST_INDEX; index++)
2743 if (vector_free_lists[index])
2744 {
2745 /* This vector is larger than requested. */
2746 vector = vector_free_lists[index];
76ae24d7 2747 vector_free_lists[index] = next_in_free_list (vector);
5b835e1d 2748 total_free_vector_slots -= nbytes / word_size;
f3372c87
DA
2749
2750 /* Excess bytes are used for the smaller vector,
2751 which should be set on an appropriate free list. */
2752 restbytes = index * roundup_size + VBLOCK_BYTES_MIN - nbytes;
2753 eassert (restbytes % roundup_size == 0);
914adc42 2754 SETUP_ON_FREE_LIST (ADVANCE (vector, nbytes), restbytes, index);
f3372c87
DA
2755 return vector;
2756 }
2757
2758 /* Finally, need a new vector block. */
2759 block = allocate_vector_block ();
2760
2761 /* New vector will be at the beginning of this block. */
2762 vector = (struct Lisp_Vector *) block->data;
f3372c87
DA
2763
2764 /* If the rest of space from this block is large enough
2765 for one-slot vector at least, set up it on a free list. */
2766 restbytes = VECTOR_BLOCK_BYTES - nbytes;
2767 if (restbytes >= VBLOCK_BYTES_MIN)
2768 {
2769 eassert (restbytes % roundup_size == 0);
914adc42 2770 SETUP_ON_FREE_LIST (ADVANCE (vector, nbytes), restbytes, index);
f3372c87
DA
2771 }
2772 return vector;
914adc42 2773}
f3372c87 2774
f3372c87
DA
2775/* Nonzero if VECTOR pointer is valid pointer inside BLOCK. */
2776
2777#define VECTOR_IN_BLOCK(vector, block) \
2778 ((char *) (vector) <= (block)->data \
2779 + VECTOR_BLOCK_BYTES - VBLOCK_BYTES_MIN)
2780
914adc42 2781/* Return the memory footprint of V in bytes. */
ee28be33 2782
914adc42
DA
2783static ptrdiff_t
2784vector_nbytes (struct Lisp_Vector *v)
2785{
2786 ptrdiff_t size = v->header.size & ~ARRAY_MARK_FLAG;
2787
2788 if (size & PSEUDOVECTOR_FLAG)
2789 {
2790 if (PSEUDOVECTOR_TYPEP (&v->header, PVEC_BOOL_VECTOR))
2791 size = (bool_header_size
2792 + (((struct Lisp_Bool_Vector *) v)->size
2793 + BOOL_VECTOR_BITS_PER_CHAR - 1)
2794 / BOOL_VECTOR_BITS_PER_CHAR);
2795 else
2796 size = (header_size
2797 + ((size & PSEUDOVECTOR_SIZE_MASK)
2798 + ((size & PSEUDOVECTOR_REST_MASK)
2799 >> PSEUDOVECTOR_SIZE_BITS)) * word_size);
2800 }
2801 else
2802 size = header_size + size * word_size;
2803 return vroundup (size);
2804}
ee28be33 2805
f3372c87
DA
2806/* Reclaim space used by unmarked vectors. */
2807
2808static void
2809sweep_vectors (void)
2810{
2811 struct vector_block *block = vector_blocks, **bprev = &vector_blocks;
914adc42
DA
2812 struct large_vector *lv, **lvprev = &large_vectors;
2813 struct Lisp_Vector *vector, *next;
f3372c87 2814
5b835e1d 2815 total_vectors = total_vector_slots = total_free_vector_slots = 0;
f3372c87
DA
2816 memset (vector_free_lists, 0, sizeof (vector_free_lists));
2817
2818 /* Looking through vector blocks. */
2819
2820 for (block = vector_blocks; block; block = *bprev)
2821 {
fce31d69 2822 bool free_this_block = 0;
914adc42 2823 ptrdiff_t nbytes;
f3372c87
DA
2824
2825 for (vector = (struct Lisp_Vector *) block->data;
2826 VECTOR_IN_BLOCK (vector, block); vector = next)
2827 {
2828 if (VECTOR_MARKED_P (vector))
2829 {
2830 VECTOR_UNMARK (vector);
3ab6e069 2831 total_vectors++;
914adc42
DA
2832 nbytes = vector_nbytes (vector);
2833 total_vector_slots += nbytes / word_size;
2834 next = ADVANCE (vector, nbytes);
f3372c87
DA
2835 }
2836 else
2837 {
914adc42 2838 ptrdiff_t total_bytes;
f3372c87 2839
914adc42
DA
2840 nbytes = vector_nbytes (vector);
2841 total_bytes = nbytes;
ee28be33 2842 next = ADVANCE (vector, nbytes);
f3372c87
DA
2843
2844 /* While NEXT is not marked, try to coalesce with VECTOR,
2845 thus making VECTOR of the largest possible size. */
2846
2847 while (VECTOR_IN_BLOCK (next, block))
2848 {
2849 if (VECTOR_MARKED_P (next))
2850 break;
914adc42 2851 nbytes = vector_nbytes (next);
ee28be33 2852 total_bytes += nbytes;
f3372c87
DA
2853 next = ADVANCE (next, nbytes);
2854 }
bfe3e0a2 2855
ee28be33 2856 eassert (total_bytes % roundup_size == 0);
f3372c87
DA
2857
2858 if (vector == (struct Lisp_Vector *) block->data
2859 && !VECTOR_IN_BLOCK (next, block))
2860 /* This block should be freed because all of it's
2861 space was coalesced into the only free vector. */
2862 free_this_block = 1;
2863 else
ee28be33
SM
2864 {
2865 int tmp;
2866 SETUP_ON_FREE_LIST (vector, total_bytes, tmp);
2867 }
f3372c87
DA
2868 }
2869 }
2870
2871 if (free_this_block)
2872 {
2873 *bprev = block->next;
2874#if GC_MARK_STACK && !defined GC_MALLOC_CHECK
2875 mem_delete (mem_find (block->data));
2876#endif
2877 xfree (block);
2878 }
2879 else
2880 bprev = &block->next;
2881 }
2882
2883 /* Sweep large vectors. */
2884
914adc42 2885 for (lv = large_vectors; lv; lv = *lvprev)
f3372c87 2886 {
914adc42 2887 vector = &lv->v;
f3372c87
DA
2888 if (VECTOR_MARKED_P (vector))
2889 {
2890 VECTOR_UNMARK (vector);
3ab6e069 2891 total_vectors++;
169925ec
DA
2892 if (vector->header.size & PSEUDOVECTOR_FLAG)
2893 {
d06714cb
PE
2894 struct Lisp_Bool_Vector *b = (struct Lisp_Bool_Vector *) vector;
2895
2896 /* All non-bool pseudovectors are small enough to be allocated
2897 from vector blocks. This code should be redesigned if some
2898 pseudovector type grows beyond VBLOCK_BYTES_MAX. */
2899 eassert (PSEUDOVECTOR_TYPEP (&vector->header, PVEC_BOOL_VECTOR));
2900
5b835e1d 2901 total_vector_slots
d06714cb
PE
2902 += (bool_header_size
2903 + ((b->size + BOOL_VECTOR_BITS_PER_CHAR - 1)
5b835e1d 2904 / BOOL_VECTOR_BITS_PER_CHAR)) / word_size;
169925ec
DA
2905 }
2906 else
5b835e1d
DA
2907 total_vector_slots
2908 += header_size / word_size + vector->header.size;
914adc42 2909 lvprev = &lv->next.vector;
f3372c87
DA
2910 }
2911 else
2912 {
914adc42
DA
2913 *lvprev = lv->next.vector;
2914 lisp_free (lv);
f3372c87
DA
2915 }
2916 }
2917}
2918
34400008
GM
2919/* Value is a pointer to a newly allocated Lisp_Vector structure
2920 with room for LEN Lisp_Objects. */
2921
ece93c02 2922static struct Lisp_Vector *
d311d28c 2923allocate_vectorlike (ptrdiff_t len)
1825c68d
KH
2924{
2925 struct Lisp_Vector *p;
2926
dafc79fa
SM
2927 MALLOC_BLOCK_INPUT;
2928
f3372c87 2929 if (len == 0)
9730daca 2930 p = XVECTOR (zero_vector);
d12e8f5a 2931 else
8bbbc977 2932 {
d12e8f5a 2933 size_t nbytes = header_size + len * word_size;
f3372c87 2934
d12e8f5a
DA
2935#ifdef DOUG_LEA_MALLOC
2936 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed
2937 because mapped region contents are not preserved in
2938 a dumped Emacs. */
2939 mallopt (M_MMAP_MAX, 0);
2940#endif
f3372c87 2941
d12e8f5a
DA
2942 if (nbytes <= VBLOCK_BYTES_MAX)
2943 p = allocate_vector_from_block (vroundup (nbytes));
2944 else
2945 {
914adc42 2946 struct large_vector *lv
fbe9e0b9
PE
2947 = lisp_malloc ((offsetof (struct large_vector, v.contents)
2948 + len * word_size),
914adc42
DA
2949 MEM_TYPE_VECTORLIKE);
2950 lv->next.vector = large_vectors;
2951 large_vectors = lv;
2952 p = &lv->v;
d12e8f5a 2953 }
177c0ea7 2954
d1658221 2955#ifdef DOUG_LEA_MALLOC
d12e8f5a
DA
2956 /* Back to a reasonable maximum of mmap'ed areas. */
2957 mallopt (M_MMAP_MAX, MMAP_MAX_AREAS);
d1658221 2958#endif
177c0ea7 2959
d12e8f5a
DA
2960 consing_since_gc += nbytes;
2961 vector_cells_consed += len;
2962 }
1825c68d 2963
dafc79fa 2964 MALLOC_UNBLOCK_INPUT;
e2984df0 2965
1825c68d
KH
2966 return p;
2967}
2968
34400008 2969
dd0b0efb 2970/* Allocate a vector with LEN slots. */
ece93c02
GM
2971
2972struct Lisp_Vector *
dd0b0efb 2973allocate_vector (EMACS_INT len)
ece93c02 2974{
dd0b0efb
PE
2975 struct Lisp_Vector *v;
2976 ptrdiff_t nbytes_max = min (PTRDIFF_MAX, SIZE_MAX);
2977
2978 if (min ((nbytes_max - header_size) / word_size, MOST_POSITIVE_FIXNUM) < len)
2979 memory_full (SIZE_MAX);
2980 v = allocate_vectorlike (len);
2981 v->header.size = len;
ece93c02
GM
2982 return v;
2983}
2984
2985
2986/* Allocate other vector-like structures. */
2987
30f95089 2988struct Lisp_Vector *
914adc42 2989allocate_pseudovector (int memlen, int lisplen, enum pvec_type tag)
ece93c02 2990{
d2029e5b 2991 struct Lisp_Vector *v = allocate_vectorlike (memlen);
e46bb31a 2992 int i;
177c0ea7 2993
914adc42
DA
2994 /* Catch bogus values. */
2995 eassert (tag <= PVEC_FONT);
2996 eassert (memlen - lisplen <= (1 << PSEUDOVECTOR_REST_BITS) - 1);
2997 eassert (lisplen <= (1 << PSEUDOVECTOR_SIZE_BITS) - 1);
2998
d2029e5b 2999 /* Only the first lisplen slots will be traced normally by the GC. */
d2029e5b 3000 for (i = 0; i < lisplen; ++i)
ece93c02 3001 v->contents[i] = Qnil;
177c0ea7 3002
914adc42 3003 XSETPVECTYPESIZE (v, tag, lisplen, memlen - lisplen);
d2029e5b
SM
3004 return v;
3005}
d2029e5b 3006
36429c89
DA
3007struct buffer *
3008allocate_buffer (void)
3009{
38182d90 3010 struct buffer *b = lisp_malloc (sizeof *b, MEM_TYPE_BUFFER);
36429c89 3011
914adc42 3012 BUFFER_PVEC_INIT (b);
c752cfa9 3013 /* Put B on the chain of all buffers including killed ones. */
914adc42 3014 b->next = all_buffers;
c752cfa9
DA
3015 all_buffers = b;
3016 /* Note that the rest fields of B are not initialized. */
36429c89
DA
3017 return b;
3018}
3019
ece93c02 3020struct Lisp_Hash_Table *
878f97ff 3021allocate_hash_table (void)
ece93c02 3022{
878f97ff 3023 return ALLOCATE_PSEUDOVECTOR (struct Lisp_Hash_Table, count, PVEC_HASH_TABLE);
ece93c02
GM
3024}
3025
ece93c02 3026struct window *
971de7fb 3027allocate_window (void)
ece93c02 3028{
62efea5e 3029 struct window *w;
177c0ea7 3030
62efea5e
DA
3031 w = ALLOCATE_PSEUDOVECTOR (struct window, current_matrix, PVEC_WINDOW);
3032 /* Users assumes that non-Lisp data is zeroed. */
3033 memset (&w->current_matrix, 0,
3034 sizeof (*w) - offsetof (struct window, current_matrix));
3035 return w;
3036}
177c0ea7 3037
4a729fd8 3038struct terminal *
971de7fb 3039allocate_terminal (void)
4a729fd8 3040{
62efea5e 3041 struct terminal *t;
ece93c02 3042
62efea5e
DA
3043 t = ALLOCATE_PSEUDOVECTOR (struct terminal, next_terminal, PVEC_TERMINAL);
3044 /* Users assumes that non-Lisp data is zeroed. */
3045 memset (&t->next_terminal, 0,
3046 sizeof (*t) - offsetof (struct terminal, next_terminal));
d2029e5b 3047 return t;
4a729fd8 3048}
ece93c02
GM
3049
3050struct frame *
971de7fb 3051allocate_frame (void)
ece93c02 3052{
62efea5e
DA
3053 struct frame *f;
3054
3055 f = ALLOCATE_PSEUDOVECTOR (struct frame, face_cache, PVEC_FRAME);
3056 /* Users assumes that non-Lisp data is zeroed. */
72af86bd 3057 memset (&f->face_cache, 0,
62efea5e 3058 sizeof (*f) - offsetof (struct frame, face_cache));
d2029e5b 3059 return f;
ece93c02
GM
3060}
3061
ece93c02 3062struct Lisp_Process *
971de7fb 3063allocate_process (void)
ece93c02 3064{
62efea5e 3065 struct Lisp_Process *p;
ece93c02 3066
62efea5e
DA
3067 p = ALLOCATE_PSEUDOVECTOR (struct Lisp_Process, pid, PVEC_PROCESS);
3068 /* Users assumes that non-Lisp data is zeroed. */
3069 memset (&p->pid, 0,
3070 sizeof (*p) - offsetof (struct Lisp_Process, pid));
3071 return p;
3072}
ece93c02 3073
a7ca3326 3074DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0,
a6266d23 3075 doc: /* Return a newly created vector of length LENGTH, with each element being INIT.
7ee72033 3076See also the function `vector'. */)
5842a27b 3077 (register Lisp_Object length, Lisp_Object init)
7146af97 3078{
1825c68d 3079 Lisp_Object vector;
d311d28c
PE
3080 register ptrdiff_t sizei;
3081 register ptrdiff_t i;
7146af97
JB
3082 register struct Lisp_Vector *p;
3083
b7826503 3084 CHECK_NATNUM (length);
7146af97 3085
d311d28c
PE
3086 p = allocate_vector (XFASTINT (length));
3087 sizei = XFASTINT (length);
ae35e756
PE
3088 for (i = 0; i < sizei; i++)
3089 p->contents[i] = init;
7146af97 3090
1825c68d 3091 XSETVECTOR (vector, p);
7146af97
JB
3092 return vector;
3093}
3094
34400008 3095
a7ca3326 3096DEFUN ("vector", Fvector, Svector, 0, MANY, 0,
eae936e2 3097 doc: /* Return a newly created vector with specified arguments as elements.
ae8e8122
MB
3098Any number of arguments, even zero arguments, are allowed.
3099usage: (vector &rest OBJECTS) */)
f66c7cf8 3100 (ptrdiff_t nargs, Lisp_Object *args)
7146af97 3101{
f66c7cf8 3102 ptrdiff_t i;
25721f5b
DA
3103 register Lisp_Object val = make_uninit_vector (nargs);
3104 register struct Lisp_Vector *p = XVECTOR (val);
7146af97 3105
ae35e756
PE
3106 for (i = 0; i < nargs; i++)
3107 p->contents[i] = args[i];
7146af97
JB
3108 return val;
3109}
3110
3017f87f
SM
3111void
3112make_byte_code (struct Lisp_Vector *v)
3113{
3114 if (v->header.size > 1 && STRINGP (v->contents[1])
3115 && STRING_MULTIBYTE (v->contents[1]))
3116 /* BYTECODE-STRING must have been produced by Emacs 20.2 or the
3117 earlier because they produced a raw 8-bit string for byte-code
3118 and now such a byte-code string is loaded as multibyte while
3119 raw 8-bit characters converted to multibyte form. Thus, now we
3120 must convert them back to the original unibyte form. */
3121 v->contents[1] = Fstring_as_unibyte (v->contents[1]);
3122 XSETPVECTYPE (v, PVEC_COMPILED);
3123}
34400008 3124
a7ca3326 3125DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0,
a6266d23 3126 doc: /* Create a byte-code object with specified arguments as elements.
e2abe5a1
SM
3127The arguments should be the ARGLIST, bytecode-string BYTE-CODE, constant
3128vector CONSTANTS, maximum stack size DEPTH, (optional) DOCSTRING,
3129and (optional) INTERACTIVE-SPEC.
228299fa 3130The first four arguments are required; at most six have any
ae8e8122 3131significance.
e2abe5a1
SM
3132The ARGLIST can be either like the one of `lambda', in which case the arguments
3133will be dynamically bound before executing the byte code, or it can be an
3134integer of the form NNNNNNNRMMMMMMM where the 7bit MMMMMMM specifies the
3135minimum number of arguments, the 7-bit NNNNNNN specifies the maximum number
3136of arguments (ignoring &rest) and the R bit specifies whether there is a &rest
3137argument to catch the left-over arguments. If such an integer is used, the
3138arguments will not be dynamically bound but will be instead pushed on the
3139stack before executing the byte-code.
92cc28b2 3140usage: (make-byte-code ARGLIST BYTE-CODE CONSTANTS DEPTH &optional DOCSTRING INTERACTIVE-SPEC &rest ELEMENTS) */)
f66c7cf8 3141 (ptrdiff_t nargs, Lisp_Object *args)
7146af97 3142{
f66c7cf8 3143 ptrdiff_t i;
25721f5b
DA
3144 register Lisp_Object val = make_uninit_vector (nargs);
3145 register struct Lisp_Vector *p = XVECTOR (val);
7146af97 3146
12fbe755 3147 /* We used to purecopy everything here, if purify-flag was set. This worked
3017f87f
SM
3148 OK for Emacs-23, but with Emacs-24's lexical binding code, it can be
3149 dangerous, since make-byte-code is used during execution to build
3150 closures, so any closure built during the preload phase would end up
3151 copied into pure space, including its free variables, which is sometimes
3152 just wasteful and other times plainly wrong (e.g. those free vars may want
3153 to be setcar'd). */
9eac9d59 3154
ae35e756 3155 for (i = 0; i < nargs; i++)
3017f87f
SM
3156 p->contents[i] = args[i];
3157 make_byte_code (p);
876c194c 3158 XSETCOMPILED (val, p);
7146af97
JB
3159 return val;
3160}
2e471eb5 3161
34400008 3162
7146af97 3163\f
2e471eb5
GM
3164/***********************************************************************
3165 Symbol Allocation
3166 ***********************************************************************/
7146af97 3167
d55c12ed
AS
3168/* Like struct Lisp_Symbol, but padded so that the size is a multiple
3169 of the required alignment if LSB tags are used. */
3170
3171union aligned_Lisp_Symbol
3172{
3173 struct Lisp_Symbol s;
bfe3e0a2 3174#if USE_LSB_TAG
2b90362b
DA
3175 unsigned char c[(sizeof (struct Lisp_Symbol) + GCALIGNMENT - 1)
3176 & -GCALIGNMENT];
d55c12ed
AS
3177#endif
3178};
3179
2e471eb5
GM
3180/* Each symbol_block is just under 1020 bytes long, since malloc
3181 really allocates in units of powers of two and uses 4 bytes for its
3017f87f 3182 own overhead. */
7146af97
JB
3183
3184#define SYMBOL_BLOCK_SIZE \
d55c12ed 3185 ((1020 - sizeof (struct symbol_block *)) / sizeof (union aligned_Lisp_Symbol))
7146af97
JB
3186
3187struct symbol_block
2e471eb5 3188{
6b61353c 3189 /* Place `symbols' first, to preserve alignment. */
d55c12ed 3190 union aligned_Lisp_Symbol symbols[SYMBOL_BLOCK_SIZE];
6b61353c 3191 struct symbol_block *next;
2e471eb5 3192};
7146af97 3193
34400008
GM
3194/* Current symbol block and index of first unused Lisp_Symbol
3195 structure in it. */
3196
d3d47262 3197static struct symbol_block *symbol_block;
fff62aa9 3198static int symbol_block_index = SYMBOL_BLOCK_SIZE;
7146af97 3199
34400008
GM
3200/* List of free symbols. */
3201
d3d47262 3202static struct Lisp_Symbol *symbol_free_list;
7146af97 3203
84575e67
PE
3204static void
3205set_symbol_name (Lisp_Object sym, Lisp_Object name)
3206{
3207 XSYMBOL (sym)->name = name;
3208}
3209
a7ca3326 3210DEFUN ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0,
a6266d23 3211 doc: /* Return a newly allocated uninterned symbol whose name is NAME.
eadf1faa 3212Its value is void, and its function definition and property list are nil. */)
5842a27b 3213 (Lisp_Object name)
7146af97
JB
3214{
3215 register Lisp_Object val;
3216 register struct Lisp_Symbol *p;
3217
b7826503 3218 CHECK_STRING (name);
7146af97 3219
dafc79fa 3220 MALLOC_BLOCK_INPUT;
e2984df0 3221
7146af97
JB
3222 if (symbol_free_list)
3223 {
45d12a89 3224 XSETSYMBOL (val, symbol_free_list);
28a099a4 3225 symbol_free_list = symbol_free_list->next;
7146af97
JB
3226 }
3227 else
3228 {
3229 if (symbol_block_index == SYMBOL_BLOCK_SIZE)
3230 {
38182d90
PE
3231 struct symbol_block *new
3232 = lisp_malloc (sizeof *new, MEM_TYPE_SYMBOL);
7146af97
JB
3233 new->next = symbol_block;
3234 symbol_block = new;
3235 symbol_block_index = 0;
3900d5de 3236 total_free_symbols += SYMBOL_BLOCK_SIZE;
7146af97 3237 }
d55c12ed 3238 XSETSYMBOL (val, &symbol_block->symbols[symbol_block_index].s);
6b61353c 3239 symbol_block_index++;
7146af97 3240 }
177c0ea7 3241
dafc79fa 3242 MALLOC_UNBLOCK_INPUT;
e2984df0 3243
7146af97 3244 p = XSYMBOL (val);
c644523b
DA
3245 set_symbol_name (val, name);
3246 set_symbol_plist (val, Qnil);
ce5b453a
SM
3247 p->redirect = SYMBOL_PLAINVAL;
3248 SET_SYMBOL_VAL (p, Qunbound);
eadf1faa 3249 set_symbol_function (val, Qnil);
c644523b 3250 set_symbol_next (val, NULL);
2336fe58 3251 p->gcmarkbit = 0;
9e713715
GM
3252 p->interned = SYMBOL_UNINTERNED;
3253 p->constant = 0;
b9598260 3254 p->declared_special = 0;
2e471eb5
GM
3255 consing_since_gc += sizeof (struct Lisp_Symbol);
3256 symbols_consed++;
3900d5de 3257 total_free_symbols--;
7146af97
JB
3258 return val;
3259}
3260
3f25e183 3261
2e471eb5
GM
3262\f
3263/***********************************************************************
34400008 3264 Marker (Misc) Allocation
2e471eb5 3265 ***********************************************************************/
3f25e183 3266
d55c12ed
AS
3267/* Like union Lisp_Misc, but padded so that its size is a multiple of
3268 the required alignment when LSB tags are used. */
3269
3270union aligned_Lisp_Misc
3271{
3272 union Lisp_Misc m;
bfe3e0a2 3273#if USE_LSB_TAG
2b90362b
DA
3274 unsigned char c[(sizeof (union Lisp_Misc) + GCALIGNMENT - 1)
3275 & -GCALIGNMENT];
d55c12ed
AS
3276#endif
3277};
3278
2e471eb5
GM
3279/* Allocation of markers and other objects that share that structure.
3280 Works like allocation of conses. */
c0696668 3281
2e471eb5 3282#define MARKER_BLOCK_SIZE \
d55c12ed 3283 ((1020 - sizeof (struct marker_block *)) / sizeof (union aligned_Lisp_Misc))
2e471eb5
GM
3284
3285struct marker_block
c0696668 3286{
6b61353c 3287 /* Place `markers' first, to preserve alignment. */
d55c12ed 3288 union aligned_Lisp_Misc markers[MARKER_BLOCK_SIZE];
6b61353c 3289 struct marker_block *next;
2e471eb5 3290};
c0696668 3291
d3d47262 3292static struct marker_block *marker_block;
fff62aa9 3293static int marker_block_index = MARKER_BLOCK_SIZE;
c0696668 3294
d3d47262 3295static union Lisp_Misc *marker_free_list;
c0696668 3296
d7a7fda3 3297/* Return a newly allocated Lisp_Misc object of specified TYPE. */
2e471eb5 3298
1b971ac1 3299static Lisp_Object
d7a7fda3 3300allocate_misc (enum Lisp_Misc_Type type)
7146af97 3301{
2e471eb5 3302 Lisp_Object val;
7146af97 3303
dafc79fa 3304 MALLOC_BLOCK_INPUT;
cfb2f32e 3305
2e471eb5 3306 if (marker_free_list)
7146af97 3307 {
2e471eb5
GM
3308 XSETMISC (val, marker_free_list);
3309 marker_free_list = marker_free_list->u_free.chain;
7146af97
JB
3310 }
3311 else
7146af97 3312 {
2e471eb5
GM
3313 if (marker_block_index == MARKER_BLOCK_SIZE)
3314 {
38182d90 3315 struct marker_block *new = lisp_malloc (sizeof *new, MEM_TYPE_MISC);
2e471eb5
GM
3316 new->next = marker_block;
3317 marker_block = new;
3318 marker_block_index = 0;
7b7990cc 3319 total_free_markers += MARKER_BLOCK_SIZE;
2e471eb5 3320 }
d55c12ed 3321 XSETMISC (val, &marker_block->markers[marker_block_index].m);
6b61353c 3322 marker_block_index++;
7146af97 3323 }
177c0ea7 3324
dafc79fa 3325 MALLOC_UNBLOCK_INPUT;
e2984df0 3326
7b7990cc 3327 --total_free_markers;
2e471eb5
GM
3328 consing_since_gc += sizeof (union Lisp_Misc);
3329 misc_objects_consed++;
84575e67 3330 XMISCANY (val)->type = type;
67ee9f6e 3331 XMISCANY (val)->gcmarkbit = 0;
2e471eb5
GM
3332 return val;
3333}
3334
73ebd38f 3335/* Free a Lisp_Misc object. */
7b7990cc 3336
73ebd38f 3337void
971de7fb 3338free_misc (Lisp_Object misc)
7b7990cc 3339{
84575e67 3340 XMISCANY (misc)->type = Lisp_Misc_Free;
7b7990cc
KS
3341 XMISC (misc)->u_free.chain = marker_free_list;
3342 marker_free_list = XMISC (misc);
0dd6d66d 3343 consing_since_gc -= sizeof (union Lisp_Misc);
7b7990cc
KS
3344 total_free_markers++;
3345}
3346
7b1123d8
PE
3347/* Verify properties of Lisp_Save_Value's representation
3348 that are assumed here and elsewhere. */
3349
3350verify (SAVE_UNUSED == 0);
52a9bcae
PE
3351verify (((SAVE_INTEGER | SAVE_POINTER | SAVE_FUNCPOINTER | SAVE_OBJECT)
3352 >> SAVE_SLOT_BITS)
3353 == 0);
7b1123d8 3354
1b971ac1 3355/* Return a Lisp_Save_Value object with the data saved according to
7b1123d8 3356 DATA_TYPE. DATA_TYPE should be one of SAVE_TYPE_INT_INT, etc. */
1b971ac1
DA
3357
3358Lisp_Object
7b1123d8 3359make_save_value (enum Lisp_Save_Type save_type, ...)
1b971ac1
DA
3360{
3361 va_list ap;
7b1123d8 3362 int i;
1b971ac1
DA
3363 Lisp_Object val = allocate_misc (Lisp_Misc_Save_Value);
3364 struct Lisp_Save_Value *p = XSAVE_VALUE (val);
3365
7b1123d8
PE
3366 eassert (0 < save_type
3367 && (save_type < 1 << (SAVE_TYPE_BITS - 1)
3368 || save_type == SAVE_TYPE_MEMORY));
3369 p->save_type = save_type;
3370 va_start (ap, save_type);
3371 save_type &= ~ (1 << (SAVE_TYPE_BITS - 1));
3372
3373 for (i = 0; save_type; i++, save_type >>= SAVE_SLOT_BITS)
3374 switch (save_type & ((1 << SAVE_SLOT_BITS) - 1))
3375 {
3376 case SAVE_POINTER:
3377 p->data[i].pointer = va_arg (ap, void *);
3378 break;
1b971ac1 3379
52a9bcae
PE
3380 case SAVE_FUNCPOINTER:
3381 p->data[i].funcpointer = va_arg (ap, voidfuncptr);
3382 break;
3383
7b1123d8
PE
3384 case SAVE_INTEGER:
3385 p->data[i].integer = va_arg (ap, ptrdiff_t);
3386 break;
1b971ac1 3387
7b1123d8
PE
3388 case SAVE_OBJECT:
3389 p->data[i].object = va_arg (ap, Lisp_Object);
3390 break;
3391
3392 default:
3393 emacs_abort ();
3394 }
1b971ac1
DA
3395
3396 va_end (ap);
1b971ac1
DA
3397 return val;
3398}
3399
468afbac 3400/* The most common task it to save just one C pointer. */
42172a6b
RS
3401
3402Lisp_Object
468afbac 3403make_save_pointer (void *pointer)
42172a6b 3404{
468afbac
DA
3405 Lisp_Object val = allocate_misc (Lisp_Misc_Save_Value);
3406 struct Lisp_Save_Value *p = XSAVE_VALUE (val);
7b1123d8 3407 p->save_type = SAVE_POINTER;
468afbac 3408 p->data[0].pointer = pointer;
468afbac 3409 return val;
42172a6b
RS
3410}
3411
73ebd38f
DA
3412/* Free a Lisp_Save_Value object. Do not use this function
3413 if SAVE contains pointer other than returned by xmalloc. */
62c2e5ed 3414
963ea40f 3415static void
62c2e5ed
DA
3416free_save_value (Lisp_Object save)
3417{
2b30549c 3418 xfree (XSAVE_POINTER (save, 0));
62c2e5ed
DA
3419 free_misc (save);
3420}
3421
d7a7fda3
DA
3422/* Return a Lisp_Misc_Overlay object with specified START, END and PLIST. */
3423
3424Lisp_Object
3425build_overlay (Lisp_Object start, Lisp_Object end, Lisp_Object plist)
3426{
3427 register Lisp_Object overlay;
3428
3429 overlay = allocate_misc (Lisp_Misc_Overlay);
3430 OVERLAY_START (overlay) = start;
3431 OVERLAY_END (overlay) = end;
c644523b 3432 set_overlay_plist (overlay, plist);
d7a7fda3
DA
3433 XOVERLAY (overlay)->next = NULL;
3434 return overlay;
3435}
3436
a7ca3326 3437DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
a6266d23 3438 doc: /* Return a newly allocated marker which does not point at any place. */)
5842a27b 3439 (void)
2e471eb5 3440{
eeaea515
DA
3441 register Lisp_Object val;
3442 register struct Lisp_Marker *p;
7146af97 3443
eeaea515
DA
3444 val = allocate_misc (Lisp_Misc_Marker);
3445 p = XMARKER (val);
3446 p->buffer = 0;
3447 p->bytepos = 0;
3448 p->charpos = 0;
3449 p->next = NULL;
3450 p->insertion_type = 0;
3451 return val;
7146af97 3452}
2e471eb5 3453
657924ff
DA
3454/* Return a newly allocated marker which points into BUF
3455 at character position CHARPOS and byte position BYTEPOS. */
3456
3457Lisp_Object
3458build_marker (struct buffer *buf, ptrdiff_t charpos, ptrdiff_t bytepos)
3459{
eeaea515
DA
3460 Lisp_Object obj;
3461 struct Lisp_Marker *m;
657924ff
DA
3462
3463 /* No dead buffers here. */
e578f381 3464 eassert (BUFFER_LIVE_P (buf));
657924ff 3465
eeaea515
DA
3466 /* Every character is at least one byte. */
3467 eassert (charpos <= bytepos);
3468
3469 obj = allocate_misc (Lisp_Misc_Marker);
3470 m = XMARKER (obj);
3471 m->buffer = buf;
3472 m->charpos = charpos;
3473 m->bytepos = bytepos;
3474 m->insertion_type = 0;
3475 m->next = BUF_MARKERS (buf);
3476 BUF_MARKERS (buf) = m;
3477 return obj;
657924ff
DA
3478}
3479
2e471eb5
GM
3480/* Put MARKER back on the free list after using it temporarily. */
3481
3482void
971de7fb 3483free_marker (Lisp_Object marker)
2e471eb5 3484{
ef89c2ce 3485 unchain_marker (XMARKER (marker));
7b7990cc 3486 free_misc (marker);
2e471eb5
GM
3487}
3488
c0696668 3489\f
7146af97 3490/* Return a newly created vector or string with specified arguments as
736471d1
RS
3491 elements. If all the arguments are characters that can fit
3492 in a string of events, make a string; otherwise, make a vector.
3493
3494 Any number of arguments, even zero arguments, are allowed. */
7146af97
JB
3495
3496Lisp_Object
971de7fb 3497make_event_array (register int nargs, Lisp_Object *args)
7146af97
JB
3498{
3499 int i;
3500
3501 for (i = 0; i < nargs; i++)
736471d1 3502 /* The things that fit in a string
c9ca4659
RS
3503 are characters that are in 0...127,
3504 after discarding the meta bit and all the bits above it. */
e687453f 3505 if (!INTEGERP (args[i])
c11285dc 3506 || (XINT (args[i]) & ~(-CHAR_META)) >= 0200)
7146af97
JB
3507 return Fvector (nargs, args);
3508
3509 /* Since the loop exited, we know that all the things in it are
3510 characters, so we can make a string. */
3511 {
c13ccad2 3512 Lisp_Object result;
177c0ea7 3513
50aee051 3514 result = Fmake_string (make_number (nargs), make_number (0));
7146af97 3515 for (i = 0; i < nargs; i++)
736471d1 3516 {
46e7e6b0 3517 SSET (result, i, XINT (args[i]));
736471d1
RS
3518 /* Move the meta bit to the right place for a string char. */
3519 if (XINT (args[i]) & CHAR_META)
46e7e6b0 3520 SSET (result, i, SREF (result, i) | 0x80);
736471d1 3521 }
177c0ea7 3522
7146af97
JB
3523 return result;
3524 }
3525}
2e471eb5
GM
3526
3527
7146af97 3528\f
24d8a105
RS
3529/************************************************************************
3530 Memory Full Handling
3531 ************************************************************************/
3532
3533
531b0165
PE
3534/* Called if malloc (NBYTES) returns zero. If NBYTES == SIZE_MAX,
3535 there may have been size_t overflow so that malloc was never
3536 called, or perhaps malloc was invoked successfully but the
3537 resulting pointer had problems fitting into a tagged EMACS_INT. In
3538 either case this counts as memory being full even though malloc did
3539 not fail. */
24d8a105
RS
3540
3541void
531b0165 3542memory_full (size_t nbytes)
24d8a105 3543{
531b0165 3544 /* Do not go into hysterics merely because a large request failed. */
fce31d69 3545 bool enough_free_memory = 0;
2b6148e4 3546 if (SPARE_MEMORY < nbytes)
531b0165 3547 {
66606eea
PE
3548 void *p;
3549
3550 MALLOC_BLOCK_INPUT;
3551 p = malloc (SPARE_MEMORY);
531b0165
PE
3552 if (p)
3553 {
4d09bcf6 3554 free (p);
531b0165
PE
3555 enough_free_memory = 1;
3556 }
66606eea 3557 MALLOC_UNBLOCK_INPUT;
531b0165 3558 }
24d8a105 3559
531b0165
PE
3560 if (! enough_free_memory)
3561 {
3562 int i;
24d8a105 3563
531b0165
PE
3564 Vmemory_full = Qt;
3565
3566 memory_full_cons_threshold = sizeof (struct cons_block);
3567
3568 /* The first time we get here, free the spare memory. */
3569 for (i = 0; i < sizeof (spare_memory) / sizeof (char *); i++)
3570 if (spare_memory[i])
3571 {
3572 if (i == 0)
3573 free (spare_memory[i]);
3574 else if (i >= 1 && i <= 4)
3575 lisp_align_free (spare_memory[i]);
3576 else
3577 lisp_free (spare_memory[i]);
3578 spare_memory[i] = 0;
3579 }
531b0165 3580 }
24d8a105
RS
3581
3582 /* This used to call error, but if we've run out of memory, we could
3583 get infinite recursion trying to build the string. */
9b306d37 3584 xsignal (Qnil, Vmemory_signal_data);
24d8a105
RS
3585}
3586
3587/* If we released our reserve (due to running out of memory),
3588 and we have a fair amount free once again,
3589 try to set aside another reserve in case we run out once more.
3590
3591 This is called when a relocatable block is freed in ralloc.c,
3592 and also directly from this file, in case we're not using ralloc.c. */
3593
3594void
971de7fb 3595refill_memory_reserve (void)
24d8a105
RS
3596{
3597#ifndef SYSTEM_MALLOC
3598 if (spare_memory[0] == 0)
38182d90 3599 spare_memory[0] = malloc (SPARE_MEMORY);
24d8a105 3600 if (spare_memory[1] == 0)
38182d90 3601 spare_memory[1] = lisp_align_malloc (sizeof (struct cons_block),
35aaa1ea 3602 MEM_TYPE_SPARE);
24d8a105 3603 if (spare_memory[2] == 0)
38182d90 3604 spare_memory[2] = lisp_align_malloc (sizeof (struct cons_block),
35aaa1ea 3605 MEM_TYPE_SPARE);
24d8a105 3606 if (spare_memory[3] == 0)
38182d90 3607 spare_memory[3] = lisp_align_malloc (sizeof (struct cons_block),
35aaa1ea 3608 MEM_TYPE_SPARE);
24d8a105 3609 if (spare_memory[4] == 0)
38182d90 3610 spare_memory[4] = lisp_align_malloc (sizeof (struct cons_block),
35aaa1ea 3611 MEM_TYPE_SPARE);
24d8a105 3612 if (spare_memory[5] == 0)
38182d90 3613 spare_memory[5] = lisp_malloc (sizeof (struct string_block),
35aaa1ea 3614 MEM_TYPE_SPARE);
24d8a105 3615 if (spare_memory[6] == 0)
38182d90 3616 spare_memory[6] = lisp_malloc (sizeof (struct string_block),
35aaa1ea 3617 MEM_TYPE_SPARE);
24d8a105
RS
3618 if (spare_memory[0] && spare_memory[1] && spare_memory[5])
3619 Vmemory_full = Qnil;
3620#endif
3621}
3622\f
34400008
GM
3623/************************************************************************
3624 C Stack Marking
3625 ************************************************************************/
3626
13c844fb
GM
3627#if GC_MARK_STACK || defined GC_MALLOC_CHECK
3628
71cf5fa0
GM
3629/* Conservative C stack marking requires a method to identify possibly
3630 live Lisp objects given a pointer value. We do this by keeping
3631 track of blocks of Lisp data that are allocated in a red-black tree
3632 (see also the comment of mem_node which is the type of nodes in
3633 that tree). Function lisp_malloc adds information for an allocated
3634 block to the red-black tree with calls to mem_insert, and function
3635 lisp_free removes it with mem_delete. Functions live_string_p etc
3636 call mem_find to lookup information about a given pointer in the
3637 tree, and use that to determine if the pointer points to a Lisp
3638 object or not. */
3639
34400008
GM
3640/* Initialize this part of alloc.c. */
3641
3642static void
971de7fb 3643mem_init (void)
34400008
GM
3644{
3645 mem_z.left = mem_z.right = MEM_NIL;
3646 mem_z.parent = NULL;
3647 mem_z.color = MEM_BLACK;
3648 mem_z.start = mem_z.end = NULL;
3649 mem_root = MEM_NIL;
3650}
3651
3652
3653/* Value is a pointer to the mem_node containing START. Value is
3654 MEM_NIL if there is no node in the tree containing START. */
3655
b0ab8123 3656static struct mem_node *
971de7fb 3657mem_find (void *start)
34400008
GM
3658{
3659 struct mem_node *p;
3660
ece93c02
GM
3661 if (start < min_heap_address || start > max_heap_address)
3662 return MEM_NIL;
3663
34400008
GM
3664 /* Make the search always successful to speed up the loop below. */
3665 mem_z.start = start;
3666 mem_z.end = (char *) start + 1;
3667
3668 p = mem_root;
3669 while (start < p->start || start >= p->end)
3670 p = start < p->start ? p->left : p->right;
3671 return p;
3672}
3673
3674
3675/* Insert a new node into the tree for a block of memory with start
3676 address START, end address END, and type TYPE. Value is a
3677 pointer to the node that was inserted. */
3678
3679static struct mem_node *
971de7fb 3680mem_insert (void *start, void *end, enum mem_type type)
34400008
GM
3681{
3682 struct mem_node *c, *parent, *x;
3683
add3c3ea 3684 if (min_heap_address == NULL || start < min_heap_address)
ece93c02 3685 min_heap_address = start;
add3c3ea 3686 if (max_heap_address == NULL || end > max_heap_address)
ece93c02
GM
3687 max_heap_address = end;
3688
34400008
GM
3689 /* See where in the tree a node for START belongs. In this
3690 particular application, it shouldn't happen that a node is already
3691 present. For debugging purposes, let's check that. */
3692 c = mem_root;
3693 parent = NULL;
3694
3695#if GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS
177c0ea7 3696
34400008
GM
3697 while (c != MEM_NIL)
3698 {
3699 if (start >= c->start && start < c->end)
1088b922 3700 emacs_abort ();
34400008
GM
3701 parent = c;
3702 c = start < c->start ? c->left : c->right;
3703 }
177c0ea7 3704
34400008 3705#else /* GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS */
177c0ea7 3706
34400008
GM
3707 while (c != MEM_NIL)
3708 {
3709 parent = c;
3710 c = start < c->start ? c->left : c->right;
3711 }
177c0ea7 3712
34400008
GM
3713#endif /* GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS */
3714
3715 /* Create a new node. */
877935b1 3716#ifdef GC_MALLOC_CHECK
0caaedb1 3717 x = malloc (sizeof *x);
877935b1 3718 if (x == NULL)
1088b922 3719 emacs_abort ();
877935b1 3720#else
23f86fce 3721 x = xmalloc (sizeof *x);
877935b1 3722#endif
34400008
GM
3723 x->start = start;
3724 x->end = end;
3725 x->type = type;
3726 x->parent = parent;
3727 x->left = x->right = MEM_NIL;
3728 x->color = MEM_RED;
3729
3730 /* Insert it as child of PARENT or install it as root. */
3731 if (parent)
3732 {
3733 if (start < parent->start)
3734 parent->left = x;
3735 else
3736 parent->right = x;
3737 }
177c0ea7 3738 else
34400008
GM
3739 mem_root = x;
3740
3741 /* Re-establish red-black tree properties. */
3742 mem_insert_fixup (x);
877935b1 3743
34400008
GM
3744 return x;
3745}
3746
3747
3748/* Re-establish the red-black properties of the tree, and thereby
3749 balance the tree, after node X has been inserted; X is always red. */
3750
3751static void
971de7fb 3752mem_insert_fixup (struct mem_node *x)
34400008
GM
3753{
3754 while (x != mem_root && x->parent->color == MEM_RED)
3755 {
3756 /* X is red and its parent is red. This is a violation of
3757 red-black tree property #3. */
177c0ea7 3758
34400008
GM
3759 if (x->parent == x->parent->parent->left)
3760 {
3761 /* We're on the left side of our grandparent, and Y is our
3762 "uncle". */
3763 struct mem_node *y = x->parent->parent->right;
177c0ea7 3764
34400008
GM
3765 if (y->color == MEM_RED)
3766 {
3767 /* Uncle and parent are red but should be black because
3768 X is red. Change the colors accordingly and proceed
3769 with the grandparent. */
3770 x->parent->color = MEM_BLACK;
3771 y->color = MEM_BLACK;
3772 x->parent->parent->color = MEM_RED;
3773 x = x->parent->parent;
3774 }
3775 else
3776 {
3777 /* Parent and uncle have different colors; parent is
3778 red, uncle is black. */
3779 if (x == x->parent->right)
3780 {
3781 x = x->parent;
3782 mem_rotate_left (x);
3783 }
3784
3785 x->parent->color = MEM_BLACK;
3786 x->parent->parent->color = MEM_RED;
3787 mem_rotate_right (x->parent->parent);
3788 }
3789 }
3790 else
3791 {
3792 /* This is the symmetrical case of above. */
3793 struct mem_node *y = x->parent->parent->left;
177c0ea7 3794
34400008
GM
3795 if (y->color == MEM_RED)
3796 {
3797 x->parent->color = MEM_BLACK;
3798 y->color = MEM_BLACK;
3799 x->parent->parent->color = MEM_RED;
3800 x = x->parent->parent;
3801 }
3802 else
3803 {
3804 if (x == x->parent->left)
3805 {
3806 x = x->parent;
3807 mem_rotate_right (x);
3808 }
177c0ea7 3809
34400008
GM
3810 x->parent->color = MEM_BLACK;
3811 x->parent->parent->color = MEM_RED;
3812 mem_rotate_left (x->parent->parent);
3813 }
3814 }
3815 }
3816
3817 /* The root may have been changed to red due to the algorithm. Set
3818 it to black so that property #5 is satisfied. */
3819 mem_root->color = MEM_BLACK;
3820}
3821
3822
177c0ea7
JB
3823/* (x) (y)
3824 / \ / \
34400008
GM
3825 a (y) ===> (x) c
3826 / \ / \
3827 b c a b */
3828
3829static void
971de7fb 3830mem_rotate_left (struct mem_node *x)
34400008
GM
3831{
3832 struct mem_node *y;
3833
3834 /* Turn y's left sub-tree into x's right sub-tree. */
3835 y = x->right;
3836 x->right = y->left;
3837 if (y->left != MEM_NIL)
3838 y->left->parent = x;
3839
3840 /* Y's parent was x's parent. */
3841 if (y != MEM_NIL)
3842 y->parent = x->parent;
3843
3844 /* Get the parent to point to y instead of x. */
3845 if (x->parent)
3846 {
3847 if (x == x->parent->left)
3848 x->parent->left = y;
3849 else
3850 x->parent->right = y;
3851 }
3852 else
3853 mem_root = y;
3854
3855 /* Put x on y's left. */
3856 y->left = x;
3857 if (x != MEM_NIL)
3858 x->parent = y;
3859}
3860
3861
177c0ea7
JB
3862/* (x) (Y)
3863 / \ / \
3864 (y) c ===> a (x)
3865 / \ / \
34400008
GM
3866 a b b c */
3867
3868static void
971de7fb 3869mem_rotate_right (struct mem_node *x)
34400008
GM
3870{
3871 struct mem_node *y = x->left;
3872
3873 x->left = y->right;
3874 if (y->right != MEM_NIL)
3875 y->right->parent = x;
177c0ea7 3876
34400008
GM
3877 if (y != MEM_NIL)
3878 y->parent = x->parent;
3879 if (x->parent)
3880 {
3881 if (x == x->parent->right)
3882 x->parent->right = y;
3883 else
3884 x->parent->left = y;
3885 }
3886 else
3887 mem_root = y;
177c0ea7 3888
34400008
GM
3889 y->right = x;
3890 if (x != MEM_NIL)
3891 x->parent = y;
3892}
3893
3894
3895/* Delete node Z from the tree. If Z is null or MEM_NIL, do nothing. */
3896
3897static void
971de7fb 3898mem_delete (struct mem_node *z)
34400008
GM
3899{
3900 struct mem_node *x, *y;
3901
3902 if (!z || z == MEM_NIL)
3903 return;
3904
3905 if (z->left == MEM_NIL || z->right == MEM_NIL)
3906 y = z;
3907 else
3908 {
3909 y = z->right;
3910 while (y->left != MEM_NIL)
3911 y = y->left;
3912 }
3913
3914 if (y->left != MEM_NIL)
3915 x = y->left;
3916 else
3917 x = y->right;
3918
3919 x->parent = y->parent;
3920 if (y->parent)
3921 {
3922 if (y == y->parent->left)
3923 y->parent->left = x;
3924 else
3925 y->parent->right = x;
3926 }
3927 else
3928 mem_root = x;
3929
3930 if (y != z)
3931 {
3932 z->start = y->start;
3933 z->end = y->end;
3934 z->type = y->type;
3935 }
177c0ea7 3936
34400008
GM
3937 if (y->color == MEM_BLACK)
3938 mem_delete_fixup (x);
877935b1
GM
3939
3940#ifdef GC_MALLOC_CHECK
0caaedb1 3941 free (y);
877935b1 3942#else
34400008 3943 xfree (y);
877935b1 3944#endif
34400008
GM
3945}
3946
3947
3948/* Re-establish the red-black properties of the tree, after a
3949 deletion. */
3950
3951static void
971de7fb 3952mem_delete_fixup (struct mem_node *x)
34400008
GM
3953{
3954 while (x != mem_root && x->color == MEM_BLACK)
3955 {
3956 if (x == x->parent->left)
3957 {
3958 struct mem_node *w = x->parent->right;
177c0ea7 3959
34400008
GM
3960 if (w->color == MEM_RED)
3961 {
3962 w->color = MEM_BLACK;
3963 x->parent->color = MEM_RED;
3964 mem_rotate_left (x->parent);
3965 w = x->parent->right;
3966 }
177c0ea7 3967
34400008
GM
3968 if (w->left->color == MEM_BLACK && w->right->color == MEM_BLACK)
3969 {
3970 w->color = MEM_RED;
3971 x = x->parent;
3972 }
3973 else
3974 {
3975 if (w->right->color == MEM_BLACK)
3976 {
3977 w->left->color = MEM_BLACK;
3978 w->color = MEM_RED;
3979 mem_rotate_right (w);
3980 w = x->parent->right;
3981 }
3982 w->color = x->parent->color;
3983 x->parent->color = MEM_BLACK;
3984 w->right->color = MEM_BLACK;
3985 mem_rotate_left (x->parent);
3986 x = mem_root;
3987 }
3988 }
3989 else
3990 {
3991 struct mem_node *w = x->parent->left;
177c0ea7 3992
34400008
GM
3993 if (w->color == MEM_RED)
3994 {
3995 w->color = MEM_BLACK;
3996 x->parent->color = MEM_RED;
3997 mem_rotate_right (x->parent);
3998 w = x->parent->left;
3999 }
177c0ea7 4000
34400008
GM
4001 if (w->right->color == MEM_BLACK && w->left->color == MEM_BLACK)
4002 {
4003 w->color = MEM_RED;
4004 x = x->parent;
4005 }
4006 else
4007 {
4008 if (w->left->color == MEM_BLACK)
4009 {
4010 w->right->color = MEM_BLACK;
4011 w->color = MEM_RED;
4012 mem_rotate_left (w);
4013 w = x->parent->left;
4014 }
177c0ea7 4015
34400008
GM
4016 w->color = x->parent->color;
4017 x->parent->color = MEM_BLACK;
4018 w->left->color = MEM_BLACK;
4019 mem_rotate_right (x->parent);
4020 x = mem_root;
4021 }
4022 }
4023 }
177c0ea7 4024
34400008
GM
4025 x->color = MEM_BLACK;
4026}
4027
4028
4029/* Value is non-zero if P is a pointer to a live Lisp string on
4030 the heap. M is a pointer to the mem_block for P. */
4031
b0ab8123 4032static bool
971de7fb 4033live_string_p (struct mem_node *m, void *p)
34400008
GM
4034{
4035 if (m->type == MEM_TYPE_STRING)
4036 {
4037 struct string_block *b = (struct string_block *) m->start;
14162469 4038 ptrdiff_t offset = (char *) p - (char *) &b->strings[0];
34400008
GM
4039
4040 /* P must point to the start of a Lisp_String structure, and it
4041 must not be on the free-list. */
176bc847
GM
4042 return (offset >= 0
4043 && offset % sizeof b->strings[0] == 0
6b61353c 4044 && offset < (STRING_BLOCK_SIZE * sizeof b->strings[0])
34400008
GM
4045 && ((struct Lisp_String *) p)->data != NULL);
4046 }
4047 else
4048 return 0;
4049}
4050
4051
4052/* Value is non-zero if P is a pointer to a live Lisp cons on
4053 the heap. M is a pointer to the mem_block for P. */
4054
b0ab8123 4055static bool
971de7fb 4056live_cons_p (struct mem_node *m, void *p)
34400008
GM
4057{
4058 if (m->type == MEM_TYPE_CONS)
4059 {
4060 struct cons_block *b = (struct cons_block *) m->start;
14162469 4061 ptrdiff_t offset = (char *) p - (char *) &b->conses[0];
34400008
GM
4062
4063 /* P must point to the start of a Lisp_Cons, not be
4064 one of the unused cells in the current cons block,
4065 and not be on the free-list. */
176bc847
GM
4066 return (offset >= 0
4067 && offset % sizeof b->conses[0] == 0
6b61353c 4068 && offset < (CONS_BLOCK_SIZE * sizeof b->conses[0])
34400008
GM
4069 && (b != cons_block
4070 || offset / sizeof b->conses[0] < cons_block_index)
c644523b 4071 && !EQ (((struct Lisp_Cons *) p)->car, Vdead));
34400008
GM
4072 }
4073 else
4074 return 0;
4075}
4076
4077
4078/* Value is non-zero if P is a pointer to a live Lisp symbol on
4079 the heap. M is a pointer to the mem_block for P. */
4080
b0ab8123 4081static bool
971de7fb 4082live_symbol_p (struct mem_node *m, void *p)
34400008
GM
4083{
4084 if (m->type == MEM_TYPE_SYMBOL)
4085 {
4086 struct symbol_block *b = (struct symbol_block *) m->start;
14162469 4087 ptrdiff_t offset = (char *) p - (char *) &b->symbols[0];
177c0ea7 4088
34400008
GM
4089 /* P must point to the start of a Lisp_Symbol, not be
4090 one of the unused cells in the current symbol block,
4091 and not be on the free-list. */
176bc847
GM
4092 return (offset >= 0
4093 && offset % sizeof b->symbols[0] == 0
6b61353c 4094 && offset < (SYMBOL_BLOCK_SIZE * sizeof b->symbols[0])
34400008
GM
4095 && (b != symbol_block
4096 || offset / sizeof b->symbols[0] < symbol_block_index)
c644523b 4097 && !EQ (((struct Lisp_Symbol *)p)->function, Vdead));
34400008
GM
4098 }
4099 else
4100 return 0;
4101}
4102
4103
4104/* Value is non-zero if P is a pointer to a live Lisp float on
4105 the heap. M is a pointer to the mem_block for P. */
4106
b0ab8123 4107static bool
971de7fb 4108live_float_p (struct mem_node *m, void *p)
34400008
GM
4109{
4110 if (m->type == MEM_TYPE_FLOAT)
4111 {
4112 struct float_block *b = (struct float_block *) m->start;
14162469 4113 ptrdiff_t offset = (char *) p - (char *) &b->floats[0];
177c0ea7 4114
ab6780cd
SM
4115 /* P must point to the start of a Lisp_Float and not be
4116 one of the unused cells in the current float block. */
176bc847
GM
4117 return (offset >= 0
4118 && offset % sizeof b->floats[0] == 0
6b61353c 4119 && offset < (FLOAT_BLOCK_SIZE * sizeof b->floats[0])
34400008 4120 && (b != float_block
ab6780cd 4121 || offset / sizeof b->floats[0] < float_block_index));
34400008
GM
4122 }
4123 else
4124 return 0;
4125}
4126
4127
4128/* Value is non-zero if P is a pointer to a live Lisp Misc on
4129 the heap. M is a pointer to the mem_block for P. */
4130
b0ab8123 4131static bool
971de7fb 4132live_misc_p (struct mem_node *m, void *p)
34400008
GM
4133{
4134 if (m->type == MEM_TYPE_MISC)
4135 {
4136 struct marker_block *b = (struct marker_block *) m->start;
14162469 4137 ptrdiff_t offset = (char *) p - (char *) &b->markers[0];
177c0ea7 4138
34400008
GM
4139 /* P must point to the start of a Lisp_Misc, not be
4140 one of the unused cells in the current misc block,
4141 and not be on the free-list. */
176bc847
GM
4142 return (offset >= 0
4143 && offset % sizeof b->markers[0] == 0
6b61353c 4144 && offset < (MARKER_BLOCK_SIZE * sizeof b->markers[0])
34400008
GM
4145 && (b != marker_block
4146 || offset / sizeof b->markers[0] < marker_block_index)
d314756e 4147 && ((union Lisp_Misc *) p)->u_any.type != Lisp_Misc_Free);
34400008
GM
4148 }
4149 else
4150 return 0;
4151}
4152
4153
4154/* Value is non-zero if P is a pointer to a live vector-like object.
4155 M is a pointer to the mem_block for P. */
4156
b0ab8123 4157static bool
971de7fb 4158live_vector_p (struct mem_node *m, void *p)
34400008 4159{
f3372c87
DA
4160 if (m->type == MEM_TYPE_VECTOR_BLOCK)
4161 {
4162 /* This memory node corresponds to a vector block. */
4163 struct vector_block *block = (struct vector_block *) m->start;
4164 struct Lisp_Vector *vector = (struct Lisp_Vector *) block->data;
4165
4166 /* P is in the block's allocation range. Scan the block
4167 up to P and see whether P points to the start of some
4168 vector which is not on a free list. FIXME: check whether
4169 some allocation patterns (probably a lot of short vectors)
4170 may cause a substantial overhead of this loop. */
4171 while (VECTOR_IN_BLOCK (vector, block)
4172 && vector <= (struct Lisp_Vector *) p)
4173 {
914adc42 4174 if (!PSEUDOVECTOR_TYPEP (&vector->header, PVEC_FREE) && vector == p)
f3372c87
DA
4175 return 1;
4176 else
914adc42 4177 vector = ADVANCE (vector, vector_nbytes (vector));
f3372c87
DA
4178 }
4179 }
914adc42
DA
4180 else if (m->type == MEM_TYPE_VECTORLIKE
4181 && (char *) p == ((char *) m->start
4182 + offsetof (struct large_vector, v)))
f3372c87
DA
4183 /* This memory node corresponds to a large vector. */
4184 return 1;
4185 return 0;
34400008
GM
4186}
4187
4188
2336fe58 4189/* Value is non-zero if P is a pointer to a live buffer. M is a
34400008
GM
4190 pointer to the mem_block for P. */
4191
b0ab8123 4192static bool
971de7fb 4193live_buffer_p (struct mem_node *m, void *p)
34400008
GM
4194{
4195 /* P must point to the start of the block, and the buffer
4196 must not have been killed. */
4197 return (m->type == MEM_TYPE_BUFFER
4198 && p == m->start
e34f7f79 4199 && !NILP (((struct buffer *) p)->INTERNAL_FIELD (name)));
34400008
GM
4200}
4201
13c844fb
GM
4202#endif /* GC_MARK_STACK || defined GC_MALLOC_CHECK */
4203
4204#if GC_MARK_STACK
4205
34400008
GM
4206#if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4207
4208/* Array of objects that are kept alive because the C stack contains
4209 a pattern that looks like a reference to them . */
4210
4211#define MAX_ZOMBIES 10
4212static Lisp_Object zombies[MAX_ZOMBIES];
4213
4214/* Number of zombie objects. */
4215
211a0b2a 4216static EMACS_INT nzombies;
34400008
GM
4217
4218/* Number of garbage collections. */
4219
211a0b2a 4220static EMACS_INT ngcs;
34400008
GM
4221
4222/* Average percentage of zombies per collection. */
4223
4224static double avg_zombies;
4225
4226/* Max. number of live and zombie objects. */
4227
211a0b2a 4228static EMACS_INT max_live, max_zombies;
34400008
GM
4229
4230/* Average number of live objects per GC. */
4231
4232static double avg_live;
4233
a7ca3326 4234DEFUN ("gc-status", Fgc_status, Sgc_status, 0, 0, "",
7ee72033 4235 doc: /* Show information about live and zombie objects. */)
5842a27b 4236 (void)
34400008 4237{
83fc9c63 4238 Lisp_Object args[8], zombie_list = Qnil;
211a0b2a 4239 EMACS_INT i;
6e4b3fbe 4240 for (i = 0; i < min (MAX_ZOMBIES, nzombies); i++)
83fc9c63
DL
4241 zombie_list = Fcons (zombies[i], zombie_list);
4242 args[0] = build_string ("%d GCs, avg live/zombies = %.2f/%.2f (%f%%), max %d/%d\nzombies: %S");
34400008
GM
4243 args[1] = make_number (ngcs);
4244 args[2] = make_float (avg_live);
4245 args[3] = make_float (avg_zombies);
4246 args[4] = make_float (avg_zombies / avg_live / 100);
4247 args[5] = make_number (max_live);
4248 args[6] = make_number (max_zombies);
83fc9c63
DL
4249 args[7] = zombie_list;
4250 return Fmessage (8, args);
34400008
GM
4251}
4252
4253#endif /* GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES */
4254
4255
182ff242
GM
4256/* Mark OBJ if we can prove it's a Lisp_Object. */
4257
b0ab8123 4258static void
971de7fb 4259mark_maybe_object (Lisp_Object obj)
182ff242 4260{
b609f591
YM
4261 void *po;
4262 struct mem_node *m;
4263
4264 if (INTEGERP (obj))
4265 return;
4266
4267 po = (void *) XPNTR (obj);
4268 m = mem_find (po);
177c0ea7 4269
182ff242
GM
4270 if (m != MEM_NIL)
4271 {
fce31d69 4272 bool mark_p = 0;
182ff242 4273
8e50cc2d 4274 switch (XTYPE (obj))
182ff242
GM
4275 {
4276 case Lisp_String:
4277 mark_p = (live_string_p (m, po)
4278 && !STRING_MARKED_P ((struct Lisp_String *) po));
4279 break;
4280
4281 case Lisp_Cons:
08b7c2cb 4282 mark_p = (live_cons_p (m, po) && !CONS_MARKED_P (XCONS (obj)));
182ff242
GM
4283 break;
4284
4285 case Lisp_Symbol:
2336fe58 4286 mark_p = (live_symbol_p (m, po) && !XSYMBOL (obj)->gcmarkbit);
182ff242
GM
4287 break;
4288
4289 case Lisp_Float:
ab6780cd 4290 mark_p = (live_float_p (m, po) && !FLOAT_MARKED_P (XFLOAT (obj)));
182ff242
GM
4291 break;
4292
4293 case Lisp_Vectorlike:
8e50cc2d 4294 /* Note: can't check BUFFERP before we know it's a
182ff242
GM
4295 buffer because checking that dereferences the pointer
4296 PO which might point anywhere. */
4297 if (live_vector_p (m, po))
8e50cc2d 4298 mark_p = !SUBRP (obj) && !VECTOR_MARKED_P (XVECTOR (obj));
182ff242 4299 else if (live_buffer_p (m, po))
8e50cc2d 4300 mark_p = BUFFERP (obj) && !VECTOR_MARKED_P (XBUFFER (obj));
182ff242
GM
4301 break;
4302
4303 case Lisp_Misc:
67ee9f6e 4304 mark_p = (live_misc_p (m, po) && !XMISCANY (obj)->gcmarkbit);
182ff242 4305 break;
6bbd7a29 4306
2de9f71c 4307 default:
6bbd7a29 4308 break;
182ff242
GM
4309 }
4310
4311 if (mark_p)
4312 {
4313#if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4314 if (nzombies < MAX_ZOMBIES)
83fc9c63 4315 zombies[nzombies] = obj;
182ff242
GM
4316 ++nzombies;
4317#endif
49723c04 4318 mark_object (obj);
182ff242
GM
4319 }
4320 }
4321}
ece93c02
GM
4322
4323
4324/* If P points to Lisp data, mark that as live if it isn't already
4325 marked. */
4326
b0ab8123 4327static void
971de7fb 4328mark_maybe_pointer (void *p)
ece93c02
GM
4329{
4330 struct mem_node *m;
4331
bfe3e0a2 4332 /* Quickly rule out some values which can't point to Lisp data.
2b90362b 4333 USE_LSB_TAG needs Lisp data to be aligned on multiples of GCALIGNMENT.
bfe3e0a2 4334 Otherwise, assume that Lisp data is aligned on even addresses. */
2b90362b 4335 if ((intptr_t) p % (USE_LSB_TAG ? GCALIGNMENT : 2))
ece93c02 4336 return;
177c0ea7 4337
ece93c02
GM
4338 m = mem_find (p);
4339 if (m != MEM_NIL)
4340 {
4341 Lisp_Object obj = Qnil;
177c0ea7 4342
ece93c02
GM
4343 switch (m->type)
4344 {
4345 case MEM_TYPE_NON_LISP:
5474c384 4346 case MEM_TYPE_SPARE:
2fe50224 4347 /* Nothing to do; not a pointer to Lisp memory. */
ece93c02 4348 break;
177c0ea7 4349
ece93c02 4350 case MEM_TYPE_BUFFER:
5e617bc2 4351 if (live_buffer_p (m, p) && !VECTOR_MARKED_P ((struct buffer *)p))
ece93c02
GM
4352 XSETVECTOR (obj, p);
4353 break;
177c0ea7 4354
ece93c02 4355 case MEM_TYPE_CONS:
08b7c2cb 4356 if (live_cons_p (m, p) && !CONS_MARKED_P ((struct Lisp_Cons *) p))
ece93c02
GM
4357 XSETCONS (obj, p);
4358 break;
177c0ea7 4359
ece93c02
GM
4360 case MEM_TYPE_STRING:
4361 if (live_string_p (m, p)
4362 && !STRING_MARKED_P ((struct Lisp_String *) p))
4363 XSETSTRING (obj, p);
4364 break;
4365
4366 case MEM_TYPE_MISC:
2336fe58
SM
4367 if (live_misc_p (m, p) && !((struct Lisp_Free *) p)->gcmarkbit)
4368 XSETMISC (obj, p);
ece93c02 4369 break;
177c0ea7 4370
ece93c02 4371 case MEM_TYPE_SYMBOL:
2336fe58 4372 if (live_symbol_p (m, p) && !((struct Lisp_Symbol *) p)->gcmarkbit)
ece93c02
GM
4373 XSETSYMBOL (obj, p);
4374 break;
177c0ea7 4375
ece93c02 4376 case MEM_TYPE_FLOAT:
ab6780cd 4377 if (live_float_p (m, p) && !FLOAT_MARKED_P (p))
ece93c02
GM
4378 XSETFLOAT (obj, p);
4379 break;
177c0ea7 4380
9c545a55 4381 case MEM_TYPE_VECTORLIKE:
f3372c87 4382 case MEM_TYPE_VECTOR_BLOCK:
ece93c02
GM
4383 if (live_vector_p (m, p))
4384 {
4385 Lisp_Object tem;
4386 XSETVECTOR (tem, p);
8e50cc2d 4387 if (!SUBRP (tem) && !VECTOR_MARKED_P (XVECTOR (tem)))
ece93c02
GM
4388 obj = tem;
4389 }
4390 break;
4391
4392 default:
1088b922 4393 emacs_abort ();
ece93c02
GM
4394 }
4395
8e50cc2d 4396 if (!NILP (obj))
49723c04 4397 mark_object (obj);
ece93c02
GM
4398 }
4399}
4400
4401
e32a5799 4402/* Alignment of pointer values. Use alignof, as it sometimes returns
e3fb2efb
PE
4403 a smaller alignment than GCC's __alignof__ and mark_memory might
4404 miss objects if __alignof__ were used. */
e32a5799 4405#define GC_POINTER_ALIGNMENT alignof (void *)
3164aeac 4406
e3fb2efb
PE
4407/* Define POINTERS_MIGHT_HIDE_IN_OBJECTS to 1 if marking via C pointers does
4408 not suffice, which is the typical case. A host where a Lisp_Object is
4409 wider than a pointer might allocate a Lisp_Object in non-adjacent halves.
4410 If USE_LSB_TAG, the bottom half is not a valid pointer, but it should
4411 suffice to widen it to to a Lisp_Object and check it that way. */
bfe3e0a2
PE
4412#if USE_LSB_TAG || VAL_MAX < UINTPTR_MAX
4413# if !USE_LSB_TAG && VAL_MAX < UINTPTR_MAX >> GCTYPEBITS
e3fb2efb
PE
4414 /* If tag bits straddle pointer-word boundaries, neither mark_maybe_pointer
4415 nor mark_maybe_object can follow the pointers. This should not occur on
4416 any practical porting target. */
4417# error "MSB type bits straddle pointer-word boundaries"
4418# endif
4419 /* Marking via C pointers does not suffice, because Lisp_Objects contain
4420 pointer words that hold pointers ORed with type bits. */
4421# define POINTERS_MIGHT_HIDE_IN_OBJECTS 1
4422#else
4423 /* Marking via C pointers suffices, because Lisp_Objects contain pointer
4424 words that hold unmodified pointers. */
4425# define POINTERS_MIGHT_HIDE_IN_OBJECTS 0
4426#endif
4427
55a314a5
YM
4428/* Mark Lisp objects referenced from the address range START+OFFSET..END
4429 or END+OFFSET..START. */
34400008 4430
177c0ea7 4431static void
3164aeac 4432mark_memory (void *start, void *end)
b41253a3
JW
4433#if defined (__clang__) && defined (__has_feature)
4434#if __has_feature(address_sanitizer)
ed6b3510
JW
4435 /* Do not allow -faddress-sanitizer to check this function, since it
4436 crosses the function stack boundary, and thus would yield many
4437 false positives. */
4438 __attribute__((no_address_safety_analysis))
4439#endif
b41253a3 4440#endif
34400008 4441{
ece93c02 4442 void **pp;
3164aeac 4443 int i;
34400008
GM
4444
4445#if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4446 nzombies = 0;
4447#endif
4448
4449 /* Make START the pointer to the start of the memory region,
4450 if it isn't already. */
4451 if (end < start)
4452 {
4453 void *tem = start;
4454 start = end;
4455 end = tem;
4456 }
ece93c02 4457
ece93c02
GM
4458 /* Mark Lisp data pointed to. This is necessary because, in some
4459 situations, the C compiler optimizes Lisp objects away, so that
4460 only a pointer to them remains. Example:
4461
4462 DEFUN ("testme", Ftestme, Stestme, 0, 0, 0, "")
7ee72033 4463 ()
ece93c02
GM
4464 {
4465 Lisp_Object obj = build_string ("test");
4466 struct Lisp_String *s = XSTRING (obj);
4467 Fgarbage_collect ();
4468 fprintf (stderr, "test `%s'\n", s->data);
4469 return Qnil;
4470 }
4471
4472 Here, `obj' isn't really used, and the compiler optimizes it
4473 away. The only reference to the life string is through the
4474 pointer `s'. */
177c0ea7 4475
3164aeac
PE
4476 for (pp = start; (void *) pp < end; pp++)
4477 for (i = 0; i < sizeof *pp; i += GC_POINTER_ALIGNMENT)
27f3c637 4478 {
e3fb2efb
PE
4479 void *p = *(void **) ((char *) pp + i);
4480 mark_maybe_pointer (p);
4481 if (POINTERS_MIGHT_HIDE_IN_OBJECTS)
646b5f55 4482 mark_maybe_object (XIL ((intptr_t) p));
27f3c637 4483 }
182ff242
GM
4484}
4485
182ff242
GM
4486#if !defined GC_SAVE_REGISTERS_ON_STACK && !defined GC_SETJMP_WORKS
4487
fce31d69
PE
4488static bool setjmp_tested_p;
4489static int longjmps_done;
182ff242
GM
4490
4491#define SETJMP_WILL_LIKELY_WORK "\
4492\n\
4493Emacs garbage collector has been changed to use conservative stack\n\
4494marking. Emacs has determined that the method it uses to do the\n\
4495marking will likely work on your system, but this isn't sure.\n\
4496\n\
4497If you are a system-programmer, or can get the help of a local wizard\n\
4498who is, please take a look at the function mark_stack in alloc.c, and\n\
4499verify that the methods used are appropriate for your system.\n\
4500\n\
d191623b 4501Please mail the result to <emacs-devel@gnu.org>.\n\
182ff242
GM
4502"
4503
4504#define SETJMP_WILL_NOT_WORK "\
4505\n\
4506Emacs garbage collector has been changed to use conservative stack\n\
4507marking. Emacs has determined that the default method it uses to do the\n\
4508marking will not work on your system. We will need a system-dependent\n\
4509solution for your system.\n\
4510\n\
4511Please take a look at the function mark_stack in alloc.c, and\n\
4512try to find a way to make it work on your system.\n\
30f637f8
DL
4513\n\
4514Note that you may get false negatives, depending on the compiler.\n\
4515In particular, you need to use -O with GCC for this test.\n\
4516\n\
d191623b 4517Please mail the result to <emacs-devel@gnu.org>.\n\
182ff242
GM
4518"
4519
4520
4521/* Perform a quick check if it looks like setjmp saves registers in a
4522 jmp_buf. Print a message to stderr saying so. When this test
4523 succeeds, this is _not_ a proof that setjmp is sufficient for
4524 conservative stack marking. Only the sources or a disassembly
4525 can prove that. */
4526
4527static void
2018939f 4528test_setjmp (void)
182ff242
GM
4529{
4530 char buf[10];
4531 register int x;
0328b6de 4532 sys_jmp_buf jbuf;
182ff242
GM
4533
4534 /* Arrange for X to be put in a register. */
4535 sprintf (buf, "1");
4536 x = strlen (buf);
4537 x = 2 * x - 1;
4538
0328b6de 4539 sys_setjmp (jbuf);
182ff242 4540 if (longjmps_done == 1)
34400008 4541 {
182ff242 4542 /* Came here after the longjmp at the end of the function.
34400008 4543
182ff242
GM
4544 If x == 1, the longjmp has restored the register to its
4545 value before the setjmp, and we can hope that setjmp
4546 saves all such registers in the jmp_buf, although that
4547 isn't sure.
34400008 4548
182ff242
GM
4549 For other values of X, either something really strange is
4550 taking place, or the setjmp just didn't save the register. */
4551
4552 if (x == 1)
4553 fprintf (stderr, SETJMP_WILL_LIKELY_WORK);
4554 else
4555 {
4556 fprintf (stderr, SETJMP_WILL_NOT_WORK);
4557 exit (1);
34400008
GM
4558 }
4559 }
182ff242
GM
4560
4561 ++longjmps_done;
4562 x = 2;
4563 if (longjmps_done == 1)
0328b6de 4564 sys_longjmp (jbuf, 1);
34400008
GM
4565}
4566
182ff242
GM
4567#endif /* not GC_SAVE_REGISTERS_ON_STACK && not GC_SETJMP_WORKS */
4568
34400008
GM
4569
4570#if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
4571
4572/* Abort if anything GCPRO'd doesn't survive the GC. */
4573
4574static void
2018939f 4575check_gcpros (void)
34400008
GM
4576{
4577 struct gcpro *p;
f66c7cf8 4578 ptrdiff_t i;
34400008
GM
4579
4580 for (p = gcprolist; p; p = p->next)
4581 for (i = 0; i < p->nvars; ++i)
4582 if (!survives_gc_p (p->var[i]))
92cc28b2
SM
4583 /* FIXME: It's not necessarily a bug. It might just be that the
4584 GCPRO is unnecessary or should release the object sooner. */
1088b922 4585 emacs_abort ();
34400008
GM
4586}
4587
4588#elif GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4589
4590static void
2018939f 4591dump_zombies (void)
34400008
GM
4592{
4593 int i;
4594
6e4b3fbe 4595 fprintf (stderr, "\nZombies kept alive = %"pI"d:\n", nzombies);
34400008
GM
4596 for (i = 0; i < min (MAX_ZOMBIES, nzombies); ++i)
4597 {
4598 fprintf (stderr, " %d = ", i);
4599 debug_print (zombies[i]);
4600 }
4601}
4602
4603#endif /* GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES */
4604
4605
182ff242
GM
4606/* Mark live Lisp objects on the C stack.
4607
4608 There are several system-dependent problems to consider when
4609 porting this to new architectures:
4610
4611 Processor Registers
4612
4613 We have to mark Lisp objects in CPU registers that can hold local
4614 variables or are used to pass parameters.
4615
4616 If GC_SAVE_REGISTERS_ON_STACK is defined, it should expand to
4617 something that either saves relevant registers on the stack, or
4618 calls mark_maybe_object passing it each register's contents.
4619
4620 If GC_SAVE_REGISTERS_ON_STACK is not defined, the current
4621 implementation assumes that calling setjmp saves registers we need
4622 to see in a jmp_buf which itself lies on the stack. This doesn't
4623 have to be true! It must be verified for each system, possibly
4624 by taking a look at the source code of setjmp.
4625
2018939f
AS
4626 If __builtin_unwind_init is available (defined by GCC >= 2.8) we
4627 can use it as a machine independent method to store all registers
4628 to the stack. In this case the macros described in the previous
4629 two paragraphs are not used.
4630
182ff242
GM
4631 Stack Layout
4632
4633 Architectures differ in the way their processor stack is organized.
4634 For example, the stack might look like this
4635
4636 +----------------+
4637 | Lisp_Object | size = 4
4638 +----------------+
4639 | something else | size = 2
4640 +----------------+
4641 | Lisp_Object | size = 4
4642 +----------------+
4643 | ... |
4644
4645 In such a case, not every Lisp_Object will be aligned equally. To
4646 find all Lisp_Object on the stack it won't be sufficient to walk
4647 the stack in steps of 4 bytes. Instead, two passes will be
4648 necessary, one starting at the start of the stack, and a second
4649 pass starting at the start of the stack + 2. Likewise, if the
4650 minimal alignment of Lisp_Objects on the stack is 1, four passes
4651 would be necessary, each one starting with one byte more offset
c9af454e 4652 from the stack start. */
34400008
GM
4653
4654static void
971de7fb 4655mark_stack (void)
34400008 4656{
34400008
GM
4657 void *end;
4658
2018939f
AS
4659#ifdef HAVE___BUILTIN_UNWIND_INIT
4660 /* Force callee-saved registers and register windows onto the stack.
4661 This is the preferred method if available, obviating the need for
4662 machine dependent methods. */
4663 __builtin_unwind_init ();
4664 end = &end;
4665#else /* not HAVE___BUILTIN_UNWIND_INIT */
dff45157
PE
4666#ifndef GC_SAVE_REGISTERS_ON_STACK
4667 /* jmp_buf may not be aligned enough on darwin-ppc64 */
4668 union aligned_jmpbuf {
4669 Lisp_Object o;
0328b6de 4670 sys_jmp_buf j;
dff45157 4671 } j;
fce31d69 4672 volatile bool stack_grows_down_p = (char *) &j > (char *) stack_base;
dff45157 4673#endif
34400008
GM
4674 /* This trick flushes the register windows so that all the state of
4675 the process is contained in the stack. */
ab6780cd 4676 /* Fixme: Code in the Boehm GC suggests flushing (with `flushrs') is
422eec7e
DL
4677 needed on ia64 too. See mach_dep.c, where it also says inline
4678 assembler doesn't work with relevant proprietary compilers. */
4a00783e 4679#ifdef __sparc__
4d18a7a2
DN
4680#if defined (__sparc64__) && defined (__FreeBSD__)
4681 /* FreeBSD does not have a ta 3 handler. */
4c1616be
CY
4682 asm ("flushw");
4683#else
34400008 4684 asm ("ta 3");
4c1616be 4685#endif
34400008 4686#endif
177c0ea7 4687
34400008
GM
4688 /* Save registers that we need to see on the stack. We need to see
4689 registers used to hold register variables and registers used to
4690 pass parameters. */
4691#ifdef GC_SAVE_REGISTERS_ON_STACK
4692 GC_SAVE_REGISTERS_ON_STACK (end);
182ff242 4693#else /* not GC_SAVE_REGISTERS_ON_STACK */
177c0ea7 4694
182ff242
GM
4695#ifndef GC_SETJMP_WORKS /* If it hasn't been checked yet that
4696 setjmp will definitely work, test it
4697 and print a message with the result
4698 of the test. */
4699 if (!setjmp_tested_p)
4700 {
4701 setjmp_tested_p = 1;
4702 test_setjmp ();
4703 }
4704#endif /* GC_SETJMP_WORKS */
177c0ea7 4705
0328b6de 4706 sys_setjmp (j.j);
34400008 4707 end = stack_grows_down_p ? (char *) &j + sizeof j : (char *) &j;
182ff242 4708#endif /* not GC_SAVE_REGISTERS_ON_STACK */
2018939f 4709#endif /* not HAVE___BUILTIN_UNWIND_INIT */
34400008
GM
4710
4711 /* This assumes that the stack is a contiguous region in memory. If
182ff242
GM
4712 that's not the case, something has to be done here to iterate
4713 over the stack segments. */
3164aeac
PE
4714 mark_memory (stack_base, end);
4715
4dec23ff
AS
4716 /* Allow for marking a secondary stack, like the register stack on the
4717 ia64. */
4718#ifdef GC_MARK_SECONDARY_STACK
4719 GC_MARK_SECONDARY_STACK ();
4720#endif
34400008
GM
4721
4722#if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
4723 check_gcpros ();
4724#endif
4725}
4726
34400008
GM
4727#endif /* GC_MARK_STACK != 0 */
4728
4729
7ffb6955 4730/* Determine whether it is safe to access memory at address P. */
d3d47262 4731static int
971de7fb 4732valid_pointer_p (void *p)
7ffb6955 4733{
f892cf9c
EZ
4734#ifdef WINDOWSNT
4735 return w32_valid_pointer_p (p, 16);
4736#else
41bed37d 4737 int fd[2];
7ffb6955
KS
4738
4739 /* Obviously, we cannot just access it (we would SEGV trying), so we
4740 trick the o/s to tell us whether p is a valid pointer.
4741 Unfortunately, we cannot use NULL_DEVICE here, as emacs_write may
4742 not validate p in that case. */
4743
41bed37d 4744 if (pipe (fd) == 0)
7ffb6955 4745 {
fce31d69 4746 bool valid = emacs_write (fd[1], (char *) p, 16) == 16;
41bed37d
PE
4747 emacs_close (fd[1]);
4748 emacs_close (fd[0]);
7ffb6955
KS
4749 return valid;
4750 }
4751
4752 return -1;
f892cf9c 4753#endif
7ffb6955 4754}
3cd55735 4755
6cda572a
DA
4756/* Return 2 if OBJ is a killed or special buffer object, 1 if OBJ is a
4757 valid lisp object, 0 if OBJ is NOT a valid lisp object, or -1 if we
4758 cannot validate OBJ. This function can be quite slow, so its primary
4759 use is the manual debugging. The only exception is print_object, where
4760 we use it to check whether the memory referenced by the pointer of
4761 Lisp_Save_Value object contains valid objects. */
3cd55735
KS
4762
4763int
971de7fb 4764valid_lisp_object_p (Lisp_Object obj)
3cd55735 4765{
de7124a7 4766 void *p;
7ffb6955 4767#if GC_MARK_STACK
3cd55735 4768 struct mem_node *m;
de7124a7 4769#endif
3cd55735
KS
4770
4771 if (INTEGERP (obj))
4772 return 1;
4773
4774 p = (void *) XPNTR (obj);
3cd55735
KS
4775 if (PURE_POINTER_P (p))
4776 return 1;
4777
c1ca42ca
DA
4778 if (p == &buffer_defaults || p == &buffer_local_symbols)
4779 return 2;
4780
de7124a7 4781#if !GC_MARK_STACK
7ffb6955 4782 return valid_pointer_p (p);
de7124a7
KS
4783#else
4784
3cd55735
KS
4785 m = mem_find (p);
4786
4787 if (m == MEM_NIL)
7ffb6955
KS
4788 {
4789 int valid = valid_pointer_p (p);
4790 if (valid <= 0)
4791 return valid;
4792
4793 if (SUBRP (obj))
4794 return 1;
4795
4796 return 0;
4797 }
3cd55735
KS
4798
4799 switch (m->type)
4800 {
4801 case MEM_TYPE_NON_LISP:
5474c384 4802 case MEM_TYPE_SPARE:
3cd55735
KS
4803 return 0;
4804
4805 case MEM_TYPE_BUFFER:
c1ca42ca 4806 return live_buffer_p (m, p) ? 1 : 2;
3cd55735
KS
4807
4808 case MEM_TYPE_CONS:
4809 return live_cons_p (m, p);
4810
4811 case MEM_TYPE_STRING:
4812 return live_string_p (m, p);
4813
4814 case MEM_TYPE_MISC:
4815 return live_misc_p (m, p);
4816
4817 case MEM_TYPE_SYMBOL:
4818 return live_symbol_p (m, p);
4819
4820 case MEM_TYPE_FLOAT:
4821 return live_float_p (m, p);
4822
9c545a55 4823 case MEM_TYPE_VECTORLIKE:
f3372c87 4824 case MEM_TYPE_VECTOR_BLOCK:
3cd55735
KS
4825 return live_vector_p (m, p);
4826
4827 default:
4828 break;
4829 }
4830
4831 return 0;
4832#endif
4833}
4834
4835
4836
34400008 4837\f
2e471eb5
GM
4838/***********************************************************************
4839 Pure Storage Management
4840 ***********************************************************************/
4841
1f0b3fd2
GM
4842/* Allocate room for SIZE bytes from pure Lisp storage and return a
4843 pointer to it. TYPE is the Lisp type for which the memory is
e5bc14d4 4844 allocated. TYPE < 0 means it's not used for a Lisp object. */
1f0b3fd2 4845
261cb4bb 4846static void *
971de7fb 4847pure_alloc (size_t size, int type)
1f0b3fd2 4848{
261cb4bb 4849 void *result;
bfe3e0a2 4850#if USE_LSB_TAG
2b90362b 4851 size_t alignment = GCALIGNMENT;
6b61353c 4852#else
e32a5799 4853 size_t alignment = alignof (EMACS_INT);
1f0b3fd2
GM
4854
4855 /* Give Lisp_Floats an extra alignment. */
4856 if (type == Lisp_Float)
e32a5799 4857 alignment = alignof (struct Lisp_Float);
6b61353c 4858#endif
1f0b3fd2 4859
44117420 4860 again:
e5bc14d4
YM
4861 if (type >= 0)
4862 {
4863 /* Allocate space for a Lisp object from the beginning of the free
4864 space with taking account of alignment. */
4865 result = ALIGN (purebeg + pure_bytes_used_lisp, alignment);
4866 pure_bytes_used_lisp = ((char *)result - (char *)purebeg) + size;
4867 }
4868 else
4869 {
4870 /* Allocate space for a non-Lisp object from the end of the free
4871 space. */
4872 pure_bytes_used_non_lisp += size;
4873 result = purebeg + pure_size - pure_bytes_used_non_lisp;
4874 }
4875 pure_bytes_used = pure_bytes_used_lisp + pure_bytes_used_non_lisp;
44117420
KS
4876
4877 if (pure_bytes_used <= pure_size)
4878 return result;
4879
4880 /* Don't allocate a large amount here,
4881 because it might get mmap'd and then its address
4882 might not be usable. */
23f86fce 4883 purebeg = xmalloc (10000);
44117420
KS
4884 pure_size = 10000;
4885 pure_bytes_used_before_overflow += pure_bytes_used - size;
4886 pure_bytes_used = 0;
e5bc14d4 4887 pure_bytes_used_lisp = pure_bytes_used_non_lisp = 0;
44117420 4888 goto again;
1f0b3fd2
GM
4889}
4890
4891
852f8cdc 4892/* Print a warning if PURESIZE is too small. */
9e713715
GM
4893
4894void
971de7fb 4895check_pure_size (void)
9e713715
GM
4896{
4897 if (pure_bytes_used_before_overflow)
c2982e87
PE
4898 message (("emacs:0:Pure Lisp storage overflow (approx. %"pI"d"
4899 " bytes needed)"),
4900 pure_bytes_used + pure_bytes_used_before_overflow);
9e713715
GM
4901}
4902
4903
79fd0489
YM
4904/* Find the byte sequence {DATA[0], ..., DATA[NBYTES-1], '\0'} from
4905 the non-Lisp data pool of the pure storage, and return its start
4906 address. Return NULL if not found. */
4907
4908static char *
d311d28c 4909find_string_data_in_pure (const char *data, ptrdiff_t nbytes)
79fd0489 4910{
14162469 4911 int i;
d311d28c 4912 ptrdiff_t skip, bm_skip[256], last_char_skip, infinity, start, start_max;
2aff7c53 4913 const unsigned char *p;
79fd0489
YM
4914 char *non_lisp_beg;
4915
d311d28c 4916 if (pure_bytes_used_non_lisp <= nbytes)
79fd0489
YM
4917 return NULL;
4918
4919 /* Set up the Boyer-Moore table. */
4920 skip = nbytes + 1;
4921 for (i = 0; i < 256; i++)
4922 bm_skip[i] = skip;
4923
2aff7c53 4924 p = (const unsigned char *) data;
79fd0489
YM
4925 while (--skip > 0)
4926 bm_skip[*p++] = skip;
4927
4928 last_char_skip = bm_skip['\0'];
4929
4930 non_lisp_beg = purebeg + pure_size - pure_bytes_used_non_lisp;
4931 start_max = pure_bytes_used_non_lisp - (nbytes + 1);
4932
4933 /* See the comments in the function `boyer_moore' (search.c) for the
4934 use of `infinity'. */
4935 infinity = pure_bytes_used_non_lisp + 1;
4936 bm_skip['\0'] = infinity;
4937
2aff7c53 4938 p = (const unsigned char *) non_lisp_beg + nbytes;
79fd0489
YM
4939 start = 0;
4940 do
4941 {
4942 /* Check the last character (== '\0'). */
4943 do
4944 {
4945 start += bm_skip[*(p + start)];
4946 }
4947 while (start <= start_max);
4948
4949 if (start < infinity)
4950 /* Couldn't find the last character. */
4951 return NULL;
4952
4953 /* No less than `infinity' means we could find the last
4954 character at `p[start - infinity]'. */
4955 start -= infinity;
4956
4957 /* Check the remaining characters. */
4958 if (memcmp (data, non_lisp_beg + start, nbytes) == 0)
4959 /* Found. */
4960 return non_lisp_beg + start;
4961
4962 start += last_char_skip;
4963 }
4964 while (start <= start_max);
4965
4966 return NULL;
4967}
4968
4969
2e471eb5
GM
4970/* Return a string allocated in pure space. DATA is a buffer holding
4971 NCHARS characters, and NBYTES bytes of string data. MULTIBYTE
fce31d69 4972 means make the result string multibyte.
1a4f1e2c 4973
2e471eb5
GM
4974 Must get an error if pure storage is full, since if it cannot hold
4975 a large string it may be able to hold conses that point to that
4976 string; then the string is not protected from gc. */
7146af97
JB
4977
4978Lisp_Object
14162469 4979make_pure_string (const char *data,
fce31d69 4980 ptrdiff_t nchars, ptrdiff_t nbytes, bool multibyte)
7146af97 4981{
2e471eb5 4982 Lisp_Object string;
98c6f1e3 4983 struct Lisp_String *s = pure_alloc (sizeof *s, Lisp_String);
90256841 4984 s->data = (unsigned char *) find_string_data_in_pure (data, nbytes);
79fd0489
YM
4985 if (s->data == NULL)
4986 {
98c6f1e3 4987 s->data = pure_alloc (nbytes + 1, -1);
72af86bd 4988 memcpy (s->data, data, nbytes);
79fd0489
YM
4989 s->data[nbytes] = '\0';
4990 }
2e471eb5
GM
4991 s->size = nchars;
4992 s->size_byte = multibyte ? nbytes : -1;
77c7bcb1 4993 s->intervals = NULL;
2e471eb5
GM
4994 XSETSTRING (string, s);
4995 return string;
7146af97
JB
4996}
4997
2a0213a6
DA
4998/* Return a string allocated in pure space. Do not
4999 allocate the string data, just point to DATA. */
a56eaaef
DN
5000
5001Lisp_Object
2a0213a6 5002make_pure_c_string (const char *data, ptrdiff_t nchars)
a56eaaef
DN
5003{
5004 Lisp_Object string;
98c6f1e3 5005 struct Lisp_String *s = pure_alloc (sizeof *s, Lisp_String);
a56eaaef
DN
5006 s->size = nchars;
5007 s->size_byte = -1;
323637a2 5008 s->data = (unsigned char *) data;
77c7bcb1 5009 s->intervals = NULL;
a56eaaef
DN
5010 XSETSTRING (string, s);
5011 return string;
5012}
2e471eb5 5013
34400008
GM
5014/* Return a cons allocated from pure space. Give it pure copies
5015 of CAR as car and CDR as cdr. */
5016
7146af97 5017Lisp_Object
971de7fb 5018pure_cons (Lisp_Object car, Lisp_Object cdr)
7146af97 5019{
98c6f1e3
PE
5020 Lisp_Object new;
5021 struct Lisp_Cons *p = pure_alloc (sizeof *p, Lisp_Cons);
1f0b3fd2 5022 XSETCONS (new, p);
f3fbd155
KR
5023 XSETCAR (new, Fpurecopy (car));
5024 XSETCDR (new, Fpurecopy (cdr));
7146af97
JB
5025 return new;
5026}
5027
7146af97 5028
34400008
GM
5029/* Value is a float object with value NUM allocated from pure space. */
5030
d3d47262 5031static Lisp_Object
971de7fb 5032make_pure_float (double num)
7146af97 5033{
98c6f1e3
PE
5034 Lisp_Object new;
5035 struct Lisp_Float *p = pure_alloc (sizeof *p, Lisp_Float);
1f0b3fd2 5036 XSETFLOAT (new, p);
f601cdf3 5037 XFLOAT_INIT (new, num);
7146af97
JB
5038 return new;
5039}
5040
34400008
GM
5041
5042/* Return a vector with room for LEN Lisp_Objects allocated from
5043 pure space. */
5044
72cb32cf 5045static Lisp_Object
d311d28c 5046make_pure_vector (ptrdiff_t len)
7146af97 5047{
1f0b3fd2 5048 Lisp_Object new;
d06714cb 5049 size_t size = header_size + len * word_size;
98c6f1e3 5050 struct Lisp_Vector *p = pure_alloc (size, Lisp_Vectorlike);
1f0b3fd2 5051 XSETVECTOR (new, p);
eab3844f 5052 XVECTOR (new)->header.size = len;
7146af97
JB
5053 return new;
5054}
5055
34400008 5056
a7ca3326 5057DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
909e3b33 5058 doc: /* Make a copy of object OBJ in pure storage.
228299fa 5059Recursively copies contents of vectors and cons cells.
7ee72033 5060Does not copy symbols. Copies strings without text properties. */)
5842a27b 5061 (register Lisp_Object obj)
7146af97 5062{
265a9e55 5063 if (NILP (Vpurify_flag))
7146af97
JB
5064 return obj;
5065
1f0b3fd2 5066 if (PURE_POINTER_P (XPNTR (obj)))
7146af97
JB
5067 return obj;
5068
e9515805
SM
5069 if (HASH_TABLE_P (Vpurify_flag)) /* Hash consing. */
5070 {
5071 Lisp_Object tmp = Fgethash (obj, Vpurify_flag, Qnil);
5072 if (!NILP (tmp))
5073 return tmp;
5074 }
5075
d6dd74bb 5076 if (CONSP (obj))
e9515805 5077 obj = pure_cons (XCAR (obj), XCDR (obj));
d6dd74bb 5078 else if (FLOATP (obj))
e9515805 5079 obj = make_pure_float (XFLOAT_DATA (obj));
d6dd74bb 5080 else if (STRINGP (obj))
42a5b22f 5081 obj = make_pure_string (SSDATA (obj), SCHARS (obj),
e9515805
SM
5082 SBYTES (obj),
5083 STRING_MULTIBYTE (obj));
876c194c 5084 else if (COMPILEDP (obj) || VECTORP (obj))
d6dd74bb
KH
5085 {
5086 register struct Lisp_Vector *vec;
d311d28c
PE
5087 register ptrdiff_t i;
5088 ptrdiff_t size;
d6dd74bb 5089
77b37c05 5090 size = ASIZE (obj);
7d535c68
KH
5091 if (size & PSEUDOVECTOR_FLAG)
5092 size &= PSEUDOVECTOR_SIZE_MASK;
6b61353c 5093 vec = XVECTOR (make_pure_vector (size));
d6dd74bb 5094 for (i = 0; i < size; i++)
28be1ada 5095 vec->contents[i] = Fpurecopy (AREF (obj, i));
876c194c 5096 if (COMPILEDP (obj))
985773c9 5097 {
876c194c
SM
5098 XSETPVECTYPE (vec, PVEC_COMPILED);
5099 XSETCOMPILED (obj, vec);
985773c9 5100 }
d6dd74bb
KH
5101 else
5102 XSETVECTOR (obj, vec);
7146af97 5103 }
d6dd74bb
KH
5104 else if (MARKERP (obj))
5105 error ("Attempt to copy a marker to pure storage");
e9515805
SM
5106 else
5107 /* Not purified, don't hash-cons. */
5108 return obj;
5109
5110 if (HASH_TABLE_P (Vpurify_flag)) /* Hash consing. */
5111 Fputhash (obj, obj, Vpurify_flag);
6bbd7a29
GM
5112
5113 return obj;
7146af97 5114}
2e471eb5 5115
34400008 5116
7146af97 5117\f
34400008
GM
5118/***********************************************************************
5119 Protection from GC
5120 ***********************************************************************/
5121
2e471eb5
GM
5122/* Put an entry in staticvec, pointing at the variable with address
5123 VARADDRESS. */
7146af97
JB
5124
5125void
971de7fb 5126staticpro (Lisp_Object *varaddress)
7146af97
JB
5127{
5128 staticvec[staticidx++] = varaddress;
5129 if (staticidx >= NSTATICS)
afb8aa24 5130 fatal ("NSTATICS too small; try increasing and recompiling Emacs.");
7146af97
JB
5131}
5132
7146af97 5133\f
34400008
GM
5134/***********************************************************************
5135 Protection from GC
5136 ***********************************************************************/
1a4f1e2c 5137
e8197642
RS
5138/* Temporarily prevent garbage collection. */
5139
d311d28c 5140ptrdiff_t
971de7fb 5141inhibit_garbage_collection (void)
e8197642 5142{
d311d28c 5143 ptrdiff_t count = SPECPDL_INDEX ();
54defd0d 5144
6349ae4d 5145 specbind (Qgc_cons_threshold, make_number (MOST_POSITIVE_FIXNUM));
e8197642
RS
5146 return count;
5147}
5148
3ab6e069
DA
5149/* Used to avoid possible overflows when
5150 converting from C to Lisp integers. */
5151
b0ab8123 5152static Lisp_Object
3ab6e069
DA
5153bounded_number (EMACS_INT number)
5154{
5155 return make_number (min (MOST_POSITIVE_FIXNUM, number));
5156}
34400008 5157
12b3895d
TM
5158/* Calculate total bytes of live objects. */
5159
5160static size_t
5161total_bytes_of_live_objects (void)
5162{
5163 size_t tot = 0;
5164 tot += total_conses * sizeof (struct Lisp_Cons);
5165 tot += total_symbols * sizeof (struct Lisp_Symbol);
5166 tot += total_markers * sizeof (union Lisp_Misc);
5167 tot += total_string_bytes;
5168 tot += total_vector_slots * word_size;
5169 tot += total_floats * sizeof (struct Lisp_Float);
5170 tot += total_intervals * sizeof (struct interval);
5171 tot += total_strings * sizeof (struct Lisp_String);
5172 return tot;
5173}
5174
a7ca3326 5175DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "",
7ee72033 5176 doc: /* Reclaim storage for Lisp objects no longer needed.
e1e37596
RS
5177Garbage collection happens automatically if you cons more than
5178`gc-cons-threshold' bytes of Lisp data since previous garbage collection.
5db81e33
SM
5179`garbage-collect' normally returns a list with info on amount of space in use,
5180where each entry has the form (NAME SIZE USED FREE), where:
5181- NAME is a symbol describing the kind of objects this entry represents,
5182- SIZE is the number of bytes used by each one,
5183- USED is the number of those objects that were found live in the heap,
5184- FREE is the number of those objects that are not live but that Emacs
5185 keeps around for future allocations (maybe because it does not know how
5186 to return them to the OS).
e1e37596 5187However, if there was overflow in pure space, `garbage-collect'
999dd333
GM
5188returns nil, because real GC can't be done.
5189See Info node `(elisp)Garbage Collection'. */)
5842a27b 5190 (void)
7146af97 5191{
fce31d69 5192 struct buffer *nextb;
7146af97 5193 char stack_top_variable;
f66c7cf8 5194 ptrdiff_t i;
fce31d69 5195 bool message_p;
d311d28c 5196 ptrdiff_t count = SPECPDL_INDEX ();
dbcf001c 5197 EMACS_TIME start;
fecbd8ff 5198 Lisp_Object retval = Qnil;
12b3895d 5199 size_t tot_before = 0;
2c5bd608 5200
3de0effb 5201 if (abort_on_gc)
1088b922 5202 emacs_abort ();
3de0effb 5203
9e713715
GM
5204 /* Can't GC if pure storage overflowed because we can't determine
5205 if something is a pure object or not. */
5206 if (pure_bytes_used_before_overflow)
5207 return Qnil;
5208
3d80c99f 5209 /* Record this function, so it appears on the profiler's backtraces. */
2f592f95 5210 record_in_backtrace (Qautomatic_gc, &Qnil, 0);
3d80c99f 5211
7e63e0c3 5212 check_cons_list ();
bbc012e0 5213
3c7e66a8
RS
5214 /* Don't keep undo information around forever.
5215 Do this early on, so it is no problem if the user quits. */
52b852c7 5216 FOR_EACH_BUFFER (nextb)
9cd47b72 5217 compact_buffer (nextb);
3c7e66a8 5218
6521894d 5219 if (profiler_memory_running)
12b3895d
TM
5220 tot_before = total_bytes_of_live_objects ();
5221
dbcf001c 5222 start = current_emacs_time ();
3c7e66a8 5223
58595309
KH
5224 /* In case user calls debug_print during GC,
5225 don't let that cause a recursive GC. */
5226 consing_since_gc = 0;
5227
6efc7df7
GM
5228 /* Save what's currently displayed in the echo area. */
5229 message_p = push_message ();
c55b0da6 5230 record_unwind_protect (pop_message_unwind, Qnil);
41c28a37 5231
7146af97
JB
5232 /* Save a copy of the contents of the stack, for debugging. */
5233#if MAX_SAVE_STACK > 0
265a9e55 5234 if (NILP (Vpurify_flag))
7146af97 5235 {
dd3f25f7 5236 char *stack;
903fe15d 5237 ptrdiff_t stack_size;
dd3f25f7 5238 if (&stack_top_variable < stack_bottom)
7146af97 5239 {
dd3f25f7
PE
5240 stack = &stack_top_variable;
5241 stack_size = stack_bottom - &stack_top_variable;
5242 }
5243 else
5244 {
5245 stack = stack_bottom;
5246 stack_size = &stack_top_variable - stack_bottom;
5247 }
5248 if (stack_size <= MAX_SAVE_STACK)
7146af97 5249 {
dd3f25f7 5250 if (stack_copy_size < stack_size)
7146af97 5251 {
38182d90 5252 stack_copy = xrealloc (stack_copy, stack_size);
dd3f25f7 5253 stack_copy_size = stack_size;
7146af97 5254 }
dd3f25f7 5255 memcpy (stack_copy, stack, stack_size);
7146af97
JB
5256 }
5257 }
5258#endif /* MAX_SAVE_STACK > 0 */
5259
299585ee 5260 if (garbage_collection_messages)
691c4285 5261 message1_nolog ("Garbage collecting...");
7146af97 5262
4d7e6e51 5263 block_input ();
6e0fca1d 5264
eec7b73d
RS
5265 shrink_regexp_cache ();
5266
7146af97
JB
5267 gc_in_progress = 1;
5268
005ca5c7 5269 /* Mark all the special slots that serve as the roots of accessibility. */
7146af97 5270
c752cfa9
DA
5271 mark_buffer (&buffer_defaults);
5272 mark_buffer (&buffer_local_symbols);
5273
7146af97 5274 for (i = 0; i < staticidx; i++)
49723c04 5275 mark_object (*staticvec[i]);
34400008 5276
2f592f95 5277 mark_specpdl ();
6ed8eeff 5278 mark_terminals ();
126f9c02
SM
5279 mark_kboards ();
5280
5281#ifdef USE_GTK
a411ac43 5282 xg_mark_data ();
126f9c02
SM
5283#endif
5284
34400008
GM
5285#if (GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS \
5286 || GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS)
5287 mark_stack ();
5288#else
acf5f7d3
SM
5289 {
5290 register struct gcpro *tail;
5291 for (tail = gcprolist; tail; tail = tail->next)
5292 for (i = 0; i < tail->nvars; i++)
005ca5c7 5293 mark_object (tail->var[i]);
acf5f7d3 5294 }
3e21b6a7 5295 mark_byte_stack ();
b286858c
SM
5296 {
5297 struct catchtag *catch;
5298 struct handler *handler;
177c0ea7 5299
7146af97
JB
5300 for (catch = catchlist; catch; catch = catch->next)
5301 {
49723c04
SM
5302 mark_object (catch->tag);
5303 mark_object (catch->val);
177c0ea7 5304 }
7146af97
JB
5305 for (handler = handlerlist; handler; handler = handler->next)
5306 {
49723c04
SM
5307 mark_object (handler->handler);
5308 mark_object (handler->var);
177c0ea7 5309 }
b286858c 5310 }
b286858c 5311#endif
7146af97 5312
454d7973
KS
5313#ifdef HAVE_WINDOW_SYSTEM
5314 mark_fringe_data ();
5315#endif
5316
74c35a48
SM
5317#if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
5318 mark_stack ();
5319#endif
5320
c37adf23
SM
5321 /* Everything is now marked, except for the things that require special
5322 finalization, i.e. the undo_list.
5323 Look thru every buffer's undo list
4c315bda
RS
5324 for elements that update markers that were not marked,
5325 and delete them. */
52b852c7 5326 FOR_EACH_BUFFER (nextb)
d17337e5
DA
5327 {
5328 /* If a buffer's undo list is Qt, that means that undo is
5329 turned off in that buffer. Calling truncate_undo_list on
5330 Qt tends to return NULL, which effectively turns undo back on.
5331 So don't call truncate_undo_list if undo_list is Qt. */
e34f7f79 5332 if (! EQ (nextb->INTERNAL_FIELD (undo_list), Qt))
d17337e5
DA
5333 {
5334 Lisp_Object tail, prev;
e34f7f79 5335 tail = nextb->INTERNAL_FIELD (undo_list);
d17337e5
DA
5336 prev = Qnil;
5337 while (CONSP (tail))
5338 {
5339 if (CONSP (XCAR (tail))
5340 && MARKERP (XCAR (XCAR (tail)))
5341 && !XMARKER (XCAR (XCAR (tail)))->gcmarkbit)
5342 {
5343 if (NILP (prev))
e34f7f79 5344 nextb->INTERNAL_FIELD (undo_list) = tail = XCDR (tail);
d17337e5
DA
5345 else
5346 {
5347 tail = XCDR (tail);
5348 XSETCDR (prev, tail);
5349 }
5350 }
5351 else
5352 {
5353 prev = tail;
5354 tail = XCDR (tail);
5355 }
5356 }
5357 }
5358 /* Now that we have stripped the elements that need not be in the
5359 undo_list any more, we can finally mark the list. */
e34f7f79 5360 mark_object (nextb->INTERNAL_FIELD (undo_list));
d17337e5 5361 }
4c315bda 5362
7146af97
JB
5363 gc_sweep ();
5364
5365 /* Clear the mark bits that we set in certain root slots. */
5366
033a5fa3 5367 unmark_byte_stack ();
3ef06d12
SM
5368 VECTOR_UNMARK (&buffer_defaults);
5369 VECTOR_UNMARK (&buffer_local_symbols);
7146af97 5370
34400008
GM
5371#if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES && 0
5372 dump_zombies ();
5373#endif
5374
7e63e0c3 5375 check_cons_list ();
bbc012e0 5376
7146af97
JB
5377 gc_in_progress = 0;
5378
5c747675
DA
5379 unblock_input ();
5380
7146af97 5381 consing_since_gc = 0;
0dd6d66d
DA
5382 if (gc_cons_threshold < GC_DEFAULT_THRESHOLD / 10)
5383 gc_cons_threshold = GC_DEFAULT_THRESHOLD / 10;
7146af97 5384
c0c5c8ae 5385 gc_relative_threshold = 0;
96f077ad
SM
5386 if (FLOATP (Vgc_cons_percentage))
5387 { /* Set gc_cons_combined_threshold. */
12b3895d 5388 double tot = total_bytes_of_live_objects ();
ae35e756 5389
c0c5c8ae 5390 tot *= XFLOAT_DATA (Vgc_cons_percentage);
7216e43b 5391 if (0 < tot)
c0c5c8ae
PE
5392 {
5393 if (tot < TYPE_MAXIMUM (EMACS_INT))
5394 gc_relative_threshold = tot;
5395 else
5396 gc_relative_threshold = TYPE_MAXIMUM (EMACS_INT);
5397 }
96f077ad
SM
5398 }
5399
299585ee
RS
5400 if (garbage_collection_messages)
5401 {
6efc7df7
GM
5402 if (message_p || minibuf_level > 0)
5403 restore_message ();
299585ee
RS
5404 else
5405 message1_nolog ("Garbage collecting...done");
5406 }
7146af97 5407
98edb5ff 5408 unbind_to (count, Qnil);
fecbd8ff
SM
5409 {
5410 Lisp_Object total[11];
5411 int total_size = 10;
2e471eb5 5412
fecbd8ff
SM
5413 total[0] = list4 (Qconses, make_number (sizeof (struct Lisp_Cons)),
5414 bounded_number (total_conses),
5415 bounded_number (total_free_conses));
3ab6e069 5416
fecbd8ff
SM
5417 total[1] = list4 (Qsymbols, make_number (sizeof (struct Lisp_Symbol)),
5418 bounded_number (total_symbols),
5419 bounded_number (total_free_symbols));
3ab6e069 5420
fecbd8ff
SM
5421 total[2] = list4 (Qmiscs, make_number (sizeof (union Lisp_Misc)),
5422 bounded_number (total_markers),
5423 bounded_number (total_free_markers));
3ab6e069 5424
fecbd8ff
SM
5425 total[3] = list4 (Qstrings, make_number (sizeof (struct Lisp_String)),
5426 bounded_number (total_strings),
5427 bounded_number (total_free_strings));
3ab6e069 5428
fecbd8ff
SM
5429 total[4] = list3 (Qstring_bytes, make_number (1),
5430 bounded_number (total_string_bytes));
3ab6e069 5431
fbe9e0b9
PE
5432 total[5] = list3 (Qvectors,
5433 make_number (header_size + sizeof (Lisp_Object)),
fecbd8ff 5434 bounded_number (total_vectors));
5b835e1d 5435
fecbd8ff
SM
5436 total[6] = list4 (Qvector_slots, make_number (word_size),
5437 bounded_number (total_vector_slots),
5438 bounded_number (total_free_vector_slots));
5b835e1d 5439
fecbd8ff
SM
5440 total[7] = list4 (Qfloats, make_number (sizeof (struct Lisp_Float)),
5441 bounded_number (total_floats),
5442 bounded_number (total_free_floats));
3ab6e069 5443
fecbd8ff
SM
5444 total[8] = list4 (Qintervals, make_number (sizeof (struct interval)),
5445 bounded_number (total_intervals),
5446 bounded_number (total_free_intervals));
3ab6e069 5447
fecbd8ff
SM
5448 total[9] = list3 (Qbuffers, make_number (sizeof (struct buffer)),
5449 bounded_number (total_buffers));
2e471eb5 5450
f8643a6b 5451#ifdef DOUG_LEA_MALLOC
fecbd8ff
SM
5452 total_size++;
5453 total[10] = list4 (Qheap, make_number (1024),
5454 bounded_number ((mallinfo ().uordblks + 1023) >> 10),
5455 bounded_number ((mallinfo ().fordblks + 1023) >> 10));
f8643a6b 5456#endif
fecbd8ff
SM
5457 retval = Flist (total_size, total);
5458 }
f8643a6b 5459
34400008 5460#if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
7146af97 5461 {
34400008 5462 /* Compute average percentage of zombies. */
fecbd8ff
SM
5463 double nlive
5464 = (total_conses + total_symbols + total_markers + total_strings
5465 + total_vectors + total_floats + total_intervals + total_buffers);
34400008
GM
5466
5467 avg_live = (avg_live * ngcs + nlive) / (ngcs + 1);
5468 max_live = max (nlive, max_live);
5469 avg_zombies = (avg_zombies * ngcs + nzombies) / (ngcs + 1);
5470 max_zombies = max (nzombies, max_zombies);
5471 ++ngcs;
dbcf001c 5472 }
34400008 5473#endif
7146af97 5474
9e713715
GM
5475 if (!NILP (Vpost_gc_hook))
5476 {
d311d28c 5477 ptrdiff_t gc_count = inhibit_garbage_collection ();
9e713715 5478 safe_run_hooks (Qpost_gc_hook);
ae35e756 5479 unbind_to (gc_count, Qnil);
9e713715 5480 }
2c5bd608
DL
5481
5482 /* Accumulate statistics. */
2c5bd608 5483 if (FLOATP (Vgc_elapsed))
387d4d92
PE
5484 {
5485 EMACS_TIME since_start = sub_emacs_time (current_emacs_time (), start);
5486 Vgc_elapsed = make_float (XFLOAT_DATA (Vgc_elapsed)
5487 + EMACS_TIME_TO_DOUBLE (since_start));
5488 }
d35af63c 5489
2c5bd608
DL
5490 gcs_done++;
5491
12b3895d 5492 /* Collect profiling data. */
6521894d 5493 if (profiler_memory_running)
12b3895d
TM
5494 {
5495 size_t swept = 0;
6521894d
SM
5496 size_t tot_after = total_bytes_of_live_objects ();
5497 if (tot_before > tot_after)
5498 swept = tot_before - tot_after;
3d80c99f 5499 malloc_probe (swept);
12b3895d
TM
5500 }
5501
fecbd8ff 5502 return retval;
7146af97 5503}
34400008 5504
41c28a37 5505
3770920e
GM
5506/* Mark Lisp objects in glyph matrix MATRIX. Currently the
5507 only interesting objects referenced from glyphs are strings. */
41c28a37
GM
5508
5509static void
971de7fb 5510mark_glyph_matrix (struct glyph_matrix *matrix)
41c28a37
GM
5511{
5512 struct glyph_row *row = matrix->rows;
5513 struct glyph_row *end = row + matrix->nrows;
5514
2e471eb5
GM
5515 for (; row < end; ++row)
5516 if (row->enabled_p)
5517 {
5518 int area;
5519 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
5520 {
5521 struct glyph *glyph = row->glyphs[area];
5522 struct glyph *end_glyph = glyph + row->used[area];
177c0ea7 5523
2e471eb5 5524 for (; glyph < end_glyph; ++glyph)
8e50cc2d 5525 if (STRINGP (glyph->object)
2e471eb5 5526 && !STRING_MARKED_P (XSTRING (glyph->object)))
49723c04 5527 mark_object (glyph->object);
2e471eb5
GM
5528 }
5529 }
41c28a37
GM
5530}
5531
34400008 5532
41c28a37
GM
5533/* Mark Lisp faces in the face cache C. */
5534
5535static void
971de7fb 5536mark_face_cache (struct face_cache *c)
41c28a37
GM
5537{
5538 if (c)
5539 {
5540 int i, j;
5541 for (i = 0; i < c->used; ++i)
5542 {
5543 struct face *face = FACE_FROM_ID (c->f, i);
5544
5545 if (face)
5546 {
5547 for (j = 0; j < LFACE_VECTOR_SIZE; ++j)
49723c04 5548 mark_object (face->lface[j]);
41c28a37
GM
5549 }
5550 }
5551 }
5552}
5553
5554
7146af97 5555\f
1a4f1e2c 5556/* Mark reference to a Lisp_Object.
2e471eb5
GM
5557 If the object referred to has not been seen yet, recursively mark
5558 all the references contained in it. */
7146af97 5559
785cd37f 5560#define LAST_MARKED_SIZE 500
d3d47262 5561static Lisp_Object last_marked[LAST_MARKED_SIZE];
244ed907 5562static int last_marked_index;
785cd37f 5563
1342fc6f
RS
5564/* For debugging--call abort when we cdr down this many
5565 links of a list, in mark_object. In debugging,
5566 the call to abort will hit a breakpoint.
5567 Normally this is zero and the check never goes off. */
903fe15d 5568ptrdiff_t mark_object_loop_halt EXTERNALLY_VISIBLE;
1342fc6f 5569
8f11f7ec 5570static void
971de7fb 5571mark_vectorlike (struct Lisp_Vector *ptr)
d2029e5b 5572{
d311d28c
PE
5573 ptrdiff_t size = ptr->header.size;
5574 ptrdiff_t i;
d2029e5b 5575
8f11f7ec 5576 eassert (!VECTOR_MARKED_P (ptr));
7555c33f 5577 VECTOR_MARK (ptr); /* Else mark it. */
d2029e5b
SM
5578 if (size & PSEUDOVECTOR_FLAG)
5579 size &= PSEUDOVECTOR_SIZE_MASK;
d3d47262 5580
d2029e5b
SM
5581 /* Note that this size is not the memory-footprint size, but only
5582 the number of Lisp_Object fields that we should trace.
5583 The distinction is used e.g. by Lisp_Process which places extra
7555c33f
SM
5584 non-Lisp_Object fields at the end of the structure... */
5585 for (i = 0; i < size; i++) /* ...and then mark its elements. */
d2029e5b 5586 mark_object (ptr->contents[i]);
d2029e5b
SM
5587}
5588
58026347
KH
5589/* Like mark_vectorlike but optimized for char-tables (and
5590 sub-char-tables) assuming that the contents are mostly integers or
5591 symbols. */
5592
5593static void
971de7fb 5594mark_char_table (struct Lisp_Vector *ptr)
58026347 5595{
b6439961
PE
5596 int size = ptr->header.size & PSEUDOVECTOR_SIZE_MASK;
5597 int i;
58026347 5598
8f11f7ec 5599 eassert (!VECTOR_MARKED_P (ptr));
58026347
KH
5600 VECTOR_MARK (ptr);
5601 for (i = 0; i < size; i++)
5602 {
5603 Lisp_Object val = ptr->contents[i];
5604
ef1b0ba7 5605 if (INTEGERP (val) || (SYMBOLP (val) && XSYMBOL (val)->gcmarkbit))
58026347
KH
5606 continue;
5607 if (SUB_CHAR_TABLE_P (val))
5608 {
5609 if (! VECTOR_MARKED_P (XVECTOR (val)))
5610 mark_char_table (XVECTOR (val));
5611 }
5612 else
5613 mark_object (val);
5614 }
5615}
5616
36429c89
DA
5617/* Mark the chain of overlays starting at PTR. */
5618
5619static void
5620mark_overlay (struct Lisp_Overlay *ptr)
5621{
5622 for (; ptr && !ptr->gcmarkbit; ptr = ptr->next)
5623 {
5624 ptr->gcmarkbit = 1;
c644523b
DA
5625 mark_object (ptr->start);
5626 mark_object (ptr->end);
5627 mark_object (ptr->plist);
36429c89
DA
5628 }
5629}
5630
5631/* Mark Lisp_Objects and special pointers in BUFFER. */
cf5c0175
DA
5632
5633static void
5634mark_buffer (struct buffer *buffer)
5635{
b4fa72f2
DA
5636 /* This is handled much like other pseudovectors... */
5637 mark_vectorlike ((struct Lisp_Vector *) buffer);
cf5c0175 5638
b4fa72f2 5639 /* ...but there are some buffer-specific things. */
cf5c0175 5640
b4fa72f2 5641 MARK_INTERVAL_TREE (buffer_intervals (buffer));
cf5c0175 5642
b4fa72f2
DA
5643 /* For now, we just don't mark the undo_list. It's done later in
5644 a special way just before the sweep phase, and after stripping
5645 some of its elements that are not needed any more. */
cf5c0175 5646
b4fa72f2
DA
5647 mark_overlay (buffer->overlays_before);
5648 mark_overlay (buffer->overlays_after);
cf5c0175 5649
b4fa72f2
DA
5650 /* If this is an indirect buffer, mark its base buffer. */
5651 if (buffer->base_buffer && !VECTOR_MARKED_P (buffer->base_buffer))
5652 mark_buffer (buffer->base_buffer);
cf5c0175
DA
5653}
5654
d59a1afb 5655/* Remove killed buffers or items whose car is a killed buffer from
e99f70c8 5656 LIST, and mark other items. Return changed LIST, which is marked. */
d73e321c 5657
5779a1dc 5658static Lisp_Object
d59a1afb 5659mark_discard_killed_buffers (Lisp_Object list)
d73e321c 5660{
d59a1afb 5661 Lisp_Object tail, *prev = &list;
d73e321c 5662
d59a1afb
DA
5663 for (tail = list; CONSP (tail) && !CONS_MARKED_P (XCONS (tail));
5664 tail = XCDR (tail))
d73e321c 5665 {
5779a1dc 5666 Lisp_Object tem = XCAR (tail);
d73e321c
DA
5667 if (CONSP (tem))
5668 tem = XCAR (tem);
5669 if (BUFFERP (tem) && !BUFFER_LIVE_P (XBUFFER (tem)))
5779a1dc 5670 *prev = XCDR (tail);
d73e321c 5671 else
d59a1afb
DA
5672 {
5673 CONS_MARK (XCONS (tail));
5674 mark_object (XCAR (tail));
84575e67 5675 prev = xcdr_addr (tail);
d59a1afb 5676 }
d73e321c 5677 }
e99f70c8 5678 mark_object (tail);
d73e321c
DA
5679 return list;
5680}
5681
cf5c0175
DA
5682/* Determine type of generic Lisp_Object and mark it accordingly. */
5683
41c28a37 5684void
971de7fb 5685mark_object (Lisp_Object arg)
7146af97 5686{
49723c04 5687 register Lisp_Object obj = arg;
4f5c1376
GM
5688#ifdef GC_CHECK_MARKED_OBJECTS
5689 void *po;
5690 struct mem_node *m;
5691#endif
903fe15d 5692 ptrdiff_t cdr_count = 0;
7146af97 5693
9149e743 5694 loop:
7146af97 5695
1f0b3fd2 5696 if (PURE_POINTER_P (XPNTR (obj)))
7146af97
JB
5697 return;
5698
49723c04 5699 last_marked[last_marked_index++] = obj;
785cd37f
RS
5700 if (last_marked_index == LAST_MARKED_SIZE)
5701 last_marked_index = 0;
5702
4f5c1376
GM
5703 /* Perform some sanity checks on the objects marked here. Abort if
5704 we encounter an object we know is bogus. This increases GC time
5705 by ~80%, and requires compilation with GC_MARK_STACK != 0. */
5706#ifdef GC_CHECK_MARKED_OBJECTS
5707
5708 po = (void *) XPNTR (obj);
5709
5710 /* Check that the object pointed to by PO is known to be a Lisp
5711 structure allocated from the heap. */
5712#define CHECK_ALLOCATED() \
5713 do { \
5714 m = mem_find (po); \
5715 if (m == MEM_NIL) \
1088b922 5716 emacs_abort (); \
4f5c1376
GM
5717 } while (0)
5718
5719 /* Check that the object pointed to by PO is live, using predicate
5720 function LIVEP. */
5721#define CHECK_LIVE(LIVEP) \
5722 do { \
5723 if (!LIVEP (m, po)) \
1088b922 5724 emacs_abort (); \
4f5c1376
GM
5725 } while (0)
5726
5727 /* Check both of the above conditions. */
5728#define CHECK_ALLOCATED_AND_LIVE(LIVEP) \
5729 do { \
5730 CHECK_ALLOCATED (); \
5731 CHECK_LIVE (LIVEP); \
5732 } while (0) \
177c0ea7 5733
4f5c1376 5734#else /* not GC_CHECK_MARKED_OBJECTS */
177c0ea7 5735
4f5c1376
GM
5736#define CHECK_LIVE(LIVEP) (void) 0
5737#define CHECK_ALLOCATED_AND_LIVE(LIVEP) (void) 0
177c0ea7 5738
4f5c1376
GM
5739#endif /* not GC_CHECK_MARKED_OBJECTS */
5740
7393bcbb 5741 switch (XTYPE (obj))
7146af97
JB
5742 {
5743 case Lisp_String:
5744 {
5745 register struct Lisp_String *ptr = XSTRING (obj);
8f11f7ec
SM
5746 if (STRING_MARKED_P (ptr))
5747 break;
4f5c1376 5748 CHECK_ALLOCATED_AND_LIVE (live_string_p);
2e471eb5 5749 MARK_STRING (ptr);
7555c33f 5750 MARK_INTERVAL_TREE (ptr->intervals);
361b097f 5751#ifdef GC_CHECK_STRING_BYTES
676a7251 5752 /* Check that the string size recorded in the string is the
7555c33f 5753 same as the one recorded in the sdata structure. */
e499d0ee 5754 string_bytes (ptr);
361b097f 5755#endif /* GC_CHECK_STRING_BYTES */
7146af97
JB
5756 }
5757 break;
5758
76437631 5759 case Lisp_Vectorlike:
cf5c0175
DA
5760 {
5761 register struct Lisp_Vector *ptr = XVECTOR (obj);
5762 register ptrdiff_t pvectype;
5763
5764 if (VECTOR_MARKED_P (ptr))
5765 break;
5766
4f5c1376 5767#ifdef GC_CHECK_MARKED_OBJECTS
cf5c0175 5768 m = mem_find (po);
c752cfa9 5769 if (m == MEM_NIL && !SUBRP (obj))
1088b922 5770 emacs_abort ();
4f5c1376 5771#endif /* GC_CHECK_MARKED_OBJECTS */
177c0ea7 5772
cf5c0175 5773 if (ptr->header.size & PSEUDOVECTOR_FLAG)
ee28be33 5774 pvectype = ((ptr->header.size & PVEC_TYPE_MASK)
914adc42 5775 >> PSEUDOVECTOR_AREA_BITS);
cf5c0175 5776 else
6aea7528 5777 pvectype = PVEC_NORMAL_VECTOR;
cf5c0175 5778
cf5c0175
DA
5779 if (pvectype != PVEC_SUBR && pvectype != PVEC_BUFFER)
5780 CHECK_LIVE (live_vector_p);
169ee243 5781
ee28be33 5782 switch (pvectype)
cf5c0175 5783 {
ee28be33 5784 case PVEC_BUFFER:
cf5c0175 5785#ifdef GC_CHECK_MARKED_OBJECTS
c752cfa9
DA
5786 {
5787 struct buffer *b;
5788 FOR_EACH_BUFFER (b)
5789 if (b == po)
5790 break;
5791 if (b == NULL)
5792 emacs_abort ();
5793 }
cf5c0175
DA
5794#endif /* GC_CHECK_MARKED_OBJECTS */
5795 mark_buffer ((struct buffer *) ptr);
ee28be33
SM
5796 break;
5797
5798 case PVEC_COMPILED:
5799 { /* We could treat this just like a vector, but it is better
5800 to save the COMPILED_CONSTANTS element for last and avoid
5801 recursion there. */
5802 int size = ptr->header.size & PSEUDOVECTOR_SIZE_MASK;
5803 int i;
5804
5805 VECTOR_MARK (ptr);
5806 for (i = 0; i < size; i++)
5807 if (i != COMPILED_CONSTANTS)
5808 mark_object (ptr->contents[i]);
5809 if (size > COMPILED_CONSTANTS)
5810 {
5811 obj = ptr->contents[COMPILED_CONSTANTS];
5812 goto loop;
5813 }
5814 }
5815 break;
cf5c0175 5816
ee28be33 5817 case PVEC_FRAME:
d59a1afb
DA
5818 mark_vectorlike (ptr);
5819 mark_face_cache (((struct frame *) ptr)->face_cache);
ee28be33 5820 break;
cf5c0175 5821
ee28be33
SM
5822 case PVEC_WINDOW:
5823 {
5824 struct window *w = (struct window *) ptr;
5779a1dc 5825
0699fc18 5826 mark_vectorlike (ptr);
e99f70c8 5827
e74aeda8 5828 /* Mark glyph matrices, if any. Marking window
0699fc18
DA
5829 matrices is sufficient because frame matrices
5830 use the same glyph memory. */
e74aeda8 5831 if (w->current_matrix)
ee28be33 5832 {
0699fc18
DA
5833 mark_glyph_matrix (w->current_matrix);
5834 mark_glyph_matrix (w->desired_matrix);
ee28be33 5835 }
e99f70c8
SM
5836
5837 /* Filter out killed buffers from both buffer lists
5838 in attempt to help GC to reclaim killed buffers faster.
5839 We can do it elsewhere for live windows, but this is the
5840 best place to do it for dead windows. */
5841 wset_prev_buffers
5842 (w, mark_discard_killed_buffers (w->prev_buffers));
5843 wset_next_buffers
5844 (w, mark_discard_killed_buffers (w->next_buffers));
ee28be33
SM
5845 }
5846 break;
cf5c0175 5847
ee28be33
SM
5848 case PVEC_HASH_TABLE:
5849 {
5850 struct Lisp_Hash_Table *h = (struct Lisp_Hash_Table *) ptr;
cf5c0175 5851
ee28be33 5852 mark_vectorlike (ptr);
b7432bb2
SM
5853 mark_object (h->test.name);
5854 mark_object (h->test.user_hash_function);
5855 mark_object (h->test.user_cmp_function);
ee28be33
SM
5856 /* If hash table is not weak, mark all keys and values.
5857 For weak tables, mark only the vector. */
5858 if (NILP (h->weak))
5859 mark_object (h->key_and_value);
5860 else
5861 VECTOR_MARK (XVECTOR (h->key_and_value));
5862 }
5863 break;
cf5c0175 5864
ee28be33
SM
5865 case PVEC_CHAR_TABLE:
5866 mark_char_table (ptr);
5867 break;
cf5c0175 5868
ee28be33
SM
5869 case PVEC_BOOL_VECTOR:
5870 /* No Lisp_Objects to mark in a bool vector. */
5871 VECTOR_MARK (ptr);
5872 break;
cf5c0175 5873
ee28be33
SM
5874 case PVEC_SUBR:
5875 break;
cf5c0175 5876
ee28be33 5877 case PVEC_FREE:
1088b922 5878 emacs_abort ();
cf5c0175 5879
ee28be33
SM
5880 default:
5881 mark_vectorlike (ptr);
5882 }
cf5c0175 5883 }
169ee243 5884 break;
7146af97 5885
7146af97
JB
5886 case Lisp_Symbol:
5887 {
c70bbf06 5888 register struct Lisp_Symbol *ptr = XSYMBOL (obj);
7146af97
JB
5889 struct Lisp_Symbol *ptrx;
5890
8f11f7ec
SM
5891 if (ptr->gcmarkbit)
5892 break;
4f5c1376 5893 CHECK_ALLOCATED_AND_LIVE (live_symbol_p);
2336fe58 5894 ptr->gcmarkbit = 1;
c644523b
DA
5895 mark_object (ptr->function);
5896 mark_object (ptr->plist);
ce5b453a
SM
5897 switch (ptr->redirect)
5898 {
5899 case SYMBOL_PLAINVAL: mark_object (SYMBOL_VAL (ptr)); break;
5900 case SYMBOL_VARALIAS:
5901 {
5902 Lisp_Object tem;
5903 XSETSYMBOL (tem, SYMBOL_ALIAS (ptr));
5904 mark_object (tem);
5905 break;
5906 }
5907 case SYMBOL_LOCALIZED:
5908 {
5909 struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (ptr);
d73e321c
DA
5910 Lisp_Object where = blv->where;
5911 /* If the value is set up for a killed buffer or deleted
5912 frame, restore it's global binding. If the value is
5913 forwarded to a C variable, either it's not a Lisp_Object
5914 var, or it's staticpro'd already. */
5915 if ((BUFFERP (where) && !BUFFER_LIVE_P (XBUFFER (where)))
5916 || (FRAMEP (where) && !FRAME_LIVE_P (XFRAME (where))))
5917 swap_in_global_binding (ptr);
ce5b453a
SM
5918 mark_object (blv->where);
5919 mark_object (blv->valcell);
5920 mark_object (blv->defcell);
5921 break;
5922 }
5923 case SYMBOL_FORWARDED:
5924 /* If the value is forwarded to a buffer or keyboard field,
5925 these are marked when we see the corresponding object.
5926 And if it's forwarded to a C variable, either it's not
5927 a Lisp_Object var, or it's staticpro'd already. */
5928 break;
1088b922 5929 default: emacs_abort ();
ce5b453a 5930 }
c644523b
DA
5931 if (!PURE_POINTER_P (XSTRING (ptr->name)))
5932 MARK_STRING (XSTRING (ptr->name));
0c94c8d6 5933 MARK_INTERVAL_TREE (string_intervals (ptr->name));
177c0ea7 5934
7146af97
JB
5935 ptr = ptr->next;
5936 if (ptr)
5937 {
7555c33f 5938 ptrx = ptr; /* Use of ptrx avoids compiler bug on Sun. */
7146af97 5939 XSETSYMBOL (obj, ptrx);
49723c04 5940 goto loop;
7146af97
JB
5941 }
5942 }
5943 break;
5944
a0a38eb7 5945 case Lisp_Misc:
4f5c1376 5946 CHECK_ALLOCATED_AND_LIVE (live_misc_p);
b766f870 5947
7555c33f
SM
5948 if (XMISCANY (obj)->gcmarkbit)
5949 break;
5950
5951 switch (XMISCTYPE (obj))
a0a38eb7 5952 {
7555c33f
SM
5953 case Lisp_Misc_Marker:
5954 /* DO NOT mark thru the marker's chain.
5955 The buffer's markers chain does not preserve markers from gc;
5956 instead, markers are removed from the chain when freed by gc. */
36429c89 5957 XMISCANY (obj)->gcmarkbit = 1;
7555c33f 5958 break;
465edf35 5959
7555c33f
SM
5960 case Lisp_Misc_Save_Value:
5961 XMISCANY (obj)->gcmarkbit = 1;
7555c33f 5962 {
7b1123d8
PE
5963 struct Lisp_Save_Value *ptr = XSAVE_VALUE (obj);
5964 /* If `save_type' is zero, `data[0].pointer' is the address
73ebd38f
DA
5965 of a memory area containing `data[1].integer' potential
5966 Lisp_Objects. */
7b1123d8 5967 if (GC_MARK_STACK && ptr->save_type == SAVE_TYPE_MEMORY)
7555c33f 5968 {
c50cf2ea 5969 Lisp_Object *p = ptr->data[0].pointer;
7555c33f 5970 ptrdiff_t nelt;
73ebd38f 5971 for (nelt = ptr->data[1].integer; nelt > 0; nelt--, p++)
7555c33f
SM
5972 mark_maybe_object (*p);
5973 }
73ebd38f 5974 else
73ebd38f
DA
5975 {
5976 /* Find Lisp_Objects in `data[N]' slots and mark them. */
7b1123d8
PE
5977 int i;
5978 for (i = 0; i < SAVE_VALUE_SLOTS; i++)
5979 if (save_type (ptr, i) == SAVE_OBJECT)
5980 mark_object (ptr->data[i].object);
73ebd38f 5981 }
7555c33f 5982 }
7555c33f
SM
5983 break;
5984
5985 case Lisp_Misc_Overlay:
5986 mark_overlay (XOVERLAY (obj));
5987 break;
5988
5989 default:
1088b922 5990 emacs_abort ();
a0a38eb7 5991 }
7146af97
JB
5992 break;
5993
5994 case Lisp_Cons:
7146af97
JB
5995 {
5996 register struct Lisp_Cons *ptr = XCONS (obj);
8f11f7ec
SM
5997 if (CONS_MARKED_P (ptr))
5998 break;
4f5c1376 5999 CHECK_ALLOCATED_AND_LIVE (live_cons_p);
08b7c2cb 6000 CONS_MARK (ptr);
c54ca951 6001 /* If the cdr is nil, avoid recursion for the car. */
c644523b 6002 if (EQ (ptr->u.cdr, Qnil))
c54ca951 6003 {
c644523b 6004 obj = ptr->car;
1342fc6f 6005 cdr_count = 0;
c54ca951
RS
6006 goto loop;
6007 }
c644523b
DA
6008 mark_object (ptr->car);
6009 obj = ptr->u.cdr;
1342fc6f
RS
6010 cdr_count++;
6011 if (cdr_count == mark_object_loop_halt)
1088b922 6012 emacs_abort ();
7146af97
JB
6013 goto loop;
6014 }
6015
7146af97 6016 case Lisp_Float:
4f5c1376 6017 CHECK_ALLOCATED_AND_LIVE (live_float_p);
ab6780cd 6018 FLOAT_MARK (XFLOAT (obj));
7146af97 6019 break;
7146af97 6020
2de9f71c 6021 case_Lisp_Int:
7146af97
JB
6022 break;
6023
6024 default:
1088b922 6025 emacs_abort ();
7146af97 6026 }
4f5c1376
GM
6027
6028#undef CHECK_LIVE
6029#undef CHECK_ALLOCATED
6030#undef CHECK_ALLOCATED_AND_LIVE
7146af97 6031}
4a729fd8 6032/* Mark the Lisp pointers in the terminal objects.
0ba2624f 6033 Called by Fgarbage_collect. */
4a729fd8 6034
4a729fd8
SM
6035static void
6036mark_terminals (void)
6037{
6038 struct terminal *t;
6039 for (t = terminal_list; t; t = t->next_terminal)
6040 {
6041 eassert (t->name != NULL);
354884c4 6042#ifdef HAVE_WINDOW_SYSTEM
96ad0af7
YM
6043 /* If a terminal object is reachable from a stacpro'ed object,
6044 it might have been marked already. Make sure the image cache
6045 gets marked. */
6046 mark_image_cache (t->image_cache);
354884c4 6047#endif /* HAVE_WINDOW_SYSTEM */
96ad0af7
YM
6048 if (!VECTOR_MARKED_P (t))
6049 mark_vectorlike ((struct Lisp_Vector *)t);
4a729fd8
SM
6050 }
6051}
6052
6053
084b1a0c 6054
41c28a37
GM
6055/* Value is non-zero if OBJ will survive the current GC because it's
6056 either marked or does not need to be marked to survive. */
6057
fce31d69 6058bool
971de7fb 6059survives_gc_p (Lisp_Object obj)
41c28a37 6060{
fce31d69 6061 bool survives_p;
177c0ea7 6062
8e50cc2d 6063 switch (XTYPE (obj))
41c28a37 6064 {
2de9f71c 6065 case_Lisp_Int:
41c28a37
GM
6066 survives_p = 1;
6067 break;
6068
6069 case Lisp_Symbol:
2336fe58 6070 survives_p = XSYMBOL (obj)->gcmarkbit;
41c28a37
GM
6071 break;
6072
6073 case Lisp_Misc:
67ee9f6e 6074 survives_p = XMISCANY (obj)->gcmarkbit;
41c28a37
GM
6075 break;
6076
6077 case Lisp_String:
08b7c2cb 6078 survives_p = STRING_MARKED_P (XSTRING (obj));
41c28a37
GM
6079 break;
6080
6081 case Lisp_Vectorlike:
8e50cc2d 6082 survives_p = SUBRP (obj) || VECTOR_MARKED_P (XVECTOR (obj));
41c28a37
GM
6083 break;
6084
6085 case Lisp_Cons:
08b7c2cb 6086 survives_p = CONS_MARKED_P (XCONS (obj));
41c28a37
GM
6087 break;
6088
41c28a37 6089 case Lisp_Float:
ab6780cd 6090 survives_p = FLOAT_MARKED_P (XFLOAT (obj));
41c28a37 6091 break;
41c28a37
GM
6092
6093 default:
1088b922 6094 emacs_abort ();
41c28a37
GM
6095 }
6096
34400008 6097 return survives_p || PURE_POINTER_P ((void *) XPNTR (obj));
41c28a37
GM
6098}
6099
6100
7146af97 6101\f
1a4f1e2c 6102/* Sweep: find all structures not marked, and free them. */
7146af97
JB
6103
6104static void
971de7fb 6105gc_sweep (void)
7146af97 6106{
41c28a37
GM
6107 /* Remove or mark entries in weak hash tables.
6108 This must be done before any object is unmarked. */
6109 sweep_weak_hash_tables ();
6110
2e471eb5 6111 sweep_strings ();
e499d0ee 6112 check_string_bytes (!noninteractive);
7146af97
JB
6113
6114 /* Put all unmarked conses on free list */
6115 {
6116 register struct cons_block *cblk;
6ca94ac9 6117 struct cons_block **cprev = &cons_block;
7146af97 6118 register int lim = cons_block_index;
c0c5c8ae 6119 EMACS_INT num_free = 0, num_used = 0;
7146af97
JB
6120
6121 cons_free_list = 0;
177c0ea7 6122
6ca94ac9 6123 for (cblk = cons_block; cblk; cblk = *cprev)
7146af97 6124 {
3ae2e3a3 6125 register int i = 0;
6ca94ac9 6126 int this_free = 0;
3ae2e3a3
RS
6127 int ilim = (lim + BITS_PER_INT - 1) / BITS_PER_INT;
6128
6129 /* Scan the mark bits an int at a time. */
47ea7f44 6130 for (i = 0; i < ilim; i++)
3ae2e3a3
RS
6131 {
6132 if (cblk->gcmarkbits[i] == -1)
6133 {
6134 /* Fast path - all cons cells for this int are marked. */
6135 cblk->gcmarkbits[i] = 0;
6136 num_used += BITS_PER_INT;
6137 }
6138 else
6139 {
6140 /* Some cons cells for this int are not marked.
6141 Find which ones, and free them. */
6142 int start, pos, stop;
6143
6144 start = i * BITS_PER_INT;
6145 stop = lim - start;
6146 if (stop > BITS_PER_INT)
6147 stop = BITS_PER_INT;
6148 stop += start;
6149
6150 for (pos = start; pos < stop; pos++)
6151 {
6152 if (!CONS_MARKED_P (&cblk->conses[pos]))
6153 {
6154 this_free++;
6155 cblk->conses[pos].u.chain = cons_free_list;
6156 cons_free_list = &cblk->conses[pos];
34400008 6157#if GC_MARK_STACK
c644523b 6158 cons_free_list->car = Vdead;
34400008 6159#endif
3ae2e3a3
RS
6160 }
6161 else
6162 {
6163 num_used++;
6164 CONS_UNMARK (&cblk->conses[pos]);
6165 }
6166 }
6167 }
6168 }
6169
7146af97 6170 lim = CONS_BLOCK_SIZE;
6ca94ac9
KH
6171 /* If this block contains only free conses and we have already
6172 seen more than two blocks worth of free conses then deallocate
6173 this block. */
6feef451 6174 if (this_free == CONS_BLOCK_SIZE && num_free > CONS_BLOCK_SIZE)
6ca94ac9 6175 {
6ca94ac9
KH
6176 *cprev = cblk->next;
6177 /* Unhook from the free list. */
28a099a4 6178 cons_free_list = cblk->conses[0].u.chain;
08b7c2cb 6179 lisp_align_free (cblk);
6ca94ac9
KH
6180 }
6181 else
6feef451
AS
6182 {
6183 num_free += this_free;
6184 cprev = &cblk->next;
6185 }
7146af97
JB
6186 }
6187 total_conses = num_used;
6188 total_free_conses = num_free;
6189 }
6190
7146af97
JB
6191 /* Put all unmarked floats on free list */
6192 {
6193 register struct float_block *fblk;
6ca94ac9 6194 struct float_block **fprev = &float_block;
7146af97 6195 register int lim = float_block_index;
c0c5c8ae 6196 EMACS_INT num_free = 0, num_used = 0;
7146af97
JB
6197
6198 float_free_list = 0;
177c0ea7 6199
6ca94ac9 6200 for (fblk = float_block; fblk; fblk = *fprev)
7146af97
JB
6201 {
6202 register int i;
6ca94ac9 6203 int this_free = 0;
7146af97 6204 for (i = 0; i < lim; i++)
ab6780cd 6205 if (!FLOAT_MARKED_P (&fblk->floats[i]))
7146af97 6206 {
6ca94ac9 6207 this_free++;
28a099a4 6208 fblk->floats[i].u.chain = float_free_list;
7146af97
JB
6209 float_free_list = &fblk->floats[i];
6210 }
6211 else
6212 {
6213 num_used++;
ab6780cd 6214 FLOAT_UNMARK (&fblk->floats[i]);
7146af97
JB
6215 }
6216 lim = FLOAT_BLOCK_SIZE;
6ca94ac9
KH
6217 /* If this block contains only free floats and we have already
6218 seen more than two blocks worth of free floats then deallocate
6219 this block. */
6feef451 6220 if (this_free == FLOAT_BLOCK_SIZE && num_free > FLOAT_BLOCK_SIZE)
6ca94ac9 6221 {
6ca94ac9
KH
6222 *fprev = fblk->next;
6223 /* Unhook from the free list. */
28a099a4 6224 float_free_list = fblk->floats[0].u.chain;
ab6780cd 6225 lisp_align_free (fblk);
6ca94ac9
KH
6226 }
6227 else
6feef451
AS
6228 {
6229 num_free += this_free;
6230 fprev = &fblk->next;
6231 }
7146af97
JB
6232 }
6233 total_floats = num_used;
6234 total_free_floats = num_free;
6235 }
7146af97 6236
d5e35230
JA
6237 /* Put all unmarked intervals on free list */
6238 {
6239 register struct interval_block *iblk;
6ca94ac9 6240 struct interval_block **iprev = &interval_block;
d5e35230 6241 register int lim = interval_block_index;
c0c5c8ae 6242 EMACS_INT num_free = 0, num_used = 0;
d5e35230
JA
6243
6244 interval_free_list = 0;
6245
6ca94ac9 6246 for (iblk = interval_block; iblk; iblk = *iprev)
d5e35230
JA
6247 {
6248 register int i;
6ca94ac9 6249 int this_free = 0;
d5e35230
JA
6250
6251 for (i = 0; i < lim; i++)
6252 {
2336fe58 6253 if (!iblk->intervals[i].gcmarkbit)
d5e35230 6254 {
0c94c8d6 6255 set_interval_parent (&iblk->intervals[i], interval_free_list);
d5e35230 6256 interval_free_list = &iblk->intervals[i];
6ca94ac9 6257 this_free++;
d5e35230
JA
6258 }
6259 else
6260 {
6261 num_used++;
2336fe58 6262 iblk->intervals[i].gcmarkbit = 0;
d5e35230
JA
6263 }
6264 }
6265 lim = INTERVAL_BLOCK_SIZE;
6ca94ac9
KH
6266 /* If this block contains only free intervals and we have already
6267 seen more than two blocks worth of free intervals then
6268 deallocate this block. */
6feef451 6269 if (this_free == INTERVAL_BLOCK_SIZE && num_free > INTERVAL_BLOCK_SIZE)
6ca94ac9 6270 {
6ca94ac9
KH
6271 *iprev = iblk->next;
6272 /* Unhook from the free list. */
439d5cb4 6273 interval_free_list = INTERVAL_PARENT (&iblk->intervals[0]);
c8099634 6274 lisp_free (iblk);
6ca94ac9
KH
6275 }
6276 else
6feef451
AS
6277 {
6278 num_free += this_free;
6279 iprev = &iblk->next;
6280 }
d5e35230
JA
6281 }
6282 total_intervals = num_used;
6283 total_free_intervals = num_free;
6284 }
d5e35230 6285
7146af97
JB
6286 /* Put all unmarked symbols on free list */
6287 {
6288 register struct symbol_block *sblk;
6ca94ac9 6289 struct symbol_block **sprev = &symbol_block;
7146af97 6290 register int lim = symbol_block_index;
c0c5c8ae 6291 EMACS_INT num_free = 0, num_used = 0;
7146af97 6292
d285b373 6293 symbol_free_list = NULL;
177c0ea7 6294
6ca94ac9 6295 for (sblk = symbol_block; sblk; sblk = *sprev)
7146af97 6296 {
6ca94ac9 6297 int this_free = 0;
d55c12ed
AS
6298 union aligned_Lisp_Symbol *sym = sblk->symbols;
6299 union aligned_Lisp_Symbol *end = sym + lim;
d285b373
GM
6300
6301 for (; sym < end; ++sym)
6302 {
20035321
SM
6303 /* Check if the symbol was created during loadup. In such a case
6304 it might be pointed to by pure bytecode which we don't trace,
6305 so we conservatively assume that it is live. */
fce31d69 6306 bool pure_p = PURE_POINTER_P (XSTRING (sym->s.name));
177c0ea7 6307
d55c12ed 6308 if (!sym->s.gcmarkbit && !pure_p)
d285b373 6309 {
d55c12ed
AS
6310 if (sym->s.redirect == SYMBOL_LOCALIZED)
6311 xfree (SYMBOL_BLV (&sym->s));
6312 sym->s.next = symbol_free_list;
6313 symbol_free_list = &sym->s;
34400008 6314#if GC_MARK_STACK
c644523b 6315 symbol_free_list->function = Vdead;
34400008 6316#endif
d285b373
GM
6317 ++this_free;
6318 }
6319 else
6320 {
6321 ++num_used;
6322 if (!pure_p)
c644523b 6323 UNMARK_STRING (XSTRING (sym->s.name));
d55c12ed 6324 sym->s.gcmarkbit = 0;
d285b373
GM
6325 }
6326 }
177c0ea7 6327
7146af97 6328 lim = SYMBOL_BLOCK_SIZE;
6ca94ac9
KH
6329 /* If this block contains only free symbols and we have already
6330 seen more than two blocks worth of free symbols then deallocate
6331 this block. */
6feef451 6332 if (this_free == SYMBOL_BLOCK_SIZE && num_free > SYMBOL_BLOCK_SIZE)
6ca94ac9 6333 {
6ca94ac9
KH
6334 *sprev = sblk->next;
6335 /* Unhook from the free list. */
d55c12ed 6336 symbol_free_list = sblk->symbols[0].s.next;
c8099634 6337 lisp_free (sblk);
6ca94ac9
KH
6338 }
6339 else
6feef451
AS
6340 {
6341 num_free += this_free;
6342 sprev = &sblk->next;
6343 }
7146af97
JB
6344 }
6345 total_symbols = num_used;
6346 total_free_symbols = num_free;
6347 }
6348
a9faeabe
RS
6349 /* Put all unmarked misc's on free list.
6350 For a marker, first unchain it from the buffer it points into. */
7146af97
JB
6351 {
6352 register struct marker_block *mblk;
6ca94ac9 6353 struct marker_block **mprev = &marker_block;
7146af97 6354 register int lim = marker_block_index;
c0c5c8ae 6355 EMACS_INT num_free = 0, num_used = 0;
7146af97
JB
6356
6357 marker_free_list = 0;
177c0ea7 6358
6ca94ac9 6359 for (mblk = marker_block; mblk; mblk = *mprev)
7146af97
JB
6360 {
6361 register int i;
6ca94ac9 6362 int this_free = 0;
fa05e253 6363
7146af97 6364 for (i = 0; i < lim; i++)
465edf35 6365 {
d55c12ed 6366 if (!mblk->markers[i].m.u_any.gcmarkbit)
465edf35 6367 {
d55c12ed
AS
6368 if (mblk->markers[i].m.u_any.type == Lisp_Misc_Marker)
6369 unchain_marker (&mblk->markers[i].m.u_marker);
fa05e253
RS
6370 /* Set the type of the freed object to Lisp_Misc_Free.
6371 We could leave the type alone, since nobody checks it,
465edf35 6372 but this might catch bugs faster. */
d55c12ed
AS
6373 mblk->markers[i].m.u_marker.type = Lisp_Misc_Free;
6374 mblk->markers[i].m.u_free.chain = marker_free_list;
6375 marker_free_list = &mblk->markers[i].m;
6ca94ac9 6376 this_free++;
465edf35
KH
6377 }
6378 else
6379 {
6380 num_used++;
d55c12ed 6381 mblk->markers[i].m.u_any.gcmarkbit = 0;
465edf35
KH
6382 }
6383 }
7146af97 6384 lim = MARKER_BLOCK_SIZE;
6ca94ac9
KH
6385 /* If this block contains only free markers and we have already
6386 seen more than two blocks worth of free markers then deallocate
6387 this block. */
6feef451 6388 if (this_free == MARKER_BLOCK_SIZE && num_free > MARKER_BLOCK_SIZE)
6ca94ac9 6389 {
6ca94ac9
KH
6390 *mprev = mblk->next;
6391 /* Unhook from the free list. */
d55c12ed 6392 marker_free_list = mblk->markers[0].m.u_free.chain;
c8099634 6393 lisp_free (mblk);
6ca94ac9
KH
6394 }
6395 else
6feef451
AS
6396 {
6397 num_free += this_free;
6398 mprev = &mblk->next;
6399 }
7146af97
JB
6400 }
6401
6402 total_markers = num_used;
6403 total_free_markers = num_free;
6404 }
6405
6406 /* Free all unmarked buffers */
6407 {
3e98c68e 6408 register struct buffer *buffer, **bprev = &all_buffers;
7146af97 6409
3ab6e069 6410 total_buffers = 0;
3e98c68e 6411 for (buffer = all_buffers; buffer; buffer = *bprev)
3ef06d12 6412 if (!VECTOR_MARKED_P (buffer))
7146af97 6413 {
914adc42 6414 *bprev = buffer->next;
34400008 6415 lisp_free (buffer);
7146af97
JB
6416 }
6417 else
6418 {
3ef06d12 6419 VECTOR_UNMARK (buffer);
8707c1e5
DA
6420 /* Do not use buffer_(set|get)_intervals here. */
6421 buffer->text->intervals = balance_intervals (buffer->text->intervals);
3ab6e069 6422 total_buffers++;
914adc42 6423 bprev = &buffer->next;
7146af97
JB
6424 }
6425 }
6426
f3372c87 6427 sweep_vectors ();
e499d0ee 6428 check_string_bytes (!noninteractive);
7146af97 6429}
7146af97 6430
7146af97 6431
7146af97 6432
7146af97 6433\f
20d24714
JB
6434/* Debugging aids. */
6435
31ce1c91 6436DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, 0,
a6266d23 6437 doc: /* Return the address of the last byte Emacs has allocated, divided by 1024.
228299fa 6438This may be helpful in debugging Emacs's memory usage.
7ee72033 6439We divide the value by 1024 to make sure it fits in a Lisp integer. */)
5842a27b 6440 (void)
20d24714
JB
6441{
6442 Lisp_Object end;
6443
d01a7826 6444 XSETINT (end, (intptr_t) (char *) sbrk (0) / 1024);
20d24714
JB
6445
6446 return end;
6447}
6448
310ea200 6449DEFUN ("memory-use-counts", Fmemory_use_counts, Smemory_use_counts, 0, 0, 0,
a6266d23 6450 doc: /* Return a list of counters that measure how much consing there has been.
228299fa
GM
6451Each of these counters increments for a certain kind of object.
6452The counters wrap around from the largest positive integer to zero.
6453Garbage collection does not decrease them.
6454The elements of the value are as follows:
6455 (CONSES FLOATS VECTOR-CELLS SYMBOLS STRING-CHARS MISCS INTERVALS STRINGS)
6456All are in units of 1 = one object consed
6457except for VECTOR-CELLS and STRING-CHARS, which count the total length of
6458objects consed.
6459MISCS include overlays, markers, and some internal types.
6460Frames, windows, buffers, and subprocesses count as vectors
7ee72033 6461 (but the contents of a buffer's text do not count here). */)
5842a27b 6462 (void)
310ea200 6463{
3438fe21 6464 return listn (CONSTYPE_HEAP, 8,
694b6c97
DA
6465 bounded_number (cons_cells_consed),
6466 bounded_number (floats_consed),
6467 bounded_number (vector_cells_consed),
6468 bounded_number (symbols_consed),
6469 bounded_number (string_chars_consed),
6470 bounded_number (misc_objects_consed),
6471 bounded_number (intervals_consed),
6472 bounded_number (strings_consed));
310ea200 6473}
e0b8c689 6474
8b058d44
EZ
6475/* Find at most FIND_MAX symbols which have OBJ as their value or
6476 function. This is used in gdbinit's `xwhichsymbols' command. */
6477
6478Lisp_Object
196e41e4 6479which_symbols (Lisp_Object obj, EMACS_INT find_max)
8b058d44
EZ
6480{
6481 struct symbol_block *sblk;
8d0eb4c2 6482 ptrdiff_t gc_count = inhibit_garbage_collection ();
8b058d44
EZ
6483 Lisp_Object found = Qnil;
6484
ca78dc43 6485 if (! DEADP (obj))
8b058d44
EZ
6486 {
6487 for (sblk = symbol_block; sblk; sblk = sblk->next)
6488 {
9426aba4 6489 union aligned_Lisp_Symbol *aligned_sym = sblk->symbols;
8b058d44
EZ
6490 int bn;
6491
9426aba4 6492 for (bn = 0; bn < SYMBOL_BLOCK_SIZE; bn++, aligned_sym++)
8b058d44 6493 {
9426aba4 6494 struct Lisp_Symbol *sym = &aligned_sym->s;
8b058d44
EZ
6495 Lisp_Object val;
6496 Lisp_Object tem;
6497
6498 if (sblk == symbol_block && bn >= symbol_block_index)
6499 break;
6500
6501 XSETSYMBOL (tem, sym);
6502 val = find_symbol_value (tem);
6503 if (EQ (val, obj)
c644523b
DA
6504 || EQ (sym->function, obj)
6505 || (!NILP (sym->function)
6506 && COMPILEDP (sym->function)
6507 && EQ (AREF (sym->function, COMPILED_BYTECODE), obj))
8b058d44
EZ
6508 || (!NILP (val)
6509 && COMPILEDP (val)
6510 && EQ (AREF (val, COMPILED_BYTECODE), obj)))
6511 {
6512 found = Fcons (tem, found);
6513 if (--find_max == 0)
6514 goto out;
6515 }
6516 }
6517 }
6518 }
6519
6520 out:
6521 unbind_to (gc_count, Qnil);
6522 return found;
6523}
6524
244ed907 6525#ifdef ENABLE_CHECKING
f4a681b0 6526
fce31d69 6527bool suppress_checking;
d3d47262 6528
e0b8c689 6529void
971de7fb 6530die (const char *msg, const char *file, int line)
e0b8c689 6531{
5013fc08 6532 fprintf (stderr, "\r\n%s:%d: Emacs fatal error: assertion failed: %s\r\n",
e0b8c689 6533 file, line, msg);
4d7e6e51 6534 terminate_due_to_signal (SIGABRT, INT_MAX);
e0b8c689 6535}
244ed907 6536#endif
20d24714 6537\f
b09cca6a 6538/* Initialization. */
7146af97 6539
dfcf069d 6540void
971de7fb 6541init_alloc_once (void)
7146af97
JB
6542{
6543 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
9e713715
GM
6544 purebeg = PUREBEG;
6545 pure_size = PURESIZE;
ab6780cd 6546
877935b1 6547#if GC_MARK_STACK || defined GC_MALLOC_CHECK
34400008
GM
6548 mem_init ();
6549 Vdead = make_pure_string ("DEAD", 4, 4, 0);
6550#endif
9e713715 6551
d1658221 6552#ifdef DOUG_LEA_MALLOC
b09cca6a
SM
6553 mallopt (M_TRIM_THRESHOLD, 128 * 1024); /* Trim threshold. */
6554 mallopt (M_MMAP_THRESHOLD, 64 * 1024); /* Mmap threshold. */
6555 mallopt (M_MMAP_MAX, MMAP_MAX_AREAS); /* Max. number of mmap'ed areas. */
d1658221 6556#endif
7146af97 6557 init_strings ();
f3372c87 6558 init_vectors ();
d5e35230 6559
24d8a105 6560 refill_memory_reserve ();
0dd6d66d 6561 gc_cons_threshold = GC_DEFAULT_THRESHOLD;
7146af97
JB
6562}
6563
dfcf069d 6564void
971de7fb 6565init_alloc (void)
7146af97
JB
6566{
6567 gcprolist = 0;
630686c8 6568 byte_stack_list = 0;
182ff242
GM
6569#if GC_MARK_STACK
6570#if !defined GC_SAVE_REGISTERS_ON_STACK && !defined GC_SETJMP_WORKS
6571 setjmp_tested_p = longjmps_done = 0;
6572#endif
6573#endif
2c5bd608
DL
6574 Vgc_elapsed = make_float (0.0);
6575 gcs_done = 0;
7146af97
JB
6576}
6577
6578void
971de7fb 6579syms_of_alloc (void)
7146af97 6580{
29208e82 6581 DEFVAR_INT ("gc-cons-threshold", gc_cons_threshold,
fb7ada5f 6582 doc: /* Number of bytes of consing between garbage collections.
228299fa
GM
6583Garbage collection can happen automatically once this many bytes have been
6584allocated since the last garbage collection. All data types count.
7146af97 6585
228299fa 6586Garbage collection happens automatically only when `eval' is called.
7146af97 6587
228299fa 6588By binding this temporarily to a large number, you can effectively
96f077ad
SM
6589prevent garbage collection during a part of the program.
6590See also `gc-cons-percentage'. */);
6591
29208e82 6592 DEFVAR_LISP ("gc-cons-percentage", Vgc_cons_percentage,
fb7ada5f 6593 doc: /* Portion of the heap used for allocation.
96f077ad
SM
6594Garbage collection can happen automatically once this portion of the heap
6595has been allocated since the last garbage collection.
6596If this portion is smaller than `gc-cons-threshold', this is ignored. */);
6597 Vgc_cons_percentage = make_float (0.1);
0819585c 6598
29208e82 6599 DEFVAR_INT ("pure-bytes-used", pure_bytes_used,
333f9019 6600 doc: /* Number of bytes of shareable Lisp data allocated so far. */);
0819585c 6601
29208e82 6602 DEFVAR_INT ("cons-cells-consed", cons_cells_consed,
a6266d23 6603 doc: /* Number of cons cells that have been consed so far. */);
0819585c 6604
29208e82 6605 DEFVAR_INT ("floats-consed", floats_consed,
a6266d23 6606 doc: /* Number of floats that have been consed so far. */);
0819585c 6607
29208e82 6608 DEFVAR_INT ("vector-cells-consed", vector_cells_consed,
a6266d23 6609 doc: /* Number of vector cells that have been consed so far. */);
0819585c 6610
29208e82 6611 DEFVAR_INT ("symbols-consed", symbols_consed,
a6266d23 6612 doc: /* Number of symbols that have been consed so far. */);
0819585c 6613
29208e82 6614 DEFVAR_INT ("string-chars-consed", string_chars_consed,
a6266d23 6615 doc: /* Number of string characters that have been consed so far. */);
0819585c 6616
29208e82 6617 DEFVAR_INT ("misc-objects-consed", misc_objects_consed,
01a6dcc8
GM
6618 doc: /* Number of miscellaneous objects that have been consed so far.
6619These include markers and overlays, plus certain objects not visible
6620to users. */);
2e471eb5 6621
29208e82 6622 DEFVAR_INT ("intervals-consed", intervals_consed,
a6266d23 6623 doc: /* Number of intervals that have been consed so far. */);
7146af97 6624
29208e82 6625 DEFVAR_INT ("strings-consed", strings_consed,
a6266d23 6626 doc: /* Number of strings that have been consed so far. */);
228299fa 6627
29208e82 6628 DEFVAR_LISP ("purify-flag", Vpurify_flag,
a6266d23 6629 doc: /* Non-nil means loading Lisp code in order to dump an executable.
e9515805
SM
6630This means that certain objects should be allocated in shared (pure) space.
6631It can also be set to a hash-table, in which case this table is used to
6632do hash-consing of the objects allocated to pure space. */);
228299fa 6633
29208e82 6634 DEFVAR_BOOL ("garbage-collection-messages", garbage_collection_messages,
a6266d23 6635 doc: /* Non-nil means display messages at start and end of garbage collection. */);
299585ee
RS
6636 garbage_collection_messages = 0;
6637
29208e82 6638 DEFVAR_LISP ("post-gc-hook", Vpost_gc_hook,
a6266d23 6639 doc: /* Hook run after garbage collection has finished. */);
9e713715 6640 Vpost_gc_hook = Qnil;
cd3520a4 6641 DEFSYM (Qpost_gc_hook, "post-gc-hook");
9e713715 6642
29208e82 6643 DEFVAR_LISP ("memory-signal-data", Vmemory_signal_data,
74a54b04 6644 doc: /* Precomputed `signal' argument for memory-full error. */);
bcb61d60
KH
6645 /* We build this in advance because if we wait until we need it, we might
6646 not be able to allocate the memory to hold it. */
74a54b04 6647 Vmemory_signal_data
3438fe21 6648 = listn (CONSTYPE_PURE, 2, Qerror,
694b6c97 6649 build_pure_c_string ("Memory exhausted--use M-x save-some-buffers then exit and restart Emacs"));
74a54b04 6650
29208e82 6651 DEFVAR_LISP ("memory-full", Vmemory_full,
24d8a105 6652 doc: /* Non-nil means Emacs cannot get much more Lisp memory. */);
74a54b04 6653 Vmemory_full = Qnil;
bcb61d60 6654
fecbd8ff
SM
6655 DEFSYM (Qconses, "conses");
6656 DEFSYM (Qsymbols, "symbols");
6657 DEFSYM (Qmiscs, "miscs");
6658 DEFSYM (Qstrings, "strings");
6659 DEFSYM (Qvectors, "vectors");
6660 DEFSYM (Qfloats, "floats");
6661 DEFSYM (Qintervals, "intervals");
6662 DEFSYM (Qbuffers, "buffers");
5b835e1d
DA
6663 DEFSYM (Qstring_bytes, "string-bytes");
6664 DEFSYM (Qvector_slots, "vector-slots");
f8643a6b 6665 DEFSYM (Qheap, "heap");
3d80c99f 6666 DEFSYM (Qautomatic_gc, "Automatic GC");
5b835e1d 6667
cd3520a4
JB
6668 DEFSYM (Qgc_cons_threshold, "gc-cons-threshold");
6669 DEFSYM (Qchar_table_extra_slots, "char-table-extra-slots");
a59de17b 6670
29208e82 6671 DEFVAR_LISP ("gc-elapsed", Vgc_elapsed,
2c5bd608 6672 doc: /* Accumulated time elapsed in garbage collections.
e7415487 6673The time is in seconds as a floating point value. */);
29208e82 6674 DEFVAR_INT ("gcs-done", gcs_done,
e7415487 6675 doc: /* Accumulated number of garbage collections done. */);
2c5bd608 6676
7146af97
JB
6677 defsubr (&Scons);
6678 defsubr (&Slist);
6679 defsubr (&Svector);
6680 defsubr (&Smake_byte_code);
6681 defsubr (&Smake_list);
6682 defsubr (&Smake_vector);
6683 defsubr (&Smake_string);
7b07587b 6684 defsubr (&Smake_bool_vector);
7146af97
JB
6685 defsubr (&Smake_symbol);
6686 defsubr (&Smake_marker);
6687 defsubr (&Spurecopy);
6688 defsubr (&Sgarbage_collect);
20d24714 6689 defsubr (&Smemory_limit);
310ea200 6690 defsubr (&Smemory_use_counts);
34400008
GM
6691
6692#if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
6693 defsubr (&Sgc_status);
6694#endif
7146af97 6695}
5eceb8fb 6696
4706125e
PE
6697/* When compiled with GCC, GDB might say "No enum type named
6698 pvec_type" if we don't have at least one symbol with that type, and
6699 then xbacktrace could fail. Similarly for the other enums and
62aba0d4
FP
6700 their values. Some non-GCC compilers don't like these constructs. */
6701#ifdef __GNUC__
4706125e
PE
6702union
6703{
03a660a6
PE
6704 enum CHARTAB_SIZE_BITS CHARTAB_SIZE_BITS;
6705 enum CHAR_TABLE_STANDARD_SLOTS CHAR_TABLE_STANDARD_SLOTS;
6706 enum char_bits char_bits;
4706125e 6707 enum CHECK_LISP_OBJECT_TYPE CHECK_LISP_OBJECT_TYPE;
03a660a6 6708 enum DEFAULT_HASH_SIZE DEFAULT_HASH_SIZE;
4706125e 6709 enum enum_USE_LSB_TAG enum_USE_LSB_TAG;
03a660a6 6710 enum FLOAT_TO_STRING_BUFSIZE FLOAT_TO_STRING_BUFSIZE;
4706125e 6711 enum Lisp_Bits Lisp_Bits;
03a660a6
PE
6712 enum Lisp_Compiled Lisp_Compiled;
6713 enum maxargs maxargs;
6714 enum MAX_ALLOCA MAX_ALLOCA;
4706125e
PE
6715 enum More_Lisp_Bits More_Lisp_Bits;
6716 enum pvec_type pvec_type;
6717} const EXTERNALLY_VISIBLE gdb_make_enums_visible = {0};
62aba0d4 6718#endif /* __GNUC__ */