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