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