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