(getloadavg): Add OSF_ALPHA support.
[bpt/emacs.git] / src / alloc.c
CommitLineData
7146af97 1/* Storage allocation and gc for GNU Emacs Lisp interpreter.
3a22ee35 2 Copyright (C) 1985, 1986, 1988, 1993, 1994 Free Software Foundation, Inc.
7146af97
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
7c299e7a 8the Free Software Foundation; either version 2, or (at your option)
7146af97
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
cf026b25 20#include <signal.h>
7146af97 21
18160b98 22#include <config.h>
7146af97 23#include "lisp.h"
d5e35230 24#include "intervals.h"
4c0be5f4 25#include "puresize.h"
7146af97
JB
26#ifndef standalone
27#include "buffer.h"
28#include "window.h"
502b9b64 29#include "frame.h"
9ac0d9e0 30#include "blockinput.h"
7146af97
JB
31#endif
32
e065a56e
JB
33#include "syssignal.h"
34
7146af97
JB
35#define max(A,B) ((A) > (B) ? (A) : (B))
36
37/* Macro to verify that storage intended for Lisp objects is not
38 out of range to fit in the space for a pointer.
39 ADDRESS is the start of the block, and SIZE
40 is the amount of space within which objects can start. */
41#define VALIDATE_LISP_STORAGE(address, size) \
42do \
43 { \
44 Lisp_Object val; \
45 XSET (val, Lisp_Cons, (char *) address + size); \
46 if ((char *) XCONS (val) != (char *) address + size) \
47 { \
9ac0d9e0 48 xfree (address); \
7146af97
JB
49 memory_full (); \
50 } \
51 } while (0)
52
53/* Number of bytes of consing done since the last gc */
54int consing_since_gc;
55
56/* Number of bytes of consing since gc before another gc should be done. */
57int gc_cons_threshold;
58
59/* Nonzero during gc */
60int gc_in_progress;
61
62#ifndef VIRT_ADDR_VARIES
63extern
64#endif /* VIRT_ADDR_VARIES */
65 int malloc_sbrk_used;
66
67#ifndef VIRT_ADDR_VARIES
68extern
69#endif /* VIRT_ADDR_VARIES */
70 int malloc_sbrk_unused;
71
502b9b64
JB
72/* Two limits controlling how much undo information to keep. */
73int undo_limit;
74int undo_strong_limit;
7146af97
JB
75
76/* Non-nil means defun should do purecopy on the function definition */
77Lisp_Object Vpurify_flag;
78
79#ifndef HAVE_SHM
80int pure[PURESIZE / sizeof (int)] = {0,}; /* Force it into data space! */
81#define PUREBEG (char *) pure
82#else
83#define pure PURE_SEG_BITS /* Use shared memory segment */
84#define PUREBEG (char *)PURE_SEG_BITS
4c0be5f4
JB
85
86/* This variable is used only by the XPNTR macro when HAVE_SHM is
87 defined. If we used the PURESIZE macro directly there, that would
88 make most of emacs dependent on puresize.h, which we don't want -
89 you should be able to change that without too much recompilation.
90 So map_in_data initializes pure_size, and the dependencies work
91 out. */
92int pure_size;
7146af97
JB
93#endif /* not HAVE_SHM */
94
95/* Index in pure at which next pure object will be allocated. */
96int pureptr;
97
98/* If nonzero, this is a warning delivered by malloc and not yet displayed. */
99char *pending_malloc_warning;
100
bcb61d60 101/* Pre-computed signal argument for use when memory is exhausted. */
cf3540e4 102Lisp_Object memory_signal_data;
bcb61d60 103
7146af97
JB
104/* Maximum amount of C stack to save when a GC happens. */
105
106#ifndef MAX_SAVE_STACK
107#define MAX_SAVE_STACK 16000
108#endif
109
110/* Buffer in which we save a copy of the C stack at each GC. */
111
112char *stack_copy;
113int stack_copy_size;
114
115/* Non-zero means ignore malloc warnings. Set during initialization. */
116int ignore_warnings;
350273a4
JA
117
118static void mark_object (), mark_buffer ();
119static void clear_marks (), gc_sweep ();
120static void compact_strings ();
7146af97 121\f
1a4f1e2c
JB
122/* Versions of malloc and realloc that print warnings as memory gets full. */
123
7146af97
JB
124Lisp_Object
125malloc_warning_1 (str)
126 Lisp_Object str;
127{
128 Fprinc (str, Vstandard_output);
129 write_string ("\nKilling some buffers may delay running out of memory.\n", -1);
130 write_string ("However, certainly by the time you receive the 95% warning,\n", -1);
131 write_string ("you should clean up, kill this Emacs, and start a new one.", -1);
132 return Qnil;
133}
134
135/* malloc calls this if it finds we are near exhausting storage */
136malloc_warning (str)
137 char *str;
138{
139 pending_malloc_warning = str;
140}
141
142display_malloc_warning ()
143{
144 register Lisp_Object val;
145
146 val = build_string (pending_malloc_warning);
147 pending_malloc_warning = 0;
148 internal_with_output_to_temp_buffer (" *Danger*", malloc_warning_1, val);
149}
150
151/* Called if malloc returns zero */
152memory_full ()
153{
bcb61d60
KH
154 /* This used to call error, but if we've run out of memory, we could get
155 infinite recursion trying to build the string. */
156 while (1)
157 Fsignal (Qerror, memory_signal_data);
7146af97
JB
158}
159
9ac0d9e0 160/* like malloc routines but check for no memory and block interrupt input. */
7146af97
JB
161
162long *
163xmalloc (size)
164 int size;
165{
166 register long *val;
167
9ac0d9e0 168 BLOCK_INPUT;
7146af97 169 val = (long *) malloc (size);
9ac0d9e0 170 UNBLOCK_INPUT;
7146af97
JB
171
172 if (!val && size) memory_full ();
173 return val;
174}
175
176long *
177xrealloc (block, size)
178 long *block;
179 int size;
180{
181 register long *val;
182
9ac0d9e0 183 BLOCK_INPUT;
56d2031b
JB
184 /* We must call malloc explicitly when BLOCK is 0, since some
185 reallocs don't do this. */
186 if (! block)
187 val = (long *) malloc (size);
f048679d 188 else
56d2031b 189 val = (long *) realloc (block, size);
9ac0d9e0 190 UNBLOCK_INPUT;
7146af97
JB
191
192 if (!val && size) memory_full ();
193 return val;
194}
9ac0d9e0
JB
195
196void
197xfree (block)
198 long *block;
199{
200 BLOCK_INPUT;
201 free (block);
202 UNBLOCK_INPUT;
203}
204
205\f
206/* Arranging to disable input signals while we're in malloc.
207
208 This only works with GNU malloc. To help out systems which can't
209 use GNU malloc, all the calls to malloc, realloc, and free
210 elsewhere in the code should be inside a BLOCK_INPUT/UNBLOCK_INPUT
211 pairs; unfortunately, we have no idea what C library functions
212 might call malloc, so we can't really protect them unless you're
213 using GNU malloc. Fortunately, most of the major operating can use
214 GNU malloc. */
215
216#ifndef SYSTEM_MALLOC
b0846f52
JB
217extern void * (*__malloc_hook) ();
218static void * (*old_malloc_hook) ();
219extern void * (*__realloc_hook) ();
220static void * (*old_realloc_hook) ();
221extern void (*__free_hook) ();
222static void (*old_free_hook) ();
9ac0d9e0
JB
223
224static void
225emacs_blocked_free (ptr)
226 void *ptr;
227{
228 BLOCK_INPUT;
229 __free_hook = old_free_hook;
230 free (ptr);
b0846f52 231 __free_hook = emacs_blocked_free;
9ac0d9e0
JB
232 UNBLOCK_INPUT;
233}
234
235static void *
236emacs_blocked_malloc (size)
237 unsigned size;
238{
239 void *value;
240
241 BLOCK_INPUT;
242 __malloc_hook = old_malloc_hook;
2756d8ee 243 value = (void *) malloc (size);
b0846f52 244 __malloc_hook = emacs_blocked_malloc;
9ac0d9e0
JB
245 UNBLOCK_INPUT;
246
247 return value;
248}
249
250static void *
251emacs_blocked_realloc (ptr, size)
252 void *ptr;
253 unsigned size;
254{
255 void *value;
256
257 BLOCK_INPUT;
258 __realloc_hook = old_realloc_hook;
2756d8ee 259 value = (void *) realloc (ptr, size);
b0846f52 260 __realloc_hook = emacs_blocked_realloc;
9ac0d9e0
JB
261 UNBLOCK_INPUT;
262
263 return value;
264}
265
266void
267uninterrupt_malloc ()
268{
269 old_free_hook = __free_hook;
b0846f52 270 __free_hook = emacs_blocked_free;
9ac0d9e0
JB
271
272 old_malloc_hook = __malloc_hook;
b0846f52 273 __malloc_hook = emacs_blocked_malloc;
9ac0d9e0
JB
274
275 old_realloc_hook = __realloc_hook;
b0846f52 276 __realloc_hook = emacs_blocked_realloc;
9ac0d9e0
JB
277}
278#endif
7146af97 279\f
1a4f1e2c
JB
280/* Interval allocation. */
281
d5e35230
JA
282#ifdef USE_TEXT_PROPERTIES
283#define INTERVAL_BLOCK_SIZE \
284 ((1020 - sizeof (struct interval_block *)) / sizeof (struct interval))
285
286struct interval_block
287 {
288 struct interval_block *next;
289 struct interval intervals[INTERVAL_BLOCK_SIZE];
290 };
291
292struct interval_block *interval_block;
293static int interval_block_index;
294
295INTERVAL interval_free_list;
296
297static void
298init_intervals ()
299{
300 interval_block
301 = (struct interval_block *) malloc (sizeof (struct interval_block));
302 interval_block->next = 0;
303 bzero (interval_block->intervals, sizeof interval_block->intervals);
304 interval_block_index = 0;
305 interval_free_list = 0;
306}
307
308#define INIT_INTERVALS init_intervals ()
309
310INTERVAL
311make_interval ()
312{
313 INTERVAL val;
314
315 if (interval_free_list)
316 {
317 val = interval_free_list;
318 interval_free_list = interval_free_list->parent;
319 }
320 else
321 {
322 if (interval_block_index == INTERVAL_BLOCK_SIZE)
323 {
324 register struct interval_block *newi
9ac0d9e0 325 = (struct interval_block *) xmalloc (sizeof (struct interval_block));
d5e35230
JA
326
327 VALIDATE_LISP_STORAGE (newi, sizeof *newi);
328 newi->next = interval_block;
329 interval_block = newi;
330 interval_block_index = 0;
331 }
332 val = &interval_block->intervals[interval_block_index++];
333 }
334 consing_since_gc += sizeof (struct interval);
335 RESET_INTERVAL (val);
336 return val;
337}
338
339static int total_free_intervals, total_intervals;
340
341/* Mark the pointers of one interval. */
342
343static void
d393c068 344mark_interval (i, dummy)
d5e35230 345 register INTERVAL i;
d393c068 346 Lisp_Object dummy;
d5e35230
JA
347{
348 if (XMARKBIT (i->plist))
349 abort ();
350 mark_object (&i->plist);
351 XMARK (i->plist);
352}
353
354static void
355mark_interval_tree (tree)
356 register INTERVAL tree;
357{
e8720644
JB
358 /* No need to test if this tree has been marked already; this
359 function is always called through the MARK_INTERVAL_TREE macro,
360 which takes care of that. */
361
362 /* XMARK expands to an assignment; the LHS of an assignment can't be
363 a cast. */
364 XMARK (* (Lisp_Object *) &tree->parent);
d5e35230 365
d393c068 366 traverse_intervals (tree, 1, 0, mark_interval, Qnil);
d5e35230
JA
367}
368
e8720644
JB
369#define MARK_INTERVAL_TREE(i) \
370 do { \
371 if (!NULL_INTERVAL_P (i) \
372 && ! XMARKBIT ((Lisp_Object) i->parent)) \
373 mark_interval_tree (i); \
374 } while (0)
d5e35230 375
1a4f1e2c 376/* The oddity in the call to XUNMARK is necessary because XUNMARK
eb8c3be9 377 expands to an assignment to its argument, and most C compilers don't
1a4f1e2c
JB
378 support casts on the left operand of `='. */
379#define UNMARK_BALANCE_INTERVALS(i) \
380{ \
381 if (! NULL_INTERVAL_P (i)) \
382 { \
383 XUNMARK (* (Lisp_Object *) (&(i)->parent)); \
384 (i) = balance_intervals (i); \
385 } \
d5e35230
JA
386}
387
388#else /* no interval use */
389
390#define INIT_INTERVALS
391
392#define UNMARK_BALANCE_INTERVALS(i)
393#define MARK_INTERVAL_TREE(i)
394
395#endif /* no interval use */
396\f
1a4f1e2c
JB
397/* Floating point allocation. */
398
7146af97
JB
399#ifdef LISP_FLOAT_TYPE
400/* Allocation of float cells, just like conses */
401/* We store float cells inside of float_blocks, allocating a new
402 float_block with malloc whenever necessary. Float cells reclaimed by
403 GC are put on a free list to be reallocated before allocating
404 any new float cells from the latest float_block.
405
406 Each float_block is just under 1020 bytes long,
407 since malloc really allocates in units of powers of two
408 and uses 4 bytes for its own overhead. */
409
410#define FLOAT_BLOCK_SIZE \
411 ((1020 - sizeof (struct float_block *)) / sizeof (struct Lisp_Float))
412
413struct float_block
414 {
415 struct float_block *next;
416 struct Lisp_Float floats[FLOAT_BLOCK_SIZE];
417 };
418
419struct float_block *float_block;
420int float_block_index;
421
422struct Lisp_Float *float_free_list;
423
424void
425init_float ()
426{
427 float_block = (struct float_block *) malloc (sizeof (struct float_block));
428 float_block->next = 0;
429 bzero (float_block->floats, sizeof float_block->floats);
430 float_block_index = 0;
431 float_free_list = 0;
432}
433
434/* Explicitly free a float cell. */
435free_float (ptr)
436 struct Lisp_Float *ptr;
437{
438 XFASTINT (ptr->type) = (int) float_free_list;
439 float_free_list = ptr;
440}
441
442Lisp_Object
443make_float (float_value)
444 double float_value;
445{
446 register Lisp_Object val;
447
448 if (float_free_list)
449 {
450 XSET (val, Lisp_Float, float_free_list);
451 float_free_list = (struct Lisp_Float *) XFASTINT (float_free_list->type);
452 }
453 else
454 {
455 if (float_block_index == FLOAT_BLOCK_SIZE)
456 {
9ac0d9e0 457 register struct float_block *new = (struct float_block *) xmalloc (sizeof (struct float_block));
7146af97
JB
458 VALIDATE_LISP_STORAGE (new, sizeof *new);
459 new->next = float_block;
460 float_block = new;
461 float_block_index = 0;
462 }
463 XSET (val, Lisp_Float, &float_block->floats[float_block_index++]);
464 }
465 XFLOAT (val)->data = float_value;
466 XFLOAT (val)->type = 0; /* bug chasing -wsr */
467 consing_since_gc += sizeof (struct Lisp_Float);
468 return val;
469}
470
471#endif /* LISP_FLOAT_TYPE */
472\f
473/* Allocation of cons cells */
474/* We store cons cells inside of cons_blocks, allocating a new
475 cons_block with malloc whenever necessary. Cons cells reclaimed by
476 GC are put on a free list to be reallocated before allocating
477 any new cons cells from the latest cons_block.
478
479 Each cons_block is just under 1020 bytes long,
480 since malloc really allocates in units of powers of two
481 and uses 4 bytes for its own overhead. */
482
483#define CONS_BLOCK_SIZE \
484 ((1020 - sizeof (struct cons_block *)) / sizeof (struct Lisp_Cons))
485
486struct cons_block
487 {
488 struct cons_block *next;
489 struct Lisp_Cons conses[CONS_BLOCK_SIZE];
490 };
491
492struct cons_block *cons_block;
493int cons_block_index;
494
495struct Lisp_Cons *cons_free_list;
496
497void
498init_cons ()
499{
500 cons_block = (struct cons_block *) malloc (sizeof (struct cons_block));
501 cons_block->next = 0;
502 bzero (cons_block->conses, sizeof cons_block->conses);
503 cons_block_index = 0;
504 cons_free_list = 0;
505}
506
507/* Explicitly free a cons cell. */
508free_cons (ptr)
509 struct Lisp_Cons *ptr;
510{
511 XFASTINT (ptr->car) = (int) cons_free_list;
512 cons_free_list = ptr;
513}
514
515DEFUN ("cons", Fcons, Scons, 2, 2, 0,
516 "Create a new cons, give it CAR and CDR as components, and return it.")
517 (car, cdr)
518 Lisp_Object car, cdr;
519{
520 register Lisp_Object val;
521
522 if (cons_free_list)
523 {
524 XSET (val, Lisp_Cons, cons_free_list);
525 cons_free_list = (struct Lisp_Cons *) XFASTINT (cons_free_list->car);
526 }
527 else
528 {
529 if (cons_block_index == CONS_BLOCK_SIZE)
530 {
9ac0d9e0 531 register struct cons_block *new = (struct cons_block *) xmalloc (sizeof (struct cons_block));
7146af97
JB
532 VALIDATE_LISP_STORAGE (new, sizeof *new);
533 new->next = cons_block;
534 cons_block = new;
535 cons_block_index = 0;
536 }
537 XSET (val, Lisp_Cons, &cons_block->conses[cons_block_index++]);
538 }
539 XCONS (val)->car = car;
540 XCONS (val)->cdr = cdr;
541 consing_since_gc += sizeof (struct Lisp_Cons);
542 return val;
543}
544
545DEFUN ("list", Flist, Slist, 0, MANY, 0,
546 "Return a newly created list with specified arguments as elements.\n\
547Any number of arguments, even zero arguments, are allowed.")
548 (nargs, args)
549 int nargs;
550 register Lisp_Object *args;
551{
552 register Lisp_Object len, val, val_tail;
553
554 XFASTINT (len) = nargs;
555 val = Fmake_list (len, Qnil);
556 val_tail = val;
265a9e55 557 while (!NILP (val_tail))
7146af97
JB
558 {
559 XCONS (val_tail)->car = *args++;
560 val_tail = XCONS (val_tail)->cdr;
561 }
562 return val;
563}
564
565DEFUN ("make-list", Fmake_list, Smake_list, 2, 2, 0,
566 "Return a newly created list of length LENGTH, with each element being INIT.")
567 (length, init)
568 register Lisp_Object length, init;
569{
570 register Lisp_Object val;
571 register int size;
572
573 if (XTYPE (length) != Lisp_Int || XINT (length) < 0)
574 length = wrong_type_argument (Qnatnump, length);
575 size = XINT (length);
576
577 val = Qnil;
578 while (size-- > 0)
579 val = Fcons (init, val);
580 return val;
581}
582\f
583/* Allocation of vectors */
584
585struct Lisp_Vector *all_vectors;
586
587DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0,
588 "Return a newly created vector of length LENGTH, with each element being INIT.\n\
589See also the function `vector'.")
590 (length, init)
591 register Lisp_Object length, init;
592{
593 register int sizei, index;
594 register Lisp_Object vector;
595 register struct Lisp_Vector *p;
596
597 if (XTYPE (length) != Lisp_Int || XINT (length) < 0)
598 length = wrong_type_argument (Qnatnump, length);
599 sizei = XINT (length);
600
9ac0d9e0 601 p = (struct Lisp_Vector *) xmalloc (sizeof (struct Lisp_Vector) + (sizei - 1) * sizeof (Lisp_Object));
7146af97
JB
602 VALIDATE_LISP_STORAGE (p, 0);
603
604 XSET (vector, Lisp_Vector, p);
605 consing_since_gc += sizeof (struct Lisp_Vector) + (sizei - 1) * sizeof (Lisp_Object);
606
607 p->size = sizei;
608 p->next = all_vectors;
609 all_vectors = p;
610
611 for (index = 0; index < sizei; index++)
612 p->contents[index] = init;
613
614 return vector;
615}
616
617DEFUN ("vector", Fvector, Svector, 0, MANY, 0,
618 "Return a newly created vector with specified arguments as elements.\n\
619Any number of arguments, even zero arguments, are allowed.")
620 (nargs, args)
621 register int nargs;
622 Lisp_Object *args;
623{
624 register Lisp_Object len, val;
625 register int index;
626 register struct Lisp_Vector *p;
627
628 XFASTINT (len) = nargs;
629 val = Fmake_vector (len, Qnil);
630 p = XVECTOR (val);
631 for (index = 0; index < nargs; index++)
632 p->contents[index] = args[index];
633 return val;
634}
635
636DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0,
637 "Create a byte-code object with specified arguments as elements.\n\
638The arguments should be the arglist, bytecode-string, constant vector,\n\
639stack size, (optional) doc string, and (optional) interactive spec.\n\
640The first four arguments are required; at most six have any\n\
641significance.")
642 (nargs, args)
643 register int nargs;
644 Lisp_Object *args;
645{
646 register Lisp_Object len, val;
647 register int index;
648 register struct Lisp_Vector *p;
649
650 XFASTINT (len) = nargs;
265a9e55 651 if (!NILP (Vpurify_flag))
7146af97
JB
652 val = make_pure_vector (len);
653 else
654 val = Fmake_vector (len, Qnil);
655 p = XVECTOR (val);
656 for (index = 0; index < nargs; index++)
657 {
265a9e55 658 if (!NILP (Vpurify_flag))
7146af97
JB
659 args[index] = Fpurecopy (args[index]);
660 p->contents[index] = args[index];
661 }
662 XSETTYPE (val, Lisp_Compiled);
663 return val;
664}
665\f
666/* Allocation of symbols.
667 Just like allocation of conses!
668
669 Each symbol_block is just under 1020 bytes long,
670 since malloc really allocates in units of powers of two
671 and uses 4 bytes for its own overhead. */
672
673#define SYMBOL_BLOCK_SIZE \
674 ((1020 - sizeof (struct symbol_block *)) / sizeof (struct Lisp_Symbol))
675
676struct symbol_block
677 {
678 struct symbol_block *next;
679 struct Lisp_Symbol symbols[SYMBOL_BLOCK_SIZE];
680 };
681
682struct symbol_block *symbol_block;
683int symbol_block_index;
684
685struct Lisp_Symbol *symbol_free_list;
686
687void
688init_symbol ()
689{
690 symbol_block = (struct symbol_block *) malloc (sizeof (struct symbol_block));
691 symbol_block->next = 0;
692 bzero (symbol_block->symbols, sizeof symbol_block->symbols);
693 symbol_block_index = 0;
694 symbol_free_list = 0;
695}
696
697DEFUN ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0,
698 "Return a newly allocated uninterned symbol whose name is NAME.\n\
699Its value and function definition are void, and its property list is nil.")
700 (str)
701 Lisp_Object str;
702{
703 register Lisp_Object val;
704 register struct Lisp_Symbol *p;
705
706 CHECK_STRING (str, 0);
707
708 if (symbol_free_list)
709 {
710 XSET (val, Lisp_Symbol, symbol_free_list);
711 symbol_free_list
712 = (struct Lisp_Symbol *) XFASTINT (symbol_free_list->value);
713 }
714 else
715 {
716 if (symbol_block_index == SYMBOL_BLOCK_SIZE)
717 {
9ac0d9e0 718 struct symbol_block *new = (struct symbol_block *) xmalloc (sizeof (struct symbol_block));
7146af97
JB
719 VALIDATE_LISP_STORAGE (new, sizeof *new);
720 new->next = symbol_block;
721 symbol_block = new;
722 symbol_block_index = 0;
723 }
724 XSET (val, Lisp_Symbol, &symbol_block->symbols[symbol_block_index++]);
725 }
726 p = XSYMBOL (val);
727 p->name = XSTRING (str);
728 p->plist = Qnil;
729 p->value = Qunbound;
730 p->function = Qunbound;
731 p->next = 0;
732 consing_since_gc += sizeof (struct Lisp_Symbol);
733 return val;
734}
735\f
736/* Allocation of markers.
737 Works like allocation of conses. */
738
739#define MARKER_BLOCK_SIZE \
740 ((1020 - sizeof (struct marker_block *)) / sizeof (struct Lisp_Marker))
741
742struct marker_block
743 {
744 struct marker_block *next;
745 struct Lisp_Marker markers[MARKER_BLOCK_SIZE];
746 };
747
748struct marker_block *marker_block;
749int marker_block_index;
750
751struct Lisp_Marker *marker_free_list;
752
753void
754init_marker ()
755{
756 marker_block = (struct marker_block *) malloc (sizeof (struct marker_block));
757 marker_block->next = 0;
758 bzero (marker_block->markers, sizeof marker_block->markers);
759 marker_block_index = 0;
760 marker_free_list = 0;
761}
762
763DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
764 "Return a newly allocated marker which does not point at any place.")
765 ()
766{
767 register Lisp_Object val;
768 register struct Lisp_Marker *p;
e065a56e 769
7146af97
JB
770 if (marker_free_list)
771 {
772 XSET (val, Lisp_Marker, marker_free_list);
773 marker_free_list
774 = (struct Lisp_Marker *) XFASTINT (marker_free_list->chain);
775 }
776 else
777 {
778 if (marker_block_index == MARKER_BLOCK_SIZE)
779 {
9ac0d9e0 780 struct marker_block *new = (struct marker_block *) xmalloc (sizeof (struct marker_block));
7146af97
JB
781 VALIDATE_LISP_STORAGE (new, sizeof *new);
782 new->next = marker_block;
783 marker_block = new;
784 marker_block_index = 0;
785 }
786 XSET (val, Lisp_Marker, &marker_block->markers[marker_block_index++]);
787 }
788 p = XMARKER (val);
789 p->buffer = 0;
790 p->bufpos = 0;
791 p->chain = Qnil;
792 consing_since_gc += sizeof (struct Lisp_Marker);
793 return val;
794}
795\f
796/* Allocation of strings */
797
798/* Strings reside inside of string_blocks. The entire data of the string,
799 both the size and the contents, live in part of the `chars' component of a string_block.
800 The `pos' component is the index within `chars' of the first free byte.
801
802 first_string_block points to the first string_block ever allocated.
803 Each block points to the next one with its `next' field.
804 The `prev' fields chain in reverse order.
805 The last one allocated is the one currently being filled.
806 current_string_block points to it.
807
808 The string_blocks that hold individual large strings
809 go in a separate chain, started by large_string_blocks. */
810
811
812/* String blocks contain this many useful bytes.
813 8188 is power of 2, minus 4 for malloc overhead. */
814#define STRING_BLOCK_SIZE (8188 - sizeof (struct string_block_head))
815
816/* A string bigger than this gets its own specially-made string block
817 if it doesn't fit in the current one. */
818#define STRING_BLOCK_OUTSIZE 1024
819
820struct string_block_head
821 {
822 struct string_block *next, *prev;
823 int pos;
824 };
825
826struct string_block
827 {
828 struct string_block *next, *prev;
829 int pos;
830 char chars[STRING_BLOCK_SIZE];
831 };
832
833/* This points to the string block we are now allocating strings. */
834
835struct string_block *current_string_block;
836
837/* This points to the oldest string block, the one that starts the chain. */
838
839struct string_block *first_string_block;
840
841/* Last string block in chain of those made for individual large strings. */
842
843struct string_block *large_string_blocks;
844
845/* If SIZE is the length of a string, this returns how many bytes
846 the string occupies in a string_block (including padding). */
847
848#define STRING_FULLSIZE(size) (((size) + sizeof (struct Lisp_String) + PAD) \
849 & ~(PAD - 1))
850#define PAD (sizeof (int))
851
852#if 0
853#define STRING_FULLSIZE(SIZE) \
854(((SIZE) + 2 * sizeof (int)) & ~(sizeof (int) - 1))
855#endif
856
857void
858init_strings ()
859{
860 current_string_block = (struct string_block *) malloc (sizeof (struct string_block));
861 first_string_block = current_string_block;
862 consing_since_gc += sizeof (struct string_block);
863 current_string_block->next = 0;
864 current_string_block->prev = 0;
865 current_string_block->pos = 0;
866 large_string_blocks = 0;
867}
868
869DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0,
870 "Return a newly created string of length LENGTH, with each element being INIT.\n\
871Both LENGTH and INIT must be numbers.")
872 (length, init)
873 Lisp_Object length, init;
874{
875 register Lisp_Object val;
876 register unsigned char *p, *end, c;
877
878 if (XTYPE (length) != Lisp_Int || XINT (length) < 0)
879 length = wrong_type_argument (Qnatnump, length);
880 CHECK_NUMBER (init, 1);
881 val = make_uninit_string (XINT (length));
882 c = XINT (init);
883 p = XSTRING (val)->data;
884 end = p + XSTRING (val)->size;
885 while (p != end)
886 *p++ = c;
887 *p = 0;
888 return val;
889}
890
891Lisp_Object
892make_string (contents, length)
893 char *contents;
894 int length;
895{
896 register Lisp_Object val;
897 val = make_uninit_string (length);
898 bcopy (contents, XSTRING (val)->data, length);
899 return val;
900}
901
902Lisp_Object
903build_string (str)
904 char *str;
905{
906 return make_string (str, strlen (str));
907}
908
909Lisp_Object
910make_uninit_string (length)
911 int length;
912{
913 register Lisp_Object val;
914 register int fullsize = STRING_FULLSIZE (length);
915
916 if (length < 0) abort ();
917
918 if (fullsize <= STRING_BLOCK_SIZE - current_string_block->pos)
919 /* This string can fit in the current string block */
920 {
921 XSET (val, Lisp_String,
922 (struct Lisp_String *) (current_string_block->chars + current_string_block->pos));
923 current_string_block->pos += fullsize;
924 }
925 else if (fullsize > STRING_BLOCK_OUTSIZE)
926 /* This string gets its own string block */
927 {
928 register struct string_block *new
9ac0d9e0 929 = (struct string_block *) xmalloc (sizeof (struct string_block_head) + fullsize);
7146af97 930 VALIDATE_LISP_STORAGE (new, 0);
7146af97
JB
931 consing_since_gc += sizeof (struct string_block_head) + fullsize;
932 new->pos = fullsize;
933 new->next = large_string_blocks;
934 large_string_blocks = new;
935 XSET (val, Lisp_String,
936 (struct Lisp_String *) ((struct string_block_head *)new + 1));
937 }
938 else
939 /* Make a new current string block and start it off with this string */
940 {
941 register struct string_block *new
9ac0d9e0 942 = (struct string_block *) xmalloc (sizeof (struct string_block));
7146af97
JB
943 VALIDATE_LISP_STORAGE (new, sizeof *new);
944 consing_since_gc += sizeof (struct string_block);
945 current_string_block->next = new;
946 new->prev = current_string_block;
947 new->next = 0;
948 current_string_block = new;
949 new->pos = fullsize;
950 XSET (val, Lisp_String,
951 (struct Lisp_String *) current_string_block->chars);
952 }
953
954 XSTRING (val)->size = length;
955 XSTRING (val)->data[length] = 0;
d5e35230 956 INITIALIZE_INTERVAL (XSTRING (val), NULL_INTERVAL);
7146af97
JB
957
958 return val;
959}
960
961/* Return a newly created vector or string with specified arguments as
736471d1
RS
962 elements. If all the arguments are characters that can fit
963 in a string of events, make a string; otherwise, make a vector.
964
965 Any number of arguments, even zero arguments, are allowed. */
7146af97
JB
966
967Lisp_Object
736471d1 968make_event_array (nargs, args)
7146af97
JB
969 register int nargs;
970 Lisp_Object *args;
971{
972 int i;
973
974 for (i = 0; i < nargs; i++)
736471d1 975 /* The things that fit in a string
c9ca4659
RS
976 are characters that are in 0...127,
977 after discarding the meta bit and all the bits above it. */
7146af97 978 if (XTYPE (args[i]) != Lisp_Int
c9ca4659 979 || (XUINT (args[i]) & ~(-CHAR_META)) >= 0200)
7146af97
JB
980 return Fvector (nargs, args);
981
982 /* Since the loop exited, we know that all the things in it are
983 characters, so we can make a string. */
984 {
c13ccad2 985 Lisp_Object result;
7146af97 986
c13ccad2 987 result = Fmake_string (nargs, make_number (0));
7146af97 988 for (i = 0; i < nargs; i++)
736471d1
RS
989 {
990 XSTRING (result)->data[i] = XINT (args[i]);
991 /* Move the meta bit to the right place for a string char. */
992 if (XINT (args[i]) & CHAR_META)
993 XSTRING (result)->data[i] |= 0x80;
994 }
7146af97
JB
995
996 return result;
997 }
998}
999\f
1a4f1e2c
JB
1000/* Pure storage management. */
1001
7146af97
JB
1002/* Must get an error if pure storage is full,
1003 since if it cannot hold a large string
1004 it may be able to hold conses that point to that string;
1005 then the string is not protected from gc. */
1006
1007Lisp_Object
1008make_pure_string (data, length)
1009 char *data;
1010 int length;
1011{
1012 register Lisp_Object new;
d5e35230 1013 register int size = sizeof (int) + INTERVAL_PTR_SIZE + length + 1;
7146af97
JB
1014
1015 if (pureptr + size > PURESIZE)
1016 error ("Pure Lisp storage exhausted");
1017 XSET (new, Lisp_String, PUREBEG + pureptr);
1018 XSTRING (new)->size = length;
1019 bcopy (data, XSTRING (new)->data, length);
1020 XSTRING (new)->data[length] = 0;
06c5fe00
RS
1021
1022 /* We must give strings in pure storage some kind of interval. So we
1023 give them a null one. */
1024#if defined (USE_TEXT_PROPERTIES)
1025 XSTRING (new)->intervals = NULL_INTERVAL;
1026#endif
7146af97
JB
1027 pureptr += (size + sizeof (int) - 1)
1028 / sizeof (int) * sizeof (int);
1029 return new;
1030}
1031
1032Lisp_Object
1033pure_cons (car, cdr)
1034 Lisp_Object car, cdr;
1035{
1036 register Lisp_Object new;
1037
1038 if (pureptr + sizeof (struct Lisp_Cons) > PURESIZE)
1039 error ("Pure Lisp storage exhausted");
1040 XSET (new, Lisp_Cons, PUREBEG + pureptr);
1041 pureptr += sizeof (struct Lisp_Cons);
1042 XCONS (new)->car = Fpurecopy (car);
1043 XCONS (new)->cdr = Fpurecopy (cdr);
1044 return new;
1045}
1046
1047#ifdef LISP_FLOAT_TYPE
1048
1049Lisp_Object
1050make_pure_float (num)
1051 double num;
1052{
1053 register Lisp_Object new;
1054
6d19f28a
JB
1055 /* Make sure that PUREBEG + pureptr is aligned on at least a sizeof
1056 (double) boundary. Some architectures (like the sparc) require
1057 this, and I suspect that floats are rare enough that it's no
1058 tragedy for those that do. */
1059 {
1060 int alignment;
1061 char *p = PUREBEG + pureptr;
1062
fe90ad97
JB
1063#ifdef __GNUC__
1064#if __GNUC__ >= 2
6d19f28a 1065 alignment = __alignof (struct Lisp_Float);
fe90ad97 1066#else
6d19f28a 1067 alignment = sizeof (struct Lisp_Float);
fe90ad97
JB
1068#endif
1069#else
6d19f28a 1070 alignment = sizeof (struct Lisp_Float);
fe90ad97 1071#endif
6d19f28a
JB
1072 p = (char *) (((unsigned long) p + alignment - 1) & - alignment);
1073 pureptr = p - PUREBEG;
1074 }
1a4f1e2c 1075
7146af97
JB
1076 if (pureptr + sizeof (struct Lisp_Float) > PURESIZE)
1077 error ("Pure Lisp storage exhausted");
1078 XSET (new, Lisp_Float, PUREBEG + pureptr);
1079 pureptr += sizeof (struct Lisp_Float);
1080 XFLOAT (new)->data = num;
1081 XFLOAT (new)->type = 0; /* bug chasing -wsr */
1082 return new;
1083}
1084
1085#endif /* LISP_FLOAT_TYPE */
1086
1087Lisp_Object
1088make_pure_vector (len)
1089 int len;
1090{
1091 register Lisp_Object new;
1092 register int size = sizeof (struct Lisp_Vector) + (len - 1) * sizeof (Lisp_Object);
1093
1094 if (pureptr + size > PURESIZE)
1095 error ("Pure Lisp storage exhausted");
1096
1097 XSET (new, Lisp_Vector, PUREBEG + pureptr);
1098 pureptr += size;
1099 XVECTOR (new)->size = len;
1100 return new;
1101}
1102
1103DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
1104 "Make a copy of OBJECT in pure storage.\n\
1105Recursively copies contents of vectors and cons cells.\n\
1106Does not copy symbols.")
1107 (obj)
1108 register Lisp_Object obj;
1109{
1110 register Lisp_Object new, tem;
1111 register int i;
1112
265a9e55 1113 if (NILP (Vpurify_flag))
7146af97
JB
1114 return obj;
1115
1116 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1117 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1118 return obj;
1119
1120#ifdef SWITCH_ENUM_BUG
1121 switch ((int) XTYPE (obj))
1122#else
1123 switch (XTYPE (obj))
1124#endif
1125 {
1126 case Lisp_Marker:
1127 error ("Attempt to copy a marker to pure storage");
1128
1129 case Lisp_Cons:
1130 return pure_cons (XCONS (obj)->car, XCONS (obj)->cdr);
1131
1132#ifdef LISP_FLOAT_TYPE
1133 case Lisp_Float:
1134 return make_pure_float (XFLOAT (obj)->data);
1135#endif /* LISP_FLOAT_TYPE */
1136
1137 case Lisp_String:
1138 return make_pure_string (XSTRING (obj)->data, XSTRING (obj)->size);
1139
1140 case Lisp_Compiled:
1141 case Lisp_Vector:
1142 new = make_pure_vector (XVECTOR (obj)->size);
1143 for (i = 0; i < XVECTOR (obj)->size; i++)
1144 {
1145 tem = XVECTOR (obj)->contents[i];
1146 XVECTOR (new)->contents[i] = Fpurecopy (tem);
1147 }
1148 XSETTYPE (new, XTYPE (obj));
1149 return new;
1150
1151 default:
1152 return obj;
1153 }
1154}
1155\f
1156/* Recording what needs to be marked for gc. */
1157
1158struct gcpro *gcprolist;
1159
daa37602 1160#define NSTATICS 512
7146af97
JB
1161
1162Lisp_Object *staticvec[NSTATICS] = {0};
1163
1164int staticidx = 0;
1165
1166/* Put an entry in staticvec, pointing at the variable whose address is given */
1167
1168void
1169staticpro (varaddress)
1170 Lisp_Object *varaddress;
1171{
1172 staticvec[staticidx++] = varaddress;
1173 if (staticidx >= NSTATICS)
1174 abort ();
1175}
1176
1177struct catchtag
1178 {
1179 Lisp_Object tag;
1180 Lisp_Object val;
1181 struct catchtag *next;
1182/* jmp_buf jmp; /* We don't need this for GC purposes */
1183 };
1184
1185struct backtrace
1186 {
1187 struct backtrace *next;
1188 Lisp_Object *function;
1189 Lisp_Object *args; /* Points to vector of args. */
1190 int nargs; /* length of vector */
1191 /* if nargs is UNEVALLED, args points to slot holding list of unevalled args */
1192 char evalargs;
1193 };
7146af97 1194\f
1a4f1e2c
JB
1195/* Garbage collection! */
1196
7146af97
JB
1197int total_conses, total_markers, total_symbols, total_string_size, total_vector_size;
1198int total_free_conses, total_free_markers, total_free_symbols;
1199#ifdef LISP_FLOAT_TYPE
1200int total_free_floats, total_floats;
1201#endif /* LISP_FLOAT_TYPE */
1202
7146af97
JB
1203DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "",
1204 "Reclaim storage for Lisp objects no longer needed.\n\
1205Returns info on amount of space in use:\n\
1206 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)\n\
1207 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS\n\
1208 (USED-FLOATS . FREE-FLOATS))\n\
1209Garbage collection happens automatically if you cons more than\n\
1210`gc-cons-threshold' bytes of Lisp data since previous garbage collection.")
1211 ()
1212{
1213 register struct gcpro *tail;
1214 register struct specbinding *bind;
1215 struct catchtag *catch;
1216 struct handler *handler;
1217 register struct backtrace *backlist;
1218 register Lisp_Object tem;
1219 char *omessage = echo_area_glyphs;
51056d11 1220 int omessage_length = echo_area_glyphs_length;
7146af97
JB
1221 char stack_top_variable;
1222 register int i;
1223
7146af97
JB
1224 /* Save a copy of the contents of the stack, for debugging. */
1225#if MAX_SAVE_STACK > 0
265a9e55 1226 if (NILP (Vpurify_flag))
7146af97
JB
1227 {
1228 i = &stack_top_variable - stack_bottom;
1229 if (i < 0) i = -i;
1230 if (i < MAX_SAVE_STACK)
1231 {
1232 if (stack_copy == 0)
9ac0d9e0 1233 stack_copy = (char *) xmalloc (stack_copy_size = i);
7146af97 1234 else if (stack_copy_size < i)
9ac0d9e0 1235 stack_copy = (char *) xrealloc (stack_copy, (stack_copy_size = i));
7146af97
JB
1236 if (stack_copy)
1237 {
1238 if ((int) (&stack_top_variable - stack_bottom) > 0)
1239 bcopy (stack_bottom, stack_copy, i);
1240 else
1241 bcopy (&stack_top_variable, stack_copy, i);
1242 }
1243 }
1244 }
1245#endif /* MAX_SAVE_STACK > 0 */
1246
1247 if (!noninteractive)
1248 message1 ("Garbage collecting...");
1249
1250 /* Don't keep command history around forever */
1251 tem = Fnthcdr (make_number (30), Vcommand_history);
1252 if (CONSP (tem))
1253 XCONS (tem)->cdr = Qnil;
ffd56f97 1254
7146af97
JB
1255 /* Likewise for undo information. */
1256 {
1257 register struct buffer *nextb = all_buffers;
1258
1259 while (nextb)
1260 {
ffd56f97
JB
1261 /* If a buffer's undo list is Qt, that means that undo is
1262 turned off in that buffer. Calling truncate_undo_list on
1263 Qt tends to return NULL, which effectively turns undo back on.
1264 So don't call truncate_undo_list if undo_list is Qt. */
1265 if (! EQ (nextb->undo_list, Qt))
1266 nextb->undo_list
502b9b64
JB
1267 = truncate_undo_list (nextb->undo_list, undo_limit,
1268 undo_strong_limit);
7146af97
JB
1269 nextb = nextb->next;
1270 }
1271 }
1272
1273 gc_in_progress = 1;
1274
1275/* clear_marks (); */
1276
1277 /* In each "large string", set the MARKBIT of the size field.
1278 That enables mark_object to recognize them. */
1279 {
1280 register struct string_block *b;
1281 for (b = large_string_blocks; b; b = b->next)
1282 ((struct Lisp_String *)(&b->chars[0]))->size |= MARKBIT;
1283 }
1284
1285 /* Mark all the special slots that serve as the roots of accessibility.
1286
1287 Usually the special slots to mark are contained in particular structures.
1288 Then we know no slot is marked twice because the structures don't overlap.
1289 In some cases, the structures point to the slots to be marked.
1290 For these, we use MARKBIT to avoid double marking of the slot. */
1291
1292 for (i = 0; i < staticidx; i++)
1293 mark_object (staticvec[i]);
1294 for (tail = gcprolist; tail; tail = tail->next)
1295 for (i = 0; i < tail->nvars; i++)
1296 if (!XMARKBIT (tail->var[i]))
1297 {
1298 mark_object (&tail->var[i]);
1299 XMARK (tail->var[i]);
1300 }
1301 for (bind = specpdl; bind != specpdl_ptr; bind++)
1302 {
1303 mark_object (&bind->symbol);
1304 mark_object (&bind->old_value);
1305 }
1306 for (catch = catchlist; catch; catch = catch->next)
1307 {
1308 mark_object (&catch->tag);
1309 mark_object (&catch->val);
1310 }
1311 for (handler = handlerlist; handler; handler = handler->next)
1312 {
1313 mark_object (&handler->handler);
1314 mark_object (&handler->var);
1315 }
1316 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1317 {
1318 if (!XMARKBIT (*backlist->function))
1319 {
1320 mark_object (backlist->function);
1321 XMARK (*backlist->function);
1322 }
1323 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1324 i = 0;
1325 else
1326 i = backlist->nargs - 1;
1327 for (; i >= 0; i--)
1328 if (!XMARKBIT (backlist->args[i]))
1329 {
1330 mark_object (&backlist->args[i]);
1331 XMARK (backlist->args[i]);
1332 }
1333 }
1334
1335 gc_sweep ();
1336
1337 /* Clear the mark bits that we set in certain root slots. */
1338
1339 for (tail = gcprolist; tail; tail = tail->next)
1340 for (i = 0; i < tail->nvars; i++)
1341 XUNMARK (tail->var[i]);
1342 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1343 {
1344 XUNMARK (*backlist->function);
1345 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1346 i = 0;
1347 else
1348 i = backlist->nargs - 1;
1349 for (; i >= 0; i--)
1350 XUNMARK (backlist->args[i]);
1351 }
1352 XUNMARK (buffer_defaults.name);
1353 XUNMARK (buffer_local_symbols.name);
1354
1355/* clear_marks (); */
1356 gc_in_progress = 0;
1357
1358 consing_since_gc = 0;
1359 if (gc_cons_threshold < 10000)
1360 gc_cons_threshold = 10000;
1361
7d385b05 1362 if (omessage || minibuf_level > 0)
51056d11 1363 message2 (omessage, omessage_length);
7146af97
JB
1364 else if (!noninteractive)
1365 message1 ("Garbage collecting...done");
1366
7146af97
JB
1367 return Fcons (Fcons (make_number (total_conses),
1368 make_number (total_free_conses)),
1369 Fcons (Fcons (make_number (total_symbols),
1370 make_number (total_free_symbols)),
1371 Fcons (Fcons (make_number (total_markers),
1372 make_number (total_free_markers)),
1373 Fcons (make_number (total_string_size),
1374 Fcons (make_number (total_vector_size),
1375
1376#ifdef LISP_FLOAT_TYPE
1377 Fcons (Fcons (make_number (total_floats),
1378 make_number (total_free_floats)),
1379 Qnil)
1380#else /* not LISP_FLOAT_TYPE */
1381 Qnil
1382#endif /* not LISP_FLOAT_TYPE */
1383 )))));
1384}
1385\f
1386#if 0
1387static void
1388clear_marks ()
1389{
1390 /* Clear marks on all conses */
1391 {
1392 register struct cons_block *cblk;
1393 register int lim = cons_block_index;
1394
1395 for (cblk = cons_block; cblk; cblk = cblk->next)
1396 {
1397 register int i;
1398 for (i = 0; i < lim; i++)
1399 XUNMARK (cblk->conses[i].car);
1400 lim = CONS_BLOCK_SIZE;
1401 }
1402 }
1403 /* Clear marks on all symbols */
1404 {
1405 register struct symbol_block *sblk;
1406 register int lim = symbol_block_index;
1407
1408 for (sblk = symbol_block; sblk; sblk = sblk->next)
1409 {
1410 register int i;
1411 for (i = 0; i < lim; i++)
1412 {
1413 XUNMARK (sblk->symbols[i].plist);
1414 }
1415 lim = SYMBOL_BLOCK_SIZE;
1416 }
1417 }
1418 /* Clear marks on all markers */
1419 {
1420 register struct marker_block *sblk;
1421 register int lim = marker_block_index;
1422
1423 for (sblk = marker_block; sblk; sblk = sblk->next)
1424 {
1425 register int i;
1426 for (i = 0; i < lim; i++)
1427 XUNMARK (sblk->markers[i].chain);
1428 lim = MARKER_BLOCK_SIZE;
1429 }
1430 }
1431 /* Clear mark bits on all buffers */
1432 {
1433 register struct buffer *nextb = all_buffers;
1434
1435 while (nextb)
1436 {
1437 XUNMARK (nextb->name);
1438 nextb = nextb->next;
1439 }
1440 }
1441}
1442#endif
1443\f
1a4f1e2c
JB
1444/* Mark reference to a Lisp_Object.
1445 If the object referred to has not been seen yet, recursively mark
1446 all the references contained in it.
7146af97 1447
eb8c3be9 1448 If the object referenced is a short string, the referencing slot
7146af97
JB
1449 is threaded into a chain of such slots, pointed to from
1450 the `size' field of the string. The actual string size
1451 lives in the last slot in the chain. We recognize the end
1452 because it is < (unsigned) STRING_BLOCK_SIZE. */
1453
785cd37f
RS
1454#define LAST_MARKED_SIZE 500
1455Lisp_Object *last_marked[LAST_MARKED_SIZE];
1456int last_marked_index;
1457
7146af97
JB
1458static void
1459mark_object (objptr)
1460 Lisp_Object *objptr;
1461{
1462 register Lisp_Object obj;
1463
9149e743 1464 loop:
7146af97 1465 obj = *objptr;
9149e743 1466 loop2:
7146af97
JB
1467 XUNMARK (obj);
1468
7146af97
JB
1469 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1470 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1471 return;
1472
785cd37f
RS
1473 last_marked[last_marked_index++] = objptr;
1474 if (last_marked_index == LAST_MARKED_SIZE)
1475 last_marked_index = 0;
1476
7146af97
JB
1477#ifdef SWITCH_ENUM_BUG
1478 switch ((int) XGCTYPE (obj))
1479#else
1480 switch (XGCTYPE (obj))
1481#endif
1482 {
1483 case Lisp_String:
1484 {
1485 register struct Lisp_String *ptr = XSTRING (obj);
1486
d5e35230 1487 MARK_INTERVAL_TREE (ptr->intervals);
7146af97
JB
1488 if (ptr->size & MARKBIT)
1489 /* A large string. Just set ARRAY_MARK_FLAG. */
1490 ptr->size |= ARRAY_MARK_FLAG;
1491 else
1492 {
1493 /* A small string. Put this reference
1494 into the chain of references to it.
1495 The address OBJPTR is even, so if the address
1496 includes MARKBIT, put it in the low bit
1497 when we store OBJPTR into the size field. */
1498
1499 if (XMARKBIT (*objptr))
1500 {
1501 XFASTINT (*objptr) = ptr->size;
1502 XMARK (*objptr);
1503 }
1504 else
1505 XFASTINT (*objptr) = ptr->size;
1506 if ((int)objptr & 1) abort ();
1507 ptr->size = (int) objptr & ~MARKBIT;
1508 if ((int) objptr & MARKBIT)
1509 ptr->size ++;
1510 }
1511 }
1512 break;
1513
1514 case Lisp_Vector:
1515 case Lisp_Window:
1516 case Lisp_Process:
1517 case Lisp_Window_Configuration:
7146af97
JB
1518 {
1519 register struct Lisp_Vector *ptr = XVECTOR (obj);
1520 register int size = ptr->size;
41f54422
RS
1521 /* The reason we use ptr1 is to avoid an apparent hardware bug
1522 that happens occasionally on the FSF's HP 300s.
1523 The bug is that a2 gets clobbered by recursive calls to mark_object.
1524 The clobberage seems to happen during function entry,
1525 perhaps in the moveml instruction.
1526 Yes, this is a crock, but we have to do it. */
785cd37f 1527 struct Lisp_Vector *volatile ptr1 = ptr;
7146af97
JB
1528 register int i;
1529
1530 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1531 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1532 for (i = 0; i < size; i++) /* and then mark its elements */
41f54422 1533 mark_object (&ptr1->contents[i]);
7146af97
JB
1534 }
1535 break;
1536
c54ca951
RS
1537 case Lisp_Compiled:
1538 /* We could treat this just like a vector, but it is better
1539 to save the COMPILED_CONSTANTS element for last and avoid recursion
1540 there. */
1541 {
1542 register struct Lisp_Vector *ptr = XVECTOR (obj);
1543 register int size = ptr->size;
41f54422 1544 /* See comment above under Lisp_Vector. */
c54ca951
RS
1545 struct Lisp_Vector *volatile ptr1 = ptr;
1546 register int i;
1547
1548 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1549 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1550 for (i = 0; i < size; i++) /* and then mark its elements */
1551 {
c54ca951 1552 if (i != COMPILED_CONSTANTS)
41f54422 1553 mark_object (&ptr1->contents[i]);
c54ca951 1554 }
fd80e3bb
RS
1555 /* This cast should be unnecessary, but some Mips compiler complains
1556 (MIPS-ABI + SysVR4, DC/OSx, etc). */
1557 objptr = (Lisp_Object *) &ptr1->contents[COMPILED_CONSTANTS];
c54ca951
RS
1558 goto loop;
1559 }
1560
502b9b64
JB
1561#ifdef MULTI_FRAME
1562 case Lisp_Frame:
7146af97 1563 {
41f54422
RS
1564 /* See comment above under Lisp_Vector for why this is volatile. */
1565 register struct frame *volatile ptr = XFRAME (obj);
7146af97 1566 register int size = ptr->size;
7146af97
JB
1567
1568 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1569 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1570
1571 mark_object (&ptr->name);
502b9b64 1572 mark_object (&ptr->focus_frame);
7146af97
JB
1573 mark_object (&ptr->width);
1574 mark_object (&ptr->height);
1575 mark_object (&ptr->selected_window);
1576 mark_object (&ptr->minibuffer_window);
1577 mark_object (&ptr->param_alist);
a3c87d4e
JB
1578 mark_object (&ptr->scroll_bars);
1579 mark_object (&ptr->condemned_scroll_bars);
9e8a7331 1580 mark_object (&ptr->menu_bar_items);
8db3b573 1581 mark_object (&ptr->menu_bar_vector);
48dfbc2f 1582 mark_object (&ptr->face_alist);
7146af97
JB
1583 }
1584 break;
12740e58 1585#endif /* MULTI_FRAME */
7146af97 1586
7146af97
JB
1587 case Lisp_Symbol:
1588 {
41f54422
RS
1589 /* See comment above under Lisp_Vector for why this is volatile. */
1590 register struct Lisp_Symbol *volatile ptr = XSYMBOL (obj);
7146af97
JB
1591 struct Lisp_Symbol *ptrx;
1592
1593 if (XMARKBIT (ptr->plist)) break;
1594 XMARK (ptr->plist);
7146af97
JB
1595 mark_object ((Lisp_Object *) &ptr->value);
1596 mark_object (&ptr->function);
1597 mark_object (&ptr->plist);
8aaa7c8a
JB
1598 XSETTYPE (*(Lisp_Object *) &ptr->name, Lisp_String);
1599 mark_object (&ptr->name);
7146af97
JB
1600 ptr = ptr->next;
1601 if (ptr)
1602 {
9149e743
KH
1603 /* For the benefit of the last_marked log. */
1604 objptr = (Lisp_Object *)&XSYMBOL (obj)->next;
b0846f52 1605 ptrx = ptr; /* Use of ptrx avoids compiler bug on Sun */
7146af97 1606 XSETSYMBOL (obj, ptrx);
9149e743
KH
1607 /* We can't goto loop here because *objptr doesn't contain an
1608 actual Lisp_Object with valid datatype field. */
1609 goto loop2;
7146af97
JB
1610 }
1611 }
1612 break;
1613
1614 case Lisp_Marker:
1615 XMARK (XMARKER (obj)->chain);
1616 /* DO NOT mark thru the marker's chain.
1617 The buffer's markers chain does not preserve markers from gc;
c54ca951 1618 instead, markers are removed from the chain when freed by gc. */
7146af97
JB
1619 break;
1620
1621 case Lisp_Cons:
1622 case Lisp_Buffer_Local_Value:
1623 case Lisp_Some_Buffer_Local_Value:
6c523803 1624 case Lisp_Overlay:
7146af97
JB
1625 {
1626 register struct Lisp_Cons *ptr = XCONS (obj);
1627 if (XMARKBIT (ptr->car)) break;
1628 XMARK (ptr->car);
c54ca951
RS
1629 /* If the cdr is nil, avoid recursion for the car. */
1630 if (EQ (ptr->cdr, Qnil))
1631 {
1632 objptr = &ptr->car;
c54ca951
RS
1633 goto loop;
1634 }
7146af97 1635 mark_object (&ptr->car);
41f54422
RS
1636 /* See comment above under Lisp_Vector for why not use ptr here. */
1637 objptr = &XCONS (obj)->cdr;
7146af97
JB
1638 goto loop;
1639 }
1640
1641#ifdef LISP_FLOAT_TYPE
1642 case Lisp_Float:
1643 XMARK (XFLOAT (obj)->type);
1644 break;
1645#endif /* LISP_FLOAT_TYPE */
1646
1647 case Lisp_Buffer:
1648 if (!XMARKBIT (XBUFFER (obj)->name))
1649 mark_buffer (obj);
1650 break;
1651
1652 case Lisp_Int:
1653 case Lisp_Void:
1654 case Lisp_Subr:
1655 case Lisp_Intfwd:
1656 case Lisp_Boolfwd:
1657 case Lisp_Objfwd:
1658 case Lisp_Buffer_Objfwd:
1659 case Lisp_Internal_Stream:
1660 /* Don't bother with Lisp_Buffer_Objfwd,
1661 since all markable slots in current buffer marked anyway. */
1662 /* Don't need to do Lisp_Objfwd, since the places they point
1663 are protected with staticpro. */
1664 break;
1665
1666 default:
1667 abort ();
1668 }
1669}
1670
1671/* Mark the pointers in a buffer structure. */
1672
1673static void
1674mark_buffer (buf)
1675 Lisp_Object buf;
1676{
7146af97
JB
1677 register struct buffer *buffer = XBUFFER (buf);
1678 register Lisp_Object *ptr;
1679
1680 /* This is the buffer's markbit */
1681 mark_object (&buffer->name);
1682 XMARK (buffer->name);
1683
d5e35230
JA
1684 MARK_INTERVAL_TREE (buffer->intervals);
1685
7146af97
JB
1686#if 0
1687 mark_object (buffer->syntax_table);
1688
1689 /* Mark the various string-pointers in the buffer object.
1690 Since the strings may be relocated, we must mark them
1691 in their actual slots. So gc_sweep must convert each slot
1692 back to an ordinary C pointer. */
1693 XSET (*(Lisp_Object *)&buffer->upcase_table,
1694 Lisp_String, buffer->upcase_table);
1695 mark_object ((Lisp_Object *)&buffer->upcase_table);
1696 XSET (*(Lisp_Object *)&buffer->downcase_table,
1697 Lisp_String, buffer->downcase_table);
1698 mark_object ((Lisp_Object *)&buffer->downcase_table);
1699
1700 XSET (*(Lisp_Object *)&buffer->sort_table,
1701 Lisp_String, buffer->sort_table);
1702 mark_object ((Lisp_Object *)&buffer->sort_table);
1703 XSET (*(Lisp_Object *)&buffer->folding_sort_table,
1704 Lisp_String, buffer->folding_sort_table);
1705 mark_object ((Lisp_Object *)&buffer->folding_sort_table);
1706#endif
1707
1708 for (ptr = &buffer->name + 1;
1709 (char *)ptr < (char *)buffer + sizeof (struct buffer);
1710 ptr++)
1711 mark_object (ptr);
1712}
1713\f
1a4f1e2c 1714/* Sweep: find all structures not marked, and free them. */
7146af97
JB
1715
1716static void
1717gc_sweep ()
1718{
1719 total_string_size = 0;
1720 compact_strings ();
1721
1722 /* Put all unmarked conses on free list */
1723 {
1724 register struct cons_block *cblk;
1725 register int lim = cons_block_index;
1726 register int num_free = 0, num_used = 0;
1727
1728 cons_free_list = 0;
1729
1730 for (cblk = cons_block; cblk; cblk = cblk->next)
1731 {
1732 register int i;
1733 for (i = 0; i < lim; i++)
1734 if (!XMARKBIT (cblk->conses[i].car))
1735 {
1736 XFASTINT (cblk->conses[i].car) = (int) cons_free_list;
1737 num_free++;
1738 cons_free_list = &cblk->conses[i];
1739 }
1740 else
1741 {
1742 num_used++;
1743 XUNMARK (cblk->conses[i].car);
1744 }
1745 lim = CONS_BLOCK_SIZE;
1746 }
1747 total_conses = num_used;
1748 total_free_conses = num_free;
1749 }
1750
1751#ifdef LISP_FLOAT_TYPE
1752 /* Put all unmarked floats on free list */
1753 {
1754 register struct float_block *fblk;
1755 register int lim = float_block_index;
1756 register int num_free = 0, num_used = 0;
1757
1758 float_free_list = 0;
1759
1760 for (fblk = float_block; fblk; fblk = fblk->next)
1761 {
1762 register int i;
1763 for (i = 0; i < lim; i++)
1764 if (!XMARKBIT (fblk->floats[i].type))
1765 {
1766 XFASTINT (fblk->floats[i].type) = (int) float_free_list;
1767 num_free++;
1768 float_free_list = &fblk->floats[i];
1769 }
1770 else
1771 {
1772 num_used++;
1773 XUNMARK (fblk->floats[i].type);
1774 }
1775 lim = FLOAT_BLOCK_SIZE;
1776 }
1777 total_floats = num_used;
1778 total_free_floats = num_free;
1779 }
1780#endif /* LISP_FLOAT_TYPE */
1781
d5e35230
JA
1782#ifdef USE_TEXT_PROPERTIES
1783 /* Put all unmarked intervals on free list */
1784 {
1785 register struct interval_block *iblk;
1786 register int lim = interval_block_index;
1787 register int num_free = 0, num_used = 0;
1788
1789 interval_free_list = 0;
1790
1791 for (iblk = interval_block; iblk; iblk = iblk->next)
1792 {
1793 register int i;
1794
1795 for (i = 0; i < lim; i++)
1796 {
1797 if (! XMARKBIT (iblk->intervals[i].plist))
1798 {
1799 iblk->intervals[i].parent = interval_free_list;
1800 interval_free_list = &iblk->intervals[i];
1801 num_free++;
1802 }
1803 else
1804 {
1805 num_used++;
1806 XUNMARK (iblk->intervals[i].plist);
1807 }
1808 }
1809 lim = INTERVAL_BLOCK_SIZE;
1810 }
1811 total_intervals = num_used;
1812 total_free_intervals = num_free;
1813 }
1814#endif /* USE_TEXT_PROPERTIES */
1815
7146af97
JB
1816 /* Put all unmarked symbols on free list */
1817 {
1818 register struct symbol_block *sblk;
1819 register int lim = symbol_block_index;
1820 register int num_free = 0, num_used = 0;
1821
1822 symbol_free_list = 0;
1823
1824 for (sblk = symbol_block; sblk; sblk = sblk->next)
1825 {
1826 register int i;
1827 for (i = 0; i < lim; i++)
1828 if (!XMARKBIT (sblk->symbols[i].plist))
1829 {
1830 XFASTINT (sblk->symbols[i].value) = (int) symbol_free_list;
1831 symbol_free_list = &sblk->symbols[i];
1832 num_free++;
1833 }
1834 else
1835 {
1836 num_used++;
1837 sblk->symbols[i].name
1838 = XSTRING (*(Lisp_Object *) &sblk->symbols[i].name);
1839 XUNMARK (sblk->symbols[i].plist);
1840 }
1841 lim = SYMBOL_BLOCK_SIZE;
1842 }
1843 total_symbols = num_used;
1844 total_free_symbols = num_free;
1845 }
1846
1847#ifndef standalone
1848 /* Put all unmarked markers on free list.
1849 Dechain each one first from the buffer it points into. */
1850 {
1851 register struct marker_block *mblk;
1852 struct Lisp_Marker *tem1;
1853 register int lim = marker_block_index;
1854 register int num_free = 0, num_used = 0;
1855
1856 marker_free_list = 0;
1857
1858 for (mblk = marker_block; mblk; mblk = mblk->next)
1859 {
1860 register int i;
1861 for (i = 0; i < lim; i++)
1862 if (!XMARKBIT (mblk->markers[i].chain))
1863 {
1864 Lisp_Object tem;
1865 tem1 = &mblk->markers[i]; /* tem1 avoids Sun compiler bug */
1866 XSET (tem, Lisp_Marker, tem1);
1867 unchain_marker (tem);
1868 XFASTINT (mblk->markers[i].chain) = (int) marker_free_list;
1869 marker_free_list = &mblk->markers[i];
1870 num_free++;
1871 }
1872 else
1873 {
1874 num_used++;
1875 XUNMARK (mblk->markers[i].chain);
1876 }
1877 lim = MARKER_BLOCK_SIZE;
1878 }
1879
1880 total_markers = num_used;
1881 total_free_markers = num_free;
1882 }
1883
1884 /* Free all unmarked buffers */
1885 {
1886 register struct buffer *buffer = all_buffers, *prev = 0, *next;
1887
1888 while (buffer)
1889 if (!XMARKBIT (buffer->name))
1890 {
1891 if (prev)
1892 prev->next = buffer->next;
1893 else
1894 all_buffers = buffer->next;
1895 next = buffer->next;
9ac0d9e0 1896 xfree (buffer);
7146af97
JB
1897 buffer = next;
1898 }
1899 else
1900 {
1901 XUNMARK (buffer->name);
d5e35230 1902 UNMARK_BALANCE_INTERVALS (buffer->intervals);
7146af97
JB
1903
1904#if 0
1905 /* Each `struct Lisp_String *' was turned into a Lisp_Object
1906 for purposes of marking and relocation.
1907 Turn them back into C pointers now. */
1908 buffer->upcase_table
1909 = XSTRING (*(Lisp_Object *)&buffer->upcase_table);
1910 buffer->downcase_table
1911 = XSTRING (*(Lisp_Object *)&buffer->downcase_table);
1912 buffer->sort_table
1913 = XSTRING (*(Lisp_Object *)&buffer->sort_table);
1914 buffer->folding_sort_table
1915 = XSTRING (*(Lisp_Object *)&buffer->folding_sort_table);
1916#endif
1917
1918 prev = buffer, buffer = buffer->next;
1919 }
1920 }
1921
1922#endif /* standalone */
1923
1924 /* Free all unmarked vectors */
1925 {
1926 register struct Lisp_Vector *vector = all_vectors, *prev = 0, *next;
1927 total_vector_size = 0;
1928
1929 while (vector)
1930 if (!(vector->size & ARRAY_MARK_FLAG))
1931 {
1932 if (prev)
1933 prev->next = vector->next;
1934 else
1935 all_vectors = vector->next;
1936 next = vector->next;
9ac0d9e0 1937 xfree (vector);
7146af97
JB
1938 vector = next;
1939 }
1940 else
1941 {
1942 vector->size &= ~ARRAY_MARK_FLAG;
1943 total_vector_size += vector->size;
1944 prev = vector, vector = vector->next;
1945 }
1946 }
1947
1948 /* Free all "large strings" not marked with ARRAY_MARK_FLAG. */
1949 {
1950 register struct string_block *sb = large_string_blocks, *prev = 0, *next;
e8720644 1951 struct Lisp_String *s;
7146af97
JB
1952
1953 while (sb)
e8720644
JB
1954 {
1955 s = (struct Lisp_String *) &sb->chars[0];
1956 if (s->size & ARRAY_MARK_FLAG)
1957 {
1958 ((struct Lisp_String *)(&sb->chars[0]))->size
1959 &= ~ARRAY_MARK_FLAG & ~MARKBIT;
1960 UNMARK_BALANCE_INTERVALS (s->intervals);
1961 total_string_size += ((struct Lisp_String *)(&sb->chars[0]))->size;
1962 prev = sb, sb = sb->next;
1963 }
1964 else
1965 {
1966 if (prev)
1967 prev->next = sb->next;
1968 else
1969 large_string_blocks = sb->next;
1970 next = sb->next;
1971 xfree (sb);
1972 sb = next;
1973 }
1974 }
7146af97
JB
1975 }
1976}
1977\f
1a4f1e2c 1978/* Compactify strings, relocate references, and free empty string blocks. */
7146af97
JB
1979
1980static void
1981compact_strings ()
1982{
1983 /* String block of old strings we are scanning. */
1984 register struct string_block *from_sb;
1985 /* A preceding string block (or maybe the same one)
1986 where we are copying the still-live strings to. */
1987 register struct string_block *to_sb;
1988 int pos;
1989 int to_pos;
1990
1991 to_sb = first_string_block;
1992 to_pos = 0;
1993
1994 /* Scan each existing string block sequentially, string by string. */
1995 for (from_sb = first_string_block; from_sb; from_sb = from_sb->next)
1996 {
1997 pos = 0;
1998 /* POS is the index of the next string in the block. */
1999 while (pos < from_sb->pos)
2000 {
2001 register struct Lisp_String *nextstr
2002 = (struct Lisp_String *) &from_sb->chars[pos];
2003
2004 register struct Lisp_String *newaddr;
2005 register int size = nextstr->size;
2006
2007 /* NEXTSTR is the old address of the next string.
2008 Just skip it if it isn't marked. */
2009 if ((unsigned) size > STRING_BLOCK_SIZE)
2010 {
2011 /* It is marked, so its size field is really a chain of refs.
2012 Find the end of the chain, where the actual size lives. */
2013 while ((unsigned) size > STRING_BLOCK_SIZE)
2014 {
2015 if (size & 1) size ^= MARKBIT | 1;
2016 size = *(int *)size & ~MARKBIT;
2017 }
2018
2019 total_string_size += size;
2020
2021 /* If it won't fit in TO_SB, close it out,
2022 and move to the next sb. Keep doing so until
2023 TO_SB reaches a large enough, empty enough string block.
2024 We know that TO_SB cannot advance past FROM_SB here
2025 since FROM_SB is large enough to contain this string.
2026 Any string blocks skipped here
2027 will be patched out and freed later. */
2028 while (to_pos + STRING_FULLSIZE (size)
2029 > max (to_sb->pos, STRING_BLOCK_SIZE))
2030 {
2031 to_sb->pos = to_pos;
2032 to_sb = to_sb->next;
2033 to_pos = 0;
2034 }
2035 /* Compute new address of this string
2036 and update TO_POS for the space being used. */
2037 newaddr = (struct Lisp_String *) &to_sb->chars[to_pos];
2038 to_pos += STRING_FULLSIZE (size);
2039
2040 /* Copy the string itself to the new place. */
2041 if (nextstr != newaddr)
d5e35230
JA
2042 bcopy (nextstr, newaddr, size + 1 + sizeof (int)
2043 + INTERVAL_PTR_SIZE);
7146af97
JB
2044
2045 /* Go through NEXTSTR's chain of references
2046 and make each slot in the chain point to
2047 the new address of this string. */
2048 size = newaddr->size;
2049 while ((unsigned) size > STRING_BLOCK_SIZE)
2050 {
2051 register Lisp_Object *objptr;
2052 if (size & 1) size ^= MARKBIT | 1;
2053 objptr = (Lisp_Object *)size;
2054
2055 size = XFASTINT (*objptr) & ~MARKBIT;
2056 if (XMARKBIT (*objptr))
2057 {
2058 XSET (*objptr, Lisp_String, newaddr);
2059 XMARK (*objptr);
2060 }
2061 else
2062 XSET (*objptr, Lisp_String, newaddr);
2063 }
2064 /* Store the actual size in the size field. */
2065 newaddr->size = size;
e8720644 2066
5f60ed47 2067#ifdef USE_TEXT_PROPERTIES
e8720644
JB
2068 /* Now that the string has been relocated, rebalance its
2069 interval tree, and update the tree's parent pointer. */
2070 if (! NULL_INTERVAL_P (newaddr->intervals))
2071 {
2072 UNMARK_BALANCE_INTERVALS (newaddr->intervals);
2073 XSET (* (Lisp_Object *) &newaddr->intervals->parent,
2074 Lisp_String,
2075 newaddr);
2076 }
5f60ed47 2077#endif /* USE_TEXT_PROPERTIES */
7146af97
JB
2078 }
2079 pos += STRING_FULLSIZE (size);
2080 }
2081 }
2082
2083 /* Close out the last string block still used and free any that follow. */
2084 to_sb->pos = to_pos;
2085 current_string_block = to_sb;
2086
2087 from_sb = to_sb->next;
2088 to_sb->next = 0;
2089 while (from_sb)
2090 {
2091 to_sb = from_sb->next;
9ac0d9e0 2092 xfree (from_sb);
7146af97
JB
2093 from_sb = to_sb;
2094 }
2095
2096 /* Free any empty string blocks further back in the chain.
2097 This loop will never free first_string_block, but it is very
2098 unlikely that that one will become empty, so why bother checking? */
2099
2100 from_sb = first_string_block;
2101 while (to_sb = from_sb->next)
2102 {
2103 if (to_sb->pos == 0)
2104 {
2105 if (from_sb->next = to_sb->next)
2106 from_sb->next->prev = from_sb;
9ac0d9e0 2107 xfree (to_sb);
7146af97
JB
2108 }
2109 else
2110 from_sb = to_sb;
2111 }
2112}
2113\f
20d24714
JB
2114/* Debugging aids. */
2115
31ce1c91 2116DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, 0,
20d24714
JB
2117 "Return the address of the last byte Emacs has allocated, divided by 1024.\n\
2118This may be helpful in debugging Emacs's memory usage.\n\
e41ae81f 2119We divide the value by 1024 to make sure it fits in a Lisp integer.")
20d24714
JB
2120 ()
2121{
2122 Lisp_Object end;
2123
0d73ca81 2124 XSET (end, Lisp_Int, (int) sbrk (0) / 1024);
20d24714
JB
2125
2126 return end;
2127}
2128
2129\f
7146af97
JB
2130/* Initialization */
2131
2132init_alloc_once ()
2133{
2134 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
2135 pureptr = 0;
4c0be5f4
JB
2136#ifdef HAVE_SHM
2137 pure_size = PURESIZE;
2138#endif
7146af97
JB
2139 all_vectors = 0;
2140 ignore_warnings = 1;
2141 init_strings ();
2142 init_cons ();
2143 init_symbol ();
2144 init_marker ();
2145#ifdef LISP_FLOAT_TYPE
2146 init_float ();
2147#endif /* LISP_FLOAT_TYPE */
d5e35230
JA
2148 INIT_INTERVALS;
2149
7146af97
JB
2150 ignore_warnings = 0;
2151 gcprolist = 0;
2152 staticidx = 0;
2153 consing_since_gc = 0;
2154 gc_cons_threshold = 100000;
2155#ifdef VIRT_ADDR_VARIES
2156 malloc_sbrk_unused = 1<<22; /* A large number */
2157 malloc_sbrk_used = 100000; /* as reasonable as any number */
2158#endif /* VIRT_ADDR_VARIES */
2159}
2160
2161init_alloc ()
2162{
2163 gcprolist = 0;
2164}
2165
2166void
2167syms_of_alloc ()
2168{
2169 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold,
2170 "*Number of bytes of consing between garbage collections.\n\
2171Garbage collection can happen automatically once this many bytes have been\n\
2172allocated since the last garbage collection. All data types count.\n\n\
2173Garbage collection happens automatically only when `eval' is called.\n\n\
2174By binding this temporarily to a large number, you can effectively\n\
2175prevent garbage collection during a part of the program.");
2176
2177 DEFVAR_INT ("pure-bytes-used", &pureptr,
2178 "Number of bytes of sharable Lisp data allocated so far.");
2179
2180#if 0
2181 DEFVAR_INT ("data-bytes-used", &malloc_sbrk_used,
2182 "Number of bytes of unshared memory allocated in this session.");
2183
2184 DEFVAR_INT ("data-bytes-free", &malloc_sbrk_unused,
2185 "Number of bytes of unshared memory remaining available in this session.");
2186#endif
2187
2188 DEFVAR_LISP ("purify-flag", &Vpurify_flag,
2189 "Non-nil means loading Lisp code in order to dump an executable.\n\
2190This means that certain objects should be allocated in shared (pure) space.");
2191
502b9b64 2192 DEFVAR_INT ("undo-limit", &undo_limit,
7146af97 2193 "Keep no more undo information once it exceeds this size.\n\
502b9b64 2194This limit is applied when garbage collection happens.\n\
7146af97
JB
2195The size is counted as the number of bytes occupied,\n\
2196which includes both saved text and other data.");
502b9b64 2197 undo_limit = 20000;
7146af97 2198
502b9b64 2199 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit,
7146af97
JB
2200 "Don't keep more than this much size of undo information.\n\
2201A command which pushes past this size is itself forgotten.\n\
502b9b64 2202This limit is applied when garbage collection happens.\n\
7146af97
JB
2203The size is counted as the number of bytes occupied,\n\
2204which includes both saved text and other data.");
502b9b64 2205 undo_strong_limit = 30000;
7146af97 2206
bcb61d60
KH
2207 /* We build this in advance because if we wait until we need it, we might
2208 not be able to allocate the memory to hold it. */
cf3540e4
RS
2209 memory_signal_data
2210 = Fcons (Qerror, Fcons (build_string ("Memory exhausted"), Qnil));
bcb61d60
KH
2211 staticpro (&memory_signal_data);
2212
7146af97
JB
2213 defsubr (&Scons);
2214 defsubr (&Slist);
2215 defsubr (&Svector);
2216 defsubr (&Smake_byte_code);
2217 defsubr (&Smake_list);
2218 defsubr (&Smake_vector);
2219 defsubr (&Smake_string);
7146af97
JB
2220 defsubr (&Smake_symbol);
2221 defsubr (&Smake_marker);
2222 defsubr (&Spurecopy);
2223 defsubr (&Sgarbage_collect);
20d24714 2224 defsubr (&Smemory_limit);
7146af97 2225}