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