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