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