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