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