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