(scan_keyword_or_put_char, write_c_args): Use `fn'
[emacs.git] / src / alloc.c
blob1d7c9044c7cbfb2d500c820eadc3ebd446606969
1 /* Storage allocation and gc for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 86, 88, 93, 94, 95, 97, 98, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include <config.h>
23 #include <stdio.h>
25 /* Note that this declares bzero on OSF/1. How dumb. */
27 #include <signal.h>
29 /* GC_MALLOC_CHECK defined means perform validity checks of malloc'd
30 memory. Can do this only if using gmalloc.c. */
32 #if defined SYSTEM_MALLOC || defined DOUG_LEA_MALLOC
33 #undef GC_MALLOC_CHECK
34 #endif
36 /* This file is part of the core Lisp implementation, and thus must
37 deal with the real data structures. If the Lisp implementation is
38 replaced, this file likely will not be used. */
40 #undef HIDE_LISP_IMPLEMENTATION
41 #include "lisp.h"
42 #include "process.h"
43 #include "intervals.h"
44 #include "puresize.h"
45 #include "buffer.h"
46 #include "window.h"
47 #include "keyboard.h"
48 #include "frame.h"
49 #include "blockinput.h"
50 #include "charset.h"
51 #include "syssignal.h"
52 #include <setjmp.h>
54 #ifdef HAVE_UNISTD_H
55 #include <unistd.h>
56 #else
57 extern POINTER_TYPE *sbrk ();
58 #endif
60 #ifdef DOUG_LEA_MALLOC
62 #include <malloc.h>
63 /* malloc.h #defines this as size_t, at least in glibc2. */
64 #ifndef __malloc_size_t
65 #define __malloc_size_t int
66 #endif
68 /* Specify maximum number of areas to mmap. It would be nice to use a
69 value that explicitly means "no limit". */
71 #define MMAP_MAX_AREAS 100000000
73 #else /* not DOUG_LEA_MALLOC */
75 /* The following come from gmalloc.c. */
77 #define __malloc_size_t size_t
78 extern __malloc_size_t _bytes_used;
79 extern __malloc_size_t __malloc_extra_blocks;
81 #endif /* not DOUG_LEA_MALLOC */
83 /* Macro to verify that storage intended for Lisp objects is not
84 out of range to fit in the space for a pointer.
85 ADDRESS is the start of the block, and SIZE
86 is the amount of space within which objects can start. */
88 #define VALIDATE_LISP_STORAGE(address, size) \
89 do \
90 { \
91 Lisp_Object val; \
92 XSETCONS (val, (char *) address + size); \
93 if ((char *) XCONS (val) != (char *) address + size) \
94 { \
95 xfree (address); \
96 memory_full (); \
97 } \
98 } while (0)
100 /* Value of _bytes_used, when spare_memory was freed. */
102 static __malloc_size_t bytes_used_when_full;
104 /* Mark, unmark, query mark bit of a Lisp string. S must be a pointer
105 to a struct Lisp_String. */
107 #define MARK_STRING(S) ((S)->size |= MARKBIT)
108 #define UNMARK_STRING(S) ((S)->size &= ~MARKBIT)
109 #define STRING_MARKED_P(S) ((S)->size & MARKBIT)
111 /* Value is the number of bytes/chars of S, a pointer to a struct
112 Lisp_String. This must be used instead of STRING_BYTES (S) or
113 S->size during GC, because S->size contains the mark bit for
114 strings. */
116 #define GC_STRING_BYTES(S) (STRING_BYTES (S) & ~MARKBIT)
117 #define GC_STRING_CHARS(S) ((S)->size & ~MARKBIT)
119 /* Number of bytes of consing done since the last gc. */
121 int consing_since_gc;
123 /* Count the amount of consing of various sorts of space. */
125 EMACS_INT cons_cells_consed;
126 EMACS_INT floats_consed;
127 EMACS_INT vector_cells_consed;
128 EMACS_INT symbols_consed;
129 EMACS_INT string_chars_consed;
130 EMACS_INT misc_objects_consed;
131 EMACS_INT intervals_consed;
132 EMACS_INT strings_consed;
134 /* Number of bytes of consing since GC before another GC should be done. */
136 EMACS_INT gc_cons_threshold;
138 /* Nonzero during GC. */
140 int gc_in_progress;
142 /* Nonzero means display messages at beginning and end of GC. */
144 int garbage_collection_messages;
146 #ifndef VIRT_ADDR_VARIES
147 extern
148 #endif /* VIRT_ADDR_VARIES */
149 int malloc_sbrk_used;
151 #ifndef VIRT_ADDR_VARIES
152 extern
153 #endif /* VIRT_ADDR_VARIES */
154 int malloc_sbrk_unused;
156 /* Two limits controlling how much undo information to keep. */
158 EMACS_INT undo_limit;
159 EMACS_INT undo_strong_limit;
161 /* Number of live and free conses etc. */
163 static int total_conses, total_markers, total_symbols, total_vector_size;
164 static int total_free_conses, total_free_markers, total_free_symbols;
165 static int total_free_floats, total_floats;
167 /* Points to memory space allocated as "spare", to be freed if we run
168 out of memory. */
170 static char *spare_memory;
172 /* Amount of spare memory to keep in reserve. */
174 #define SPARE_MEMORY (1 << 14)
176 /* Number of extra blocks malloc should get when it needs more core. */
178 static int malloc_hysteresis;
180 /* Non-nil means defun should do purecopy on the function definition. */
182 Lisp_Object Vpurify_flag;
184 /* Non-nil means we are handling a memory-full error. */
186 Lisp_Object Vmemory_full;
188 #ifndef HAVE_SHM
190 /* Force it into data space! */
192 EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {0,};
193 #define PUREBEG (char *) pure
195 #else /* HAVE_SHM */
197 #define pure PURE_SEG_BITS /* Use shared memory segment */
198 #define PUREBEG (char *)PURE_SEG_BITS
200 #endif /* HAVE_SHM */
202 /* Pointer to the pure area, and its size. */
204 static char *purebeg;
205 static size_t pure_size;
207 /* Number of bytes of pure storage used before pure storage overflowed.
208 If this is non-zero, this implies that an overflow occurred. */
210 static size_t pure_bytes_used_before_overflow;
212 /* Value is non-zero if P points into pure space. */
214 #define PURE_POINTER_P(P) \
215 (((PNTR_COMPARISON_TYPE) (P) \
216 < (PNTR_COMPARISON_TYPE) ((char *) purebeg + pure_size)) \
217 && ((PNTR_COMPARISON_TYPE) (P) \
218 >= (PNTR_COMPARISON_TYPE) purebeg))
220 /* Index in pure at which next pure object will be allocated.. */
222 EMACS_INT pure_bytes_used;
224 /* If nonzero, this is a warning delivered by malloc and not yet
225 displayed. */
227 char *pending_malloc_warning;
229 /* Pre-computed signal argument for use when memory is exhausted. */
231 Lisp_Object Vmemory_signal_data;
233 /* Maximum amount of C stack to save when a GC happens. */
235 #ifndef MAX_SAVE_STACK
236 #define MAX_SAVE_STACK 16000
237 #endif
239 /* Buffer in which we save a copy of the C stack at each GC. */
241 char *stack_copy;
242 int stack_copy_size;
244 /* Non-zero means ignore malloc warnings. Set during initialization.
245 Currently not used. */
247 int ignore_warnings;
249 Lisp_Object Qgc_cons_threshold, Qchar_table_extra_slots;
251 /* Hook run after GC has finished. */
253 Lisp_Object Vpost_gc_hook, Qpost_gc_hook;
255 static void mark_buffer P_ ((Lisp_Object));
256 static void mark_kboards P_ ((void));
257 static void gc_sweep P_ ((void));
258 static void mark_glyph_matrix P_ ((struct glyph_matrix *));
259 static void mark_face_cache P_ ((struct face_cache *));
261 #ifdef HAVE_WINDOW_SYSTEM
262 static void mark_image P_ ((struct image *));
263 static void mark_image_cache P_ ((struct frame *));
264 #endif /* HAVE_WINDOW_SYSTEM */
266 static struct Lisp_String *allocate_string P_ ((void));
267 static void compact_small_strings P_ ((void));
268 static void free_large_strings P_ ((void));
269 static void sweep_strings P_ ((void));
271 extern int message_enable_multibyte;
273 /* When scanning the C stack for live Lisp objects, Emacs keeps track
274 of what memory allocated via lisp_malloc is intended for what
275 purpose. This enumeration specifies the type of memory. */
277 enum mem_type
279 MEM_TYPE_NON_LISP,
280 MEM_TYPE_BUFFER,
281 MEM_TYPE_CONS,
282 MEM_TYPE_STRING,
283 MEM_TYPE_MISC,
284 MEM_TYPE_SYMBOL,
285 MEM_TYPE_FLOAT,
286 /* Keep the following vector-like types together, with
287 MEM_TYPE_WINDOW being the last, and MEM_TYPE_VECTOR the
288 first. Or change the code of live_vector_p, for instance. */
289 MEM_TYPE_VECTOR,
290 MEM_TYPE_PROCESS,
291 MEM_TYPE_HASH_TABLE,
292 MEM_TYPE_FRAME,
293 MEM_TYPE_WINDOW
296 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
298 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
299 #include <stdio.h> /* For fprintf. */
300 #endif
302 /* A unique object in pure space used to make some Lisp objects
303 on free lists recognizable in O(1). */
305 Lisp_Object Vdead;
307 #ifdef GC_MALLOC_CHECK
309 enum mem_type allocated_mem_type;
310 int dont_register_blocks;
312 #endif /* GC_MALLOC_CHECK */
314 /* A node in the red-black tree describing allocated memory containing
315 Lisp data. Each such block is recorded with its start and end
316 address when it is allocated, and removed from the tree when it
317 is freed.
319 A red-black tree is a balanced binary tree with the following
320 properties:
322 1. Every node is either red or black.
323 2. Every leaf is black.
324 3. If a node is red, then both of its children are black.
325 4. Every simple path from a node to a descendant leaf contains
326 the same number of black nodes.
327 5. The root is always black.
329 When nodes are inserted into the tree, or deleted from the tree,
330 the tree is "fixed" so that these properties are always true.
332 A red-black tree with N internal nodes has height at most 2
333 log(N+1). Searches, insertions and deletions are done in O(log N).
334 Please see a text book about data structures for a detailed
335 description of red-black trees. Any book worth its salt should
336 describe them. */
338 struct mem_node
340 struct mem_node *left, *right, *parent;
342 /* Start and end of allocated region. */
343 void *start, *end;
345 /* Node color. */
346 enum {MEM_BLACK, MEM_RED} color;
348 /* Memory type. */
349 enum mem_type type;
352 /* Base address of stack. Set in main. */
354 Lisp_Object *stack_base;
356 /* Root of the tree describing allocated Lisp memory. */
358 static struct mem_node *mem_root;
360 /* Lowest and highest known address in the heap. */
362 static void *min_heap_address, *max_heap_address;
364 /* Sentinel node of the tree. */
366 static struct mem_node mem_z;
367 #define MEM_NIL &mem_z
369 static POINTER_TYPE *lisp_malloc P_ ((size_t, enum mem_type));
370 static struct Lisp_Vector *allocate_vectorlike P_ ((EMACS_INT, enum mem_type));
371 static void lisp_free P_ ((POINTER_TYPE *));
372 static void mark_stack P_ ((void));
373 static int live_vector_p P_ ((struct mem_node *, void *));
374 static int live_buffer_p P_ ((struct mem_node *, void *));
375 static int live_string_p P_ ((struct mem_node *, void *));
376 static int live_cons_p P_ ((struct mem_node *, void *));
377 static int live_symbol_p P_ ((struct mem_node *, void *));
378 static int live_float_p P_ ((struct mem_node *, void *));
379 static int live_misc_p P_ ((struct mem_node *, void *));
380 static void mark_maybe_object P_ ((Lisp_Object));
381 static void mark_memory P_ ((void *, void *));
382 static void mem_init P_ ((void));
383 static struct mem_node *mem_insert P_ ((void *, void *, enum mem_type));
384 static void mem_insert_fixup P_ ((struct mem_node *));
385 static void mem_rotate_left P_ ((struct mem_node *));
386 static void mem_rotate_right P_ ((struct mem_node *));
387 static void mem_delete P_ ((struct mem_node *));
388 static void mem_delete_fixup P_ ((struct mem_node *));
389 static INLINE struct mem_node *mem_find P_ ((void *));
391 #if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
392 static void check_gcpros P_ ((void));
393 #endif
395 #endif /* GC_MARK_STACK || GC_MALLOC_CHECK */
397 /* Recording what needs to be marked for gc. */
399 struct gcpro *gcprolist;
401 /* Addresses of staticpro'd variables. */
403 #define NSTATICS 1280
404 Lisp_Object *staticvec[NSTATICS] = {0};
406 /* Index of next unused slot in staticvec. */
408 int staticidx = 0;
410 static POINTER_TYPE *pure_alloc P_ ((size_t, int));
413 /* Value is SZ rounded up to the next multiple of ALIGNMENT.
414 ALIGNMENT must be a power of 2. */
416 #define ALIGN(SZ, ALIGNMENT) \
417 (((SZ) + (ALIGNMENT) - 1) & ~((ALIGNMENT) - 1))
421 /************************************************************************
422 Malloc
423 ************************************************************************/
425 /* Write STR to Vstandard_output plus some advice on how to free some
426 memory. Called when memory gets low. */
428 Lisp_Object
429 malloc_warning_1 (str)
430 Lisp_Object str;
432 Fprinc (str, Vstandard_output);
433 write_string ("\nKilling some buffers may delay running out of memory.\n", -1);
434 write_string ("However, certainly by the time you receive the 95% warning,\n", -1);
435 write_string ("you should clean up, kill this Emacs, and start a new one.", -1);
436 return Qnil;
440 /* Function malloc calls this if it finds we are near exhausting
441 storage. */
443 void
444 malloc_warning (str)
445 char *str;
447 pending_malloc_warning = str;
451 /* Display a malloc warning in buffer *Danger*. */
453 void
454 display_malloc_warning ()
456 register Lisp_Object val;
458 val = build_string (pending_malloc_warning);
459 pending_malloc_warning = 0;
460 internal_with_output_to_temp_buffer (" *Danger*", malloc_warning_1, val);
464 #ifdef DOUG_LEA_MALLOC
465 # define BYTES_USED (mallinfo ().arena)
466 #else
467 # define BYTES_USED _bytes_used
468 #endif
471 /* Called if malloc returns zero. */
473 void
474 memory_full ()
476 Vmemory_full = Qt;
478 #ifndef SYSTEM_MALLOC
479 bytes_used_when_full = BYTES_USED;
480 #endif
482 /* The first time we get here, free the spare memory. */
483 if (spare_memory)
485 free (spare_memory);
486 spare_memory = 0;
489 /* This used to call error, but if we've run out of memory, we could
490 get infinite recursion trying to build the string. */
491 while (1)
492 Fsignal (Qnil, Vmemory_signal_data);
496 /* Called if we can't allocate relocatable space for a buffer. */
498 void
499 buffer_memory_full ()
501 /* If buffers use the relocating allocator, no need to free
502 spare_memory, because we may have plenty of malloc space left
503 that we could get, and if we don't, the malloc that fails will
504 itself cause spare_memory to be freed. If buffers don't use the
505 relocating allocator, treat this like any other failing
506 malloc. */
508 #ifndef REL_ALLOC
509 memory_full ();
510 #endif
512 Vmemory_full = Qt;
514 /* This used to call error, but if we've run out of memory, we could
515 get infinite recursion trying to build the string. */
516 while (1)
517 Fsignal (Qnil, Vmemory_signal_data);
521 /* Like malloc but check for no memory and block interrupt input.. */
523 POINTER_TYPE *
524 xmalloc (size)
525 size_t size;
527 register POINTER_TYPE *val;
529 BLOCK_INPUT;
530 val = (POINTER_TYPE *) malloc (size);
531 UNBLOCK_INPUT;
533 if (!val && size)
534 memory_full ();
535 return val;
539 /* Like realloc but check for no memory and block interrupt input.. */
541 POINTER_TYPE *
542 xrealloc (block, size)
543 POINTER_TYPE *block;
544 size_t size;
546 register POINTER_TYPE *val;
548 BLOCK_INPUT;
549 /* We must call malloc explicitly when BLOCK is 0, since some
550 reallocs don't do this. */
551 if (! block)
552 val = (POINTER_TYPE *) malloc (size);
553 else
554 val = (POINTER_TYPE *) realloc (block, size);
555 UNBLOCK_INPUT;
557 if (!val && size) memory_full ();
558 return val;
562 /* Like free but block interrupt input.. */
564 void
565 xfree (block)
566 POINTER_TYPE *block;
568 BLOCK_INPUT;
569 free (block);
570 UNBLOCK_INPUT;
574 /* Like strdup, but uses xmalloc. */
576 char *
577 xstrdup (s)
578 const char *s;
580 size_t len = strlen (s) + 1;
581 char *p = (char *) xmalloc (len);
582 bcopy (s, p, len);
583 return p;
587 /* Like malloc but used for allocating Lisp data. NBYTES is the
588 number of bytes to allocate, TYPE describes the intended use of the
589 allcated memory block (for strings, for conses, ...). */
591 static POINTER_TYPE *
592 lisp_malloc (nbytes, type)
593 size_t nbytes;
594 enum mem_type type;
596 register void *val;
598 BLOCK_INPUT;
600 #ifdef GC_MALLOC_CHECK
601 allocated_mem_type = type;
602 #endif
604 val = (void *) malloc (nbytes);
606 #if GC_MARK_STACK && !defined GC_MALLOC_CHECK
607 if (val && type != MEM_TYPE_NON_LISP)
608 mem_insert (val, (char *) val + nbytes, type);
609 #endif
611 UNBLOCK_INPUT;
612 if (!val && nbytes)
613 memory_full ();
614 return val;
618 /* Return a new buffer structure allocated from the heap with
619 a call to lisp_malloc. */
621 struct buffer *
622 allocate_buffer ()
624 struct buffer *b
625 = (struct buffer *) lisp_malloc (sizeof (struct buffer),
626 MEM_TYPE_BUFFER);
627 VALIDATE_LISP_STORAGE (b, sizeof *b);
628 return b;
632 /* Free BLOCK. This must be called to free memory allocated with a
633 call to lisp_malloc. */
635 static void
636 lisp_free (block)
637 POINTER_TYPE *block;
639 BLOCK_INPUT;
640 free (block);
641 #if GC_MARK_STACK && !defined GC_MALLOC_CHECK
642 mem_delete (mem_find (block));
643 #endif
644 UNBLOCK_INPUT;
648 /* Arranging to disable input signals while we're in malloc.
650 This only works with GNU malloc. To help out systems which can't
651 use GNU malloc, all the calls to malloc, realloc, and free
652 elsewhere in the code should be inside a BLOCK_INPUT/UNBLOCK_INPUT
653 pairs; unfortunately, we have no idea what C library functions
654 might call malloc, so we can't really protect them unless you're
655 using GNU malloc. Fortunately, most of the major operating can use
656 GNU malloc. */
658 #ifndef SYSTEM_MALLOC
659 #ifndef DOUG_LEA_MALLOC
660 extern void * (*__malloc_hook) P_ ((size_t));
661 extern void * (*__realloc_hook) P_ ((void *, size_t));
662 extern void (*__free_hook) P_ ((void *));
663 /* Else declared in malloc.h, perhaps with an extra arg. */
664 #endif /* DOUG_LEA_MALLOC */
665 static void * (*old_malloc_hook) ();
666 static void * (*old_realloc_hook) ();
667 static void (*old_free_hook) ();
669 /* This function is used as the hook for free to call. */
671 static void
672 emacs_blocked_free (ptr)
673 void *ptr;
675 BLOCK_INPUT;
677 #ifdef GC_MALLOC_CHECK
678 if (ptr)
680 struct mem_node *m;
682 m = mem_find (ptr);
683 if (m == MEM_NIL || m->start != ptr)
685 fprintf (stderr,
686 "Freeing `%p' which wasn't allocated with malloc\n", ptr);
687 abort ();
689 else
691 /* fprintf (stderr, "free %p...%p (%p)\n", m->start, m->end, ptr); */
692 mem_delete (m);
695 #endif /* GC_MALLOC_CHECK */
697 __free_hook = old_free_hook;
698 free (ptr);
700 /* If we released our reserve (due to running out of memory),
701 and we have a fair amount free once again,
702 try to set aside another reserve in case we run out once more. */
703 if (spare_memory == 0
704 /* Verify there is enough space that even with the malloc
705 hysteresis this call won't run out again.
706 The code here is correct as long as SPARE_MEMORY
707 is substantially larger than the block size malloc uses. */
708 && (bytes_used_when_full
709 > BYTES_USED + max (malloc_hysteresis, 4) * SPARE_MEMORY))
710 spare_memory = (char *) malloc ((size_t) SPARE_MEMORY);
712 __free_hook = emacs_blocked_free;
713 UNBLOCK_INPUT;
717 /* If we released our reserve (due to running out of memory),
718 and we have a fair amount free once again,
719 try to set aside another reserve in case we run out once more.
721 This is called when a relocatable block is freed in ralloc.c. */
723 void
724 refill_memory_reserve ()
726 if (spare_memory == 0)
727 spare_memory = (char *) malloc ((size_t) SPARE_MEMORY);
731 /* This function is the malloc hook that Emacs uses. */
733 static void *
734 emacs_blocked_malloc (size)
735 size_t size;
737 void *value;
739 BLOCK_INPUT;
740 __malloc_hook = old_malloc_hook;
741 #ifdef DOUG_LEA_MALLOC
742 mallopt (M_TOP_PAD, malloc_hysteresis * 4096);
743 #else
744 __malloc_extra_blocks = malloc_hysteresis;
745 #endif
747 value = (void *) malloc (size);
749 #ifdef GC_MALLOC_CHECK
751 struct mem_node *m = mem_find (value);
752 if (m != MEM_NIL)
754 fprintf (stderr, "Malloc returned %p which is already in use\n",
755 value);
756 fprintf (stderr, "Region in use is %p...%p, %u bytes, type %d\n",
757 m->start, m->end, (char *) m->end - (char *) m->start,
758 m->type);
759 abort ();
762 if (!dont_register_blocks)
764 mem_insert (value, (char *) value + max (1, size), allocated_mem_type);
765 allocated_mem_type = MEM_TYPE_NON_LISP;
768 #endif /* GC_MALLOC_CHECK */
770 __malloc_hook = emacs_blocked_malloc;
771 UNBLOCK_INPUT;
773 /* fprintf (stderr, "%p malloc\n", value); */
774 return value;
778 /* This function is the realloc hook that Emacs uses. */
780 static void *
781 emacs_blocked_realloc (ptr, size)
782 void *ptr;
783 size_t size;
785 void *value;
787 BLOCK_INPUT;
788 __realloc_hook = old_realloc_hook;
790 #ifdef GC_MALLOC_CHECK
791 if (ptr)
793 struct mem_node *m = mem_find (ptr);
794 if (m == MEM_NIL || m->start != ptr)
796 fprintf (stderr,
797 "Realloc of %p which wasn't allocated with malloc\n",
798 ptr);
799 abort ();
802 mem_delete (m);
805 /* fprintf (stderr, "%p -> realloc\n", ptr); */
807 /* Prevent malloc from registering blocks. */
808 dont_register_blocks = 1;
809 #endif /* GC_MALLOC_CHECK */
811 value = (void *) realloc (ptr, size);
813 #ifdef GC_MALLOC_CHECK
814 dont_register_blocks = 0;
817 struct mem_node *m = mem_find (value);
818 if (m != MEM_NIL)
820 fprintf (stderr, "Realloc returns memory that is already in use\n");
821 abort ();
824 /* Can't handle zero size regions in the red-black tree. */
825 mem_insert (value, (char *) value + max (size, 1), MEM_TYPE_NON_LISP);
828 /* fprintf (stderr, "%p <- realloc\n", value); */
829 #endif /* GC_MALLOC_CHECK */
831 __realloc_hook = emacs_blocked_realloc;
832 UNBLOCK_INPUT;
834 return value;
838 /* Called from main to set up malloc to use our hooks. */
840 void
841 uninterrupt_malloc ()
843 if (__free_hook != emacs_blocked_free)
844 old_free_hook = __free_hook;
845 __free_hook = emacs_blocked_free;
847 if (__malloc_hook != emacs_blocked_malloc)
848 old_malloc_hook = __malloc_hook;
849 __malloc_hook = emacs_blocked_malloc;
851 if (__realloc_hook != emacs_blocked_realloc)
852 old_realloc_hook = __realloc_hook;
853 __realloc_hook = emacs_blocked_realloc;
856 #endif /* not SYSTEM_MALLOC */
860 /***********************************************************************
861 Interval Allocation
862 ***********************************************************************/
864 /* Number of intervals allocated in an interval_block structure.
865 The 1020 is 1024 minus malloc overhead. */
867 #define INTERVAL_BLOCK_SIZE \
868 ((1020 - sizeof (struct interval_block *)) / sizeof (struct interval))
870 /* Intervals are allocated in chunks in form of an interval_block
871 structure. */
873 struct interval_block
875 struct interval_block *next;
876 struct interval intervals[INTERVAL_BLOCK_SIZE];
879 /* Current interval block. Its `next' pointer points to older
880 blocks. */
882 struct interval_block *interval_block;
884 /* Index in interval_block above of the next unused interval
885 structure. */
887 static int interval_block_index;
889 /* Number of free and live intervals. */
891 static int total_free_intervals, total_intervals;
893 /* List of free intervals. */
895 INTERVAL interval_free_list;
897 /* Total number of interval blocks now in use. */
899 int n_interval_blocks;
902 /* Initialize interval allocation. */
904 static void
905 init_intervals ()
907 interval_block
908 = (struct interval_block *) lisp_malloc (sizeof *interval_block,
909 MEM_TYPE_NON_LISP);
910 interval_block->next = 0;
911 bzero ((char *) interval_block->intervals, sizeof interval_block->intervals);
912 interval_block_index = 0;
913 interval_free_list = 0;
914 n_interval_blocks = 1;
918 /* Return a new interval. */
920 INTERVAL
921 make_interval ()
923 INTERVAL val;
925 if (interval_free_list)
927 val = interval_free_list;
928 interval_free_list = INTERVAL_PARENT (interval_free_list);
930 else
932 if (interval_block_index == INTERVAL_BLOCK_SIZE)
934 register struct interval_block *newi;
936 newi = (struct interval_block *) lisp_malloc (sizeof *newi,
937 MEM_TYPE_NON_LISP);
939 VALIDATE_LISP_STORAGE (newi, sizeof *newi);
940 newi->next = interval_block;
941 interval_block = newi;
942 interval_block_index = 0;
943 n_interval_blocks++;
945 val = &interval_block->intervals[interval_block_index++];
947 consing_since_gc += sizeof (struct interval);
948 intervals_consed++;
949 RESET_INTERVAL (val);
950 return val;
954 /* Mark Lisp objects in interval I. */
956 static void
957 mark_interval (i, dummy)
958 register INTERVAL i;
959 Lisp_Object dummy;
961 if (XMARKBIT (i->plist))
962 abort ();
963 mark_object (&i->plist);
964 XMARK (i->plist);
968 /* Mark the interval tree rooted in TREE. Don't call this directly;
969 use the macro MARK_INTERVAL_TREE instead. */
971 static void
972 mark_interval_tree (tree)
973 register INTERVAL tree;
975 /* No need to test if this tree has been marked already; this
976 function is always called through the MARK_INTERVAL_TREE macro,
977 which takes care of that. */
979 /* XMARK expands to an assignment; the LHS of an assignment can't be
980 a cast. */
981 XMARK (tree->up.obj);
983 traverse_intervals_noorder (tree, mark_interval, Qnil);
987 /* Mark the interval tree rooted in I. */
989 #define MARK_INTERVAL_TREE(i) \
990 do { \
991 if (!NULL_INTERVAL_P (i) \
992 && ! XMARKBIT (i->up.obj)) \
993 mark_interval_tree (i); \
994 } while (0)
997 /* The oddity in the call to XUNMARK is necessary because XUNMARK
998 expands to an assignment to its argument, and most C compilers
999 don't support casts on the left operand of `='. */
1001 #define UNMARK_BALANCE_INTERVALS(i) \
1002 do { \
1003 if (! NULL_INTERVAL_P (i)) \
1005 XUNMARK ((i)->up.obj); \
1006 (i) = balance_intervals (i); \
1008 } while (0)
1011 /* Number support. If NO_UNION_TYPE isn't in effect, we
1012 can't create number objects in macros. */
1013 #ifndef make_number
1014 Lisp_Object
1015 make_number (n)
1016 int n;
1018 Lisp_Object obj;
1019 obj.s.val = n;
1020 obj.s.type = Lisp_Int;
1021 return obj;
1023 #endif
1025 /***********************************************************************
1026 String Allocation
1027 ***********************************************************************/
1029 /* Lisp_Strings are allocated in string_block structures. When a new
1030 string_block is allocated, all the Lisp_Strings it contains are
1031 added to a free-list string_free_list. When a new Lisp_String is
1032 needed, it is taken from that list. During the sweep phase of GC,
1033 string_blocks that are entirely free are freed, except two which
1034 we keep.
1036 String data is allocated from sblock structures. Strings larger
1037 than LARGE_STRING_BYTES, get their own sblock, data for smaller
1038 strings is sub-allocated out of sblocks of size SBLOCK_SIZE.
1040 Sblocks consist internally of sdata structures, one for each
1041 Lisp_String. The sdata structure points to the Lisp_String it
1042 belongs to. The Lisp_String points back to the `u.data' member of
1043 its sdata structure.
1045 When a Lisp_String is freed during GC, it is put back on
1046 string_free_list, and its `data' member and its sdata's `string'
1047 pointer is set to null. The size of the string is recorded in the
1048 `u.nbytes' member of the sdata. So, sdata structures that are no
1049 longer used, can be easily recognized, and it's easy to compact the
1050 sblocks of small strings which we do in compact_small_strings. */
1052 /* Size in bytes of an sblock structure used for small strings. This
1053 is 8192 minus malloc overhead. */
1055 #define SBLOCK_SIZE 8188
1057 /* Strings larger than this are considered large strings. String data
1058 for large strings is allocated from individual sblocks. */
1060 #define LARGE_STRING_BYTES 1024
1062 /* Structure describing string memory sub-allocated from an sblock.
1063 This is where the contents of Lisp strings are stored. */
1065 struct sdata
1067 /* Back-pointer to the string this sdata belongs to. If null, this
1068 structure is free, and the NBYTES member of the union below
1069 contains the string's byte size (the same value that STRING_BYTES
1070 would return if STRING were non-null). If non-null, STRING_BYTES
1071 (STRING) is the size of the data, and DATA contains the string's
1072 contents. */
1073 struct Lisp_String *string;
1075 #ifdef GC_CHECK_STRING_BYTES
1077 EMACS_INT nbytes;
1078 unsigned char data[1];
1080 #define SDATA_NBYTES(S) (S)->nbytes
1081 #define SDATA_DATA(S) (S)->data
1083 #else /* not GC_CHECK_STRING_BYTES */
1085 union
1087 /* When STRING in non-null. */
1088 unsigned char data[1];
1090 /* When STRING is null. */
1091 EMACS_INT nbytes;
1092 } u;
1095 #define SDATA_NBYTES(S) (S)->u.nbytes
1096 #define SDATA_DATA(S) (S)->u.data
1098 #endif /* not GC_CHECK_STRING_BYTES */
1102 /* Structure describing a block of memory which is sub-allocated to
1103 obtain string data memory for strings. Blocks for small strings
1104 are of fixed size SBLOCK_SIZE. Blocks for large strings are made
1105 as large as needed. */
1107 struct sblock
1109 /* Next in list. */
1110 struct sblock *next;
1112 /* Pointer to the next free sdata block. This points past the end
1113 of the sblock if there isn't any space left in this block. */
1114 struct sdata *next_free;
1116 /* Start of data. */
1117 struct sdata first_data;
1120 /* Number of Lisp strings in a string_block structure. The 1020 is
1121 1024 minus malloc overhead. */
1123 #define STRINGS_IN_STRING_BLOCK \
1124 ((1020 - sizeof (struct string_block *)) / sizeof (struct Lisp_String))
1126 /* Structure describing a block from which Lisp_String structures
1127 are allocated. */
1129 struct string_block
1131 struct string_block *next;
1132 struct Lisp_String strings[STRINGS_IN_STRING_BLOCK];
1135 /* Head and tail of the list of sblock structures holding Lisp string
1136 data. We always allocate from current_sblock. The NEXT pointers
1137 in the sblock structures go from oldest_sblock to current_sblock. */
1139 static struct sblock *oldest_sblock, *current_sblock;
1141 /* List of sblocks for large strings. */
1143 static struct sblock *large_sblocks;
1145 /* List of string_block structures, and how many there are. */
1147 static struct string_block *string_blocks;
1148 static int n_string_blocks;
1150 /* Free-list of Lisp_Strings. */
1152 static struct Lisp_String *string_free_list;
1154 /* Number of live and free Lisp_Strings. */
1156 static int total_strings, total_free_strings;
1158 /* Number of bytes used by live strings. */
1160 static int total_string_size;
1162 /* Given a pointer to a Lisp_String S which is on the free-list
1163 string_free_list, return a pointer to its successor in the
1164 free-list. */
1166 #define NEXT_FREE_LISP_STRING(S) (*(struct Lisp_String **) (S))
1168 /* Return a pointer to the sdata structure belonging to Lisp string S.
1169 S must be live, i.e. S->data must not be null. S->data is actually
1170 a pointer to the `u.data' member of its sdata structure; the
1171 structure starts at a constant offset in front of that. */
1173 #ifdef GC_CHECK_STRING_BYTES
1175 #define SDATA_OF_STRING(S) \
1176 ((struct sdata *) ((S)->data - sizeof (struct Lisp_String *) \
1177 - sizeof (EMACS_INT)))
1179 #else /* not GC_CHECK_STRING_BYTES */
1181 #define SDATA_OF_STRING(S) \
1182 ((struct sdata *) ((S)->data - sizeof (struct Lisp_String *)))
1184 #endif /* not GC_CHECK_STRING_BYTES */
1186 /* Value is the size of an sdata structure large enough to hold NBYTES
1187 bytes of string data. The value returned includes a terminating
1188 NUL byte, the size of the sdata structure, and padding. */
1190 #ifdef GC_CHECK_STRING_BYTES
1192 #define SDATA_SIZE(NBYTES) \
1193 ((sizeof (struct Lisp_String *) \
1194 + (NBYTES) + 1 \
1195 + sizeof (EMACS_INT) \
1196 + sizeof (EMACS_INT) - 1) \
1197 & ~(sizeof (EMACS_INT) - 1))
1199 #else /* not GC_CHECK_STRING_BYTES */
1201 #define SDATA_SIZE(NBYTES) \
1202 ((sizeof (struct Lisp_String *) \
1203 + (NBYTES) + 1 \
1204 + sizeof (EMACS_INT) - 1) \
1205 & ~(sizeof (EMACS_INT) - 1))
1207 #endif /* not GC_CHECK_STRING_BYTES */
1209 /* Initialize string allocation. Called from init_alloc_once. */
1211 void
1212 init_strings ()
1214 total_strings = total_free_strings = total_string_size = 0;
1215 oldest_sblock = current_sblock = large_sblocks = NULL;
1216 string_blocks = NULL;
1217 n_string_blocks = 0;
1218 string_free_list = NULL;
1222 #ifdef GC_CHECK_STRING_BYTES
1224 static int check_string_bytes_count;
1226 void check_string_bytes P_ ((int));
1227 void check_sblock P_ ((struct sblock *));
1229 #define CHECK_STRING_BYTES(S) STRING_BYTES (S)
1232 /* Like GC_STRING_BYTES, but with debugging check. */
1235 string_bytes (s)
1236 struct Lisp_String *s;
1238 int nbytes = (s->size_byte < 0 ? s->size : s->size_byte) & ~MARKBIT;
1239 if (!PURE_POINTER_P (s)
1240 && s->data
1241 && nbytes != SDATA_NBYTES (SDATA_OF_STRING (s)))
1242 abort ();
1243 return nbytes;
1246 /* Check validity Lisp strings' string_bytes member in B. */
1248 void
1249 check_sblock (b)
1250 struct sblock *b;
1252 struct sdata *from, *end, *from_end;
1254 end = b->next_free;
1256 for (from = &b->first_data; from < end; from = from_end)
1258 /* Compute the next FROM here because copying below may
1259 overwrite data we need to compute it. */
1260 int nbytes;
1262 /* Check that the string size recorded in the string is the
1263 same as the one recorded in the sdata structure. */
1264 if (from->string)
1265 CHECK_STRING_BYTES (from->string);
1267 if (from->string)
1268 nbytes = GC_STRING_BYTES (from->string);
1269 else
1270 nbytes = SDATA_NBYTES (from);
1272 nbytes = SDATA_SIZE (nbytes);
1273 from_end = (struct sdata *) ((char *) from + nbytes);
1278 /* Check validity of Lisp strings' string_bytes member. ALL_P
1279 non-zero means check all strings, otherwise check only most
1280 recently allocated strings. Used for hunting a bug. */
1282 void
1283 check_string_bytes (all_p)
1284 int all_p;
1286 if (all_p)
1288 struct sblock *b;
1290 for (b = large_sblocks; b; b = b->next)
1292 struct Lisp_String *s = b->first_data.string;
1293 if (s)
1294 CHECK_STRING_BYTES (s);
1297 for (b = oldest_sblock; b; b = b->next)
1298 check_sblock (b);
1300 else
1301 check_sblock (current_sblock);
1304 #endif /* GC_CHECK_STRING_BYTES */
1307 /* Return a new Lisp_String. */
1309 static struct Lisp_String *
1310 allocate_string ()
1312 struct Lisp_String *s;
1314 /* If the free-list is empty, allocate a new string_block, and
1315 add all the Lisp_Strings in it to the free-list. */
1316 if (string_free_list == NULL)
1318 struct string_block *b;
1319 int i;
1321 b = (struct string_block *) lisp_malloc (sizeof *b, MEM_TYPE_STRING);
1322 VALIDATE_LISP_STORAGE (b, sizeof *b);
1323 bzero (b, sizeof *b);
1324 b->next = string_blocks;
1325 string_blocks = b;
1326 ++n_string_blocks;
1328 for (i = STRINGS_IN_STRING_BLOCK - 1; i >= 0; --i)
1330 s = b->strings + i;
1331 NEXT_FREE_LISP_STRING (s) = string_free_list;
1332 string_free_list = s;
1335 total_free_strings += STRINGS_IN_STRING_BLOCK;
1338 /* Pop a Lisp_String off the free-list. */
1339 s = string_free_list;
1340 string_free_list = NEXT_FREE_LISP_STRING (s);
1342 /* Probably not strictly necessary, but play it safe. */
1343 bzero (s, sizeof *s);
1345 --total_free_strings;
1346 ++total_strings;
1347 ++strings_consed;
1348 consing_since_gc += sizeof *s;
1350 #ifdef GC_CHECK_STRING_BYTES
1351 if (!noninteractive
1352 #ifdef MAC_OS8
1353 && current_sblock
1354 #endif
1357 if (++check_string_bytes_count == 200)
1359 check_string_bytes_count = 0;
1360 check_string_bytes (1);
1362 else
1363 check_string_bytes (0);
1365 #endif /* GC_CHECK_STRING_BYTES */
1367 return s;
1371 /* Set up Lisp_String S for holding NCHARS characters, NBYTES bytes,
1372 plus a NUL byte at the end. Allocate an sdata structure for S, and
1373 set S->data to its `u.data' member. Store a NUL byte at the end of
1374 S->data. Set S->size to NCHARS and S->size_byte to NBYTES. Free
1375 S->data if it was initially non-null. */
1377 void
1378 allocate_string_data (s, nchars, nbytes)
1379 struct Lisp_String *s;
1380 int nchars, nbytes;
1382 struct sdata *data, *old_data;
1383 struct sblock *b;
1384 int needed, old_nbytes;
1386 /* Determine the number of bytes needed to store NBYTES bytes
1387 of string data. */
1388 needed = SDATA_SIZE (nbytes);
1390 if (nbytes > LARGE_STRING_BYTES)
1392 size_t size = sizeof *b - sizeof (struct sdata) + needed;
1394 #ifdef DOUG_LEA_MALLOC
1395 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed
1396 because mapped region contents are not preserved in
1397 a dumped Emacs. */
1398 mallopt (M_MMAP_MAX, 0);
1399 #endif
1401 b = (struct sblock *) lisp_malloc (size, MEM_TYPE_NON_LISP);
1403 #ifdef DOUG_LEA_MALLOC
1404 /* Back to a reasonable maximum of mmap'ed areas. */
1405 mallopt (M_MMAP_MAX, MMAP_MAX_AREAS);
1406 #endif
1408 b->next_free = &b->first_data;
1409 b->first_data.string = NULL;
1410 b->next = large_sblocks;
1411 large_sblocks = b;
1413 else if (current_sblock == NULL
1414 || (((char *) current_sblock + SBLOCK_SIZE
1415 - (char *) current_sblock->next_free)
1416 < needed))
1418 /* Not enough room in the current sblock. */
1419 b = (struct sblock *) lisp_malloc (SBLOCK_SIZE, MEM_TYPE_NON_LISP);
1420 b->next_free = &b->first_data;
1421 b->first_data.string = NULL;
1422 b->next = NULL;
1424 if (current_sblock)
1425 current_sblock->next = b;
1426 else
1427 oldest_sblock = b;
1428 current_sblock = b;
1430 else
1431 b = current_sblock;
1433 old_data = s->data ? SDATA_OF_STRING (s) : NULL;
1434 old_nbytes = GC_STRING_BYTES (s);
1436 data = b->next_free;
1437 data->string = s;
1438 s->data = SDATA_DATA (data);
1439 #ifdef GC_CHECK_STRING_BYTES
1440 SDATA_NBYTES (data) = nbytes;
1441 #endif
1442 s->size = nchars;
1443 s->size_byte = nbytes;
1444 s->data[nbytes] = '\0';
1445 b->next_free = (struct sdata *) ((char *) data + needed);
1447 /* If S had already data assigned, mark that as free by setting its
1448 string back-pointer to null, and recording the size of the data
1449 in it. */
1450 if (old_data)
1452 SDATA_NBYTES (old_data) = old_nbytes;
1453 old_data->string = NULL;
1456 consing_since_gc += needed;
1460 /* Sweep and compact strings. */
1462 static void
1463 sweep_strings ()
1465 struct string_block *b, *next;
1466 struct string_block *live_blocks = NULL;
1468 string_free_list = NULL;
1469 total_strings = total_free_strings = 0;
1470 total_string_size = 0;
1472 /* Scan strings_blocks, free Lisp_Strings that aren't marked. */
1473 for (b = string_blocks; b; b = next)
1475 int i, nfree = 0;
1476 struct Lisp_String *free_list_before = string_free_list;
1478 next = b->next;
1480 for (i = 0; i < STRINGS_IN_STRING_BLOCK; ++i)
1482 struct Lisp_String *s = b->strings + i;
1484 if (s->data)
1486 /* String was not on free-list before. */
1487 if (STRING_MARKED_P (s))
1489 /* String is live; unmark it and its intervals. */
1490 UNMARK_STRING (s);
1492 if (!NULL_INTERVAL_P (s->intervals))
1493 UNMARK_BALANCE_INTERVALS (s->intervals);
1495 ++total_strings;
1496 total_string_size += STRING_BYTES (s);
1498 else
1500 /* String is dead. Put it on the free-list. */
1501 struct sdata *data = SDATA_OF_STRING (s);
1503 /* Save the size of S in its sdata so that we know
1504 how large that is. Reset the sdata's string
1505 back-pointer so that we know it's free. */
1506 #ifdef GC_CHECK_STRING_BYTES
1507 if (GC_STRING_BYTES (s) != SDATA_NBYTES (data))
1508 abort ();
1509 #else
1510 data->u.nbytes = GC_STRING_BYTES (s);
1511 #endif
1512 data->string = NULL;
1514 /* Reset the strings's `data' member so that we
1515 know it's free. */
1516 s->data = NULL;
1518 /* Put the string on the free-list. */
1519 NEXT_FREE_LISP_STRING (s) = string_free_list;
1520 string_free_list = s;
1521 ++nfree;
1524 else
1526 /* S was on the free-list before. Put it there again. */
1527 NEXT_FREE_LISP_STRING (s) = string_free_list;
1528 string_free_list = s;
1529 ++nfree;
1533 /* Free blocks that contain free Lisp_Strings only, except
1534 the first two of them. */
1535 if (nfree == STRINGS_IN_STRING_BLOCK
1536 && total_free_strings > STRINGS_IN_STRING_BLOCK)
1538 lisp_free (b);
1539 --n_string_blocks;
1540 string_free_list = free_list_before;
1542 else
1544 total_free_strings += nfree;
1545 b->next = live_blocks;
1546 live_blocks = b;
1550 string_blocks = live_blocks;
1551 free_large_strings ();
1552 compact_small_strings ();
1556 /* Free dead large strings. */
1558 static void
1559 free_large_strings ()
1561 struct sblock *b, *next;
1562 struct sblock *live_blocks = NULL;
1564 for (b = large_sblocks; b; b = next)
1566 next = b->next;
1568 if (b->first_data.string == NULL)
1569 lisp_free (b);
1570 else
1572 b->next = live_blocks;
1573 live_blocks = b;
1577 large_sblocks = live_blocks;
1581 /* Compact data of small strings. Free sblocks that don't contain
1582 data of live strings after compaction. */
1584 static void
1585 compact_small_strings ()
1587 struct sblock *b, *tb, *next;
1588 struct sdata *from, *to, *end, *tb_end;
1589 struct sdata *to_end, *from_end;
1591 /* TB is the sblock we copy to, TO is the sdata within TB we copy
1592 to, and TB_END is the end of TB. */
1593 tb = oldest_sblock;
1594 tb_end = (struct sdata *) ((char *) tb + SBLOCK_SIZE);
1595 to = &tb->first_data;
1597 /* Step through the blocks from the oldest to the youngest. We
1598 expect that old blocks will stabilize over time, so that less
1599 copying will happen this way. */
1600 for (b = oldest_sblock; b; b = b->next)
1602 end = b->next_free;
1603 xassert ((char *) end <= (char *) b + SBLOCK_SIZE);
1605 for (from = &b->first_data; from < end; from = from_end)
1607 /* Compute the next FROM here because copying below may
1608 overwrite data we need to compute it. */
1609 int nbytes;
1611 #ifdef GC_CHECK_STRING_BYTES
1612 /* Check that the string size recorded in the string is the
1613 same as the one recorded in the sdata structure. */
1614 if (from->string
1615 && GC_STRING_BYTES (from->string) != SDATA_NBYTES (from))
1616 abort ();
1617 #endif /* GC_CHECK_STRING_BYTES */
1619 if (from->string)
1620 nbytes = GC_STRING_BYTES (from->string);
1621 else
1622 nbytes = SDATA_NBYTES (from);
1624 nbytes = SDATA_SIZE (nbytes);
1625 from_end = (struct sdata *) ((char *) from + nbytes);
1627 /* FROM->string non-null means it's alive. Copy its data. */
1628 if (from->string)
1630 /* If TB is full, proceed with the next sblock. */
1631 to_end = (struct sdata *) ((char *) to + nbytes);
1632 if (to_end > tb_end)
1634 tb->next_free = to;
1635 tb = tb->next;
1636 tb_end = (struct sdata *) ((char *) tb + SBLOCK_SIZE);
1637 to = &tb->first_data;
1638 to_end = (struct sdata *) ((char *) to + nbytes);
1641 /* Copy, and update the string's `data' pointer. */
1642 if (from != to)
1644 xassert (tb != b || to <= from);
1645 safe_bcopy ((char *) from, (char *) to, nbytes);
1646 to->string->data = SDATA_DATA (to);
1649 /* Advance past the sdata we copied to. */
1650 to = to_end;
1655 /* The rest of the sblocks following TB don't contain live data, so
1656 we can free them. */
1657 for (b = tb->next; b; b = next)
1659 next = b->next;
1660 lisp_free (b);
1663 tb->next_free = to;
1664 tb->next = NULL;
1665 current_sblock = tb;
1669 DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0,
1670 doc: /* Return a newly created string of length LENGTH, with each element being INIT.
1671 Both LENGTH and INIT must be numbers. */)
1672 (length, init)
1673 Lisp_Object length, init;
1675 register Lisp_Object val;
1676 register unsigned char *p, *end;
1677 int c, nbytes;
1679 CHECK_NATNUM (length);
1680 CHECK_NUMBER (init);
1682 c = XINT (init);
1683 if (SINGLE_BYTE_CHAR_P (c))
1685 nbytes = XINT (length);
1686 val = make_uninit_string (nbytes);
1687 p = SDATA (val);
1688 end = p + SCHARS (val);
1689 while (p != end)
1690 *p++ = c;
1692 else
1694 unsigned char str[MAX_MULTIBYTE_LENGTH];
1695 int len = CHAR_STRING (c, str);
1697 nbytes = len * XINT (length);
1698 val = make_uninit_multibyte_string (XINT (length), nbytes);
1699 p = SDATA (val);
1700 end = p + nbytes;
1701 while (p != end)
1703 bcopy (str, p, len);
1704 p += len;
1708 *p = 0;
1709 return val;
1713 DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0,
1714 doc: /* Return a new bool-vector of length LENGTH, using INIT for as each element.
1715 LENGTH must be a number. INIT matters only in whether it is t or nil. */)
1716 (length, init)
1717 Lisp_Object length, init;
1719 register Lisp_Object val;
1720 struct Lisp_Bool_Vector *p;
1721 int real_init, i;
1722 int length_in_chars, length_in_elts, bits_per_value;
1724 CHECK_NATNUM (length);
1726 bits_per_value = sizeof (EMACS_INT) * BITS_PER_CHAR;
1728 length_in_elts = (XFASTINT (length) + bits_per_value - 1) / bits_per_value;
1729 length_in_chars = ((XFASTINT (length) + BITS_PER_CHAR - 1) / BITS_PER_CHAR);
1731 /* We must allocate one more elements than LENGTH_IN_ELTS for the
1732 slot `size' of the struct Lisp_Bool_Vector. */
1733 val = Fmake_vector (make_number (length_in_elts + 1), Qnil);
1734 p = XBOOL_VECTOR (val);
1736 /* Get rid of any bits that would cause confusion. */
1737 p->vector_size = 0;
1738 XSETBOOL_VECTOR (val, p);
1739 p->size = XFASTINT (length);
1741 real_init = (NILP (init) ? 0 : -1);
1742 for (i = 0; i < length_in_chars ; i++)
1743 p->data[i] = real_init;
1745 /* Clear the extraneous bits in the last byte. */
1746 if (XINT (length) != length_in_chars * BITS_PER_CHAR)
1747 XBOOL_VECTOR (val)->data[length_in_chars - 1]
1748 &= (1 << (XINT (length) % BITS_PER_CHAR)) - 1;
1750 return val;
1754 /* Make a string from NBYTES bytes at CONTENTS, and compute the number
1755 of characters from the contents. This string may be unibyte or
1756 multibyte, depending on the contents. */
1758 Lisp_Object
1759 make_string (contents, nbytes)
1760 const char *contents;
1761 int nbytes;
1763 register Lisp_Object val;
1764 int nchars, multibyte_nbytes;
1766 parse_str_as_multibyte (contents, nbytes, &nchars, &multibyte_nbytes);
1767 if (nbytes == nchars || nbytes != multibyte_nbytes)
1768 /* CONTENTS contains no multibyte sequences or contains an invalid
1769 multibyte sequence. We must make unibyte string. */
1770 val = make_unibyte_string (contents, nbytes);
1771 else
1772 val = make_multibyte_string (contents, nchars, nbytes);
1773 return val;
1777 /* Make an unibyte string from LENGTH bytes at CONTENTS. */
1779 Lisp_Object
1780 make_unibyte_string (contents, length)
1781 const char *contents;
1782 int length;
1784 register Lisp_Object val;
1785 val = make_uninit_string (length);
1786 bcopy (contents, SDATA (val), length);
1787 STRING_SET_UNIBYTE (val);
1788 return val;
1792 /* Make a multibyte string from NCHARS characters occupying NBYTES
1793 bytes at CONTENTS. */
1795 Lisp_Object
1796 make_multibyte_string (contents, nchars, nbytes)
1797 const char *contents;
1798 int nchars, nbytes;
1800 register Lisp_Object val;
1801 val = make_uninit_multibyte_string (nchars, nbytes);
1802 bcopy (contents, SDATA (val), nbytes);
1803 return val;
1807 /* Make a string from NCHARS characters occupying NBYTES bytes at
1808 CONTENTS. It is a multibyte string if NBYTES != NCHARS. */
1810 Lisp_Object
1811 make_string_from_bytes (contents, nchars, nbytes)
1812 char *contents;
1813 int nchars, nbytes;
1815 register Lisp_Object val;
1816 val = make_uninit_multibyte_string (nchars, nbytes);
1817 bcopy (contents, SDATA (val), nbytes);
1818 if (SBYTES (val) == SCHARS (val))
1819 STRING_SET_UNIBYTE (val);
1820 return val;
1824 /* Make a string from NCHARS characters occupying NBYTES bytes at
1825 CONTENTS. The argument MULTIBYTE controls whether to label the
1826 string as multibyte. */
1828 Lisp_Object
1829 make_specified_string (contents, nchars, nbytes, multibyte)
1830 char *contents;
1831 int nchars, nbytes;
1832 int multibyte;
1834 register Lisp_Object val;
1835 val = make_uninit_multibyte_string (nchars, nbytes);
1836 bcopy (contents, SDATA (val), nbytes);
1837 if (!multibyte)
1838 STRING_SET_UNIBYTE (val);
1839 return val;
1843 /* Make a string from the data at STR, treating it as multibyte if the
1844 data warrants. */
1846 Lisp_Object
1847 build_string (str)
1848 const char *str;
1850 return make_string (str, strlen (str));
1854 /* Return an unibyte Lisp_String set up to hold LENGTH characters
1855 occupying LENGTH bytes. */
1857 Lisp_Object
1858 make_uninit_string (length)
1859 int length;
1861 Lisp_Object val;
1862 val = make_uninit_multibyte_string (length, length);
1863 STRING_SET_UNIBYTE (val);
1864 return val;
1868 /* Return a multibyte Lisp_String set up to hold NCHARS characters
1869 which occupy NBYTES bytes. */
1871 Lisp_Object
1872 make_uninit_multibyte_string (nchars, nbytes)
1873 int nchars, nbytes;
1875 Lisp_Object string;
1876 struct Lisp_String *s;
1878 if (nchars < 0)
1879 abort ();
1881 s = allocate_string ();
1882 allocate_string_data (s, nchars, nbytes);
1883 XSETSTRING (string, s);
1884 string_chars_consed += nbytes;
1885 return string;
1890 /***********************************************************************
1891 Float Allocation
1892 ***********************************************************************/
1894 /* We store float cells inside of float_blocks, allocating a new
1895 float_block with malloc whenever necessary. Float cells reclaimed
1896 by GC are put on a free list to be reallocated before allocating
1897 any new float cells from the latest float_block.
1899 Each float_block is just under 1020 bytes long, since malloc really
1900 allocates in units of powers of two and uses 4 bytes for its own
1901 overhead. */
1903 #define FLOAT_BLOCK_SIZE \
1904 ((1020 - sizeof (struct float_block *)) / sizeof (struct Lisp_Float))
1906 struct float_block
1908 struct float_block *next;
1909 struct Lisp_Float floats[FLOAT_BLOCK_SIZE];
1912 /* Current float_block. */
1914 struct float_block *float_block;
1916 /* Index of first unused Lisp_Float in the current float_block. */
1918 int float_block_index;
1920 /* Total number of float blocks now in use. */
1922 int n_float_blocks;
1924 /* Free-list of Lisp_Floats. */
1926 struct Lisp_Float *float_free_list;
1929 /* Initialize float allocation. */
1931 void
1932 init_float ()
1934 float_block = (struct float_block *) lisp_malloc (sizeof *float_block,
1935 MEM_TYPE_FLOAT);
1936 float_block->next = 0;
1937 bzero ((char *) float_block->floats, sizeof float_block->floats);
1938 float_block_index = 0;
1939 float_free_list = 0;
1940 n_float_blocks = 1;
1944 /* Explicitly free a float cell by putting it on the free-list. */
1946 void
1947 free_float (ptr)
1948 struct Lisp_Float *ptr;
1950 *(struct Lisp_Float **)&ptr->data = float_free_list;
1951 #if GC_MARK_STACK
1952 ptr->type = Vdead;
1953 #endif
1954 float_free_list = ptr;
1958 /* Return a new float object with value FLOAT_VALUE. */
1960 Lisp_Object
1961 make_float (float_value)
1962 double float_value;
1964 register Lisp_Object val;
1966 if (float_free_list)
1968 /* We use the data field for chaining the free list
1969 so that we won't use the same field that has the mark bit. */
1970 XSETFLOAT (val, float_free_list);
1971 float_free_list = *(struct Lisp_Float **)&float_free_list->data;
1973 else
1975 if (float_block_index == FLOAT_BLOCK_SIZE)
1977 register struct float_block *new;
1979 new = (struct float_block *) lisp_malloc (sizeof *new,
1980 MEM_TYPE_FLOAT);
1981 VALIDATE_LISP_STORAGE (new, sizeof *new);
1982 new->next = float_block;
1983 float_block = new;
1984 float_block_index = 0;
1985 n_float_blocks++;
1987 XSETFLOAT (val, &float_block->floats[float_block_index++]);
1990 XFLOAT_DATA (val) = float_value;
1991 XSETFASTINT (XFLOAT (val)->type, 0); /* bug chasing -wsr */
1992 consing_since_gc += sizeof (struct Lisp_Float);
1993 floats_consed++;
1994 return val;
1999 /***********************************************************************
2000 Cons Allocation
2001 ***********************************************************************/
2003 /* We store cons cells inside of cons_blocks, allocating a new
2004 cons_block with malloc whenever necessary. Cons cells reclaimed by
2005 GC are put on a free list to be reallocated before allocating
2006 any new cons cells from the latest cons_block.
2008 Each cons_block is just under 1020 bytes long,
2009 since malloc really allocates in units of powers of two
2010 and uses 4 bytes for its own overhead. */
2012 #define CONS_BLOCK_SIZE \
2013 ((1020 - sizeof (struct cons_block *)) / sizeof (struct Lisp_Cons))
2015 struct cons_block
2017 struct cons_block *next;
2018 struct Lisp_Cons conses[CONS_BLOCK_SIZE];
2021 /* Current cons_block. */
2023 struct cons_block *cons_block;
2025 /* Index of first unused Lisp_Cons in the current block. */
2027 int cons_block_index;
2029 /* Free-list of Lisp_Cons structures. */
2031 struct Lisp_Cons *cons_free_list;
2033 /* Total number of cons blocks now in use. */
2035 int n_cons_blocks;
2038 /* Initialize cons allocation. */
2040 void
2041 init_cons ()
2043 cons_block = (struct cons_block *) lisp_malloc (sizeof *cons_block,
2044 MEM_TYPE_CONS);
2045 cons_block->next = 0;
2046 bzero ((char *) cons_block->conses, sizeof cons_block->conses);
2047 cons_block_index = 0;
2048 cons_free_list = 0;
2049 n_cons_blocks = 1;
2053 /* Explicitly free a cons cell by putting it on the free-list. */
2055 void
2056 free_cons (ptr)
2057 struct Lisp_Cons *ptr;
2059 *(struct Lisp_Cons **)&ptr->cdr = cons_free_list;
2060 #if GC_MARK_STACK
2061 ptr->car = Vdead;
2062 #endif
2063 cons_free_list = ptr;
2067 DEFUN ("cons", Fcons, Scons, 2, 2, 0,
2068 doc: /* Create a new cons, give it CAR and CDR as components, and return it. */)
2069 (car, cdr)
2070 Lisp_Object car, cdr;
2072 register Lisp_Object val;
2074 if (cons_free_list)
2076 /* We use the cdr for chaining the free list
2077 so that we won't use the same field that has the mark bit. */
2078 XSETCONS (val, cons_free_list);
2079 cons_free_list = *(struct Lisp_Cons **)&cons_free_list->cdr;
2081 else
2083 if (cons_block_index == CONS_BLOCK_SIZE)
2085 register struct cons_block *new;
2086 new = (struct cons_block *) lisp_malloc (sizeof *new,
2087 MEM_TYPE_CONS);
2088 VALIDATE_LISP_STORAGE (new, sizeof *new);
2089 new->next = cons_block;
2090 cons_block = new;
2091 cons_block_index = 0;
2092 n_cons_blocks++;
2094 XSETCONS (val, &cons_block->conses[cons_block_index++]);
2097 XSETCAR (val, car);
2098 XSETCDR (val, cdr);
2099 consing_since_gc += sizeof (struct Lisp_Cons);
2100 cons_cells_consed++;
2101 return val;
2105 /* Make a list of 2, 3, 4 or 5 specified objects. */
2107 Lisp_Object
2108 list2 (arg1, arg2)
2109 Lisp_Object arg1, arg2;
2111 return Fcons (arg1, Fcons (arg2, Qnil));
2115 Lisp_Object
2116 list3 (arg1, arg2, arg3)
2117 Lisp_Object arg1, arg2, arg3;
2119 return Fcons (arg1, Fcons (arg2, Fcons (arg3, Qnil)));
2123 Lisp_Object
2124 list4 (arg1, arg2, arg3, arg4)
2125 Lisp_Object arg1, arg2, arg3, arg4;
2127 return Fcons (arg1, Fcons (arg2, Fcons (arg3, Fcons (arg4, Qnil))));
2131 Lisp_Object
2132 list5 (arg1, arg2, arg3, arg4, arg5)
2133 Lisp_Object arg1, arg2, arg3, arg4, arg5;
2135 return Fcons (arg1, Fcons (arg2, Fcons (arg3, Fcons (arg4,
2136 Fcons (arg5, Qnil)))));
2140 DEFUN ("list", Flist, Slist, 0, MANY, 0,
2141 doc: /* Return a newly created list with specified arguments as elements.
2142 Any number of arguments, even zero arguments, are allowed.
2143 usage: (list &rest OBJECTS) */)
2144 (nargs, args)
2145 int nargs;
2146 register Lisp_Object *args;
2148 register Lisp_Object val;
2149 val = Qnil;
2151 while (nargs > 0)
2153 nargs--;
2154 val = Fcons (args[nargs], val);
2156 return val;
2160 DEFUN ("make-list", Fmake_list, Smake_list, 2, 2, 0,
2161 doc: /* Return a newly created list of length LENGTH, with each element being INIT. */)
2162 (length, init)
2163 register Lisp_Object length, init;
2165 register Lisp_Object val;
2166 register int size;
2168 CHECK_NATNUM (length);
2169 size = XFASTINT (length);
2171 val = Qnil;
2172 while (size > 0)
2174 val = Fcons (init, val);
2175 --size;
2177 if (size > 0)
2179 val = Fcons (init, val);
2180 --size;
2182 if (size > 0)
2184 val = Fcons (init, val);
2185 --size;
2187 if (size > 0)
2189 val = Fcons (init, val);
2190 --size;
2192 if (size > 0)
2194 val = Fcons (init, val);
2195 --size;
2201 QUIT;
2204 return val;
2209 /***********************************************************************
2210 Vector Allocation
2211 ***********************************************************************/
2213 /* Singly-linked list of all vectors. */
2215 struct Lisp_Vector *all_vectors;
2217 /* Total number of vector-like objects now in use. */
2219 int n_vectors;
2222 /* Value is a pointer to a newly allocated Lisp_Vector structure
2223 with room for LEN Lisp_Objects. */
2225 static struct Lisp_Vector *
2226 allocate_vectorlike (len, type)
2227 EMACS_INT len;
2228 enum mem_type type;
2230 struct Lisp_Vector *p;
2231 size_t nbytes;
2233 #ifdef DOUG_LEA_MALLOC
2234 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed
2235 because mapped region contents are not preserved in
2236 a dumped Emacs. */
2237 mallopt (M_MMAP_MAX, 0);
2238 #endif
2240 nbytes = sizeof *p + (len - 1) * sizeof p->contents[0];
2241 p = (struct Lisp_Vector *) lisp_malloc (nbytes, type);
2243 #ifdef DOUG_LEA_MALLOC
2244 /* Back to a reasonable maximum of mmap'ed areas. */
2245 mallopt (M_MMAP_MAX, MMAP_MAX_AREAS);
2246 #endif
2248 VALIDATE_LISP_STORAGE (p, 0);
2249 consing_since_gc += nbytes;
2250 vector_cells_consed += len;
2252 p->next = all_vectors;
2253 all_vectors = p;
2254 ++n_vectors;
2255 return p;
2259 /* Allocate a vector with NSLOTS slots. */
2261 struct Lisp_Vector *
2262 allocate_vector (nslots)
2263 EMACS_INT nslots;
2265 struct Lisp_Vector *v = allocate_vectorlike (nslots, MEM_TYPE_VECTOR);
2266 v->size = nslots;
2267 return v;
2271 /* Allocate other vector-like structures. */
2273 struct Lisp_Hash_Table *
2274 allocate_hash_table ()
2276 EMACS_INT len = VECSIZE (struct Lisp_Hash_Table);
2277 struct Lisp_Vector *v = allocate_vectorlike (len, MEM_TYPE_HASH_TABLE);
2278 EMACS_INT i;
2280 v->size = len;
2281 for (i = 0; i < len; ++i)
2282 v->contents[i] = Qnil;
2284 return (struct Lisp_Hash_Table *) v;
2288 struct window *
2289 allocate_window ()
2291 EMACS_INT len = VECSIZE (struct window);
2292 struct Lisp_Vector *v = allocate_vectorlike (len, MEM_TYPE_WINDOW);
2293 EMACS_INT i;
2295 for (i = 0; i < len; ++i)
2296 v->contents[i] = Qnil;
2297 v->size = len;
2299 return (struct window *) v;
2303 struct frame *
2304 allocate_frame ()
2306 EMACS_INT len = VECSIZE (struct frame);
2307 struct Lisp_Vector *v = allocate_vectorlike (len, MEM_TYPE_FRAME);
2308 EMACS_INT i;
2310 for (i = 0; i < len; ++i)
2311 v->contents[i] = make_number (0);
2312 v->size = len;
2313 return (struct frame *) v;
2317 struct Lisp_Process *
2318 allocate_process ()
2320 EMACS_INT len = VECSIZE (struct Lisp_Process);
2321 struct Lisp_Vector *v = allocate_vectorlike (len, MEM_TYPE_PROCESS);
2322 EMACS_INT i;
2324 for (i = 0; i < len; ++i)
2325 v->contents[i] = Qnil;
2326 v->size = len;
2328 return (struct Lisp_Process *) v;
2332 struct Lisp_Vector *
2333 allocate_other_vector (len)
2334 EMACS_INT len;
2336 struct Lisp_Vector *v = allocate_vectorlike (len, MEM_TYPE_VECTOR);
2337 EMACS_INT i;
2339 for (i = 0; i < len; ++i)
2340 v->contents[i] = Qnil;
2341 v->size = len;
2343 return v;
2347 DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0,
2348 doc: /* Return a newly created vector of length LENGTH, with each element being INIT.
2349 See also the function `vector'. */)
2350 (length, init)
2351 register Lisp_Object length, init;
2353 Lisp_Object vector;
2354 register EMACS_INT sizei;
2355 register int index;
2356 register struct Lisp_Vector *p;
2358 CHECK_NATNUM (length);
2359 sizei = XFASTINT (length);
2361 p = allocate_vector (sizei);
2362 for (index = 0; index < sizei; index++)
2363 p->contents[index] = init;
2365 XSETVECTOR (vector, p);
2366 return vector;
2370 DEFUN ("make-char-table", Fmake_char_table, Smake_char_table, 1, 2, 0,
2371 doc: /* Return a newly created char-table, with purpose PURPOSE.
2372 Each element is initialized to INIT, which defaults to nil.
2373 PURPOSE should be a symbol which has a `char-table-extra-slots' property.
2374 The property's value should be an integer between 0 and 10. */)
2375 (purpose, init)
2376 register Lisp_Object purpose, init;
2378 Lisp_Object vector;
2379 Lisp_Object n;
2380 CHECK_SYMBOL (purpose);
2381 n = Fget (purpose, Qchar_table_extra_slots);
2382 CHECK_NUMBER (n);
2383 if (XINT (n) < 0 || XINT (n) > 10)
2384 args_out_of_range (n, Qnil);
2385 /* Add 2 to the size for the defalt and parent slots. */
2386 vector = Fmake_vector (make_number (CHAR_TABLE_STANDARD_SLOTS + XINT (n)),
2387 init);
2388 XCHAR_TABLE (vector)->top = Qt;
2389 XCHAR_TABLE (vector)->parent = Qnil;
2390 XCHAR_TABLE (vector)->purpose = purpose;
2391 XSETCHAR_TABLE (vector, XCHAR_TABLE (vector));
2392 return vector;
2396 /* Return a newly created sub char table with default value DEFALT.
2397 Since a sub char table does not appear as a top level Emacs Lisp
2398 object, we don't need a Lisp interface to make it. */
2400 Lisp_Object
2401 make_sub_char_table (defalt)
2402 Lisp_Object defalt;
2404 Lisp_Object vector
2405 = Fmake_vector (make_number (SUB_CHAR_TABLE_STANDARD_SLOTS), Qnil);
2406 XCHAR_TABLE (vector)->top = Qnil;
2407 XCHAR_TABLE (vector)->defalt = defalt;
2408 XSETCHAR_TABLE (vector, XCHAR_TABLE (vector));
2409 return vector;
2413 DEFUN ("vector", Fvector, Svector, 0, MANY, 0,
2414 doc: /* Return a newly created vector with specified arguments as elements.
2415 Any number of arguments, even zero arguments, are allowed.
2416 usage: (vector &rest OBJECTS) */)
2417 (nargs, args)
2418 register int nargs;
2419 Lisp_Object *args;
2421 register Lisp_Object len, val;
2422 register int index;
2423 register struct Lisp_Vector *p;
2425 XSETFASTINT (len, nargs);
2426 val = Fmake_vector (len, Qnil);
2427 p = XVECTOR (val);
2428 for (index = 0; index < nargs; index++)
2429 p->contents[index] = args[index];
2430 return val;
2434 DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0,
2435 doc: /* Create a byte-code object with specified arguments as elements.
2436 The arguments should be the arglist, bytecode-string, constant vector,
2437 stack size, (optional) doc string, and (optional) interactive spec.
2438 The first four arguments are required; at most six have any
2439 significance.
2440 usage: (make-byte-code &rest ELEMENTS) */)
2441 (nargs, args)
2442 register int nargs;
2443 Lisp_Object *args;
2445 register Lisp_Object len, val;
2446 register int index;
2447 register struct Lisp_Vector *p;
2449 XSETFASTINT (len, nargs);
2450 if (!NILP (Vpurify_flag))
2451 val = make_pure_vector ((EMACS_INT) nargs);
2452 else
2453 val = Fmake_vector (len, Qnil);
2455 if (STRINGP (args[1]) && STRING_MULTIBYTE (args[1]))
2456 /* BYTECODE-STRING must have been produced by Emacs 20.2 or the
2457 earlier because they produced a raw 8-bit string for byte-code
2458 and now such a byte-code string is loaded as multibyte while
2459 raw 8-bit characters converted to multibyte form. Thus, now we
2460 must convert them back to the original unibyte form. */
2461 args[1] = Fstring_as_unibyte (args[1]);
2463 p = XVECTOR (val);
2464 for (index = 0; index < nargs; index++)
2466 if (!NILP (Vpurify_flag))
2467 args[index] = Fpurecopy (args[index]);
2468 p->contents[index] = args[index];
2470 XSETCOMPILED (val, p);
2471 return val;
2476 /***********************************************************************
2477 Symbol Allocation
2478 ***********************************************************************/
2480 /* Each symbol_block is just under 1020 bytes long, since malloc
2481 really allocates in units of powers of two and uses 4 bytes for its
2482 own overhead. */
2484 #define SYMBOL_BLOCK_SIZE \
2485 ((1020 - sizeof (struct symbol_block *)) / sizeof (struct Lisp_Symbol))
2487 struct symbol_block
2489 struct symbol_block *next;
2490 struct Lisp_Symbol symbols[SYMBOL_BLOCK_SIZE];
2493 /* Current symbol block and index of first unused Lisp_Symbol
2494 structure in it. */
2496 struct symbol_block *symbol_block;
2497 int symbol_block_index;
2499 /* List of free symbols. */
2501 struct Lisp_Symbol *symbol_free_list;
2503 /* Total number of symbol blocks now in use. */
2505 int n_symbol_blocks;
2508 /* Initialize symbol allocation. */
2510 void
2511 init_symbol ()
2513 symbol_block = (struct symbol_block *) lisp_malloc (sizeof *symbol_block,
2514 MEM_TYPE_SYMBOL);
2515 symbol_block->next = 0;
2516 bzero ((char *) symbol_block->symbols, sizeof symbol_block->symbols);
2517 symbol_block_index = 0;
2518 symbol_free_list = 0;
2519 n_symbol_blocks = 1;
2523 DEFUN ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0,
2524 doc: /* Return a newly allocated uninterned symbol whose name is NAME.
2525 Its value and function definition are void, and its property list is nil. */)
2526 (name)
2527 Lisp_Object name;
2529 register Lisp_Object val;
2530 register struct Lisp_Symbol *p;
2532 CHECK_STRING (name);
2534 if (symbol_free_list)
2536 XSETSYMBOL (val, symbol_free_list);
2537 symbol_free_list = *(struct Lisp_Symbol **)&symbol_free_list->value;
2539 else
2541 if (symbol_block_index == SYMBOL_BLOCK_SIZE)
2543 struct symbol_block *new;
2544 new = (struct symbol_block *) lisp_malloc (sizeof *new,
2545 MEM_TYPE_SYMBOL);
2546 VALIDATE_LISP_STORAGE (new, sizeof *new);
2547 new->next = symbol_block;
2548 symbol_block = new;
2549 symbol_block_index = 0;
2550 n_symbol_blocks++;
2552 XSETSYMBOL (val, &symbol_block->symbols[symbol_block_index++]);
2555 p = XSYMBOL (val);
2556 p->xname = name;
2557 p->plist = Qnil;
2558 p->value = Qunbound;
2559 p->function = Qunbound;
2560 p->next = NULL;
2561 p->interned = SYMBOL_UNINTERNED;
2562 p->constant = 0;
2563 p->indirect_variable = 0;
2564 consing_since_gc += sizeof (struct Lisp_Symbol);
2565 symbols_consed++;
2566 return val;
2571 /***********************************************************************
2572 Marker (Misc) Allocation
2573 ***********************************************************************/
2575 /* Allocation of markers and other objects that share that structure.
2576 Works like allocation of conses. */
2578 #define MARKER_BLOCK_SIZE \
2579 ((1020 - sizeof (struct marker_block *)) / sizeof (union Lisp_Misc))
2581 struct marker_block
2583 struct marker_block *next;
2584 union Lisp_Misc markers[MARKER_BLOCK_SIZE];
2587 struct marker_block *marker_block;
2588 int marker_block_index;
2590 union Lisp_Misc *marker_free_list;
2592 /* Total number of marker blocks now in use. */
2594 int n_marker_blocks;
2596 void
2597 init_marker ()
2599 marker_block = (struct marker_block *) lisp_malloc (sizeof *marker_block,
2600 MEM_TYPE_MISC);
2601 marker_block->next = 0;
2602 bzero ((char *) marker_block->markers, sizeof marker_block->markers);
2603 marker_block_index = 0;
2604 marker_free_list = 0;
2605 n_marker_blocks = 1;
2608 /* Return a newly allocated Lisp_Misc object, with no substructure. */
2610 Lisp_Object
2611 allocate_misc ()
2613 Lisp_Object val;
2615 if (marker_free_list)
2617 XSETMISC (val, marker_free_list);
2618 marker_free_list = marker_free_list->u_free.chain;
2620 else
2622 if (marker_block_index == MARKER_BLOCK_SIZE)
2624 struct marker_block *new;
2625 new = (struct marker_block *) lisp_malloc (sizeof *new,
2626 MEM_TYPE_MISC);
2627 VALIDATE_LISP_STORAGE (new, sizeof *new);
2628 new->next = marker_block;
2629 marker_block = new;
2630 marker_block_index = 0;
2631 n_marker_blocks++;
2633 XSETMISC (val, &marker_block->markers[marker_block_index++]);
2636 consing_since_gc += sizeof (union Lisp_Misc);
2637 misc_objects_consed++;
2638 return val;
2641 DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
2642 doc: /* Return a newly allocated marker which does not point at any place. */)
2645 register Lisp_Object val;
2646 register struct Lisp_Marker *p;
2648 val = allocate_misc ();
2649 XMISCTYPE (val) = Lisp_Misc_Marker;
2650 p = XMARKER (val);
2651 p->buffer = 0;
2652 p->bytepos = 0;
2653 p->charpos = 0;
2654 p->chain = Qnil;
2655 p->insertion_type = 0;
2656 return val;
2659 /* Put MARKER back on the free list after using it temporarily. */
2661 void
2662 free_marker (marker)
2663 Lisp_Object marker;
2665 unchain_marker (marker);
2667 XMISC (marker)->u_marker.type = Lisp_Misc_Free;
2668 XMISC (marker)->u_free.chain = marker_free_list;
2669 marker_free_list = XMISC (marker);
2671 total_free_markers++;
2675 /* Return a newly created vector or string with specified arguments as
2676 elements. If all the arguments are characters that can fit
2677 in a string of events, make a string; otherwise, make a vector.
2679 Any number of arguments, even zero arguments, are allowed. */
2681 Lisp_Object
2682 make_event_array (nargs, args)
2683 register int nargs;
2684 Lisp_Object *args;
2686 int i;
2688 for (i = 0; i < nargs; i++)
2689 /* The things that fit in a string
2690 are characters that are in 0...127,
2691 after discarding the meta bit and all the bits above it. */
2692 if (!INTEGERP (args[i])
2693 || (XUINT (args[i]) & ~(-CHAR_META)) >= 0200)
2694 return Fvector (nargs, args);
2696 /* Since the loop exited, we know that all the things in it are
2697 characters, so we can make a string. */
2699 Lisp_Object result;
2701 result = Fmake_string (make_number (nargs), make_number (0));
2702 for (i = 0; i < nargs; i++)
2704 SSET (result, i, XINT (args[i]));
2705 /* Move the meta bit to the right place for a string char. */
2706 if (XINT (args[i]) & CHAR_META)
2707 SSET (result, i, SREF (result, i) | 0x80);
2710 return result;
2716 /************************************************************************
2717 C Stack Marking
2718 ************************************************************************/
2720 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
2722 /* Conservative C stack marking requires a method to identify possibly
2723 live Lisp objects given a pointer value. We do this by keeping
2724 track of blocks of Lisp data that are allocated in a red-black tree
2725 (see also the comment of mem_node which is the type of nodes in
2726 that tree). Function lisp_malloc adds information for an allocated
2727 block to the red-black tree with calls to mem_insert, and function
2728 lisp_free removes it with mem_delete. Functions live_string_p etc
2729 call mem_find to lookup information about a given pointer in the
2730 tree, and use that to determine if the pointer points to a Lisp
2731 object or not. */
2733 /* Initialize this part of alloc.c. */
2735 static void
2736 mem_init ()
2738 mem_z.left = mem_z.right = MEM_NIL;
2739 mem_z.parent = NULL;
2740 mem_z.color = MEM_BLACK;
2741 mem_z.start = mem_z.end = NULL;
2742 mem_root = MEM_NIL;
2746 /* Value is a pointer to the mem_node containing START. Value is
2747 MEM_NIL if there is no node in the tree containing START. */
2749 static INLINE struct mem_node *
2750 mem_find (start)
2751 void *start;
2753 struct mem_node *p;
2755 if (start < min_heap_address || start > max_heap_address)
2756 return MEM_NIL;
2758 /* Make the search always successful to speed up the loop below. */
2759 mem_z.start = start;
2760 mem_z.end = (char *) start + 1;
2762 p = mem_root;
2763 while (start < p->start || start >= p->end)
2764 p = start < p->start ? p->left : p->right;
2765 return p;
2769 /* Insert a new node into the tree for a block of memory with start
2770 address START, end address END, and type TYPE. Value is a
2771 pointer to the node that was inserted. */
2773 static struct mem_node *
2774 mem_insert (start, end, type)
2775 void *start, *end;
2776 enum mem_type type;
2778 struct mem_node *c, *parent, *x;
2780 if (start < min_heap_address)
2781 min_heap_address = start;
2782 if (end > max_heap_address)
2783 max_heap_address = end;
2785 /* See where in the tree a node for START belongs. In this
2786 particular application, it shouldn't happen that a node is already
2787 present. For debugging purposes, let's check that. */
2788 c = mem_root;
2789 parent = NULL;
2791 #if GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS
2793 while (c != MEM_NIL)
2795 if (start >= c->start && start < c->end)
2796 abort ();
2797 parent = c;
2798 c = start < c->start ? c->left : c->right;
2801 #else /* GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS */
2803 while (c != MEM_NIL)
2805 parent = c;
2806 c = start < c->start ? c->left : c->right;
2809 #endif /* GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS */
2811 /* Create a new node. */
2812 #ifdef GC_MALLOC_CHECK
2813 x = (struct mem_node *) _malloc_internal (sizeof *x);
2814 if (x == NULL)
2815 abort ();
2816 #else
2817 x = (struct mem_node *) xmalloc (sizeof *x);
2818 #endif
2819 x->start = start;
2820 x->end = end;
2821 x->type = type;
2822 x->parent = parent;
2823 x->left = x->right = MEM_NIL;
2824 x->color = MEM_RED;
2826 /* Insert it as child of PARENT or install it as root. */
2827 if (parent)
2829 if (start < parent->start)
2830 parent->left = x;
2831 else
2832 parent->right = x;
2834 else
2835 mem_root = x;
2837 /* Re-establish red-black tree properties. */
2838 mem_insert_fixup (x);
2840 return x;
2844 /* Re-establish the red-black properties of the tree, and thereby
2845 balance the tree, after node X has been inserted; X is always red. */
2847 static void
2848 mem_insert_fixup (x)
2849 struct mem_node *x;
2851 while (x != mem_root && x->parent->color == MEM_RED)
2853 /* X is red and its parent is red. This is a violation of
2854 red-black tree property #3. */
2856 if (x->parent == x->parent->parent->left)
2858 /* We're on the left side of our grandparent, and Y is our
2859 "uncle". */
2860 struct mem_node *y = x->parent->parent->right;
2862 if (y->color == MEM_RED)
2864 /* Uncle and parent are red but should be black because
2865 X is red. Change the colors accordingly and proceed
2866 with the grandparent. */
2867 x->parent->color = MEM_BLACK;
2868 y->color = MEM_BLACK;
2869 x->parent->parent->color = MEM_RED;
2870 x = x->parent->parent;
2872 else
2874 /* Parent and uncle have different colors; parent is
2875 red, uncle is black. */
2876 if (x == x->parent->right)
2878 x = x->parent;
2879 mem_rotate_left (x);
2882 x->parent->color = MEM_BLACK;
2883 x->parent->parent->color = MEM_RED;
2884 mem_rotate_right (x->parent->parent);
2887 else
2889 /* This is the symmetrical case of above. */
2890 struct mem_node *y = x->parent->parent->left;
2892 if (y->color == MEM_RED)
2894 x->parent->color = MEM_BLACK;
2895 y->color = MEM_BLACK;
2896 x->parent->parent->color = MEM_RED;
2897 x = x->parent->parent;
2899 else
2901 if (x == x->parent->left)
2903 x = x->parent;
2904 mem_rotate_right (x);
2907 x->parent->color = MEM_BLACK;
2908 x->parent->parent->color = MEM_RED;
2909 mem_rotate_left (x->parent->parent);
2914 /* The root may have been changed to red due to the algorithm. Set
2915 it to black so that property #5 is satisfied. */
2916 mem_root->color = MEM_BLACK;
2920 /* (x) (y)
2921 / \ / \
2922 a (y) ===> (x) c
2923 / \ / \
2924 b c a b */
2926 static void
2927 mem_rotate_left (x)
2928 struct mem_node *x;
2930 struct mem_node *y;
2932 /* Turn y's left sub-tree into x's right sub-tree. */
2933 y = x->right;
2934 x->right = y->left;
2935 if (y->left != MEM_NIL)
2936 y->left->parent = x;
2938 /* Y's parent was x's parent. */
2939 if (y != MEM_NIL)
2940 y->parent = x->parent;
2942 /* Get the parent to point to y instead of x. */
2943 if (x->parent)
2945 if (x == x->parent->left)
2946 x->parent->left = y;
2947 else
2948 x->parent->right = y;
2950 else
2951 mem_root = y;
2953 /* Put x on y's left. */
2954 y->left = x;
2955 if (x != MEM_NIL)
2956 x->parent = y;
2960 /* (x) (Y)
2961 / \ / \
2962 (y) c ===> a (x)
2963 / \ / \
2964 a b b c */
2966 static void
2967 mem_rotate_right (x)
2968 struct mem_node *x;
2970 struct mem_node *y = x->left;
2972 x->left = y->right;
2973 if (y->right != MEM_NIL)
2974 y->right->parent = x;
2976 if (y != MEM_NIL)
2977 y->parent = x->parent;
2978 if (x->parent)
2980 if (x == x->parent->right)
2981 x->parent->right = y;
2982 else
2983 x->parent->left = y;
2985 else
2986 mem_root = y;
2988 y->right = x;
2989 if (x != MEM_NIL)
2990 x->parent = y;
2994 /* Delete node Z from the tree. If Z is null or MEM_NIL, do nothing. */
2996 static void
2997 mem_delete (z)
2998 struct mem_node *z;
3000 struct mem_node *x, *y;
3002 if (!z || z == MEM_NIL)
3003 return;
3005 if (z->left == MEM_NIL || z->right == MEM_NIL)
3006 y = z;
3007 else
3009 y = z->right;
3010 while (y->left != MEM_NIL)
3011 y = y->left;
3014 if (y->left != MEM_NIL)
3015 x = y->left;
3016 else
3017 x = y->right;
3019 x->parent = y->parent;
3020 if (y->parent)
3022 if (y == y->parent->left)
3023 y->parent->left = x;
3024 else
3025 y->parent->right = x;
3027 else
3028 mem_root = x;
3030 if (y != z)
3032 z->start = y->start;
3033 z->end = y->end;
3034 z->type = y->type;
3037 if (y->color == MEM_BLACK)
3038 mem_delete_fixup (x);
3040 #ifdef GC_MALLOC_CHECK
3041 _free_internal (y);
3042 #else
3043 xfree (y);
3044 #endif
3048 /* Re-establish the red-black properties of the tree, after a
3049 deletion. */
3051 static void
3052 mem_delete_fixup (x)
3053 struct mem_node *x;
3055 while (x != mem_root && x->color == MEM_BLACK)
3057 if (x == x->parent->left)
3059 struct mem_node *w = x->parent->right;
3061 if (w->color == MEM_RED)
3063 w->color = MEM_BLACK;
3064 x->parent->color = MEM_RED;
3065 mem_rotate_left (x->parent);
3066 w = x->parent->right;
3069 if (w->left->color == MEM_BLACK && w->right->color == MEM_BLACK)
3071 w->color = MEM_RED;
3072 x = x->parent;
3074 else
3076 if (w->right->color == MEM_BLACK)
3078 w->left->color = MEM_BLACK;
3079 w->color = MEM_RED;
3080 mem_rotate_right (w);
3081 w = x->parent->right;
3083 w->color = x->parent->color;
3084 x->parent->color = MEM_BLACK;
3085 w->right->color = MEM_BLACK;
3086 mem_rotate_left (x->parent);
3087 x = mem_root;
3090 else
3092 struct mem_node *w = x->parent->left;
3094 if (w->color == MEM_RED)
3096 w->color = MEM_BLACK;
3097 x->parent->color = MEM_RED;
3098 mem_rotate_right (x->parent);
3099 w = x->parent->left;
3102 if (w->right->color == MEM_BLACK && w->left->color == MEM_BLACK)
3104 w->color = MEM_RED;
3105 x = x->parent;
3107 else
3109 if (w->left->color == MEM_BLACK)
3111 w->right->color = MEM_BLACK;
3112 w->color = MEM_RED;
3113 mem_rotate_left (w);
3114 w = x->parent->left;
3117 w->color = x->parent->color;
3118 x->parent->color = MEM_BLACK;
3119 w->left->color = MEM_BLACK;
3120 mem_rotate_right (x->parent);
3121 x = mem_root;
3126 x->color = MEM_BLACK;
3130 /* Value is non-zero if P is a pointer to a live Lisp string on
3131 the heap. M is a pointer to the mem_block for P. */
3133 static INLINE int
3134 live_string_p (m, p)
3135 struct mem_node *m;
3136 void *p;
3138 if (m->type == MEM_TYPE_STRING)
3140 struct string_block *b = (struct string_block *) m->start;
3141 int offset = (char *) p - (char *) &b->strings[0];
3143 /* P must point to the start of a Lisp_String structure, and it
3144 must not be on the free-list. */
3145 return (offset >= 0
3146 && offset % sizeof b->strings[0] == 0
3147 && ((struct Lisp_String *) p)->data != NULL);
3149 else
3150 return 0;
3154 /* Value is non-zero if P is a pointer to a live Lisp cons on
3155 the heap. M is a pointer to the mem_block for P. */
3157 static INLINE int
3158 live_cons_p (m, p)
3159 struct mem_node *m;
3160 void *p;
3162 if (m->type == MEM_TYPE_CONS)
3164 struct cons_block *b = (struct cons_block *) m->start;
3165 int offset = (char *) p - (char *) &b->conses[0];
3167 /* P must point to the start of a Lisp_Cons, not be
3168 one of the unused cells in the current cons block,
3169 and not be on the free-list. */
3170 return (offset >= 0
3171 && offset % sizeof b->conses[0] == 0
3172 && (b != cons_block
3173 || offset / sizeof b->conses[0] < cons_block_index)
3174 && !EQ (((struct Lisp_Cons *) p)->car, Vdead));
3176 else
3177 return 0;
3181 /* Value is non-zero if P is a pointer to a live Lisp symbol on
3182 the heap. M is a pointer to the mem_block for P. */
3184 static INLINE int
3185 live_symbol_p (m, p)
3186 struct mem_node *m;
3187 void *p;
3189 if (m->type == MEM_TYPE_SYMBOL)
3191 struct symbol_block *b = (struct symbol_block *) m->start;
3192 int offset = (char *) p - (char *) &b->symbols[0];
3194 /* P must point to the start of a Lisp_Symbol, not be
3195 one of the unused cells in the current symbol block,
3196 and not be on the free-list. */
3197 return (offset >= 0
3198 && offset % sizeof b->symbols[0] == 0
3199 && (b != symbol_block
3200 || offset / sizeof b->symbols[0] < symbol_block_index)
3201 && !EQ (((struct Lisp_Symbol *) p)->function, Vdead));
3203 else
3204 return 0;
3208 /* Value is non-zero if P is a pointer to a live Lisp float on
3209 the heap. M is a pointer to the mem_block for P. */
3211 static INLINE int
3212 live_float_p (m, p)
3213 struct mem_node *m;
3214 void *p;
3216 if (m->type == MEM_TYPE_FLOAT)
3218 struct float_block *b = (struct float_block *) m->start;
3219 int offset = (char *) p - (char *) &b->floats[0];
3221 /* P must point to the start of a Lisp_Float, not be
3222 one of the unused cells in the current float block,
3223 and not be on the free-list. */
3224 return (offset >= 0
3225 && offset % sizeof b->floats[0] == 0
3226 && (b != float_block
3227 || offset / sizeof b->floats[0] < float_block_index)
3228 && !EQ (((struct Lisp_Float *) p)->type, Vdead));
3230 else
3231 return 0;
3235 /* Value is non-zero if P is a pointer to a live Lisp Misc on
3236 the heap. M is a pointer to the mem_block for P. */
3238 static INLINE int
3239 live_misc_p (m, p)
3240 struct mem_node *m;
3241 void *p;
3243 if (m->type == MEM_TYPE_MISC)
3245 struct marker_block *b = (struct marker_block *) m->start;
3246 int offset = (char *) p - (char *) &b->markers[0];
3248 /* P must point to the start of a Lisp_Misc, not be
3249 one of the unused cells in the current misc block,
3250 and not be on the free-list. */
3251 return (offset >= 0
3252 && offset % sizeof b->markers[0] == 0
3253 && (b != marker_block
3254 || offset / sizeof b->markers[0] < marker_block_index)
3255 && ((union Lisp_Misc *) p)->u_marker.type != Lisp_Misc_Free);
3257 else
3258 return 0;
3262 /* Value is non-zero if P is a pointer to a live vector-like object.
3263 M is a pointer to the mem_block for P. */
3265 static INLINE int
3266 live_vector_p (m, p)
3267 struct mem_node *m;
3268 void *p;
3270 return (p == m->start
3271 && m->type >= MEM_TYPE_VECTOR
3272 && m->type <= MEM_TYPE_WINDOW);
3276 /* Value is non-zero of P is a pointer to a live buffer. M is a
3277 pointer to the mem_block for P. */
3279 static INLINE int
3280 live_buffer_p (m, p)
3281 struct mem_node *m;
3282 void *p;
3284 /* P must point to the start of the block, and the buffer
3285 must not have been killed. */
3286 return (m->type == MEM_TYPE_BUFFER
3287 && p == m->start
3288 && !NILP (((struct buffer *) p)->name));
3291 #endif /* GC_MARK_STACK || defined GC_MALLOC_CHECK */
3293 #if GC_MARK_STACK
3295 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
3297 /* Array of objects that are kept alive because the C stack contains
3298 a pattern that looks like a reference to them . */
3300 #define MAX_ZOMBIES 10
3301 static Lisp_Object zombies[MAX_ZOMBIES];
3303 /* Number of zombie objects. */
3305 static int nzombies;
3307 /* Number of garbage collections. */
3309 static int ngcs;
3311 /* Average percentage of zombies per collection. */
3313 static double avg_zombies;
3315 /* Max. number of live and zombie objects. */
3317 static int max_live, max_zombies;
3319 /* Average number of live objects per GC. */
3321 static double avg_live;
3323 DEFUN ("gc-status", Fgc_status, Sgc_status, 0, 0, "",
3324 doc: /* Show information about live and zombie objects. */)
3327 Lisp_Object args[7];
3328 args[0] = build_string ("%d GCs, avg live/zombies = %.2f/%.2f (%f%%), max %d/%d");
3329 args[1] = make_number (ngcs);
3330 args[2] = make_float (avg_live);
3331 args[3] = make_float (avg_zombies);
3332 args[4] = make_float (avg_zombies / avg_live / 100);
3333 args[5] = make_number (max_live);
3334 args[6] = make_number (max_zombies);
3335 return Fmessage (7, args);
3338 #endif /* GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES */
3341 /* Mark OBJ if we can prove it's a Lisp_Object. */
3343 static INLINE void
3344 mark_maybe_object (obj)
3345 Lisp_Object obj;
3347 void *po = (void *) XPNTR (obj);
3348 struct mem_node *m = mem_find (po);
3350 if (m != MEM_NIL)
3352 int mark_p = 0;
3354 switch (XGCTYPE (obj))
3356 case Lisp_String:
3357 mark_p = (live_string_p (m, po)
3358 && !STRING_MARKED_P ((struct Lisp_String *) po));
3359 break;
3361 case Lisp_Cons:
3362 mark_p = (live_cons_p (m, po)
3363 && !XMARKBIT (XCONS (obj)->car));
3364 break;
3366 case Lisp_Symbol:
3367 mark_p = (live_symbol_p (m, po)
3368 && !XMARKBIT (XSYMBOL (obj)->plist));
3369 break;
3371 case Lisp_Float:
3372 mark_p = (live_float_p (m, po)
3373 && !XMARKBIT (XFLOAT (obj)->type));
3374 break;
3376 case Lisp_Vectorlike:
3377 /* Note: can't check GC_BUFFERP before we know it's a
3378 buffer because checking that dereferences the pointer
3379 PO which might point anywhere. */
3380 if (live_vector_p (m, po))
3381 mark_p = (!GC_SUBRP (obj)
3382 && !(XVECTOR (obj)->size & ARRAY_MARK_FLAG));
3383 else if (live_buffer_p (m, po))
3384 mark_p = GC_BUFFERP (obj) && !XMARKBIT (XBUFFER (obj)->name);
3385 break;
3387 case Lisp_Misc:
3388 if (live_misc_p (m, po))
3390 switch (XMISCTYPE (obj))
3392 case Lisp_Misc_Marker:
3393 mark_p = !XMARKBIT (XMARKER (obj)->chain);
3394 break;
3396 case Lisp_Misc_Buffer_Local_Value:
3397 case Lisp_Misc_Some_Buffer_Local_Value:
3398 mark_p = !XMARKBIT (XBUFFER_LOCAL_VALUE (obj)->realvalue);
3399 break;
3401 case Lisp_Misc_Overlay:
3402 mark_p = !XMARKBIT (XOVERLAY (obj)->plist);
3403 break;
3406 break;
3408 case Lisp_Int:
3409 case Lisp_Type_Limit:
3410 break;
3413 if (mark_p)
3415 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
3416 if (nzombies < MAX_ZOMBIES)
3417 zombies[nzombies] = *p;
3418 ++nzombies;
3419 #endif
3420 mark_object (&obj);
3426 /* If P points to Lisp data, mark that as live if it isn't already
3427 marked. */
3429 static INLINE void
3430 mark_maybe_pointer (p)
3431 void *p;
3433 struct mem_node *m;
3435 /* Quickly rule out some values which can't point to Lisp data. We
3436 assume that Lisp data is aligned on even addresses. */
3437 if ((EMACS_INT) p & 1)
3438 return;
3440 m = mem_find (p);
3441 if (m != MEM_NIL)
3443 Lisp_Object obj = Qnil;
3445 switch (m->type)
3447 case MEM_TYPE_NON_LISP:
3448 /* Nothing to do; not a pointer to Lisp memory. */
3449 break;
3451 case MEM_TYPE_BUFFER:
3452 if (live_buffer_p (m, p)
3453 && !XMARKBIT (((struct buffer *) p)->name))
3454 XSETVECTOR (obj, p);
3455 break;
3457 case MEM_TYPE_CONS:
3458 if (live_cons_p (m, p)
3459 && !XMARKBIT (((struct Lisp_Cons *) p)->car))
3460 XSETCONS (obj, p);
3461 break;
3463 case MEM_TYPE_STRING:
3464 if (live_string_p (m, p)
3465 && !STRING_MARKED_P ((struct Lisp_String *) p))
3466 XSETSTRING (obj, p);
3467 break;
3469 case MEM_TYPE_MISC:
3470 if (live_misc_p (m, p))
3472 Lisp_Object tem;
3473 XSETMISC (tem, p);
3475 switch (XMISCTYPE (tem))
3477 case Lisp_Misc_Marker:
3478 if (!XMARKBIT (XMARKER (tem)->chain))
3479 obj = tem;
3480 break;
3482 case Lisp_Misc_Buffer_Local_Value:
3483 case Lisp_Misc_Some_Buffer_Local_Value:
3484 if (!XMARKBIT (XBUFFER_LOCAL_VALUE (tem)->realvalue))
3485 obj = tem;
3486 break;
3488 case Lisp_Misc_Overlay:
3489 if (!XMARKBIT (XOVERLAY (tem)->plist))
3490 obj = tem;
3491 break;
3494 break;
3496 case MEM_TYPE_SYMBOL:
3497 if (live_symbol_p (m, p)
3498 && !XMARKBIT (((struct Lisp_Symbol *) p)->plist))
3499 XSETSYMBOL (obj, p);
3500 break;
3502 case MEM_TYPE_FLOAT:
3503 if (live_float_p (m, p)
3504 && !XMARKBIT (((struct Lisp_Float *) p)->type))
3505 XSETFLOAT (obj, p);
3506 break;
3508 case MEM_TYPE_VECTOR:
3509 case MEM_TYPE_PROCESS:
3510 case MEM_TYPE_HASH_TABLE:
3511 case MEM_TYPE_FRAME:
3512 case MEM_TYPE_WINDOW:
3513 if (live_vector_p (m, p))
3515 Lisp_Object tem;
3516 XSETVECTOR (tem, p);
3517 if (!GC_SUBRP (tem)
3518 && !(XVECTOR (tem)->size & ARRAY_MARK_FLAG))
3519 obj = tem;
3521 break;
3523 default:
3524 abort ();
3527 if (!GC_NILP (obj))
3528 mark_object (&obj);
3533 /* Mark Lisp objects referenced from the address range START..END. */
3535 static void
3536 mark_memory (start, end)
3537 void *start, *end;
3539 Lisp_Object *p;
3540 void **pp;
3542 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
3543 nzombies = 0;
3544 #endif
3546 /* Make START the pointer to the start of the memory region,
3547 if it isn't already. */
3548 if (end < start)
3550 void *tem = start;
3551 start = end;
3552 end = tem;
3555 /* Mark Lisp_Objects. */
3556 for (p = (Lisp_Object *) start; (void *) p < end; ++p)
3557 mark_maybe_object (*p);
3559 /* Mark Lisp data pointed to. This is necessary because, in some
3560 situations, the C compiler optimizes Lisp objects away, so that
3561 only a pointer to them remains. Example:
3563 DEFUN ("testme", Ftestme, Stestme, 0, 0, 0, "")
3566 Lisp_Object obj = build_string ("test");
3567 struct Lisp_String *s = XSTRING (obj);
3568 Fgarbage_collect ();
3569 fprintf (stderr, "test `%s'\n", s->data);
3570 return Qnil;
3573 Here, `obj' isn't really used, and the compiler optimizes it
3574 away. The only reference to the life string is through the
3575 pointer `s'. */
3577 for (pp = (void **) start; (void *) pp < end; ++pp)
3578 mark_maybe_pointer (*pp);
3582 #if !defined GC_SAVE_REGISTERS_ON_STACK && !defined GC_SETJMP_WORKS
3584 static int setjmp_tested_p, longjmps_done;
3586 #define SETJMP_WILL_LIKELY_WORK "\
3588 Emacs garbage collector has been changed to use conservative stack\n\
3589 marking. Emacs has determined that the method it uses to do the\n\
3590 marking will likely work on your system, but this isn't sure.\n\
3592 If you are a system-programmer, or can get the help of a local wizard\n\
3593 who is, please take a look at the function mark_stack in alloc.c, and\n\
3594 verify that the methods used are appropriate for your system.\n\
3596 Please mail the result to <emacs-devel@gnu.org>.\n\
3599 #define SETJMP_WILL_NOT_WORK "\
3601 Emacs garbage collector has been changed to use conservative stack\n\
3602 marking. Emacs has determined that the default method it uses to do the\n\
3603 marking will not work on your system. We will need a system-dependent\n\
3604 solution for your system.\n\
3606 Please take a look at the function mark_stack in alloc.c, and\n\
3607 try to find a way to make it work on your system.\n\
3608 Please mail the result to <emacs-devel@gnu.org>.\n\
3612 /* Perform a quick check if it looks like setjmp saves registers in a
3613 jmp_buf. Print a message to stderr saying so. When this test
3614 succeeds, this is _not_ a proof that setjmp is sufficient for
3615 conservative stack marking. Only the sources or a disassembly
3616 can prove that. */
3618 static void
3619 test_setjmp ()
3621 char buf[10];
3622 register int x;
3623 jmp_buf jbuf;
3624 int result = 0;
3626 /* Arrange for X to be put in a register. */
3627 sprintf (buf, "1");
3628 x = strlen (buf);
3629 x = 2 * x - 1;
3631 setjmp (jbuf);
3632 if (longjmps_done == 1)
3634 /* Came here after the longjmp at the end of the function.
3636 If x == 1, the longjmp has restored the register to its
3637 value before the setjmp, and we can hope that setjmp
3638 saves all such registers in the jmp_buf, although that
3639 isn't sure.
3641 For other values of X, either something really strange is
3642 taking place, or the setjmp just didn't save the register. */
3644 if (x == 1)
3645 fprintf (stderr, SETJMP_WILL_LIKELY_WORK);
3646 else
3648 fprintf (stderr, SETJMP_WILL_NOT_WORK);
3649 exit (1);
3653 ++longjmps_done;
3654 x = 2;
3655 if (longjmps_done == 1)
3656 longjmp (jbuf, 1);
3659 #endif /* not GC_SAVE_REGISTERS_ON_STACK && not GC_SETJMP_WORKS */
3662 #if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
3664 /* Abort if anything GCPRO'd doesn't survive the GC. */
3666 static void
3667 check_gcpros ()
3669 struct gcpro *p;
3670 int i;
3672 for (p = gcprolist; p; p = p->next)
3673 for (i = 0; i < p->nvars; ++i)
3674 if (!survives_gc_p (p->var[i]))
3675 abort ();
3678 #elif GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
3680 static void
3681 dump_zombies ()
3683 int i;
3685 fprintf (stderr, "\nZombies kept alive = %d:\n", nzombies);
3686 for (i = 0; i < min (MAX_ZOMBIES, nzombies); ++i)
3688 fprintf (stderr, " %d = ", i);
3689 debug_print (zombies[i]);
3693 #endif /* GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES */
3696 /* Mark live Lisp objects on the C stack.
3698 There are several system-dependent problems to consider when
3699 porting this to new architectures:
3701 Processor Registers
3703 We have to mark Lisp objects in CPU registers that can hold local
3704 variables or are used to pass parameters.
3706 If GC_SAVE_REGISTERS_ON_STACK is defined, it should expand to
3707 something that either saves relevant registers on the stack, or
3708 calls mark_maybe_object passing it each register's contents.
3710 If GC_SAVE_REGISTERS_ON_STACK is not defined, the current
3711 implementation assumes that calling setjmp saves registers we need
3712 to see in a jmp_buf which itself lies on the stack. This doesn't
3713 have to be true! It must be verified for each system, possibly
3714 by taking a look at the source code of setjmp.
3716 Stack Layout
3718 Architectures differ in the way their processor stack is organized.
3719 For example, the stack might look like this
3721 +----------------+
3722 | Lisp_Object | size = 4
3723 +----------------+
3724 | something else | size = 2
3725 +----------------+
3726 | Lisp_Object | size = 4
3727 +----------------+
3728 | ... |
3730 In such a case, not every Lisp_Object will be aligned equally. To
3731 find all Lisp_Object on the stack it won't be sufficient to walk
3732 the stack in steps of 4 bytes. Instead, two passes will be
3733 necessary, one starting at the start of the stack, and a second
3734 pass starting at the start of the stack + 2. Likewise, if the
3735 minimal alignment of Lisp_Objects on the stack is 1, four passes
3736 would be necessary, each one starting with one byte more offset
3737 from the stack start.
3739 The current code assumes by default that Lisp_Objects are aligned
3740 equally on the stack. */
3742 static void
3743 mark_stack ()
3745 int i;
3746 jmp_buf j;
3747 volatile int stack_grows_down_p = (char *) &j > (char *) stack_base;
3748 void *end;
3750 /* This trick flushes the register windows so that all the state of
3751 the process is contained in the stack. */
3752 #ifdef sparc
3753 asm ("ta 3");
3754 #endif
3756 /* Save registers that we need to see on the stack. We need to see
3757 registers used to hold register variables and registers used to
3758 pass parameters. */
3759 #ifdef GC_SAVE_REGISTERS_ON_STACK
3760 GC_SAVE_REGISTERS_ON_STACK (end);
3761 #else /* not GC_SAVE_REGISTERS_ON_STACK */
3763 #ifndef GC_SETJMP_WORKS /* If it hasn't been checked yet that
3764 setjmp will definitely work, test it
3765 and print a message with the result
3766 of the test. */
3767 if (!setjmp_tested_p)
3769 setjmp_tested_p = 1;
3770 test_setjmp ();
3772 #endif /* GC_SETJMP_WORKS */
3774 setjmp (j);
3775 end = stack_grows_down_p ? (char *) &j + sizeof j : (char *) &j;
3776 #endif /* not GC_SAVE_REGISTERS_ON_STACK */
3778 /* This assumes that the stack is a contiguous region in memory. If
3779 that's not the case, something has to be done here to iterate
3780 over the stack segments. */
3781 #ifndef GC_LISP_OBJECT_ALIGNMENT
3782 #define GC_LISP_OBJECT_ALIGNMENT sizeof (Lisp_Object)
3783 #endif
3784 for (i = 0; i < sizeof (Lisp_Object); i += GC_LISP_OBJECT_ALIGNMENT)
3785 mark_memory ((char *) stack_base + i, end);
3787 #if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
3788 check_gcpros ();
3789 #endif
3793 #endif /* GC_MARK_STACK != 0 */
3797 /***********************************************************************
3798 Pure Storage Management
3799 ***********************************************************************/
3801 /* Allocate room for SIZE bytes from pure Lisp storage and return a
3802 pointer to it. TYPE is the Lisp type for which the memory is
3803 allocated. TYPE < 0 means it's not used for a Lisp object.
3805 If store_pure_type_info is set and TYPE is >= 0, the type of
3806 the allocated object is recorded in pure_types. */
3808 static POINTER_TYPE *
3809 pure_alloc (size, type)
3810 size_t size;
3811 int type;
3813 size_t nbytes;
3814 POINTER_TYPE *result;
3815 char *beg = purebeg;
3817 /* Give Lisp_Floats an extra alignment. */
3818 if (type == Lisp_Float)
3820 size_t alignment;
3821 #if defined __GNUC__ && __GNUC__ >= 2
3822 alignment = __alignof (struct Lisp_Float);
3823 #else
3824 alignment = sizeof (struct Lisp_Float);
3825 #endif
3826 pure_bytes_used = ALIGN (pure_bytes_used, alignment);
3829 nbytes = ALIGN (size, sizeof (EMACS_INT));
3831 if (pure_bytes_used + nbytes > pure_size)
3833 /* Don't allocate a large amount here,
3834 because it might get mmap'd and then its address
3835 might not be usable. */
3836 beg = purebeg = (char *) xmalloc (10000);
3837 pure_size = 10000;
3838 pure_bytes_used_before_overflow += pure_bytes_used;
3839 pure_bytes_used = 0;
3842 result = (POINTER_TYPE *) (beg + pure_bytes_used);
3843 pure_bytes_used += nbytes;
3844 return result;
3848 /* Print a warning if PURESIZE is too small. */
3850 void
3851 check_pure_size ()
3853 if (pure_bytes_used_before_overflow)
3854 message ("Pure Lisp storage overflow (approx. %d bytes needed)",
3855 (int) (pure_bytes_used + pure_bytes_used_before_overflow));
3859 /* Return a string allocated in pure space. DATA is a buffer holding
3860 NCHARS characters, and NBYTES bytes of string data. MULTIBYTE
3861 non-zero means make the result string multibyte.
3863 Must get an error if pure storage is full, since if it cannot hold
3864 a large string it may be able to hold conses that point to that
3865 string; then the string is not protected from gc. */
3867 Lisp_Object
3868 make_pure_string (data, nchars, nbytes, multibyte)
3869 char *data;
3870 int nchars, nbytes;
3871 int multibyte;
3873 Lisp_Object string;
3874 struct Lisp_String *s;
3876 s = (struct Lisp_String *) pure_alloc (sizeof *s, Lisp_String);
3877 s->data = (unsigned char *) pure_alloc (nbytes + 1, -1);
3878 s->size = nchars;
3879 s->size_byte = multibyte ? nbytes : -1;
3880 bcopy (data, s->data, nbytes);
3881 s->data[nbytes] = '\0';
3882 s->intervals = NULL_INTERVAL;
3883 XSETSTRING (string, s);
3884 return string;
3888 /* Return a cons allocated from pure space. Give it pure copies
3889 of CAR as car and CDR as cdr. */
3891 Lisp_Object
3892 pure_cons (car, cdr)
3893 Lisp_Object car, cdr;
3895 register Lisp_Object new;
3896 struct Lisp_Cons *p;
3898 p = (struct Lisp_Cons *) pure_alloc (sizeof *p, Lisp_Cons);
3899 XSETCONS (new, p);
3900 XSETCAR (new, Fpurecopy (car));
3901 XSETCDR (new, Fpurecopy (cdr));
3902 return new;
3906 /* Value is a float object with value NUM allocated from pure space. */
3908 Lisp_Object
3909 make_pure_float (num)
3910 double num;
3912 register Lisp_Object new;
3913 struct Lisp_Float *p;
3915 p = (struct Lisp_Float *) pure_alloc (sizeof *p, Lisp_Float);
3916 XSETFLOAT (new, p);
3917 XFLOAT_DATA (new) = num;
3918 return new;
3922 /* Return a vector with room for LEN Lisp_Objects allocated from
3923 pure space. */
3925 Lisp_Object
3926 make_pure_vector (len)
3927 EMACS_INT len;
3929 Lisp_Object new;
3930 struct Lisp_Vector *p;
3931 size_t size = sizeof *p + (len - 1) * sizeof (Lisp_Object);
3933 p = (struct Lisp_Vector *) pure_alloc (size, Lisp_Vectorlike);
3934 XSETVECTOR (new, p);
3935 XVECTOR (new)->size = len;
3936 return new;
3940 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
3941 doc: /* Make a copy of OBJECT in pure storage.
3942 Recursively copies contents of vectors and cons cells.
3943 Does not copy symbols. Copies strings without text properties. */)
3944 (obj)
3945 register Lisp_Object obj;
3947 if (NILP (Vpurify_flag))
3948 return obj;
3950 if (PURE_POINTER_P (XPNTR (obj)))
3951 return obj;
3953 if (CONSP (obj))
3954 return pure_cons (XCAR (obj), XCDR (obj));
3955 else if (FLOATP (obj))
3956 return make_pure_float (XFLOAT_DATA (obj));
3957 else if (STRINGP (obj))
3958 return make_pure_string (SDATA (obj), SCHARS (obj),
3959 SBYTES (obj),
3960 STRING_MULTIBYTE (obj));
3961 else if (COMPILEDP (obj) || VECTORP (obj))
3963 register struct Lisp_Vector *vec;
3964 register int i, size;
3966 size = XVECTOR (obj)->size;
3967 if (size & PSEUDOVECTOR_FLAG)
3968 size &= PSEUDOVECTOR_SIZE_MASK;
3969 vec = XVECTOR (make_pure_vector ((EMACS_INT) size));
3970 for (i = 0; i < size; i++)
3971 vec->contents[i] = Fpurecopy (XVECTOR (obj)->contents[i]);
3972 if (COMPILEDP (obj))
3973 XSETCOMPILED (obj, vec);
3974 else
3975 XSETVECTOR (obj, vec);
3976 return obj;
3978 else if (MARKERP (obj))
3979 error ("Attempt to copy a marker to pure storage");
3981 return obj;
3986 /***********************************************************************
3987 Protection from GC
3988 ***********************************************************************/
3990 /* Put an entry in staticvec, pointing at the variable with address
3991 VARADDRESS. */
3993 void
3994 staticpro (varaddress)
3995 Lisp_Object *varaddress;
3997 staticvec[staticidx++] = varaddress;
3998 if (staticidx >= NSTATICS)
3999 abort ();
4002 struct catchtag
4004 Lisp_Object tag;
4005 Lisp_Object val;
4006 struct catchtag *next;
4009 struct backtrace
4011 struct backtrace *next;
4012 Lisp_Object *function;
4013 Lisp_Object *args; /* Points to vector of args. */
4014 int nargs; /* Length of vector. */
4015 /* If nargs is UNEVALLED, args points to slot holding list of
4016 unevalled args. */
4017 char evalargs;
4022 /***********************************************************************
4023 Protection from GC
4024 ***********************************************************************/
4026 /* Temporarily prevent garbage collection. */
4029 inhibit_garbage_collection ()
4031 int count = SPECPDL_INDEX ();
4032 int nbits = min (VALBITS, BITS_PER_INT);
4034 specbind (Qgc_cons_threshold, make_number (((EMACS_INT) 1 << (nbits - 1)) - 1));
4035 return count;
4039 DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "",
4040 doc: /* Reclaim storage for Lisp objects no longer needed.
4041 Returns info on amount of space in use:
4042 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)
4043 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS
4044 (USED-FLOATS . FREE-FLOATS) (USED-INTERVALS . FREE-INTERVALS)
4045 (USED-STRINGS . FREE-STRINGS))
4046 Garbage collection happens automatically if you cons more than
4047 `gc-cons-threshold' bytes of Lisp data since previous garbage collection. */)
4050 register struct gcpro *tail;
4051 register struct specbinding *bind;
4052 struct catchtag *catch;
4053 struct handler *handler;
4054 register struct backtrace *backlist;
4055 char stack_top_variable;
4056 register int i;
4057 int message_p;
4058 Lisp_Object total[8];
4059 int count = SPECPDL_INDEX ();
4061 /* Can't GC if pure storage overflowed because we can't determine
4062 if something is a pure object or not. */
4063 if (pure_bytes_used_before_overflow)
4064 return Qnil;
4066 /* In case user calls debug_print during GC,
4067 don't let that cause a recursive GC. */
4068 consing_since_gc = 0;
4070 /* Save what's currently displayed in the echo area. */
4071 message_p = push_message ();
4072 record_unwind_protect (push_message_unwind, Qnil);
4074 /* Save a copy of the contents of the stack, for debugging. */
4075 #if MAX_SAVE_STACK > 0
4076 if (NILP (Vpurify_flag))
4078 i = &stack_top_variable - stack_bottom;
4079 if (i < 0) i = -i;
4080 if (i < MAX_SAVE_STACK)
4082 if (stack_copy == 0)
4083 stack_copy = (char *) xmalloc (stack_copy_size = i);
4084 else if (stack_copy_size < i)
4085 stack_copy = (char *) xrealloc (stack_copy, (stack_copy_size = i));
4086 if (stack_copy)
4088 if ((EMACS_INT) (&stack_top_variable - stack_bottom) > 0)
4089 bcopy (stack_bottom, stack_copy, i);
4090 else
4091 bcopy (&stack_top_variable, stack_copy, i);
4095 #endif /* MAX_SAVE_STACK > 0 */
4097 if (garbage_collection_messages)
4098 message1_nolog ("Garbage collecting...");
4100 BLOCK_INPUT;
4102 shrink_regexp_cache ();
4104 /* Don't keep undo information around forever. */
4106 register struct buffer *nextb = all_buffers;
4108 while (nextb)
4110 /* If a buffer's undo list is Qt, that means that undo is
4111 turned off in that buffer. Calling truncate_undo_list on
4112 Qt tends to return NULL, which effectively turns undo back on.
4113 So don't call truncate_undo_list if undo_list is Qt. */
4114 if (! EQ (nextb->undo_list, Qt))
4115 nextb->undo_list
4116 = truncate_undo_list (nextb->undo_list, undo_limit,
4117 undo_strong_limit);
4119 /* Shrink buffer gaps, but skip indirect and dead buffers. */
4120 if (nextb->base_buffer == 0 && !NILP (nextb->name))
4122 /* If a buffer's gap size is more than 10% of the buffer
4123 size, or larger than 2000 bytes, then shrink it
4124 accordingly. Keep a minimum size of 20 bytes. */
4125 int size = min (2000, max (20, (nextb->text->z_byte / 10)));
4127 if (nextb->text->gap_size > size)
4129 struct buffer *save_current = current_buffer;
4130 current_buffer = nextb;
4131 make_gap (-(nextb->text->gap_size - size));
4132 current_buffer = save_current;
4136 nextb = nextb->next;
4140 gc_in_progress = 1;
4142 /* clear_marks (); */
4144 /* Mark all the special slots that serve as the roots of accessibility.
4146 Usually the special slots to mark are contained in particular structures.
4147 Then we know no slot is marked twice because the structures don't overlap.
4148 In some cases, the structures point to the slots to be marked.
4149 For these, we use MARKBIT to avoid double marking of the slot. */
4151 for (i = 0; i < staticidx; i++)
4152 mark_object (staticvec[i]);
4154 #if (GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS \
4155 || GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS)
4156 mark_stack ();
4157 #else
4158 for (tail = gcprolist; tail; tail = tail->next)
4159 for (i = 0; i < tail->nvars; i++)
4160 if (!XMARKBIT (tail->var[i]))
4162 /* Explicit casting prevents compiler warning about
4163 discarding the `volatile' qualifier. */
4164 mark_object ((Lisp_Object *)&tail->var[i]);
4165 XMARK (tail->var[i]);
4167 #endif
4169 mark_byte_stack ();
4170 for (bind = specpdl; bind != specpdl_ptr; bind++)
4172 mark_object (&bind->symbol);
4173 mark_object (&bind->old_value);
4175 for (catch = catchlist; catch; catch = catch->next)
4177 mark_object (&catch->tag);
4178 mark_object (&catch->val);
4180 for (handler = handlerlist; handler; handler = handler->next)
4182 mark_object (&handler->handler);
4183 mark_object (&handler->var);
4185 for (backlist = backtrace_list; backlist; backlist = backlist->next)
4187 if (!XMARKBIT (*backlist->function))
4189 mark_object (backlist->function);
4190 XMARK (*backlist->function);
4192 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
4193 i = 0;
4194 else
4195 i = backlist->nargs - 1;
4196 for (; i >= 0; i--)
4197 if (!XMARKBIT (backlist->args[i]))
4199 mark_object (&backlist->args[i]);
4200 XMARK (backlist->args[i]);
4203 mark_kboards ();
4205 /* Look thru every buffer's undo list
4206 for elements that update markers that were not marked,
4207 and delete them. */
4209 register struct buffer *nextb = all_buffers;
4211 while (nextb)
4213 /* If a buffer's undo list is Qt, that means that undo is
4214 turned off in that buffer. Calling truncate_undo_list on
4215 Qt tends to return NULL, which effectively turns undo back on.
4216 So don't call truncate_undo_list if undo_list is Qt. */
4217 if (! EQ (nextb->undo_list, Qt))
4219 Lisp_Object tail, prev;
4220 tail = nextb->undo_list;
4221 prev = Qnil;
4222 while (CONSP (tail))
4224 if (GC_CONSP (XCAR (tail))
4225 && GC_MARKERP (XCAR (XCAR (tail)))
4226 && ! XMARKBIT (XMARKER (XCAR (XCAR (tail)))->chain))
4228 if (NILP (prev))
4229 nextb->undo_list = tail = XCDR (tail);
4230 else
4232 tail = XCDR (tail);
4233 XSETCDR (prev, tail);
4236 else
4238 prev = tail;
4239 tail = XCDR (tail);
4244 nextb = nextb->next;
4248 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4249 mark_stack ();
4250 #endif
4252 gc_sweep ();
4254 /* Clear the mark bits that we set in certain root slots. */
4256 #if (GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE \
4257 || GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES)
4258 for (tail = gcprolist; tail; tail = tail->next)
4259 for (i = 0; i < tail->nvars; i++)
4260 XUNMARK (tail->var[i]);
4261 #endif
4263 unmark_byte_stack ();
4264 for (backlist = backtrace_list; backlist; backlist = backlist->next)
4266 XUNMARK (*backlist->function);
4267 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
4268 i = 0;
4269 else
4270 i = backlist->nargs - 1;
4271 for (; i >= 0; i--)
4272 XUNMARK (backlist->args[i]);
4274 XUNMARK (buffer_defaults.name);
4275 XUNMARK (buffer_local_symbols.name);
4277 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES && 0
4278 dump_zombies ();
4279 #endif
4281 UNBLOCK_INPUT;
4283 /* clear_marks (); */
4284 gc_in_progress = 0;
4286 consing_since_gc = 0;
4287 if (gc_cons_threshold < 10000)
4288 gc_cons_threshold = 10000;
4290 if (garbage_collection_messages)
4292 if (message_p || minibuf_level > 0)
4293 restore_message ();
4294 else
4295 message1_nolog ("Garbage collecting...done");
4298 unbind_to (count, Qnil);
4300 total[0] = Fcons (make_number (total_conses),
4301 make_number (total_free_conses));
4302 total[1] = Fcons (make_number (total_symbols),
4303 make_number (total_free_symbols));
4304 total[2] = Fcons (make_number (total_markers),
4305 make_number (total_free_markers));
4306 total[3] = make_number (total_string_size);
4307 total[4] = make_number (total_vector_size);
4308 total[5] = Fcons (make_number (total_floats),
4309 make_number (total_free_floats));
4310 total[6] = Fcons (make_number (total_intervals),
4311 make_number (total_free_intervals));
4312 total[7] = Fcons (make_number (total_strings),
4313 make_number (total_free_strings));
4315 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4317 /* Compute average percentage of zombies. */
4318 double nlive = 0;
4320 for (i = 0; i < 7; ++i)
4321 nlive += XFASTINT (XCAR (total[i]));
4323 avg_live = (avg_live * ngcs + nlive) / (ngcs + 1);
4324 max_live = max (nlive, max_live);
4325 avg_zombies = (avg_zombies * ngcs + nzombies) / (ngcs + 1);
4326 max_zombies = max (nzombies, max_zombies);
4327 ++ngcs;
4329 #endif
4331 if (!NILP (Vpost_gc_hook))
4333 int count = inhibit_garbage_collection ();
4334 safe_run_hooks (Qpost_gc_hook);
4335 unbind_to (count, Qnil);
4338 return Flist (sizeof total / sizeof *total, total);
4342 /* Mark Lisp objects in glyph matrix MATRIX. Currently the
4343 only interesting objects referenced from glyphs are strings. */
4345 static void
4346 mark_glyph_matrix (matrix)
4347 struct glyph_matrix *matrix;
4349 struct glyph_row *row = matrix->rows;
4350 struct glyph_row *end = row + matrix->nrows;
4352 for (; row < end; ++row)
4353 if (row->enabled_p)
4355 int area;
4356 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
4358 struct glyph *glyph = row->glyphs[area];
4359 struct glyph *end_glyph = glyph + row->used[area];
4361 for (; glyph < end_glyph; ++glyph)
4362 if (GC_STRINGP (glyph->object)
4363 && !STRING_MARKED_P (XSTRING (glyph->object)))
4364 mark_object (&glyph->object);
4370 /* Mark Lisp faces in the face cache C. */
4372 static void
4373 mark_face_cache (c)
4374 struct face_cache *c;
4376 if (c)
4378 int i, j;
4379 for (i = 0; i < c->used; ++i)
4381 struct face *face = FACE_FROM_ID (c->f, i);
4383 if (face)
4385 for (j = 0; j < LFACE_VECTOR_SIZE; ++j)
4386 mark_object (&face->lface[j]);
4393 #ifdef HAVE_WINDOW_SYSTEM
4395 /* Mark Lisp objects in image IMG. */
4397 static void
4398 mark_image (img)
4399 struct image *img;
4401 mark_object (&img->spec);
4403 if (!NILP (img->data.lisp_val))
4404 mark_object (&img->data.lisp_val);
4408 /* Mark Lisp objects in image cache of frame F. It's done this way so
4409 that we don't have to include xterm.h here. */
4411 static void
4412 mark_image_cache (f)
4413 struct frame *f;
4415 forall_images_in_image_cache (f, mark_image);
4418 #endif /* HAVE_X_WINDOWS */
4422 /* Mark reference to a Lisp_Object.
4423 If the object referred to has not been seen yet, recursively mark
4424 all the references contained in it. */
4426 #define LAST_MARKED_SIZE 500
4427 Lisp_Object *last_marked[LAST_MARKED_SIZE];
4428 int last_marked_index;
4430 /* For debugging--call abort when we cdr down this many
4431 links of a list, in mark_object. In debugging,
4432 the call to abort will hit a breakpoint.
4433 Normally this is zero and the check never goes off. */
4434 int mark_object_loop_halt;
4436 void
4437 mark_object (argptr)
4438 Lisp_Object *argptr;
4440 Lisp_Object *objptr = argptr;
4441 register Lisp_Object obj;
4442 #ifdef GC_CHECK_MARKED_OBJECTS
4443 void *po;
4444 struct mem_node *m;
4445 #endif
4446 int cdr_count = 0;
4448 loop:
4449 obj = *objptr;
4450 loop2:
4451 XUNMARK (obj);
4453 if (PURE_POINTER_P (XPNTR (obj)))
4454 return;
4456 last_marked[last_marked_index++] = objptr;
4457 if (last_marked_index == LAST_MARKED_SIZE)
4458 last_marked_index = 0;
4460 /* Perform some sanity checks on the objects marked here. Abort if
4461 we encounter an object we know is bogus. This increases GC time
4462 by ~80%, and requires compilation with GC_MARK_STACK != 0. */
4463 #ifdef GC_CHECK_MARKED_OBJECTS
4465 po = (void *) XPNTR (obj);
4467 /* Check that the object pointed to by PO is known to be a Lisp
4468 structure allocated from the heap. */
4469 #define CHECK_ALLOCATED() \
4470 do { \
4471 m = mem_find (po); \
4472 if (m == MEM_NIL) \
4473 abort (); \
4474 } while (0)
4476 /* Check that the object pointed to by PO is live, using predicate
4477 function LIVEP. */
4478 #define CHECK_LIVE(LIVEP) \
4479 do { \
4480 if (!LIVEP (m, po)) \
4481 abort (); \
4482 } while (0)
4484 /* Check both of the above conditions. */
4485 #define CHECK_ALLOCATED_AND_LIVE(LIVEP) \
4486 do { \
4487 CHECK_ALLOCATED (); \
4488 CHECK_LIVE (LIVEP); \
4489 } while (0) \
4491 #else /* not GC_CHECK_MARKED_OBJECTS */
4493 #define CHECK_ALLOCATED() (void) 0
4494 #define CHECK_LIVE(LIVEP) (void) 0
4495 #define CHECK_ALLOCATED_AND_LIVE(LIVEP) (void) 0
4497 #endif /* not GC_CHECK_MARKED_OBJECTS */
4499 switch (SWITCH_ENUM_CAST (XGCTYPE (obj)))
4501 case Lisp_String:
4503 register struct Lisp_String *ptr = XSTRING (obj);
4504 CHECK_ALLOCATED_AND_LIVE (live_string_p);
4505 MARK_INTERVAL_TREE (ptr->intervals);
4506 MARK_STRING (ptr);
4507 #ifdef GC_CHECK_STRING_BYTES
4508 /* Check that the string size recorded in the string is the
4509 same as the one recorded in the sdata structure. */
4510 CHECK_STRING_BYTES (ptr);
4511 #endif /* GC_CHECK_STRING_BYTES */
4513 break;
4515 case Lisp_Vectorlike:
4516 #ifdef GC_CHECK_MARKED_OBJECTS
4517 m = mem_find (po);
4518 if (m == MEM_NIL && !GC_SUBRP (obj)
4519 && po != &buffer_defaults
4520 && po != &buffer_local_symbols)
4521 abort ();
4522 #endif /* GC_CHECK_MARKED_OBJECTS */
4524 if (GC_BUFFERP (obj))
4526 if (!XMARKBIT (XBUFFER (obj)->name))
4528 #ifdef GC_CHECK_MARKED_OBJECTS
4529 if (po != &buffer_defaults && po != &buffer_local_symbols)
4531 struct buffer *b;
4532 for (b = all_buffers; b && b != po; b = b->next)
4534 if (b == NULL)
4535 abort ();
4537 #endif /* GC_CHECK_MARKED_OBJECTS */
4538 mark_buffer (obj);
4541 else if (GC_SUBRP (obj))
4542 break;
4543 else if (GC_COMPILEDP (obj))
4544 /* We could treat this just like a vector, but it is better to
4545 save the COMPILED_CONSTANTS element for last and avoid
4546 recursion there. */
4548 register struct Lisp_Vector *ptr = XVECTOR (obj);
4549 register EMACS_INT size = ptr->size;
4550 register int i;
4552 if (size & ARRAY_MARK_FLAG)
4553 break; /* Already marked */
4555 CHECK_LIVE (live_vector_p);
4556 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
4557 size &= PSEUDOVECTOR_SIZE_MASK;
4558 for (i = 0; i < size; i++) /* and then mark its elements */
4560 if (i != COMPILED_CONSTANTS)
4561 mark_object (&ptr->contents[i]);
4563 /* This cast should be unnecessary, but some Mips compiler complains
4564 (MIPS-ABI + SysVR4, DC/OSx, etc). */
4565 objptr = (Lisp_Object *) &ptr->contents[COMPILED_CONSTANTS];
4566 goto loop;
4568 else if (GC_FRAMEP (obj))
4570 register struct frame *ptr = XFRAME (obj);
4571 register EMACS_INT size = ptr->size;
4573 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
4574 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
4576 CHECK_LIVE (live_vector_p);
4577 mark_object (&ptr->name);
4578 mark_object (&ptr->icon_name);
4579 mark_object (&ptr->title);
4580 mark_object (&ptr->focus_frame);
4581 mark_object (&ptr->selected_window);
4582 mark_object (&ptr->minibuffer_window);
4583 mark_object (&ptr->param_alist);
4584 mark_object (&ptr->scroll_bars);
4585 mark_object (&ptr->condemned_scroll_bars);
4586 mark_object (&ptr->menu_bar_items);
4587 mark_object (&ptr->face_alist);
4588 mark_object (&ptr->menu_bar_vector);
4589 mark_object (&ptr->buffer_predicate);
4590 mark_object (&ptr->buffer_list);
4591 mark_object (&ptr->menu_bar_window);
4592 mark_object (&ptr->tool_bar_window);
4593 mark_face_cache (ptr->face_cache);
4594 #ifdef HAVE_WINDOW_SYSTEM
4595 mark_image_cache (ptr);
4596 mark_object (&ptr->tool_bar_items);
4597 mark_object (&ptr->desired_tool_bar_string);
4598 mark_object (&ptr->current_tool_bar_string);
4599 #endif /* HAVE_WINDOW_SYSTEM */
4601 else if (GC_BOOL_VECTOR_P (obj))
4603 register struct Lisp_Vector *ptr = XVECTOR (obj);
4605 if (ptr->size & ARRAY_MARK_FLAG)
4606 break; /* Already marked */
4607 CHECK_LIVE (live_vector_p);
4608 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
4610 else if (GC_WINDOWP (obj))
4612 register struct Lisp_Vector *ptr = XVECTOR (obj);
4613 struct window *w = XWINDOW (obj);
4614 register EMACS_INT size = ptr->size;
4615 register int i;
4617 /* Stop if already marked. */
4618 if (size & ARRAY_MARK_FLAG)
4619 break;
4621 /* Mark it. */
4622 CHECK_LIVE (live_vector_p);
4623 ptr->size |= ARRAY_MARK_FLAG;
4625 /* There is no Lisp data above The member CURRENT_MATRIX in
4626 struct WINDOW. Stop marking when that slot is reached. */
4627 for (i = 0;
4628 (char *) &ptr->contents[i] < (char *) &w->current_matrix;
4629 i++)
4630 mark_object (&ptr->contents[i]);
4632 /* Mark glyphs for leaf windows. Marking window matrices is
4633 sufficient because frame matrices use the same glyph
4634 memory. */
4635 if (NILP (w->hchild)
4636 && NILP (w->vchild)
4637 && w->current_matrix)
4639 mark_glyph_matrix (w->current_matrix);
4640 mark_glyph_matrix (w->desired_matrix);
4643 else if (GC_HASH_TABLE_P (obj))
4645 struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
4646 EMACS_INT size = h->size;
4648 /* Stop if already marked. */
4649 if (size & ARRAY_MARK_FLAG)
4650 break;
4652 /* Mark it. */
4653 CHECK_LIVE (live_vector_p);
4654 h->size |= ARRAY_MARK_FLAG;
4656 /* Mark contents. */
4657 /* Do not mark next_free or next_weak.
4658 Being in the next_weak chain
4659 should not keep the hash table alive.
4660 No need to mark `count' since it is an integer. */
4661 mark_object (&h->test);
4662 mark_object (&h->weak);
4663 mark_object (&h->rehash_size);
4664 mark_object (&h->rehash_threshold);
4665 mark_object (&h->hash);
4666 mark_object (&h->next);
4667 mark_object (&h->index);
4668 mark_object (&h->user_hash_function);
4669 mark_object (&h->user_cmp_function);
4671 /* If hash table is not weak, mark all keys and values.
4672 For weak tables, mark only the vector. */
4673 if (GC_NILP (h->weak))
4674 mark_object (&h->key_and_value);
4675 else
4676 XVECTOR (h->key_and_value)->size |= ARRAY_MARK_FLAG;
4679 else
4681 register struct Lisp_Vector *ptr = XVECTOR (obj);
4682 register EMACS_INT size = ptr->size;
4683 register int i;
4685 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
4686 CHECK_LIVE (live_vector_p);
4687 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
4688 if (size & PSEUDOVECTOR_FLAG)
4689 size &= PSEUDOVECTOR_SIZE_MASK;
4691 for (i = 0; i < size; i++) /* and then mark its elements */
4692 mark_object (&ptr->contents[i]);
4694 break;
4696 case Lisp_Symbol:
4698 register struct Lisp_Symbol *ptr = XSYMBOL (obj);
4699 struct Lisp_Symbol *ptrx;
4701 if (XMARKBIT (ptr->plist)) break;
4702 CHECK_ALLOCATED_AND_LIVE (live_symbol_p);
4703 XMARK (ptr->plist);
4704 mark_object ((Lisp_Object *) &ptr->value);
4705 mark_object (&ptr->function);
4706 mark_object (&ptr->plist);
4708 if (!PURE_POINTER_P (XSTRING (ptr->xname)))
4709 MARK_STRING (XSTRING (ptr->xname));
4710 MARK_INTERVAL_TREE (STRING_INTERVALS (ptr->xname));
4712 /* Note that we do not mark the obarray of the symbol.
4713 It is safe not to do so because nothing accesses that
4714 slot except to check whether it is nil. */
4715 ptr = ptr->next;
4716 if (ptr)
4718 /* For the benefit of the last_marked log. */
4719 objptr = (Lisp_Object *)&XSYMBOL (obj)->next;
4720 ptrx = ptr; /* Use of ptrx avoids compiler bug on Sun */
4721 XSETSYMBOL (obj, ptrx);
4722 /* We can't goto loop here because *objptr doesn't contain an
4723 actual Lisp_Object with valid datatype field. */
4724 goto loop2;
4727 break;
4729 case Lisp_Misc:
4730 CHECK_ALLOCATED_AND_LIVE (live_misc_p);
4731 switch (XMISCTYPE (obj))
4733 case Lisp_Misc_Marker:
4734 XMARK (XMARKER (obj)->chain);
4735 /* DO NOT mark thru the marker's chain.
4736 The buffer's markers chain does not preserve markers from gc;
4737 instead, markers are removed from the chain when freed by gc. */
4738 break;
4740 case Lisp_Misc_Buffer_Local_Value:
4741 case Lisp_Misc_Some_Buffer_Local_Value:
4743 register struct Lisp_Buffer_Local_Value *ptr
4744 = XBUFFER_LOCAL_VALUE (obj);
4745 if (XMARKBIT (ptr->realvalue)) break;
4746 XMARK (ptr->realvalue);
4747 /* If the cdr is nil, avoid recursion for the car. */
4748 if (EQ (ptr->cdr, Qnil))
4750 objptr = &ptr->realvalue;
4751 goto loop;
4753 mark_object (&ptr->realvalue);
4754 mark_object (&ptr->buffer);
4755 mark_object (&ptr->frame);
4756 objptr = &ptr->cdr;
4757 goto loop;
4760 case Lisp_Misc_Intfwd:
4761 case Lisp_Misc_Boolfwd:
4762 case Lisp_Misc_Objfwd:
4763 case Lisp_Misc_Buffer_Objfwd:
4764 case Lisp_Misc_Kboard_Objfwd:
4765 /* Don't bother with Lisp_Buffer_Objfwd,
4766 since all markable slots in current buffer marked anyway. */
4767 /* Don't need to do Lisp_Objfwd, since the places they point
4768 are protected with staticpro. */
4769 break;
4771 case Lisp_Misc_Overlay:
4773 struct Lisp_Overlay *ptr = XOVERLAY (obj);
4774 if (!XMARKBIT (ptr->plist))
4776 XMARK (ptr->plist);
4777 mark_object (&ptr->start);
4778 mark_object (&ptr->end);
4779 objptr = &ptr->plist;
4780 goto loop;
4783 break;
4785 default:
4786 abort ();
4788 break;
4790 case Lisp_Cons:
4792 register struct Lisp_Cons *ptr = XCONS (obj);
4793 if (XMARKBIT (ptr->car)) break;
4794 CHECK_ALLOCATED_AND_LIVE (live_cons_p);
4795 XMARK (ptr->car);
4796 /* If the cdr is nil, avoid recursion for the car. */
4797 if (EQ (ptr->cdr, Qnil))
4799 objptr = &ptr->car;
4800 cdr_count = 0;
4801 goto loop;
4803 mark_object (&ptr->car);
4804 objptr = &ptr->cdr;
4805 cdr_count++;
4806 if (cdr_count == mark_object_loop_halt)
4807 abort ();
4808 goto loop;
4811 case Lisp_Float:
4812 CHECK_ALLOCATED_AND_LIVE (live_float_p);
4813 XMARK (XFLOAT (obj)->type);
4814 break;
4816 case Lisp_Int:
4817 break;
4819 default:
4820 abort ();
4823 #undef CHECK_LIVE
4824 #undef CHECK_ALLOCATED
4825 #undef CHECK_ALLOCATED_AND_LIVE
4828 /* Mark the pointers in a buffer structure. */
4830 static void
4831 mark_buffer (buf)
4832 Lisp_Object buf;
4834 register struct buffer *buffer = XBUFFER (buf);
4835 register Lisp_Object *ptr;
4836 Lisp_Object base_buffer;
4838 /* This is the buffer's markbit */
4839 mark_object (&buffer->name);
4840 XMARK (buffer->name);
4842 MARK_INTERVAL_TREE (BUF_INTERVALS (buffer));
4844 if (CONSP (buffer->undo_list))
4846 Lisp_Object tail;
4847 tail = buffer->undo_list;
4849 while (CONSP (tail))
4851 register struct Lisp_Cons *ptr = XCONS (tail);
4853 if (XMARKBIT (ptr->car))
4854 break;
4855 XMARK (ptr->car);
4856 if (GC_CONSP (ptr->car)
4857 && ! XMARKBIT (XCAR (ptr->car))
4858 && GC_MARKERP (XCAR (ptr->car)))
4860 XMARK (XCAR_AS_LVALUE (ptr->car));
4861 mark_object (&XCDR_AS_LVALUE (ptr->car));
4863 else
4864 mark_object (&ptr->car);
4866 if (CONSP (ptr->cdr))
4867 tail = ptr->cdr;
4868 else
4869 break;
4872 mark_object (&XCDR_AS_LVALUE (tail));
4874 else
4875 mark_object (&buffer->undo_list);
4877 for (ptr = &buffer->name + 1;
4878 (char *)ptr < (char *)buffer + sizeof (struct buffer);
4879 ptr++)
4880 mark_object (ptr);
4882 /* If this is an indirect buffer, mark its base buffer. */
4883 if (buffer->base_buffer && !XMARKBIT (buffer->base_buffer->name))
4885 XSETBUFFER (base_buffer, buffer->base_buffer);
4886 mark_buffer (base_buffer);
4891 /* Mark the pointers in the kboard objects. */
4893 static void
4894 mark_kboards ()
4896 KBOARD *kb;
4897 Lisp_Object *p;
4898 for (kb = all_kboards; kb; kb = kb->next_kboard)
4900 if (kb->kbd_macro_buffer)
4901 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
4902 mark_object (p);
4903 mark_object (&kb->Voverriding_terminal_local_map);
4904 mark_object (&kb->Vlast_command);
4905 mark_object (&kb->Vreal_last_command);
4906 mark_object (&kb->Vprefix_arg);
4907 mark_object (&kb->Vlast_prefix_arg);
4908 mark_object (&kb->kbd_queue);
4909 mark_object (&kb->defining_kbd_macro);
4910 mark_object (&kb->Vlast_kbd_macro);
4911 mark_object (&kb->Vsystem_key_alist);
4912 mark_object (&kb->system_key_syms);
4913 mark_object (&kb->Vdefault_minibuffer_frame);
4914 mark_object (&kb->echo_string);
4919 /* Value is non-zero if OBJ will survive the current GC because it's
4920 either marked or does not need to be marked to survive. */
4923 survives_gc_p (obj)
4924 Lisp_Object obj;
4926 int survives_p;
4928 switch (XGCTYPE (obj))
4930 case Lisp_Int:
4931 survives_p = 1;
4932 break;
4934 case Lisp_Symbol:
4935 survives_p = XMARKBIT (XSYMBOL (obj)->plist);
4936 break;
4938 case Lisp_Misc:
4939 switch (XMISCTYPE (obj))
4941 case Lisp_Misc_Marker:
4942 survives_p = XMARKBIT (obj);
4943 break;
4945 case Lisp_Misc_Buffer_Local_Value:
4946 case Lisp_Misc_Some_Buffer_Local_Value:
4947 survives_p = XMARKBIT (XBUFFER_LOCAL_VALUE (obj)->realvalue);
4948 break;
4950 case Lisp_Misc_Intfwd:
4951 case Lisp_Misc_Boolfwd:
4952 case Lisp_Misc_Objfwd:
4953 case Lisp_Misc_Buffer_Objfwd:
4954 case Lisp_Misc_Kboard_Objfwd:
4955 survives_p = 1;
4956 break;
4958 case Lisp_Misc_Overlay:
4959 survives_p = XMARKBIT (XOVERLAY (obj)->plist);
4960 break;
4962 default:
4963 abort ();
4965 break;
4967 case Lisp_String:
4969 struct Lisp_String *s = XSTRING (obj);
4970 survives_p = STRING_MARKED_P (s);
4972 break;
4974 case Lisp_Vectorlike:
4975 if (GC_BUFFERP (obj))
4976 survives_p = XMARKBIT (XBUFFER (obj)->name);
4977 else if (GC_SUBRP (obj))
4978 survives_p = 1;
4979 else
4980 survives_p = XVECTOR (obj)->size & ARRAY_MARK_FLAG;
4981 break;
4983 case Lisp_Cons:
4984 survives_p = XMARKBIT (XCAR (obj));
4985 break;
4987 case Lisp_Float:
4988 survives_p = XMARKBIT (XFLOAT (obj)->type);
4989 break;
4991 default:
4992 abort ();
4995 return survives_p || PURE_POINTER_P ((void *) XPNTR (obj));
5000 /* Sweep: find all structures not marked, and free them. */
5002 static void
5003 gc_sweep ()
5005 /* Remove or mark entries in weak hash tables.
5006 This must be done before any object is unmarked. */
5007 sweep_weak_hash_tables ();
5009 sweep_strings ();
5010 #ifdef GC_CHECK_STRING_BYTES
5011 if (!noninteractive)
5012 check_string_bytes (1);
5013 #endif
5015 /* Put all unmarked conses on free list */
5017 register struct cons_block *cblk;
5018 struct cons_block **cprev = &cons_block;
5019 register int lim = cons_block_index;
5020 register int num_free = 0, num_used = 0;
5022 cons_free_list = 0;
5024 for (cblk = cons_block; cblk; cblk = *cprev)
5026 register int i;
5027 int this_free = 0;
5028 for (i = 0; i < lim; i++)
5029 if (!XMARKBIT (cblk->conses[i].car))
5031 this_free++;
5032 *(struct Lisp_Cons **)&cblk->conses[i].cdr = cons_free_list;
5033 cons_free_list = &cblk->conses[i];
5034 #if GC_MARK_STACK
5035 cons_free_list->car = Vdead;
5036 #endif
5038 else
5040 num_used++;
5041 XUNMARK (cblk->conses[i].car);
5043 lim = CONS_BLOCK_SIZE;
5044 /* If this block contains only free conses and we have already
5045 seen more than two blocks worth of free conses then deallocate
5046 this block. */
5047 if (this_free == CONS_BLOCK_SIZE && num_free > CONS_BLOCK_SIZE)
5049 *cprev = cblk->next;
5050 /* Unhook from the free list. */
5051 cons_free_list = *(struct Lisp_Cons **) &cblk->conses[0].cdr;
5052 lisp_free (cblk);
5053 n_cons_blocks--;
5055 else
5057 num_free += this_free;
5058 cprev = &cblk->next;
5061 total_conses = num_used;
5062 total_free_conses = num_free;
5065 /* Put all unmarked floats on free list */
5067 register struct float_block *fblk;
5068 struct float_block **fprev = &float_block;
5069 register int lim = float_block_index;
5070 register int num_free = 0, num_used = 0;
5072 float_free_list = 0;
5074 for (fblk = float_block; fblk; fblk = *fprev)
5076 register int i;
5077 int this_free = 0;
5078 for (i = 0; i < lim; i++)
5079 if (!XMARKBIT (fblk->floats[i].type))
5081 this_free++;
5082 *(struct Lisp_Float **)&fblk->floats[i].data = float_free_list;
5083 float_free_list = &fblk->floats[i];
5084 #if GC_MARK_STACK
5085 float_free_list->type = Vdead;
5086 #endif
5088 else
5090 num_used++;
5091 XUNMARK (fblk->floats[i].type);
5093 lim = FLOAT_BLOCK_SIZE;
5094 /* If this block contains only free floats and we have already
5095 seen more than two blocks worth of free floats then deallocate
5096 this block. */
5097 if (this_free == FLOAT_BLOCK_SIZE && num_free > FLOAT_BLOCK_SIZE)
5099 *fprev = fblk->next;
5100 /* Unhook from the free list. */
5101 float_free_list = *(struct Lisp_Float **) &fblk->floats[0].data;
5102 lisp_free (fblk);
5103 n_float_blocks--;
5105 else
5107 num_free += this_free;
5108 fprev = &fblk->next;
5111 total_floats = num_used;
5112 total_free_floats = num_free;
5115 /* Put all unmarked intervals on free list */
5117 register struct interval_block *iblk;
5118 struct interval_block **iprev = &interval_block;
5119 register int lim = interval_block_index;
5120 register int num_free = 0, num_used = 0;
5122 interval_free_list = 0;
5124 for (iblk = interval_block; iblk; iblk = *iprev)
5126 register int i;
5127 int this_free = 0;
5129 for (i = 0; i < lim; i++)
5131 if (! XMARKBIT (iblk->intervals[i].plist))
5133 SET_INTERVAL_PARENT (&iblk->intervals[i], interval_free_list);
5134 interval_free_list = &iblk->intervals[i];
5135 this_free++;
5137 else
5139 num_used++;
5140 XUNMARK (iblk->intervals[i].plist);
5143 lim = INTERVAL_BLOCK_SIZE;
5144 /* If this block contains only free intervals and we have already
5145 seen more than two blocks worth of free intervals then
5146 deallocate this block. */
5147 if (this_free == INTERVAL_BLOCK_SIZE && num_free > INTERVAL_BLOCK_SIZE)
5149 *iprev = iblk->next;
5150 /* Unhook from the free list. */
5151 interval_free_list = INTERVAL_PARENT (&iblk->intervals[0]);
5152 lisp_free (iblk);
5153 n_interval_blocks--;
5155 else
5157 num_free += this_free;
5158 iprev = &iblk->next;
5161 total_intervals = num_used;
5162 total_free_intervals = num_free;
5165 /* Put all unmarked symbols on free list */
5167 register struct symbol_block *sblk;
5168 struct symbol_block **sprev = &symbol_block;
5169 register int lim = symbol_block_index;
5170 register int num_free = 0, num_used = 0;
5172 symbol_free_list = NULL;
5174 for (sblk = symbol_block; sblk; sblk = *sprev)
5176 int this_free = 0;
5177 struct Lisp_Symbol *sym = sblk->symbols;
5178 struct Lisp_Symbol *end = sym + lim;
5180 for (; sym < end; ++sym)
5182 /* Check if the symbol was created during loadup. In such a case
5183 it might be pointed to by pure bytecode which we don't trace,
5184 so we conservatively assume that it is live. */
5185 int pure_p = PURE_POINTER_P (XSTRING (sym->xname));
5187 if (!XMARKBIT (sym->plist) && !pure_p)
5189 *(struct Lisp_Symbol **) &sym->value = symbol_free_list;
5190 symbol_free_list = sym;
5191 #if GC_MARK_STACK
5192 symbol_free_list->function = Vdead;
5193 #endif
5194 ++this_free;
5196 else
5198 ++num_used;
5199 if (!pure_p)
5200 UNMARK_STRING (XSTRING (sym->xname));
5201 XUNMARK (sym->plist);
5205 lim = SYMBOL_BLOCK_SIZE;
5206 /* If this block contains only free symbols and we have already
5207 seen more than two blocks worth of free symbols then deallocate
5208 this block. */
5209 if (this_free == SYMBOL_BLOCK_SIZE && num_free > SYMBOL_BLOCK_SIZE)
5211 *sprev = sblk->next;
5212 /* Unhook from the free list. */
5213 symbol_free_list = *(struct Lisp_Symbol **)&sblk->symbols[0].value;
5214 lisp_free (sblk);
5215 n_symbol_blocks--;
5217 else
5219 num_free += this_free;
5220 sprev = &sblk->next;
5223 total_symbols = num_used;
5224 total_free_symbols = num_free;
5227 /* Put all unmarked misc's on free list.
5228 For a marker, first unchain it from the buffer it points into. */
5230 register struct marker_block *mblk;
5231 struct marker_block **mprev = &marker_block;
5232 register int lim = marker_block_index;
5233 register int num_free = 0, num_used = 0;
5235 marker_free_list = 0;
5237 for (mblk = marker_block; mblk; mblk = *mprev)
5239 register int i;
5240 int this_free = 0;
5241 EMACS_INT already_free = -1;
5243 for (i = 0; i < lim; i++)
5245 Lisp_Object *markword;
5246 switch (mblk->markers[i].u_marker.type)
5248 case Lisp_Misc_Marker:
5249 markword = &mblk->markers[i].u_marker.chain;
5250 break;
5251 case Lisp_Misc_Buffer_Local_Value:
5252 case Lisp_Misc_Some_Buffer_Local_Value:
5253 markword = &mblk->markers[i].u_buffer_local_value.realvalue;
5254 break;
5255 case Lisp_Misc_Overlay:
5256 markword = &mblk->markers[i].u_overlay.plist;
5257 break;
5258 case Lisp_Misc_Free:
5259 /* If the object was already free, keep it
5260 on the free list. */
5261 markword = (Lisp_Object *) &already_free;
5262 break;
5263 default:
5264 markword = 0;
5265 break;
5267 if (markword && !XMARKBIT (*markword))
5269 Lisp_Object tem;
5270 if (mblk->markers[i].u_marker.type == Lisp_Misc_Marker)
5272 /* tem1 avoids Sun compiler bug */
5273 struct Lisp_Marker *tem1 = &mblk->markers[i].u_marker;
5274 XSETMARKER (tem, tem1);
5275 unchain_marker (tem);
5277 /* Set the type of the freed object to Lisp_Misc_Free.
5278 We could leave the type alone, since nobody checks it,
5279 but this might catch bugs faster. */
5280 mblk->markers[i].u_marker.type = Lisp_Misc_Free;
5281 mblk->markers[i].u_free.chain = marker_free_list;
5282 marker_free_list = &mblk->markers[i];
5283 this_free++;
5285 else
5287 num_used++;
5288 if (markword)
5289 XUNMARK (*markword);
5292 lim = MARKER_BLOCK_SIZE;
5293 /* If this block contains only free markers and we have already
5294 seen more than two blocks worth of free markers then deallocate
5295 this block. */
5296 if (this_free == MARKER_BLOCK_SIZE && num_free > MARKER_BLOCK_SIZE)
5298 *mprev = mblk->next;
5299 /* Unhook from the free list. */
5300 marker_free_list = mblk->markers[0].u_free.chain;
5301 lisp_free (mblk);
5302 n_marker_blocks--;
5304 else
5306 num_free += this_free;
5307 mprev = &mblk->next;
5311 total_markers = num_used;
5312 total_free_markers = num_free;
5315 /* Free all unmarked buffers */
5317 register struct buffer *buffer = all_buffers, *prev = 0, *next;
5319 while (buffer)
5320 if (!XMARKBIT (buffer->name))
5322 if (prev)
5323 prev->next = buffer->next;
5324 else
5325 all_buffers = buffer->next;
5326 next = buffer->next;
5327 lisp_free (buffer);
5328 buffer = next;
5330 else
5332 XUNMARK (buffer->name);
5333 UNMARK_BALANCE_INTERVALS (BUF_INTERVALS (buffer));
5334 prev = buffer, buffer = buffer->next;
5338 /* Free all unmarked vectors */
5340 register struct Lisp_Vector *vector = all_vectors, *prev = 0, *next;
5341 total_vector_size = 0;
5343 while (vector)
5344 if (!(vector->size & ARRAY_MARK_FLAG))
5346 if (prev)
5347 prev->next = vector->next;
5348 else
5349 all_vectors = vector->next;
5350 next = vector->next;
5351 lisp_free (vector);
5352 n_vectors--;
5353 vector = next;
5356 else
5358 vector->size &= ~ARRAY_MARK_FLAG;
5359 if (vector->size & PSEUDOVECTOR_FLAG)
5360 total_vector_size += (PSEUDOVECTOR_SIZE_MASK & vector->size);
5361 else
5362 total_vector_size += vector->size;
5363 prev = vector, vector = vector->next;
5367 #ifdef GC_CHECK_STRING_BYTES
5368 if (!noninteractive)
5369 check_string_bytes (1);
5370 #endif
5376 /* Debugging aids. */
5378 DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, 0,
5379 doc: /* Return the address of the last byte Emacs has allocated, divided by 1024.
5380 This may be helpful in debugging Emacs's memory usage.
5381 We divide the value by 1024 to make sure it fits in a Lisp integer. */)
5384 Lisp_Object end;
5386 XSETINT (end, (EMACS_INT) sbrk (0) / 1024);
5388 return end;
5391 DEFUN ("memory-use-counts", Fmemory_use_counts, Smemory_use_counts, 0, 0, 0,
5392 doc: /* Return a list of counters that measure how much consing there has been.
5393 Each of these counters increments for a certain kind of object.
5394 The counters wrap around from the largest positive integer to zero.
5395 Garbage collection does not decrease them.
5396 The elements of the value are as follows:
5397 (CONSES FLOATS VECTOR-CELLS SYMBOLS STRING-CHARS MISCS INTERVALS STRINGS)
5398 All are in units of 1 = one object consed
5399 except for VECTOR-CELLS and STRING-CHARS, which count the total length of
5400 objects consed.
5401 MISCS include overlays, markers, and some internal types.
5402 Frames, windows, buffers, and subprocesses count as vectors
5403 (but the contents of a buffer's text do not count here). */)
5406 Lisp_Object consed[8];
5408 consed[0] = make_number (min (MOST_POSITIVE_FIXNUM, cons_cells_consed));
5409 consed[1] = make_number (min (MOST_POSITIVE_FIXNUM, floats_consed));
5410 consed[2] = make_number (min (MOST_POSITIVE_FIXNUM, vector_cells_consed));
5411 consed[3] = make_number (min (MOST_POSITIVE_FIXNUM, symbols_consed));
5412 consed[4] = make_number (min (MOST_POSITIVE_FIXNUM, string_chars_consed));
5413 consed[5] = make_number (min (MOST_POSITIVE_FIXNUM, misc_objects_consed));
5414 consed[6] = make_number (min (MOST_POSITIVE_FIXNUM, intervals_consed));
5415 consed[7] = make_number (min (MOST_POSITIVE_FIXNUM, strings_consed));
5417 return Flist (8, consed);
5420 int suppress_checking;
5421 void
5422 die (msg, file, line)
5423 const char *msg;
5424 const char *file;
5425 int line;
5427 fprintf (stderr, "\r\nEmacs fatal error: %s:%d: %s\r\n",
5428 file, line, msg);
5429 abort ();
5432 /* Initialization */
5434 void
5435 init_alloc_once ()
5437 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
5438 purebeg = PUREBEG;
5439 pure_size = PURESIZE;
5440 pure_bytes_used = 0;
5441 pure_bytes_used_before_overflow = 0;
5443 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
5444 mem_init ();
5445 Vdead = make_pure_string ("DEAD", 4, 4, 0);
5446 #endif
5448 all_vectors = 0;
5449 ignore_warnings = 1;
5450 #ifdef DOUG_LEA_MALLOC
5451 mallopt (M_TRIM_THRESHOLD, 128*1024); /* trim threshold */
5452 mallopt (M_MMAP_THRESHOLD, 64*1024); /* mmap threshold */
5453 mallopt (M_MMAP_MAX, MMAP_MAX_AREAS); /* max. number of mmap'ed areas */
5454 #endif
5455 init_strings ();
5456 init_cons ();
5457 init_symbol ();
5458 init_marker ();
5459 init_float ();
5460 init_intervals ();
5462 #ifdef REL_ALLOC
5463 malloc_hysteresis = 32;
5464 #else
5465 malloc_hysteresis = 0;
5466 #endif
5468 spare_memory = (char *) malloc (SPARE_MEMORY);
5470 ignore_warnings = 0;
5471 gcprolist = 0;
5472 byte_stack_list = 0;
5473 staticidx = 0;
5474 consing_since_gc = 0;
5475 gc_cons_threshold = 100000 * sizeof (Lisp_Object);
5476 #ifdef VIRT_ADDR_VARIES
5477 malloc_sbrk_unused = 1<<22; /* A large number */
5478 malloc_sbrk_used = 100000; /* as reasonable as any number */
5479 #endif /* VIRT_ADDR_VARIES */
5482 void
5483 init_alloc ()
5485 gcprolist = 0;
5486 byte_stack_list = 0;
5487 #if GC_MARK_STACK
5488 #if !defined GC_SAVE_REGISTERS_ON_STACK && !defined GC_SETJMP_WORKS
5489 setjmp_tested_p = longjmps_done = 0;
5490 #endif
5491 #endif
5494 void
5495 syms_of_alloc ()
5497 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold,
5498 doc: /* *Number of bytes of consing between garbage collections.
5499 Garbage collection can happen automatically once this many bytes have been
5500 allocated since the last garbage collection. All data types count.
5502 Garbage collection happens automatically only when `eval' is called.
5504 By binding this temporarily to a large number, you can effectively
5505 prevent garbage collection during a part of the program. */);
5507 DEFVAR_INT ("pure-bytes-used", &pure_bytes_used,
5508 doc: /* Number of bytes of sharable Lisp data allocated so far. */);
5510 DEFVAR_INT ("cons-cells-consed", &cons_cells_consed,
5511 doc: /* Number of cons cells that have been consed so far. */);
5513 DEFVAR_INT ("floats-consed", &floats_consed,
5514 doc: /* Number of floats that have been consed so far. */);
5516 DEFVAR_INT ("vector-cells-consed", &vector_cells_consed,
5517 doc: /* Number of vector cells that have been consed so far. */);
5519 DEFVAR_INT ("symbols-consed", &symbols_consed,
5520 doc: /* Number of symbols that have been consed so far. */);
5522 DEFVAR_INT ("string-chars-consed", &string_chars_consed,
5523 doc: /* Number of string characters that have been consed so far. */);
5525 DEFVAR_INT ("misc-objects-consed", &misc_objects_consed,
5526 doc: /* Number of miscellaneous objects that have been consed so far. */);
5528 DEFVAR_INT ("intervals-consed", &intervals_consed,
5529 doc: /* Number of intervals that have been consed so far. */);
5531 DEFVAR_INT ("strings-consed", &strings_consed,
5532 doc: /* Number of strings that have been consed so far. */);
5534 DEFVAR_LISP ("purify-flag", &Vpurify_flag,
5535 doc: /* Non-nil means loading Lisp code in order to dump an executable.
5536 This means that certain objects should be allocated in shared (pure) space. */);
5538 DEFVAR_INT ("undo-limit", &undo_limit,
5539 doc: /* Keep no more undo information once it exceeds this size.
5540 This limit is applied when garbage collection happens.
5541 The size is counted as the number of bytes occupied,
5542 which includes both saved text and other data. */);
5543 undo_limit = 20000;
5545 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit,
5546 doc: /* Don't keep more than this much size of undo information.
5547 A command which pushes past this size is itself forgotten.
5548 This limit is applied when garbage collection happens.
5549 The size is counted as the number of bytes occupied,
5550 which includes both saved text and other data. */);
5551 undo_strong_limit = 30000;
5553 DEFVAR_BOOL ("garbage-collection-messages", &garbage_collection_messages,
5554 doc: /* Non-nil means display messages at start and end of garbage collection. */);
5555 garbage_collection_messages = 0;
5557 DEFVAR_LISP ("post-gc-hook", &Vpost_gc_hook,
5558 doc: /* Hook run after garbage collection has finished. */);
5559 Vpost_gc_hook = Qnil;
5560 Qpost_gc_hook = intern ("post-gc-hook");
5561 staticpro (&Qpost_gc_hook);
5563 DEFVAR_LISP ("memory-signal-data", &Vmemory_signal_data,
5564 doc: /* Precomputed `signal' argument for memory-full error. */);
5565 /* We build this in advance because if we wait until we need it, we might
5566 not be able to allocate the memory to hold it. */
5567 Vmemory_signal_data
5568 = list2 (Qerror,
5569 build_string ("Memory exhausted--use M-x save-some-buffers then exit and restart Emacs"));
5571 DEFVAR_LISP ("memory-full", &Vmemory_full,
5572 doc: /* Non-nil means we are handling a memory-full error. */);
5573 Vmemory_full = Qnil;
5575 staticpro (&Qgc_cons_threshold);
5576 Qgc_cons_threshold = intern ("gc-cons-threshold");
5578 staticpro (&Qchar_table_extra_slots);
5579 Qchar_table_extra_slots = intern ("char-table-extra-slots");
5581 defsubr (&Scons);
5582 defsubr (&Slist);
5583 defsubr (&Svector);
5584 defsubr (&Smake_byte_code);
5585 defsubr (&Smake_list);
5586 defsubr (&Smake_vector);
5587 defsubr (&Smake_char_table);
5588 defsubr (&Smake_string);
5589 defsubr (&Smake_bool_vector);
5590 defsubr (&Smake_symbol);
5591 defsubr (&Smake_marker);
5592 defsubr (&Spurecopy);
5593 defsubr (&Sgarbage_collect);
5594 defsubr (&Smemory_limit);
5595 defsubr (&Smemory_use_counts);
5597 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
5598 defsubr (&Sgc_status);
5599 #endif