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