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