1 /* Storage allocation and gc for GNU Emacs Lisp interpreter.
3 Copyright (C) 1985-1986, 1988, 1993-1995, 1997-2012
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
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.
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.
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/>. */
23 #define LISP_INLINE EXTERN_INLINE
26 #include <limits.h> /* For CHAR_BIT. */
37 #include "intervals.h"
39 #include "character.h"
44 #include "blockinput.h"
45 #include "syssignal.h"
46 #include "termhooks.h" /* For struct terminal. */
50 /* GC_CHECK_MARKED_OBJECTS means do sanity checks on allocated objects.
51 Doable only if GC_MARK_STACK. */
53 # undef GC_CHECK_MARKED_OBJECTS
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
60 #if (defined SYSTEM_MALLOC || defined DOUG_LEA_MALLOC \
61 || defined GC_CHECK_MARKED_OBJECTS)
62 #undef GC_MALLOC_CHECK
76 #ifdef DOUG_LEA_MALLOC
80 /* Specify maximum number of areas to mmap. It would be nice to use a
81 value that explicitly means "no limit". */
83 #define MMAP_MAX_AREAS 100000000
85 #else /* not DOUG_LEA_MALLOC */
87 /* The following come from gmalloc.c. */
89 extern size_t _bytes_used
;
90 extern size_t __malloc_extra_blocks
;
91 extern void *_malloc_internal (size_t);
92 extern void _free_internal (void *);
94 #endif /* not DOUG_LEA_MALLOC */
96 #if ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT
99 /* When GTK uses the file chooser dialog, different backends can be loaded
100 dynamically. One such a backend is the Gnome VFS backend that gets loaded
101 if you run Gnome. That backend creates several threads and also allocates
104 Also, gconf and gsettings may create several threads.
106 If Emacs sets malloc hooks (! SYSTEM_MALLOC) and the emacs_blocked_*
107 functions below are called from malloc, there is a chance that one
108 of these threads preempts the Emacs main thread and the hook variables
109 end up in an inconsistent state. So we have a mutex to prevent that (note
110 that the backend handles concurrent access to malloc within its own threads
111 but Emacs code running in the main thread is not included in that control).
113 When UNBLOCK_INPUT is called, reinvoke_input_signal may be called. If this
114 happens in one of the backend threads we will have two threads that tries
115 to run Emacs code at once, and the code is not prepared for that.
116 To prevent that, we only call BLOCK/UNBLOCK from the main thread. */
118 static pthread_mutex_t alloc_mutex
;
120 #define BLOCK_INPUT_ALLOC \
123 if (pthread_equal (pthread_self (), main_thread)) \
125 pthread_mutex_lock (&alloc_mutex); \
128 #define UNBLOCK_INPUT_ALLOC \
131 pthread_mutex_unlock (&alloc_mutex); \
132 if (pthread_equal (pthread_self (), main_thread)) \
137 #else /* ! defined HAVE_PTHREAD */
139 #define BLOCK_INPUT_ALLOC BLOCK_INPUT
140 #define UNBLOCK_INPUT_ALLOC UNBLOCK_INPUT
142 #endif /* ! defined HAVE_PTHREAD */
143 #endif /* ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT */
145 /* Mark, unmark, query mark bit of a Lisp string. S must be a pointer
146 to a struct Lisp_String. */
148 #define MARK_STRING(S) ((S)->size |= ARRAY_MARK_FLAG)
149 #define UNMARK_STRING(S) ((S)->size &= ~ARRAY_MARK_FLAG)
150 #define STRING_MARKED_P(S) (((S)->size & ARRAY_MARK_FLAG) != 0)
152 #define VECTOR_MARK(V) ((V)->header.size |= ARRAY_MARK_FLAG)
153 #define VECTOR_UNMARK(V) ((V)->header.size &= ~ARRAY_MARK_FLAG)
154 #define VECTOR_MARKED_P(V) (((V)->header.size & ARRAY_MARK_FLAG) != 0)
156 /* Default value of gc_cons_threshold (see below). */
158 #define GC_DEFAULT_THRESHOLD (100000 * word_size)
160 /* Global variables. */
161 struct emacs_globals globals
;
163 /* Number of bytes of consing done since the last gc. */
165 EMACS_INT consing_since_gc
;
167 /* Similar minimum, computed from Vgc_cons_percentage. */
169 EMACS_INT gc_relative_threshold
;
171 /* Minimum number of bytes of consing since GC before next GC,
172 when memory is full. */
174 EMACS_INT memory_full_cons_threshold
;
176 /* Nonzero during GC. */
180 /* Nonzero means abort if try to GC.
181 This is for code which is written on the assumption that
182 no GC will happen, so as to verify that assumption. */
186 /* Number of live and free conses etc. */
188 static EMACS_INT total_conses
, total_markers
, total_symbols
, total_buffers
;
189 static EMACS_INT total_free_conses
, total_free_markers
, total_free_symbols
;
190 static EMACS_INT total_free_floats
, total_floats
;
192 /* Points to memory space allocated as "spare", to be freed if we run
193 out of memory. We keep one large block, four cons-blocks, and
194 two string blocks. */
196 static char *spare_memory
[7];
198 /* Amount of spare memory to keep in large reserve block, or to see
199 whether this much is available when malloc fails on a larger request. */
201 #define SPARE_MEMORY (1 << 14)
203 /* Number of extra blocks malloc should get when it needs more core. */
205 static int malloc_hysteresis
;
207 /* Initialize it to a nonzero value to force it into data space
208 (rather than bss space). That way unexec will remap it into text
209 space (pure), on some systems. We have not implemented the
210 remapping on more recent systems because this is less important
211 nowadays than in the days of small memories and timesharing. */
213 EMACS_INT pure
[(PURESIZE
+ sizeof (EMACS_INT
) - 1) / sizeof (EMACS_INT
)] = {1,};
214 #define PUREBEG (char *) pure
216 /* Pointer to the pure area, and its size. */
218 static char *purebeg
;
219 static ptrdiff_t pure_size
;
221 /* Number of bytes of pure storage used before pure storage overflowed.
222 If this is non-zero, this implies that an overflow occurred. */
224 static ptrdiff_t pure_bytes_used_before_overflow
;
226 /* Value is non-zero if P points into pure space. */
228 #define PURE_POINTER_P(P) \
229 ((uintptr_t) (P) - (uintptr_t) purebeg <= pure_size)
231 /* Index in pure at which next pure Lisp object will be allocated.. */
233 static ptrdiff_t pure_bytes_used_lisp
;
235 /* Number of bytes allocated for non-Lisp objects in pure storage. */
237 static ptrdiff_t pure_bytes_used_non_lisp
;
239 /* If nonzero, this is a warning delivered by malloc and not yet
242 const char *pending_malloc_warning
;
244 /* Maximum amount of C stack to save when a GC happens. */
246 #ifndef MAX_SAVE_STACK
247 #define MAX_SAVE_STACK 16000
250 /* Buffer in which we save a copy of the C stack at each GC. */
252 #if MAX_SAVE_STACK > 0
253 static char *stack_copy
;
254 static ptrdiff_t stack_copy_size
;
257 static Lisp_Object Qstring_bytes
, Qvector_slots
, Qheap
;
258 static Lisp_Object Qgc_cons_threshold
;
259 Lisp_Object Qchar_table_extra_slots
;
261 /* Hook run after GC has finished. */
263 static Lisp_Object Qpost_gc_hook
;
265 static void mark_terminals (void);
266 static void gc_sweep (void);
267 static Lisp_Object
make_pure_vector (ptrdiff_t);
268 static void mark_glyph_matrix (struct glyph_matrix
*);
269 static void mark_face_cache (struct face_cache
*);
271 #if !defined REL_ALLOC || defined SYSTEM_MALLOC
272 static void refill_memory_reserve (void);
274 static struct Lisp_String
*allocate_string (void);
275 static void compact_small_strings (void);
276 static void free_large_strings (void);
277 static void sweep_strings (void);
278 static void free_misc (Lisp_Object
);
279 extern Lisp_Object
which_symbols (Lisp_Object
, EMACS_INT
) EXTERNALLY_VISIBLE
;
281 /* When scanning the C stack for live Lisp objects, Emacs keeps track
282 of what memory allocated via lisp_malloc is intended for what
283 purpose. This enumeration specifies the type of memory. */
294 /* We used to keep separate mem_types for subtypes of vectors such as
295 process, hash_table, frame, terminal, and window, but we never made
296 use of the distinction, so it only caused source-code complexity
297 and runtime slowdown. Minor but pointless. */
299 /* Special type to denote vector blocks. */
300 MEM_TYPE_VECTOR_BLOCK
303 static void *lisp_malloc (size_t, enum mem_type
);
306 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
308 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
309 #include <stdio.h> /* For fprintf. */
312 /* A unique object in pure space used to make some Lisp objects
313 on free lists recognizable in O(1). */
315 static Lisp_Object Vdead
;
316 #define DEADP(x) EQ (x, Vdead)
318 #ifdef GC_MALLOC_CHECK
320 enum mem_type allocated_mem_type
;
322 #endif /* GC_MALLOC_CHECK */
324 /* A node in the red-black tree describing allocated memory containing
325 Lisp data. Each such block is recorded with its start and end
326 address when it is allocated, and removed from the tree when it
329 A red-black tree is a balanced binary tree with the following
332 1. Every node is either red or black.
333 2. Every leaf is black.
334 3. If a node is red, then both of its children are black.
335 4. Every simple path from a node to a descendant leaf contains
336 the same number of black nodes.
337 5. The root is always black.
339 When nodes are inserted into the tree, or deleted from the tree,
340 the tree is "fixed" so that these properties are always true.
342 A red-black tree with N internal nodes has height at most 2
343 log(N+1). Searches, insertions and deletions are done in O(log N).
344 Please see a text book about data structures for a detailed
345 description of red-black trees. Any book worth its salt should
350 /* Children of this node. These pointers are never NULL. When there
351 is no child, the value is MEM_NIL, which points to a dummy node. */
352 struct mem_node
*left
, *right
;
354 /* The parent of this node. In the root node, this is NULL. */
355 struct mem_node
*parent
;
357 /* Start and end of allocated region. */
361 enum {MEM_BLACK
, MEM_RED
} color
;
367 /* Base address of stack. Set in main. */
369 Lisp_Object
*stack_base
;
371 /* Root of the tree describing allocated Lisp memory. */
373 static struct mem_node
*mem_root
;
375 /* Lowest and highest known address in the heap. */
377 static void *min_heap_address
, *max_heap_address
;
379 /* Sentinel node of the tree. */
381 static struct mem_node mem_z
;
382 #define MEM_NIL &mem_z
384 static struct Lisp_Vector
*allocate_vectorlike (ptrdiff_t);
385 static void lisp_free (void *);
386 static void mark_stack (void);
387 static int live_vector_p (struct mem_node
*, void *);
388 static int live_buffer_p (struct mem_node
*, void *);
389 static int live_string_p (struct mem_node
*, void *);
390 static int live_cons_p (struct mem_node
*, void *);
391 static int live_symbol_p (struct mem_node
*, void *);
392 static int live_float_p (struct mem_node
*, void *);
393 static int live_misc_p (struct mem_node
*, void *);
394 static void mark_maybe_object (Lisp_Object
);
395 static void mark_memory (void *, void *);
396 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
397 static void mem_init (void);
398 static struct mem_node
*mem_insert (void *, void *, enum mem_type
);
399 static void mem_insert_fixup (struct mem_node
*);
401 static void mem_rotate_left (struct mem_node
*);
402 static void mem_rotate_right (struct mem_node
*);
403 static void mem_delete (struct mem_node
*);
404 static void mem_delete_fixup (struct mem_node
*);
405 static inline struct mem_node
*mem_find (void *);
408 #if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
409 static void check_gcpros (void);
412 #endif /* GC_MARK_STACK || GC_MALLOC_CHECK */
418 /* Recording what needs to be marked for gc. */
420 struct gcpro
*gcprolist
;
422 /* Addresses of staticpro'd variables. Initialize it to a nonzero
423 value; otherwise some compilers put it into BSS. */
425 #define NSTATICS 0x650
426 static Lisp_Object
*staticvec
[NSTATICS
] = {&Vpurify_flag
};
428 /* Index of next unused slot in staticvec. */
430 static int staticidx
;
432 static void *pure_alloc (size_t, int);
435 /* Value is SZ rounded up to the next multiple of ALIGNMENT.
436 ALIGNMENT must be a power of 2. */
438 #define ALIGN(ptr, ALIGNMENT) \
439 ((void *) (((uintptr_t) (ptr) + (ALIGNMENT) - 1) \
440 & ~ ((ALIGNMENT) - 1)))
444 /************************************************************************
446 ************************************************************************/
448 /* Function malloc calls this if it finds we are near exhausting storage. */
451 malloc_warning (const char *str
)
453 pending_malloc_warning
= str
;
457 /* Display an already-pending malloc warning. */
460 display_malloc_warning (void)
462 call3 (intern ("display-warning"),
464 build_string (pending_malloc_warning
),
465 intern ("emergency"));
466 pending_malloc_warning
= 0;
469 /* Called if we can't allocate relocatable space for a buffer. */
472 buffer_memory_full (ptrdiff_t nbytes
)
474 /* If buffers use the relocating allocator, no need to free
475 spare_memory, because we may have plenty of malloc space left
476 that we could get, and if we don't, the malloc that fails will
477 itself cause spare_memory to be freed. If buffers don't use the
478 relocating allocator, treat this like any other failing
482 memory_full (nbytes
);
485 /* This used to call error, but if we've run out of memory, we could
486 get infinite recursion trying to build the string. */
487 xsignal (Qnil
, Vmemory_signal_data
);
490 /* A common multiple of the positive integers A and B. Ideally this
491 would be the least common multiple, but there's no way to do that
492 as a constant expression in C, so do the best that we can easily do. */
493 #define COMMON_MULTIPLE(a, b) \
494 ((a) % (b) == 0 ? (a) : (b) % (a) == 0 ? (b) : (a) * (b))
496 #ifndef XMALLOC_OVERRUN_CHECK
497 #define XMALLOC_OVERRUN_CHECK_OVERHEAD 0
500 /* Check for overrun in malloc'ed buffers by wrapping a header and trailer
503 The header consists of XMALLOC_OVERRUN_CHECK_SIZE fixed bytes
504 followed by XMALLOC_OVERRUN_SIZE_SIZE bytes containing the original
505 block size in little-endian order. The trailer consists of
506 XMALLOC_OVERRUN_CHECK_SIZE fixed bytes.
508 The header is used to detect whether this block has been allocated
509 through these functions, as some low-level libc functions may
510 bypass the malloc hooks. */
512 #define XMALLOC_OVERRUN_CHECK_SIZE 16
513 #define XMALLOC_OVERRUN_CHECK_OVERHEAD \
514 (2 * XMALLOC_OVERRUN_CHECK_SIZE + XMALLOC_OVERRUN_SIZE_SIZE)
516 /* Define XMALLOC_OVERRUN_SIZE_SIZE so that (1) it's large enough to
517 hold a size_t value and (2) the header size is a multiple of the
518 alignment that Emacs needs for C types and for USE_LSB_TAG. */
519 #define XMALLOC_BASE_ALIGNMENT \
520 alignof (union { long double d; intmax_t i; void *p; })
523 # define XMALLOC_HEADER_ALIGNMENT \
524 COMMON_MULTIPLE (GCALIGNMENT, XMALLOC_BASE_ALIGNMENT)
526 # define XMALLOC_HEADER_ALIGNMENT XMALLOC_BASE_ALIGNMENT
528 #define XMALLOC_OVERRUN_SIZE_SIZE \
529 (((XMALLOC_OVERRUN_CHECK_SIZE + sizeof (size_t) \
530 + XMALLOC_HEADER_ALIGNMENT - 1) \
531 / XMALLOC_HEADER_ALIGNMENT * XMALLOC_HEADER_ALIGNMENT) \
532 - XMALLOC_OVERRUN_CHECK_SIZE)
534 static char const xmalloc_overrun_check_header
[XMALLOC_OVERRUN_CHECK_SIZE
] =
535 { '\x9a', '\x9b', '\xae', '\xaf',
536 '\xbf', '\xbe', '\xce', '\xcf',
537 '\xea', '\xeb', '\xec', '\xed',
538 '\xdf', '\xde', '\x9c', '\x9d' };
540 static char const xmalloc_overrun_check_trailer
[XMALLOC_OVERRUN_CHECK_SIZE
] =
541 { '\xaa', '\xab', '\xac', '\xad',
542 '\xba', '\xbb', '\xbc', '\xbd',
543 '\xca', '\xcb', '\xcc', '\xcd',
544 '\xda', '\xdb', '\xdc', '\xdd' };
546 /* Insert and extract the block size in the header. */
549 xmalloc_put_size (unsigned char *ptr
, size_t size
)
552 for (i
= 0; i
< XMALLOC_OVERRUN_SIZE_SIZE
; i
++)
554 *--ptr
= size
& ((1 << CHAR_BIT
) - 1);
560 xmalloc_get_size (unsigned char *ptr
)
564 ptr
-= XMALLOC_OVERRUN_SIZE_SIZE
;
565 for (i
= 0; i
< XMALLOC_OVERRUN_SIZE_SIZE
; i
++)
574 /* The call depth in overrun_check functions. For example, this might happen:
576 overrun_check_malloc()
577 -> malloc -> (via hook)_-> emacs_blocked_malloc
578 -> overrun_check_malloc
579 call malloc (hooks are NULL, so real malloc is called).
580 malloc returns 10000.
581 add overhead, return 10016.
582 <- (back in overrun_check_malloc)
583 add overhead again, return 10032
584 xmalloc returns 10032.
589 overrun_check_free(10032)
591 free(10016) <- crash, because 10000 is the original pointer. */
593 static ptrdiff_t check_depth
;
595 /* Like malloc, but wraps allocated block with header and trailer. */
598 overrun_check_malloc (size_t size
)
600 register unsigned char *val
;
601 int overhead
= ++check_depth
== 1 ? XMALLOC_OVERRUN_CHECK_OVERHEAD
: 0;
602 if (SIZE_MAX
- overhead
< size
)
605 val
= malloc (size
+ overhead
);
606 if (val
&& check_depth
== 1)
608 memcpy (val
, xmalloc_overrun_check_header
, XMALLOC_OVERRUN_CHECK_SIZE
);
609 val
+= XMALLOC_OVERRUN_CHECK_SIZE
+ XMALLOC_OVERRUN_SIZE_SIZE
;
610 xmalloc_put_size (val
, size
);
611 memcpy (val
+ size
, xmalloc_overrun_check_trailer
,
612 XMALLOC_OVERRUN_CHECK_SIZE
);
619 /* Like realloc, but checks old block for overrun, and wraps new block
620 with header and trailer. */
623 overrun_check_realloc (void *block
, size_t size
)
625 register unsigned char *val
= (unsigned char *) block
;
626 int overhead
= ++check_depth
== 1 ? XMALLOC_OVERRUN_CHECK_OVERHEAD
: 0;
627 if (SIZE_MAX
- overhead
< size
)
632 && memcmp (xmalloc_overrun_check_header
,
633 val
- XMALLOC_OVERRUN_CHECK_SIZE
- XMALLOC_OVERRUN_SIZE_SIZE
,
634 XMALLOC_OVERRUN_CHECK_SIZE
) == 0)
636 size_t osize
= xmalloc_get_size (val
);
637 if (memcmp (xmalloc_overrun_check_trailer
, val
+ osize
,
638 XMALLOC_OVERRUN_CHECK_SIZE
))
640 memset (val
+ osize
, 0, XMALLOC_OVERRUN_CHECK_SIZE
);
641 val
-= XMALLOC_OVERRUN_CHECK_SIZE
+ XMALLOC_OVERRUN_SIZE_SIZE
;
642 memset (val
, 0, XMALLOC_OVERRUN_CHECK_SIZE
+ XMALLOC_OVERRUN_SIZE_SIZE
);
645 val
= realloc (val
, size
+ overhead
);
647 if (val
&& check_depth
== 1)
649 memcpy (val
, xmalloc_overrun_check_header
, XMALLOC_OVERRUN_CHECK_SIZE
);
650 val
+= XMALLOC_OVERRUN_CHECK_SIZE
+ XMALLOC_OVERRUN_SIZE_SIZE
;
651 xmalloc_put_size (val
, size
);
652 memcpy (val
+ size
, xmalloc_overrun_check_trailer
,
653 XMALLOC_OVERRUN_CHECK_SIZE
);
659 /* Like free, but checks block for overrun. */
662 overrun_check_free (void *block
)
664 unsigned char *val
= (unsigned char *) block
;
669 && memcmp (xmalloc_overrun_check_header
,
670 val
- XMALLOC_OVERRUN_CHECK_SIZE
- XMALLOC_OVERRUN_SIZE_SIZE
,
671 XMALLOC_OVERRUN_CHECK_SIZE
) == 0)
673 size_t osize
= xmalloc_get_size (val
);
674 if (memcmp (xmalloc_overrun_check_trailer
, val
+ osize
,
675 XMALLOC_OVERRUN_CHECK_SIZE
))
677 #ifdef XMALLOC_CLEAR_FREE_MEMORY
678 val
-= XMALLOC_OVERRUN_CHECK_SIZE
+ XMALLOC_OVERRUN_SIZE_SIZE
;
679 memset (val
, 0xff, osize
+ XMALLOC_OVERRUN_CHECK_OVERHEAD
);
681 memset (val
+ osize
, 0, XMALLOC_OVERRUN_CHECK_SIZE
);
682 val
-= XMALLOC_OVERRUN_CHECK_SIZE
+ XMALLOC_OVERRUN_SIZE_SIZE
;
683 memset (val
, 0, XMALLOC_OVERRUN_CHECK_SIZE
+ XMALLOC_OVERRUN_SIZE_SIZE
);
694 #define malloc overrun_check_malloc
695 #define realloc overrun_check_realloc
696 #define free overrun_check_free
700 /* When using SYNC_INPUT, we don't call malloc from a signal handler, so
701 there's no need to block input around malloc. */
702 #define MALLOC_BLOCK_INPUT ((void)0)
703 #define MALLOC_UNBLOCK_INPUT ((void)0)
705 #define MALLOC_BLOCK_INPUT BLOCK_INPUT
706 #define MALLOC_UNBLOCK_INPUT UNBLOCK_INPUT
709 /* Like malloc but check for no memory and block interrupt input.. */
712 xmalloc (size_t size
)
718 MALLOC_UNBLOCK_INPUT
;
725 /* Like the above, but zeroes out the memory just allocated. */
728 xzalloc (size_t size
)
734 MALLOC_UNBLOCK_INPUT
;
738 memset (val
, 0, size
);
742 /* Like realloc but check for no memory and block interrupt input.. */
745 xrealloc (void *block
, size_t size
)
750 /* We must call malloc explicitly when BLOCK is 0, since some
751 reallocs don't do this. */
755 val
= realloc (block
, size
);
756 MALLOC_UNBLOCK_INPUT
;
764 /* Like free but block interrupt input. */
773 MALLOC_UNBLOCK_INPUT
;
774 /* We don't call refill_memory_reserve here
775 because that duplicates doing so in emacs_blocked_free
776 and the criterion should go there. */
780 /* Other parts of Emacs pass large int values to allocator functions
781 expecting ptrdiff_t. This is portable in practice, but check it to
783 verify (INT_MAX
<= PTRDIFF_MAX
);
786 /* Allocate an array of NITEMS items, each of size ITEM_SIZE.
787 Signal an error on memory exhaustion, and block interrupt input. */
790 xnmalloc (ptrdiff_t nitems
, ptrdiff_t item_size
)
792 eassert (0 <= nitems
&& 0 < item_size
);
793 if (min (PTRDIFF_MAX
, SIZE_MAX
) / item_size
< nitems
)
794 memory_full (SIZE_MAX
);
795 return xmalloc (nitems
* item_size
);
799 /* Reallocate an array PA to make it of NITEMS items, each of size ITEM_SIZE.
800 Signal an error on memory exhaustion, and block interrupt input. */
803 xnrealloc (void *pa
, ptrdiff_t nitems
, ptrdiff_t item_size
)
805 eassert (0 <= nitems
&& 0 < item_size
);
806 if (min (PTRDIFF_MAX
, SIZE_MAX
) / item_size
< nitems
)
807 memory_full (SIZE_MAX
);
808 return xrealloc (pa
, nitems
* item_size
);
812 /* Grow PA, which points to an array of *NITEMS items, and return the
813 location of the reallocated array, updating *NITEMS to reflect its
814 new size. The new array will contain at least NITEMS_INCR_MIN more
815 items, but will not contain more than NITEMS_MAX items total.
816 ITEM_SIZE is the size of each item, in bytes.
818 ITEM_SIZE and NITEMS_INCR_MIN must be positive. *NITEMS must be
819 nonnegative. If NITEMS_MAX is -1, it is treated as if it were
822 If PA is null, then allocate a new array instead of reallocating
823 the old one. Thus, to grow an array A without saving its old
824 contents, invoke xfree (A) immediately followed by xgrowalloc (0,
827 Block interrupt input as needed. If memory exhaustion occurs, set
828 *NITEMS to zero if PA is null, and signal an error (i.e., do not
832 xpalloc (void *pa
, ptrdiff_t *nitems
, ptrdiff_t nitems_incr_min
,
833 ptrdiff_t nitems_max
, ptrdiff_t item_size
)
835 /* The approximate size to use for initial small allocation
836 requests. This is the largest "small" request for the GNU C
838 enum { DEFAULT_MXFAST
= 64 * sizeof (size_t) / 4 };
840 /* If the array is tiny, grow it to about (but no greater than)
841 DEFAULT_MXFAST bytes. Otherwise, grow it by about 50%. */
842 ptrdiff_t n
= *nitems
;
843 ptrdiff_t tiny_max
= DEFAULT_MXFAST
/ item_size
- n
;
844 ptrdiff_t half_again
= n
>> 1;
845 ptrdiff_t incr_estimate
= max (tiny_max
, half_again
);
847 /* Adjust the increment according to three constraints: NITEMS_INCR_MIN,
848 NITEMS_MAX, and what the C language can represent safely. */
849 ptrdiff_t C_language_max
= min (PTRDIFF_MAX
, SIZE_MAX
) / item_size
;
850 ptrdiff_t n_max
= (0 <= nitems_max
&& nitems_max
< C_language_max
851 ? nitems_max
: C_language_max
);
852 ptrdiff_t nitems_incr_max
= n_max
- n
;
853 ptrdiff_t incr
= max (nitems_incr_min
, min (incr_estimate
, nitems_incr_max
));
855 eassert (0 < item_size
&& 0 < nitems_incr_min
&& 0 <= n
&& -1 <= nitems_max
);
858 if (nitems_incr_max
< incr
)
859 memory_full (SIZE_MAX
);
861 pa
= xrealloc (pa
, n
* item_size
);
867 /* Like strdup, but uses xmalloc. */
870 xstrdup (const char *s
)
872 size_t len
= strlen (s
) + 1;
873 char *p
= xmalloc (len
);
879 /* Unwind for SAFE_ALLOCA */
882 safe_alloca_unwind (Lisp_Object arg
)
884 register struct Lisp_Save_Value
*p
= XSAVE_VALUE (arg
);
893 /* Return a newly allocated memory block of SIZE bytes, remembering
894 to free it when unwinding. */
896 record_xmalloc (size_t size
)
898 void *p
= xmalloc (size
);
899 record_unwind_protect (safe_alloca_unwind
, make_save_value (p
, 0));
904 /* Like malloc but used for allocating Lisp data. NBYTES is the
905 number of bytes to allocate, TYPE describes the intended use of the
906 allocated memory block (for strings, for conses, ...). */
909 void *lisp_malloc_loser EXTERNALLY_VISIBLE
;
913 lisp_malloc (size_t nbytes
, enum mem_type type
)
919 #ifdef GC_MALLOC_CHECK
920 allocated_mem_type
= type
;
923 val
= malloc (nbytes
);
926 /* If the memory just allocated cannot be addressed thru a Lisp
927 object's pointer, and it needs to be,
928 that's equivalent to running out of memory. */
929 if (val
&& type
!= MEM_TYPE_NON_LISP
)
932 XSETCONS (tem
, (char *) val
+ nbytes
- 1);
933 if ((char *) XCONS (tem
) != (char *) val
+ nbytes
- 1)
935 lisp_malloc_loser
= val
;
942 #if GC_MARK_STACK && !defined GC_MALLOC_CHECK
943 if (val
&& type
!= MEM_TYPE_NON_LISP
)
944 mem_insert (val
, (char *) val
+ nbytes
, type
);
947 MALLOC_UNBLOCK_INPUT
;
949 memory_full (nbytes
);
953 /* Free BLOCK. This must be called to free memory allocated with a
954 call to lisp_malloc. */
957 lisp_free (void *block
)
961 #if GC_MARK_STACK && !defined GC_MALLOC_CHECK
962 mem_delete (mem_find (block
));
964 MALLOC_UNBLOCK_INPUT
;
967 /***** Allocation of aligned blocks of memory to store Lisp data. *****/
969 /* The entry point is lisp_align_malloc which returns blocks of at most
970 BLOCK_BYTES and guarantees they are aligned on a BLOCK_ALIGN boundary. */
972 #if defined (HAVE_POSIX_MEMALIGN) && defined (SYSTEM_MALLOC)
973 #define USE_POSIX_MEMALIGN 1
976 /* BLOCK_ALIGN has to be a power of 2. */
977 #define BLOCK_ALIGN (1 << 10)
979 /* Padding to leave at the end of a malloc'd block. This is to give
980 malloc a chance to minimize the amount of memory wasted to alignment.
981 It should be tuned to the particular malloc library used.
982 On glibc-2.3.2, malloc never tries to align, so a padding of 0 is best.
983 posix_memalign on the other hand would ideally prefer a value of 4
984 because otherwise, there's 1020 bytes wasted between each ablocks.
985 In Emacs, testing shows that those 1020 can most of the time be
986 efficiently used by malloc to place other objects, so a value of 0 can
987 still preferable unless you have a lot of aligned blocks and virtually
989 #define BLOCK_PADDING 0
990 #define BLOCK_BYTES \
991 (BLOCK_ALIGN - sizeof (struct ablocks *) - BLOCK_PADDING)
993 /* Internal data structures and constants. */
995 #define ABLOCKS_SIZE 16
997 /* An aligned block of memory. */
1002 char payload
[BLOCK_BYTES
];
1003 struct ablock
*next_free
;
1005 /* `abase' is the aligned base of the ablocks. */
1006 /* It is overloaded to hold the virtual `busy' field that counts
1007 the number of used ablock in the parent ablocks.
1008 The first ablock has the `busy' field, the others have the `abase'
1009 field. To tell the difference, we assume that pointers will have
1010 integer values larger than 2 * ABLOCKS_SIZE. The lowest bit of `busy'
1011 is used to tell whether the real base of the parent ablocks is `abase'
1012 (if not, the word before the first ablock holds a pointer to the
1014 struct ablocks
*abase
;
1015 /* The padding of all but the last ablock is unused. The padding of
1016 the last ablock in an ablocks is not allocated. */
1018 char padding
[BLOCK_PADDING
];
1022 /* A bunch of consecutive aligned blocks. */
1025 struct ablock blocks
[ABLOCKS_SIZE
];
1028 /* Size of the block requested from malloc or posix_memalign. */
1029 #define ABLOCKS_BYTES (sizeof (struct ablocks) - BLOCK_PADDING)
1031 #define ABLOCK_ABASE(block) \
1032 (((uintptr_t) (block)->abase) <= (1 + 2 * ABLOCKS_SIZE) \
1033 ? (struct ablocks *)(block) \
1036 /* Virtual `busy' field. */
1037 #define ABLOCKS_BUSY(abase) ((abase)->blocks[0].abase)
1039 /* Pointer to the (not necessarily aligned) malloc block. */
1040 #ifdef USE_POSIX_MEMALIGN
1041 #define ABLOCKS_BASE(abase) (abase)
1043 #define ABLOCKS_BASE(abase) \
1044 (1 & (intptr_t) ABLOCKS_BUSY (abase) ? abase : ((void**)abase)[-1])
1047 /* The list of free ablock. */
1048 static struct ablock
*free_ablock
;
1050 /* Allocate an aligned block of nbytes.
1051 Alignment is on a multiple of BLOCK_ALIGN and `nbytes' has to be
1052 smaller or equal to BLOCK_BYTES. */
1054 lisp_align_malloc (size_t nbytes
, enum mem_type type
)
1057 struct ablocks
*abase
;
1059 eassert (nbytes
<= BLOCK_BYTES
);
1063 #ifdef GC_MALLOC_CHECK
1064 allocated_mem_type
= type
;
1070 intptr_t aligned
; /* int gets warning casting to 64-bit pointer. */
1072 #ifdef DOUG_LEA_MALLOC
1073 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed
1074 because mapped region contents are not preserved in
1076 mallopt (M_MMAP_MAX
, 0);
1079 #ifdef USE_POSIX_MEMALIGN
1081 int err
= posix_memalign (&base
, BLOCK_ALIGN
, ABLOCKS_BYTES
);
1087 base
= malloc (ABLOCKS_BYTES
);
1088 abase
= ALIGN (base
, BLOCK_ALIGN
);
1093 MALLOC_UNBLOCK_INPUT
;
1094 memory_full (ABLOCKS_BYTES
);
1097 aligned
= (base
== abase
);
1099 ((void**)abase
)[-1] = base
;
1101 #ifdef DOUG_LEA_MALLOC
1102 /* Back to a reasonable maximum of mmap'ed areas. */
1103 mallopt (M_MMAP_MAX
, MMAP_MAX_AREAS
);
1107 /* If the memory just allocated cannot be addressed thru a Lisp
1108 object's pointer, and it needs to be, that's equivalent to
1109 running out of memory. */
1110 if (type
!= MEM_TYPE_NON_LISP
)
1113 char *end
= (char *) base
+ ABLOCKS_BYTES
- 1;
1114 XSETCONS (tem
, end
);
1115 if ((char *) XCONS (tem
) != end
)
1117 lisp_malloc_loser
= base
;
1119 MALLOC_UNBLOCK_INPUT
;
1120 memory_full (SIZE_MAX
);
1125 /* Initialize the blocks and put them on the free list.
1126 If `base' was not properly aligned, we can't use the last block. */
1127 for (i
= 0; i
< (aligned
? ABLOCKS_SIZE
: ABLOCKS_SIZE
- 1); i
++)
1129 abase
->blocks
[i
].abase
= abase
;
1130 abase
->blocks
[i
].x
.next_free
= free_ablock
;
1131 free_ablock
= &abase
->blocks
[i
];
1133 ABLOCKS_BUSY (abase
) = (struct ablocks
*) aligned
;
1135 eassert (0 == ((uintptr_t) abase
) % BLOCK_ALIGN
);
1136 eassert (ABLOCK_ABASE (&abase
->blocks
[3]) == abase
); /* 3 is arbitrary */
1137 eassert (ABLOCK_ABASE (&abase
->blocks
[0]) == abase
);
1138 eassert (ABLOCKS_BASE (abase
) == base
);
1139 eassert (aligned
== (intptr_t) ABLOCKS_BUSY (abase
));
1142 abase
= ABLOCK_ABASE (free_ablock
);
1143 ABLOCKS_BUSY (abase
) =
1144 (struct ablocks
*) (2 + (intptr_t) ABLOCKS_BUSY (abase
));
1146 free_ablock
= free_ablock
->x
.next_free
;
1148 #if GC_MARK_STACK && !defined GC_MALLOC_CHECK
1149 if (type
!= MEM_TYPE_NON_LISP
)
1150 mem_insert (val
, (char *) val
+ nbytes
, type
);
1153 MALLOC_UNBLOCK_INPUT
;
1155 eassert (0 == ((uintptr_t) val
) % BLOCK_ALIGN
);
1160 lisp_align_free (void *block
)
1162 struct ablock
*ablock
= block
;
1163 struct ablocks
*abase
= ABLOCK_ABASE (ablock
);
1166 #if GC_MARK_STACK && !defined GC_MALLOC_CHECK
1167 mem_delete (mem_find (block
));
1169 /* Put on free list. */
1170 ablock
->x
.next_free
= free_ablock
;
1171 free_ablock
= ablock
;
1172 /* Update busy count. */
1173 ABLOCKS_BUSY (abase
)
1174 = (struct ablocks
*) (-2 + (intptr_t) ABLOCKS_BUSY (abase
));
1176 if (2 > (intptr_t) ABLOCKS_BUSY (abase
))
1177 { /* All the blocks are free. */
1178 int i
= 0, aligned
= (intptr_t) ABLOCKS_BUSY (abase
);
1179 struct ablock
**tem
= &free_ablock
;
1180 struct ablock
*atop
= &abase
->blocks
[aligned
? ABLOCKS_SIZE
: ABLOCKS_SIZE
- 1];
1184 if (*tem
>= (struct ablock
*) abase
&& *tem
< atop
)
1187 *tem
= (*tem
)->x
.next_free
;
1190 tem
= &(*tem
)->x
.next_free
;
1192 eassert ((aligned
& 1) == aligned
);
1193 eassert (i
== (aligned
? ABLOCKS_SIZE
: ABLOCKS_SIZE
- 1));
1194 #ifdef USE_POSIX_MEMALIGN
1195 eassert ((uintptr_t) ABLOCKS_BASE (abase
) % BLOCK_ALIGN
== 0);
1197 free (ABLOCKS_BASE (abase
));
1199 MALLOC_UNBLOCK_INPUT
;
1203 #ifndef SYSTEM_MALLOC
1205 /* Arranging to disable input signals while we're in malloc.
1207 This only works with GNU malloc. To help out systems which can't
1208 use GNU malloc, all the calls to malloc, realloc, and free
1209 elsewhere in the code should be inside a BLOCK_INPUT/UNBLOCK_INPUT
1210 pair; unfortunately, we have no idea what C library functions
1211 might call malloc, so we can't really protect them unless you're
1212 using GNU malloc. Fortunately, most of the major operating systems
1213 can use GNU malloc. */
1216 /* When using SYNC_INPUT, we don't call malloc from a signal handler, so
1217 there's no need to block input around malloc. */
1219 #ifndef DOUG_LEA_MALLOC
1220 extern void * (*__malloc_hook
) (size_t, const void *);
1221 extern void * (*__realloc_hook
) (void *, size_t, const void *);
1222 extern void (*__free_hook
) (void *, const void *);
1223 /* Else declared in malloc.h, perhaps with an extra arg. */
1224 #endif /* DOUG_LEA_MALLOC */
1225 static void * (*old_malloc_hook
) (size_t, const void *);
1226 static void * (*old_realloc_hook
) (void *, size_t, const void*);
1227 static void (*old_free_hook
) (void*, const void*);
1229 #ifdef DOUG_LEA_MALLOC
1230 # define BYTES_USED (mallinfo ().uordblks)
1232 # define BYTES_USED _bytes_used
1235 #ifdef GC_MALLOC_CHECK
1236 static int dont_register_blocks
;
1239 static size_t bytes_used_when_reconsidered
;
1241 /* Value of _bytes_used, when spare_memory was freed. */
1243 static size_t bytes_used_when_full
;
1245 /* This function is used as the hook for free to call. */
1248 emacs_blocked_free (void *ptr
, const void *ptr2
)
1252 #ifdef GC_MALLOC_CHECK
1258 if (m
== MEM_NIL
|| m
->start
!= ptr
)
1261 "Freeing `%p' which wasn't allocated with malloc\n", ptr
);
1266 /* fprintf (stderr, "free %p...%p (%p)\n", m->start, m->end, ptr); */
1270 #endif /* GC_MALLOC_CHECK */
1272 __free_hook
= old_free_hook
;
1275 /* If we released our reserve (due to running out of memory),
1276 and we have a fair amount free once again,
1277 try to set aside another reserve in case we run out once more. */
1278 if (! NILP (Vmemory_full
)
1279 /* Verify there is enough space that even with the malloc
1280 hysteresis this call won't run out again.
1281 The code here is correct as long as SPARE_MEMORY
1282 is substantially larger than the block size malloc uses. */
1283 && (bytes_used_when_full
1284 > ((bytes_used_when_reconsidered
= BYTES_USED
)
1285 + max (malloc_hysteresis
, 4) * SPARE_MEMORY
)))
1286 refill_memory_reserve ();
1288 __free_hook
= emacs_blocked_free
;
1289 UNBLOCK_INPUT_ALLOC
;
1293 /* This function is the malloc hook that Emacs uses. */
1296 emacs_blocked_malloc (size_t size
, const void *ptr
)
1301 __malloc_hook
= old_malloc_hook
;
1302 #ifdef DOUG_LEA_MALLOC
1303 /* Segfaults on my system. --lorentey */
1304 /* mallopt (M_TOP_PAD, malloc_hysteresis * 4096); */
1306 __malloc_extra_blocks
= malloc_hysteresis
;
1309 value
= malloc (size
);
1311 #ifdef GC_MALLOC_CHECK
1313 struct mem_node
*m
= mem_find (value
);
1316 fprintf (stderr
, "Malloc returned %p which is already in use\n",
1318 fprintf (stderr
, "Region in use is %p...%p, %td bytes, type %d\n",
1319 m
->start
, m
->end
, (char *) m
->end
- (char *) m
->start
,
1324 if (!dont_register_blocks
)
1326 mem_insert (value
, (char *) value
+ max (1, size
), allocated_mem_type
);
1327 allocated_mem_type
= MEM_TYPE_NON_LISP
;
1330 #endif /* GC_MALLOC_CHECK */
1332 __malloc_hook
= emacs_blocked_malloc
;
1333 UNBLOCK_INPUT_ALLOC
;
1335 /* fprintf (stderr, "%p malloc\n", value); */
1340 /* This function is the realloc hook that Emacs uses. */
1343 emacs_blocked_realloc (void *ptr
, size_t size
, const void *ptr2
)
1348 __realloc_hook
= old_realloc_hook
;
1350 #ifdef GC_MALLOC_CHECK
1353 struct mem_node
*m
= mem_find (ptr
);
1354 if (m
== MEM_NIL
|| m
->start
!= ptr
)
1357 "Realloc of %p which wasn't allocated with malloc\n",
1365 /* fprintf (stderr, "%p -> realloc\n", ptr); */
1367 /* Prevent malloc from registering blocks. */
1368 dont_register_blocks
= 1;
1369 #endif /* GC_MALLOC_CHECK */
1371 value
= realloc (ptr
, size
);
1373 #ifdef GC_MALLOC_CHECK
1374 dont_register_blocks
= 0;
1377 struct mem_node
*m
= mem_find (value
);
1380 fprintf (stderr
, "Realloc returns memory that is already in use\n");
1384 /* Can't handle zero size regions in the red-black tree. */
1385 mem_insert (value
, (char *) value
+ max (size
, 1), MEM_TYPE_NON_LISP
);
1388 /* fprintf (stderr, "%p <- realloc\n", value); */
1389 #endif /* GC_MALLOC_CHECK */
1391 __realloc_hook
= emacs_blocked_realloc
;
1392 UNBLOCK_INPUT_ALLOC
;
1399 /* Called from Fdump_emacs so that when the dumped Emacs starts, it has a
1400 normal malloc. Some thread implementations need this as they call
1401 malloc before main. The pthread_self call in BLOCK_INPUT_ALLOC then
1402 calls malloc because it is the first call, and we have an endless loop. */
1405 reset_malloc_hooks (void)
1407 __free_hook
= old_free_hook
;
1408 __malloc_hook
= old_malloc_hook
;
1409 __realloc_hook
= old_realloc_hook
;
1411 #endif /* HAVE_PTHREAD */
1414 /* Called from main to set up malloc to use our hooks. */
1417 uninterrupt_malloc (void)
1420 #ifdef DOUG_LEA_MALLOC
1421 pthread_mutexattr_t attr
;
1423 /* GLIBC has a faster way to do this, but let's keep it portable.
1424 This is according to the Single UNIX Specification. */
1425 pthread_mutexattr_init (&attr
);
1426 pthread_mutexattr_settype (&attr
, PTHREAD_MUTEX_RECURSIVE
);
1427 pthread_mutex_init (&alloc_mutex
, &attr
);
1428 #else /* !DOUG_LEA_MALLOC */
1429 /* Some systems such as Solaris 2.6 don't have a recursive mutex,
1430 and the bundled gmalloc.c doesn't require it. */
1431 pthread_mutex_init (&alloc_mutex
, NULL
);
1432 #endif /* !DOUG_LEA_MALLOC */
1433 #endif /* HAVE_PTHREAD */
1435 if (__free_hook
!= emacs_blocked_free
)
1436 old_free_hook
= __free_hook
;
1437 __free_hook
= emacs_blocked_free
;
1439 if (__malloc_hook
!= emacs_blocked_malloc
)
1440 old_malloc_hook
= __malloc_hook
;
1441 __malloc_hook
= emacs_blocked_malloc
;
1443 if (__realloc_hook
!= emacs_blocked_realloc
)
1444 old_realloc_hook
= __realloc_hook
;
1445 __realloc_hook
= emacs_blocked_realloc
;
1448 #endif /* not SYNC_INPUT */
1449 #endif /* not SYSTEM_MALLOC */
1453 /***********************************************************************
1455 ***********************************************************************/
1457 /* Number of intervals allocated in an interval_block structure.
1458 The 1020 is 1024 minus malloc overhead. */
1460 #define INTERVAL_BLOCK_SIZE \
1461 ((1020 - sizeof (struct interval_block *)) / sizeof (struct interval))
1463 /* Intervals are allocated in chunks in form of an interval_block
1466 struct interval_block
1468 /* Place `intervals' first, to preserve alignment. */
1469 struct interval intervals
[INTERVAL_BLOCK_SIZE
];
1470 struct interval_block
*next
;
1473 /* Current interval block. Its `next' pointer points to older
1476 static struct interval_block
*interval_block
;
1478 /* Index in interval_block above of the next unused interval
1481 static int interval_block_index
= INTERVAL_BLOCK_SIZE
;
1483 /* Number of free and live intervals. */
1485 static EMACS_INT total_free_intervals
, total_intervals
;
1487 /* List of free intervals. */
1489 static INTERVAL interval_free_list
;
1491 /* Return a new interval. */
1494 make_interval (void)
1498 /* eassert (!handling_signal); */
1502 if (interval_free_list
)
1504 val
= interval_free_list
;
1505 interval_free_list
= INTERVAL_PARENT (interval_free_list
);
1509 if (interval_block_index
== INTERVAL_BLOCK_SIZE
)
1511 struct interval_block
*newi
1512 = lisp_malloc (sizeof *newi
, MEM_TYPE_NON_LISP
);
1514 newi
->next
= interval_block
;
1515 interval_block
= newi
;
1516 interval_block_index
= 0;
1517 total_free_intervals
+= INTERVAL_BLOCK_SIZE
;
1519 val
= &interval_block
->intervals
[interval_block_index
++];
1522 MALLOC_UNBLOCK_INPUT
;
1524 consing_since_gc
+= sizeof (struct interval
);
1526 total_free_intervals
--;
1527 RESET_INTERVAL (val
);
1533 /* Mark Lisp objects in interval I. */
1536 mark_interval (register INTERVAL i
, Lisp_Object dummy
)
1538 /* Intervals should never be shared. So, if extra internal checking is
1539 enabled, GC aborts if it seems to have visited an interval twice. */
1540 eassert (!i
->gcmarkbit
);
1542 mark_object (i
->plist
);
1545 /* Mark the interval tree rooted in I. */
1547 #define MARK_INTERVAL_TREE(i) \
1549 if (i && !i->gcmarkbit) \
1550 traverse_intervals_noorder (i, mark_interval, Qnil); \
1553 /***********************************************************************
1555 ***********************************************************************/
1557 /* Lisp_Strings are allocated in string_block structures. When a new
1558 string_block is allocated, all the Lisp_Strings it contains are
1559 added to a free-list string_free_list. When a new Lisp_String is
1560 needed, it is taken from that list. During the sweep phase of GC,
1561 string_blocks that are entirely free are freed, except two which
1564 String data is allocated from sblock structures. Strings larger
1565 than LARGE_STRING_BYTES, get their own sblock, data for smaller
1566 strings is sub-allocated out of sblocks of size SBLOCK_SIZE.
1568 Sblocks consist internally of sdata structures, one for each
1569 Lisp_String. The sdata structure points to the Lisp_String it
1570 belongs to. The Lisp_String points back to the `u.data' member of
1571 its sdata structure.
1573 When a Lisp_String is freed during GC, it is put back on
1574 string_free_list, and its `data' member and its sdata's `string'
1575 pointer is set to null. The size of the string is recorded in the
1576 `u.nbytes' member of the sdata. So, sdata structures that are no
1577 longer used, can be easily recognized, and it's easy to compact the
1578 sblocks of small strings which we do in compact_small_strings. */
1580 /* Size in bytes of an sblock structure used for small strings. This
1581 is 8192 minus malloc overhead. */
1583 #define SBLOCK_SIZE 8188
1585 /* Strings larger than this are considered large strings. String data
1586 for large strings is allocated from individual sblocks. */
1588 #define LARGE_STRING_BYTES 1024
1590 /* Structure describing string memory sub-allocated from an sblock.
1591 This is where the contents of Lisp strings are stored. */
1595 /* Back-pointer to the string this sdata belongs to. If null, this
1596 structure is free, and the NBYTES member of the union below
1597 contains the string's byte size (the same value that STRING_BYTES
1598 would return if STRING were non-null). If non-null, STRING_BYTES
1599 (STRING) is the size of the data, and DATA contains the string's
1601 struct Lisp_String
*string
;
1603 #ifdef GC_CHECK_STRING_BYTES
1606 unsigned char data
[1];
1608 #define SDATA_NBYTES(S) (S)->nbytes
1609 #define SDATA_DATA(S) (S)->data
1610 #define SDATA_SELECTOR(member) member
1612 #else /* not GC_CHECK_STRING_BYTES */
1616 /* When STRING is non-null. */
1617 unsigned char data
[1];
1619 /* When STRING is null. */
1623 #define SDATA_NBYTES(S) (S)->u.nbytes
1624 #define SDATA_DATA(S) (S)->u.data
1625 #define SDATA_SELECTOR(member) u.member
1627 #endif /* not GC_CHECK_STRING_BYTES */
1629 #define SDATA_DATA_OFFSET offsetof (struct sdata, SDATA_SELECTOR (data))
1633 /* Structure describing a block of memory which is sub-allocated to
1634 obtain string data memory for strings. Blocks for small strings
1635 are of fixed size SBLOCK_SIZE. Blocks for large strings are made
1636 as large as needed. */
1641 struct sblock
*next
;
1643 /* Pointer to the next free sdata block. This points past the end
1644 of the sblock if there isn't any space left in this block. */
1645 struct sdata
*next_free
;
1647 /* Start of data. */
1648 struct sdata first_data
;
1651 /* Number of Lisp strings in a string_block structure. The 1020 is
1652 1024 minus malloc overhead. */
1654 #define STRING_BLOCK_SIZE \
1655 ((1020 - sizeof (struct string_block *)) / sizeof (struct Lisp_String))
1657 /* Structure describing a block from which Lisp_String structures
1662 /* Place `strings' first, to preserve alignment. */
1663 struct Lisp_String strings
[STRING_BLOCK_SIZE
];
1664 struct string_block
*next
;
1667 /* Head and tail of the list of sblock structures holding Lisp string
1668 data. We always allocate from current_sblock. The NEXT pointers
1669 in the sblock structures go from oldest_sblock to current_sblock. */
1671 static struct sblock
*oldest_sblock
, *current_sblock
;
1673 /* List of sblocks for large strings. */
1675 static struct sblock
*large_sblocks
;
1677 /* List of string_block structures. */
1679 static struct string_block
*string_blocks
;
1681 /* Free-list of Lisp_Strings. */
1683 static struct Lisp_String
*string_free_list
;
1685 /* Number of live and free Lisp_Strings. */
1687 static EMACS_INT total_strings
, total_free_strings
;
1689 /* Number of bytes used by live strings. */
1691 static EMACS_INT total_string_bytes
;
1693 /* Given a pointer to a Lisp_String S which is on the free-list
1694 string_free_list, return a pointer to its successor in the
1697 #define NEXT_FREE_LISP_STRING(S) (*(struct Lisp_String **) (S))
1699 /* Return a pointer to the sdata structure belonging to Lisp string S.
1700 S must be live, i.e. S->data must not be null. S->data is actually
1701 a pointer to the `u.data' member of its sdata structure; the
1702 structure starts at a constant offset in front of that. */
1704 #define SDATA_OF_STRING(S) ((struct sdata *) ((S)->data - SDATA_DATA_OFFSET))
1707 #ifdef GC_CHECK_STRING_OVERRUN
1709 /* We check for overrun in string data blocks by appending a small
1710 "cookie" after each allocated string data block, and check for the
1711 presence of this cookie during GC. */
1713 #define GC_STRING_OVERRUN_COOKIE_SIZE 4
1714 static char const string_overrun_cookie
[GC_STRING_OVERRUN_COOKIE_SIZE
] =
1715 { '\xde', '\xad', '\xbe', '\xef' };
1718 #define GC_STRING_OVERRUN_COOKIE_SIZE 0
1721 /* Value is the size of an sdata structure large enough to hold NBYTES
1722 bytes of string data. The value returned includes a terminating
1723 NUL byte, the size of the sdata structure, and padding. */
1725 #ifdef GC_CHECK_STRING_BYTES
1727 #define SDATA_SIZE(NBYTES) \
1728 ((SDATA_DATA_OFFSET \
1730 + sizeof (ptrdiff_t) - 1) \
1731 & ~(sizeof (ptrdiff_t) - 1))
1733 #else /* not GC_CHECK_STRING_BYTES */
1735 /* The 'max' reserves space for the nbytes union member even when NBYTES + 1 is
1736 less than the size of that member. The 'max' is not needed when
1737 SDATA_DATA_OFFSET is a multiple of sizeof (ptrdiff_t), because then the
1738 alignment code reserves enough space. */
1740 #define SDATA_SIZE(NBYTES) \
1741 ((SDATA_DATA_OFFSET \
1742 + (SDATA_DATA_OFFSET % sizeof (ptrdiff_t) == 0 \
1744 : max (NBYTES, sizeof (ptrdiff_t) - 1)) \
1746 + sizeof (ptrdiff_t) - 1) \
1747 & ~(sizeof (ptrdiff_t) - 1))
1749 #endif /* not GC_CHECK_STRING_BYTES */
1751 /* Extra bytes to allocate for each string. */
1753 #define GC_STRING_EXTRA (GC_STRING_OVERRUN_COOKIE_SIZE)
1755 /* Exact bound on the number of bytes in a string, not counting the
1756 terminating null. A string cannot contain more bytes than
1757 STRING_BYTES_BOUND, nor can it be so long that the size_t
1758 arithmetic in allocate_string_data would overflow while it is
1759 calculating a value to be passed to malloc. */
1760 static ptrdiff_t const STRING_BYTES_MAX
=
1761 min (STRING_BYTES_BOUND
,
1762 ((SIZE_MAX
- XMALLOC_OVERRUN_CHECK_OVERHEAD
1764 - offsetof (struct sblock
, first_data
)
1765 - SDATA_DATA_OFFSET
)
1766 & ~(sizeof (EMACS_INT
) - 1)));
1768 /* Initialize string allocation. Called from init_alloc_once. */
1773 empty_unibyte_string
= make_pure_string ("", 0, 0, 0);
1774 empty_multibyte_string
= make_pure_string ("", 0, 0, 1);
1778 #ifdef GC_CHECK_STRING_BYTES
1780 static int check_string_bytes_count
;
1782 /* Like STRING_BYTES, but with debugging check. Can be
1783 called during GC, so pay attention to the mark bit. */
1786 string_bytes (struct Lisp_String
*s
)
1789 (s
->size_byte
< 0 ? s
->size
& ~ARRAY_MARK_FLAG
: s
->size_byte
);
1791 if (!PURE_POINTER_P (s
)
1793 && nbytes
!= SDATA_NBYTES (SDATA_OF_STRING (s
)))
1798 /* Check validity of Lisp strings' string_bytes member in B. */
1801 check_sblock (struct sblock
*b
)
1803 struct sdata
*from
, *end
, *from_end
;
1807 for (from
= &b
->first_data
; from
< end
; from
= from_end
)
1809 /* Compute the next FROM here because copying below may
1810 overwrite data we need to compute it. */
1813 /* Check that the string size recorded in the string is the
1814 same as the one recorded in the sdata structure. */
1815 nbytes
= SDATA_SIZE (from
->string
? string_bytes (from
->string
)
1816 : SDATA_NBYTES (from
));
1817 from_end
= (struct sdata
*) ((char *) from
+ nbytes
+ GC_STRING_EXTRA
);
1822 /* Check validity of Lisp strings' string_bytes member. ALL_P
1823 non-zero means check all strings, otherwise check only most
1824 recently allocated strings. Used for hunting a bug. */
1827 check_string_bytes (int all_p
)
1833 for (b
= large_sblocks
; b
; b
= b
->next
)
1835 struct Lisp_String
*s
= b
->first_data
.string
;
1840 for (b
= oldest_sblock
; b
; b
= b
->next
)
1843 else if (current_sblock
)
1844 check_sblock (current_sblock
);
1847 #else /* not GC_CHECK_STRING_BYTES */
1849 #define check_string_bytes(all) ((void) 0)
1851 #endif /* GC_CHECK_STRING_BYTES */
1853 #ifdef GC_CHECK_STRING_FREE_LIST
1855 /* Walk through the string free list looking for bogus next pointers.
1856 This may catch buffer overrun from a previous string. */
1859 check_string_free_list (void)
1861 struct Lisp_String
*s
;
1863 /* Pop a Lisp_String off the free-list. */
1864 s
= string_free_list
;
1867 if ((uintptr_t) s
< 1024)
1869 s
= NEXT_FREE_LISP_STRING (s
);
1873 #define check_string_free_list()
1876 /* Return a new Lisp_String. */
1878 static struct Lisp_String
*
1879 allocate_string (void)
1881 struct Lisp_String
*s
;
1883 /* eassert (!handling_signal); */
1887 /* If the free-list is empty, allocate a new string_block, and
1888 add all the Lisp_Strings in it to the free-list. */
1889 if (string_free_list
== NULL
)
1891 struct string_block
*b
= lisp_malloc (sizeof *b
, MEM_TYPE_STRING
);
1894 b
->next
= string_blocks
;
1897 for (i
= STRING_BLOCK_SIZE
- 1; i
>= 0; --i
)
1900 /* Every string on a free list should have NULL data pointer. */
1902 NEXT_FREE_LISP_STRING (s
) = string_free_list
;
1903 string_free_list
= s
;
1906 total_free_strings
+= STRING_BLOCK_SIZE
;
1909 check_string_free_list ();
1911 /* Pop a Lisp_String off the free-list. */
1912 s
= string_free_list
;
1913 string_free_list
= NEXT_FREE_LISP_STRING (s
);
1915 MALLOC_UNBLOCK_INPUT
;
1917 --total_free_strings
;
1920 consing_since_gc
+= sizeof *s
;
1922 #ifdef GC_CHECK_STRING_BYTES
1923 if (!noninteractive
)
1925 if (++check_string_bytes_count
== 200)
1927 check_string_bytes_count
= 0;
1928 check_string_bytes (1);
1931 check_string_bytes (0);
1933 #endif /* GC_CHECK_STRING_BYTES */
1939 /* Set up Lisp_String S for holding NCHARS characters, NBYTES bytes,
1940 plus a NUL byte at the end. Allocate an sdata structure for S, and
1941 set S->data to its `u.data' member. Store a NUL byte at the end of
1942 S->data. Set S->size to NCHARS and S->size_byte to NBYTES. Free
1943 S->data if it was initially non-null. */
1946 allocate_string_data (struct Lisp_String
*s
,
1947 EMACS_INT nchars
, EMACS_INT nbytes
)
1949 struct sdata
*data
, *old_data
;
1951 ptrdiff_t needed
, old_nbytes
;
1953 if (STRING_BYTES_MAX
< nbytes
)
1956 /* Determine the number of bytes needed to store NBYTES bytes
1958 needed
= SDATA_SIZE (nbytes
);
1961 old_data
= SDATA_OF_STRING (s
);
1962 old_nbytes
= STRING_BYTES (s
);
1969 if (nbytes
> LARGE_STRING_BYTES
)
1971 size_t size
= offsetof (struct sblock
, first_data
) + needed
;
1973 #ifdef DOUG_LEA_MALLOC
1974 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed
1975 because mapped region contents are not preserved in
1978 In case you think of allowing it in a dumped Emacs at the
1979 cost of not being able to re-dump, there's another reason:
1980 mmap'ed data typically have an address towards the top of the
1981 address space, which won't fit into an EMACS_INT (at least on
1982 32-bit systems with the current tagging scheme). --fx */
1983 mallopt (M_MMAP_MAX
, 0);
1986 b
= lisp_malloc (size
+ GC_STRING_EXTRA
, MEM_TYPE_NON_LISP
);
1988 #ifdef DOUG_LEA_MALLOC
1989 /* Back to a reasonable maximum of mmap'ed areas. */
1990 mallopt (M_MMAP_MAX
, MMAP_MAX_AREAS
);
1993 b
->next_free
= &b
->first_data
;
1994 b
->first_data
.string
= NULL
;
1995 b
->next
= large_sblocks
;
1998 else if (current_sblock
== NULL
1999 || (((char *) current_sblock
+ SBLOCK_SIZE
2000 - (char *) current_sblock
->next_free
)
2001 < (needed
+ GC_STRING_EXTRA
)))
2003 /* Not enough room in the current sblock. */
2004 b
= lisp_malloc (SBLOCK_SIZE
, MEM_TYPE_NON_LISP
);
2005 b
->next_free
= &b
->first_data
;
2006 b
->first_data
.string
= NULL
;
2010 current_sblock
->next
= b
;
2018 data
= b
->next_free
;
2019 b
->next_free
= (struct sdata
*) ((char *) data
+ needed
+ GC_STRING_EXTRA
);
2021 MALLOC_UNBLOCK_INPUT
;
2024 s
->data
= SDATA_DATA (data
);
2025 #ifdef GC_CHECK_STRING_BYTES
2026 SDATA_NBYTES (data
) = nbytes
;
2029 s
->size_byte
= nbytes
;
2030 s
->data
[nbytes
] = '\0';
2031 #ifdef GC_CHECK_STRING_OVERRUN
2032 memcpy ((char *) data
+ needed
, string_overrun_cookie
,
2033 GC_STRING_OVERRUN_COOKIE_SIZE
);
2036 /* Note that Faset may call to this function when S has already data
2037 assigned. In this case, mark data as free by setting it's string
2038 back-pointer to null, and record the size of the data in it. */
2041 SDATA_NBYTES (old_data
) = old_nbytes
;
2042 old_data
->string
= NULL
;
2045 consing_since_gc
+= needed
;
2049 /* Sweep and compact strings. */
2052 sweep_strings (void)
2054 struct string_block
*b
, *next
;
2055 struct string_block
*live_blocks
= NULL
;
2057 string_free_list
= NULL
;
2058 total_strings
= total_free_strings
= 0;
2059 total_string_bytes
= 0;
2061 /* Scan strings_blocks, free Lisp_Strings that aren't marked. */
2062 for (b
= string_blocks
; b
; b
= next
)
2065 struct Lisp_String
*free_list_before
= string_free_list
;
2069 for (i
= 0; i
< STRING_BLOCK_SIZE
; ++i
)
2071 struct Lisp_String
*s
= b
->strings
+ i
;
2075 /* String was not on free-list before. */
2076 if (STRING_MARKED_P (s
))
2078 /* String is live; unmark it and its intervals. */
2081 /* Do not use string_(set|get)_intervals here. */
2082 s
->intervals
= balance_intervals (s
->intervals
);
2085 total_string_bytes
+= STRING_BYTES (s
);
2089 /* String is dead. Put it on the free-list. */
2090 struct sdata
*data
= SDATA_OF_STRING (s
);
2092 /* Save the size of S in its sdata so that we know
2093 how large that is. Reset the sdata's string
2094 back-pointer so that we know it's free. */
2095 #ifdef GC_CHECK_STRING_BYTES
2096 if (string_bytes (s
) != SDATA_NBYTES (data
))
2099 data
->u
.nbytes
= STRING_BYTES (s
);
2101 data
->string
= NULL
;
2103 /* Reset the strings's `data' member so that we
2107 /* Put the string on the free-list. */
2108 NEXT_FREE_LISP_STRING (s
) = string_free_list
;
2109 string_free_list
= s
;
2115 /* S was on the free-list before. Put it there again. */
2116 NEXT_FREE_LISP_STRING (s
) = string_free_list
;
2117 string_free_list
= s
;
2122 /* Free blocks that contain free Lisp_Strings only, except
2123 the first two of them. */
2124 if (nfree
== STRING_BLOCK_SIZE
2125 && total_free_strings
> STRING_BLOCK_SIZE
)
2128 string_free_list
= free_list_before
;
2132 total_free_strings
+= nfree
;
2133 b
->next
= live_blocks
;
2138 check_string_free_list ();
2140 string_blocks
= live_blocks
;
2141 free_large_strings ();
2142 compact_small_strings ();
2144 check_string_free_list ();
2148 /* Free dead large strings. */
2151 free_large_strings (void)
2153 struct sblock
*b
, *next
;
2154 struct sblock
*live_blocks
= NULL
;
2156 for (b
= large_sblocks
; b
; b
= next
)
2160 if (b
->first_data
.string
== NULL
)
2164 b
->next
= live_blocks
;
2169 large_sblocks
= live_blocks
;
2173 /* Compact data of small strings. Free sblocks that don't contain
2174 data of live strings after compaction. */
2177 compact_small_strings (void)
2179 struct sblock
*b
, *tb
, *next
;
2180 struct sdata
*from
, *to
, *end
, *tb_end
;
2181 struct sdata
*to_end
, *from_end
;
2183 /* TB is the sblock we copy to, TO is the sdata within TB we copy
2184 to, and TB_END is the end of TB. */
2186 tb_end
= (struct sdata
*) ((char *) tb
+ SBLOCK_SIZE
);
2187 to
= &tb
->first_data
;
2189 /* Step through the blocks from the oldest to the youngest. We
2190 expect that old blocks will stabilize over time, so that less
2191 copying will happen this way. */
2192 for (b
= oldest_sblock
; b
; b
= b
->next
)
2195 eassert ((char *) end
<= (char *) b
+ SBLOCK_SIZE
);
2197 for (from
= &b
->first_data
; from
< end
; from
= from_end
)
2199 /* Compute the next FROM here because copying below may
2200 overwrite data we need to compute it. */
2202 struct Lisp_String
*s
= from
->string
;
2204 #ifdef GC_CHECK_STRING_BYTES
2205 /* Check that the string size recorded in the string is the
2206 same as the one recorded in the sdata structure. */
2207 if (s
&& string_bytes (s
) != SDATA_NBYTES (from
))
2209 #endif /* GC_CHECK_STRING_BYTES */
2211 nbytes
= s
? STRING_BYTES (s
) : SDATA_NBYTES (from
);
2212 eassert (nbytes
<= LARGE_STRING_BYTES
);
2214 nbytes
= SDATA_SIZE (nbytes
);
2215 from_end
= (struct sdata
*) ((char *) from
+ nbytes
+ GC_STRING_EXTRA
);
2217 #ifdef GC_CHECK_STRING_OVERRUN
2218 if (memcmp (string_overrun_cookie
,
2219 (char *) from_end
- GC_STRING_OVERRUN_COOKIE_SIZE
,
2220 GC_STRING_OVERRUN_COOKIE_SIZE
))
2224 /* Non-NULL S means it's alive. Copy its data. */
2227 /* If TB is full, proceed with the next sblock. */
2228 to_end
= (struct sdata
*) ((char *) to
+ nbytes
+ GC_STRING_EXTRA
);
2229 if (to_end
> tb_end
)
2233 tb_end
= (struct sdata
*) ((char *) tb
+ SBLOCK_SIZE
);
2234 to
= &tb
->first_data
;
2235 to_end
= (struct sdata
*) ((char *) to
+ nbytes
+ GC_STRING_EXTRA
);
2238 /* Copy, and update the string's `data' pointer. */
2241 eassert (tb
!= b
|| to
< from
);
2242 memmove (to
, from
, nbytes
+ GC_STRING_EXTRA
);
2243 to
->string
->data
= SDATA_DATA (to
);
2246 /* Advance past the sdata we copied to. */
2252 /* The rest of the sblocks following TB don't contain live data, so
2253 we can free them. */
2254 for (b
= tb
->next
; b
; b
= next
)
2262 current_sblock
= tb
;
2266 string_overflow (void)
2268 error ("Maximum string size exceeded");
2271 DEFUN ("make-string", Fmake_string
, Smake_string
, 2, 2, 0,
2272 doc
: /* Return a newly created string of length LENGTH, with INIT in each element.
2273 LENGTH must be an integer.
2274 INIT must be an integer that represents a character. */)
2275 (Lisp_Object length
, Lisp_Object init
)
2277 register Lisp_Object val
;
2278 register unsigned char *p
, *end
;
2282 CHECK_NATNUM (length
);
2283 CHECK_CHARACTER (init
);
2285 c
= XFASTINT (init
);
2286 if (ASCII_CHAR_P (c
))
2288 nbytes
= XINT (length
);
2289 val
= make_uninit_string (nbytes
);
2291 end
= p
+ SCHARS (val
);
2297 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
2298 int len
= CHAR_STRING (c
, str
);
2299 EMACS_INT string_len
= XINT (length
);
2301 if (string_len
> STRING_BYTES_MAX
/ len
)
2303 nbytes
= len
* string_len
;
2304 val
= make_uninit_multibyte_string (string_len
, nbytes
);
2309 memcpy (p
, str
, len
);
2319 DEFUN ("make-bool-vector", Fmake_bool_vector
, Smake_bool_vector
, 2, 2, 0,
2320 doc
: /* Return a new bool-vector of length LENGTH, using INIT for each element.
2321 LENGTH must be a number. INIT matters only in whether it is t or nil. */)
2322 (Lisp_Object length
, Lisp_Object init
)
2324 register Lisp_Object val
;
2325 struct Lisp_Bool_Vector
*p
;
2326 ptrdiff_t length_in_chars
;
2327 EMACS_INT length_in_elts
;
2329 int extra_bool_elts
= ((bool_header_size
- header_size
+ word_size
- 1)
2332 CHECK_NATNUM (length
);
2334 bits_per_value
= sizeof (EMACS_INT
) * BOOL_VECTOR_BITS_PER_CHAR
;
2336 length_in_elts
= (XFASTINT (length
) + bits_per_value
- 1) / bits_per_value
;
2338 val
= Fmake_vector (make_number (length_in_elts
+ extra_bool_elts
), Qnil
);
2340 /* No Lisp_Object to trace in there. */
2341 XSETPVECTYPESIZE (XVECTOR (val
), PVEC_BOOL_VECTOR
, 0);
2343 p
= XBOOL_VECTOR (val
);
2344 p
->size
= XFASTINT (length
);
2346 length_in_chars
= ((XFASTINT (length
) + BOOL_VECTOR_BITS_PER_CHAR
- 1)
2347 / BOOL_VECTOR_BITS_PER_CHAR
);
2348 if (length_in_chars
)
2350 memset (p
->data
, ! NILP (init
) ? -1 : 0, length_in_chars
);
2352 /* Clear any extraneous bits in the last byte. */
2353 p
->data
[length_in_chars
- 1]
2354 &= (1 << ((XFASTINT (length
) - 1) % BOOL_VECTOR_BITS_PER_CHAR
+ 1)) - 1;
2361 /* Make a string from NBYTES bytes at CONTENTS, and compute the number
2362 of characters from the contents. This string may be unibyte or
2363 multibyte, depending on the contents. */
2366 make_string (const char *contents
, ptrdiff_t nbytes
)
2368 register Lisp_Object val
;
2369 ptrdiff_t nchars
, multibyte_nbytes
;
2371 parse_str_as_multibyte ((const unsigned char *) contents
, nbytes
,
2372 &nchars
, &multibyte_nbytes
);
2373 if (nbytes
== nchars
|| nbytes
!= multibyte_nbytes
)
2374 /* CONTENTS contains no multibyte sequences or contains an invalid
2375 multibyte sequence. We must make unibyte string. */
2376 val
= make_unibyte_string (contents
, nbytes
);
2378 val
= make_multibyte_string (contents
, nchars
, nbytes
);
2383 /* Make an unibyte string from LENGTH bytes at CONTENTS. */
2386 make_unibyte_string (const char *contents
, ptrdiff_t length
)
2388 register Lisp_Object val
;
2389 val
= make_uninit_string (length
);
2390 memcpy (SDATA (val
), contents
, length
);
2395 /* Make a multibyte string from NCHARS characters occupying NBYTES
2396 bytes at CONTENTS. */
2399 make_multibyte_string (const char *contents
,
2400 ptrdiff_t nchars
, ptrdiff_t nbytes
)
2402 register Lisp_Object val
;
2403 val
= make_uninit_multibyte_string (nchars
, nbytes
);
2404 memcpy (SDATA (val
), contents
, nbytes
);
2409 /* Make a string from NCHARS characters occupying NBYTES bytes at
2410 CONTENTS. It is a multibyte string if NBYTES != NCHARS. */
2413 make_string_from_bytes (const char *contents
,
2414 ptrdiff_t nchars
, ptrdiff_t nbytes
)
2416 register Lisp_Object val
;
2417 val
= make_uninit_multibyte_string (nchars
, nbytes
);
2418 memcpy (SDATA (val
), contents
, nbytes
);
2419 if (SBYTES (val
) == SCHARS (val
))
2420 STRING_SET_UNIBYTE (val
);
2425 /* Make a string from NCHARS characters occupying NBYTES bytes at
2426 CONTENTS. The argument MULTIBYTE controls whether to label the
2427 string as multibyte. If NCHARS is negative, it counts the number of
2428 characters by itself. */
2431 make_specified_string (const char *contents
,
2432 ptrdiff_t nchars
, ptrdiff_t nbytes
, int multibyte
)
2434 register Lisp_Object val
;
2439 nchars
= multibyte_chars_in_text ((const unsigned char *) contents
,
2444 val
= make_uninit_multibyte_string (nchars
, nbytes
);
2445 memcpy (SDATA (val
), contents
, nbytes
);
2447 STRING_SET_UNIBYTE (val
);
2452 /* Return an unibyte Lisp_String set up to hold LENGTH characters
2453 occupying LENGTH bytes. */
2456 make_uninit_string (EMACS_INT length
)
2461 return empty_unibyte_string
;
2462 val
= make_uninit_multibyte_string (length
, length
);
2463 STRING_SET_UNIBYTE (val
);
2468 /* Return a multibyte Lisp_String set up to hold NCHARS characters
2469 which occupy NBYTES bytes. */
2472 make_uninit_multibyte_string (EMACS_INT nchars
, EMACS_INT nbytes
)
2475 struct Lisp_String
*s
;
2480 return empty_multibyte_string
;
2482 s
= allocate_string ();
2483 s
->intervals
= NULL
;
2484 allocate_string_data (s
, nchars
, nbytes
);
2485 XSETSTRING (string
, s
);
2486 string_chars_consed
+= nbytes
;
2490 /* Print arguments to BUF according to a FORMAT, then return
2491 a Lisp_String initialized with the data from BUF. */
2494 make_formatted_string (char *buf
, const char *format
, ...)
2499 va_start (ap
, format
);
2500 length
= vsprintf (buf
, format
, ap
);
2502 return make_string (buf
, length
);
2506 /***********************************************************************
2508 ***********************************************************************/
2510 /* We store float cells inside of float_blocks, allocating a new
2511 float_block with malloc whenever necessary. Float cells reclaimed
2512 by GC are put on a free list to be reallocated before allocating
2513 any new float cells from the latest float_block. */
2515 #define FLOAT_BLOCK_SIZE \
2516 (((BLOCK_BYTES - sizeof (struct float_block *) \
2517 /* The compiler might add padding at the end. */ \
2518 - (sizeof (struct Lisp_Float) - sizeof (int))) * CHAR_BIT) \
2519 / (sizeof (struct Lisp_Float) * CHAR_BIT + 1))
2521 #define GETMARKBIT(block,n) \
2522 (((block)->gcmarkbits[(n) / (sizeof (int) * CHAR_BIT)] \
2523 >> ((n) % (sizeof (int) * CHAR_BIT))) \
2526 #define SETMARKBIT(block,n) \
2527 (block)->gcmarkbits[(n) / (sizeof (int) * CHAR_BIT)] \
2528 |= 1 << ((n) % (sizeof (int) * CHAR_BIT))
2530 #define UNSETMARKBIT(block,n) \
2531 (block)->gcmarkbits[(n) / (sizeof (int) * CHAR_BIT)] \
2532 &= ~(1 << ((n) % (sizeof (int) * CHAR_BIT)))
2534 #define FLOAT_BLOCK(fptr) \
2535 ((struct float_block *) (((uintptr_t) (fptr)) & ~(BLOCK_ALIGN - 1)))
2537 #define FLOAT_INDEX(fptr) \
2538 ((((uintptr_t) (fptr)) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Float))
2542 /* Place `floats' at the beginning, to ease up FLOAT_INDEX's job. */
2543 struct Lisp_Float floats
[FLOAT_BLOCK_SIZE
];
2544 int gcmarkbits
[1 + FLOAT_BLOCK_SIZE
/ (sizeof (int) * CHAR_BIT
)];
2545 struct float_block
*next
;
2548 #define FLOAT_MARKED_P(fptr) \
2549 GETMARKBIT (FLOAT_BLOCK (fptr), FLOAT_INDEX ((fptr)))
2551 #define FLOAT_MARK(fptr) \
2552 SETMARKBIT (FLOAT_BLOCK (fptr), FLOAT_INDEX ((fptr)))
2554 #define FLOAT_UNMARK(fptr) \
2555 UNSETMARKBIT (FLOAT_BLOCK (fptr), FLOAT_INDEX ((fptr)))
2557 /* Current float_block. */
2559 static struct float_block
*float_block
;
2561 /* Index of first unused Lisp_Float in the current float_block. */
2563 static int float_block_index
= FLOAT_BLOCK_SIZE
;
2565 /* Free-list of Lisp_Floats. */
2567 static struct Lisp_Float
*float_free_list
;
2569 /* Return a new float object with value FLOAT_VALUE. */
2572 make_float (double float_value
)
2574 register Lisp_Object val
;
2576 /* eassert (!handling_signal); */
2580 if (float_free_list
)
2582 /* We use the data field for chaining the free list
2583 so that we won't use the same field that has the mark bit. */
2584 XSETFLOAT (val
, float_free_list
);
2585 float_free_list
= float_free_list
->u
.chain
;
2589 if (float_block_index
== FLOAT_BLOCK_SIZE
)
2591 struct float_block
*new
2592 = lisp_align_malloc (sizeof *new, MEM_TYPE_FLOAT
);
2593 new->next
= float_block
;
2594 memset (new->gcmarkbits
, 0, sizeof new->gcmarkbits
);
2596 float_block_index
= 0;
2597 total_free_floats
+= FLOAT_BLOCK_SIZE
;
2599 XSETFLOAT (val
, &float_block
->floats
[float_block_index
]);
2600 float_block_index
++;
2603 MALLOC_UNBLOCK_INPUT
;
2605 XFLOAT_INIT (val
, float_value
);
2606 eassert (!FLOAT_MARKED_P (XFLOAT (val
)));
2607 consing_since_gc
+= sizeof (struct Lisp_Float
);
2609 total_free_floats
--;
2615 /***********************************************************************
2617 ***********************************************************************/
2619 /* We store cons cells inside of cons_blocks, allocating a new
2620 cons_block with malloc whenever necessary. Cons cells reclaimed by
2621 GC are put on a free list to be reallocated before allocating
2622 any new cons cells from the latest cons_block. */
2624 #define CONS_BLOCK_SIZE \
2625 (((BLOCK_BYTES - sizeof (struct cons_block *) \
2626 /* The compiler might add padding at the end. */ \
2627 - (sizeof (struct Lisp_Cons) - sizeof (int))) * CHAR_BIT) \
2628 / (sizeof (struct Lisp_Cons) * CHAR_BIT + 1))
2630 #define CONS_BLOCK(fptr) \
2631 ((struct cons_block *) ((uintptr_t) (fptr) & ~(BLOCK_ALIGN - 1)))
2633 #define CONS_INDEX(fptr) \
2634 (((uintptr_t) (fptr) & (BLOCK_ALIGN - 1)) / sizeof (struct Lisp_Cons))
2638 /* Place `conses' at the beginning, to ease up CONS_INDEX's job. */
2639 struct Lisp_Cons conses
[CONS_BLOCK_SIZE
];
2640 int gcmarkbits
[1 + CONS_BLOCK_SIZE
/ (sizeof (int) * CHAR_BIT
)];
2641 struct cons_block
*next
;
2644 #define CONS_MARKED_P(fptr) \
2645 GETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
2647 #define CONS_MARK(fptr) \
2648 SETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
2650 #define CONS_UNMARK(fptr) \
2651 UNSETMARKBIT (CONS_BLOCK (fptr), CONS_INDEX ((fptr)))
2653 /* Current cons_block. */
2655 static struct cons_block
*cons_block
;
2657 /* Index of first unused Lisp_Cons in the current block. */
2659 static int cons_block_index
= CONS_BLOCK_SIZE
;
2661 /* Free-list of Lisp_Cons structures. */
2663 static struct Lisp_Cons
*cons_free_list
;
2665 /* Explicitly free a cons cell by putting it on the free-list. */
2668 free_cons (struct Lisp_Cons
*ptr
)
2670 ptr
->u
.chain
= cons_free_list
;
2674 cons_free_list
= ptr
;
2675 consing_since_gc
-= sizeof *ptr
;
2676 total_free_conses
++;
2679 DEFUN ("cons", Fcons
, Scons
, 2, 2, 0,
2680 doc
: /* Create a new cons, give it CAR and CDR as components, and return it. */)
2681 (Lisp_Object car
, Lisp_Object cdr
)
2683 register Lisp_Object val
;
2685 /* eassert (!handling_signal); */
2691 /* We use the cdr for chaining the free list
2692 so that we won't use the same field that has the mark bit. */
2693 XSETCONS (val
, cons_free_list
);
2694 cons_free_list
= cons_free_list
->u
.chain
;
2698 if (cons_block_index
== CONS_BLOCK_SIZE
)
2700 struct cons_block
*new
2701 = lisp_align_malloc (sizeof *new, MEM_TYPE_CONS
);
2702 memset (new->gcmarkbits
, 0, sizeof new->gcmarkbits
);
2703 new->next
= cons_block
;
2705 cons_block_index
= 0;
2706 total_free_conses
+= CONS_BLOCK_SIZE
;
2708 XSETCONS (val
, &cons_block
->conses
[cons_block_index
]);
2712 MALLOC_UNBLOCK_INPUT
;
2716 eassert (!CONS_MARKED_P (XCONS (val
)));
2717 consing_since_gc
+= sizeof (struct Lisp_Cons
);
2718 total_free_conses
--;
2719 cons_cells_consed
++;
2723 #ifdef GC_CHECK_CONS_LIST
2724 /* Get an error now if there's any junk in the cons free list. */
2726 check_cons_list (void)
2728 struct Lisp_Cons
*tail
= cons_free_list
;
2731 tail
= tail
->u
.chain
;
2735 /* Make a list of 1, 2, 3, 4 or 5 specified objects. */
2738 list1 (Lisp_Object arg1
)
2740 return Fcons (arg1
, Qnil
);
2744 list2 (Lisp_Object arg1
, Lisp_Object arg2
)
2746 return Fcons (arg1
, Fcons (arg2
, Qnil
));
2751 list3 (Lisp_Object arg1
, Lisp_Object arg2
, Lisp_Object arg3
)
2753 return Fcons (arg1
, Fcons (arg2
, Fcons (arg3
, Qnil
)));
2758 list4 (Lisp_Object arg1
, Lisp_Object arg2
, Lisp_Object arg3
, Lisp_Object arg4
)
2760 return Fcons (arg1
, Fcons (arg2
, Fcons (arg3
, Fcons (arg4
, Qnil
))));
2765 list5 (Lisp_Object arg1
, Lisp_Object arg2
, Lisp_Object arg3
, Lisp_Object arg4
, Lisp_Object arg5
)
2767 return Fcons (arg1
, Fcons (arg2
, Fcons (arg3
, Fcons (arg4
,
2768 Fcons (arg5
, Qnil
)))));
2771 /* Make a list of COUNT Lisp_Objects, where ARG is the
2772 first one. Allocate conses from pure space if TYPE
2773 is CONSTYPE_PURE, or allocate as usual if type is CONSTYPE_HEAP. */
2776 listn (enum constype type
, ptrdiff_t count
, Lisp_Object arg
, ...)
2780 Lisp_Object val
, *objp
;
2782 /* Change to SAFE_ALLOCA if you hit this eassert. */
2783 eassert (count
<= MAX_ALLOCA
/ word_size
);
2785 objp
= alloca (count
* word_size
);
2788 for (i
= 1; i
< count
; i
++)
2789 objp
[i
] = va_arg (ap
, Lisp_Object
);
2792 for (val
= Qnil
, i
= count
- 1; i
>= 0; i
--)
2794 if (type
== CONSTYPE_PURE
)
2795 val
= pure_cons (objp
[i
], val
);
2796 else if (type
== CONSTYPE_HEAP
)
2797 val
= Fcons (objp
[i
], val
);
2804 DEFUN ("list", Flist
, Slist
, 0, MANY
, 0,
2805 doc
: /* Return a newly created list with specified arguments as elements.
2806 Any number of arguments, even zero arguments, are allowed.
2807 usage: (list &rest OBJECTS) */)
2808 (ptrdiff_t nargs
, Lisp_Object
*args
)
2810 register Lisp_Object val
;
2816 val
= Fcons (args
[nargs
], val
);
2822 DEFUN ("make-list", Fmake_list
, Smake_list
, 2, 2, 0,
2823 doc
: /* Return a newly created list of length LENGTH, with each element being INIT. */)
2824 (register Lisp_Object length
, Lisp_Object init
)
2826 register Lisp_Object val
;
2827 register EMACS_INT size
;
2829 CHECK_NATNUM (length
);
2830 size
= XFASTINT (length
);
2835 val
= Fcons (init
, val
);
2840 val
= Fcons (init
, val
);
2845 val
= Fcons (init
, val
);
2850 val
= Fcons (init
, val
);
2855 val
= Fcons (init
, val
);
2870 /***********************************************************************
2872 ***********************************************************************/
2874 /* This value is balanced well enough to avoid too much internal overhead
2875 for the most common cases; it's not required to be a power of two, but
2876 it's expected to be a mult-of-ROUNDUP_SIZE (see below). */
2878 #define VECTOR_BLOCK_SIZE 4096
2880 /* Align allocation request sizes to be a multiple of ROUNDUP_SIZE. */
2883 roundup_size
= COMMON_MULTIPLE (word_size
, USE_LSB_TAG
? GCALIGNMENT
: 1)
2886 /* ROUNDUP_SIZE must be a power of 2. */
2887 verify ((roundup_size
& (roundup_size
- 1)) == 0);
2889 /* Verify assumptions described above. */
2890 verify ((VECTOR_BLOCK_SIZE
% roundup_size
) == 0);
2891 verify (VECTOR_BLOCK_SIZE
<= (1 << PSEUDOVECTOR_SIZE_BITS
));
2893 /* Round up X to nearest mult-of-ROUNDUP_SIZE. */
2895 #define vroundup(x) (((x) + (roundup_size - 1)) & ~(roundup_size - 1))
2897 /* Rounding helps to maintain alignment constraints if USE_LSB_TAG. */
2899 #define VECTOR_BLOCK_BYTES (VECTOR_BLOCK_SIZE - vroundup (sizeof (void *)))
2901 /* Size of the minimal vector allocated from block. */
2903 #define VBLOCK_BYTES_MIN vroundup (sizeof (struct Lisp_Vector))
2905 /* Size of the largest vector allocated from block. */
2907 #define VBLOCK_BYTES_MAX \
2908 vroundup ((VECTOR_BLOCK_BYTES / 2) - word_size)
2910 /* We maintain one free list for each possible block-allocated
2911 vector size, and this is the number of free lists we have. */
2913 #define VECTOR_MAX_FREE_LIST_INDEX \
2914 ((VECTOR_BLOCK_BYTES - VBLOCK_BYTES_MIN) / roundup_size + 1)
2916 /* Common shortcut to advance vector pointer over a block data. */
2918 #define ADVANCE(v, nbytes) ((struct Lisp_Vector *) ((char *) (v) + (nbytes)))
2920 /* Common shortcut to calculate NBYTES-vector index in VECTOR_FREE_LISTS. */
2922 #define VINDEX(nbytes) (((nbytes) - VBLOCK_BYTES_MIN) / roundup_size)
2924 /* Common shortcut to setup vector on a free list. */
2926 #define SETUP_ON_FREE_LIST(v, nbytes, index) \
2928 XSETPVECTYPESIZE (v, PVEC_FREE, nbytes); \
2929 eassert ((nbytes) % roundup_size == 0); \
2930 (index) = VINDEX (nbytes); \
2931 eassert ((index) < VECTOR_MAX_FREE_LIST_INDEX); \
2932 (v)->header.next.vector = vector_free_lists[index]; \
2933 vector_free_lists[index] = (v); \
2934 total_free_vector_slots += (nbytes) / word_size; \
2939 char data
[VECTOR_BLOCK_BYTES
];
2940 struct vector_block
*next
;
2943 /* Chain of vector blocks. */
2945 static struct vector_block
*vector_blocks
;
2947 /* Vector free lists, where NTH item points to a chain of free
2948 vectors of the same NBYTES size, so NTH == VINDEX (NBYTES). */
2950 static struct Lisp_Vector
*vector_free_lists
[VECTOR_MAX_FREE_LIST_INDEX
];
2952 /* Singly-linked list of large vectors. */
2954 static struct Lisp_Vector
*large_vectors
;
2956 /* The only vector with 0 slots, allocated from pure space. */
2958 Lisp_Object zero_vector
;
2960 /* Number of live vectors. */
2962 static EMACS_INT total_vectors
;
2964 /* Total size of live and free vectors, in Lisp_Object units. */
2966 static EMACS_INT total_vector_slots
, total_free_vector_slots
;
2968 /* Get a new vector block. */
2970 static struct vector_block
*
2971 allocate_vector_block (void)
2973 struct vector_block
*block
= xmalloc (sizeof *block
);
2975 #if GC_MARK_STACK && !defined GC_MALLOC_CHECK
2976 mem_insert (block
->data
, block
->data
+ VECTOR_BLOCK_BYTES
,
2977 MEM_TYPE_VECTOR_BLOCK
);
2980 block
->next
= vector_blocks
;
2981 vector_blocks
= block
;
2985 /* Called once to initialize vector allocation. */
2990 zero_vector
= make_pure_vector (0);
2993 /* Allocate vector from a vector block. */
2995 static struct Lisp_Vector
*
2996 allocate_vector_from_block (size_t nbytes
)
2998 struct Lisp_Vector
*vector
, *rest
;
2999 struct vector_block
*block
;
3000 size_t index
, restbytes
;
3002 eassert (VBLOCK_BYTES_MIN
<= nbytes
&& nbytes
<= VBLOCK_BYTES_MAX
);
3003 eassert (nbytes
% roundup_size
== 0);
3005 /* First, try to allocate from a free list
3006 containing vectors of the requested size. */
3007 index
= VINDEX (nbytes
);
3008 if (vector_free_lists
[index
])
3010 vector
= vector_free_lists
[index
];
3011 vector_free_lists
[index
] = vector
->header
.next
.vector
;
3012 vector
->header
.next
.nbytes
= nbytes
;
3013 total_free_vector_slots
-= nbytes
/ word_size
;
3017 /* Next, check free lists containing larger vectors. Since
3018 we will split the result, we should have remaining space
3019 large enough to use for one-slot vector at least. */
3020 for (index
= VINDEX (nbytes
+ VBLOCK_BYTES_MIN
);
3021 index
< VECTOR_MAX_FREE_LIST_INDEX
; index
++)
3022 if (vector_free_lists
[index
])
3024 /* This vector is larger than requested. */
3025 vector
= vector_free_lists
[index
];
3026 vector_free_lists
[index
] = vector
->header
.next
.vector
;
3027 vector
->header
.next
.nbytes
= nbytes
;
3028 total_free_vector_slots
-= nbytes
/ word_size
;
3030 /* Excess bytes are used for the smaller vector,
3031 which should be set on an appropriate free list. */
3032 restbytes
= index
* roundup_size
+ VBLOCK_BYTES_MIN
- nbytes
;
3033 eassert (restbytes
% roundup_size
== 0);
3034 rest
= ADVANCE (vector
, nbytes
);
3035 SETUP_ON_FREE_LIST (rest
, restbytes
, index
);
3039 /* Finally, need a new vector block. */
3040 block
= allocate_vector_block ();
3042 /* New vector will be at the beginning of this block. */
3043 vector
= (struct Lisp_Vector
*) block
->data
;
3044 vector
->header
.next
.nbytes
= nbytes
;
3046 /* If the rest of space from this block is large enough
3047 for one-slot vector at least, set up it on a free list. */
3048 restbytes
= VECTOR_BLOCK_BYTES
- nbytes
;
3049 if (restbytes
>= VBLOCK_BYTES_MIN
)
3051 eassert (restbytes
% roundup_size
== 0);
3052 rest
= ADVANCE (vector
, nbytes
);
3053 SETUP_ON_FREE_LIST (rest
, restbytes
, index
);
3058 /* Nonzero if VECTOR pointer is valid pointer inside BLOCK. */
3060 #define VECTOR_IN_BLOCK(vector, block) \
3061 ((char *) (vector) <= (block)->data \
3062 + VECTOR_BLOCK_BYTES - VBLOCK_BYTES_MIN)
3064 /* Number of bytes used by vector-block-allocated object. This is the only
3065 place where we actually use the `nbytes' field of the vector-header.
3066 I.e. we could get rid of the `nbytes' field by computing it based on the
3069 #define PSEUDOVECTOR_NBYTES(vector) \
3070 (PSEUDOVECTOR_TYPEP (&vector->header, PVEC_FREE) \
3071 ? vector->header.size & PSEUDOVECTOR_SIZE_MASK \
3072 : vector->header.next.nbytes)
3074 /* Reclaim space used by unmarked vectors. */
3077 sweep_vectors (void)
3079 struct vector_block
*block
= vector_blocks
, **bprev
= &vector_blocks
;
3080 struct Lisp_Vector
*vector
, *next
, **vprev
= &large_vectors
;
3082 total_vectors
= total_vector_slots
= total_free_vector_slots
= 0;
3083 memset (vector_free_lists
, 0, sizeof (vector_free_lists
));
3085 /* Looking through vector blocks. */
3087 for (block
= vector_blocks
; block
; block
= *bprev
)
3089 int free_this_block
= 0;
3091 for (vector
= (struct Lisp_Vector
*) block
->data
;
3092 VECTOR_IN_BLOCK (vector
, block
); vector
= next
)
3094 if (VECTOR_MARKED_P (vector
))
3096 VECTOR_UNMARK (vector
);
3098 total_vector_slots
+= vector
->header
.next
.nbytes
/ word_size
;
3099 next
= ADVANCE (vector
, vector
->header
.next
.nbytes
);
3103 ptrdiff_t nbytes
= PSEUDOVECTOR_NBYTES (vector
);
3104 ptrdiff_t total_bytes
= nbytes
;
3106 next
= ADVANCE (vector
, nbytes
);
3108 /* While NEXT is not marked, try to coalesce with VECTOR,
3109 thus making VECTOR of the largest possible size. */
3111 while (VECTOR_IN_BLOCK (next
, block
))
3113 if (VECTOR_MARKED_P (next
))
3115 nbytes
= PSEUDOVECTOR_NBYTES (next
);
3116 total_bytes
+= nbytes
;
3117 next
= ADVANCE (next
, nbytes
);
3120 eassert (total_bytes
% roundup_size
== 0);
3122 if (vector
== (struct Lisp_Vector
*) block
->data
3123 && !VECTOR_IN_BLOCK (next
, block
))
3124 /* This block should be freed because all of it's
3125 space was coalesced into the only free vector. */
3126 free_this_block
= 1;
3130 SETUP_ON_FREE_LIST (vector
, total_bytes
, tmp
);
3135 if (free_this_block
)
3137 *bprev
= block
->next
;
3138 #if GC_MARK_STACK && !defined GC_MALLOC_CHECK
3139 mem_delete (mem_find (block
->data
));
3144 bprev
= &block
->next
;
3147 /* Sweep large vectors. */
3149 for (vector
= large_vectors
; vector
; vector
= *vprev
)
3151 if (VECTOR_MARKED_P (vector
))
3153 VECTOR_UNMARK (vector
);
3155 if (vector
->header
.size
& PSEUDOVECTOR_FLAG
)
3157 struct Lisp_Bool_Vector
*b
= (struct Lisp_Bool_Vector
*) vector
;
3159 /* All non-bool pseudovectors are small enough to be allocated
3160 from vector blocks. This code should be redesigned if some
3161 pseudovector type grows beyond VBLOCK_BYTES_MAX. */
3162 eassert (PSEUDOVECTOR_TYPEP (&vector
->header
, PVEC_BOOL_VECTOR
));
3165 += (bool_header_size
3166 + ((b
->size
+ BOOL_VECTOR_BITS_PER_CHAR
- 1)
3167 / BOOL_VECTOR_BITS_PER_CHAR
)) / word_size
;
3171 += header_size
/ word_size
+ vector
->header
.size
;
3172 vprev
= &vector
->header
.next
.vector
;
3176 *vprev
= vector
->header
.next
.vector
;
3182 /* Value is a pointer to a newly allocated Lisp_Vector structure
3183 with room for LEN Lisp_Objects. */
3185 static struct Lisp_Vector
*
3186 allocate_vectorlike (ptrdiff_t len
)
3188 struct Lisp_Vector
*p
;
3192 /* This gets triggered by code which I haven't bothered to fix. --Stef */
3193 /* eassert (!handling_signal); */
3196 p
= XVECTOR (zero_vector
);
3199 size_t nbytes
= header_size
+ len
* word_size
;
3201 #ifdef DOUG_LEA_MALLOC
3202 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed
3203 because mapped region contents are not preserved in
3205 mallopt (M_MMAP_MAX
, 0);
3208 if (nbytes
<= VBLOCK_BYTES_MAX
)
3209 p
= allocate_vector_from_block (vroundup (nbytes
));
3212 p
= lisp_malloc (nbytes
, MEM_TYPE_VECTORLIKE
);
3213 p
->header
.next
.vector
= large_vectors
;
3217 #ifdef DOUG_LEA_MALLOC
3218 /* Back to a reasonable maximum of mmap'ed areas. */
3219 mallopt (M_MMAP_MAX
, MMAP_MAX_AREAS
);
3222 consing_since_gc
+= nbytes
;
3223 vector_cells_consed
+= len
;
3226 MALLOC_UNBLOCK_INPUT
;
3232 /* Allocate a vector with LEN slots. */
3234 struct Lisp_Vector
*
3235 allocate_vector (EMACS_INT len
)
3237 struct Lisp_Vector
*v
;
3238 ptrdiff_t nbytes_max
= min (PTRDIFF_MAX
, SIZE_MAX
);
3240 if (min ((nbytes_max
- header_size
) / word_size
, MOST_POSITIVE_FIXNUM
) < len
)
3241 memory_full (SIZE_MAX
);
3242 v
= allocate_vectorlike (len
);
3243 v
->header
.size
= len
;
3248 /* Allocate other vector-like structures. */
3250 struct Lisp_Vector
*
3251 allocate_pseudovector (int memlen
, int lisplen
, int tag
)
3253 struct Lisp_Vector
*v
= allocate_vectorlike (memlen
);
3256 /* Only the first lisplen slots will be traced normally by the GC. */
3257 for (i
= 0; i
< lisplen
; ++i
)
3258 v
->contents
[i
] = Qnil
;
3260 XSETPVECTYPESIZE (v
, tag
, lisplen
);
3265 allocate_buffer (void)
3267 struct buffer
*b
= lisp_malloc (sizeof *b
, MEM_TYPE_BUFFER
);
3269 XSETPVECTYPESIZE (b
, PVEC_BUFFER
, (offsetof (struct buffer
, own_text
)
3270 - header_size
) / word_size
);
3271 /* Note that the fields of B are not initialized. */
3275 struct Lisp_Hash_Table
*
3276 allocate_hash_table (void)
3278 return ALLOCATE_PSEUDOVECTOR (struct Lisp_Hash_Table
, count
, PVEC_HASH_TABLE
);
3282 allocate_window (void)
3286 w
= ALLOCATE_PSEUDOVECTOR (struct window
, current_matrix
, PVEC_WINDOW
);
3287 /* Users assumes that non-Lisp data is zeroed. */
3288 memset (&w
->current_matrix
, 0,
3289 sizeof (*w
) - offsetof (struct window
, current_matrix
));
3294 allocate_terminal (void)
3298 t
= ALLOCATE_PSEUDOVECTOR (struct terminal
, next_terminal
, PVEC_TERMINAL
);
3299 /* Users assumes that non-Lisp data is zeroed. */
3300 memset (&t
->next_terminal
, 0,
3301 sizeof (*t
) - offsetof (struct terminal
, next_terminal
));
3306 allocate_frame (void)
3310 f
= ALLOCATE_PSEUDOVECTOR (struct frame
, face_cache
, PVEC_FRAME
);
3311 /* Users assumes that non-Lisp data is zeroed. */
3312 memset (&f
->face_cache
, 0,
3313 sizeof (*f
) - offsetof (struct frame
, face_cache
));
3317 struct Lisp_Process
*
3318 allocate_process (void)
3320 struct Lisp_Process
*p
;
3322 p
= ALLOCATE_PSEUDOVECTOR (struct Lisp_Process
, pid
, PVEC_PROCESS
);
3323 /* Users assumes that non-Lisp data is zeroed. */
3325 sizeof (*p
) - offsetof (struct Lisp_Process
, pid
));
3329 DEFUN ("make-vector", Fmake_vector
, Smake_vector
, 2, 2, 0,
3330 doc
: /* Return a newly created vector of length LENGTH, with each element being INIT.
3331 See also the function `vector'. */)
3332 (register Lisp_Object length
, Lisp_Object init
)
3335 register ptrdiff_t sizei
;
3336 register ptrdiff_t i
;
3337 register struct Lisp_Vector
*p
;
3339 CHECK_NATNUM (length
);
3341 p
= allocate_vector (XFASTINT (length
));
3342 sizei
= XFASTINT (length
);
3343 for (i
= 0; i
< sizei
; i
++)
3344 p
->contents
[i
] = init
;
3346 XSETVECTOR (vector
, p
);
3351 DEFUN ("vector", Fvector
, Svector
, 0, MANY
, 0,
3352 doc
: /* Return a newly created vector with specified arguments as elements.
3353 Any number of arguments, even zero arguments, are allowed.
3354 usage: (vector &rest OBJECTS) */)
3355 (ptrdiff_t nargs
, Lisp_Object
*args
)
3357 register Lisp_Object len
, val
;
3359 register struct Lisp_Vector
*p
;
3361 XSETFASTINT (len
, nargs
);
3362 val
= Fmake_vector (len
, Qnil
);
3364 for (i
= 0; i
< nargs
; i
++)
3365 p
->contents
[i
] = args
[i
];
3370 make_byte_code (struct Lisp_Vector
*v
)
3372 if (v
->header
.size
> 1 && STRINGP (v
->contents
[1])
3373 && STRING_MULTIBYTE (v
->contents
[1]))
3374 /* BYTECODE-STRING must have been produced by Emacs 20.2 or the
3375 earlier because they produced a raw 8-bit string for byte-code
3376 and now such a byte-code string is loaded as multibyte while
3377 raw 8-bit characters converted to multibyte form. Thus, now we
3378 must convert them back to the original unibyte form. */
3379 v
->contents
[1] = Fstring_as_unibyte (v
->contents
[1]);
3380 XSETPVECTYPE (v
, PVEC_COMPILED
);
3383 DEFUN ("make-byte-code", Fmake_byte_code
, Smake_byte_code
, 4, MANY
, 0,
3384 doc
: /* Create a byte-code object with specified arguments as elements.
3385 The arguments should be the ARGLIST, bytecode-string BYTE-CODE, constant
3386 vector CONSTANTS, maximum stack size DEPTH, (optional) DOCSTRING,
3387 and (optional) INTERACTIVE-SPEC.
3388 The first four arguments are required; at most six have any
3390 The ARGLIST can be either like the one of `lambda', in which case the arguments
3391 will be dynamically bound before executing the byte code, or it can be an
3392 integer of the form NNNNNNNRMMMMMMM where the 7bit MMMMMMM specifies the
3393 minimum number of arguments, the 7-bit NNNNNNN specifies the maximum number
3394 of arguments (ignoring &rest) and the R bit specifies whether there is a &rest
3395 argument to catch the left-over arguments. If such an integer is used, the
3396 arguments will not be dynamically bound but will be instead pushed on the
3397 stack before executing the byte-code.
3398 usage: (make-byte-code ARGLIST BYTE-CODE CONSTANTS DEPTH &optional DOCSTRING INTERACTIVE-SPEC &rest ELEMENTS) */)
3399 (ptrdiff_t nargs
, Lisp_Object
*args
)
3401 register Lisp_Object len
, val
;
3403 register struct Lisp_Vector
*p
;
3405 /* We used to purecopy everything here, if purify-flga was set. This worked
3406 OK for Emacs-23, but with Emacs-24's lexical binding code, it can be
3407 dangerous, since make-byte-code is used during execution to build
3408 closures, so any closure built during the preload phase would end up
3409 copied into pure space, including its free variables, which is sometimes
3410 just wasteful and other times plainly wrong (e.g. those free vars may want
3413 XSETFASTINT (len
, nargs
);
3414 val
= Fmake_vector (len
, Qnil
);
3417 for (i
= 0; i
< nargs
; i
++)
3418 p
->contents
[i
] = args
[i
];
3420 XSETCOMPILED (val
, p
);
3426 /***********************************************************************
3428 ***********************************************************************/
3430 /* Like struct Lisp_Symbol, but padded so that the size is a multiple
3431 of the required alignment if LSB tags are used. */
3433 union aligned_Lisp_Symbol
3435 struct Lisp_Symbol s
;
3437 unsigned char c
[(sizeof (struct Lisp_Symbol
) + GCALIGNMENT
- 1)
3442 /* Each symbol_block is just under 1020 bytes long, since malloc
3443 really allocates in units of powers of two and uses 4 bytes for its
3446 #define SYMBOL_BLOCK_SIZE \
3447 ((1020 - sizeof (struct symbol_block *)) / sizeof (union aligned_Lisp_Symbol))
3451 /* Place `symbols' first, to preserve alignment. */
3452 union aligned_Lisp_Symbol symbols
[SYMBOL_BLOCK_SIZE
];
3453 struct symbol_block
*next
;
3456 /* Current symbol block and index of first unused Lisp_Symbol
3459 static struct symbol_block
*symbol_block
;
3460 static int symbol_block_index
= SYMBOL_BLOCK_SIZE
;
3462 /* List of free symbols. */
3464 static struct Lisp_Symbol
*symbol_free_list
;
3466 DEFUN ("make-symbol", Fmake_symbol
, Smake_symbol
, 1, 1, 0,
3467 doc
: /* Return a newly allocated uninterned symbol whose name is NAME.
3468 Its value and function definition are void, and its property list is nil. */)
3471 register Lisp_Object val
;
3472 register struct Lisp_Symbol
*p
;
3474 CHECK_STRING (name
);
3476 /* eassert (!handling_signal); */
3480 if (symbol_free_list
)
3482 XSETSYMBOL (val
, symbol_free_list
);
3483 symbol_free_list
= symbol_free_list
->next
;
3487 if (symbol_block_index
== SYMBOL_BLOCK_SIZE
)
3489 struct symbol_block
*new
3490 = lisp_malloc (sizeof *new, MEM_TYPE_SYMBOL
);
3491 new->next
= symbol_block
;
3493 symbol_block_index
= 0;
3494 total_free_symbols
+= SYMBOL_BLOCK_SIZE
;
3496 XSETSYMBOL (val
, &symbol_block
->symbols
[symbol_block_index
].s
);
3497 symbol_block_index
++;
3500 MALLOC_UNBLOCK_INPUT
;
3503 set_symbol_name (val
, name
);
3504 set_symbol_plist (val
, Qnil
);
3505 p
->redirect
= SYMBOL_PLAINVAL
;
3506 SET_SYMBOL_VAL (p
, Qunbound
);
3507 set_symbol_function (val
, Qunbound
);
3508 set_symbol_next (val
, NULL
);
3510 p
->interned
= SYMBOL_UNINTERNED
;
3512 p
->declared_special
= 0;
3513 consing_since_gc
+= sizeof (struct Lisp_Symbol
);
3515 total_free_symbols
--;
3521 /***********************************************************************
3522 Marker (Misc) Allocation
3523 ***********************************************************************/
3525 /* Like union Lisp_Misc, but padded so that its size is a multiple of
3526 the required alignment when LSB tags are used. */
3528 union aligned_Lisp_Misc
3532 unsigned char c
[(sizeof (union Lisp_Misc
) + GCALIGNMENT
- 1)
3537 /* Allocation of markers and other objects that share that structure.
3538 Works like allocation of conses. */
3540 #define MARKER_BLOCK_SIZE \
3541 ((1020 - sizeof (struct marker_block *)) / sizeof (union aligned_Lisp_Misc))
3545 /* Place `markers' first, to preserve alignment. */
3546 union aligned_Lisp_Misc markers
[MARKER_BLOCK_SIZE
];
3547 struct marker_block
*next
;
3550 static struct marker_block
*marker_block
;
3551 static int marker_block_index
= MARKER_BLOCK_SIZE
;
3553 static union Lisp_Misc
*marker_free_list
;
3555 /* Return a newly allocated Lisp_Misc object of specified TYPE. */
3558 allocate_misc (enum Lisp_Misc_Type type
)
3562 /* eassert (!handling_signal); */
3566 if (marker_free_list
)
3568 XSETMISC (val
, marker_free_list
);
3569 marker_free_list
= marker_free_list
->u_free
.chain
;
3573 if (marker_block_index
== MARKER_BLOCK_SIZE
)
3575 struct marker_block
*new = lisp_malloc (sizeof *new, MEM_TYPE_MISC
);
3576 new->next
= marker_block
;
3578 marker_block_index
= 0;
3579 total_free_markers
+= MARKER_BLOCK_SIZE
;
3581 XSETMISC (val
, &marker_block
->markers
[marker_block_index
].m
);
3582 marker_block_index
++;
3585 MALLOC_UNBLOCK_INPUT
;
3587 --total_free_markers
;
3588 consing_since_gc
+= sizeof (union Lisp_Misc
);
3589 misc_objects_consed
++;
3590 XMISCTYPE (val
) = type
;
3591 XMISCANY (val
)->gcmarkbit
= 0;
3595 /* Free a Lisp_Misc object */
3598 free_misc (Lisp_Object misc
)
3600 XMISCTYPE (misc
) = Lisp_Misc_Free
;
3601 XMISC (misc
)->u_free
.chain
= marker_free_list
;
3602 marker_free_list
= XMISC (misc
);
3603 consing_since_gc
-= sizeof (union Lisp_Misc
);
3604 total_free_markers
++;
3607 /* Return a Lisp_Misc_Save_Value object containing POINTER and
3608 INTEGER. This is used to package C values to call record_unwind_protect.
3609 The unwind function can get the C values back using XSAVE_VALUE. */
3612 make_save_value (void *pointer
, ptrdiff_t integer
)
3614 register Lisp_Object val
;
3615 register struct Lisp_Save_Value
*p
;
3617 val
= allocate_misc (Lisp_Misc_Save_Value
);
3618 p
= XSAVE_VALUE (val
);
3619 p
->pointer
= pointer
;
3620 p
->integer
= integer
;
3625 /* Return a Lisp_Misc_Overlay object with specified START, END and PLIST. */
3628 build_overlay (Lisp_Object start
, Lisp_Object end
, Lisp_Object plist
)
3630 register Lisp_Object overlay
;
3632 overlay
= allocate_misc (Lisp_Misc_Overlay
);
3633 OVERLAY_START (overlay
) = start
;
3634 OVERLAY_END (overlay
) = end
;
3635 set_overlay_plist (overlay
, plist
);
3636 XOVERLAY (overlay
)->next
= NULL
;
3640 DEFUN ("make-marker", Fmake_marker
, Smake_marker
, 0, 0, 0,
3641 doc
: /* Return a newly allocated marker which does not point at any place. */)
3644 register Lisp_Object val
;
3645 register struct Lisp_Marker
*p
;
3647 val
= allocate_misc (Lisp_Misc_Marker
);
3653 p
->insertion_type
= 0;
3657 /* Return a newly allocated marker which points into BUF
3658 at character position CHARPOS and byte position BYTEPOS. */
3661 build_marker (struct buffer
*buf
, ptrdiff_t charpos
, ptrdiff_t bytepos
)
3664 struct Lisp_Marker
*m
;
3666 /* No dead buffers here. */
3667 eassert (!NILP (BVAR (buf
, name
)));
3669 /* Every character is at least one byte. */
3670 eassert (charpos
<= bytepos
);
3672 obj
= allocate_misc (Lisp_Misc_Marker
);
3675 m
->charpos
= charpos
;
3676 m
->bytepos
= bytepos
;
3677 m
->insertion_type
= 0;
3678 m
->next
= BUF_MARKERS (buf
);
3679 BUF_MARKERS (buf
) = m
;
3683 /* Put MARKER back on the free list after using it temporarily. */
3686 free_marker (Lisp_Object marker
)
3688 unchain_marker (XMARKER (marker
));
3693 /* Return a newly created vector or string with specified arguments as
3694 elements. If all the arguments are characters that can fit
3695 in a string of events, make a string; otherwise, make a vector.
3697 Any number of arguments, even zero arguments, are allowed. */
3700 make_event_array (register int nargs
, Lisp_Object
*args
)
3704 for (i
= 0; i
< nargs
; i
++)
3705 /* The things that fit in a string
3706 are characters that are in 0...127,
3707 after discarding the meta bit and all the bits above it. */
3708 if (!INTEGERP (args
[i
])
3709 || (XINT (args
[i
]) & ~(-CHAR_META
)) >= 0200)
3710 return Fvector (nargs
, args
);
3712 /* Since the loop exited, we know that all the things in it are
3713 characters, so we can make a string. */
3717 result
= Fmake_string (make_number (nargs
), make_number (0));
3718 for (i
= 0; i
< nargs
; i
++)
3720 SSET (result
, i
, XINT (args
[i
]));
3721 /* Move the meta bit to the right place for a string char. */
3722 if (XINT (args
[i
]) & CHAR_META
)
3723 SSET (result
, i
, SREF (result
, i
) | 0x80);
3732 /************************************************************************
3733 Memory Full Handling
3734 ************************************************************************/
3737 /* Called if malloc (NBYTES) returns zero. If NBYTES == SIZE_MAX,
3738 there may have been size_t overflow so that malloc was never
3739 called, or perhaps malloc was invoked successfully but the
3740 resulting pointer had problems fitting into a tagged EMACS_INT. In
3741 either case this counts as memory being full even though malloc did
3745 memory_full (size_t nbytes
)
3747 /* Do not go into hysterics merely because a large request failed. */
3748 int enough_free_memory
= 0;
3749 if (SPARE_MEMORY
< nbytes
)
3754 p
= malloc (SPARE_MEMORY
);
3758 enough_free_memory
= 1;
3760 MALLOC_UNBLOCK_INPUT
;
3763 if (! enough_free_memory
)
3769 memory_full_cons_threshold
= sizeof (struct cons_block
);
3771 /* The first time we get here, free the spare memory. */
3772 for (i
= 0; i
< sizeof (spare_memory
) / sizeof (char *); i
++)
3773 if (spare_memory
[i
])
3776 free (spare_memory
[i
]);
3777 else if (i
>= 1 && i
<= 4)
3778 lisp_align_free (spare_memory
[i
]);
3780 lisp_free (spare_memory
[i
]);
3781 spare_memory
[i
] = 0;
3784 /* Record the space now used. When it decreases substantially,
3785 we can refill the memory reserve. */
3786 #if !defined SYSTEM_MALLOC && !defined SYNC_INPUT
3787 bytes_used_when_full
= BYTES_USED
;
3791 /* This used to call error, but if we've run out of memory, we could
3792 get infinite recursion trying to build the string. */
3793 xsignal (Qnil
, Vmemory_signal_data
);
3796 /* If we released our reserve (due to running out of memory),
3797 and we have a fair amount free once again,
3798 try to set aside another reserve in case we run out once more.
3800 This is called when a relocatable block is freed in ralloc.c,
3801 and also directly from this file, in case we're not using ralloc.c. */
3804 refill_memory_reserve (void)
3806 #ifndef SYSTEM_MALLOC
3807 if (spare_memory
[0] == 0)
3808 spare_memory
[0] = malloc (SPARE_MEMORY
);
3809 if (spare_memory
[1] == 0)
3810 spare_memory
[1] = lisp_align_malloc (sizeof (struct cons_block
),
3812 if (spare_memory
[2] == 0)
3813 spare_memory
[2] = lisp_align_malloc (sizeof (struct cons_block
),
3815 if (spare_memory
[3] == 0)
3816 spare_memory
[3] = lisp_align_malloc (sizeof (struct cons_block
),
3818 if (spare_memory
[4] == 0)
3819 spare_memory
[4] = lisp_align_malloc (sizeof (struct cons_block
),
3821 if (spare_memory
[5] == 0)
3822 spare_memory
[5] = lisp_malloc (sizeof (struct string_block
),
3824 if (spare_memory
[6] == 0)
3825 spare_memory
[6] = lisp_malloc (sizeof (struct string_block
),
3827 if (spare_memory
[0] && spare_memory
[1] && spare_memory
[5])
3828 Vmemory_full
= Qnil
;
3832 /************************************************************************
3834 ************************************************************************/
3836 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
3838 /* Conservative C stack marking requires a method to identify possibly
3839 live Lisp objects given a pointer value. We do this by keeping
3840 track of blocks of Lisp data that are allocated in a red-black tree
3841 (see also the comment of mem_node which is the type of nodes in
3842 that tree). Function lisp_malloc adds information for an allocated
3843 block to the red-black tree with calls to mem_insert, and function
3844 lisp_free removes it with mem_delete. Functions live_string_p etc
3845 call mem_find to lookup information about a given pointer in the
3846 tree, and use that to determine if the pointer points to a Lisp
3849 /* Initialize this part of alloc.c. */
3854 mem_z
.left
= mem_z
.right
= MEM_NIL
;
3855 mem_z
.parent
= NULL
;
3856 mem_z
.color
= MEM_BLACK
;
3857 mem_z
.start
= mem_z
.end
= NULL
;
3862 /* Value is a pointer to the mem_node containing START. Value is
3863 MEM_NIL if there is no node in the tree containing START. */
3865 static inline struct mem_node
*
3866 mem_find (void *start
)
3870 if (start
< min_heap_address
|| start
> max_heap_address
)
3873 /* Make the search always successful to speed up the loop below. */
3874 mem_z
.start
= start
;
3875 mem_z
.end
= (char *) start
+ 1;
3878 while (start
< p
->start
|| start
>= p
->end
)
3879 p
= start
< p
->start
? p
->left
: p
->right
;
3884 /* Insert a new node into the tree for a block of memory with start
3885 address START, end address END, and type TYPE. Value is a
3886 pointer to the node that was inserted. */
3888 static struct mem_node
*
3889 mem_insert (void *start
, void *end
, enum mem_type type
)
3891 struct mem_node
*c
, *parent
, *x
;
3893 if (min_heap_address
== NULL
|| start
< min_heap_address
)
3894 min_heap_address
= start
;
3895 if (max_heap_address
== NULL
|| end
> max_heap_address
)
3896 max_heap_address
= end
;
3898 /* See where in the tree a node for START belongs. In this
3899 particular application, it shouldn't happen that a node is already
3900 present. For debugging purposes, let's check that. */
3904 #if GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS
3906 while (c
!= MEM_NIL
)
3908 if (start
>= c
->start
&& start
< c
->end
)
3911 c
= start
< c
->start
? c
->left
: c
->right
;
3914 #else /* GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS */
3916 while (c
!= MEM_NIL
)
3919 c
= start
< c
->start
? c
->left
: c
->right
;
3922 #endif /* GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS */
3924 /* Create a new node. */
3925 #ifdef GC_MALLOC_CHECK
3926 x
= _malloc_internal (sizeof *x
);
3930 x
= xmalloc (sizeof *x
);
3936 x
->left
= x
->right
= MEM_NIL
;
3939 /* Insert it as child of PARENT or install it as root. */
3942 if (start
< parent
->start
)
3950 /* Re-establish red-black tree properties. */
3951 mem_insert_fixup (x
);
3957 /* Re-establish the red-black properties of the tree, and thereby
3958 balance the tree, after node X has been inserted; X is always red. */
3961 mem_insert_fixup (struct mem_node
*x
)
3963 while (x
!= mem_root
&& x
->parent
->color
== MEM_RED
)
3965 /* X is red and its parent is red. This is a violation of
3966 red-black tree property #3. */
3968 if (x
->parent
== x
->parent
->parent
->left
)
3970 /* We're on the left side of our grandparent, and Y is our
3972 struct mem_node
*y
= x
->parent
->parent
->right
;
3974 if (y
->color
== MEM_RED
)
3976 /* Uncle and parent are red but should be black because
3977 X is red. Change the colors accordingly and proceed
3978 with the grandparent. */
3979 x
->parent
->color
= MEM_BLACK
;
3980 y
->color
= MEM_BLACK
;
3981 x
->parent
->parent
->color
= MEM_RED
;
3982 x
= x
->parent
->parent
;
3986 /* Parent and uncle have different colors; parent is
3987 red, uncle is black. */
3988 if (x
== x
->parent
->right
)
3991 mem_rotate_left (x
);
3994 x
->parent
->color
= MEM_BLACK
;
3995 x
->parent
->parent
->color
= MEM_RED
;
3996 mem_rotate_right (x
->parent
->parent
);
4001 /* This is the symmetrical case of above. */
4002 struct mem_node
*y
= x
->parent
->parent
->left
;
4004 if (y
->color
== MEM_RED
)
4006 x
->parent
->color
= MEM_BLACK
;
4007 y
->color
= MEM_BLACK
;
4008 x
->parent
->parent
->color
= MEM_RED
;
4009 x
= x
->parent
->parent
;
4013 if (x
== x
->parent
->left
)
4016 mem_rotate_right (x
);
4019 x
->parent
->color
= MEM_BLACK
;
4020 x
->parent
->parent
->color
= MEM_RED
;
4021 mem_rotate_left (x
->parent
->parent
);
4026 /* The root may have been changed to red due to the algorithm. Set
4027 it to black so that property #5 is satisfied. */
4028 mem_root
->color
= MEM_BLACK
;
4039 mem_rotate_left (struct mem_node
*x
)
4043 /* Turn y's left sub-tree into x's right sub-tree. */
4046 if (y
->left
!= MEM_NIL
)
4047 y
->left
->parent
= x
;
4049 /* Y's parent was x's parent. */
4051 y
->parent
= x
->parent
;
4053 /* Get the parent to point to y instead of x. */
4056 if (x
== x
->parent
->left
)
4057 x
->parent
->left
= y
;
4059 x
->parent
->right
= y
;
4064 /* Put x on y's left. */
4078 mem_rotate_right (struct mem_node
*x
)
4080 struct mem_node
*y
= x
->left
;
4083 if (y
->right
!= MEM_NIL
)
4084 y
->right
->parent
= x
;
4087 y
->parent
= x
->parent
;
4090 if (x
== x
->parent
->right
)
4091 x
->parent
->right
= y
;
4093 x
->parent
->left
= y
;
4104 /* Delete node Z from the tree. If Z is null or MEM_NIL, do nothing. */
4107 mem_delete (struct mem_node
*z
)
4109 struct mem_node
*x
, *y
;
4111 if (!z
|| z
== MEM_NIL
)
4114 if (z
->left
== MEM_NIL
|| z
->right
== MEM_NIL
)
4119 while (y
->left
!= MEM_NIL
)
4123 if (y
->left
!= MEM_NIL
)
4128 x
->parent
= y
->parent
;
4131 if (y
== y
->parent
->left
)
4132 y
->parent
->left
= x
;
4134 y
->parent
->right
= x
;
4141 z
->start
= y
->start
;
4146 if (y
->color
== MEM_BLACK
)
4147 mem_delete_fixup (x
);
4149 #ifdef GC_MALLOC_CHECK
4157 /* Re-establish the red-black properties of the tree, after a
4161 mem_delete_fixup (struct mem_node
*x
)
4163 while (x
!= mem_root
&& x
->color
== MEM_BLACK
)
4165 if (x
== x
->parent
->left
)
4167 struct mem_node
*w
= x
->parent
->right
;
4169 if (w
->color
== MEM_RED
)
4171 w
->color
= MEM_BLACK
;
4172 x
->parent
->color
= MEM_RED
;
4173 mem_rotate_left (x
->parent
);
4174 w
= x
->parent
->right
;
4177 if (w
->left
->color
== MEM_BLACK
&& w
->right
->color
== MEM_BLACK
)
4184 if (w
->right
->color
== MEM_BLACK
)
4186 w
->left
->color
= MEM_BLACK
;
4188 mem_rotate_right (w
);
4189 w
= x
->parent
->right
;
4191 w
->color
= x
->parent
->color
;
4192 x
->parent
->color
= MEM_BLACK
;
4193 w
->right
->color
= MEM_BLACK
;
4194 mem_rotate_left (x
->parent
);
4200 struct mem_node
*w
= x
->parent
->left
;
4202 if (w
->color
== MEM_RED
)
4204 w
->color
= MEM_BLACK
;
4205 x
->parent
->color
= MEM_RED
;
4206 mem_rotate_right (x
->parent
);
4207 w
= x
->parent
->left
;
4210 if (w
->right
->color
== MEM_BLACK
&& w
->left
->color
== MEM_BLACK
)
4217 if (w
->left
->color
== MEM_BLACK
)
4219 w
->right
->color
= MEM_BLACK
;
4221 mem_rotate_left (w
);
4222 w
= x
->parent
->left
;
4225 w
->color
= x
->parent
->color
;
4226 x
->parent
->color
= MEM_BLACK
;
4227 w
->left
->color
= MEM_BLACK
;
4228 mem_rotate_right (x
->parent
);
4234 x
->color
= MEM_BLACK
;
4238 /* Value is non-zero if P is a pointer to a live Lisp string on
4239 the heap. M is a pointer to the mem_block for P. */
4242 live_string_p (struct mem_node
*m
, void *p
)
4244 if (m
->type
== MEM_TYPE_STRING
)
4246 struct string_block
*b
= (struct string_block
*) m
->start
;
4247 ptrdiff_t offset
= (char *) p
- (char *) &b
->strings
[0];
4249 /* P must point to the start of a Lisp_String structure, and it
4250 must not be on the free-list. */
4252 && offset
% sizeof b
->strings
[0] == 0
4253 && offset
< (STRING_BLOCK_SIZE
* sizeof b
->strings
[0])
4254 && ((struct Lisp_String
*) p
)->data
!= NULL
);
4261 /* Value is non-zero if P is a pointer to a live Lisp cons on
4262 the heap. M is a pointer to the mem_block for P. */
4265 live_cons_p (struct mem_node
*m
, void *p
)
4267 if (m
->type
== MEM_TYPE_CONS
)
4269 struct cons_block
*b
= (struct cons_block
*) m
->start
;
4270 ptrdiff_t offset
= (char *) p
- (char *) &b
->conses
[0];
4272 /* P must point to the start of a Lisp_Cons, not be
4273 one of the unused cells in the current cons block,
4274 and not be on the free-list. */
4276 && offset
% sizeof b
->conses
[0] == 0
4277 && offset
< (CONS_BLOCK_SIZE
* sizeof b
->conses
[0])
4279 || offset
/ sizeof b
->conses
[0] < cons_block_index
)
4280 && !EQ (((struct Lisp_Cons
*) p
)->car
, Vdead
));
4287 /* Value is non-zero if P is a pointer to a live Lisp symbol on
4288 the heap. M is a pointer to the mem_block for P. */
4291 live_symbol_p (struct mem_node
*m
, void *p
)
4293 if (m
->type
== MEM_TYPE_SYMBOL
)
4295 struct symbol_block
*b
= (struct symbol_block
*) m
->start
;
4296 ptrdiff_t offset
= (char *) p
- (char *) &b
->symbols
[0];
4298 /* P must point to the start of a Lisp_Symbol, not be
4299 one of the unused cells in the current symbol block,
4300 and not be on the free-list. */
4302 && offset
% sizeof b
->symbols
[0] == 0
4303 && offset
< (SYMBOL_BLOCK_SIZE
* sizeof b
->symbols
[0])
4304 && (b
!= symbol_block
4305 || offset
/ sizeof b
->symbols
[0] < symbol_block_index
)
4306 && !EQ (((struct Lisp_Symbol
*)p
)->function
, Vdead
));
4313 /* Value is non-zero if P is a pointer to a live Lisp float on
4314 the heap. M is a pointer to the mem_block for P. */
4317 live_float_p (struct mem_node
*m
, void *p
)
4319 if (m
->type
== MEM_TYPE_FLOAT
)
4321 struct float_block
*b
= (struct float_block
*) m
->start
;
4322 ptrdiff_t offset
= (char *) p
- (char *) &b
->floats
[0];
4324 /* P must point to the start of a Lisp_Float and not be
4325 one of the unused cells in the current float block. */
4327 && offset
% sizeof b
->floats
[0] == 0
4328 && offset
< (FLOAT_BLOCK_SIZE
* sizeof b
->floats
[0])
4329 && (b
!= float_block
4330 || offset
/ sizeof b
->floats
[0] < float_block_index
));
4337 /* Value is non-zero if P is a pointer to a live Lisp Misc on
4338 the heap. M is a pointer to the mem_block for P. */
4341 live_misc_p (struct mem_node
*m
, void *p
)
4343 if (m
->type
== MEM_TYPE_MISC
)
4345 struct marker_block
*b
= (struct marker_block
*) m
->start
;
4346 ptrdiff_t offset
= (char *) p
- (char *) &b
->markers
[0];
4348 /* P must point to the start of a Lisp_Misc, not be
4349 one of the unused cells in the current misc block,
4350 and not be on the free-list. */
4352 && offset
% sizeof b
->markers
[0] == 0
4353 && offset
< (MARKER_BLOCK_SIZE
* sizeof b
->markers
[0])
4354 && (b
!= marker_block
4355 || offset
/ sizeof b
->markers
[0] < marker_block_index
)
4356 && ((union Lisp_Misc
*) p
)->u_any
.type
!= Lisp_Misc_Free
);
4363 /* Value is non-zero if P is a pointer to a live vector-like object.
4364 M is a pointer to the mem_block for P. */
4367 live_vector_p (struct mem_node
*m
, void *p
)
4369 if (m
->type
== MEM_TYPE_VECTOR_BLOCK
)
4371 /* This memory node corresponds to a vector block. */
4372 struct vector_block
*block
= (struct vector_block
*) m
->start
;
4373 struct Lisp_Vector
*vector
= (struct Lisp_Vector
*) block
->data
;
4375 /* P is in the block's allocation range. Scan the block
4376 up to P and see whether P points to the start of some
4377 vector which is not on a free list. FIXME: check whether
4378 some allocation patterns (probably a lot of short vectors)
4379 may cause a substantial overhead of this loop. */
4380 while (VECTOR_IN_BLOCK (vector
, block
)
4381 && vector
<= (struct Lisp_Vector
*) p
)
4383 if (PSEUDOVECTOR_TYPEP (&vector
->header
, PVEC_FREE
))
4384 vector
= ADVANCE (vector
, (vector
->header
.size
4385 & PSEUDOVECTOR_SIZE_MASK
));
4386 else if (vector
== p
)
4389 vector
= ADVANCE (vector
, vector
->header
.next
.nbytes
);
4392 else if (m
->type
== MEM_TYPE_VECTORLIKE
&& p
== m
->start
)
4393 /* This memory node corresponds to a large vector. */
4399 /* Value is non-zero if P is a pointer to a live buffer. M is a
4400 pointer to the mem_block for P. */
4403 live_buffer_p (struct mem_node
*m
, void *p
)
4405 /* P must point to the start of the block, and the buffer
4406 must not have been killed. */
4407 return (m
->type
== MEM_TYPE_BUFFER
4409 && !NILP (((struct buffer
*) p
)->INTERNAL_FIELD (name
)));
4412 #endif /* GC_MARK_STACK || defined GC_MALLOC_CHECK */
4416 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4418 /* Array of objects that are kept alive because the C stack contains
4419 a pattern that looks like a reference to them . */
4421 #define MAX_ZOMBIES 10
4422 static Lisp_Object zombies
[MAX_ZOMBIES
];
4424 /* Number of zombie objects. */
4426 static EMACS_INT nzombies
;
4428 /* Number of garbage collections. */
4430 static EMACS_INT ngcs
;
4432 /* Average percentage of zombies per collection. */
4434 static double avg_zombies
;
4436 /* Max. number of live and zombie objects. */
4438 static EMACS_INT max_live
, max_zombies
;
4440 /* Average number of live objects per GC. */
4442 static double avg_live
;
4444 DEFUN ("gc-status", Fgc_status
, Sgc_status
, 0, 0, "",
4445 doc
: /* Show information about live and zombie objects. */)
4448 Lisp_Object args
[8], zombie_list
= Qnil
;
4450 for (i
= 0; i
< min (MAX_ZOMBIES
, nzombies
); i
++)
4451 zombie_list
= Fcons (zombies
[i
], zombie_list
);
4452 args
[0] = build_string ("%d GCs, avg live/zombies = %.2f/%.2f (%f%%), max %d/%d\nzombies: %S");
4453 args
[1] = make_number (ngcs
);
4454 args
[2] = make_float (avg_live
);
4455 args
[3] = make_float (avg_zombies
);
4456 args
[4] = make_float (avg_zombies
/ avg_live
/ 100);
4457 args
[5] = make_number (max_live
);
4458 args
[6] = make_number (max_zombies
);
4459 args
[7] = zombie_list
;
4460 return Fmessage (8, args
);
4463 #endif /* GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES */
4466 /* Mark OBJ if we can prove it's a Lisp_Object. */
4469 mark_maybe_object (Lisp_Object obj
)
4477 po
= (void *) XPNTR (obj
);
4484 switch (XTYPE (obj
))
4487 mark_p
= (live_string_p (m
, po
)
4488 && !STRING_MARKED_P ((struct Lisp_String
*) po
));
4492 mark_p
= (live_cons_p (m
, po
) && !CONS_MARKED_P (XCONS (obj
)));
4496 mark_p
= (live_symbol_p (m
, po
) && !XSYMBOL (obj
)->gcmarkbit
);
4500 mark_p
= (live_float_p (m
, po
) && !FLOAT_MARKED_P (XFLOAT (obj
)));
4503 case Lisp_Vectorlike
:
4504 /* Note: can't check BUFFERP before we know it's a
4505 buffer because checking that dereferences the pointer
4506 PO which might point anywhere. */
4507 if (live_vector_p (m
, po
))
4508 mark_p
= !SUBRP (obj
) && !VECTOR_MARKED_P (XVECTOR (obj
));
4509 else if (live_buffer_p (m
, po
))
4510 mark_p
= BUFFERP (obj
) && !VECTOR_MARKED_P (XBUFFER (obj
));
4514 mark_p
= (live_misc_p (m
, po
) && !XMISCANY (obj
)->gcmarkbit
);
4523 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4524 if (nzombies
< MAX_ZOMBIES
)
4525 zombies
[nzombies
] = obj
;
4534 /* If P points to Lisp data, mark that as live if it isn't already
4538 mark_maybe_pointer (void *p
)
4542 /* Quickly rule out some values which can't point to Lisp data.
4543 USE_LSB_TAG needs Lisp data to be aligned on multiples of GCALIGNMENT.
4544 Otherwise, assume that Lisp data is aligned on even addresses. */
4545 if ((intptr_t) p
% (USE_LSB_TAG
? GCALIGNMENT
: 2))
4551 Lisp_Object obj
= Qnil
;
4555 case MEM_TYPE_NON_LISP
:
4556 /* Nothing to do; not a pointer to Lisp memory. */
4559 case MEM_TYPE_BUFFER
:
4560 if (live_buffer_p (m
, p
) && !VECTOR_MARKED_P ((struct buffer
*)p
))
4561 XSETVECTOR (obj
, p
);
4565 if (live_cons_p (m
, p
) && !CONS_MARKED_P ((struct Lisp_Cons
*) p
))
4569 case MEM_TYPE_STRING
:
4570 if (live_string_p (m
, p
)
4571 && !STRING_MARKED_P ((struct Lisp_String
*) p
))
4572 XSETSTRING (obj
, p
);
4576 if (live_misc_p (m
, p
) && !((struct Lisp_Free
*) p
)->gcmarkbit
)
4580 case MEM_TYPE_SYMBOL
:
4581 if (live_symbol_p (m
, p
) && !((struct Lisp_Symbol
*) p
)->gcmarkbit
)
4582 XSETSYMBOL (obj
, p
);
4585 case MEM_TYPE_FLOAT
:
4586 if (live_float_p (m
, p
) && !FLOAT_MARKED_P (p
))
4590 case MEM_TYPE_VECTORLIKE
:
4591 case MEM_TYPE_VECTOR_BLOCK
:
4592 if (live_vector_p (m
, p
))
4595 XSETVECTOR (tem
, p
);
4596 if (!SUBRP (tem
) && !VECTOR_MARKED_P (XVECTOR (tem
)))
4611 /* Alignment of pointer values. Use alignof, as it sometimes returns
4612 a smaller alignment than GCC's __alignof__ and mark_memory might
4613 miss objects if __alignof__ were used. */
4614 #define GC_POINTER_ALIGNMENT alignof (void *)
4616 /* Define POINTERS_MIGHT_HIDE_IN_OBJECTS to 1 if marking via C pointers does
4617 not suffice, which is the typical case. A host where a Lisp_Object is
4618 wider than a pointer might allocate a Lisp_Object in non-adjacent halves.
4619 If USE_LSB_TAG, the bottom half is not a valid pointer, but it should
4620 suffice to widen it to to a Lisp_Object and check it that way. */
4621 #if USE_LSB_TAG || VAL_MAX < UINTPTR_MAX
4622 # if !USE_LSB_TAG && VAL_MAX < UINTPTR_MAX >> GCTYPEBITS
4623 /* If tag bits straddle pointer-word boundaries, neither mark_maybe_pointer
4624 nor mark_maybe_object can follow the pointers. This should not occur on
4625 any practical porting target. */
4626 # error "MSB type bits straddle pointer-word boundaries"
4628 /* Marking via C pointers does not suffice, because Lisp_Objects contain
4629 pointer words that hold pointers ORed with type bits. */
4630 # define POINTERS_MIGHT_HIDE_IN_OBJECTS 1
4632 /* Marking via C pointers suffices, because Lisp_Objects contain pointer
4633 words that hold unmodified pointers. */
4634 # define POINTERS_MIGHT_HIDE_IN_OBJECTS 0
4637 /* Mark Lisp objects referenced from the address range START+OFFSET..END
4638 or END+OFFSET..START. */
4641 mark_memory (void *start
, void *end
)
4642 #if defined (__clang__) && defined (__has_feature)
4643 #if __has_feature(address_sanitizer)
4644 /* Do not allow -faddress-sanitizer to check this function, since it
4645 crosses the function stack boundary, and thus would yield many
4647 __attribute__((no_address_safety_analysis
))
4654 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4658 /* Make START the pointer to the start of the memory region,
4659 if it isn't already. */
4667 /* Mark Lisp data pointed to. This is necessary because, in some
4668 situations, the C compiler optimizes Lisp objects away, so that
4669 only a pointer to them remains. Example:
4671 DEFUN ("testme", Ftestme, Stestme, 0, 0, 0, "")
4674 Lisp_Object obj = build_string ("test");
4675 struct Lisp_String *s = XSTRING (obj);
4676 Fgarbage_collect ();
4677 fprintf (stderr, "test `%s'\n", s->data);
4681 Here, `obj' isn't really used, and the compiler optimizes it
4682 away. The only reference to the life string is through the
4685 for (pp
= start
; (void *) pp
< end
; pp
++)
4686 for (i
= 0; i
< sizeof *pp
; i
+= GC_POINTER_ALIGNMENT
)
4688 void *p
= *(void **) ((char *) pp
+ i
);
4689 mark_maybe_pointer (p
);
4690 if (POINTERS_MIGHT_HIDE_IN_OBJECTS
)
4691 mark_maybe_object (XIL ((intptr_t) p
));
4695 /* setjmp will work with GCC unless NON_SAVING_SETJMP is defined in
4696 the GCC system configuration. In gcc 3.2, the only systems for
4697 which this is so are i386-sco5 non-ELF, i386-sysv3 (maybe included
4698 by others?) and ns32k-pc532-min. */
4700 #if !defined GC_SAVE_REGISTERS_ON_STACK && !defined GC_SETJMP_WORKS
4702 static int setjmp_tested_p
, longjmps_done
;
4704 #define SETJMP_WILL_LIKELY_WORK "\
4706 Emacs garbage collector has been changed to use conservative stack\n\
4707 marking. Emacs has determined that the method it uses to do the\n\
4708 marking will likely work on your system, but this isn't sure.\n\
4710 If you are a system-programmer, or can get the help of a local wizard\n\
4711 who is, please take a look at the function mark_stack in alloc.c, and\n\
4712 verify that the methods used are appropriate for your system.\n\
4714 Please mail the result to <emacs-devel@gnu.org>.\n\
4717 #define SETJMP_WILL_NOT_WORK "\
4719 Emacs garbage collector has been changed to use conservative stack\n\
4720 marking. Emacs has determined that the default method it uses to do the\n\
4721 marking will not work on your system. We will need a system-dependent\n\
4722 solution for your system.\n\
4724 Please take a look at the function mark_stack in alloc.c, and\n\
4725 try to find a way to make it work on your system.\n\
4727 Note that you may get false negatives, depending on the compiler.\n\
4728 In particular, you need to use -O with GCC for this test.\n\
4730 Please mail the result to <emacs-devel@gnu.org>.\n\
4734 /* Perform a quick check if it looks like setjmp saves registers in a
4735 jmp_buf. Print a message to stderr saying so. When this test
4736 succeeds, this is _not_ a proof that setjmp is sufficient for
4737 conservative stack marking. Only the sources or a disassembly
4748 /* Arrange for X to be put in a register. */
4754 if (longjmps_done
== 1)
4756 /* Came here after the longjmp at the end of the function.
4758 If x == 1, the longjmp has restored the register to its
4759 value before the setjmp, and we can hope that setjmp
4760 saves all such registers in the jmp_buf, although that
4763 For other values of X, either something really strange is
4764 taking place, or the setjmp just didn't save the register. */
4767 fprintf (stderr
, SETJMP_WILL_LIKELY_WORK
);
4770 fprintf (stderr
, SETJMP_WILL_NOT_WORK
);
4777 if (longjmps_done
== 1)
4781 #endif /* not GC_SAVE_REGISTERS_ON_STACK && not GC_SETJMP_WORKS */
4784 #if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
4786 /* Abort if anything GCPRO'd doesn't survive the GC. */
4794 for (p
= gcprolist
; p
; p
= p
->next
)
4795 for (i
= 0; i
< p
->nvars
; ++i
)
4796 if (!survives_gc_p (p
->var
[i
]))
4797 /* FIXME: It's not necessarily a bug. It might just be that the
4798 GCPRO is unnecessary or should release the object sooner. */
4802 #elif GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
4809 fprintf (stderr
, "\nZombies kept alive = %"pI
"d:\n", nzombies
);
4810 for (i
= 0; i
< min (MAX_ZOMBIES
, nzombies
); ++i
)
4812 fprintf (stderr
, " %d = ", i
);
4813 debug_print (zombies
[i
]);
4817 #endif /* GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES */
4820 /* Mark live Lisp objects on the C stack.
4822 There are several system-dependent problems to consider when
4823 porting this to new architectures:
4827 We have to mark Lisp objects in CPU registers that can hold local
4828 variables or are used to pass parameters.
4830 If GC_SAVE_REGISTERS_ON_STACK is defined, it should expand to
4831 something that either saves relevant registers on the stack, or
4832 calls mark_maybe_object passing it each register's contents.
4834 If GC_SAVE_REGISTERS_ON_STACK is not defined, the current
4835 implementation assumes that calling setjmp saves registers we need
4836 to see in a jmp_buf which itself lies on the stack. This doesn't
4837 have to be true! It must be verified for each system, possibly
4838 by taking a look at the source code of setjmp.
4840 If __builtin_unwind_init is available (defined by GCC >= 2.8) we
4841 can use it as a machine independent method to store all registers
4842 to the stack. In this case the macros described in the previous
4843 two paragraphs are not used.
4847 Architectures differ in the way their processor stack is organized.
4848 For example, the stack might look like this
4851 | Lisp_Object | size = 4
4853 | something else | size = 2
4855 | Lisp_Object | size = 4
4859 In such a case, not every Lisp_Object will be aligned equally. To
4860 find all Lisp_Object on the stack it won't be sufficient to walk
4861 the stack in steps of 4 bytes. Instead, two passes will be
4862 necessary, one starting at the start of the stack, and a second
4863 pass starting at the start of the stack + 2. Likewise, if the
4864 minimal alignment of Lisp_Objects on the stack is 1, four passes
4865 would be necessary, each one starting with one byte more offset
4866 from the stack start. */
4873 #ifdef HAVE___BUILTIN_UNWIND_INIT
4874 /* Force callee-saved registers and register windows onto the stack.
4875 This is the preferred method if available, obviating the need for
4876 machine dependent methods. */
4877 __builtin_unwind_init ();
4879 #else /* not HAVE___BUILTIN_UNWIND_INIT */
4880 #ifndef GC_SAVE_REGISTERS_ON_STACK
4881 /* jmp_buf may not be aligned enough on darwin-ppc64 */
4882 union aligned_jmpbuf
{
4886 volatile int stack_grows_down_p
= (char *) &j
> (char *) stack_base
;
4888 /* This trick flushes the register windows so that all the state of
4889 the process is contained in the stack. */
4890 /* Fixme: Code in the Boehm GC suggests flushing (with `flushrs') is
4891 needed on ia64 too. See mach_dep.c, where it also says inline
4892 assembler doesn't work with relevant proprietary compilers. */
4894 #if defined (__sparc64__) && defined (__FreeBSD__)
4895 /* FreeBSD does not have a ta 3 handler. */
4902 /* Save registers that we need to see on the stack. We need to see
4903 registers used to hold register variables and registers used to
4905 #ifdef GC_SAVE_REGISTERS_ON_STACK
4906 GC_SAVE_REGISTERS_ON_STACK (end
);
4907 #else /* not GC_SAVE_REGISTERS_ON_STACK */
4909 #ifndef GC_SETJMP_WORKS /* If it hasn't been checked yet that
4910 setjmp will definitely work, test it
4911 and print a message with the result
4913 if (!setjmp_tested_p
)
4915 setjmp_tested_p
= 1;
4918 #endif /* GC_SETJMP_WORKS */
4921 end
= stack_grows_down_p
? (char *) &j
+ sizeof j
: (char *) &j
;
4922 #endif /* not GC_SAVE_REGISTERS_ON_STACK */
4923 #endif /* not HAVE___BUILTIN_UNWIND_INIT */
4925 /* This assumes that the stack is a contiguous region in memory. If
4926 that's not the case, something has to be done here to iterate
4927 over the stack segments. */
4928 mark_memory (stack_base
, end
);
4930 /* Allow for marking a secondary stack, like the register stack on the
4932 #ifdef GC_MARK_SECONDARY_STACK
4933 GC_MARK_SECONDARY_STACK ();
4936 #if GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS
4941 #endif /* GC_MARK_STACK != 0 */
4944 /* Determine whether it is safe to access memory at address P. */
4946 valid_pointer_p (void *p
)
4949 return w32_valid_pointer_p (p
, 16);
4953 /* Obviously, we cannot just access it (we would SEGV trying), so we
4954 trick the o/s to tell us whether p is a valid pointer.
4955 Unfortunately, we cannot use NULL_DEVICE here, as emacs_write may
4956 not validate p in that case. */
4960 int valid
= (emacs_write (fd
[1], (char *) p
, 16) == 16);
4961 emacs_close (fd
[1]);
4962 emacs_close (fd
[0]);
4970 /* Return 1 if OBJ is a valid lisp object.
4971 Return 0 if OBJ is NOT a valid lisp object.
4972 Return -1 if we cannot validate OBJ.
4973 This function can be quite slow,
4974 so it should only be used in code for manual debugging. */
4977 valid_lisp_object_p (Lisp_Object obj
)
4987 p
= (void *) XPNTR (obj
);
4988 if (PURE_POINTER_P (p
))
4992 return valid_pointer_p (p
);
4999 int valid
= valid_pointer_p (p
);
5011 case MEM_TYPE_NON_LISP
:
5014 case MEM_TYPE_BUFFER
:
5015 return live_buffer_p (m
, p
);
5018 return live_cons_p (m
, p
);
5020 case MEM_TYPE_STRING
:
5021 return live_string_p (m
, p
);
5024 return live_misc_p (m
, p
);
5026 case MEM_TYPE_SYMBOL
:
5027 return live_symbol_p (m
, p
);
5029 case MEM_TYPE_FLOAT
:
5030 return live_float_p (m
, p
);
5032 case MEM_TYPE_VECTORLIKE
:
5033 case MEM_TYPE_VECTOR_BLOCK
:
5034 return live_vector_p (m
, p
);
5047 /***********************************************************************
5048 Pure Storage Management
5049 ***********************************************************************/
5051 /* Allocate room for SIZE bytes from pure Lisp storage and return a
5052 pointer to it. TYPE is the Lisp type for which the memory is
5053 allocated. TYPE < 0 means it's not used for a Lisp object. */
5056 pure_alloc (size_t size
, int type
)
5060 size_t alignment
= GCALIGNMENT
;
5062 size_t alignment
= alignof (EMACS_INT
);
5064 /* Give Lisp_Floats an extra alignment. */
5065 if (type
== Lisp_Float
)
5066 alignment
= alignof (struct Lisp_Float
);
5072 /* Allocate space for a Lisp object from the beginning of the free
5073 space with taking account of alignment. */
5074 result
= ALIGN (purebeg
+ pure_bytes_used_lisp
, alignment
);
5075 pure_bytes_used_lisp
= ((char *)result
- (char *)purebeg
) + size
;
5079 /* Allocate space for a non-Lisp object from the end of the free
5081 pure_bytes_used_non_lisp
+= size
;
5082 result
= purebeg
+ pure_size
- pure_bytes_used_non_lisp
;
5084 pure_bytes_used
= pure_bytes_used_lisp
+ pure_bytes_used_non_lisp
;
5086 if (pure_bytes_used
<= pure_size
)
5089 /* Don't allocate a large amount here,
5090 because it might get mmap'd and then its address
5091 might not be usable. */
5092 purebeg
= xmalloc (10000);
5094 pure_bytes_used_before_overflow
+= pure_bytes_used
- size
;
5095 pure_bytes_used
= 0;
5096 pure_bytes_used_lisp
= pure_bytes_used_non_lisp
= 0;
5101 /* Print a warning if PURESIZE is too small. */
5104 check_pure_size (void)
5106 if (pure_bytes_used_before_overflow
)
5107 message (("emacs:0:Pure Lisp storage overflow (approx. %"pI
"d"
5109 pure_bytes_used
+ pure_bytes_used_before_overflow
);
5113 /* Find the byte sequence {DATA[0], ..., DATA[NBYTES-1], '\0'} from
5114 the non-Lisp data pool of the pure storage, and return its start
5115 address. Return NULL if not found. */
5118 find_string_data_in_pure (const char *data
, ptrdiff_t nbytes
)
5121 ptrdiff_t skip
, bm_skip
[256], last_char_skip
, infinity
, start
, start_max
;
5122 const unsigned char *p
;
5125 if (pure_bytes_used_non_lisp
<= nbytes
)
5128 /* Set up the Boyer-Moore table. */
5130 for (i
= 0; i
< 256; i
++)
5133 p
= (const unsigned char *) data
;
5135 bm_skip
[*p
++] = skip
;
5137 last_char_skip
= bm_skip
['\0'];
5139 non_lisp_beg
= purebeg
+ pure_size
- pure_bytes_used_non_lisp
;
5140 start_max
= pure_bytes_used_non_lisp
- (nbytes
+ 1);
5142 /* See the comments in the function `boyer_moore' (search.c) for the
5143 use of `infinity'. */
5144 infinity
= pure_bytes_used_non_lisp
+ 1;
5145 bm_skip
['\0'] = infinity
;
5147 p
= (const unsigned char *) non_lisp_beg
+ nbytes
;
5151 /* Check the last character (== '\0'). */
5154 start
+= bm_skip
[*(p
+ start
)];
5156 while (start
<= start_max
);
5158 if (start
< infinity
)
5159 /* Couldn't find the last character. */
5162 /* No less than `infinity' means we could find the last
5163 character at `p[start - infinity]'. */
5166 /* Check the remaining characters. */
5167 if (memcmp (data
, non_lisp_beg
+ start
, nbytes
) == 0)
5169 return non_lisp_beg
+ start
;
5171 start
+= last_char_skip
;
5173 while (start
<= start_max
);
5179 /* Return a string allocated in pure space. DATA is a buffer holding
5180 NCHARS characters, and NBYTES bytes of string data. MULTIBYTE
5181 non-zero means make the result string multibyte.
5183 Must get an error if pure storage is full, since if it cannot hold
5184 a large string it may be able to hold conses that point to that
5185 string; then the string is not protected from gc. */
5188 make_pure_string (const char *data
,
5189 ptrdiff_t nchars
, ptrdiff_t nbytes
, int multibyte
)
5192 struct Lisp_String
*s
= pure_alloc (sizeof *s
, Lisp_String
);
5193 s
->data
= (unsigned char *) find_string_data_in_pure (data
, nbytes
);
5194 if (s
->data
== NULL
)
5196 s
->data
= pure_alloc (nbytes
+ 1, -1);
5197 memcpy (s
->data
, data
, nbytes
);
5198 s
->data
[nbytes
] = '\0';
5201 s
->size_byte
= multibyte
? nbytes
: -1;
5202 s
->intervals
= NULL
;
5203 XSETSTRING (string
, s
);
5207 /* Return a string allocated in pure space. Do not
5208 allocate the string data, just point to DATA. */
5211 make_pure_c_string (const char *data
, ptrdiff_t nchars
)
5214 struct Lisp_String
*s
= pure_alloc (sizeof *s
, Lisp_String
);
5217 s
->data
= (unsigned char *) data
;
5218 s
->intervals
= NULL
;
5219 XSETSTRING (string
, s
);
5223 /* Return a cons allocated from pure space. Give it pure copies
5224 of CAR as car and CDR as cdr. */
5227 pure_cons (Lisp_Object car
, Lisp_Object cdr
)
5230 struct Lisp_Cons
*p
= pure_alloc (sizeof *p
, Lisp_Cons
);
5232 XSETCAR (new, Fpurecopy (car
));
5233 XSETCDR (new, Fpurecopy (cdr
));
5238 /* Value is a float object with value NUM allocated from pure space. */
5241 make_pure_float (double num
)
5244 struct Lisp_Float
*p
= pure_alloc (sizeof *p
, Lisp_Float
);
5246 XFLOAT_INIT (new, num
);
5251 /* Return a vector with room for LEN Lisp_Objects allocated from
5255 make_pure_vector (ptrdiff_t len
)
5258 size_t size
= header_size
+ len
* word_size
;
5259 struct Lisp_Vector
*p
= pure_alloc (size
, Lisp_Vectorlike
);
5260 XSETVECTOR (new, p
);
5261 XVECTOR (new)->header
.size
= len
;
5266 DEFUN ("purecopy", Fpurecopy
, Spurecopy
, 1, 1, 0,
5267 doc
: /* Make a copy of object OBJ in pure storage.
5268 Recursively copies contents of vectors and cons cells.
5269 Does not copy symbols. Copies strings without text properties. */)
5270 (register Lisp_Object obj
)
5272 if (NILP (Vpurify_flag
))
5275 if (PURE_POINTER_P (XPNTR (obj
)))
5278 if (HASH_TABLE_P (Vpurify_flag
)) /* Hash consing. */
5280 Lisp_Object tmp
= Fgethash (obj
, Vpurify_flag
, Qnil
);
5286 obj
= pure_cons (XCAR (obj
), XCDR (obj
));
5287 else if (FLOATP (obj
))
5288 obj
= make_pure_float (XFLOAT_DATA (obj
));
5289 else if (STRINGP (obj
))
5290 obj
= make_pure_string (SSDATA (obj
), SCHARS (obj
),
5292 STRING_MULTIBYTE (obj
));
5293 else if (COMPILEDP (obj
) || VECTORP (obj
))
5295 register struct Lisp_Vector
*vec
;
5296 register ptrdiff_t i
;
5300 if (size
& PSEUDOVECTOR_FLAG
)
5301 size
&= PSEUDOVECTOR_SIZE_MASK
;
5302 vec
= XVECTOR (make_pure_vector (size
));
5303 for (i
= 0; i
< size
; i
++)
5304 vec
->contents
[i
] = Fpurecopy (AREF (obj
, i
));
5305 if (COMPILEDP (obj
))
5307 XSETPVECTYPE (vec
, PVEC_COMPILED
);
5308 XSETCOMPILED (obj
, vec
);
5311 XSETVECTOR (obj
, vec
);
5313 else if (MARKERP (obj
))
5314 error ("Attempt to copy a marker to pure storage");
5316 /* Not purified, don't hash-cons. */
5319 if (HASH_TABLE_P (Vpurify_flag
)) /* Hash consing. */
5320 Fputhash (obj
, obj
, Vpurify_flag
);
5327 /***********************************************************************
5329 ***********************************************************************/
5331 /* Put an entry in staticvec, pointing at the variable with address
5335 staticpro (Lisp_Object
*varaddress
)
5337 staticvec
[staticidx
++] = varaddress
;
5338 if (staticidx
>= NSTATICS
)
5343 /***********************************************************************
5345 ***********************************************************************/
5347 /* Temporarily prevent garbage collection. */
5350 inhibit_garbage_collection (void)
5352 ptrdiff_t count
= SPECPDL_INDEX ();
5354 specbind (Qgc_cons_threshold
, make_number (MOST_POSITIVE_FIXNUM
));
5358 /* Used to avoid possible overflows when
5359 converting from C to Lisp integers. */
5361 static inline Lisp_Object
5362 bounded_number (EMACS_INT number
)
5364 return make_number (min (MOST_POSITIVE_FIXNUM
, number
));
5367 DEFUN ("garbage-collect", Fgarbage_collect
, Sgarbage_collect
, 0, 0, "",
5368 doc
: /* Reclaim storage for Lisp objects no longer needed.
5369 Garbage collection happens automatically if you cons more than
5370 `gc-cons-threshold' bytes of Lisp data since previous garbage collection.
5371 `garbage-collect' normally returns a list with info on amount of space in use,
5372 where each entry has the form (NAME SIZE USED FREE), where:
5373 - NAME is a symbol describing the kind of objects this entry represents,
5374 - SIZE is the number of bytes used by each one,
5375 - USED is the number of those objects that were found live in the heap,
5376 - FREE is the number of those objects that are not live but that Emacs
5377 keeps around for future allocations (maybe because it does not know how
5378 to return them to the OS).
5379 However, if there was overflow in pure space, `garbage-collect'
5380 returns nil, because real GC can't be done.
5381 See Info node `(elisp)Garbage Collection'. */)
5384 register struct specbinding
*bind
;
5385 register struct buffer
*nextb
;
5386 char stack_top_variable
;
5389 Lisp_Object total
[11];
5390 ptrdiff_t count
= SPECPDL_INDEX ();
5396 /* Can't GC if pure storage overflowed because we can't determine
5397 if something is a pure object or not. */
5398 if (pure_bytes_used_before_overflow
)
5403 /* Don't keep undo information around forever.
5404 Do this early on, so it is no problem if the user quits. */
5405 FOR_EACH_BUFFER (nextb
)
5406 compact_buffer (nextb
);
5408 start
= current_emacs_time ();
5410 /* In case user calls debug_print during GC,
5411 don't let that cause a recursive GC. */
5412 consing_since_gc
= 0;
5414 /* Save what's currently displayed in the echo area. */
5415 message_p
= push_message ();
5416 record_unwind_protect (pop_message_unwind
, Qnil
);
5418 /* Save a copy of the contents of the stack, for debugging. */
5419 #if MAX_SAVE_STACK > 0
5420 if (NILP (Vpurify_flag
))
5423 ptrdiff_t stack_size
;
5424 if (&stack_top_variable
< stack_bottom
)
5426 stack
= &stack_top_variable
;
5427 stack_size
= stack_bottom
- &stack_top_variable
;
5431 stack
= stack_bottom
;
5432 stack_size
= &stack_top_variable
- stack_bottom
;
5434 if (stack_size
<= MAX_SAVE_STACK
)
5436 if (stack_copy_size
< stack_size
)
5438 stack_copy
= xrealloc (stack_copy
, stack_size
);
5439 stack_copy_size
= stack_size
;
5441 memcpy (stack_copy
, stack
, stack_size
);
5444 #endif /* MAX_SAVE_STACK > 0 */
5446 if (garbage_collection_messages
)
5447 message1_nolog ("Garbage collecting...");
5451 shrink_regexp_cache ();
5455 /* Mark all the special slots that serve as the roots of accessibility. */
5457 for (i
= 0; i
< staticidx
; i
++)
5458 mark_object (*staticvec
[i
]);
5460 for (bind
= specpdl
; bind
!= specpdl_ptr
; bind
++)
5462 mark_object (bind
->symbol
);
5463 mark_object (bind
->old_value
);
5471 extern void xg_mark_data (void);
5476 #if (GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS \
5477 || GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS)
5481 register struct gcpro
*tail
;
5482 for (tail
= gcprolist
; tail
; tail
= tail
->next
)
5483 for (i
= 0; i
< tail
->nvars
; i
++)
5484 mark_object (tail
->var
[i
]);
5488 struct catchtag
*catch;
5489 struct handler
*handler
;
5491 for (catch = catchlist
; catch; catch = catch->next
)
5493 mark_object (catch->tag
);
5494 mark_object (catch->val
);
5496 for (handler
= handlerlist
; handler
; handler
= handler
->next
)
5498 mark_object (handler
->handler
);
5499 mark_object (handler
->var
);
5505 #ifdef HAVE_WINDOW_SYSTEM
5506 mark_fringe_data ();
5509 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
5513 /* Everything is now marked, except for the things that require special
5514 finalization, i.e. the undo_list.
5515 Look thru every buffer's undo list
5516 for elements that update markers that were not marked,
5518 FOR_EACH_BUFFER (nextb
)
5520 /* If a buffer's undo list is Qt, that means that undo is
5521 turned off in that buffer. Calling truncate_undo_list on
5522 Qt tends to return NULL, which effectively turns undo back on.
5523 So don't call truncate_undo_list if undo_list is Qt. */
5524 if (! EQ (nextb
->INTERNAL_FIELD (undo_list
), Qt
))
5526 Lisp_Object tail
, prev
;
5527 tail
= nextb
->INTERNAL_FIELD (undo_list
);
5529 while (CONSP (tail
))
5531 if (CONSP (XCAR (tail
))
5532 && MARKERP (XCAR (XCAR (tail
)))
5533 && !XMARKER (XCAR (XCAR (tail
)))->gcmarkbit
)
5536 nextb
->INTERNAL_FIELD (undo_list
) = tail
= XCDR (tail
);
5540 XSETCDR (prev
, tail
);
5550 /* Now that we have stripped the elements that need not be in the
5551 undo_list any more, we can finally mark the list. */
5552 mark_object (nextb
->INTERNAL_FIELD (undo_list
));
5557 /* Clear the mark bits that we set in certain root slots. */
5559 unmark_byte_stack ();
5560 VECTOR_UNMARK (&buffer_defaults
);
5561 VECTOR_UNMARK (&buffer_local_symbols
);
5563 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES && 0
5573 consing_since_gc
= 0;
5574 if (gc_cons_threshold
< GC_DEFAULT_THRESHOLD
/ 10)
5575 gc_cons_threshold
= GC_DEFAULT_THRESHOLD
/ 10;
5577 gc_relative_threshold
= 0;
5578 if (FLOATP (Vgc_cons_percentage
))
5579 { /* Set gc_cons_combined_threshold. */
5582 tot
+= total_conses
* sizeof (struct Lisp_Cons
);
5583 tot
+= total_symbols
* sizeof (struct Lisp_Symbol
);
5584 tot
+= total_markers
* sizeof (union Lisp_Misc
);
5585 tot
+= total_string_bytes
;
5586 tot
+= total_vector_slots
* word_size
;
5587 tot
+= total_floats
* sizeof (struct Lisp_Float
);
5588 tot
+= total_intervals
* sizeof (struct interval
);
5589 tot
+= total_strings
* sizeof (struct Lisp_String
);
5591 tot
*= XFLOAT_DATA (Vgc_cons_percentage
);
5594 if (tot
< TYPE_MAXIMUM (EMACS_INT
))
5595 gc_relative_threshold
= tot
;
5597 gc_relative_threshold
= TYPE_MAXIMUM (EMACS_INT
);
5601 if (garbage_collection_messages
)
5603 if (message_p
|| minibuf_level
> 0)
5606 message1_nolog ("Garbage collecting...done");
5609 unbind_to (count
, Qnil
);
5611 total
[0] = list4 (Qcons
, make_number (sizeof (struct Lisp_Cons
)),
5612 bounded_number (total_conses
),
5613 bounded_number (total_free_conses
));
5615 total
[1] = list4 (Qsymbol
, make_number (sizeof (struct Lisp_Symbol
)),
5616 bounded_number (total_symbols
),
5617 bounded_number (total_free_symbols
));
5619 total
[2] = list4 (Qmisc
, make_number (sizeof (union Lisp_Misc
)),
5620 bounded_number (total_markers
),
5621 bounded_number (total_free_markers
));
5623 total
[3] = list4 (Qstring
, make_number (sizeof (struct Lisp_String
)),
5624 bounded_number (total_strings
),
5625 bounded_number (total_free_strings
));
5627 total
[4] = list3 (Qstring_bytes
, make_number (1),
5628 bounded_number (total_string_bytes
));
5630 total
[5] = list3 (Qvector
, make_number (sizeof (struct Lisp_Vector
)),
5631 bounded_number (total_vectors
));
5633 total
[6] = list4 (Qvector_slots
, make_number (word_size
),
5634 bounded_number (total_vector_slots
),
5635 bounded_number (total_free_vector_slots
));
5637 total
[7] = list4 (Qfloat
, make_number (sizeof (struct Lisp_Float
)),
5638 bounded_number (total_floats
),
5639 bounded_number (total_free_floats
));
5641 total
[8] = list4 (Qinterval
, make_number (sizeof (struct interval
)),
5642 bounded_number (total_intervals
),
5643 bounded_number (total_free_intervals
));
5645 total
[9] = list3 (Qbuffer
, make_number (sizeof (struct buffer
)),
5646 bounded_number (total_buffers
));
5648 total
[10] = list4 (Qheap
, make_number (1024),
5649 #ifdef DOUG_LEA_MALLOC
5650 bounded_number ((mallinfo ().uordblks
+ 1023) >> 10),
5651 bounded_number ((mallinfo ().fordblks
+ 1023) >> 10)
5657 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
5659 /* Compute average percentage of zombies. */
5661 (total_conses
+ total_symbols
+ total_markers
+ total_strings
5662 + total_vectors
+ total_floats
+ total_intervals
+ total_buffers
);
5664 avg_live
= (avg_live
* ngcs
+ nlive
) / (ngcs
+ 1);
5665 max_live
= max (nlive
, max_live
);
5666 avg_zombies
= (avg_zombies
* ngcs
+ nzombies
) / (ngcs
+ 1);
5667 max_zombies
= max (nzombies
, max_zombies
);
5672 if (!NILP (Vpost_gc_hook
))
5674 ptrdiff_t gc_count
= inhibit_garbage_collection ();
5675 safe_run_hooks (Qpost_gc_hook
);
5676 unbind_to (gc_count
, Qnil
);
5679 /* Accumulate statistics. */
5680 if (FLOATP (Vgc_elapsed
))
5682 EMACS_TIME since_start
= sub_emacs_time (current_emacs_time (), start
);
5683 Vgc_elapsed
= make_float (XFLOAT_DATA (Vgc_elapsed
)
5684 + EMACS_TIME_TO_DOUBLE (since_start
));
5689 return Flist (sizeof total
/ sizeof *total
, total
);
5693 /* Mark Lisp objects in glyph matrix MATRIX. Currently the
5694 only interesting objects referenced from glyphs are strings. */
5697 mark_glyph_matrix (struct glyph_matrix
*matrix
)
5699 struct glyph_row
*row
= matrix
->rows
;
5700 struct glyph_row
*end
= row
+ matrix
->nrows
;
5702 for (; row
< end
; ++row
)
5706 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
5708 struct glyph
*glyph
= row
->glyphs
[area
];
5709 struct glyph
*end_glyph
= glyph
+ row
->used
[area
];
5711 for (; glyph
< end_glyph
; ++glyph
)
5712 if (STRINGP (glyph
->object
)
5713 && !STRING_MARKED_P (XSTRING (glyph
->object
)))
5714 mark_object (glyph
->object
);
5720 /* Mark Lisp faces in the face cache C. */
5723 mark_face_cache (struct face_cache
*c
)
5728 for (i
= 0; i
< c
->used
; ++i
)
5730 struct face
*face
= FACE_FROM_ID (c
->f
, i
);
5734 for (j
= 0; j
< LFACE_VECTOR_SIZE
; ++j
)
5735 mark_object (face
->lface
[j
]);
5743 /* Mark reference to a Lisp_Object.
5744 If the object referred to has not been seen yet, recursively mark
5745 all the references contained in it. */
5747 #define LAST_MARKED_SIZE 500
5748 static Lisp_Object last_marked
[LAST_MARKED_SIZE
];
5749 static int last_marked_index
;
5751 /* For debugging--call abort when we cdr down this many
5752 links of a list, in mark_object. In debugging,
5753 the call to abort will hit a breakpoint.
5754 Normally this is zero and the check never goes off. */
5755 ptrdiff_t mark_object_loop_halt EXTERNALLY_VISIBLE
;
5758 mark_vectorlike (struct Lisp_Vector
*ptr
)
5760 ptrdiff_t size
= ptr
->header
.size
;
5763 eassert (!VECTOR_MARKED_P (ptr
));
5764 VECTOR_MARK (ptr
); /* Else mark it. */
5765 if (size
& PSEUDOVECTOR_FLAG
)
5766 size
&= PSEUDOVECTOR_SIZE_MASK
;
5768 /* Note that this size is not the memory-footprint size, but only
5769 the number of Lisp_Object fields that we should trace.
5770 The distinction is used e.g. by Lisp_Process which places extra
5771 non-Lisp_Object fields at the end of the structure... */
5772 for (i
= 0; i
< size
; i
++) /* ...and then mark its elements. */
5773 mark_object (ptr
->contents
[i
]);
5776 /* Like mark_vectorlike but optimized for char-tables (and
5777 sub-char-tables) assuming that the contents are mostly integers or
5781 mark_char_table (struct Lisp_Vector
*ptr
)
5783 int size
= ptr
->header
.size
& PSEUDOVECTOR_SIZE_MASK
;
5786 eassert (!VECTOR_MARKED_P (ptr
));
5788 for (i
= 0; i
< size
; i
++)
5790 Lisp_Object val
= ptr
->contents
[i
];
5792 if (INTEGERP (val
) || (SYMBOLP (val
) && XSYMBOL (val
)->gcmarkbit
))
5794 if (SUB_CHAR_TABLE_P (val
))
5796 if (! VECTOR_MARKED_P (XVECTOR (val
)))
5797 mark_char_table (XVECTOR (val
));
5804 /* Mark the chain of overlays starting at PTR. */
5807 mark_overlay (struct Lisp_Overlay
*ptr
)
5809 for (; ptr
&& !ptr
->gcmarkbit
; ptr
= ptr
->next
)
5812 mark_object (ptr
->start
);
5813 mark_object (ptr
->end
);
5814 mark_object (ptr
->plist
);
5818 /* Mark Lisp_Objects and special pointers in BUFFER. */
5821 mark_buffer (struct buffer
*buffer
)
5823 /* This is handled much like other pseudovectors... */
5824 mark_vectorlike ((struct Lisp_Vector
*) buffer
);
5826 /* ...but there are some buffer-specific things. */
5828 MARK_INTERVAL_TREE (buffer_get_intervals (buffer
));
5830 /* For now, we just don't mark the undo_list. It's done later in
5831 a special way just before the sweep phase, and after stripping
5832 some of its elements that are not needed any more. */
5834 mark_overlay (buffer_get_overlays (buffer
, OV_BEFORE
));
5835 mark_overlay (buffer_get_overlays (buffer
, OV_AFTER
));
5837 /* If this is an indirect buffer, mark its base buffer. */
5838 if (buffer
->base_buffer
&& !VECTOR_MARKED_P (buffer
->base_buffer
))
5839 mark_buffer (buffer
->base_buffer
);
5842 /* Determine type of generic Lisp_Object and mark it accordingly. */
5845 mark_object (Lisp_Object arg
)
5847 register Lisp_Object obj
= arg
;
5848 #ifdef GC_CHECK_MARKED_OBJECTS
5852 ptrdiff_t cdr_count
= 0;
5856 if (PURE_POINTER_P (XPNTR (obj
)))
5859 last_marked
[last_marked_index
++] = obj
;
5860 if (last_marked_index
== LAST_MARKED_SIZE
)
5861 last_marked_index
= 0;
5863 /* Perform some sanity checks on the objects marked here. Abort if
5864 we encounter an object we know is bogus. This increases GC time
5865 by ~80%, and requires compilation with GC_MARK_STACK != 0. */
5866 #ifdef GC_CHECK_MARKED_OBJECTS
5868 po
= (void *) XPNTR (obj
);
5870 /* Check that the object pointed to by PO is known to be a Lisp
5871 structure allocated from the heap. */
5872 #define CHECK_ALLOCATED() \
5874 m = mem_find (po); \
5879 /* Check that the object pointed to by PO is live, using predicate
5881 #define CHECK_LIVE(LIVEP) \
5883 if (!LIVEP (m, po)) \
5887 /* Check both of the above conditions. */
5888 #define CHECK_ALLOCATED_AND_LIVE(LIVEP) \
5890 CHECK_ALLOCATED (); \
5891 CHECK_LIVE (LIVEP); \
5894 #else /* not GC_CHECK_MARKED_OBJECTS */
5896 #define CHECK_LIVE(LIVEP) (void) 0
5897 #define CHECK_ALLOCATED_AND_LIVE(LIVEP) (void) 0
5899 #endif /* not GC_CHECK_MARKED_OBJECTS */
5901 switch (XTYPE (obj
))
5905 register struct Lisp_String
*ptr
= XSTRING (obj
);
5906 if (STRING_MARKED_P (ptr
))
5908 CHECK_ALLOCATED_AND_LIVE (live_string_p
);
5910 MARK_INTERVAL_TREE (ptr
->intervals
);
5911 #ifdef GC_CHECK_STRING_BYTES
5912 /* Check that the string size recorded in the string is the
5913 same as the one recorded in the sdata structure. */
5915 #endif /* GC_CHECK_STRING_BYTES */
5919 case Lisp_Vectorlike
:
5921 register struct Lisp_Vector
*ptr
= XVECTOR (obj
);
5922 register ptrdiff_t pvectype
;
5924 if (VECTOR_MARKED_P (ptr
))
5927 #ifdef GC_CHECK_MARKED_OBJECTS
5929 if (m
== MEM_NIL
&& !SUBRP (obj
)
5930 && po
!= &buffer_defaults
5931 && po
!= &buffer_local_symbols
)
5933 #endif /* GC_CHECK_MARKED_OBJECTS */
5935 if (ptr
->header
.size
& PSEUDOVECTOR_FLAG
)
5936 pvectype
= ((ptr
->header
.size
& PVEC_TYPE_MASK
)
5937 >> PSEUDOVECTOR_SIZE_BITS
);
5941 if (pvectype
!= PVEC_SUBR
&& pvectype
!= PVEC_BUFFER
)
5942 CHECK_LIVE (live_vector_p
);
5947 #ifdef GC_CHECK_MARKED_OBJECTS
5948 if (po
!= &buffer_defaults
&& po
!= &buffer_local_symbols
)
5957 #endif /* GC_CHECK_MARKED_OBJECTS */
5958 mark_buffer ((struct buffer
*) ptr
);
5962 { /* We could treat this just like a vector, but it is better
5963 to save the COMPILED_CONSTANTS element for last and avoid
5965 int size
= ptr
->header
.size
& PSEUDOVECTOR_SIZE_MASK
;
5969 for (i
= 0; i
< size
; i
++)
5970 if (i
!= COMPILED_CONSTANTS
)
5971 mark_object (ptr
->contents
[i
]);
5972 if (size
> COMPILED_CONSTANTS
)
5974 obj
= ptr
->contents
[COMPILED_CONSTANTS
];
5982 mark_vectorlike (ptr
);
5983 mark_face_cache (((struct frame
*) ptr
)->face_cache
);
5989 struct window
*w
= (struct window
*) ptr
;
5991 mark_vectorlike (ptr
);
5992 /* Mark glyphs for leaf windows. Marking window
5993 matrices is sufficient because frame matrices
5994 use the same glyph memory. */
5995 if (NILP (w
->hchild
) && NILP (w
->vchild
)
5996 && w
->current_matrix
)
5998 mark_glyph_matrix (w
->current_matrix
);
5999 mark_glyph_matrix (w
->desired_matrix
);
6004 case PVEC_HASH_TABLE
:
6006 struct Lisp_Hash_Table
*h
= (struct Lisp_Hash_Table
*) ptr
;
6008 mark_vectorlike (ptr
);
6009 /* If hash table is not weak, mark all keys and values.
6010 For weak tables, mark only the vector. */
6012 mark_object (h
->key_and_value
);
6014 VECTOR_MARK (XVECTOR (h
->key_and_value
));
6018 case PVEC_CHAR_TABLE
:
6019 mark_char_table (ptr
);
6022 case PVEC_BOOL_VECTOR
:
6023 /* No Lisp_Objects to mark in a bool vector. */
6034 mark_vectorlike (ptr
);
6041 register struct Lisp_Symbol
*ptr
= XSYMBOL (obj
);
6042 struct Lisp_Symbol
*ptrx
;
6046 CHECK_ALLOCATED_AND_LIVE (live_symbol_p
);
6048 mark_object (ptr
->function
);
6049 mark_object (ptr
->plist
);
6050 switch (ptr
->redirect
)
6052 case SYMBOL_PLAINVAL
: mark_object (SYMBOL_VAL (ptr
)); break;
6053 case SYMBOL_VARALIAS
:
6056 XSETSYMBOL (tem
, SYMBOL_ALIAS (ptr
));
6060 case SYMBOL_LOCALIZED
:
6062 struct Lisp_Buffer_Local_Value
*blv
= SYMBOL_BLV (ptr
);
6063 /* If the value is forwarded to a buffer or keyboard field,
6064 these are marked when we see the corresponding object.
6065 And if it's forwarded to a C variable, either it's not
6066 a Lisp_Object var, or it's staticpro'd already. */
6067 mark_object (blv
->where
);
6068 mark_object (blv
->valcell
);
6069 mark_object (blv
->defcell
);
6072 case SYMBOL_FORWARDED
:
6073 /* If the value is forwarded to a buffer or keyboard field,
6074 these are marked when we see the corresponding object.
6075 And if it's forwarded to a C variable, either it's not
6076 a Lisp_Object var, or it's staticpro'd already. */
6080 if (!PURE_POINTER_P (XSTRING (ptr
->name
)))
6081 MARK_STRING (XSTRING (ptr
->name
));
6082 MARK_INTERVAL_TREE (string_get_intervals (ptr
->name
));
6087 ptrx
= ptr
; /* Use of ptrx avoids compiler bug on Sun. */
6088 XSETSYMBOL (obj
, ptrx
);
6095 CHECK_ALLOCATED_AND_LIVE (live_misc_p
);
6097 if (XMISCANY (obj
)->gcmarkbit
)
6100 switch (XMISCTYPE (obj
))
6102 case Lisp_Misc_Marker
:
6103 /* DO NOT mark thru the marker's chain.
6104 The buffer's markers chain does not preserve markers from gc;
6105 instead, markers are removed from the chain when freed by gc. */
6106 XMISCANY (obj
)->gcmarkbit
= 1;
6109 case Lisp_Misc_Save_Value
:
6110 XMISCANY (obj
)->gcmarkbit
= 1;
6113 register struct Lisp_Save_Value
*ptr
= XSAVE_VALUE (obj
);
6114 /* If DOGC is set, POINTER is the address of a memory
6115 area containing INTEGER potential Lisp_Objects. */
6118 Lisp_Object
*p
= (Lisp_Object
*) ptr
->pointer
;
6120 for (nelt
= ptr
->integer
; nelt
> 0; nelt
--, p
++)
6121 mark_maybe_object (*p
);
6127 case Lisp_Misc_Overlay
:
6128 mark_overlay (XOVERLAY (obj
));
6138 register struct Lisp_Cons
*ptr
= XCONS (obj
);
6139 if (CONS_MARKED_P (ptr
))
6141 CHECK_ALLOCATED_AND_LIVE (live_cons_p
);
6143 /* If the cdr is nil, avoid recursion for the car. */
6144 if (EQ (ptr
->u
.cdr
, Qnil
))
6150 mark_object (ptr
->car
);
6153 if (cdr_count
== mark_object_loop_halt
)
6159 CHECK_ALLOCATED_AND_LIVE (live_float_p
);
6160 FLOAT_MARK (XFLOAT (obj
));
6171 #undef CHECK_ALLOCATED
6172 #undef CHECK_ALLOCATED_AND_LIVE
6174 /* Mark the Lisp pointers in the terminal objects.
6175 Called by Fgarbage_collect. */
6178 mark_terminals (void)
6181 for (t
= terminal_list
; t
; t
= t
->next_terminal
)
6183 eassert (t
->name
!= NULL
);
6184 #ifdef HAVE_WINDOW_SYSTEM
6185 /* If a terminal object is reachable from a stacpro'ed object,
6186 it might have been marked already. Make sure the image cache
6188 mark_image_cache (t
->image_cache
);
6189 #endif /* HAVE_WINDOW_SYSTEM */
6190 if (!VECTOR_MARKED_P (t
))
6191 mark_vectorlike ((struct Lisp_Vector
*)t
);
6197 /* Value is non-zero if OBJ will survive the current GC because it's
6198 either marked or does not need to be marked to survive. */
6201 survives_gc_p (Lisp_Object obj
)
6205 switch (XTYPE (obj
))
6212 survives_p
= XSYMBOL (obj
)->gcmarkbit
;
6216 survives_p
= XMISCANY (obj
)->gcmarkbit
;
6220 survives_p
= STRING_MARKED_P (XSTRING (obj
));
6223 case Lisp_Vectorlike
:
6224 survives_p
= SUBRP (obj
) || VECTOR_MARKED_P (XVECTOR (obj
));
6228 survives_p
= CONS_MARKED_P (XCONS (obj
));
6232 survives_p
= FLOAT_MARKED_P (XFLOAT (obj
));
6239 return survives_p
|| PURE_POINTER_P ((void *) XPNTR (obj
));
6244 /* Sweep: find all structures not marked, and free them. */
6249 /* Remove or mark entries in weak hash tables.
6250 This must be done before any object is unmarked. */
6251 sweep_weak_hash_tables ();
6254 check_string_bytes (!noninteractive
);
6256 /* Put all unmarked conses on free list */
6258 register struct cons_block
*cblk
;
6259 struct cons_block
**cprev
= &cons_block
;
6260 register int lim
= cons_block_index
;
6261 EMACS_INT num_free
= 0, num_used
= 0;
6265 for (cblk
= cons_block
; cblk
; cblk
= *cprev
)
6269 int ilim
= (lim
+ BITS_PER_INT
- 1) / BITS_PER_INT
;
6271 /* Scan the mark bits an int at a time. */
6272 for (i
= 0; i
< ilim
; i
++)
6274 if (cblk
->gcmarkbits
[i
] == -1)
6276 /* Fast path - all cons cells for this int are marked. */
6277 cblk
->gcmarkbits
[i
] = 0;
6278 num_used
+= BITS_PER_INT
;
6282 /* Some cons cells for this int are not marked.
6283 Find which ones, and free them. */
6284 int start
, pos
, stop
;
6286 start
= i
* BITS_PER_INT
;
6288 if (stop
> BITS_PER_INT
)
6289 stop
= BITS_PER_INT
;
6292 for (pos
= start
; pos
< stop
; pos
++)
6294 if (!CONS_MARKED_P (&cblk
->conses
[pos
]))
6297 cblk
->conses
[pos
].u
.chain
= cons_free_list
;
6298 cons_free_list
= &cblk
->conses
[pos
];
6300 cons_free_list
->car
= Vdead
;
6306 CONS_UNMARK (&cblk
->conses
[pos
]);
6312 lim
= CONS_BLOCK_SIZE
;
6313 /* If this block contains only free conses and we have already
6314 seen more than two blocks worth of free conses then deallocate
6316 if (this_free
== CONS_BLOCK_SIZE
&& num_free
> CONS_BLOCK_SIZE
)
6318 *cprev
= cblk
->next
;
6319 /* Unhook from the free list. */
6320 cons_free_list
= cblk
->conses
[0].u
.chain
;
6321 lisp_align_free (cblk
);
6325 num_free
+= this_free
;
6326 cprev
= &cblk
->next
;
6329 total_conses
= num_used
;
6330 total_free_conses
= num_free
;
6333 /* Put all unmarked floats on free list */
6335 register struct float_block
*fblk
;
6336 struct float_block
**fprev
= &float_block
;
6337 register int lim
= float_block_index
;
6338 EMACS_INT num_free
= 0, num_used
= 0;
6340 float_free_list
= 0;
6342 for (fblk
= float_block
; fblk
; fblk
= *fprev
)
6346 for (i
= 0; i
< lim
; i
++)
6347 if (!FLOAT_MARKED_P (&fblk
->floats
[i
]))
6350 fblk
->floats
[i
].u
.chain
= float_free_list
;
6351 float_free_list
= &fblk
->floats
[i
];
6356 FLOAT_UNMARK (&fblk
->floats
[i
]);
6358 lim
= FLOAT_BLOCK_SIZE
;
6359 /* If this block contains only free floats and we have already
6360 seen more than two blocks worth of free floats then deallocate
6362 if (this_free
== FLOAT_BLOCK_SIZE
&& num_free
> FLOAT_BLOCK_SIZE
)
6364 *fprev
= fblk
->next
;
6365 /* Unhook from the free list. */
6366 float_free_list
= fblk
->floats
[0].u
.chain
;
6367 lisp_align_free (fblk
);
6371 num_free
+= this_free
;
6372 fprev
= &fblk
->next
;
6375 total_floats
= num_used
;
6376 total_free_floats
= num_free
;
6379 /* Put all unmarked intervals on free list */
6381 register struct interval_block
*iblk
;
6382 struct interval_block
**iprev
= &interval_block
;
6383 register int lim
= interval_block_index
;
6384 EMACS_INT num_free
= 0, num_used
= 0;
6386 interval_free_list
= 0;
6388 for (iblk
= interval_block
; iblk
; iblk
= *iprev
)
6393 for (i
= 0; i
< lim
; i
++)
6395 if (!iblk
->intervals
[i
].gcmarkbit
)
6397 interval_set_parent (&iblk
->intervals
[i
], interval_free_list
);
6398 interval_free_list
= &iblk
->intervals
[i
];
6404 iblk
->intervals
[i
].gcmarkbit
= 0;
6407 lim
= INTERVAL_BLOCK_SIZE
;
6408 /* If this block contains only free intervals and we have already
6409 seen more than two blocks worth of free intervals then
6410 deallocate this block. */
6411 if (this_free
== INTERVAL_BLOCK_SIZE
&& num_free
> INTERVAL_BLOCK_SIZE
)
6413 *iprev
= iblk
->next
;
6414 /* Unhook from the free list. */
6415 interval_free_list
= INTERVAL_PARENT (&iblk
->intervals
[0]);
6420 num_free
+= this_free
;
6421 iprev
= &iblk
->next
;
6424 total_intervals
= num_used
;
6425 total_free_intervals
= num_free
;
6428 /* Put all unmarked symbols on free list */
6430 register struct symbol_block
*sblk
;
6431 struct symbol_block
**sprev
= &symbol_block
;
6432 register int lim
= symbol_block_index
;
6433 EMACS_INT num_free
= 0, num_used
= 0;
6435 symbol_free_list
= NULL
;
6437 for (sblk
= symbol_block
; sblk
; sblk
= *sprev
)
6440 union aligned_Lisp_Symbol
*sym
= sblk
->symbols
;
6441 union aligned_Lisp_Symbol
*end
= sym
+ lim
;
6443 for (; sym
< end
; ++sym
)
6445 /* Check if the symbol was created during loadup. In such a case
6446 it might be pointed to by pure bytecode which we don't trace,
6447 so we conservatively assume that it is live. */
6448 int pure_p
= PURE_POINTER_P (XSTRING (sym
->s
.name
));
6450 if (!sym
->s
.gcmarkbit
&& !pure_p
)
6452 if (sym
->s
.redirect
== SYMBOL_LOCALIZED
)
6453 xfree (SYMBOL_BLV (&sym
->s
));
6454 sym
->s
.next
= symbol_free_list
;
6455 symbol_free_list
= &sym
->s
;
6457 symbol_free_list
->function
= Vdead
;
6465 UNMARK_STRING (XSTRING (sym
->s
.name
));
6466 sym
->s
.gcmarkbit
= 0;
6470 lim
= SYMBOL_BLOCK_SIZE
;
6471 /* If this block contains only free symbols and we have already
6472 seen more than two blocks worth of free symbols then deallocate
6474 if (this_free
== SYMBOL_BLOCK_SIZE
&& num_free
> SYMBOL_BLOCK_SIZE
)
6476 *sprev
= sblk
->next
;
6477 /* Unhook from the free list. */
6478 symbol_free_list
= sblk
->symbols
[0].s
.next
;
6483 num_free
+= this_free
;
6484 sprev
= &sblk
->next
;
6487 total_symbols
= num_used
;
6488 total_free_symbols
= num_free
;
6491 /* Put all unmarked misc's on free list.
6492 For a marker, first unchain it from the buffer it points into. */
6494 register struct marker_block
*mblk
;
6495 struct marker_block
**mprev
= &marker_block
;
6496 register int lim
= marker_block_index
;
6497 EMACS_INT num_free
= 0, num_used
= 0;
6499 marker_free_list
= 0;
6501 for (mblk
= marker_block
; mblk
; mblk
= *mprev
)
6506 for (i
= 0; i
< lim
; i
++)
6508 if (!mblk
->markers
[i
].m
.u_any
.gcmarkbit
)
6510 if (mblk
->markers
[i
].m
.u_any
.type
== Lisp_Misc_Marker
)
6511 unchain_marker (&mblk
->markers
[i
].m
.u_marker
);
6512 /* Set the type of the freed object to Lisp_Misc_Free.
6513 We could leave the type alone, since nobody checks it,
6514 but this might catch bugs faster. */
6515 mblk
->markers
[i
].m
.u_marker
.type
= Lisp_Misc_Free
;
6516 mblk
->markers
[i
].m
.u_free
.chain
= marker_free_list
;
6517 marker_free_list
= &mblk
->markers
[i
].m
;
6523 mblk
->markers
[i
].m
.u_any
.gcmarkbit
= 0;
6526 lim
= MARKER_BLOCK_SIZE
;
6527 /* If this block contains only free markers and we have already
6528 seen more than two blocks worth of free markers then deallocate
6530 if (this_free
== MARKER_BLOCK_SIZE
&& num_free
> MARKER_BLOCK_SIZE
)
6532 *mprev
= mblk
->next
;
6533 /* Unhook from the free list. */
6534 marker_free_list
= mblk
->markers
[0].m
.u_free
.chain
;
6539 num_free
+= this_free
;
6540 mprev
= &mblk
->next
;
6544 total_markers
= num_used
;
6545 total_free_markers
= num_free
;
6548 /* Free all unmarked buffers */
6550 register struct buffer
*buffer
= all_buffers
, *prev
= 0, *next
;
6554 if (!VECTOR_MARKED_P (buffer
))
6557 prev
->header
.next
= buffer
->header
.next
;
6559 all_buffers
= buffer
->header
.next
.buffer
;
6560 next
= buffer
->header
.next
.buffer
;
6566 VECTOR_UNMARK (buffer
);
6567 /* Do not use buffer_(set|get)_intervals here. */
6568 buffer
->text
->intervals
= balance_intervals (buffer
->text
->intervals
);
6570 prev
= buffer
, buffer
= buffer
->header
.next
.buffer
;
6575 check_string_bytes (!noninteractive
);
6581 /* Debugging aids. */
6583 DEFUN ("memory-limit", Fmemory_limit
, Smemory_limit
, 0, 0, 0,
6584 doc
: /* Return the address of the last byte Emacs has allocated, divided by 1024.
6585 This may be helpful in debugging Emacs's memory usage.
6586 We divide the value by 1024 to make sure it fits in a Lisp integer. */)
6591 XSETINT (end
, (intptr_t) (char *) sbrk (0) / 1024);
6596 DEFUN ("memory-use-counts", Fmemory_use_counts
, Smemory_use_counts
, 0, 0, 0,
6597 doc
: /* Return a list of counters that measure how much consing there has been.
6598 Each of these counters increments for a certain kind of object.
6599 The counters wrap around from the largest positive integer to zero.
6600 Garbage collection does not decrease them.
6601 The elements of the value are as follows:
6602 (CONSES FLOATS VECTOR-CELLS SYMBOLS STRING-CHARS MISCS INTERVALS STRINGS)
6603 All are in units of 1 = one object consed
6604 except for VECTOR-CELLS and STRING-CHARS, which count the total length of
6606 MISCS include overlays, markers, and some internal types.
6607 Frames, windows, buffers, and subprocesses count as vectors
6608 (but the contents of a buffer's text do not count here). */)
6611 return listn (CONSTYPE_HEAP
, 8,
6612 bounded_number (cons_cells_consed
),
6613 bounded_number (floats_consed
),
6614 bounded_number (vector_cells_consed
),
6615 bounded_number (symbols_consed
),
6616 bounded_number (string_chars_consed
),
6617 bounded_number (misc_objects_consed
),
6618 bounded_number (intervals_consed
),
6619 bounded_number (strings_consed
));
6622 /* Find at most FIND_MAX symbols which have OBJ as their value or
6623 function. This is used in gdbinit's `xwhichsymbols' command. */
6626 which_symbols (Lisp_Object obj
, EMACS_INT find_max
)
6628 struct symbol_block
*sblk
;
6629 ptrdiff_t gc_count
= inhibit_garbage_collection ();
6630 Lisp_Object found
= Qnil
;
6634 for (sblk
= symbol_block
; sblk
; sblk
= sblk
->next
)
6636 union aligned_Lisp_Symbol
*aligned_sym
= sblk
->symbols
;
6639 for (bn
= 0; bn
< SYMBOL_BLOCK_SIZE
; bn
++, aligned_sym
++)
6641 struct Lisp_Symbol
*sym
= &aligned_sym
->s
;
6645 if (sblk
== symbol_block
&& bn
>= symbol_block_index
)
6648 XSETSYMBOL (tem
, sym
);
6649 val
= find_symbol_value (tem
);
6651 || EQ (sym
->function
, obj
)
6652 || (!NILP (sym
->function
)
6653 && COMPILEDP (sym
->function
)
6654 && EQ (AREF (sym
->function
, COMPILED_BYTECODE
), obj
))
6657 && EQ (AREF (val
, COMPILED_BYTECODE
), obj
)))
6659 found
= Fcons (tem
, found
);
6660 if (--find_max
== 0)
6668 unbind_to (gc_count
, Qnil
);
6672 #ifdef ENABLE_CHECKING
6673 int suppress_checking
;
6676 die (const char *msg
, const char *file
, int line
)
6678 fprintf (stderr
, "\r\n%s:%d: Emacs fatal error: %s\r\n",
6684 /* Initialization */
6687 init_alloc_once (void)
6689 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
6691 pure_size
= PURESIZE
;
6693 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
6695 Vdead
= make_pure_string ("DEAD", 4, 4, 0);
6698 #ifdef DOUG_LEA_MALLOC
6699 mallopt (M_TRIM_THRESHOLD
, 128*1024); /* trim threshold */
6700 mallopt (M_MMAP_THRESHOLD
, 64*1024); /* mmap threshold */
6701 mallopt (M_MMAP_MAX
, MMAP_MAX_AREAS
); /* max. number of mmap'ed areas */
6707 malloc_hysteresis
= 32;
6709 malloc_hysteresis
= 0;
6712 refill_memory_reserve ();
6713 gc_cons_threshold
= GC_DEFAULT_THRESHOLD
;
6720 byte_stack_list
= 0;
6722 #if !defined GC_SAVE_REGISTERS_ON_STACK && !defined GC_SETJMP_WORKS
6723 setjmp_tested_p
= longjmps_done
= 0;
6726 Vgc_elapsed
= make_float (0.0);
6731 syms_of_alloc (void)
6733 DEFVAR_INT ("gc-cons-threshold", gc_cons_threshold
,
6734 doc
: /* Number of bytes of consing between garbage collections.
6735 Garbage collection can happen automatically once this many bytes have been
6736 allocated since the last garbage collection. All data types count.
6738 Garbage collection happens automatically only when `eval' is called.
6740 By binding this temporarily to a large number, you can effectively
6741 prevent garbage collection during a part of the program.
6742 See also `gc-cons-percentage'. */);
6744 DEFVAR_LISP ("gc-cons-percentage", Vgc_cons_percentage
,
6745 doc
: /* Portion of the heap used for allocation.
6746 Garbage collection can happen automatically once this portion of the heap
6747 has been allocated since the last garbage collection.
6748 If this portion is smaller than `gc-cons-threshold', this is ignored. */);
6749 Vgc_cons_percentage
= make_float (0.1);
6751 DEFVAR_INT ("pure-bytes-used", pure_bytes_used
,
6752 doc
: /* Number of bytes of shareable Lisp data allocated so far. */);
6754 DEFVAR_INT ("cons-cells-consed", cons_cells_consed
,
6755 doc
: /* Number of cons cells that have been consed so far. */);
6757 DEFVAR_INT ("floats-consed", floats_consed
,
6758 doc
: /* Number of floats that have been consed so far. */);
6760 DEFVAR_INT ("vector-cells-consed", vector_cells_consed
,
6761 doc
: /* Number of vector cells that have been consed so far. */);
6763 DEFVAR_INT ("symbols-consed", symbols_consed
,
6764 doc
: /* Number of symbols that have been consed so far. */);
6766 DEFVAR_INT ("string-chars-consed", string_chars_consed
,
6767 doc
: /* Number of string characters that have been consed so far. */);
6769 DEFVAR_INT ("misc-objects-consed", misc_objects_consed
,
6770 doc
: /* Number of miscellaneous objects that have been consed so far.
6771 These include markers and overlays, plus certain objects not visible
6774 DEFVAR_INT ("intervals-consed", intervals_consed
,
6775 doc
: /* Number of intervals that have been consed so far. */);
6777 DEFVAR_INT ("strings-consed", strings_consed
,
6778 doc
: /* Number of strings that have been consed so far. */);
6780 DEFVAR_LISP ("purify-flag", Vpurify_flag
,
6781 doc
: /* Non-nil means loading Lisp code in order to dump an executable.
6782 This means that certain objects should be allocated in shared (pure) space.
6783 It can also be set to a hash-table, in which case this table is used to
6784 do hash-consing of the objects allocated to pure space. */);
6786 DEFVAR_BOOL ("garbage-collection-messages", garbage_collection_messages
,
6787 doc
: /* Non-nil means display messages at start and end of garbage collection. */);
6788 garbage_collection_messages
= 0;
6790 DEFVAR_LISP ("post-gc-hook", Vpost_gc_hook
,
6791 doc
: /* Hook run after garbage collection has finished. */);
6792 Vpost_gc_hook
= Qnil
;
6793 DEFSYM (Qpost_gc_hook
, "post-gc-hook");
6795 DEFVAR_LISP ("memory-signal-data", Vmemory_signal_data
,
6796 doc
: /* Precomputed `signal' argument for memory-full error. */);
6797 /* We build this in advance because if we wait until we need it, we might
6798 not be able to allocate the memory to hold it. */
6800 = listn (CONSTYPE_PURE
, 2, Qerror
,
6801 build_pure_c_string ("Memory exhausted--use M-x save-some-buffers then exit and restart Emacs"));
6803 DEFVAR_LISP ("memory-full", Vmemory_full
,
6804 doc
: /* Non-nil means Emacs cannot get much more Lisp memory. */);
6805 Vmemory_full
= Qnil
;
6807 DEFSYM (Qstring_bytes
, "string-bytes");
6808 DEFSYM (Qvector_slots
, "vector-slots");
6809 DEFSYM (Qheap
, "heap");
6811 DEFSYM (Qgc_cons_threshold
, "gc-cons-threshold");
6812 DEFSYM (Qchar_table_extra_slots
, "char-table-extra-slots");
6814 DEFVAR_LISP ("gc-elapsed", Vgc_elapsed
,
6815 doc
: /* Accumulated time elapsed in garbage collections.
6816 The time is in seconds as a floating point value. */);
6817 DEFVAR_INT ("gcs-done", gcs_done
,
6818 doc
: /* Accumulated number of garbage collections done. */);
6823 defsubr (&Smake_byte_code
);
6824 defsubr (&Smake_list
);
6825 defsubr (&Smake_vector
);
6826 defsubr (&Smake_string
);
6827 defsubr (&Smake_bool_vector
);
6828 defsubr (&Smake_symbol
);
6829 defsubr (&Smake_marker
);
6830 defsubr (&Spurecopy
);
6831 defsubr (&Sgarbage_collect
);
6832 defsubr (&Smemory_limit
);
6833 defsubr (&Smemory_use_counts
);
6835 #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES
6836 defsubr (&Sgc_status
);
6840 /* When compiled with GCC, GDB might say "No enum type named
6841 pvec_type" if we don't have at least one symbol with that type, and
6842 then xbacktrace could fail. Similarly for the other enums and
6846 enum CHARTAB_SIZE_BITS CHARTAB_SIZE_BITS
;
6847 enum CHAR_TABLE_STANDARD_SLOTS CHAR_TABLE_STANDARD_SLOTS
;
6848 enum char_bits char_bits
;
6849 enum CHECK_LISP_OBJECT_TYPE CHECK_LISP_OBJECT_TYPE
;
6850 enum DEFAULT_HASH_SIZE DEFAULT_HASH_SIZE
;
6851 enum enum_USE_LSB_TAG enum_USE_LSB_TAG
;
6852 enum FLOAT_TO_STRING_BUFSIZE FLOAT_TO_STRING_BUFSIZE
;
6853 enum Lisp_Bits Lisp_Bits
;
6854 enum Lisp_Compiled Lisp_Compiled
;
6855 enum maxargs maxargs
;
6856 enum MAX_ALLOCA MAX_ALLOCA
;
6857 enum More_Lisp_Bits More_Lisp_Bits
;
6858 enum pvec_type pvec_type
;
6860 enum lsb_bits lsb_bits
;
6862 } const EXTERNALLY_VISIBLE gdb_make_enums_visible
= {0};