(X_IO_BUG): Defined.
[bpt/emacs.git] / src / alloc.c
1 /* Storage allocation and gc for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 1986, 1988, 1993, 1994 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;
986
987 result = Fmake_string (nargs, make_number (0));
988 for (i = 0; i < nargs; i++)
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 }
995
996 return result;
997 }
998 }
999 \f
1000 /* Pure storage management. */
1001
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
1007 Lisp_Object
1008 make_pure_string (data, length)
1009 char *data;
1010 int length;
1011 {
1012 register Lisp_Object new;
1013 register int size = sizeof (int) + INTERVAL_PTR_SIZE + length + 1;
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;
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
1027 pureptr += (size + sizeof (int) - 1)
1028 / sizeof (int) * sizeof (int);
1029 return new;
1030 }
1031
1032 Lisp_Object
1033 pure_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
1049 Lisp_Object
1050 make_pure_float (num)
1051 double num;
1052 {
1053 register Lisp_Object new;
1054
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
1063 #ifdef __GNUC__
1064 #if __GNUC__ >= 2
1065 alignment = __alignof (struct Lisp_Float);
1066 #else
1067 alignment = sizeof (struct Lisp_Float);
1068 #endif
1069 #else
1070 alignment = sizeof (struct Lisp_Float);
1071 #endif
1072 p = (char *) (((unsigned long) p + alignment - 1) & - alignment);
1073 pureptr = p - PUREBEG;
1074 }
1075
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
1087 Lisp_Object
1088 make_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
1103 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
1104 "Make a copy of OBJECT in pure storage.\n\
1105 Recursively copies contents of vectors and cons cells.\n\
1106 Does not copy symbols.")
1107 (obj)
1108 register Lisp_Object obj;
1109 {
1110 register Lisp_Object new, tem;
1111 register int i;
1112
1113 if (NILP (Vpurify_flag))
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
1158 struct gcpro *gcprolist;
1159
1160 #define NSTATICS 512
1161
1162 Lisp_Object *staticvec[NSTATICS] = {0};
1163
1164 int staticidx = 0;
1165
1166 /* Put an entry in staticvec, pointing at the variable whose address is given */
1167
1168 void
1169 staticpro (varaddress)
1170 Lisp_Object *varaddress;
1171 {
1172 staticvec[staticidx++] = varaddress;
1173 if (staticidx >= NSTATICS)
1174 abort ();
1175 }
1176
1177 struct 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
1185 struct 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 };
1194 \f
1195 /* Garbage collection! */
1196
1197 int total_conses, total_markers, total_symbols, total_string_size, total_vector_size;
1198 int total_free_conses, total_free_markers, total_free_symbols;
1199 #ifdef LISP_FLOAT_TYPE
1200 int total_free_floats, total_floats;
1201 #endif /* LISP_FLOAT_TYPE */
1202
1203 DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "",
1204 "Reclaim storage for Lisp objects no longer needed.\n\
1205 Returns 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\
1209 Garbage 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;
1220 int omessage_length = echo_area_glyphs_length;
1221 char stack_top_variable;
1222 register int i;
1223
1224 /* Save a copy of the contents of the stack, for debugging. */
1225 #if MAX_SAVE_STACK > 0
1226 if (NILP (Vpurify_flag))
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)
1233 stack_copy = (char *) xmalloc (stack_copy_size = i);
1234 else if (stack_copy_size < i)
1235 stack_copy = (char *) xrealloc (stack_copy, (stack_copy_size = i));
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;
1254
1255 /* Likewise for undo information. */
1256 {
1257 register struct buffer *nextb = all_buffers;
1258
1259 while (nextb)
1260 {
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
1267 = truncate_undo_list (nextb->undo_list, undo_limit,
1268 undo_strong_limit);
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
1362 if (omessage || minibuf_level > 0)
1363 message2 (omessage, omessage_length);
1364 else if (!noninteractive)
1365 message1 ("Garbage collecting...done");
1366
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
1387 static void
1388 clear_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
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.
1447
1448 If the object referenced is a short string, the referencing slot
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
1454 #define LAST_MARKED_SIZE 500
1455 Lisp_Object *last_marked[LAST_MARKED_SIZE];
1456 int last_marked_index;
1457
1458 static void
1459 mark_object (objptr)
1460 Lisp_Object *objptr;
1461 {
1462 register Lisp_Object obj;
1463
1464 loop:
1465 obj = *objptr;
1466 loop2:
1467 XUNMARK (obj);
1468
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
1473 last_marked[last_marked_index++] = objptr;
1474 if (last_marked_index == LAST_MARKED_SIZE)
1475 last_marked_index = 0;
1476
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
1487 MARK_INTERVAL_TREE (ptr->intervals);
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:
1518 {
1519 register struct Lisp_Vector *ptr = XVECTOR (obj);
1520 register int size = ptr->size;
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. */
1527 struct Lisp_Vector *volatile ptr1 = ptr;
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 */
1533 mark_object (&ptr1->contents[i]);
1534 }
1535 break;
1536
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;
1544 /* See comment above under Lisp_Vector. */
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 {
1552 if (i != COMPILED_CONSTANTS)
1553 mark_object (&ptr1->contents[i]);
1554 }
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];
1558 goto loop;
1559 }
1560
1561 #ifdef MULTI_FRAME
1562 case Lisp_Frame:
1563 {
1564 /* See comment above under Lisp_Vector for why this is volatile. */
1565 register struct frame *volatile ptr = XFRAME (obj);
1566 register int size = ptr->size;
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);
1572 mark_object (&ptr->focus_frame);
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);
1578 mark_object (&ptr->scroll_bars);
1579 mark_object (&ptr->condemned_scroll_bars);
1580 mark_object (&ptr->menu_bar_items);
1581 mark_object (&ptr->menu_bar_vector);
1582 mark_object (&ptr->face_alist);
1583 }
1584 break;
1585 #endif /* MULTI_FRAME */
1586
1587 case Lisp_Symbol:
1588 {
1589 /* See comment above under Lisp_Vector for why this is volatile. */
1590 register struct Lisp_Symbol *volatile ptr = XSYMBOL (obj);
1591 struct Lisp_Symbol *ptrx;
1592
1593 if (XMARKBIT (ptr->plist)) break;
1594 XMARK (ptr->plist);
1595 mark_object ((Lisp_Object *) &ptr->value);
1596 mark_object (&ptr->function);
1597 mark_object (&ptr->plist);
1598 XSETTYPE (*(Lisp_Object *) &ptr->name, Lisp_String);
1599 mark_object (&ptr->name);
1600 ptr = ptr->next;
1601 if (ptr)
1602 {
1603 /* For the benefit of the last_marked log. */
1604 objptr = (Lisp_Object *)&XSYMBOL (obj)->next;
1605 ptrx = ptr; /* Use of ptrx avoids compiler bug on Sun */
1606 XSETSYMBOL (obj, ptrx);
1607 /* We can't goto loop here because *objptr doesn't contain an
1608 actual Lisp_Object with valid datatype field. */
1609 goto loop2;
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;
1618 instead, markers are removed from the chain when freed by gc. */
1619 break;
1620
1621 case Lisp_Cons:
1622 case Lisp_Buffer_Local_Value:
1623 case Lisp_Some_Buffer_Local_Value:
1624 case Lisp_Overlay:
1625 {
1626 register struct Lisp_Cons *ptr = XCONS (obj);
1627 if (XMARKBIT (ptr->car)) break;
1628 XMARK (ptr->car);
1629 /* If the cdr is nil, avoid recursion for the car. */
1630 if (EQ (ptr->cdr, Qnil))
1631 {
1632 objptr = &ptr->car;
1633 goto loop;
1634 }
1635 mark_object (&ptr->car);
1636 /* See comment above under Lisp_Vector for why not use ptr here. */
1637 objptr = &XCONS (obj)->cdr;
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
1673 static void
1674 mark_buffer (buf)
1675 Lisp_Object buf;
1676 {
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
1684 MARK_INTERVAL_TREE (buffer->intervals);
1685
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
1714 /* Sweep: find all structures not marked, and free them. */
1715
1716 static void
1717 gc_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
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
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;
1896 xfree (buffer);
1897 buffer = next;
1898 }
1899 else
1900 {
1901 XUNMARK (buffer->name);
1902 UNMARK_BALANCE_INTERVALS (buffer->intervals);
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;
1937 xfree (vector);
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;
1951 struct Lisp_String *s;
1952
1953 while (sb)
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 }
1975 }
1976 }
1977 \f
1978 /* Compactify strings, relocate references, and free empty string blocks. */
1979
1980 static void
1981 compact_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)
2042 bcopy (nextstr, newaddr, size + 1 + sizeof (int)
2043 + INTERVAL_PTR_SIZE);
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;
2066
2067 #ifdef USE_TEXT_PROPERTIES
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 }
2077 #endif /* USE_TEXT_PROPERTIES */
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;
2092 xfree (from_sb);
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;
2107 xfree (to_sb);
2108 }
2109 else
2110 from_sb = to_sb;
2111 }
2112 }
2113 \f
2114 /* Debugging aids. */
2115
2116 DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, 0,
2117 "Return the address of the last byte Emacs has allocated, divided by 1024.\n\
2118 This may be helpful in debugging Emacs's memory usage.\n\
2119 We divide the value by 1024 to make sure it fits in a Lisp integer.")
2120 ()
2121 {
2122 Lisp_Object end;
2123
2124 XSET (end, Lisp_Int, (int) sbrk (0) / 1024);
2125
2126 return end;
2127 }
2128
2129 \f
2130 /* Initialization */
2131
2132 init_alloc_once ()
2133 {
2134 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
2135 pureptr = 0;
2136 #ifdef HAVE_SHM
2137 pure_size = PURESIZE;
2138 #endif
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 */
2148 INIT_INTERVALS;
2149
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
2161 init_alloc ()
2162 {
2163 gcprolist = 0;
2164 }
2165
2166 void
2167 syms_of_alloc ()
2168 {
2169 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold,
2170 "*Number of bytes of consing between garbage collections.\n\
2171 Garbage collection can happen automatically once this many bytes have been\n\
2172 allocated since the last garbage collection. All data types count.\n\n\
2173 Garbage collection happens automatically only when `eval' is called.\n\n\
2174 By binding this temporarily to a large number, you can effectively\n\
2175 prevent 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\
2190 This means that certain objects should be allocated in shared (pure) space.");
2191
2192 DEFVAR_INT ("undo-limit", &undo_limit,
2193 "Keep no more undo information once it exceeds this size.\n\
2194 This limit is applied when garbage collection happens.\n\
2195 The size is counted as the number of bytes occupied,\n\
2196 which includes both saved text and other data.");
2197 undo_limit = 20000;
2198
2199 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit,
2200 "Don't keep more than this much size of undo information.\n\
2201 A command which pushes past this size is itself forgotten.\n\
2202 This limit is applied when garbage collection happens.\n\
2203 The size is counted as the number of bytes occupied,\n\
2204 which includes both saved text and other data.");
2205 undo_strong_limit = 30000;
2206
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. */
2209 memory_signal_data
2210 = Fcons (Qerror, Fcons (build_string ("Memory exhausted"), Qnil));
2211 staticpro (&memory_signal_data);
2212
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);
2220 defsubr (&Smake_symbol);
2221 defsubr (&Smake_marker);
2222 defsubr (&Spurecopy);
2223 defsubr (&Sgarbage_collect);
2224 defsubr (&Smemory_limit);
2225 }