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