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