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