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