(Fstart_process): GCPRO some things.
[bpt/emacs.git] / src / alloc.c
1 /* Storage allocation and gc for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 1986, 1988, 1993 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #include <signal.h>
21
22 #include <config.h>
23 #include "lisp.h"
24 #include "intervals.h"
25 #include "puresize.h"
26 #ifndef standalone
27 #include "buffer.h"
28 #include "window.h"
29 #include "frame.h"
30 #include "blockinput.h"
31 #endif
32
33 #include "syssignal.h"
34
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) \
42 do \
43 { \
44 Lisp_Object val; \
45 XSET (val, Lisp_Cons, (char *) address + size); \
46 if ((char *) XCONS (val) != (char *) address + size) \
47 { \
48 xfree (address); \
49 memory_full (); \
50 } \
51 } while (0)
52
53 /* Number of bytes of consing done since the last gc */
54 int consing_since_gc;
55
56 /* Number of bytes of consing since gc before another gc should be done. */
57 int gc_cons_threshold;
58
59 /* Nonzero during gc */
60 int gc_in_progress;
61
62 #ifndef VIRT_ADDR_VARIES
63 extern
64 #endif /* VIRT_ADDR_VARIES */
65 int malloc_sbrk_used;
66
67 #ifndef VIRT_ADDR_VARIES
68 extern
69 #endif /* VIRT_ADDR_VARIES */
70 int malloc_sbrk_unused;
71
72 /* Two limits controlling how much undo information to keep. */
73 int undo_limit;
74 int undo_strong_limit;
75
76 /* Non-nil means defun should do purecopy on the function definition */
77 Lisp_Object Vpurify_flag;
78
79 #ifndef HAVE_SHM
80 int 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
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. */
92 int pure_size;
93 #endif /* not HAVE_SHM */
94
95 /* Index in pure at which next pure object will be allocated. */
96 int pureptr;
97
98 /* If nonzero, this is a warning delivered by malloc and not yet displayed. */
99 char *pending_malloc_warning;
100
101 /* Pre-computed signal argument for use when memory is exhausted. */
102 Lisp_Object memory_signal_data;
103
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
112 char *stack_copy;
113 int stack_copy_size;
114
115 /* Non-zero means ignore malloc warnings. Set during initialization. */
116 int ignore_warnings;
117
118 static void mark_object (), mark_buffer ();
119 static void clear_marks (), gc_sweep ();
120 static void compact_strings ();
121 \f
122 /* Versions of malloc and realloc that print warnings as memory gets full. */
123
124 Lisp_Object
125 malloc_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 */
136 malloc_warning (str)
137 char *str;
138 {
139 pending_malloc_warning = str;
140 }
141
142 display_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 */
152 memory_full ()
153 {
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);
158 }
159
160 /* like malloc routines but check for no memory and block interrupt input. */
161
162 long *
163 xmalloc (size)
164 int size;
165 {
166 register long *val;
167
168 BLOCK_INPUT;
169 val = (long *) malloc (size);
170 UNBLOCK_INPUT;
171
172 if (!val && size) memory_full ();
173 return val;
174 }
175
176 long *
177 xrealloc (block, size)
178 long *block;
179 int size;
180 {
181 register long *val;
182
183 BLOCK_INPUT;
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);
188 else
189 val = (long *) realloc (block, size);
190 UNBLOCK_INPUT;
191
192 if (!val && size) memory_full ();
193 return val;
194 }
195
196 void
197 xfree (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
217 extern void * (*__malloc_hook) ();
218 static void * (*old_malloc_hook) ();
219 extern void * (*__realloc_hook) ();
220 static void * (*old_realloc_hook) ();
221 extern void (*__free_hook) ();
222 static void (*old_free_hook) ();
223
224 static void
225 emacs_blocked_free (ptr)
226 void *ptr;
227 {
228 BLOCK_INPUT;
229 __free_hook = old_free_hook;
230 free (ptr);
231 __free_hook = emacs_blocked_free;
232 UNBLOCK_INPUT;
233 }
234
235 static void *
236 emacs_blocked_malloc (size)
237 unsigned size;
238 {
239 void *value;
240
241 BLOCK_INPUT;
242 __malloc_hook = old_malloc_hook;
243 value = (void *) malloc (size);
244 __malloc_hook = emacs_blocked_malloc;
245 UNBLOCK_INPUT;
246
247 return value;
248 }
249
250 static void *
251 emacs_blocked_realloc (ptr, size)
252 void *ptr;
253 unsigned size;
254 {
255 void *value;
256
257 BLOCK_INPUT;
258 __realloc_hook = old_realloc_hook;
259 value = (void *) realloc (ptr, size);
260 __realloc_hook = emacs_blocked_realloc;
261 UNBLOCK_INPUT;
262
263 return value;
264 }
265
266 void
267 uninterrupt_malloc ()
268 {
269 old_free_hook = __free_hook;
270 __free_hook = emacs_blocked_free;
271
272 old_malloc_hook = __malloc_hook;
273 __malloc_hook = emacs_blocked_malloc;
274
275 old_realloc_hook = __realloc_hook;
276 __realloc_hook = emacs_blocked_realloc;
277 }
278 #endif
279 \f
280 /* Interval allocation. */
281
282 #ifdef USE_TEXT_PROPERTIES
283 #define INTERVAL_BLOCK_SIZE \
284 ((1020 - sizeof (struct interval_block *)) / sizeof (struct interval))
285
286 struct interval_block
287 {
288 struct interval_block *next;
289 struct interval intervals[INTERVAL_BLOCK_SIZE];
290 };
291
292 struct interval_block *interval_block;
293 static int interval_block_index;
294
295 INTERVAL interval_free_list;
296
297 static void
298 init_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
310 INTERVAL
311 make_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
325 = (struct interval_block *) xmalloc (sizeof (struct interval_block));
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
339 static int total_free_intervals, total_intervals;
340
341 /* Mark the pointers of one interval. */
342
343 static void
344 mark_interval (i, dummy)
345 register INTERVAL i;
346 Lisp_Object dummy;
347 {
348 if (XMARKBIT (i->plist))
349 abort ();
350 mark_object (&i->plist);
351 XMARK (i->plist);
352 }
353
354 static void
355 mark_interval_tree (tree)
356 register INTERVAL tree;
357 {
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);
365
366 traverse_intervals (tree, 1, 0, mark_interval, Qnil);
367 }
368
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)
375
376 /* The oddity in the call to XUNMARK is necessary because XUNMARK
377 expands to an assignment to its argument, and most C compilers don't
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 } \
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
397 /* Floating point allocation. */
398
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
413 struct float_block
414 {
415 struct float_block *next;
416 struct Lisp_Float floats[FLOAT_BLOCK_SIZE];
417 };
418
419 struct float_block *float_block;
420 int float_block_index;
421
422 struct Lisp_Float *float_free_list;
423
424 void
425 init_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. */
435 free_float (ptr)
436 struct Lisp_Float *ptr;
437 {
438 XFASTINT (ptr->type) = (int) float_free_list;
439 float_free_list = ptr;
440 }
441
442 Lisp_Object
443 make_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 {
457 register struct float_block *new = (struct float_block *) xmalloc (sizeof (struct float_block));
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
486 struct cons_block
487 {
488 struct cons_block *next;
489 struct Lisp_Cons conses[CONS_BLOCK_SIZE];
490 };
491
492 struct cons_block *cons_block;
493 int cons_block_index;
494
495 struct Lisp_Cons *cons_free_list;
496
497 void
498 init_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. */
508 free_cons (ptr)
509 struct Lisp_Cons *ptr;
510 {
511 XFASTINT (ptr->car) = (int) cons_free_list;
512 cons_free_list = ptr;
513 }
514
515 DEFUN ("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 {
531 register struct cons_block *new = (struct cons_block *) xmalloc (sizeof (struct cons_block));
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
545 DEFUN ("list", Flist, Slist, 0, MANY, 0,
546 "Return a newly created list with specified arguments as elements.\n\
547 Any 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;
557 while (!NILP (val_tail))
558 {
559 XCONS (val_tail)->car = *args++;
560 val_tail = XCONS (val_tail)->cdr;
561 }
562 return val;
563 }
564
565 DEFUN ("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
585 struct Lisp_Vector *all_vectors;
586
587 DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0,
588 "Return a newly created vector of length LENGTH, with each element being INIT.\n\
589 See 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
601 p = (struct Lisp_Vector *) xmalloc (sizeof (struct Lisp_Vector) + (sizei - 1) * sizeof (Lisp_Object));
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
617 DEFUN ("vector", Fvector, Svector, 0, MANY, 0,
618 "Return a newly created vector with specified arguments as elements.\n\
619 Any 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
636 DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0,
637 "Create a byte-code object with specified arguments as elements.\n\
638 The arguments should be the arglist, bytecode-string, constant vector,\n\
639 stack size, (optional) doc string, and (optional) interactive spec.\n\
640 The first four arguments are required; at most six have any\n\
641 significance.")
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;
651 if (!NILP (Vpurify_flag))
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 {
658 if (!NILP (Vpurify_flag))
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
676 struct symbol_block
677 {
678 struct symbol_block *next;
679 struct Lisp_Symbol symbols[SYMBOL_BLOCK_SIZE];
680 };
681
682 struct symbol_block *symbol_block;
683 int symbol_block_index;
684
685 struct Lisp_Symbol *symbol_free_list;
686
687 void
688 init_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
697 DEFUN ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0,
698 "Return a newly allocated uninterned symbol whose name is NAME.\n\
699 Its 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 {
718 struct symbol_block *new = (struct symbol_block *) xmalloc (sizeof (struct symbol_block));
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
742 struct marker_block
743 {
744 struct marker_block *next;
745 struct Lisp_Marker markers[MARKER_BLOCK_SIZE];
746 };
747
748 struct marker_block *marker_block;
749 int marker_block_index;
750
751 struct Lisp_Marker *marker_free_list;
752
753 void
754 init_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
763 DEFUN ("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;
769
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 {
780 struct marker_block *new = (struct marker_block *) xmalloc (sizeof (struct marker_block));
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
820 struct string_block_head
821 {
822 struct string_block *next, *prev;
823 int pos;
824 };
825
826 struct 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
835 struct string_block *current_string_block;
836
837 /* This points to the oldest string block, the one that starts the chain. */
838
839 struct string_block *first_string_block;
840
841 /* Last string block in chain of those made for individual large strings. */
842
843 struct 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
857 void
858 init_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
869 DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0,
870 "Return a newly created string of length LENGTH, with each element being INIT.\n\
871 Both 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
891 Lisp_Object
892 make_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
902 Lisp_Object
903 build_string (str)
904 char *str;
905 {
906 return make_string (str, strlen (str));
907 }
908
909 Lisp_Object
910 make_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
929 = (struct string_block *) xmalloc (sizeof (struct string_block_head) + fullsize);
930 VALIDATE_LISP_STORAGE (new, 0);
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
942 = (struct string_block *) xmalloc (sizeof (struct string_block));
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;
956 INITIALIZE_INTERVAL (XSTRING (val), NULL_INTERVAL);
957
958 return val;
959 }
960
961 /* Return a newly created vector or string with specified arguments as
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. */
966
967 Lisp_Object
968 make_event_array (nargs, args)
969 register int nargs;
970 Lisp_Object *args;
971 {
972 int i;
973
974 for (i = 0; i < nargs; i++)
975 /* The things that fit in a string
976 are characters that are in 0...127,
977 after discarding the meta bit and all the bits above it. */
978 if (XTYPE (args[i]) != Lisp_Int
979 || (XUINT (args[i]) & ~(-CHAR_META)) >= 0200)
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 {
985 Lisp_Object result = Fmake_string (nargs, make_number (0));
986
987 for (i = 0; i < nargs; i++)
988 {
989 XSTRING (result)->data[i] = XINT (args[i]);
990 /* Move the meta bit to the right place for a string char. */
991 if (XINT (args[i]) & CHAR_META)
992 XSTRING (result)->data[i] |= 0x80;
993 }
994
995 return result;
996 }
997 }
998 \f
999 /* Pure storage management. */
1000
1001 /* Must get an error if pure storage is full,
1002 since if it cannot hold a large string
1003 it may be able to hold conses that point to that string;
1004 then the string is not protected from gc. */
1005
1006 Lisp_Object
1007 make_pure_string (data, length)
1008 char *data;
1009 int length;
1010 {
1011 register Lisp_Object new;
1012 register int size = sizeof (int) + INTERVAL_PTR_SIZE + length + 1;
1013
1014 if (pureptr + size > PURESIZE)
1015 error ("Pure Lisp storage exhausted");
1016 XSET (new, Lisp_String, PUREBEG + pureptr);
1017 XSTRING (new)->size = length;
1018 bcopy (data, XSTRING (new)->data, length);
1019 XSTRING (new)->data[length] = 0;
1020
1021 /* We must give strings in pure storage some kind of interval. So we
1022 give them a null one. */
1023 #if defined (USE_TEXT_PROPERTIES)
1024 XSTRING (new)->intervals = NULL_INTERVAL;
1025 #endif
1026 pureptr += (size + sizeof (int) - 1)
1027 / sizeof (int) * sizeof (int);
1028 return new;
1029 }
1030
1031 Lisp_Object
1032 pure_cons (car, cdr)
1033 Lisp_Object car, cdr;
1034 {
1035 register Lisp_Object new;
1036
1037 if (pureptr + sizeof (struct Lisp_Cons) > PURESIZE)
1038 error ("Pure Lisp storage exhausted");
1039 XSET (new, Lisp_Cons, PUREBEG + pureptr);
1040 pureptr += sizeof (struct Lisp_Cons);
1041 XCONS (new)->car = Fpurecopy (car);
1042 XCONS (new)->cdr = Fpurecopy (cdr);
1043 return new;
1044 }
1045
1046 #ifdef LISP_FLOAT_TYPE
1047
1048 Lisp_Object
1049 make_pure_float (num)
1050 double num;
1051 {
1052 register Lisp_Object new;
1053
1054 /* Make sure that PUREBEG + pureptr is aligned on at least a sizeof
1055 (double) boundary. Some architectures (like the sparc) require
1056 this, and I suspect that floats are rare enough that it's no
1057 tragedy for those that do. */
1058 {
1059 int alignment;
1060 char *p = PUREBEG + pureptr;
1061
1062 #ifdef __GNUC__
1063 #if __GNUC__ >= 2
1064 alignment = __alignof (struct Lisp_Float);
1065 #else
1066 alignment = sizeof (struct Lisp_Float);
1067 #endif
1068 #else
1069 alignment = sizeof (struct Lisp_Float);
1070 #endif
1071 p = (char *) (((unsigned long) p + alignment - 1) & - alignment);
1072 pureptr = p - PUREBEG;
1073 }
1074
1075 if (pureptr + sizeof (struct Lisp_Float) > PURESIZE)
1076 error ("Pure Lisp storage exhausted");
1077 XSET (new, Lisp_Float, PUREBEG + pureptr);
1078 pureptr += sizeof (struct Lisp_Float);
1079 XFLOAT (new)->data = num;
1080 XFLOAT (new)->type = 0; /* bug chasing -wsr */
1081 return new;
1082 }
1083
1084 #endif /* LISP_FLOAT_TYPE */
1085
1086 Lisp_Object
1087 make_pure_vector (len)
1088 int len;
1089 {
1090 register Lisp_Object new;
1091 register int size = sizeof (struct Lisp_Vector) + (len - 1) * sizeof (Lisp_Object);
1092
1093 if (pureptr + size > PURESIZE)
1094 error ("Pure Lisp storage exhausted");
1095
1096 XSET (new, Lisp_Vector, PUREBEG + pureptr);
1097 pureptr += size;
1098 XVECTOR (new)->size = len;
1099 return new;
1100 }
1101
1102 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
1103 "Make a copy of OBJECT in pure storage.\n\
1104 Recursively copies contents of vectors and cons cells.\n\
1105 Does not copy symbols.")
1106 (obj)
1107 register Lisp_Object obj;
1108 {
1109 register Lisp_Object new, tem;
1110 register int i;
1111
1112 if (NILP (Vpurify_flag))
1113 return obj;
1114
1115 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1116 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1117 return obj;
1118
1119 #ifdef SWITCH_ENUM_BUG
1120 switch ((int) XTYPE (obj))
1121 #else
1122 switch (XTYPE (obj))
1123 #endif
1124 {
1125 case Lisp_Marker:
1126 error ("Attempt to copy a marker to pure storage");
1127
1128 case Lisp_Cons:
1129 return pure_cons (XCONS (obj)->car, XCONS (obj)->cdr);
1130
1131 #ifdef LISP_FLOAT_TYPE
1132 case Lisp_Float:
1133 return make_pure_float (XFLOAT (obj)->data);
1134 #endif /* LISP_FLOAT_TYPE */
1135
1136 case Lisp_String:
1137 return make_pure_string (XSTRING (obj)->data, XSTRING (obj)->size);
1138
1139 case Lisp_Compiled:
1140 case Lisp_Vector:
1141 new = make_pure_vector (XVECTOR (obj)->size);
1142 for (i = 0; i < XVECTOR (obj)->size; i++)
1143 {
1144 tem = XVECTOR (obj)->contents[i];
1145 XVECTOR (new)->contents[i] = Fpurecopy (tem);
1146 }
1147 XSETTYPE (new, XTYPE (obj));
1148 return new;
1149
1150 default:
1151 return obj;
1152 }
1153 }
1154 \f
1155 /* Recording what needs to be marked for gc. */
1156
1157 struct gcpro *gcprolist;
1158
1159 #define NSTATICS 512
1160
1161 Lisp_Object *staticvec[NSTATICS] = {0};
1162
1163 int staticidx = 0;
1164
1165 /* Put an entry in staticvec, pointing at the variable whose address is given */
1166
1167 void
1168 staticpro (varaddress)
1169 Lisp_Object *varaddress;
1170 {
1171 staticvec[staticidx++] = varaddress;
1172 if (staticidx >= NSTATICS)
1173 abort ();
1174 }
1175
1176 struct catchtag
1177 {
1178 Lisp_Object tag;
1179 Lisp_Object val;
1180 struct catchtag *next;
1181 /* jmp_buf jmp; /* We don't need this for GC purposes */
1182 };
1183
1184 struct backtrace
1185 {
1186 struct backtrace *next;
1187 Lisp_Object *function;
1188 Lisp_Object *args; /* Points to vector of args. */
1189 int nargs; /* length of vector */
1190 /* if nargs is UNEVALLED, args points to slot holding list of unevalled args */
1191 char evalargs;
1192 };
1193 \f
1194 /* Garbage collection! */
1195
1196 int total_conses, total_markers, total_symbols, total_string_size, total_vector_size;
1197 int total_free_conses, total_free_markers, total_free_symbols;
1198 #ifdef LISP_FLOAT_TYPE
1199 int total_free_floats, total_floats;
1200 #endif /* LISP_FLOAT_TYPE */
1201
1202 DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "",
1203 "Reclaim storage for Lisp objects no longer needed.\n\
1204 Returns info on amount of space in use:\n\
1205 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)\n\
1206 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS\n\
1207 (USED-FLOATS . FREE-FLOATS))\n\
1208 Garbage collection happens automatically if you cons more than\n\
1209 `gc-cons-threshold' bytes of Lisp data since previous garbage collection.")
1210 ()
1211 {
1212 register struct gcpro *tail;
1213 register struct specbinding *bind;
1214 struct catchtag *catch;
1215 struct handler *handler;
1216 register struct backtrace *backlist;
1217 register Lisp_Object tem;
1218 char *omessage = echo_area_glyphs;
1219 int omessage_length = echo_area_glyphs_length;
1220 char stack_top_variable;
1221 register int i;
1222
1223 /* Save a copy of the contents of the stack, for debugging. */
1224 #if MAX_SAVE_STACK > 0
1225 if (NILP (Vpurify_flag))
1226 {
1227 i = &stack_top_variable - stack_bottom;
1228 if (i < 0) i = -i;
1229 if (i < MAX_SAVE_STACK)
1230 {
1231 if (stack_copy == 0)
1232 stack_copy = (char *) xmalloc (stack_copy_size = i);
1233 else if (stack_copy_size < i)
1234 stack_copy = (char *) xrealloc (stack_copy, (stack_copy_size = i));
1235 if (stack_copy)
1236 {
1237 if ((int) (&stack_top_variable - stack_bottom) > 0)
1238 bcopy (stack_bottom, stack_copy, i);
1239 else
1240 bcopy (&stack_top_variable, stack_copy, i);
1241 }
1242 }
1243 }
1244 #endif /* MAX_SAVE_STACK > 0 */
1245
1246 if (!noninteractive)
1247 message1 ("Garbage collecting...");
1248
1249 /* Don't keep command history around forever */
1250 tem = Fnthcdr (make_number (30), Vcommand_history);
1251 if (CONSP (tem))
1252 XCONS (tem)->cdr = Qnil;
1253
1254 /* Likewise for undo information. */
1255 {
1256 register struct buffer *nextb = all_buffers;
1257
1258 while (nextb)
1259 {
1260 /* If a buffer's undo list is Qt, that means that undo is
1261 turned off in that buffer. Calling truncate_undo_list on
1262 Qt tends to return NULL, which effectively turns undo back on.
1263 So don't call truncate_undo_list if undo_list is Qt. */
1264 if (! EQ (nextb->undo_list, Qt))
1265 nextb->undo_list
1266 = truncate_undo_list (nextb->undo_list, undo_limit,
1267 undo_strong_limit);
1268 nextb = nextb->next;
1269 }
1270 }
1271
1272 gc_in_progress = 1;
1273
1274 /* clear_marks (); */
1275
1276 /* In each "large string", set the MARKBIT of the size field.
1277 That enables mark_object to recognize them. */
1278 {
1279 register struct string_block *b;
1280 for (b = large_string_blocks; b; b = b->next)
1281 ((struct Lisp_String *)(&b->chars[0]))->size |= MARKBIT;
1282 }
1283
1284 /* Mark all the special slots that serve as the roots of accessibility.
1285
1286 Usually the special slots to mark are contained in particular structures.
1287 Then we know no slot is marked twice because the structures don't overlap.
1288 In some cases, the structures point to the slots to be marked.
1289 For these, we use MARKBIT to avoid double marking of the slot. */
1290
1291 for (i = 0; i < staticidx; i++)
1292 mark_object (staticvec[i]);
1293 for (tail = gcprolist; tail; tail = tail->next)
1294 for (i = 0; i < tail->nvars; i++)
1295 if (!XMARKBIT (tail->var[i]))
1296 {
1297 mark_object (&tail->var[i]);
1298 XMARK (tail->var[i]);
1299 }
1300 for (bind = specpdl; bind != specpdl_ptr; bind++)
1301 {
1302 mark_object (&bind->symbol);
1303 mark_object (&bind->old_value);
1304 }
1305 for (catch = catchlist; catch; catch = catch->next)
1306 {
1307 mark_object (&catch->tag);
1308 mark_object (&catch->val);
1309 }
1310 for (handler = handlerlist; handler; handler = handler->next)
1311 {
1312 mark_object (&handler->handler);
1313 mark_object (&handler->var);
1314 }
1315 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1316 {
1317 if (!XMARKBIT (*backlist->function))
1318 {
1319 mark_object (backlist->function);
1320 XMARK (*backlist->function);
1321 }
1322 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1323 i = 0;
1324 else
1325 i = backlist->nargs - 1;
1326 for (; i >= 0; i--)
1327 if (!XMARKBIT (backlist->args[i]))
1328 {
1329 mark_object (&backlist->args[i]);
1330 XMARK (backlist->args[i]);
1331 }
1332 }
1333
1334 gc_sweep ();
1335
1336 /* Clear the mark bits that we set in certain root slots. */
1337
1338 for (tail = gcprolist; tail; tail = tail->next)
1339 for (i = 0; i < tail->nvars; i++)
1340 XUNMARK (tail->var[i]);
1341 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1342 {
1343 XUNMARK (*backlist->function);
1344 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1345 i = 0;
1346 else
1347 i = backlist->nargs - 1;
1348 for (; i >= 0; i--)
1349 XUNMARK (backlist->args[i]);
1350 }
1351 XUNMARK (buffer_defaults.name);
1352 XUNMARK (buffer_local_symbols.name);
1353
1354 /* clear_marks (); */
1355 gc_in_progress = 0;
1356
1357 consing_since_gc = 0;
1358 if (gc_cons_threshold < 10000)
1359 gc_cons_threshold = 10000;
1360
1361 if (omessage || minibuf_level > 0)
1362 message2 (omessage, omessage_length);
1363 else if (!noninteractive)
1364 message1 ("Garbage collecting...done");
1365
1366 return Fcons (Fcons (make_number (total_conses),
1367 make_number (total_free_conses)),
1368 Fcons (Fcons (make_number (total_symbols),
1369 make_number (total_free_symbols)),
1370 Fcons (Fcons (make_number (total_markers),
1371 make_number (total_free_markers)),
1372 Fcons (make_number (total_string_size),
1373 Fcons (make_number (total_vector_size),
1374
1375 #ifdef LISP_FLOAT_TYPE
1376 Fcons (Fcons (make_number (total_floats),
1377 make_number (total_free_floats)),
1378 Qnil)
1379 #else /* not LISP_FLOAT_TYPE */
1380 Qnil
1381 #endif /* not LISP_FLOAT_TYPE */
1382 )))));
1383 }
1384 \f
1385 #if 0
1386 static void
1387 clear_marks ()
1388 {
1389 /* Clear marks on all conses */
1390 {
1391 register struct cons_block *cblk;
1392 register int lim = cons_block_index;
1393
1394 for (cblk = cons_block; cblk; cblk = cblk->next)
1395 {
1396 register int i;
1397 for (i = 0; i < lim; i++)
1398 XUNMARK (cblk->conses[i].car);
1399 lim = CONS_BLOCK_SIZE;
1400 }
1401 }
1402 /* Clear marks on all symbols */
1403 {
1404 register struct symbol_block *sblk;
1405 register int lim = symbol_block_index;
1406
1407 for (sblk = symbol_block; sblk; sblk = sblk->next)
1408 {
1409 register int i;
1410 for (i = 0; i < lim; i++)
1411 {
1412 XUNMARK (sblk->symbols[i].plist);
1413 }
1414 lim = SYMBOL_BLOCK_SIZE;
1415 }
1416 }
1417 /* Clear marks on all markers */
1418 {
1419 register struct marker_block *sblk;
1420 register int lim = marker_block_index;
1421
1422 for (sblk = marker_block; sblk; sblk = sblk->next)
1423 {
1424 register int i;
1425 for (i = 0; i < lim; i++)
1426 XUNMARK (sblk->markers[i].chain);
1427 lim = MARKER_BLOCK_SIZE;
1428 }
1429 }
1430 /* Clear mark bits on all buffers */
1431 {
1432 register struct buffer *nextb = all_buffers;
1433
1434 while (nextb)
1435 {
1436 XUNMARK (nextb->name);
1437 nextb = nextb->next;
1438 }
1439 }
1440 }
1441 #endif
1442 \f
1443 /* Mark reference to a Lisp_Object.
1444 If the object referred to has not been seen yet, recursively mark
1445 all the references contained in it.
1446
1447 If the object referenced is a short string, the referencing slot
1448 is threaded into a chain of such slots, pointed to from
1449 the `size' field of the string. The actual string size
1450 lives in the last slot in the chain. We recognize the end
1451 because it is < (unsigned) STRING_BLOCK_SIZE. */
1452
1453 #define LAST_MARKED_SIZE 500
1454 Lisp_Object *last_marked[LAST_MARKED_SIZE];
1455 int last_marked_index;
1456
1457 static void
1458 mark_object (objptr)
1459 Lisp_Object *objptr;
1460 {
1461 register Lisp_Object obj;
1462
1463 loop:
1464 obj = *objptr;
1465 loop2:
1466 XUNMARK (obj);
1467
1468 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1469 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1470 return;
1471
1472 last_marked[last_marked_index++] = objptr;
1473 if (last_marked_index == LAST_MARKED_SIZE)
1474 last_marked_index = 0;
1475
1476 #ifdef SWITCH_ENUM_BUG
1477 switch ((int) XGCTYPE (obj))
1478 #else
1479 switch (XGCTYPE (obj))
1480 #endif
1481 {
1482 case Lisp_String:
1483 {
1484 register struct Lisp_String *ptr = XSTRING (obj);
1485
1486 MARK_INTERVAL_TREE (ptr->intervals);
1487 if (ptr->size & MARKBIT)
1488 /* A large string. Just set ARRAY_MARK_FLAG. */
1489 ptr->size |= ARRAY_MARK_FLAG;
1490 else
1491 {
1492 /* A small string. Put this reference
1493 into the chain of references to it.
1494 The address OBJPTR is even, so if the address
1495 includes MARKBIT, put it in the low bit
1496 when we store OBJPTR into the size field. */
1497
1498 if (XMARKBIT (*objptr))
1499 {
1500 XFASTINT (*objptr) = ptr->size;
1501 XMARK (*objptr);
1502 }
1503 else
1504 XFASTINT (*objptr) = ptr->size;
1505 if ((int)objptr & 1) abort ();
1506 ptr->size = (int) objptr & ~MARKBIT;
1507 if ((int) objptr & MARKBIT)
1508 ptr->size ++;
1509 }
1510 }
1511 break;
1512
1513 case Lisp_Vector:
1514 case Lisp_Window:
1515 case Lisp_Process:
1516 case Lisp_Window_Configuration:
1517 {
1518 register struct Lisp_Vector *ptr = XVECTOR (obj);
1519 register int size = ptr->size;
1520 /* The reason we use ptr1 is to avoid an apparent hardware bug
1521 that happens occasionally on the FSF's HP 300s.
1522 The bug is that a2 gets clobbered by recursive calls to mark_object.
1523 The clobberage seems to happen during function entry,
1524 perhaps in the moveml instruction.
1525 Yes, this is a crock, but we have to do it. */
1526 struct Lisp_Vector *volatile ptr1 = ptr;
1527 register int i;
1528
1529 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1530 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1531 for (i = 0; i < size; i++) /* and then mark its elements */
1532 mark_object (&ptr1->contents[i]);
1533 }
1534 break;
1535
1536 case Lisp_Compiled:
1537 /* We could treat this just like a vector, but it is better
1538 to save the COMPILED_CONSTANTS element for last and avoid recursion
1539 there. */
1540 {
1541 register struct Lisp_Vector *ptr = XVECTOR (obj);
1542 register int size = ptr->size;
1543 /* See comment above under Lisp_Vector. */
1544 struct Lisp_Vector *volatile ptr1 = ptr;
1545 register int i;
1546
1547 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1548 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1549 for (i = 0; i < size; i++) /* and then mark its elements */
1550 {
1551 if (i != COMPILED_CONSTANTS)
1552 mark_object (&ptr1->contents[i]);
1553 }
1554 /* This cast should be unnecessary, but some Mips compiler complains
1555 (MIPS-ABI + SysVR4, DC/OSx, etc). */
1556 objptr = (Lisp_Object *) &ptr1->contents[COMPILED_CONSTANTS];
1557 goto loop;
1558 }
1559
1560 #ifdef MULTI_FRAME
1561 case Lisp_Frame:
1562 {
1563 /* See comment above under Lisp_Vector for why this is volatile. */
1564 register struct frame *volatile ptr = XFRAME (obj);
1565 register int size = ptr->size;
1566
1567 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1568 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1569
1570 mark_object (&ptr->name);
1571 mark_object (&ptr->focus_frame);
1572 mark_object (&ptr->width);
1573 mark_object (&ptr->height);
1574 mark_object (&ptr->selected_window);
1575 mark_object (&ptr->minibuffer_window);
1576 mark_object (&ptr->param_alist);
1577 mark_object (&ptr->scroll_bars);
1578 mark_object (&ptr->condemned_scroll_bars);
1579 mark_object (&ptr->menu_bar_items);
1580 mark_object (&ptr->face_alist);
1581 }
1582 break;
1583 #endif /* MULTI_FRAME */
1584
1585 case Lisp_Symbol:
1586 {
1587 /* See comment above under Lisp_Vector for why this is volatile. */
1588 register struct Lisp_Symbol *volatile ptr = XSYMBOL (obj);
1589 struct Lisp_Symbol *ptrx;
1590
1591 if (XMARKBIT (ptr->plist)) break;
1592 XMARK (ptr->plist);
1593 mark_object ((Lisp_Object *) &ptr->value);
1594 mark_object (&ptr->function);
1595 mark_object (&ptr->plist);
1596 XSETTYPE (*(Lisp_Object *) &ptr->name, Lisp_String);
1597 mark_object (&ptr->name);
1598 ptr = ptr->next;
1599 if (ptr)
1600 {
1601 /* For the benefit of the last_marked log. */
1602 objptr = (Lisp_Object *)&XSYMBOL (obj)->next;
1603 ptrx = ptr; /* Use of ptrx avoids compiler bug on Sun */
1604 XSETSYMBOL (obj, ptrx);
1605 /* We can't goto loop here because *objptr doesn't contain an
1606 actual Lisp_Object with valid datatype field. */
1607 goto loop2;
1608 }
1609 }
1610 break;
1611
1612 case Lisp_Marker:
1613 XMARK (XMARKER (obj)->chain);
1614 /* DO NOT mark thru the marker's chain.
1615 The buffer's markers chain does not preserve markers from gc;
1616 instead, markers are removed from the chain when freed by gc. */
1617 break;
1618
1619 case Lisp_Cons:
1620 case Lisp_Buffer_Local_Value:
1621 case Lisp_Some_Buffer_Local_Value:
1622 case Lisp_Overlay:
1623 {
1624 register struct Lisp_Cons *ptr = XCONS (obj);
1625 if (XMARKBIT (ptr->car)) break;
1626 XMARK (ptr->car);
1627 /* If the cdr is nil, avoid recursion for the car. */
1628 if (EQ (ptr->cdr, Qnil))
1629 {
1630 objptr = &ptr->car;
1631 goto loop;
1632 }
1633 mark_object (&ptr->car);
1634 /* See comment above under Lisp_Vector for why not use ptr here. */
1635 objptr = &XCONS (obj)->cdr;
1636 goto loop;
1637 }
1638
1639 #ifdef LISP_FLOAT_TYPE
1640 case Lisp_Float:
1641 XMARK (XFLOAT (obj)->type);
1642 break;
1643 #endif /* LISP_FLOAT_TYPE */
1644
1645 case Lisp_Buffer:
1646 if (!XMARKBIT (XBUFFER (obj)->name))
1647 mark_buffer (obj);
1648 break;
1649
1650 case Lisp_Int:
1651 case Lisp_Void:
1652 case Lisp_Subr:
1653 case Lisp_Intfwd:
1654 case Lisp_Boolfwd:
1655 case Lisp_Objfwd:
1656 case Lisp_Buffer_Objfwd:
1657 case Lisp_Internal_Stream:
1658 /* Don't bother with Lisp_Buffer_Objfwd,
1659 since all markable slots in current buffer marked anyway. */
1660 /* Don't need to do Lisp_Objfwd, since the places they point
1661 are protected with staticpro. */
1662 break;
1663
1664 default:
1665 abort ();
1666 }
1667 }
1668
1669 /* Mark the pointers in a buffer structure. */
1670
1671 static void
1672 mark_buffer (buf)
1673 Lisp_Object buf;
1674 {
1675 register struct buffer *buffer = XBUFFER (buf);
1676 register Lisp_Object *ptr;
1677
1678 /* This is the buffer's markbit */
1679 mark_object (&buffer->name);
1680 XMARK (buffer->name);
1681
1682 MARK_INTERVAL_TREE (buffer->intervals);
1683
1684 #if 0
1685 mark_object (buffer->syntax_table);
1686
1687 /* Mark the various string-pointers in the buffer object.
1688 Since the strings may be relocated, we must mark them
1689 in their actual slots. So gc_sweep must convert each slot
1690 back to an ordinary C pointer. */
1691 XSET (*(Lisp_Object *)&buffer->upcase_table,
1692 Lisp_String, buffer->upcase_table);
1693 mark_object ((Lisp_Object *)&buffer->upcase_table);
1694 XSET (*(Lisp_Object *)&buffer->downcase_table,
1695 Lisp_String, buffer->downcase_table);
1696 mark_object ((Lisp_Object *)&buffer->downcase_table);
1697
1698 XSET (*(Lisp_Object *)&buffer->sort_table,
1699 Lisp_String, buffer->sort_table);
1700 mark_object ((Lisp_Object *)&buffer->sort_table);
1701 XSET (*(Lisp_Object *)&buffer->folding_sort_table,
1702 Lisp_String, buffer->folding_sort_table);
1703 mark_object ((Lisp_Object *)&buffer->folding_sort_table);
1704 #endif
1705
1706 for (ptr = &buffer->name + 1;
1707 (char *)ptr < (char *)buffer + sizeof (struct buffer);
1708 ptr++)
1709 mark_object (ptr);
1710 }
1711 \f
1712 /* Sweep: find all structures not marked, and free them. */
1713
1714 static void
1715 gc_sweep ()
1716 {
1717 total_string_size = 0;
1718 compact_strings ();
1719
1720 /* Put all unmarked conses on free list */
1721 {
1722 register struct cons_block *cblk;
1723 register int lim = cons_block_index;
1724 register int num_free = 0, num_used = 0;
1725
1726 cons_free_list = 0;
1727
1728 for (cblk = cons_block; cblk; cblk = cblk->next)
1729 {
1730 register int i;
1731 for (i = 0; i < lim; i++)
1732 if (!XMARKBIT (cblk->conses[i].car))
1733 {
1734 XFASTINT (cblk->conses[i].car) = (int) cons_free_list;
1735 num_free++;
1736 cons_free_list = &cblk->conses[i];
1737 }
1738 else
1739 {
1740 num_used++;
1741 XUNMARK (cblk->conses[i].car);
1742 }
1743 lim = CONS_BLOCK_SIZE;
1744 }
1745 total_conses = num_used;
1746 total_free_conses = num_free;
1747 }
1748
1749 #ifdef LISP_FLOAT_TYPE
1750 /* Put all unmarked floats on free list */
1751 {
1752 register struct float_block *fblk;
1753 register int lim = float_block_index;
1754 register int num_free = 0, num_used = 0;
1755
1756 float_free_list = 0;
1757
1758 for (fblk = float_block; fblk; fblk = fblk->next)
1759 {
1760 register int i;
1761 for (i = 0; i < lim; i++)
1762 if (!XMARKBIT (fblk->floats[i].type))
1763 {
1764 XFASTINT (fblk->floats[i].type) = (int) float_free_list;
1765 num_free++;
1766 float_free_list = &fblk->floats[i];
1767 }
1768 else
1769 {
1770 num_used++;
1771 XUNMARK (fblk->floats[i].type);
1772 }
1773 lim = FLOAT_BLOCK_SIZE;
1774 }
1775 total_floats = num_used;
1776 total_free_floats = num_free;
1777 }
1778 #endif /* LISP_FLOAT_TYPE */
1779
1780 #ifdef USE_TEXT_PROPERTIES
1781 /* Put all unmarked intervals on free list */
1782 {
1783 register struct interval_block *iblk;
1784 register int lim = interval_block_index;
1785 register int num_free = 0, num_used = 0;
1786
1787 interval_free_list = 0;
1788
1789 for (iblk = interval_block; iblk; iblk = iblk->next)
1790 {
1791 register int i;
1792
1793 for (i = 0; i < lim; i++)
1794 {
1795 if (! XMARKBIT (iblk->intervals[i].plist))
1796 {
1797 iblk->intervals[i].parent = interval_free_list;
1798 interval_free_list = &iblk->intervals[i];
1799 num_free++;
1800 }
1801 else
1802 {
1803 num_used++;
1804 XUNMARK (iblk->intervals[i].plist);
1805 }
1806 }
1807 lim = INTERVAL_BLOCK_SIZE;
1808 }
1809 total_intervals = num_used;
1810 total_free_intervals = num_free;
1811 }
1812 #endif /* USE_TEXT_PROPERTIES */
1813
1814 /* Put all unmarked symbols on free list */
1815 {
1816 register struct symbol_block *sblk;
1817 register int lim = symbol_block_index;
1818 register int num_free = 0, num_used = 0;
1819
1820 symbol_free_list = 0;
1821
1822 for (sblk = symbol_block; sblk; sblk = sblk->next)
1823 {
1824 register int i;
1825 for (i = 0; i < lim; i++)
1826 if (!XMARKBIT (sblk->symbols[i].plist))
1827 {
1828 XFASTINT (sblk->symbols[i].value) = (int) symbol_free_list;
1829 symbol_free_list = &sblk->symbols[i];
1830 num_free++;
1831 }
1832 else
1833 {
1834 num_used++;
1835 sblk->symbols[i].name
1836 = XSTRING (*(Lisp_Object *) &sblk->symbols[i].name);
1837 XUNMARK (sblk->symbols[i].plist);
1838 }
1839 lim = SYMBOL_BLOCK_SIZE;
1840 }
1841 total_symbols = num_used;
1842 total_free_symbols = num_free;
1843 }
1844
1845 #ifndef standalone
1846 /* Put all unmarked markers on free list.
1847 Dechain each one first from the buffer it points into. */
1848 {
1849 register struct marker_block *mblk;
1850 struct Lisp_Marker *tem1;
1851 register int lim = marker_block_index;
1852 register int num_free = 0, num_used = 0;
1853
1854 marker_free_list = 0;
1855
1856 for (mblk = marker_block; mblk; mblk = mblk->next)
1857 {
1858 register int i;
1859 for (i = 0; i < lim; i++)
1860 if (!XMARKBIT (mblk->markers[i].chain))
1861 {
1862 Lisp_Object tem;
1863 tem1 = &mblk->markers[i]; /* tem1 avoids Sun compiler bug */
1864 XSET (tem, Lisp_Marker, tem1);
1865 unchain_marker (tem);
1866 XFASTINT (mblk->markers[i].chain) = (int) marker_free_list;
1867 marker_free_list = &mblk->markers[i];
1868 num_free++;
1869 }
1870 else
1871 {
1872 num_used++;
1873 XUNMARK (mblk->markers[i].chain);
1874 }
1875 lim = MARKER_BLOCK_SIZE;
1876 }
1877
1878 total_markers = num_used;
1879 total_free_markers = num_free;
1880 }
1881
1882 /* Free all unmarked buffers */
1883 {
1884 register struct buffer *buffer = all_buffers, *prev = 0, *next;
1885
1886 while (buffer)
1887 if (!XMARKBIT (buffer->name))
1888 {
1889 if (prev)
1890 prev->next = buffer->next;
1891 else
1892 all_buffers = buffer->next;
1893 next = buffer->next;
1894 xfree (buffer);
1895 buffer = next;
1896 }
1897 else
1898 {
1899 XUNMARK (buffer->name);
1900 UNMARK_BALANCE_INTERVALS (buffer->intervals);
1901
1902 #if 0
1903 /* Each `struct Lisp_String *' was turned into a Lisp_Object
1904 for purposes of marking and relocation.
1905 Turn them back into C pointers now. */
1906 buffer->upcase_table
1907 = XSTRING (*(Lisp_Object *)&buffer->upcase_table);
1908 buffer->downcase_table
1909 = XSTRING (*(Lisp_Object *)&buffer->downcase_table);
1910 buffer->sort_table
1911 = XSTRING (*(Lisp_Object *)&buffer->sort_table);
1912 buffer->folding_sort_table
1913 = XSTRING (*(Lisp_Object *)&buffer->folding_sort_table);
1914 #endif
1915
1916 prev = buffer, buffer = buffer->next;
1917 }
1918 }
1919
1920 #endif /* standalone */
1921
1922 /* Free all unmarked vectors */
1923 {
1924 register struct Lisp_Vector *vector = all_vectors, *prev = 0, *next;
1925 total_vector_size = 0;
1926
1927 while (vector)
1928 if (!(vector->size & ARRAY_MARK_FLAG))
1929 {
1930 if (prev)
1931 prev->next = vector->next;
1932 else
1933 all_vectors = vector->next;
1934 next = vector->next;
1935 xfree (vector);
1936 vector = next;
1937 }
1938 else
1939 {
1940 vector->size &= ~ARRAY_MARK_FLAG;
1941 total_vector_size += vector->size;
1942 prev = vector, vector = vector->next;
1943 }
1944 }
1945
1946 /* Free all "large strings" not marked with ARRAY_MARK_FLAG. */
1947 {
1948 register struct string_block *sb = large_string_blocks, *prev = 0, *next;
1949 struct Lisp_String *s;
1950
1951 while (sb)
1952 {
1953 s = (struct Lisp_String *) &sb->chars[0];
1954 if (s->size & ARRAY_MARK_FLAG)
1955 {
1956 ((struct Lisp_String *)(&sb->chars[0]))->size
1957 &= ~ARRAY_MARK_FLAG & ~MARKBIT;
1958 UNMARK_BALANCE_INTERVALS (s->intervals);
1959 total_string_size += ((struct Lisp_String *)(&sb->chars[0]))->size;
1960 prev = sb, sb = sb->next;
1961 }
1962 else
1963 {
1964 if (prev)
1965 prev->next = sb->next;
1966 else
1967 large_string_blocks = sb->next;
1968 next = sb->next;
1969 xfree (sb);
1970 sb = next;
1971 }
1972 }
1973 }
1974 }
1975 \f
1976 /* Compactify strings, relocate references, and free empty string blocks. */
1977
1978 static void
1979 compact_strings ()
1980 {
1981 /* String block of old strings we are scanning. */
1982 register struct string_block *from_sb;
1983 /* A preceding string block (or maybe the same one)
1984 where we are copying the still-live strings to. */
1985 register struct string_block *to_sb;
1986 int pos;
1987 int to_pos;
1988
1989 to_sb = first_string_block;
1990 to_pos = 0;
1991
1992 /* Scan each existing string block sequentially, string by string. */
1993 for (from_sb = first_string_block; from_sb; from_sb = from_sb->next)
1994 {
1995 pos = 0;
1996 /* POS is the index of the next string in the block. */
1997 while (pos < from_sb->pos)
1998 {
1999 register struct Lisp_String *nextstr
2000 = (struct Lisp_String *) &from_sb->chars[pos];
2001
2002 register struct Lisp_String *newaddr;
2003 register int size = nextstr->size;
2004
2005 /* NEXTSTR is the old address of the next string.
2006 Just skip it if it isn't marked. */
2007 if ((unsigned) size > STRING_BLOCK_SIZE)
2008 {
2009 /* It is marked, so its size field is really a chain of refs.
2010 Find the end of the chain, where the actual size lives. */
2011 while ((unsigned) size > STRING_BLOCK_SIZE)
2012 {
2013 if (size & 1) size ^= MARKBIT | 1;
2014 size = *(int *)size & ~MARKBIT;
2015 }
2016
2017 total_string_size += size;
2018
2019 /* If it won't fit in TO_SB, close it out,
2020 and move to the next sb. Keep doing so until
2021 TO_SB reaches a large enough, empty enough string block.
2022 We know that TO_SB cannot advance past FROM_SB here
2023 since FROM_SB is large enough to contain this string.
2024 Any string blocks skipped here
2025 will be patched out and freed later. */
2026 while (to_pos + STRING_FULLSIZE (size)
2027 > max (to_sb->pos, STRING_BLOCK_SIZE))
2028 {
2029 to_sb->pos = to_pos;
2030 to_sb = to_sb->next;
2031 to_pos = 0;
2032 }
2033 /* Compute new address of this string
2034 and update TO_POS for the space being used. */
2035 newaddr = (struct Lisp_String *) &to_sb->chars[to_pos];
2036 to_pos += STRING_FULLSIZE (size);
2037
2038 /* Copy the string itself to the new place. */
2039 if (nextstr != newaddr)
2040 bcopy (nextstr, newaddr, size + 1 + sizeof (int)
2041 + INTERVAL_PTR_SIZE);
2042
2043 /* Go through NEXTSTR's chain of references
2044 and make each slot in the chain point to
2045 the new address of this string. */
2046 size = newaddr->size;
2047 while ((unsigned) size > STRING_BLOCK_SIZE)
2048 {
2049 register Lisp_Object *objptr;
2050 if (size & 1) size ^= MARKBIT | 1;
2051 objptr = (Lisp_Object *)size;
2052
2053 size = XFASTINT (*objptr) & ~MARKBIT;
2054 if (XMARKBIT (*objptr))
2055 {
2056 XSET (*objptr, Lisp_String, newaddr);
2057 XMARK (*objptr);
2058 }
2059 else
2060 XSET (*objptr, Lisp_String, newaddr);
2061 }
2062 /* Store the actual size in the size field. */
2063 newaddr->size = size;
2064
2065 #ifdef USE_TEXT_PROPERTIES
2066 /* Now that the string has been relocated, rebalance its
2067 interval tree, and update the tree's parent pointer. */
2068 if (! NULL_INTERVAL_P (newaddr->intervals))
2069 {
2070 UNMARK_BALANCE_INTERVALS (newaddr->intervals);
2071 XSET (* (Lisp_Object *) &newaddr->intervals->parent,
2072 Lisp_String,
2073 newaddr);
2074 }
2075 #endif /* USE_TEXT_PROPERTIES */
2076 }
2077 pos += STRING_FULLSIZE (size);
2078 }
2079 }
2080
2081 /* Close out the last string block still used and free any that follow. */
2082 to_sb->pos = to_pos;
2083 current_string_block = to_sb;
2084
2085 from_sb = to_sb->next;
2086 to_sb->next = 0;
2087 while (from_sb)
2088 {
2089 to_sb = from_sb->next;
2090 xfree (from_sb);
2091 from_sb = to_sb;
2092 }
2093
2094 /* Free any empty string blocks further back in the chain.
2095 This loop will never free first_string_block, but it is very
2096 unlikely that that one will become empty, so why bother checking? */
2097
2098 from_sb = first_string_block;
2099 while (to_sb = from_sb->next)
2100 {
2101 if (to_sb->pos == 0)
2102 {
2103 if (from_sb->next = to_sb->next)
2104 from_sb->next->prev = from_sb;
2105 xfree (to_sb);
2106 }
2107 else
2108 from_sb = to_sb;
2109 }
2110 }
2111 \f
2112 /* Debugging aids. */
2113
2114 DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, 0,
2115 "Return the address of the last byte Emacs has allocated, divided by 1024.\n\
2116 This may be helpful in debugging Emacs's memory usage.\n\
2117 We divide the value by 1024 to make sure it fits in a Lisp integer.")
2118 ()
2119 {
2120 Lisp_Object end;
2121
2122 XSET (end, Lisp_Int, (int) sbrk (0) / 1024);
2123
2124 return end;
2125 }
2126
2127 \f
2128 /* Initialization */
2129
2130 init_alloc_once ()
2131 {
2132 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
2133 pureptr = 0;
2134 #ifdef HAVE_SHM
2135 pure_size = PURESIZE;
2136 #endif
2137 all_vectors = 0;
2138 ignore_warnings = 1;
2139 init_strings ();
2140 init_cons ();
2141 init_symbol ();
2142 init_marker ();
2143 #ifdef LISP_FLOAT_TYPE
2144 init_float ();
2145 #endif /* LISP_FLOAT_TYPE */
2146 INIT_INTERVALS;
2147
2148 ignore_warnings = 0;
2149 gcprolist = 0;
2150 staticidx = 0;
2151 consing_since_gc = 0;
2152 gc_cons_threshold = 100000;
2153 #ifdef VIRT_ADDR_VARIES
2154 malloc_sbrk_unused = 1<<22; /* A large number */
2155 malloc_sbrk_used = 100000; /* as reasonable as any number */
2156 #endif /* VIRT_ADDR_VARIES */
2157 }
2158
2159 init_alloc ()
2160 {
2161 gcprolist = 0;
2162 }
2163
2164 void
2165 syms_of_alloc ()
2166 {
2167 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold,
2168 "*Number of bytes of consing between garbage collections.\n\
2169 Garbage collection can happen automatically once this many bytes have been\n\
2170 allocated since the last garbage collection. All data types count.\n\n\
2171 Garbage collection happens automatically only when `eval' is called.\n\n\
2172 By binding this temporarily to a large number, you can effectively\n\
2173 prevent garbage collection during a part of the program.");
2174
2175 DEFVAR_INT ("pure-bytes-used", &pureptr,
2176 "Number of bytes of sharable Lisp data allocated so far.");
2177
2178 #if 0
2179 DEFVAR_INT ("data-bytes-used", &malloc_sbrk_used,
2180 "Number of bytes of unshared memory allocated in this session.");
2181
2182 DEFVAR_INT ("data-bytes-free", &malloc_sbrk_unused,
2183 "Number of bytes of unshared memory remaining available in this session.");
2184 #endif
2185
2186 DEFVAR_LISP ("purify-flag", &Vpurify_flag,
2187 "Non-nil means loading Lisp code in order to dump an executable.\n\
2188 This means that certain objects should be allocated in shared (pure) space.");
2189
2190 DEFVAR_INT ("undo-limit", &undo_limit,
2191 "Keep no more undo information once it exceeds this size.\n\
2192 This limit is applied when garbage collection happens.\n\
2193 The size is counted as the number of bytes occupied,\n\
2194 which includes both saved text and other data.");
2195 undo_limit = 20000;
2196
2197 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit,
2198 "Don't keep more than this much size of undo information.\n\
2199 A command which pushes past this size is itself forgotten.\n\
2200 This limit is applied when garbage collection happens.\n\
2201 The size is counted as the number of bytes occupied,\n\
2202 which includes both saved text and other data.");
2203 undo_strong_limit = 30000;
2204
2205 /* We build this in advance because if we wait until we need it, we might
2206 not be able to allocate the memory to hold it. */
2207 memory_signal_data
2208 = Fcons (Qerror, Fcons (build_string ("Memory exhausted"), Qnil));
2209 staticpro (&memory_signal_data);
2210
2211 defsubr (&Scons);
2212 defsubr (&Slist);
2213 defsubr (&Svector);
2214 defsubr (&Smake_byte_code);
2215 defsubr (&Smake_list);
2216 defsubr (&Smake_vector);
2217 defsubr (&Smake_string);
2218 defsubr (&Smake_symbol);
2219 defsubr (&Smake_marker);
2220 defsubr (&Spurecopy);
2221 defsubr (&Sgarbage_collect);
2222 defsubr (&Smemory_limit);
2223 }