]> code.delx.au - gnu-emacs/blob - src/alloc.c
(struct backtrace): Remove.
[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_backtrace 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 INIT in each element.
1898 LENGTH must be an integer.
1899 INIT must be an integer that represents a character. */)
1900 (length, init)
1901 Lisp_Object length, init;
1902 {
1903 register Lisp_Object val;
1904 register unsigned char *p, *end;
1905 int c, nbytes;
1906
1907 CHECK_NATNUM (length);
1908 CHECK_NUMBER (init);
1909
1910 c = XINT (init);
1911 if (SINGLE_BYTE_CHAR_P (c))
1912 {
1913 nbytes = XINT (length);
1914 val = make_uninit_string (nbytes);
1915 p = SDATA (val);
1916 end = p + SCHARS (val);
1917 while (p != end)
1918 *p++ = c;
1919 }
1920 else
1921 {
1922 unsigned char str[MAX_MULTIBYTE_LENGTH];
1923 int len = CHAR_STRING (c, str);
1924
1925 nbytes = len * XINT (length);
1926 val = make_uninit_multibyte_string (XINT (length), nbytes);
1927 p = SDATA (val);
1928 end = p + nbytes;
1929 while (p != end)
1930 {
1931 bcopy (str, p, len);
1932 p += len;
1933 }
1934 }
1935
1936 *p = 0;
1937 return val;
1938 }
1939
1940
1941 DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0,
1942 doc: /* Return a new bool-vector of length LENGTH, using INIT for as each element.
1943 LENGTH must be a number. INIT matters only in whether it is t or nil. */)
1944 (length, init)
1945 Lisp_Object length, init;
1946 {
1947 register Lisp_Object val;
1948 struct Lisp_Bool_Vector *p;
1949 int real_init, i;
1950 int length_in_chars, length_in_elts, bits_per_value;
1951
1952 CHECK_NATNUM (length);
1953
1954 bits_per_value = sizeof (EMACS_INT) * BOOL_VECTOR_BITS_PER_CHAR;
1955
1956 length_in_elts = (XFASTINT (length) + bits_per_value - 1) / bits_per_value;
1957 length_in_chars = ((XFASTINT (length) + BOOL_VECTOR_BITS_PER_CHAR - 1)
1958 / BOOL_VECTOR_BITS_PER_CHAR);
1959
1960 /* We must allocate one more elements than LENGTH_IN_ELTS for the
1961 slot `size' of the struct Lisp_Bool_Vector. */
1962 val = Fmake_vector (make_number (length_in_elts + 1), Qnil);
1963 p = XBOOL_VECTOR (val);
1964
1965 /* Get rid of any bits that would cause confusion. */
1966 p->vector_size = 0;
1967 XSETBOOL_VECTOR (val, p);
1968 p->size = XFASTINT (length);
1969
1970 real_init = (NILP (init) ? 0 : -1);
1971 for (i = 0; i < length_in_chars ; i++)
1972 p->data[i] = real_init;
1973
1974 /* Clear the extraneous bits in the last byte. */
1975 if (XINT (length) != length_in_chars * BOOL_VECTOR_BITS_PER_CHAR)
1976 XBOOL_VECTOR (val)->data[length_in_chars - 1]
1977 &= (1 << (XINT (length) % BOOL_VECTOR_BITS_PER_CHAR)) - 1;
1978
1979 return val;
1980 }
1981
1982
1983 /* Make a string from NBYTES bytes at CONTENTS, and compute the number
1984 of characters from the contents. This string may be unibyte or
1985 multibyte, depending on the contents. */
1986
1987 Lisp_Object
1988 make_string (contents, nbytes)
1989 const char *contents;
1990 int nbytes;
1991 {
1992 register Lisp_Object val;
1993 int nchars, multibyte_nbytes;
1994
1995 parse_str_as_multibyte (contents, nbytes, &nchars, &multibyte_nbytes);
1996 if (nbytes == nchars || nbytes != multibyte_nbytes)
1997 /* CONTENTS contains no multibyte sequences or contains an invalid
1998 multibyte sequence. We must make unibyte string. */
1999 val = make_unibyte_string (contents, nbytes);
2000 else
2001 val = make_multibyte_string (contents, nchars, nbytes);
2002 return val;
2003 }
2004
2005
2006 /* Make an unibyte string from LENGTH bytes at CONTENTS. */
2007
2008 Lisp_Object
2009 make_unibyte_string (contents, length)
2010 const char *contents;
2011 int length;
2012 {
2013 register Lisp_Object val;
2014 val = make_uninit_string (length);
2015 bcopy (contents, SDATA (val), length);
2016 STRING_SET_UNIBYTE (val);
2017 return val;
2018 }
2019
2020
2021 /* Make a multibyte string from NCHARS characters occupying NBYTES
2022 bytes at CONTENTS. */
2023
2024 Lisp_Object
2025 make_multibyte_string (contents, nchars, nbytes)
2026 const char *contents;
2027 int nchars, nbytes;
2028 {
2029 register Lisp_Object val;
2030 val = make_uninit_multibyte_string (nchars, nbytes);
2031 bcopy (contents, SDATA (val), nbytes);
2032 return val;
2033 }
2034
2035
2036 /* Make a string from NCHARS characters occupying NBYTES bytes at
2037 CONTENTS. It is a multibyte string if NBYTES != NCHARS. */
2038
2039 Lisp_Object
2040 make_string_from_bytes (contents, nchars, nbytes)
2041 const char *contents;
2042 int nchars, nbytes;
2043 {
2044 register Lisp_Object val;
2045 val = make_uninit_multibyte_string (nchars, nbytes);
2046 bcopy (contents, SDATA (val), nbytes);
2047 if (SBYTES (val) == SCHARS (val))
2048 STRING_SET_UNIBYTE (val);
2049 return val;
2050 }
2051
2052
2053 /* Make a string from NCHARS characters occupying NBYTES bytes at
2054 CONTENTS. The argument MULTIBYTE controls whether to label the
2055 string as multibyte. If NCHARS is negative, it counts the number of
2056 characters by itself. */
2057
2058 Lisp_Object
2059 make_specified_string (contents, nchars, nbytes, multibyte)
2060 const char *contents;
2061 int nchars, nbytes;
2062 int multibyte;
2063 {
2064 register Lisp_Object val;
2065
2066 if (nchars < 0)
2067 {
2068 if (multibyte)
2069 nchars = multibyte_chars_in_text (contents, nbytes);
2070 else
2071 nchars = nbytes;
2072 }
2073 val = make_uninit_multibyte_string (nchars, nbytes);
2074 bcopy (contents, SDATA (val), nbytes);
2075 if (!multibyte)
2076 STRING_SET_UNIBYTE (val);
2077 return val;
2078 }
2079
2080
2081 /* Make a string from the data at STR, treating it as multibyte if the
2082 data warrants. */
2083
2084 Lisp_Object
2085 build_string (str)
2086 const char *str;
2087 {
2088 return make_string (str, strlen (str));
2089 }
2090
2091
2092 /* Return an unibyte Lisp_String set up to hold LENGTH characters
2093 occupying LENGTH bytes. */
2094
2095 Lisp_Object
2096 make_uninit_string (length)
2097 int length;
2098 {
2099 Lisp_Object val;
2100 val = make_uninit_multibyte_string (length, length);
2101 STRING_SET_UNIBYTE (val);
2102 return val;
2103 }
2104
2105
2106 /* Return a multibyte Lisp_String set up to hold NCHARS characters
2107 which occupy NBYTES bytes. */
2108
2109 Lisp_Object
2110 make_uninit_multibyte_string (nchars, nbytes)
2111 int nchars, nbytes;
2112 {
2113 Lisp_Object string;
2114 struct Lisp_String *s;
2115
2116 if (nchars < 0)
2117 abort ();
2118
2119 s = allocate_string ();
2120 allocate_string_data (s, nchars, nbytes);
2121 XSETSTRING (string, s);
2122 string_chars_consed += nbytes;
2123 return string;
2124 }
2125
2126
2127 \f
2128 /***********************************************************************
2129 Float Allocation
2130 ***********************************************************************/
2131
2132 /* We store float cells inside of float_blocks, allocating a new
2133 float_block with malloc whenever necessary. Float cells reclaimed
2134 by GC are put on a free list to be reallocated before allocating
2135 any new float cells from the latest float_block. */
2136
2137 #define FLOAT_BLOCK_SIZE \
2138 (((BLOCK_BYTES - sizeof (struct float_block *) \
2139 /* The compiler might add padding at the end. */ \
2140 - (sizeof (struct Lisp_Float) - sizeof (int))) * CHAR_BIT) \
2141 / (sizeof (struct Lisp_Float) * CHAR_BIT + 1))
2142
2143 #define GETMARKBIT(block,n) \
2144 (((block)->gcmarkbits[(n) / (sizeof(int) * CHAR_BIT)] \
2145 >> ((n) % (sizeof(int) * CHAR_BIT))) \
2146 & 1)
2147
2148 #define SETMARKBIT(block,n) \
2149 (block)->gcmarkbits[(n) / (sizeof(int) * CHAR_BIT)] \
2150 |= 1 << ((n) % (sizeof(int) * CHAR_BIT))
2151
2152 #define UNSETMARKBIT(block,n) \
2153 (block)->gcmarkbits[(n) / (sizeof(int) * CHAR_BIT)] \
2154 &= ~(1 << ((n) % (sizeof(int) * CHAR_BIT)))
2155
2156 #define FLOAT_BLOCK(fptr) \
2157 ((struct float_block *)(((EMACS_UINT)(fptr)) & ~(BLOCK_ALIGN - 1)))
2158
2159 #define FLOAT_INDEX(fptr) \
2160 ((((EMACS_UINT)(fptr)) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Float))
2161
2162 struct float_block
2163 {
2164 /* Place `floats' at the beginning, to ease up FLOAT_INDEX's job. */
2165 struct Lisp_Float floats[FLOAT_BLOCK_SIZE];
2166 int gcmarkbits[1 + FLOAT_BLOCK_SIZE / (sizeof(int) * CHAR_BIT)];
2167 struct float_block *next;
2168 };
2169
2170 #define FLOAT_MARKED_P(fptr) \
2171 GETMARKBIT (FLOAT_BLOCK (fptr), FLOAT_INDEX ((fptr)))
2172
2173 #define FLOAT_MARK(fptr) \
2174 SETMARKBIT (FLOAT_BLOCK (fptr), FLOAT_INDEX ((fptr)))
2175
2176 #define FLOAT_UNMARK(fptr) \
2177 UNSETMARKBIT (FLOAT_BLOCK (fptr), FLOAT_INDEX ((fptr)))
2178
2179 /* Current float_block. */
2180
2181 struct float_block *float_block;
2182
2183 /* Index of first unused Lisp_Float in the current float_block. */
2184
2185 int float_block_index;
2186
2187 /* Total number of float blocks now in use. */
2188
2189 int n_float_blocks;
2190
2191 /* Free-list of Lisp_Floats. */
2192
2193 struct Lisp_Float *float_free_list;
2194
2195
2196 /* Initialize float allocation. */
2197
2198 void
2199 init_float ()
2200 {
2201 float_block = NULL;
2202 float_block_index = FLOAT_BLOCK_SIZE; /* Force alloc of new float_block. */
2203 float_free_list = 0;
2204 n_float_blocks = 0;
2205 }
2206
2207
2208 /* Explicitly free a float cell by putting it on the free-list. */
2209
2210 void
2211 free_float (ptr)
2212 struct Lisp_Float *ptr;
2213 {
2214 *(struct Lisp_Float **)&ptr->data = float_free_list;
2215 float_free_list = ptr;
2216 }
2217
2218
2219 /* Return a new float object with value FLOAT_VALUE. */
2220
2221 Lisp_Object
2222 make_float (float_value)
2223 double float_value;
2224 {
2225 register Lisp_Object val;
2226
2227 if (float_free_list)
2228 {
2229 /* We use the data field for chaining the free list
2230 so that we won't use the same field that has the mark bit. */
2231 XSETFLOAT (val, float_free_list);
2232 float_free_list = *(struct Lisp_Float **)&float_free_list->data;
2233 }
2234 else
2235 {
2236 if (float_block_index == FLOAT_BLOCK_SIZE)
2237 {
2238 register struct float_block *new;
2239
2240 new = (struct float_block *) lisp_align_malloc (sizeof *new,
2241 MEM_TYPE_FLOAT);
2242 new->next = float_block;
2243 bzero ((char *) new->gcmarkbits, sizeof new->gcmarkbits);
2244 float_block = new;
2245 float_block_index = 0;
2246 n_float_blocks++;
2247 }
2248 XSETFLOAT (val, &float_block->floats[float_block_index]);
2249 float_block_index++;
2250 }
2251
2252 XFLOAT_DATA (val) = float_value;
2253 eassert (!FLOAT_MARKED_P (XFLOAT (val)));
2254 consing_since_gc += sizeof (struct Lisp_Float);
2255 floats_consed++;
2256 return val;
2257 }
2258
2259
2260 \f
2261 /***********************************************************************
2262 Cons Allocation
2263 ***********************************************************************/
2264
2265 /* We store cons cells inside of cons_blocks, allocating a new
2266 cons_block with malloc whenever necessary. Cons cells reclaimed by
2267 GC are put on a free list to be reallocated before allocating
2268 any new cons cells from the latest cons_block. */
2269
2270 #define CONS_BLOCK_SIZE \
2271 (((BLOCK_BYTES - sizeof (struct cons_block *)) * CHAR_BIT) \
2272 / (sizeof (struct Lisp_Cons) * CHAR_BIT + 1))
2273
2274 #define CONS_BLOCK(fptr) \
2275 ((struct cons_block *)(((EMACS_UINT)(fptr)) & ~(BLOCK_ALIGN - 1)))
2276
2277 #define CONS_INDEX(fptr) \
2278 ((((EMACS_UINT)(fptr)) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Cons))
2279
2280 struct cons_block
2281 {
2282 /* Place `conses' at the beginning, to ease up CONS_INDEX's job. */
2283 struct Lisp_Cons conses[CONS_BLOCK_SIZE];
2284 int gcmarkbits[1 + CONS_BLOCK_SIZE / (sizeof(int) * CHAR_BIT)];
2285 struct cons_block *next;
2286 };
2287
2288 #define CONS_MARKED_P(fptr) \
2289 GETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
2290
2291 #define CONS_MARK(fptr) \
2292 SETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
2293
2294 #define CONS_UNMARK(fptr) \
2295 UNSETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
2296
2297 /* Current cons_block. */
2298
2299 struct cons_block *cons_block;
2300
2301 /* Index of first unused Lisp_Cons in the current block. */
2302
2303 int cons_block_index;
2304
2305 /* Free-list of Lisp_Cons structures. */
2306
2307 struct Lisp_Cons *cons_free_list;
2308
2309 /* Total number of cons blocks now in use. */
2310
2311 int n_cons_blocks;
2312
2313
2314 /* Initialize cons allocation. */
2315
2316 void
2317 init_cons ()
2318 {
2319 cons_block = NULL;
2320 cons_block_index = CONS_BLOCK_SIZE; /* Force alloc of new cons_block. */
2321 cons_free_list = 0;
2322 n_cons_blocks = 0;
2323 }
2324
2325
2326 /* Explicitly free a cons cell by putting it on the free-list. */
2327
2328 void
2329 free_cons (ptr)
2330 struct Lisp_Cons *ptr;
2331 {
2332 *(struct Lisp_Cons **)&ptr->cdr = cons_free_list;
2333 #if GC_MARK_STACK
2334 ptr->car = Vdead;
2335 #endif
2336 cons_free_list = ptr;
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 /* Marker blocks which should be freed at end of GC. */
2870
2871 struct marker_block *marker_blocks_pending_free;
2872
2873 /* Total number of marker blocks now in use. */
2874
2875 int n_marker_blocks;
2876
2877 void
2878 init_marker ()
2879 {
2880 marker_block = NULL;
2881 marker_block_index = MARKER_BLOCK_SIZE;
2882 marker_free_list = 0;
2883 marker_blocks_pending_free = 0;
2884 n_marker_blocks = 0;
2885 }
2886
2887 /* Return a newly allocated Lisp_Misc object, with no substructure. */
2888
2889 Lisp_Object
2890 allocate_misc ()
2891 {
2892 Lisp_Object val;
2893
2894 if (marker_free_list)
2895 {
2896 XSETMISC (val, marker_free_list);
2897 marker_free_list = marker_free_list->u_free.chain;
2898 }
2899 else
2900 {
2901 if (marker_block_index == MARKER_BLOCK_SIZE)
2902 {
2903 struct marker_block *new;
2904 new = (struct marker_block *) lisp_malloc (sizeof *new,
2905 MEM_TYPE_MISC);
2906 new->next = marker_block;
2907 marker_block = new;
2908 marker_block_index = 0;
2909 n_marker_blocks++;
2910 }
2911 XSETMISC (val, &marker_block->markers[marker_block_index]);
2912 marker_block_index++;
2913 }
2914
2915 consing_since_gc += sizeof (union Lisp_Misc);
2916 misc_objects_consed++;
2917 XMARKER (val)->gcmarkbit = 0;
2918 return val;
2919 }
2920
2921 /* Return a Lisp_Misc_Save_Value object containing POINTER and
2922 INTEGER. This is used to package C values to call record_unwind_protect.
2923 The unwind function can get the C values back using XSAVE_VALUE. */
2924
2925 Lisp_Object
2926 make_save_value (pointer, integer)
2927 void *pointer;
2928 int integer;
2929 {
2930 register Lisp_Object val;
2931 register struct Lisp_Save_Value *p;
2932
2933 val = allocate_misc ();
2934 XMISCTYPE (val) = Lisp_Misc_Save_Value;
2935 p = XSAVE_VALUE (val);
2936 p->pointer = pointer;
2937 p->integer = integer;
2938 return val;
2939 }
2940
2941 DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
2942 doc: /* Return a newly allocated marker which does not point at any place. */)
2943 ()
2944 {
2945 register Lisp_Object val;
2946 register struct Lisp_Marker *p;
2947
2948 val = allocate_misc ();
2949 XMISCTYPE (val) = Lisp_Misc_Marker;
2950 p = XMARKER (val);
2951 p->buffer = 0;
2952 p->bytepos = 0;
2953 p->charpos = 0;
2954 p->next = NULL;
2955 p->insertion_type = 0;
2956 return val;
2957 }
2958
2959 /* Put MARKER back on the free list after using it temporarily. */
2960
2961 void
2962 free_marker (marker)
2963 Lisp_Object marker;
2964 {
2965 unchain_marker (XMARKER (marker));
2966
2967 XMISC (marker)->u_marker.type = Lisp_Misc_Free;
2968 XMISC (marker)->u_free.chain = marker_free_list;
2969 marker_free_list = XMISC (marker);
2970
2971 total_free_markers++;
2972 }
2973
2974 \f
2975 /* Return a newly created vector or string with specified arguments as
2976 elements. If all the arguments are characters that can fit
2977 in a string of events, make a string; otherwise, make a vector.
2978
2979 Any number of arguments, even zero arguments, are allowed. */
2980
2981 Lisp_Object
2982 make_event_array (nargs, args)
2983 register int nargs;
2984 Lisp_Object *args;
2985 {
2986 int i;
2987
2988 for (i = 0; i < nargs; i++)
2989 /* The things that fit in a string
2990 are characters that are in 0...127,
2991 after discarding the meta bit and all the bits above it. */
2992 if (!INTEGERP (args[i])
2993 || (XUINT (args[i]) & ~(-CHAR_META)) >= 0200)
2994 return Fvector (nargs, args);
2995
2996 /* Since the loop exited, we know that all the things in it are
2997 characters, so we can make a string. */
2998 {
2999 Lisp_Object result;
3000
3001 result = Fmake_string (make_number (nargs), make_number (0));
3002 for (i = 0; i < nargs; i++)
3003 {
3004 SSET (result, i, XINT (args[i]));
3005 /* Move the meta bit to the right place for a string char. */
3006 if (XINT (args[i]) & CHAR_META)
3007 SSET (result, i, SREF (result, i) | 0x80);
3008 }
3009
3010 return result;
3011 }
3012 }
3013
3014
3015 \f
3016 /************************************************************************
3017 C Stack Marking
3018 ************************************************************************/
3019
3020 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
3021
3022 /* Conservative C stack marking requires a method to identify possibly
3023 live Lisp objects given a pointer value. We do this by keeping
3024 track of blocks of Lisp data that are allocated in a red-black tree
3025 (see also the comment of mem_node which is the type of nodes in
3026 that tree). Function lisp_malloc adds information for an allocated
3027 block to the red-black tree with calls to mem_insert, and function
3028 lisp_free removes it with mem_delete. Functions live_string_p etc
3029 call mem_find to lookup information about a given pointer in the
3030 tree, and use that to determine if the pointer points to a Lisp
3031 object or not. */
3032
3033 /* Initialize this part of alloc.c. */
3034
3035 static void
3036 mem_init ()
3037 {
3038 mem_z.left = mem_z.right = MEM_NIL;
3039 mem_z.parent = NULL;
3040 mem_z.color = MEM_BLACK;
3041 mem_z.start = mem_z.end = NULL;
3042 mem_root = MEM_NIL;
3043 }
3044
3045
3046 /* Value is a pointer to the mem_node containing START. Value is
3047 MEM_NIL if there is no node in the tree containing START. */
3048
3049 static INLINE struct mem_node *
3050 mem_find (start)
3051 void *start;
3052 {
3053 struct mem_node *p;
3054
3055 if (start < min_heap_address || start > max_heap_address)
3056 return MEM_NIL;
3057
3058 /* Make the search always successful to speed up the loop below. */
3059 mem_z.start = start;
3060 mem_z.end = (char *) start + 1;
3061
3062 p = mem_root;
3063 while (start < p->start || start >= p->end)
3064 p = start < p->start ? p->left : p->right;
3065 return p;
3066 }
3067
3068
3069 /* Insert a new node into the tree for a block of memory with start
3070 address START, end address END, and type TYPE. Value is a
3071 pointer to the node that was inserted. */
3072
3073 static struct mem_node *
3074 mem_insert (start, end, type)
3075 void *start, *end;
3076 enum mem_type type;
3077 {
3078 struct mem_node *c, *parent, *x;
3079
3080 if (start < min_heap_address)
3081 min_heap_address = start;
3082 if (end > max_heap_address)
3083 max_heap_address = end;
3084
3085 /* See where in the tree a node for START belongs. In this
3086 particular application, it shouldn't happen that a node is already
3087 present. For debugging purposes, let's check that. */
3088 c = mem_root;
3089 parent = NULL;
3090
3091 #if GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS
3092
3093 while (c != MEM_NIL)
3094 {
3095 if (start >= c->start && start < c->end)
3096 abort ();
3097 parent = c;
3098 c = start < c->start ? c->left : c->right;
3099 }
3100
3101 #else /* GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS */
3102
3103 while (c != MEM_NIL)
3104 {
3105 parent = c;
3106 c = start < c->start ? c->left : c->right;
3107 }
3108
3109 #endif /* GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS */
3110
3111 /* Create a new node. */
3112 #ifdef GC_MALLOC_CHECK
3113 x = (struct mem_node *) _malloc_internal (sizeof *x);
3114 if (x == NULL)
3115 abort ();
3116 #else
3117 x = (struct mem_node *) xmalloc (sizeof *x);
3118 #endif
3119 x->start = start;
3120 x->end = end;
3121 x->type = type;
3122 x->parent = parent;
3123 x->left = x->right = MEM_NIL;
3124 x->color = MEM_RED;
3125
3126 /* Insert it as child of PARENT or install it as root. */
3127 if (parent)
3128 {
3129 if (start < parent->start)
3130 parent->left = x;
3131 else
3132 parent->right = x;
3133 }
3134 else
3135 mem_root = x;
3136
3137 /* Re-establish red-black tree properties. */
3138 mem_insert_fixup (x);
3139
3140 return x;
3141 }
3142
3143
3144 /* Re-establish the red-black properties of the tree, and thereby
3145 balance the tree, after node X has been inserted; X is always red. */
3146
3147 static void
3148 mem_insert_fixup (x)
3149 struct mem_node *x;
3150 {
3151 while (x != mem_root && x->parent->color == MEM_RED)
3152 {
3153 /* X is red and its parent is red. This is a violation of
3154 red-black tree property #3. */
3155
3156 if (x->parent == x->parent->parent->left)
3157 {
3158 /* We're on the left side of our grandparent, and Y is our
3159 "uncle". */
3160 struct mem_node *y = x->parent->parent->right;
3161
3162 if (y->color == MEM_RED)
3163 {
3164 /* Uncle and parent are red but should be black because
3165 X is red. Change the colors accordingly and proceed
3166 with the grandparent. */
3167 x->parent->color = MEM_BLACK;
3168 y->color = MEM_BLACK;
3169 x->parent->parent->color = MEM_RED;
3170 x = x->parent->parent;
3171 }
3172 else
3173 {
3174 /* Parent and uncle have different colors; parent is
3175 red, uncle is black. */
3176 if (x == x->parent->right)
3177 {
3178 x = x->parent;
3179 mem_rotate_left (x);
3180 }
3181
3182 x->parent->color = MEM_BLACK;
3183 x->parent->parent->color = MEM_RED;
3184 mem_rotate_right (x->parent->parent);
3185 }
3186 }
3187 else
3188 {
3189 /* This is the symmetrical case of above. */
3190 struct mem_node *y = x->parent->parent->left;
3191
3192 if (y->color == MEM_RED)
3193 {
3194 x->parent->color = MEM_BLACK;
3195 y->color = MEM_BLACK;
3196 x->parent->parent->color = MEM_RED;
3197 x = x->parent->parent;
3198 }
3199 else
3200 {
3201 if (x == x->parent->left)
3202 {
3203 x = x->parent;
3204 mem_rotate_right (x);
3205 }
3206
3207 x->parent->color = MEM_BLACK;
3208 x->parent->parent->color = MEM_RED;
3209 mem_rotate_left (x->parent->parent);
3210 }
3211 }
3212 }
3213
3214 /* The root may have been changed to red due to the algorithm. Set
3215 it to black so that property #5 is satisfied. */
3216 mem_root->color = MEM_BLACK;
3217 }
3218
3219
3220 /* (x) (y)
3221 / \ / \
3222 a (y) ===> (x) c
3223 / \ / \
3224 b c a b */
3225
3226 static void
3227 mem_rotate_left (x)
3228 struct mem_node *x;
3229 {
3230 struct mem_node *y;
3231
3232 /* Turn y's left sub-tree into x's right sub-tree. */
3233 y = x->right;
3234 x->right = y->left;
3235 if (y->left != MEM_NIL)
3236 y->left->parent = x;
3237
3238 /* Y's parent was x's parent. */
3239 if (y != MEM_NIL)
3240 y->parent = x->parent;
3241
3242 /* Get the parent to point to y instead of x. */
3243 if (x->parent)
3244 {
3245 if (x == x->parent->left)
3246 x->parent->left = y;
3247 else
3248 x->parent->right = y;
3249 }
3250 else
3251 mem_root = y;
3252
3253 /* Put x on y's left. */
3254 y->left = x;
3255 if (x != MEM_NIL)
3256 x->parent = y;
3257 }
3258
3259
3260 /* (x) (Y)
3261 / \ / \
3262 (y) c ===> a (x)
3263 / \ / \
3264 a b b c */
3265
3266 static void
3267 mem_rotate_right (x)
3268 struct mem_node *x;
3269 {
3270 struct mem_node *y = x->left;
3271
3272 x->left = y->right;
3273 if (y->right != MEM_NIL)
3274 y->right->parent = x;
3275
3276 if (y != MEM_NIL)
3277 y->parent = x->parent;
3278 if (x->parent)
3279 {
3280 if (x == x->parent->right)
3281 x->parent->right = y;
3282 else
3283 x->parent->left = y;
3284 }
3285 else
3286 mem_root = y;
3287
3288 y->right = x;
3289 if (x != MEM_NIL)
3290 x->parent = y;
3291 }
3292
3293
3294 /* Delete node Z from the tree. If Z is null or MEM_NIL, do nothing. */
3295
3296 static void
3297 mem_delete (z)
3298 struct mem_node *z;
3299 {
3300 struct mem_node *x, *y;
3301
3302 if (!z || z == MEM_NIL)
3303 return;
3304
3305 if (z->left == MEM_NIL || z->right == MEM_NIL)
3306 y = z;
3307 else
3308 {
3309 y = z->right;
3310 while (y->left != MEM_NIL)
3311 y = y->left;
3312 }
3313
3314 if (y->left != MEM_NIL)
3315 x = y->left;
3316 else
3317 x = y->right;
3318
3319 x->parent = y->parent;
3320 if (y->parent)
3321 {
3322 if (y == y->parent->left)
3323 y->parent->left = x;
3324 else
3325 y->parent->right = x;
3326 }
3327 else
3328 mem_root = x;
3329
3330 if (y != z)
3331 {
3332 z->start = y->start;
3333 z->end = y->end;
3334 z->type = y->type;
3335 }
3336
3337 if (y->color == MEM_BLACK)
3338 mem_delete_fixup (x);
3339
3340 #ifdef GC_MALLOC_CHECK
3341 _free_internal (y);
3342 #else
3343 xfree (y);
3344 #endif
3345 }
3346
3347
3348 /* Re-establish the red-black properties of the tree, after a
3349 deletion. */
3350
3351 static void
3352 mem_delete_fixup (x)
3353 struct mem_node *x;
3354 {
3355 while (x != mem_root && x->color == MEM_BLACK)
3356 {
3357 if (x == x->parent->left)
3358 {
3359 struct mem_node *w = x->parent->right;
3360
3361 if (w->color == MEM_RED)
3362 {
3363 w->color = MEM_BLACK;
3364 x->parent->color = MEM_RED;
3365 mem_rotate_left (x->parent);
3366 w = x->parent->right;
3367 }
3368
3369 if (w->left->color == MEM_BLACK && w->right->color == MEM_BLACK)
3370 {
3371 w->color = MEM_RED;
3372 x = x->parent;
3373 }
3374 else
3375 {
3376 if (w->right->color == MEM_BLACK)
3377 {
3378 w->left->color = MEM_BLACK;
3379 w->color = MEM_RED;
3380 mem_rotate_right (w);
3381 w = x->parent->right;
3382 }
3383 w->color = x->parent->color;
3384 x->parent->color = MEM_BLACK;
3385 w->right->color = MEM_BLACK;
3386 mem_rotate_left (x->parent);
3387 x = mem_root;
3388 }
3389 }
3390 else
3391 {
3392 struct mem_node *w = x->parent->left;
3393
3394 if (w->color == MEM_RED)
3395 {
3396 w->color = MEM_BLACK;
3397 x->parent->color = MEM_RED;
3398 mem_rotate_right (x->parent);
3399 w = x->parent->left;
3400 }
3401
3402 if (w->right->color == MEM_BLACK && w->left->color == MEM_BLACK)
3403 {
3404 w->color = MEM_RED;
3405 x = x->parent;
3406 }
3407 else
3408 {
3409 if (w->left->color == MEM_BLACK)
3410 {
3411 w->right->color = MEM_BLACK;
3412 w->color = MEM_RED;
3413 mem_rotate_left (w);
3414 w = x->parent->left;
3415 }
3416
3417 w->color = x->parent->color;
3418 x->parent->color = MEM_BLACK;
3419 w->left->color = MEM_BLACK;
3420 mem_rotate_right (x->parent);
3421 x = mem_root;
3422 }
3423 }
3424 }
3425
3426 x->color = MEM_BLACK;
3427 }
3428
3429
3430 /* Value is non-zero if P is a pointer to a live Lisp string on
3431 the heap. M is a pointer to the mem_block for P. */
3432
3433 static INLINE int
3434 live_string_p (m, p)
3435 struct mem_node *m;
3436 void *p;
3437 {
3438 if (m->type == MEM_TYPE_STRING)
3439 {
3440 struct string_block *b = (struct string_block *) m->start;
3441 int offset = (char *) p - (char *) &b->strings[0];
3442
3443 /* P must point to the start of a Lisp_String structure, and it
3444 must not be on the free-list. */
3445 return (offset >= 0
3446 && offset % sizeof b->strings[0] == 0
3447 && offset < (STRING_BLOCK_SIZE * sizeof b->strings[0])
3448 && ((struct Lisp_String *) p)->data != NULL);
3449 }
3450 else
3451 return 0;
3452 }
3453
3454
3455 /* Value is non-zero if P is a pointer to a live Lisp cons on
3456 the heap. M is a pointer to the mem_block for P. */
3457
3458 static INLINE int
3459 live_cons_p (m, p)
3460 struct mem_node *m;
3461 void *p;
3462 {
3463 if (m->type == MEM_TYPE_CONS)
3464 {
3465 struct cons_block *b = (struct cons_block *) m->start;
3466 int offset = (char *) p - (char *) &b->conses[0];
3467
3468 /* P must point to the start of a Lisp_Cons, not be
3469 one of the unused cells in the current cons block,
3470 and not be on the free-list. */
3471 return (offset >= 0
3472 && offset % sizeof b->conses[0] == 0
3473 && offset < (CONS_BLOCK_SIZE * sizeof b->conses[0])
3474 && (b != cons_block
3475 || offset / sizeof b->conses[0] < cons_block_index)
3476 && !EQ (((struct Lisp_Cons *) p)->car, Vdead));
3477 }
3478 else
3479 return 0;
3480 }
3481
3482
3483 /* Value is non-zero if P is a pointer to a live Lisp symbol on
3484 the heap. M is a pointer to the mem_block for P. */
3485
3486 static INLINE int
3487 live_symbol_p (m, p)
3488 struct mem_node *m;
3489 void *p;
3490 {
3491 if (m->type == MEM_TYPE_SYMBOL)
3492 {
3493 struct symbol_block *b = (struct symbol_block *) m->start;
3494 int offset = (char *) p - (char *) &b->symbols[0];
3495
3496 /* P must point to the start of a Lisp_Symbol, not be
3497 one of the unused cells in the current symbol block,
3498 and not be on the free-list. */
3499 return (offset >= 0
3500 && offset % sizeof b->symbols[0] == 0
3501 && offset < (SYMBOL_BLOCK_SIZE * sizeof b->symbols[0])
3502 && (b != symbol_block
3503 || offset / sizeof b->symbols[0] < symbol_block_index)
3504 && !EQ (((struct Lisp_Symbol *) p)->function, Vdead));
3505 }
3506 else
3507 return 0;
3508 }
3509
3510
3511 /* Value is non-zero if P is a pointer to a live Lisp float on
3512 the heap. M is a pointer to the mem_block for P. */
3513
3514 static INLINE int
3515 live_float_p (m, p)
3516 struct mem_node *m;
3517 void *p;
3518 {
3519 if (m->type == MEM_TYPE_FLOAT)
3520 {
3521 struct float_block *b = (struct float_block *) m->start;
3522 int offset = (char *) p - (char *) &b->floats[0];
3523
3524 /* P must point to the start of a Lisp_Float and not be
3525 one of the unused cells in the current float block. */
3526 return (offset >= 0
3527 && offset % sizeof b->floats[0] == 0
3528 && offset < (FLOAT_BLOCK_SIZE * sizeof b->floats[0])
3529 && (b != float_block
3530 || offset / sizeof b->floats[0] < float_block_index));
3531 }
3532 else
3533 return 0;
3534 }
3535
3536
3537 /* Value is non-zero if P is a pointer to a live Lisp Misc on
3538 the heap. M is a pointer to the mem_block for P. */
3539
3540 static INLINE int
3541 live_misc_p (m, p)
3542 struct mem_node *m;
3543 void *p;
3544 {
3545 if (m->type == MEM_TYPE_MISC)
3546 {
3547 struct marker_block *b = (struct marker_block *) m->start;
3548 int offset = (char *) p - (char *) &b->markers[0];
3549
3550 /* P must point to the start of a Lisp_Misc, not be
3551 one of the unused cells in the current misc block,
3552 and not be on the free-list. */
3553 return (offset >= 0
3554 && offset % sizeof b->markers[0] == 0
3555 && offset < (MARKER_BLOCK_SIZE * sizeof b->markers[0])
3556 && (b != marker_block
3557 || offset / sizeof b->markers[0] < marker_block_index)
3558 && ((union Lisp_Misc *) p)->u_marker.type != Lisp_Misc_Free);
3559 }
3560 else
3561 return 0;
3562 }
3563
3564
3565 /* Value is non-zero if P is a pointer to a live vector-like object.
3566 M is a pointer to the mem_block for P. */
3567
3568 static INLINE int
3569 live_vector_p (m, p)
3570 struct mem_node *m;
3571 void *p;
3572 {
3573 return (p == m->start
3574 && m->type >= MEM_TYPE_VECTOR
3575 && m->type <= MEM_TYPE_WINDOW);
3576 }
3577
3578
3579 /* Value is non-zero if P is a pointer to a live buffer. M is a
3580 pointer to the mem_block for P. */
3581
3582 static INLINE int
3583 live_buffer_p (m, p)
3584 struct mem_node *m;
3585 void *p;
3586 {
3587 /* P must point to the start of the block, and the buffer
3588 must not have been killed. */
3589 return (m->type == MEM_TYPE_BUFFER
3590 && p == m->start
3591 && !NILP (((struct buffer *) p)->name));
3592 }
3593
3594 #endif /* GC_MARK_STACK || defined GC_MALLOC_CHECK */
3595
3596 #if GC_MARK_STACK
3597
3598 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
3599
3600 /* Array of objects that are kept alive because the C stack contains
3601 a pattern that looks like a reference to them . */
3602
3603 #define MAX_ZOMBIES 10
3604 static Lisp_Object zombies[MAX_ZOMBIES];
3605
3606 /* Number of zombie objects. */
3607
3608 static int nzombies;
3609
3610 /* Number of garbage collections. */
3611
3612 static int ngcs;
3613
3614 /* Average percentage of zombies per collection. */
3615
3616 static double avg_zombies;
3617
3618 /* Max. number of live and zombie objects. */
3619
3620 static int max_live, max_zombies;
3621
3622 /* Average number of live objects per GC. */
3623
3624 static double avg_live;
3625
3626 DEFUN ("gc-status", Fgc_status, Sgc_status, 0, 0, "",
3627 doc: /* Show information about live and zombie objects. */)
3628 ()
3629 {
3630 Lisp_Object args[8], zombie_list = Qnil;
3631 int i;
3632 for (i = 0; i < nzombies; i++)
3633 zombie_list = Fcons (zombies[i], zombie_list);
3634 args[0] = build_string ("%d GCs, avg live/zombies = %.2f/%.2f (%f%%), max %d/%d\nzombies: %S");
3635 args[1] = make_number (ngcs);
3636 args[2] = make_float (avg_live);
3637 args[3] = make_float (avg_zombies);
3638 args[4] = make_float (avg_zombies / avg_live / 100);
3639 args[5] = make_number (max_live);
3640 args[6] = make_number (max_zombies);
3641 args[7] = zombie_list;
3642 return Fmessage (8, args);
3643 }
3644
3645 #endif /* GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES */
3646
3647
3648 /* Mark OBJ if we can prove it's a Lisp_Object. */
3649
3650 static INLINE void
3651 mark_maybe_object (obj)
3652 Lisp_Object obj;
3653 {
3654 void *po = (void *) XPNTR (obj);
3655 struct mem_node *m = mem_find (po);
3656
3657 if (m != MEM_NIL)
3658 {
3659 int mark_p = 0;
3660
3661 switch (XGCTYPE (obj))
3662 {
3663 case Lisp_String:
3664 mark_p = (live_string_p (m, po)
3665 && !STRING_MARKED_P ((struct Lisp_String *) po));
3666 break;
3667
3668 case Lisp_Cons:
3669 mark_p = (live_cons_p (m, po) && !CONS_MARKED_P (XCONS (obj)));
3670 break;
3671
3672 case Lisp_Symbol:
3673 mark_p = (live_symbol_p (m, po) && !XSYMBOL (obj)->gcmarkbit);
3674 break;
3675
3676 case Lisp_Float:
3677 mark_p = (live_float_p (m, po) && !FLOAT_MARKED_P (XFLOAT (obj)));
3678 break;
3679
3680 case Lisp_Vectorlike:
3681 /* Note: can't check GC_BUFFERP before we know it's a
3682 buffer because checking that dereferences the pointer
3683 PO which might point anywhere. */
3684 if (live_vector_p (m, po))
3685 mark_p = !GC_SUBRP (obj) && !VECTOR_MARKED_P (XVECTOR (obj));
3686 else if (live_buffer_p (m, po))
3687 mark_p = GC_BUFFERP (obj) && !VECTOR_MARKED_P (XBUFFER (obj));
3688 break;
3689
3690 case Lisp_Misc:
3691 mark_p = (live_misc_p (m, po) && !XMARKER (obj)->gcmarkbit);
3692 break;
3693
3694 case Lisp_Int:
3695 case Lisp_Type_Limit:
3696 break;
3697 }
3698
3699 if (mark_p)
3700 {
3701 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
3702 if (nzombies < MAX_ZOMBIES)
3703 zombies[nzombies] = obj;
3704 ++nzombies;
3705 #endif
3706 mark_object (obj);
3707 }
3708 }
3709 }
3710
3711
3712 /* If P points to Lisp data, mark that as live if it isn't already
3713 marked. */
3714
3715 static INLINE void
3716 mark_maybe_pointer (p)
3717 void *p;
3718 {
3719 struct mem_node *m;
3720
3721 /* Quickly rule out some values which can't point to Lisp data. We
3722 assume that Lisp data is aligned on even addresses. */
3723 if ((EMACS_INT) p & 1)
3724 return;
3725
3726 m = mem_find (p);
3727 if (m != MEM_NIL)
3728 {
3729 Lisp_Object obj = Qnil;
3730
3731 switch (m->type)
3732 {
3733 case MEM_TYPE_NON_LISP:
3734 /* Nothing to do; not a pointer to Lisp memory. */
3735 break;
3736
3737 case MEM_TYPE_BUFFER:
3738 if (live_buffer_p (m, p) && !VECTOR_MARKED_P((struct buffer *)p))
3739 XSETVECTOR (obj, p);
3740 break;
3741
3742 case MEM_TYPE_CONS:
3743 if (live_cons_p (m, p) && !CONS_MARKED_P ((struct Lisp_Cons *) p))
3744 XSETCONS (obj, p);
3745 break;
3746
3747 case MEM_TYPE_STRING:
3748 if (live_string_p (m, p)
3749 && !STRING_MARKED_P ((struct Lisp_String *) p))
3750 XSETSTRING (obj, p);
3751 break;
3752
3753 case MEM_TYPE_MISC:
3754 if (live_misc_p (m, p) && !((struct Lisp_Free *) p)->gcmarkbit)
3755 XSETMISC (obj, p);
3756 break;
3757
3758 case MEM_TYPE_SYMBOL:
3759 if (live_symbol_p (m, p) && !((struct Lisp_Symbol *) p)->gcmarkbit)
3760 XSETSYMBOL (obj, p);
3761 break;
3762
3763 case MEM_TYPE_FLOAT:
3764 if (live_float_p (m, p) && !FLOAT_MARKED_P (p))
3765 XSETFLOAT (obj, p);
3766 break;
3767
3768 case MEM_TYPE_VECTOR:
3769 case MEM_TYPE_PROCESS:
3770 case MEM_TYPE_HASH_TABLE:
3771 case MEM_TYPE_FRAME:
3772 case MEM_TYPE_WINDOW:
3773 if (live_vector_p (m, p))
3774 {
3775 Lisp_Object tem;
3776 XSETVECTOR (tem, p);
3777 if (!GC_SUBRP (tem) && !VECTOR_MARKED_P (XVECTOR (tem)))
3778 obj = tem;
3779 }
3780 break;
3781
3782 default:
3783 abort ();
3784 }
3785
3786 if (!GC_NILP (obj))
3787 mark_object (obj);
3788 }
3789 }
3790
3791
3792 /* Mark Lisp objects referenced from the address range START..END. */
3793
3794 static void
3795 mark_memory (start, end)
3796 void *start, *end;
3797 {
3798 Lisp_Object *p;
3799 void **pp;
3800
3801 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
3802 nzombies = 0;
3803 #endif
3804
3805 /* Make START the pointer to the start of the memory region,
3806 if it isn't already. */
3807 if (end < start)
3808 {
3809 void *tem = start;
3810 start = end;
3811 end = tem;
3812 }
3813
3814 /* Mark Lisp_Objects. */
3815 for (p = (Lisp_Object *) start; (void *) p < end; ++p)
3816 mark_maybe_object (*p);
3817
3818 /* Mark Lisp data pointed to. This is necessary because, in some
3819 situations, the C compiler optimizes Lisp objects away, so that
3820 only a pointer to them remains. Example:
3821
3822 DEFUN ("testme", Ftestme, Stestme, 0, 0, 0, "")
3823 ()
3824 {
3825 Lisp_Object obj = build_string ("test");
3826 struct Lisp_String *s = XSTRING (obj);
3827 Fgarbage_collect ();
3828 fprintf (stderr, "test `%s'\n", s->data);
3829 return Qnil;
3830 }
3831
3832 Here, `obj' isn't really used, and the compiler optimizes it
3833 away. The only reference to the life string is through the
3834 pointer `s'. */
3835
3836 for (pp = (void **) start; (void *) pp < end; ++pp)
3837 mark_maybe_pointer (*pp);
3838 }
3839
3840 /* setjmp will work with GCC unless NON_SAVING_SETJMP is defined in
3841 the GCC system configuration. In gcc 3.2, the only systems for
3842 which this is so are i386-sco5 non-ELF, i386-sysv3 (maybe included
3843 by others?) and ns32k-pc532-min. */
3844
3845 #if !defined GC_SAVE_REGISTERS_ON_STACK && !defined GC_SETJMP_WORKS
3846
3847 static int setjmp_tested_p, longjmps_done;
3848
3849 #define SETJMP_WILL_LIKELY_WORK "\
3850 \n\
3851 Emacs garbage collector has been changed to use conservative stack\n\
3852 marking. Emacs has determined that the method it uses to do the\n\
3853 marking will likely work on your system, but this isn't sure.\n\
3854 \n\
3855 If you are a system-programmer, or can get the help of a local wizard\n\
3856 who is, please take a look at the function mark_stack in alloc.c, and\n\
3857 verify that the methods used are appropriate for your system.\n\
3858 \n\
3859 Please mail the result to <emacs-devel@gnu.org>.\n\
3860 "
3861
3862 #define SETJMP_WILL_NOT_WORK "\
3863 \n\
3864 Emacs garbage collector has been changed to use conservative stack\n\
3865 marking. Emacs has determined that the default method it uses to do the\n\
3866 marking will not work on your system. We will need a system-dependent\n\
3867 solution for your system.\n\
3868 \n\
3869 Please take a look at the function mark_stack in alloc.c, and\n\
3870 try to find a way to make it work on your system.\n\
3871 \n\
3872 Note that you may get false negatives, depending on the compiler.\n\
3873 In particular, you need to use -O with GCC for this test.\n\
3874 \n\
3875 Please mail the result to <emacs-devel@gnu.org>.\n\
3876 "
3877
3878
3879 /* Perform a quick check if it looks like setjmp saves registers in a
3880 jmp_buf. Print a message to stderr saying so. When this test
3881 succeeds, this is _not_ a proof that setjmp is sufficient for
3882 conservative stack marking. Only the sources or a disassembly
3883 can prove that. */
3884
3885 static void
3886 test_setjmp ()
3887 {
3888 char buf[10];
3889 register int x;
3890 jmp_buf jbuf;
3891 int result = 0;
3892
3893 /* Arrange for X to be put in a register. */
3894 sprintf (buf, "1");
3895 x = strlen (buf);
3896 x = 2 * x - 1;
3897
3898 setjmp (jbuf);
3899 if (longjmps_done == 1)
3900 {
3901 /* Came here after the longjmp at the end of the function.
3902
3903 If x == 1, the longjmp has restored the register to its
3904 value before the setjmp, and we can hope that setjmp
3905 saves all such registers in the jmp_buf, although that
3906 isn't sure.
3907
3908 For other values of X, either something really strange is
3909 taking place, or the setjmp just didn't save the register. */
3910
3911 if (x == 1)
3912 fprintf (stderr, SETJMP_WILL_LIKELY_WORK);
3913 else
3914 {
3915 fprintf (stderr, SETJMP_WILL_NOT_WORK);
3916 exit (1);
3917 }
3918 }
3919
3920 ++longjmps_done;
3921 x = 2;
3922 if (longjmps_done == 1)
3923 longjmp (jbuf, 1);
3924 }
3925
3926 #endif /* not GC_SAVE_REGISTERS_ON_STACK && not GC_SETJMP_WORKS */
3927
3928
3929 #if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
3930
3931 /* Abort if anything GCPRO'd doesn't survive the GC. */
3932
3933 static void
3934 check_gcpros ()
3935 {
3936 struct gcpro *p;
3937 int i;
3938
3939 for (p = gcprolist; p; p = p->next)
3940 for (i = 0; i < p->nvars; ++i)
3941 if (!survives_gc_p (p->var[i]))
3942 /* FIXME: It's not necessarily a bug. It might just be that the
3943 GCPRO is unnecessary or should release the object sooner. */
3944 abort ();
3945 }
3946
3947 #elif GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
3948
3949 static void
3950 dump_zombies ()
3951 {
3952 int i;
3953
3954 fprintf (stderr, "\nZombies kept alive = %d:\n", nzombies);
3955 for (i = 0; i < min (MAX_ZOMBIES, nzombies); ++i)
3956 {
3957 fprintf (stderr, " %d = ", i);
3958 debug_print (zombies[i]);
3959 }
3960 }
3961
3962 #endif /* GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES */
3963
3964
3965 /* Mark live Lisp objects on the C stack.
3966
3967 There are several system-dependent problems to consider when
3968 porting this to new architectures:
3969
3970 Processor Registers
3971
3972 We have to mark Lisp objects in CPU registers that can hold local
3973 variables or are used to pass parameters.
3974
3975 If GC_SAVE_REGISTERS_ON_STACK is defined, it should expand to
3976 something that either saves relevant registers on the stack, or
3977 calls mark_maybe_object passing it each register's contents.
3978
3979 If GC_SAVE_REGISTERS_ON_STACK is not defined, the current
3980 implementation assumes that calling setjmp saves registers we need
3981 to see in a jmp_buf which itself lies on the stack. This doesn't
3982 have to be true! It must be verified for each system, possibly
3983 by taking a look at the source code of setjmp.
3984
3985 Stack Layout
3986
3987 Architectures differ in the way their processor stack is organized.
3988 For example, the stack might look like this
3989
3990 +----------------+
3991 | Lisp_Object | size = 4
3992 +----------------+
3993 | something else | size = 2
3994 +----------------+
3995 | Lisp_Object | size = 4
3996 +----------------+
3997 | ... |
3998
3999 In such a case, not every Lisp_Object will be aligned equally. To
4000 find all Lisp_Object on the stack it won't be sufficient to walk
4001 the stack in steps of 4 bytes. Instead, two passes will be
4002 necessary, one starting at the start of the stack, and a second
4003 pass starting at the start of the stack + 2. Likewise, if the
4004 minimal alignment of Lisp_Objects on the stack is 1, four passes
4005 would be necessary, each one starting with one byte more offset
4006 from the stack start.
4007
4008 The current code assumes by default that Lisp_Objects are aligned
4009 equally on the stack. */
4010
4011 static void
4012 mark_stack ()
4013 {
4014 int i;
4015 jmp_buf j;
4016 volatile int stack_grows_down_p = (char *) &j > (char *) stack_base;
4017 void *end;
4018
4019 /* This trick flushes the register windows so that all the state of
4020 the process is contained in the stack. */
4021 /* Fixme: Code in the Boehm GC suggests flushing (with `flushrs') is
4022 needed on ia64 too. See mach_dep.c, where it also says inline
4023 assembler doesn't work with relevant proprietary compilers. */
4024 #ifdef sparc
4025 asm ("ta 3");
4026 #endif
4027
4028 /* Save registers that we need to see on the stack. We need to see
4029 registers used to hold register variables and registers used to
4030 pass parameters. */
4031 #ifdef GC_SAVE_REGISTERS_ON_STACK
4032 GC_SAVE_REGISTERS_ON_STACK (end);
4033 #else /* not GC_SAVE_REGISTERS_ON_STACK */
4034
4035 #ifndef GC_SETJMP_WORKS /* If it hasn't been checked yet that
4036 setjmp will definitely work, test it
4037 and print a message with the result
4038 of the test. */
4039 if (!setjmp_tested_p)
4040 {
4041 setjmp_tested_p = 1;
4042 test_setjmp ();
4043 }
4044 #endif /* GC_SETJMP_WORKS */
4045
4046 setjmp (j);
4047 end = stack_grows_down_p ? (char *) &j + sizeof j : (char *) &j;
4048 #endif /* not GC_SAVE_REGISTERS_ON_STACK */
4049
4050 /* This assumes that the stack is a contiguous region in memory. If
4051 that's not the case, something has to be done here to iterate
4052 over the stack segments. */
4053 #ifndef GC_LISP_OBJECT_ALIGNMENT
4054 #ifdef __GNUC__
4055 #define GC_LISP_OBJECT_ALIGNMENT __alignof__ (Lisp_Object)
4056 #else
4057 #define GC_LISP_OBJECT_ALIGNMENT sizeof (Lisp_Object)
4058 #endif
4059 #endif
4060 for (i = 0; i < sizeof (Lisp_Object); i += GC_LISP_OBJECT_ALIGNMENT)
4061 mark_memory ((char *) stack_base + i, end);
4062
4063 #if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
4064 check_gcpros ();
4065 #endif
4066 }
4067
4068
4069 #endif /* GC_MARK_STACK != 0 */
4070
4071
4072 \f
4073 /***********************************************************************
4074 Pure Storage Management
4075 ***********************************************************************/
4076
4077 /* Allocate room for SIZE bytes from pure Lisp storage and return a
4078 pointer to it. TYPE is the Lisp type for which the memory is
4079 allocated. TYPE < 0 means it's not used for a Lisp object.
4080
4081 If store_pure_type_info is set and TYPE is >= 0, the type of
4082 the allocated object is recorded in pure_types. */
4083
4084 static POINTER_TYPE *
4085 pure_alloc (size, type)
4086 size_t size;
4087 int type;
4088 {
4089 POINTER_TYPE *result;
4090 #ifdef USE_LSB_TAG
4091 size_t alignment = (1 << GCTYPEBITS);
4092 #else
4093 size_t alignment = sizeof (EMACS_INT);
4094
4095 /* Give Lisp_Floats an extra alignment. */
4096 if (type == Lisp_Float)
4097 {
4098 #if defined __GNUC__ && __GNUC__ >= 2
4099 alignment = __alignof (struct Lisp_Float);
4100 #else
4101 alignment = sizeof (struct Lisp_Float);
4102 #endif
4103 }
4104 #endif
4105
4106 again:
4107 result = ALIGN (purebeg + pure_bytes_used, alignment);
4108 pure_bytes_used = ((char *)result - (char *)purebeg) + size;
4109
4110 if (pure_bytes_used <= pure_size)
4111 return result;
4112
4113 /* Don't allocate a large amount here,
4114 because it might get mmap'd and then its address
4115 might not be usable. */
4116 purebeg = (char *) xmalloc (10000);
4117 pure_size = 10000;
4118 pure_bytes_used_before_overflow += pure_bytes_used - size;
4119 pure_bytes_used = 0;
4120 goto again;
4121 }
4122
4123
4124 /* Print a warning if PURESIZE is too small. */
4125
4126 void
4127 check_pure_size ()
4128 {
4129 if (pure_bytes_used_before_overflow)
4130 message ("Pure Lisp storage overflow (approx. %d bytes needed)",
4131 (int) (pure_bytes_used + pure_bytes_used_before_overflow));
4132 }
4133
4134
4135 /* Return a string allocated in pure space. DATA is a buffer holding
4136 NCHARS characters, and NBYTES bytes of string data. MULTIBYTE
4137 non-zero means make the result string multibyte.
4138
4139 Must get an error if pure storage is full, since if it cannot hold
4140 a large string it may be able to hold conses that point to that
4141 string; then the string is not protected from gc. */
4142
4143 Lisp_Object
4144 make_pure_string (data, nchars, nbytes, multibyte)
4145 char *data;
4146 int nchars, nbytes;
4147 int multibyte;
4148 {
4149 Lisp_Object string;
4150 struct Lisp_String *s;
4151
4152 s = (struct Lisp_String *) pure_alloc (sizeof *s, Lisp_String);
4153 s->data = (unsigned char *) pure_alloc (nbytes + 1, -1);
4154 s->size = nchars;
4155 s->size_byte = multibyte ? nbytes : -1;
4156 bcopy (data, s->data, nbytes);
4157 s->data[nbytes] = '\0';
4158 s->intervals = NULL_INTERVAL;
4159 XSETSTRING (string, s);
4160 return string;
4161 }
4162
4163
4164 /* Return a cons allocated from pure space. Give it pure copies
4165 of CAR as car and CDR as cdr. */
4166
4167 Lisp_Object
4168 pure_cons (car, cdr)
4169 Lisp_Object car, cdr;
4170 {
4171 register Lisp_Object new;
4172 struct Lisp_Cons *p;
4173
4174 p = (struct Lisp_Cons *) pure_alloc (sizeof *p, Lisp_Cons);
4175 XSETCONS (new, p);
4176 XSETCAR (new, Fpurecopy (car));
4177 XSETCDR (new, Fpurecopy (cdr));
4178 return new;
4179 }
4180
4181
4182 /* Value is a float object with value NUM allocated from pure space. */
4183
4184 Lisp_Object
4185 make_pure_float (num)
4186 double num;
4187 {
4188 register Lisp_Object new;
4189 struct Lisp_Float *p;
4190
4191 p = (struct Lisp_Float *) pure_alloc (sizeof *p, Lisp_Float);
4192 XSETFLOAT (new, p);
4193 XFLOAT_DATA (new) = num;
4194 return new;
4195 }
4196
4197
4198 /* Return a vector with room for LEN Lisp_Objects allocated from
4199 pure space. */
4200
4201 Lisp_Object
4202 make_pure_vector (len)
4203 EMACS_INT len;
4204 {
4205 Lisp_Object new;
4206 struct Lisp_Vector *p;
4207 size_t size = sizeof *p + (len - 1) * sizeof (Lisp_Object);
4208
4209 p = (struct Lisp_Vector *) pure_alloc (size, Lisp_Vectorlike);
4210 XSETVECTOR (new, p);
4211 XVECTOR (new)->size = len;
4212 return new;
4213 }
4214
4215
4216 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
4217 doc: /* Make a copy of OBJECT in pure storage.
4218 Recursively copies contents of vectors and cons cells.
4219 Does not copy symbols. Copies strings without text properties. */)
4220 (obj)
4221 register Lisp_Object obj;
4222 {
4223 if (NILP (Vpurify_flag))
4224 return obj;
4225
4226 if (PURE_POINTER_P (XPNTR (obj)))
4227 return obj;
4228
4229 if (CONSP (obj))
4230 return pure_cons (XCAR (obj), XCDR (obj));
4231 else if (FLOATP (obj))
4232 return make_pure_float (XFLOAT_DATA (obj));
4233 else if (STRINGP (obj))
4234 return make_pure_string (SDATA (obj), SCHARS (obj),
4235 SBYTES (obj),
4236 STRING_MULTIBYTE (obj));
4237 else if (COMPILEDP (obj) || VECTORP (obj))
4238 {
4239 register struct Lisp_Vector *vec;
4240 register int i;
4241 EMACS_INT size;
4242
4243 size = XVECTOR (obj)->size;
4244 if (size & PSEUDOVECTOR_FLAG)
4245 size &= PSEUDOVECTOR_SIZE_MASK;
4246 vec = XVECTOR (make_pure_vector (size));
4247 for (i = 0; i < size; i++)
4248 vec->contents[i] = Fpurecopy (XVECTOR (obj)->contents[i]);
4249 if (COMPILEDP (obj))
4250 XSETCOMPILED (obj, vec);
4251 else
4252 XSETVECTOR (obj, vec);
4253 return obj;
4254 }
4255 else if (MARKERP (obj))
4256 error ("Attempt to copy a marker to pure storage");
4257
4258 return obj;
4259 }
4260
4261
4262 \f
4263 /***********************************************************************
4264 Protection from GC
4265 ***********************************************************************/
4266
4267 /* Put an entry in staticvec, pointing at the variable with address
4268 VARADDRESS. */
4269
4270 void
4271 staticpro (varaddress)
4272 Lisp_Object *varaddress;
4273 {
4274 staticvec[staticidx++] = varaddress;
4275 if (staticidx >= NSTATICS)
4276 abort ();
4277 }
4278
4279 struct catchtag
4280 {
4281 Lisp_Object tag;
4282 Lisp_Object val;
4283 struct catchtag *next;
4284 };
4285
4286 \f
4287 /***********************************************************************
4288 Protection from GC
4289 ***********************************************************************/
4290
4291 /* Temporarily prevent garbage collection. */
4292
4293 int
4294 inhibit_garbage_collection ()
4295 {
4296 int count = SPECPDL_INDEX ();
4297 int nbits = min (VALBITS, BITS_PER_INT);
4298
4299 specbind (Qgc_cons_threshold, make_number (((EMACS_INT) 1 << (nbits - 1)) - 1));
4300 return count;
4301 }
4302
4303
4304 DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "",
4305 doc: /* Reclaim storage for Lisp objects no longer needed.
4306 Garbage collection happens automatically if you cons more than
4307 `gc-cons-threshold' bytes of Lisp data since previous garbage collection.
4308 `garbage-collect' normally returns a list with info on amount of space in use:
4309 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)
4310 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS
4311 (USED-FLOATS . FREE-FLOATS) (USED-INTERVALS . FREE-INTERVALS)
4312 (USED-STRINGS . FREE-STRINGS))
4313 However, if there was overflow in pure space, `garbage-collect'
4314 returns nil, because real GC can't be done. */)
4315 ()
4316 {
4317 register struct specbinding *bind;
4318 struct catchtag *catch;
4319 struct handler *handler;
4320 char stack_top_variable;
4321 register int i;
4322 int message_p;
4323 Lisp_Object total[8];
4324 int count = SPECPDL_INDEX ();
4325 EMACS_TIME t1, t2, t3;
4326
4327 if (abort_on_gc)
4328 abort ();
4329
4330 EMACS_GET_TIME (t1);
4331
4332 /* Can't GC if pure storage overflowed because we can't determine
4333 if something is a pure object or not. */
4334 if (pure_bytes_used_before_overflow)
4335 return Qnil;
4336
4337 /* In case user calls debug_print during GC,
4338 don't let that cause a recursive GC. */
4339 consing_since_gc = 0;
4340
4341 /* Save what's currently displayed in the echo area. */
4342 message_p = push_message ();
4343 record_unwind_protect (pop_message_unwind, Qnil);
4344
4345 /* Save a copy of the contents of the stack, for debugging. */
4346 #if MAX_SAVE_STACK > 0
4347 if (NILP (Vpurify_flag))
4348 {
4349 i = &stack_top_variable - stack_bottom;
4350 if (i < 0) i = -i;
4351 if (i < MAX_SAVE_STACK)
4352 {
4353 if (stack_copy == 0)
4354 stack_copy = (char *) xmalloc (stack_copy_size = i);
4355 else if (stack_copy_size < i)
4356 stack_copy = (char *) xrealloc (stack_copy, (stack_copy_size = i));
4357 if (stack_copy)
4358 {
4359 if ((EMACS_INT) (&stack_top_variable - stack_bottom) > 0)
4360 bcopy (stack_bottom, stack_copy, i);
4361 else
4362 bcopy (&stack_top_variable, stack_copy, i);
4363 }
4364 }
4365 }
4366 #endif /* MAX_SAVE_STACK > 0 */
4367
4368 if (garbage_collection_messages)
4369 message1_nolog ("Garbage collecting...");
4370
4371 BLOCK_INPUT;
4372
4373 shrink_regexp_cache ();
4374
4375 /* Don't keep undo information around forever. */
4376 {
4377 register struct buffer *nextb = all_buffers;
4378
4379 while (nextb)
4380 {
4381 /* If a buffer's undo list is Qt, that means that undo is
4382 turned off in that buffer. Calling truncate_undo_list on
4383 Qt tends to return NULL, which effectively turns undo back on.
4384 So don't call truncate_undo_list if undo_list is Qt. */
4385 if (! EQ (nextb->undo_list, Qt))
4386 nextb->undo_list
4387 = truncate_undo_list (nextb->undo_list, undo_limit,
4388 undo_strong_limit);
4389
4390 /* Shrink buffer gaps, but skip indirect and dead buffers. */
4391 if (nextb->base_buffer == 0 && !NILP (nextb->name))
4392 {
4393 /* If a buffer's gap size is more than 10% of the buffer
4394 size, or larger than 2000 bytes, then shrink it
4395 accordingly. Keep a minimum size of 20 bytes. */
4396 int size = min (2000, max (20, (nextb->text->z_byte / 10)));
4397
4398 if (nextb->text->gap_size > size)
4399 {
4400 struct buffer *save_current = current_buffer;
4401 current_buffer = nextb;
4402 make_gap (-(nextb->text->gap_size - size));
4403 current_buffer = save_current;
4404 }
4405 }
4406
4407 nextb = nextb->next;
4408 }
4409 }
4410
4411 gc_in_progress = 1;
4412
4413 /* clear_marks (); */
4414
4415 /* Mark all the special slots that serve as the roots of accessibility. */
4416
4417 for (i = 0; i < staticidx; i++)
4418 mark_object (*staticvec[i]);
4419
4420 #if (GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS \
4421 || GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS)
4422 mark_stack ();
4423 #else
4424 {
4425 register struct gcpro *tail;
4426 for (tail = gcprolist; tail; tail = tail->next)
4427 for (i = 0; i < tail->nvars; i++)
4428 mark_object (tail->var[i]);
4429 }
4430 #endif
4431
4432 mark_byte_stack ();
4433 for (bind = specpdl; bind != specpdl_ptr; bind++)
4434 {
4435 mark_object (bind->symbol);
4436 mark_object (bind->old_value);
4437 }
4438 for (catch = catchlist; catch; catch = catch->next)
4439 {
4440 mark_object (catch->tag);
4441 mark_object (catch->val);
4442 }
4443 for (handler = handlerlist; handler; handler = handler->next)
4444 {
4445 mark_object (handler->handler);
4446 mark_object (handler->var);
4447 }
4448 mark_backtrace ();
4449 mark_kboards ();
4450
4451 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4452 mark_stack ();
4453 #endif
4454
4455 #ifdef USE_GTK
4456 {
4457 extern void xg_mark_data ();
4458 xg_mark_data ();
4459 }
4460 #endif
4461
4462 gc_sweep ();
4463
4464 /* Look thru every buffer's undo list for elements that used to
4465 contain update markers that were changed to Lisp_Misc_Free
4466 objects and delete them. This may leave a few cons cells
4467 unchained, but we will get those on the next sweep. */
4468 {
4469 register struct buffer *nextb = all_buffers;
4470
4471 while (nextb)
4472 {
4473 /* If a buffer's undo list is Qt, that means that undo is
4474 turned off in that buffer. */
4475 if (! EQ (nextb->undo_list, Qt))
4476 {
4477 Lisp_Object tail, prev, elt, car;
4478 tail = nextb->undo_list;
4479 prev = Qnil;
4480 while (CONSP (tail))
4481 {
4482 if ((elt = XCAR (tail), GC_CONSP (elt))
4483 && (car = XCAR (elt), GC_MISCP (car))
4484 && XMISCTYPE (car) == Lisp_Misc_Free)
4485 {
4486 Lisp_Object cdr = XCDR (tail);
4487 /* Do not use free_cons here, as we don't know if
4488 anybody else has a pointer to these conses. */
4489 XSETCAR (elt, Qnil);
4490 XSETCDR (elt, Qnil);
4491 XSETCAR (tail, Qnil);
4492 XSETCDR (tail, Qnil);
4493 if (NILP (prev))
4494 nextb->undo_list = tail = cdr;
4495 else
4496 {
4497 tail = cdr;
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 /* Undo lists have been cleaned up, so we can free marker blocks now. */
4514
4515 {
4516 struct marker_block *mblk;
4517
4518 while ((mblk = marker_blocks_pending_free) != 0)
4519 {
4520 marker_blocks_pending_free = mblk->next;
4521 lisp_free (mblk);
4522 }
4523 }
4524
4525 /* Clear the mark bits that we set in certain root slots. */
4526
4527 unmark_byte_stack ();
4528 VECTOR_UNMARK (&buffer_defaults);
4529 VECTOR_UNMARK (&buffer_local_symbols);
4530
4531 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES && 0
4532 dump_zombies ();
4533 #endif
4534
4535 UNBLOCK_INPUT;
4536
4537 /* clear_marks (); */
4538 gc_in_progress = 0;
4539
4540 consing_since_gc = 0;
4541 if (gc_cons_threshold < 10000)
4542 gc_cons_threshold = 10000;
4543
4544 if (garbage_collection_messages)
4545 {
4546 if (message_p || minibuf_level > 0)
4547 restore_message ();
4548 else
4549 message1_nolog ("Garbage collecting...done");
4550 }
4551
4552 unbind_to (count, Qnil);
4553
4554 total[0] = Fcons (make_number (total_conses),
4555 make_number (total_free_conses));
4556 total[1] = Fcons (make_number (total_symbols),
4557 make_number (total_free_symbols));
4558 total[2] = Fcons (make_number (total_markers),
4559 make_number (total_free_markers));
4560 total[3] = make_number (total_string_size);
4561 total[4] = make_number (total_vector_size);
4562 total[5] = Fcons (make_number (total_floats),
4563 make_number (total_free_floats));
4564 total[6] = Fcons (make_number (total_intervals),
4565 make_number (total_free_intervals));
4566 total[7] = Fcons (make_number (total_strings),
4567 make_number (total_free_strings));
4568
4569 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4570 {
4571 /* Compute average percentage of zombies. */
4572 double nlive = 0;
4573
4574 for (i = 0; i < 7; ++i)
4575 if (CONSP (total[i]))
4576 nlive += XFASTINT (XCAR (total[i]));
4577
4578 avg_live = (avg_live * ngcs + nlive) / (ngcs + 1);
4579 max_live = max (nlive, max_live);
4580 avg_zombies = (avg_zombies * ngcs + nzombies) / (ngcs + 1);
4581 max_zombies = max (nzombies, max_zombies);
4582 ++ngcs;
4583 }
4584 #endif
4585
4586 if (!NILP (Vpost_gc_hook))
4587 {
4588 int count = inhibit_garbage_collection ();
4589 safe_run_hooks (Qpost_gc_hook);
4590 unbind_to (count, Qnil);
4591 }
4592
4593 /* Accumulate statistics. */
4594 EMACS_GET_TIME (t2);
4595 EMACS_SUB_TIME (t3, t2, t1);
4596 if (FLOATP (Vgc_elapsed))
4597 Vgc_elapsed = make_float (XFLOAT_DATA (Vgc_elapsed) +
4598 EMACS_SECS (t3) +
4599 EMACS_USECS (t3) * 1.0e-6);
4600 gcs_done++;
4601
4602 return Flist (sizeof total / sizeof *total, total);
4603 }
4604
4605
4606 /* Mark Lisp objects in glyph matrix MATRIX. Currently the
4607 only interesting objects referenced from glyphs are strings. */
4608
4609 static void
4610 mark_glyph_matrix (matrix)
4611 struct glyph_matrix *matrix;
4612 {
4613 struct glyph_row *row = matrix->rows;
4614 struct glyph_row *end = row + matrix->nrows;
4615
4616 for (; row < end; ++row)
4617 if (row->enabled_p)
4618 {
4619 int area;
4620 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
4621 {
4622 struct glyph *glyph = row->glyphs[area];
4623 struct glyph *end_glyph = glyph + row->used[area];
4624
4625 for (; glyph < end_glyph; ++glyph)
4626 if (GC_STRINGP (glyph->object)
4627 && !STRING_MARKED_P (XSTRING (glyph->object)))
4628 mark_object (glyph->object);
4629 }
4630 }
4631 }
4632
4633
4634 /* Mark Lisp faces in the face cache C. */
4635
4636 static void
4637 mark_face_cache (c)
4638 struct face_cache *c;
4639 {
4640 if (c)
4641 {
4642 int i, j;
4643 for (i = 0; i < c->used; ++i)
4644 {
4645 struct face *face = FACE_FROM_ID (c->f, i);
4646
4647 if (face)
4648 {
4649 for (j = 0; j < LFACE_VECTOR_SIZE; ++j)
4650 mark_object (face->lface[j]);
4651 }
4652 }
4653 }
4654 }
4655
4656
4657 #ifdef HAVE_WINDOW_SYSTEM
4658
4659 /* Mark Lisp objects in image IMG. */
4660
4661 static void
4662 mark_image (img)
4663 struct image *img;
4664 {
4665 mark_object (img->spec);
4666
4667 if (!NILP (img->data.lisp_val))
4668 mark_object (img->data.lisp_val);
4669 }
4670
4671
4672 /* Mark Lisp objects in image cache of frame F. It's done this way so
4673 that we don't have to include xterm.h here. */
4674
4675 static void
4676 mark_image_cache (f)
4677 struct frame *f;
4678 {
4679 forall_images_in_image_cache (f, mark_image);
4680 }
4681
4682 #endif /* HAVE_X_WINDOWS */
4683
4684
4685 \f
4686 /* Mark reference to a Lisp_Object.
4687 If the object referred to has not been seen yet, recursively mark
4688 all the references contained in it. */
4689
4690 #define LAST_MARKED_SIZE 500
4691 Lisp_Object last_marked[LAST_MARKED_SIZE];
4692 int last_marked_index;
4693
4694 /* For debugging--call abort when we cdr down this many
4695 links of a list, in mark_object. In debugging,
4696 the call to abort will hit a breakpoint.
4697 Normally this is zero and the check never goes off. */
4698 int mark_object_loop_halt;
4699
4700 void
4701 mark_object (arg)
4702 Lisp_Object arg;
4703 {
4704 register Lisp_Object obj = arg;
4705 #ifdef GC_CHECK_MARKED_OBJECTS
4706 void *po;
4707 struct mem_node *m;
4708 #endif
4709 int cdr_count = 0;
4710
4711 loop:
4712
4713 if (PURE_POINTER_P (XPNTR (obj)))
4714 return;
4715
4716 last_marked[last_marked_index++] = obj;
4717 if (last_marked_index == LAST_MARKED_SIZE)
4718 last_marked_index = 0;
4719
4720 /* Perform some sanity checks on the objects marked here. Abort if
4721 we encounter an object we know is bogus. This increases GC time
4722 by ~80%, and requires compilation with GC_MARK_STACK != 0. */
4723 #ifdef GC_CHECK_MARKED_OBJECTS
4724
4725 po = (void *) XPNTR (obj);
4726
4727 /* Check that the object pointed to by PO is known to be a Lisp
4728 structure allocated from the heap. */
4729 #define CHECK_ALLOCATED() \
4730 do { \
4731 m = mem_find (po); \
4732 if (m == MEM_NIL) \
4733 abort (); \
4734 } while (0)
4735
4736 /* Check that the object pointed to by PO is live, using predicate
4737 function LIVEP. */
4738 #define CHECK_LIVE(LIVEP) \
4739 do { \
4740 if (!LIVEP (m, po)) \
4741 abort (); \
4742 } while (0)
4743
4744 /* Check both of the above conditions. */
4745 #define CHECK_ALLOCATED_AND_LIVE(LIVEP) \
4746 do { \
4747 CHECK_ALLOCATED (); \
4748 CHECK_LIVE (LIVEP); \
4749 } while (0) \
4750
4751 #else /* not GC_CHECK_MARKED_OBJECTS */
4752
4753 #define CHECK_ALLOCATED() (void) 0
4754 #define CHECK_LIVE(LIVEP) (void) 0
4755 #define CHECK_ALLOCATED_AND_LIVE(LIVEP) (void) 0
4756
4757 #endif /* not GC_CHECK_MARKED_OBJECTS */
4758
4759 switch (SWITCH_ENUM_CAST (XGCTYPE (obj)))
4760 {
4761 case Lisp_String:
4762 {
4763 register struct Lisp_String *ptr = XSTRING (obj);
4764 CHECK_ALLOCATED_AND_LIVE (live_string_p);
4765 MARK_INTERVAL_TREE (ptr->intervals);
4766 MARK_STRING (ptr);
4767 #ifdef GC_CHECK_STRING_BYTES
4768 /* Check that the string size recorded in the string is the
4769 same as the one recorded in the sdata structure. */
4770 CHECK_STRING_BYTES (ptr);
4771 #endif /* GC_CHECK_STRING_BYTES */
4772 }
4773 break;
4774
4775 case Lisp_Vectorlike:
4776 #ifdef GC_CHECK_MARKED_OBJECTS
4777 m = mem_find (po);
4778 if (m == MEM_NIL && !GC_SUBRP (obj)
4779 && po != &buffer_defaults
4780 && po != &buffer_local_symbols)
4781 abort ();
4782 #endif /* GC_CHECK_MARKED_OBJECTS */
4783
4784 if (GC_BUFFERP (obj))
4785 {
4786 if (!VECTOR_MARKED_P (XBUFFER (obj)))
4787 {
4788 #ifdef GC_CHECK_MARKED_OBJECTS
4789 if (po != &buffer_defaults && po != &buffer_local_symbols)
4790 {
4791 struct buffer *b;
4792 for (b = all_buffers; b && b != po; b = b->next)
4793 ;
4794 if (b == NULL)
4795 abort ();
4796 }
4797 #endif /* GC_CHECK_MARKED_OBJECTS */
4798 mark_buffer (obj);
4799 }
4800 }
4801 else if (GC_SUBRP (obj))
4802 break;
4803 else if (GC_COMPILEDP (obj))
4804 /* We could treat this just like a vector, but it is better to
4805 save the COMPILED_CONSTANTS element for last and avoid
4806 recursion there. */
4807 {
4808 register struct Lisp_Vector *ptr = XVECTOR (obj);
4809 register EMACS_INT size = ptr->size;
4810 register int i;
4811
4812 if (VECTOR_MARKED_P (ptr))
4813 break; /* Already marked */
4814
4815 CHECK_LIVE (live_vector_p);
4816 VECTOR_MARK (ptr); /* Else mark it */
4817 size &= PSEUDOVECTOR_SIZE_MASK;
4818 for (i = 0; i < size; i++) /* and then mark its elements */
4819 {
4820 if (i != COMPILED_CONSTANTS)
4821 mark_object (ptr->contents[i]);
4822 }
4823 obj = ptr->contents[COMPILED_CONSTANTS];
4824 goto loop;
4825 }
4826 else if (GC_FRAMEP (obj))
4827 {
4828 register struct frame *ptr = XFRAME (obj);
4829
4830 if (VECTOR_MARKED_P (ptr)) break; /* Already marked */
4831 VECTOR_MARK (ptr); /* Else mark it */
4832
4833 CHECK_LIVE (live_vector_p);
4834 mark_object (ptr->name);
4835 mark_object (ptr->icon_name);
4836 mark_object (ptr->title);
4837 mark_object (ptr->focus_frame);
4838 mark_object (ptr->selected_window);
4839 mark_object (ptr->minibuffer_window);
4840 mark_object (ptr->param_alist);
4841 mark_object (ptr->scroll_bars);
4842 mark_object (ptr->condemned_scroll_bars);
4843 mark_object (ptr->menu_bar_items);
4844 mark_object (ptr->face_alist);
4845 mark_object (ptr->menu_bar_vector);
4846 mark_object (ptr->buffer_predicate);
4847 mark_object (ptr->buffer_list);
4848 mark_object (ptr->menu_bar_window);
4849 mark_object (ptr->tool_bar_window);
4850 mark_face_cache (ptr->face_cache);
4851 #ifdef HAVE_WINDOW_SYSTEM
4852 mark_image_cache (ptr);
4853 mark_object (ptr->tool_bar_items);
4854 mark_object (ptr->desired_tool_bar_string);
4855 mark_object (ptr->current_tool_bar_string);
4856 #endif /* HAVE_WINDOW_SYSTEM */
4857 }
4858 else if (GC_BOOL_VECTOR_P (obj))
4859 {
4860 register struct Lisp_Vector *ptr = XVECTOR (obj);
4861
4862 if (VECTOR_MARKED_P (ptr))
4863 break; /* Already marked */
4864 CHECK_LIVE (live_vector_p);
4865 VECTOR_MARK (ptr); /* Else mark it */
4866 }
4867 else if (GC_WINDOWP (obj))
4868 {
4869 register struct Lisp_Vector *ptr = XVECTOR (obj);
4870 struct window *w = XWINDOW (obj);
4871 register int i;
4872
4873 /* Stop if already marked. */
4874 if (VECTOR_MARKED_P (ptr))
4875 break;
4876
4877 /* Mark it. */
4878 CHECK_LIVE (live_vector_p);
4879 VECTOR_MARK (ptr);
4880
4881 /* There is no Lisp data above The member CURRENT_MATRIX in
4882 struct WINDOW. Stop marking when that slot is reached. */
4883 for (i = 0;
4884 (char *) &ptr->contents[i] < (char *) &w->current_matrix;
4885 i++)
4886 mark_object (ptr->contents[i]);
4887
4888 /* Mark glyphs for leaf windows. Marking window matrices is
4889 sufficient because frame matrices use the same glyph
4890 memory. */
4891 if (NILP (w->hchild)
4892 && NILP (w->vchild)
4893 && w->current_matrix)
4894 {
4895 mark_glyph_matrix (w->current_matrix);
4896 mark_glyph_matrix (w->desired_matrix);
4897 }
4898 }
4899 else if (GC_HASH_TABLE_P (obj))
4900 {
4901 struct Lisp_Hash_Table *h = XHASH_TABLE (obj);
4902
4903 /* Stop if already marked. */
4904 if (VECTOR_MARKED_P (h))
4905 break;
4906
4907 /* Mark it. */
4908 CHECK_LIVE (live_vector_p);
4909 VECTOR_MARK (h);
4910
4911 /* Mark contents. */
4912 /* Do not mark next_free or next_weak.
4913 Being in the next_weak chain
4914 should not keep the hash table alive.
4915 No need to mark `count' since it is an integer. */
4916 mark_object (h->test);
4917 mark_object (h->weak);
4918 mark_object (h->rehash_size);
4919 mark_object (h->rehash_threshold);
4920 mark_object (h->hash);
4921 mark_object (h->next);
4922 mark_object (h->index);
4923 mark_object (h->user_hash_function);
4924 mark_object (h->user_cmp_function);
4925
4926 /* If hash table is not weak, mark all keys and values.
4927 For weak tables, mark only the vector. */
4928 if (GC_NILP (h->weak))
4929 mark_object (h->key_and_value);
4930 else
4931 VECTOR_MARK (XVECTOR (h->key_and_value));
4932 }
4933 else
4934 {
4935 register struct Lisp_Vector *ptr = XVECTOR (obj);
4936 register EMACS_INT size = ptr->size;
4937 register int i;
4938
4939 if (VECTOR_MARKED_P (ptr)) break; /* Already marked */
4940 CHECK_LIVE (live_vector_p);
4941 VECTOR_MARK (ptr); /* Else mark it */
4942 if (size & PSEUDOVECTOR_FLAG)
4943 size &= PSEUDOVECTOR_SIZE_MASK;
4944
4945 for (i = 0; i < size; i++) /* and then mark its elements */
4946 mark_object (ptr->contents[i]);
4947 }
4948 break;
4949
4950 case Lisp_Symbol:
4951 {
4952 register struct Lisp_Symbol *ptr = XSYMBOL (obj);
4953 struct Lisp_Symbol *ptrx;
4954
4955 if (ptr->gcmarkbit) break;
4956 CHECK_ALLOCATED_AND_LIVE (live_symbol_p);
4957 ptr->gcmarkbit = 1;
4958 mark_object (ptr->value);
4959 mark_object (ptr->function);
4960 mark_object (ptr->plist);
4961
4962 if (!PURE_POINTER_P (XSTRING (ptr->xname)))
4963 MARK_STRING (XSTRING (ptr->xname));
4964 MARK_INTERVAL_TREE (STRING_INTERVALS (ptr->xname));
4965
4966 /* Note that we do not mark the obarray of the symbol.
4967 It is safe not to do so because nothing accesses that
4968 slot except to check whether it is nil. */
4969 ptr = ptr->next;
4970 if (ptr)
4971 {
4972 ptrx = ptr; /* Use of ptrx avoids compiler bug on Sun */
4973 XSETSYMBOL (obj, ptrx);
4974 goto loop;
4975 }
4976 }
4977 break;
4978
4979 case Lisp_Misc:
4980 CHECK_ALLOCATED_AND_LIVE (live_misc_p);
4981 if (XMARKER (obj)->gcmarkbit)
4982 break;
4983 XMARKER (obj)->gcmarkbit = 1;
4984 switch (XMISCTYPE (obj))
4985 {
4986 case Lisp_Misc_Buffer_Local_Value:
4987 case Lisp_Misc_Some_Buffer_Local_Value:
4988 {
4989 register struct Lisp_Buffer_Local_Value *ptr
4990 = XBUFFER_LOCAL_VALUE (obj);
4991 /* If the cdr is nil, avoid recursion for the car. */
4992 if (EQ (ptr->cdr, Qnil))
4993 {
4994 obj = ptr->realvalue;
4995 goto loop;
4996 }
4997 mark_object (ptr->realvalue);
4998 mark_object (ptr->buffer);
4999 mark_object (ptr->frame);
5000 obj = ptr->cdr;
5001 goto loop;
5002 }
5003
5004 case Lisp_Misc_Marker:
5005 /* DO NOT mark thru the marker's chain.
5006 The buffer's markers chain does not preserve markers from gc;
5007 instead, markers are removed from the chain when freed by gc. */
5008 case Lisp_Misc_Intfwd:
5009 case Lisp_Misc_Boolfwd:
5010 case Lisp_Misc_Objfwd:
5011 case Lisp_Misc_Buffer_Objfwd:
5012 case Lisp_Misc_Kboard_Objfwd:
5013 /* Don't bother with Lisp_Buffer_Objfwd,
5014 since all markable slots in current buffer marked anyway. */
5015 /* Don't need to do Lisp_Objfwd, since the places they point
5016 are protected with staticpro. */
5017 case Lisp_Misc_Save_Value:
5018 break;
5019
5020 case Lisp_Misc_Overlay:
5021 {
5022 struct Lisp_Overlay *ptr = XOVERLAY (obj);
5023 mark_object (ptr->start);
5024 mark_object (ptr->end);
5025 mark_object (ptr->plist);
5026 if (ptr->next)
5027 {
5028 XSETMISC (obj, ptr->next);
5029 goto loop;
5030 }
5031 }
5032 break;
5033
5034 default:
5035 abort ();
5036 }
5037 break;
5038
5039 case Lisp_Cons:
5040 {
5041 register struct Lisp_Cons *ptr = XCONS (obj);
5042 if (CONS_MARKED_P (ptr)) break;
5043 CHECK_ALLOCATED_AND_LIVE (live_cons_p);
5044 CONS_MARK (ptr);
5045 /* If the cdr is nil, avoid recursion for the car. */
5046 if (EQ (ptr->cdr, Qnil))
5047 {
5048 obj = ptr->car;
5049 cdr_count = 0;
5050 goto loop;
5051 }
5052 mark_object (ptr->car);
5053 obj = ptr->cdr;
5054 cdr_count++;
5055 if (cdr_count == mark_object_loop_halt)
5056 abort ();
5057 goto loop;
5058 }
5059
5060 case Lisp_Float:
5061 CHECK_ALLOCATED_AND_LIVE (live_float_p);
5062 FLOAT_MARK (XFLOAT (obj));
5063 break;
5064
5065 case Lisp_Int:
5066 break;
5067
5068 default:
5069 abort ();
5070 }
5071
5072 #undef CHECK_LIVE
5073 #undef CHECK_ALLOCATED
5074 #undef CHECK_ALLOCATED_AND_LIVE
5075 }
5076
5077 /* Mark the pointers in a buffer structure. */
5078
5079 static void
5080 mark_buffer (buf)
5081 Lisp_Object buf;
5082 {
5083 register struct buffer *buffer = XBUFFER (buf);
5084 register Lisp_Object *ptr, tmp;
5085 Lisp_Object base_buffer;
5086
5087 VECTOR_MARK (buffer);
5088
5089 MARK_INTERVAL_TREE (BUF_INTERVALS (buffer));
5090
5091 if (CONSP (buffer->undo_list))
5092 {
5093 Lisp_Object tail;
5094 tail = buffer->undo_list;
5095
5096 /* We mark the undo list specially because
5097 its pointers to markers should be weak. */
5098
5099 while (CONSP (tail))
5100 {
5101 register struct Lisp_Cons *ptr = XCONS (tail);
5102
5103 if (CONS_MARKED_P (ptr))
5104 break;
5105 CONS_MARK (ptr);
5106 if (GC_CONSP (ptr->car)
5107 && !CONS_MARKED_P (XCONS (ptr->car))
5108 && GC_MARKERP (XCAR (ptr->car)))
5109 {
5110 CONS_MARK (XCONS (ptr->car));
5111 mark_object (XCDR (ptr->car));
5112 }
5113 else
5114 mark_object (ptr->car);
5115
5116 if (CONSP (ptr->cdr))
5117 tail = ptr->cdr;
5118 else
5119 break;
5120 }
5121
5122 mark_object (XCDR (tail));
5123 }
5124 else
5125 mark_object (buffer->undo_list);
5126
5127 if (buffer->overlays_before)
5128 {
5129 XSETMISC (tmp, buffer->overlays_before);
5130 mark_object (tmp);
5131 }
5132 if (buffer->overlays_after)
5133 {
5134 XSETMISC (tmp, buffer->overlays_after);
5135 mark_object (tmp);
5136 }
5137
5138 for (ptr = &buffer->name;
5139 (char *)ptr < (char *)buffer + sizeof (struct buffer);
5140 ptr++)
5141 mark_object (*ptr);
5142
5143 /* If this is an indirect buffer, mark its base buffer. */
5144 if (buffer->base_buffer && !VECTOR_MARKED_P (buffer->base_buffer))
5145 {
5146 XSETBUFFER (base_buffer, buffer->base_buffer);
5147 mark_buffer (base_buffer);
5148 }
5149 }
5150
5151
5152 /* Value is non-zero if OBJ will survive the current GC because it's
5153 either marked or does not need to be marked to survive. */
5154
5155 int
5156 survives_gc_p (obj)
5157 Lisp_Object obj;
5158 {
5159 int survives_p;
5160
5161 switch (XGCTYPE (obj))
5162 {
5163 case Lisp_Int:
5164 survives_p = 1;
5165 break;
5166
5167 case Lisp_Symbol:
5168 survives_p = XSYMBOL (obj)->gcmarkbit;
5169 break;
5170
5171 case Lisp_Misc:
5172 survives_p = XMARKER (obj)->gcmarkbit;
5173 break;
5174
5175 case Lisp_String:
5176 survives_p = STRING_MARKED_P (XSTRING (obj));
5177 break;
5178
5179 case Lisp_Vectorlike:
5180 survives_p = GC_SUBRP (obj) || VECTOR_MARKED_P (XVECTOR (obj));
5181 break;
5182
5183 case Lisp_Cons:
5184 survives_p = CONS_MARKED_P (XCONS (obj));
5185 break;
5186
5187 case Lisp_Float:
5188 survives_p = FLOAT_MARKED_P (XFLOAT (obj));
5189 break;
5190
5191 default:
5192 abort ();
5193 }
5194
5195 return survives_p || PURE_POINTER_P ((void *) XPNTR (obj));
5196 }
5197
5198
5199 \f
5200 /* Sweep: find all structures not marked, and free them. */
5201
5202 static void
5203 gc_sweep ()
5204 {
5205 /* Put all unmarked conses on free list */
5206 {
5207 register struct cons_block *cblk;
5208 struct cons_block **cprev = &cons_block;
5209 register int lim = cons_block_index;
5210 register int num_free = 0, num_used = 0;
5211
5212 cons_free_list = 0;
5213
5214 for (cblk = cons_block; cblk; cblk = *cprev)
5215 {
5216 register int i;
5217 int this_free = 0;
5218 for (i = 0; i < lim; i++)
5219 if (!CONS_MARKED_P (&cblk->conses[i]))
5220 {
5221 this_free++;
5222 *(struct Lisp_Cons **)&cblk->conses[i].cdr = cons_free_list;
5223 cons_free_list = &cblk->conses[i];
5224 #if GC_MARK_STACK
5225 cons_free_list->car = Vdead;
5226 #endif
5227 }
5228 else
5229 {
5230 num_used++;
5231 CONS_UNMARK (&cblk->conses[i]);
5232 }
5233 lim = CONS_BLOCK_SIZE;
5234 /* If this block contains only free conses and we have already
5235 seen more than two blocks worth of free conses then deallocate
5236 this block. */
5237 if (this_free == CONS_BLOCK_SIZE && num_free > CONS_BLOCK_SIZE)
5238 {
5239 *cprev = cblk->next;
5240 /* Unhook from the free list. */
5241 cons_free_list = *(struct Lisp_Cons **) &cblk->conses[0].cdr;
5242 lisp_align_free (cblk);
5243 n_cons_blocks--;
5244 }
5245 else
5246 {
5247 num_free += this_free;
5248 cprev = &cblk->next;
5249 }
5250 }
5251 total_conses = num_used;
5252 total_free_conses = num_free;
5253 }
5254
5255 /* Remove or mark entries in weak hash tables.
5256 This must be done before any object is unmarked. */
5257 sweep_weak_hash_tables ();
5258
5259 sweep_strings ();
5260 #ifdef GC_CHECK_STRING_BYTES
5261 if (!noninteractive)
5262 check_string_bytes (1);
5263 #endif
5264
5265 /* Put all unmarked floats on free list */
5266 {
5267 register struct float_block *fblk;
5268 struct float_block **fprev = &float_block;
5269 register int lim = float_block_index;
5270 register int num_free = 0, num_used = 0;
5271
5272 float_free_list = 0;
5273
5274 for (fblk = float_block; fblk; fblk = *fprev)
5275 {
5276 register int i;
5277 int this_free = 0;
5278 for (i = 0; i < lim; i++)
5279 if (!FLOAT_MARKED_P (&fblk->floats[i]))
5280 {
5281 this_free++;
5282 *(struct Lisp_Float **)&fblk->floats[i].data = float_free_list;
5283 float_free_list = &fblk->floats[i];
5284 }
5285 else
5286 {
5287 num_used++;
5288 FLOAT_UNMARK (&fblk->floats[i]);
5289 }
5290 lim = FLOAT_BLOCK_SIZE;
5291 /* If this block contains only free floats and we have already
5292 seen more than two blocks worth of free floats then deallocate
5293 this block. */
5294 if (this_free == FLOAT_BLOCK_SIZE && num_free > FLOAT_BLOCK_SIZE)
5295 {
5296 *fprev = fblk->next;
5297 /* Unhook from the free list. */
5298 float_free_list = *(struct Lisp_Float **) &fblk->floats[0].data;
5299 lisp_align_free (fblk);
5300 n_float_blocks--;
5301 }
5302 else
5303 {
5304 num_free += this_free;
5305 fprev = &fblk->next;
5306 }
5307 }
5308 total_floats = num_used;
5309 total_free_floats = num_free;
5310 }
5311
5312 /* Put all unmarked intervals on free list */
5313 {
5314 register struct interval_block *iblk;
5315 struct interval_block **iprev = &interval_block;
5316 register int lim = interval_block_index;
5317 register int num_free = 0, num_used = 0;
5318
5319 interval_free_list = 0;
5320
5321 for (iblk = interval_block; iblk; iblk = *iprev)
5322 {
5323 register int i;
5324 int this_free = 0;
5325
5326 for (i = 0; i < lim; i++)
5327 {
5328 if (!iblk->intervals[i].gcmarkbit)
5329 {
5330 SET_INTERVAL_PARENT (&iblk->intervals[i], interval_free_list);
5331 interval_free_list = &iblk->intervals[i];
5332 this_free++;
5333 }
5334 else
5335 {
5336 num_used++;
5337 iblk->intervals[i].gcmarkbit = 0;
5338 }
5339 }
5340 lim = INTERVAL_BLOCK_SIZE;
5341 /* If this block contains only free intervals and we have already
5342 seen more than two blocks worth of free intervals then
5343 deallocate this block. */
5344 if (this_free == INTERVAL_BLOCK_SIZE && num_free > INTERVAL_BLOCK_SIZE)
5345 {
5346 *iprev = iblk->next;
5347 /* Unhook from the free list. */
5348 interval_free_list = INTERVAL_PARENT (&iblk->intervals[0]);
5349 lisp_free (iblk);
5350 n_interval_blocks--;
5351 }
5352 else
5353 {
5354 num_free += this_free;
5355 iprev = &iblk->next;
5356 }
5357 }
5358 total_intervals = num_used;
5359 total_free_intervals = num_free;
5360 }
5361
5362 /* Put all unmarked symbols on free list */
5363 {
5364 register struct symbol_block *sblk;
5365 struct symbol_block **sprev = &symbol_block;
5366 register int lim = symbol_block_index;
5367 register int num_free = 0, num_used = 0;
5368
5369 symbol_free_list = NULL;
5370
5371 for (sblk = symbol_block; sblk; sblk = *sprev)
5372 {
5373 int this_free = 0;
5374 struct Lisp_Symbol *sym = sblk->symbols;
5375 struct Lisp_Symbol *end = sym + lim;
5376
5377 for (; sym < end; ++sym)
5378 {
5379 /* Check if the symbol was created during loadup. In such a case
5380 it might be pointed to by pure bytecode which we don't trace,
5381 so we conservatively assume that it is live. */
5382 int pure_p = PURE_POINTER_P (XSTRING (sym->xname));
5383
5384 if (!sym->gcmarkbit && !pure_p)
5385 {
5386 *(struct Lisp_Symbol **) &sym->value = symbol_free_list;
5387 symbol_free_list = sym;
5388 #if GC_MARK_STACK
5389 symbol_free_list->function = Vdead;
5390 #endif
5391 ++this_free;
5392 }
5393 else
5394 {
5395 ++num_used;
5396 if (!pure_p)
5397 UNMARK_STRING (XSTRING (sym->xname));
5398 sym->gcmarkbit = 0;
5399 }
5400 }
5401
5402 lim = SYMBOL_BLOCK_SIZE;
5403 /* If this block contains only free symbols and we have already
5404 seen more than two blocks worth of free symbols then deallocate
5405 this block. */
5406 if (this_free == SYMBOL_BLOCK_SIZE && num_free > SYMBOL_BLOCK_SIZE)
5407 {
5408 *sprev = sblk->next;
5409 /* Unhook from the free list. */
5410 symbol_free_list = *(struct Lisp_Symbol **)&sblk->symbols[0].value;
5411 lisp_free (sblk);
5412 n_symbol_blocks--;
5413 }
5414 else
5415 {
5416 num_free += this_free;
5417 sprev = &sblk->next;
5418 }
5419 }
5420 total_symbols = num_used;
5421 total_free_symbols = num_free;
5422 }
5423
5424 /* Put all unmarked misc's on free list.
5425 For a marker, first unchain it from the buffer it points into. */
5426 {
5427 register struct marker_block *mblk;
5428 struct marker_block **mprev = &marker_block;
5429 register int lim = marker_block_index;
5430 register int num_free = 0, num_used = 0;
5431
5432 marker_free_list = 0;
5433 marker_blocks_pending_free = 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 n_marker_blocks--;
5470
5471 /* It is not safe to free the marker block at this stage,
5472 since there may still be pointers to these markers from
5473 a buffer's undo list. KFS 2004-05-25. */
5474 mblk->next = marker_blocks_pending_free;
5475 marker_blocks_pending_free = mblk;
5476 }
5477 else
5478 {
5479 num_free += this_free;
5480 mprev = &mblk->next;
5481 }
5482 }
5483
5484 total_markers = num_used;
5485 total_free_markers = num_free;
5486 }
5487
5488 /* Free all unmarked buffers */
5489 {
5490 register struct buffer *buffer = all_buffers, *prev = 0, *next;
5491
5492 while (buffer)
5493 if (!VECTOR_MARKED_P (buffer))
5494 {
5495 if (prev)
5496 prev->next = buffer->next;
5497 else
5498 all_buffers = buffer->next;
5499 next = buffer->next;
5500 lisp_free (buffer);
5501 buffer = next;
5502 }
5503 else
5504 {
5505 VECTOR_UNMARK (buffer);
5506 UNMARK_BALANCE_INTERVALS (BUF_INTERVALS (buffer));
5507 prev = buffer, buffer = buffer->next;
5508 }
5509 }
5510
5511 /* Free all unmarked vectors */
5512 {
5513 register struct Lisp_Vector *vector = all_vectors, *prev = 0, *next;
5514 total_vector_size = 0;
5515
5516 while (vector)
5517 if (!VECTOR_MARKED_P (vector))
5518 {
5519 if (prev)
5520 prev->next = vector->next;
5521 else
5522 all_vectors = vector->next;
5523 next = vector->next;
5524 lisp_free (vector);
5525 n_vectors--;
5526 vector = next;
5527
5528 }
5529 else
5530 {
5531 VECTOR_UNMARK (vector);
5532 if (vector->size & PSEUDOVECTOR_FLAG)
5533 total_vector_size += (PSEUDOVECTOR_SIZE_MASK & vector->size);
5534 else
5535 total_vector_size += vector->size;
5536 prev = vector, vector = vector->next;
5537 }
5538 }
5539
5540 #ifdef GC_CHECK_STRING_BYTES
5541 if (!noninteractive)
5542 check_string_bytes (1);
5543 #endif
5544 }
5545
5546
5547
5548 \f
5549 /* Debugging aids. */
5550
5551 DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, 0,
5552 doc: /* Return the address of the last byte Emacs has allocated, divided by 1024.
5553 This may be helpful in debugging Emacs's memory usage.
5554 We divide the value by 1024 to make sure it fits in a Lisp integer. */)
5555 ()
5556 {
5557 Lisp_Object end;
5558
5559 XSETINT (end, (EMACS_INT) sbrk (0) / 1024);
5560
5561 return end;
5562 }
5563
5564 DEFUN ("memory-use-counts", Fmemory_use_counts, Smemory_use_counts, 0, 0, 0,
5565 doc: /* Return a list of counters that measure how much consing there has been.
5566 Each of these counters increments for a certain kind of object.
5567 The counters wrap around from the largest positive integer to zero.
5568 Garbage collection does not decrease them.
5569 The elements of the value are as follows:
5570 (CONSES FLOATS VECTOR-CELLS SYMBOLS STRING-CHARS MISCS INTERVALS STRINGS)
5571 All are in units of 1 = one object consed
5572 except for VECTOR-CELLS and STRING-CHARS, which count the total length of
5573 objects consed.
5574 MISCS include overlays, markers, and some internal types.
5575 Frames, windows, buffers, and subprocesses count as vectors
5576 (but the contents of a buffer's text do not count here). */)
5577 ()
5578 {
5579 Lisp_Object consed[8];
5580
5581 consed[0] = make_number (min (MOST_POSITIVE_FIXNUM, cons_cells_consed));
5582 consed[1] = make_number (min (MOST_POSITIVE_FIXNUM, floats_consed));
5583 consed[2] = make_number (min (MOST_POSITIVE_FIXNUM, vector_cells_consed));
5584 consed[3] = make_number (min (MOST_POSITIVE_FIXNUM, symbols_consed));
5585 consed[4] = make_number (min (MOST_POSITIVE_FIXNUM, string_chars_consed));
5586 consed[5] = make_number (min (MOST_POSITIVE_FIXNUM, misc_objects_consed));
5587 consed[6] = make_number (min (MOST_POSITIVE_FIXNUM, intervals_consed));
5588 consed[7] = make_number (min (MOST_POSITIVE_FIXNUM, strings_consed));
5589
5590 return Flist (8, consed);
5591 }
5592
5593 int suppress_checking;
5594 void
5595 die (msg, file, line)
5596 const char *msg;
5597 const char *file;
5598 int line;
5599 {
5600 fprintf (stderr, "\r\nEmacs fatal error: %s:%d: %s\r\n",
5601 file, line, msg);
5602 abort ();
5603 }
5604 \f
5605 /* Initialization */
5606
5607 void
5608 init_alloc_once ()
5609 {
5610 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
5611 purebeg = PUREBEG;
5612 pure_size = PURESIZE;
5613 pure_bytes_used = 0;
5614 pure_bytes_used_before_overflow = 0;
5615
5616 /* Initialize the list of free aligned blocks. */
5617 free_ablock = NULL;
5618
5619 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
5620 mem_init ();
5621 Vdead = make_pure_string ("DEAD", 4, 4, 0);
5622 #endif
5623
5624 all_vectors = 0;
5625 ignore_warnings = 1;
5626 #ifdef DOUG_LEA_MALLOC
5627 mallopt (M_TRIM_THRESHOLD, 128*1024); /* trim threshold */
5628 mallopt (M_MMAP_THRESHOLD, 64*1024); /* mmap threshold */
5629 mallopt (M_MMAP_MAX, MMAP_MAX_AREAS); /* max. number of mmap'ed areas */
5630 #endif
5631 init_strings ();
5632 init_cons ();
5633 init_symbol ();
5634 init_marker ();
5635 init_float ();
5636 init_intervals ();
5637
5638 #ifdef REL_ALLOC
5639 malloc_hysteresis = 32;
5640 #else
5641 malloc_hysteresis = 0;
5642 #endif
5643
5644 spare_memory = (char *) malloc (SPARE_MEMORY);
5645
5646 ignore_warnings = 0;
5647 gcprolist = 0;
5648 byte_stack_list = 0;
5649 staticidx = 0;
5650 consing_since_gc = 0;
5651 gc_cons_threshold = 100000 * sizeof (Lisp_Object);
5652 #ifdef VIRT_ADDR_VARIES
5653 malloc_sbrk_unused = 1<<22; /* A large number */
5654 malloc_sbrk_used = 100000; /* as reasonable as any number */
5655 #endif /* VIRT_ADDR_VARIES */
5656 }
5657
5658 void
5659 init_alloc ()
5660 {
5661 gcprolist = 0;
5662 byte_stack_list = 0;
5663 #if GC_MARK_STACK
5664 #if !defined GC_SAVE_REGISTERS_ON_STACK && !defined GC_SETJMP_WORKS
5665 setjmp_tested_p = longjmps_done = 0;
5666 #endif
5667 #endif
5668 Vgc_elapsed = make_float (0.0);
5669 gcs_done = 0;
5670 }
5671
5672 void
5673 syms_of_alloc ()
5674 {
5675 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold,
5676 doc: /* *Number of bytes of consing between garbage collections.
5677 Garbage collection can happen automatically once this many bytes have been
5678 allocated since the last garbage collection. All data types count.
5679
5680 Garbage collection happens automatically only when `eval' is called.
5681
5682 By binding this temporarily to a large number, you can effectively
5683 prevent garbage collection during a part of the program. */);
5684
5685 DEFVAR_INT ("pure-bytes-used", &pure_bytes_used,
5686 doc: /* Number of bytes of sharable Lisp data allocated so far. */);
5687
5688 DEFVAR_INT ("cons-cells-consed", &cons_cells_consed,
5689 doc: /* Number of cons cells that have been consed so far. */);
5690
5691 DEFVAR_INT ("floats-consed", &floats_consed,
5692 doc: /* Number of floats that have been consed so far. */);
5693
5694 DEFVAR_INT ("vector-cells-consed", &vector_cells_consed,
5695 doc: /* Number of vector cells that have been consed so far. */);
5696
5697 DEFVAR_INT ("symbols-consed", &symbols_consed,
5698 doc: /* Number of symbols that have been consed so far. */);
5699
5700 DEFVAR_INT ("string-chars-consed", &string_chars_consed,
5701 doc: /* Number of string characters that have been consed so far. */);
5702
5703 DEFVAR_INT ("misc-objects-consed", &misc_objects_consed,
5704 doc: /* Number of miscellaneous objects that have been consed so far. */);
5705
5706 DEFVAR_INT ("intervals-consed", &intervals_consed,
5707 doc: /* Number of intervals that have been consed so far. */);
5708
5709 DEFVAR_INT ("strings-consed", &strings_consed,
5710 doc: /* Number of strings that have been consed so far. */);
5711
5712 DEFVAR_LISP ("purify-flag", &Vpurify_flag,
5713 doc: /* Non-nil means loading Lisp code in order to dump an executable.
5714 This means that certain objects should be allocated in shared (pure) space. */);
5715
5716 DEFVAR_INT ("undo-limit", &undo_limit,
5717 doc: /* Keep no more undo information once it exceeds this size.
5718 This limit is applied when garbage collection happens.
5719 The size is counted as the number of bytes occupied,
5720 which includes both saved text and other data. */);
5721 undo_limit = 20000;
5722
5723 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit,
5724 doc: /* Don't keep more than this much size of undo information.
5725 A command which pushes past this size is itself forgotten.
5726 This limit is applied when garbage collection happens.
5727 The size is counted as the number of bytes occupied,
5728 which includes both saved text and other data. */);
5729 undo_strong_limit = 30000;
5730
5731 DEFVAR_BOOL ("garbage-collection-messages", &garbage_collection_messages,
5732 doc: /* Non-nil means display messages at start and end of garbage collection. */);
5733 garbage_collection_messages = 0;
5734
5735 DEFVAR_LISP ("post-gc-hook", &Vpost_gc_hook,
5736 doc: /* Hook run after garbage collection has finished. */);
5737 Vpost_gc_hook = Qnil;
5738 Qpost_gc_hook = intern ("post-gc-hook");
5739 staticpro (&Qpost_gc_hook);
5740
5741 DEFVAR_LISP ("memory-signal-data", &Vmemory_signal_data,
5742 doc: /* Precomputed `signal' argument for memory-full error. */);
5743 /* We build this in advance because if we wait until we need it, we might
5744 not be able to allocate the memory to hold it. */
5745 Vmemory_signal_data
5746 = list2 (Qerror,
5747 build_string ("Memory exhausted--use M-x save-some-buffers then exit and restart Emacs"));
5748
5749 DEFVAR_LISP ("memory-full", &Vmemory_full,
5750 doc: /* Non-nil means we are handling a memory-full error. */);
5751 Vmemory_full = Qnil;
5752
5753 staticpro (&Qgc_cons_threshold);
5754 Qgc_cons_threshold = intern ("gc-cons-threshold");
5755
5756 staticpro (&Qchar_table_extra_slots);
5757 Qchar_table_extra_slots = intern ("char-table-extra-slots");
5758
5759 DEFVAR_LISP ("gc-elapsed", &Vgc_elapsed,
5760 doc: /* Accumulated time elapsed in garbage collections.
5761 The time is in seconds as a floating point value. */);
5762 DEFVAR_INT ("gcs-done", &gcs_done,
5763 doc: /* Accumulated number of garbage collections done. */);
5764
5765 defsubr (&Scons);
5766 defsubr (&Slist);
5767 defsubr (&Svector);
5768 defsubr (&Smake_byte_code);
5769 defsubr (&Smake_list);
5770 defsubr (&Smake_vector);
5771 defsubr (&Smake_char_table);
5772 defsubr (&Smake_string);
5773 defsubr (&Smake_bool_vector);
5774 defsubr (&Smake_symbol);
5775 defsubr (&Smake_marker);
5776 defsubr (&Spurecopy);
5777 defsubr (&Sgarbage_collect);
5778 defsubr (&Smemory_limit);
5779 defsubr (&Smemory_use_counts);
5780
5781 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
5782 defsubr (&Sgc_status);
5783 #endif
5784 }
5785
5786 /* arch-tag: 6695ca10-e3c5-4c2c-8bc3-ed26a7dda857
5787 (do not change this comment) */