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