]> code.delx.au - gnu-emacs/blob - src/alloc.c
(free_float): Don't assume XFASTINT accesses the raw bits.
[gnu-emacs] / 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 XSETCONS (val, (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 EMACS_INT pure[PURESIZE / sizeof (EMACS_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 EMACS_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 *(struct Lisp_Float **)&ptr->type = 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 XSETFLOAT (val, float_free_list);
451 float_free_list = *(struct Lisp_Float **)&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 XSETFLOAT (val, &float_block->floats[float_block_index++]);
464 }
465 XFLOAT (val)->data = float_value;
466 XSETFASTINT (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 *(struct Lisp_Cons **)&ptr->car = 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 XSETCONS (val, cons_free_list);
525 cons_free_list = *(struct Lisp_Cons **)&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 XSETCONS (val, &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 XSETFASTINT (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 (!INTEGERP (length) || 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 (!INTEGERP (length) || 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 XSETVECTOR (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 XSETFASTINT (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 XSETFASTINT (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 XSETSYMBOL (val, symbol_free_list);
711 symbol_free_list = *(struct Lisp_Symbol **)&symbol_free_list->value;
712 }
713 else
714 {
715 if (symbol_block_index == SYMBOL_BLOCK_SIZE)
716 {
717 struct symbol_block *new = (struct symbol_block *) xmalloc (sizeof (struct symbol_block));
718 VALIDATE_LISP_STORAGE (new, sizeof *new);
719 new->next = symbol_block;
720 symbol_block = new;
721 symbol_block_index = 0;
722 }
723 XSETSYMBOL (val, &symbol_block->symbols[symbol_block_index++]);
724 }
725 p = XSYMBOL (val);
726 p->name = XSTRING (str);
727 p->plist = Qnil;
728 p->value = Qunbound;
729 p->function = Qunbound;
730 p->next = 0;
731 consing_since_gc += sizeof (struct Lisp_Symbol);
732 return val;
733 }
734 \f
735 /* Allocation of markers and other objects that share that structure.
736 Works like allocation of conses. */
737
738 #define MARKER_BLOCK_SIZE \
739 ((1020 - sizeof (struct marker_block *)) / sizeof (union Lisp_Misc))
740
741 struct marker_block
742 {
743 struct marker_block *next;
744 union Lisp_Misc markers[MARKER_BLOCK_SIZE];
745 };
746
747 struct marker_block *marker_block;
748 int marker_block_index;
749
750 union Lisp_Misc *marker_free_list;
751
752 void
753 init_marker ()
754 {
755 marker_block = (struct marker_block *) malloc (sizeof (struct marker_block));
756 marker_block->next = 0;
757 bzero (marker_block->markers, sizeof marker_block->markers);
758 marker_block_index = 0;
759 marker_free_list = 0;
760 }
761
762 /* Return a newly allocated Lisp_Misc object, with no substructure. */
763 Lisp_Object
764 allocate_misc ()
765 {
766 Lisp_Object val;
767
768 if (marker_free_list)
769 {
770 XSETMISC (val, marker_free_list);
771 marker_free_list = marker_free_list->u_free.chain;
772 }
773 else
774 {
775 if (marker_block_index == MARKER_BLOCK_SIZE)
776 {
777 struct marker_block *new
778 = (struct marker_block *) xmalloc (sizeof (struct marker_block));
779 VALIDATE_LISP_STORAGE (new, sizeof *new);
780 new->next = marker_block;
781 marker_block = new;
782 marker_block_index = 0;
783 }
784 XSETMISC (val, &marker_block->markers[marker_block_index++]);
785 }
786 consing_since_gc += sizeof (union Lisp_Misc);
787 return val;
788 }
789
790 DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
791 "Return a newly allocated marker which does not point at any place.")
792 ()
793 {
794 register Lisp_Object val;
795 register struct Lisp_Marker *p;
796
797 val = allocate_misc ();
798 XMISC (val)->type = Lisp_Misc_Marker;
799 p = XMARKER (val);
800 p->buffer = 0;
801 p->bufpos = 0;
802 p->chain = Qnil;
803 return val;
804 }
805 \f
806 /* Allocation of strings */
807
808 /* Strings reside inside of string_blocks. The entire data of the string,
809 both the size and the contents, live in part of the `chars' component of a string_block.
810 The `pos' component is the index within `chars' of the first free byte.
811
812 first_string_block points to the first string_block ever allocated.
813 Each block points to the next one with its `next' field.
814 The `prev' fields chain in reverse order.
815 The last one allocated is the one currently being filled.
816 current_string_block points to it.
817
818 The string_blocks that hold individual large strings
819 go in a separate chain, started by large_string_blocks. */
820
821
822 /* String blocks contain this many useful bytes.
823 8188 is power of 2, minus 4 for malloc overhead. */
824 #define STRING_BLOCK_SIZE (8188 - sizeof (struct string_block_head))
825
826 /* A string bigger than this gets its own specially-made string block
827 if it doesn't fit in the current one. */
828 #define STRING_BLOCK_OUTSIZE 1024
829
830 struct string_block_head
831 {
832 struct string_block *next, *prev;
833 int pos;
834 };
835
836 struct string_block
837 {
838 struct string_block *next, *prev;
839 EMACS_INT pos;
840 char chars[STRING_BLOCK_SIZE];
841 };
842
843 /* This points to the string block we are now allocating strings. */
844
845 struct string_block *current_string_block;
846
847 /* This points to the oldest string block, the one that starts the chain. */
848
849 struct string_block *first_string_block;
850
851 /* Last string block in chain of those made for individual large strings. */
852
853 struct string_block *large_string_blocks;
854
855 /* If SIZE is the length of a string, this returns how many bytes
856 the string occupies in a string_block (including padding). */
857
858 #define STRING_FULLSIZE(size) (((size) + sizeof (struct Lisp_String) + PAD) \
859 & ~(PAD - 1))
860 #define PAD (sizeof (EMACS_INT))
861
862 #if 0
863 #define STRING_FULLSIZE(SIZE) \
864 (((SIZE) + 2 * sizeof (EMACS_INT)) & ~(sizeof (EMACS_INT) - 1))
865 #endif
866
867 void
868 init_strings ()
869 {
870 current_string_block = (struct string_block *) malloc (sizeof (struct string_block));
871 first_string_block = current_string_block;
872 consing_since_gc += sizeof (struct string_block);
873 current_string_block->next = 0;
874 current_string_block->prev = 0;
875 current_string_block->pos = 0;
876 large_string_blocks = 0;
877 }
878
879 DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0,
880 "Return a newly created string of length LENGTH, with each element being INIT.\n\
881 Both LENGTH and INIT must be numbers.")
882 (length, init)
883 Lisp_Object length, init;
884 {
885 register Lisp_Object val;
886 register unsigned char *p, *end, c;
887
888 if (!INTEGERP (length) || XINT (length) < 0)
889 length = wrong_type_argument (Qnatnump, length);
890 CHECK_NUMBER (init, 1);
891 val = make_uninit_string (XINT (length));
892 c = XINT (init);
893 p = XSTRING (val)->data;
894 end = p + XSTRING (val)->size;
895 while (p != end)
896 *p++ = c;
897 *p = 0;
898 return val;
899 }
900
901 Lisp_Object
902 make_string (contents, length)
903 char *contents;
904 int length;
905 {
906 register Lisp_Object val;
907 val = make_uninit_string (length);
908 bcopy (contents, XSTRING (val)->data, length);
909 return val;
910 }
911
912 Lisp_Object
913 build_string (str)
914 char *str;
915 {
916 return make_string (str, strlen (str));
917 }
918
919 Lisp_Object
920 make_uninit_string (length)
921 int length;
922 {
923 register Lisp_Object val;
924 register int fullsize = STRING_FULLSIZE (length);
925
926 if (length < 0) abort ();
927
928 if (fullsize <= STRING_BLOCK_SIZE - current_string_block->pos)
929 /* This string can fit in the current string block */
930 {
931 XSETSTRING (val,
932 ((struct Lisp_String *)
933 (current_string_block->chars + current_string_block->pos)));
934 current_string_block->pos += fullsize;
935 }
936 else if (fullsize > STRING_BLOCK_OUTSIZE)
937 /* This string gets its own string block */
938 {
939 register struct string_block *new
940 = (struct string_block *) xmalloc (sizeof (struct string_block_head) + fullsize);
941 VALIDATE_LISP_STORAGE (new, 0);
942 consing_since_gc += sizeof (struct string_block_head) + fullsize;
943 new->pos = fullsize;
944 new->next = large_string_blocks;
945 large_string_blocks = new;
946 XSETSTRING (val,
947 ((struct Lisp_String *)
948 ((struct string_block_head *)new + 1)));
949 }
950 else
951 /* Make a new current string block and start it off with this string */
952 {
953 register struct string_block *new
954 = (struct string_block *) xmalloc (sizeof (struct string_block));
955 VALIDATE_LISP_STORAGE (new, sizeof *new);
956 consing_since_gc += sizeof (struct string_block);
957 current_string_block->next = new;
958 new->prev = current_string_block;
959 new->next = 0;
960 current_string_block = new;
961 new->pos = fullsize;
962 XSETSTRING (val,
963 (struct Lisp_String *) current_string_block->chars);
964 }
965
966 XSTRING (val)->size = length;
967 XSTRING (val)->data[length] = 0;
968 INITIALIZE_INTERVAL (XSTRING (val), NULL_INTERVAL);
969
970 return val;
971 }
972
973 /* Return a newly created vector or string with specified arguments as
974 elements. If all the arguments are characters that can fit
975 in a string of events, make a string; otherwise, make a vector.
976
977 Any number of arguments, even zero arguments, are allowed. */
978
979 Lisp_Object
980 make_event_array (nargs, args)
981 register int nargs;
982 Lisp_Object *args;
983 {
984 int i;
985
986 for (i = 0; i < nargs; i++)
987 /* The things that fit in a string
988 are characters that are in 0...127,
989 after discarding the meta bit and all the bits above it. */
990 if (!INTEGERP (args[i])
991 || (XUINT (args[i]) & ~(-CHAR_META)) >= 0200)
992 return Fvector (nargs, args);
993
994 /* Since the loop exited, we know that all the things in it are
995 characters, so we can make a string. */
996 {
997 Lisp_Object result;
998
999 result = Fmake_string (nargs, make_number (0));
1000 for (i = 0; i < nargs; i++)
1001 {
1002 XSTRING (result)->data[i] = XINT (args[i]);
1003 /* Move the meta bit to the right place for a string char. */
1004 if (XINT (args[i]) & CHAR_META)
1005 XSTRING (result)->data[i] |= 0x80;
1006 }
1007
1008 return result;
1009 }
1010 }
1011 \f
1012 /* Pure storage management. */
1013
1014 /* Must get an error if pure storage is full,
1015 since if it cannot hold a large string
1016 it may be able to hold conses that point to that string;
1017 then the string is not protected from gc. */
1018
1019 Lisp_Object
1020 make_pure_string (data, length)
1021 char *data;
1022 int length;
1023 {
1024 register Lisp_Object new;
1025 register int size = sizeof (EMACS_INT) + INTERVAL_PTR_SIZE + length + 1;
1026
1027 if (pureptr + size > PURESIZE)
1028 error ("Pure Lisp storage exhausted");
1029 XSETSTRING (new, PUREBEG + pureptr);
1030 XSTRING (new)->size = length;
1031 bcopy (data, XSTRING (new)->data, length);
1032 XSTRING (new)->data[length] = 0;
1033
1034 /* We must give strings in pure storage some kind of interval. So we
1035 give them a null one. */
1036 #if defined (USE_TEXT_PROPERTIES)
1037 XSTRING (new)->intervals = NULL_INTERVAL;
1038 #endif
1039 pureptr += (size + sizeof (EMACS_INT) - 1)
1040 / sizeof (EMACS_INT) * sizeof (EMACS_INT);
1041 return new;
1042 }
1043
1044 Lisp_Object
1045 pure_cons (car, cdr)
1046 Lisp_Object car, cdr;
1047 {
1048 register Lisp_Object new;
1049
1050 if (pureptr + sizeof (struct Lisp_Cons) > PURESIZE)
1051 error ("Pure Lisp storage exhausted");
1052 XSETCONS (new, PUREBEG + pureptr);
1053 pureptr += sizeof (struct Lisp_Cons);
1054 XCONS (new)->car = Fpurecopy (car);
1055 XCONS (new)->cdr = Fpurecopy (cdr);
1056 return new;
1057 }
1058
1059 #ifdef LISP_FLOAT_TYPE
1060
1061 Lisp_Object
1062 make_pure_float (num)
1063 double num;
1064 {
1065 register Lisp_Object new;
1066
1067 /* Make sure that PUREBEG + pureptr is aligned on at least a sizeof
1068 (double) boundary. Some architectures (like the sparc) require
1069 this, and I suspect that floats are rare enough that it's no
1070 tragedy for those that do. */
1071 {
1072 int alignment;
1073 char *p = PUREBEG + pureptr;
1074
1075 #ifdef __GNUC__
1076 #if __GNUC__ >= 2
1077 alignment = __alignof (struct Lisp_Float);
1078 #else
1079 alignment = sizeof (struct Lisp_Float);
1080 #endif
1081 #else
1082 alignment = sizeof (struct Lisp_Float);
1083 #endif
1084 p = (char *) (((unsigned long) p + alignment - 1) & - alignment);
1085 pureptr = p - PUREBEG;
1086 }
1087
1088 if (pureptr + sizeof (struct Lisp_Float) > PURESIZE)
1089 error ("Pure Lisp storage exhausted");
1090 XSETFLOAT (new, PUREBEG + pureptr);
1091 pureptr += sizeof (struct Lisp_Float);
1092 XFLOAT (new)->data = num;
1093 XSETFASTINT (XFLOAT (new)->type, 0); /* bug chasing -wsr */
1094 return new;
1095 }
1096
1097 #endif /* LISP_FLOAT_TYPE */
1098
1099 Lisp_Object
1100 make_pure_vector (len)
1101 EMACS_INT len;
1102 {
1103 register Lisp_Object new;
1104 register EMACS_INT size = sizeof (struct Lisp_Vector) + (len - 1) * sizeof (Lisp_Object);
1105
1106 if (pureptr + size > PURESIZE)
1107 error ("Pure Lisp storage exhausted");
1108
1109 XSETVECTOR (new, PUREBEG + pureptr);
1110 pureptr += size;
1111 XVECTOR (new)->size = len;
1112 return new;
1113 }
1114
1115 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
1116 "Make a copy of OBJECT in pure storage.\n\
1117 Recursively copies contents of vectors and cons cells.\n\
1118 Does not copy symbols.")
1119 (obj)
1120 register Lisp_Object obj;
1121 {
1122 register Lisp_Object new, tem;
1123 register int i;
1124
1125 if (NILP (Vpurify_flag))
1126 return obj;
1127
1128 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1129 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1130 return obj;
1131
1132 #ifdef SWITCH_ENUM_BUG
1133 switch ((int) XTYPE (obj))
1134 #else
1135 switch (XTYPE (obj))
1136 #endif
1137 {
1138 case Lisp_Misc:
1139 switch (XMISC (obj)->type)
1140 {
1141 case Lisp_Misc_Marker:
1142 error ("Attempt to copy a marker to pure storage");
1143
1144 default:
1145 abort ();
1146 }
1147
1148 case Lisp_Cons:
1149 return pure_cons (XCONS (obj)->car, XCONS (obj)->cdr);
1150
1151 #ifdef LISP_FLOAT_TYPE
1152 case Lisp_Float:
1153 return make_pure_float (XFLOAT (obj)->data);
1154 #endif /* LISP_FLOAT_TYPE */
1155
1156 case Lisp_String:
1157 return make_pure_string (XSTRING (obj)->data, XSTRING (obj)->size);
1158
1159 case Lisp_Compiled:
1160 case Lisp_Vector:
1161 new = make_pure_vector (XVECTOR (obj)->size);
1162 for (i = 0; i < XVECTOR (obj)->size; i++)
1163 {
1164 tem = XVECTOR (obj)->contents[i];
1165 XVECTOR (new)->contents[i] = Fpurecopy (tem);
1166 }
1167 XSETTYPE (new, XTYPE (obj));
1168 return new;
1169
1170 default:
1171 return obj;
1172 }
1173 }
1174 \f
1175 /* Recording what needs to be marked for gc. */
1176
1177 struct gcpro *gcprolist;
1178
1179 #define NSTATICS 512
1180
1181 Lisp_Object *staticvec[NSTATICS] = {0};
1182
1183 int staticidx = 0;
1184
1185 /* Put an entry in staticvec, pointing at the variable whose address is given */
1186
1187 void
1188 staticpro (varaddress)
1189 Lisp_Object *varaddress;
1190 {
1191 staticvec[staticidx++] = varaddress;
1192 if (staticidx >= NSTATICS)
1193 abort ();
1194 }
1195
1196 struct catchtag
1197 {
1198 Lisp_Object tag;
1199 Lisp_Object val;
1200 struct catchtag *next;
1201 /* jmp_buf jmp; /* We don't need this for GC purposes */
1202 };
1203
1204 struct backtrace
1205 {
1206 struct backtrace *next;
1207 Lisp_Object *function;
1208 Lisp_Object *args; /* Points to vector of args. */
1209 int nargs; /* length of vector */
1210 /* if nargs is UNEVALLED, args points to slot holding list of unevalled args */
1211 char evalargs;
1212 };
1213 \f
1214 /* Garbage collection! */
1215
1216 int total_conses, total_markers, total_symbols, total_string_size, total_vector_size;
1217 int total_free_conses, total_free_markers, total_free_symbols;
1218 #ifdef LISP_FLOAT_TYPE
1219 int total_free_floats, total_floats;
1220 #endif /* LISP_FLOAT_TYPE */
1221
1222 DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "",
1223 "Reclaim storage for Lisp objects no longer needed.\n\
1224 Returns info on amount of space in use:\n\
1225 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)\n\
1226 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS\n\
1227 (USED-FLOATS . FREE-FLOATS))\n\
1228 Garbage collection happens automatically if you cons more than\n\
1229 `gc-cons-threshold' bytes of Lisp data since previous garbage collection.")
1230 ()
1231 {
1232 register struct gcpro *tail;
1233 register struct specbinding *bind;
1234 struct catchtag *catch;
1235 struct handler *handler;
1236 register struct backtrace *backlist;
1237 register Lisp_Object tem;
1238 char *omessage = echo_area_glyphs;
1239 int omessage_length = echo_area_glyphs_length;
1240 char stack_top_variable;
1241 register int i;
1242
1243 /* Save a copy of the contents of the stack, for debugging. */
1244 #if MAX_SAVE_STACK > 0
1245 if (NILP (Vpurify_flag))
1246 {
1247 i = &stack_top_variable - stack_bottom;
1248 if (i < 0) i = -i;
1249 if (i < MAX_SAVE_STACK)
1250 {
1251 if (stack_copy == 0)
1252 stack_copy = (char *) xmalloc (stack_copy_size = i);
1253 else if (stack_copy_size < i)
1254 stack_copy = (char *) xrealloc (stack_copy, (stack_copy_size = i));
1255 if (stack_copy)
1256 {
1257 if ((EMACS_INT) (&stack_top_variable - stack_bottom) > 0)
1258 bcopy (stack_bottom, stack_copy, i);
1259 else
1260 bcopy (&stack_top_variable, stack_copy, i);
1261 }
1262 }
1263 }
1264 #endif /* MAX_SAVE_STACK > 0 */
1265
1266 if (!noninteractive)
1267 message1 ("Garbage collecting...");
1268
1269 /* Don't keep command history around forever */
1270 tem = Fnthcdr (make_number (30), Vcommand_history);
1271 if (CONSP (tem))
1272 XCONS (tem)->cdr = Qnil;
1273
1274 /* Likewise for undo information. */
1275 {
1276 register struct buffer *nextb = all_buffers;
1277
1278 while (nextb)
1279 {
1280 /* If a buffer's undo list is Qt, that means that undo is
1281 turned off in that buffer. Calling truncate_undo_list on
1282 Qt tends to return NULL, which effectively turns undo back on.
1283 So don't call truncate_undo_list if undo_list is Qt. */
1284 if (! EQ (nextb->undo_list, Qt))
1285 nextb->undo_list
1286 = truncate_undo_list (nextb->undo_list, undo_limit,
1287 undo_strong_limit);
1288 nextb = nextb->next;
1289 }
1290 }
1291
1292 gc_in_progress = 1;
1293
1294 /* clear_marks (); */
1295
1296 /* In each "large string", set the MARKBIT of the size field.
1297 That enables mark_object to recognize them. */
1298 {
1299 register struct string_block *b;
1300 for (b = large_string_blocks; b; b = b->next)
1301 ((struct Lisp_String *)(&b->chars[0]))->size |= MARKBIT;
1302 }
1303
1304 /* Mark all the special slots that serve as the roots of accessibility.
1305
1306 Usually the special slots to mark are contained in particular structures.
1307 Then we know no slot is marked twice because the structures don't overlap.
1308 In some cases, the structures point to the slots to be marked.
1309 For these, we use MARKBIT to avoid double marking of the slot. */
1310
1311 for (i = 0; i < staticidx; i++)
1312 mark_object (staticvec[i]);
1313 for (tail = gcprolist; tail; tail = tail->next)
1314 for (i = 0; i < tail->nvars; i++)
1315 if (!XMARKBIT (tail->var[i]))
1316 {
1317 mark_object (&tail->var[i]);
1318 XMARK (tail->var[i]);
1319 }
1320 for (bind = specpdl; bind != specpdl_ptr; bind++)
1321 {
1322 mark_object (&bind->symbol);
1323 mark_object (&bind->old_value);
1324 }
1325 for (catch = catchlist; catch; catch = catch->next)
1326 {
1327 mark_object (&catch->tag);
1328 mark_object (&catch->val);
1329 }
1330 for (handler = handlerlist; handler; handler = handler->next)
1331 {
1332 mark_object (&handler->handler);
1333 mark_object (&handler->var);
1334 }
1335 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1336 {
1337 if (!XMARKBIT (*backlist->function))
1338 {
1339 mark_object (backlist->function);
1340 XMARK (*backlist->function);
1341 }
1342 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1343 i = 0;
1344 else
1345 i = backlist->nargs - 1;
1346 for (; i >= 0; i--)
1347 if (!XMARKBIT (backlist->args[i]))
1348 {
1349 mark_object (&backlist->args[i]);
1350 XMARK (backlist->args[i]);
1351 }
1352 }
1353
1354 gc_sweep ();
1355
1356 /* Clear the mark bits that we set in certain root slots. */
1357
1358 for (tail = gcprolist; tail; tail = tail->next)
1359 for (i = 0; i < tail->nvars; i++)
1360 XUNMARK (tail->var[i]);
1361 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1362 {
1363 XUNMARK (*backlist->function);
1364 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1365 i = 0;
1366 else
1367 i = backlist->nargs - 1;
1368 for (; i >= 0; i--)
1369 XUNMARK (backlist->args[i]);
1370 }
1371 XUNMARK (buffer_defaults.name);
1372 XUNMARK (buffer_local_symbols.name);
1373
1374 /* clear_marks (); */
1375 gc_in_progress = 0;
1376
1377 consing_since_gc = 0;
1378 if (gc_cons_threshold < 10000)
1379 gc_cons_threshold = 10000;
1380
1381 if (omessage || minibuf_level > 0)
1382 message2 (omessage, omessage_length);
1383 else if (!noninteractive)
1384 message1 ("Garbage collecting...done");
1385
1386 return Fcons (Fcons (make_number (total_conses),
1387 make_number (total_free_conses)),
1388 Fcons (Fcons (make_number (total_symbols),
1389 make_number (total_free_symbols)),
1390 Fcons (Fcons (make_number (total_markers),
1391 make_number (total_free_markers)),
1392 Fcons (make_number (total_string_size),
1393 Fcons (make_number (total_vector_size),
1394
1395 #ifdef LISP_FLOAT_TYPE
1396 Fcons (Fcons (make_number (total_floats),
1397 make_number (total_free_floats)),
1398 Qnil)
1399 #else /* not LISP_FLOAT_TYPE */
1400 Qnil
1401 #endif /* not LISP_FLOAT_TYPE */
1402 )))));
1403 }
1404 \f
1405 #if 0
1406 static void
1407 clear_marks ()
1408 {
1409 /* Clear marks on all conses */
1410 {
1411 register struct cons_block *cblk;
1412 register int lim = cons_block_index;
1413
1414 for (cblk = cons_block; cblk; cblk = cblk->next)
1415 {
1416 register int i;
1417 for (i = 0; i < lim; i++)
1418 XUNMARK (cblk->conses[i].car);
1419 lim = CONS_BLOCK_SIZE;
1420 }
1421 }
1422 /* Clear marks on all symbols */
1423 {
1424 register struct symbol_block *sblk;
1425 register int lim = symbol_block_index;
1426
1427 for (sblk = symbol_block; sblk; sblk = sblk->next)
1428 {
1429 register int i;
1430 for (i = 0; i < lim; i++)
1431 {
1432 XUNMARK (sblk->symbols[i].plist);
1433 }
1434 lim = SYMBOL_BLOCK_SIZE;
1435 }
1436 }
1437 /* Clear marks on all markers */
1438 {
1439 register struct marker_block *sblk;
1440 register int lim = marker_block_index;
1441
1442 for (sblk = marker_block; sblk; sblk = sblk->next)
1443 {
1444 register int i;
1445 for (i = 0; i < lim; i++)
1446 if (sblk->markers[i].type == Lisp_Misc_Marker)
1447 XUNMARK (sblk->markers[i].u_marker.chain);
1448 lim = MARKER_BLOCK_SIZE;
1449 }
1450 }
1451 /* Clear mark bits on all buffers */
1452 {
1453 register struct buffer *nextb = all_buffers;
1454
1455 while (nextb)
1456 {
1457 XUNMARK (nextb->name);
1458 nextb = nextb->next;
1459 }
1460 }
1461 }
1462 #endif
1463 \f
1464 /* Mark reference to a Lisp_Object.
1465 If the object referred to has not been seen yet, recursively mark
1466 all the references contained in it.
1467
1468 If the object referenced is a short string, the referencing slot
1469 is threaded into a chain of such slots, pointed to from
1470 the `size' field of the string. The actual string size
1471 lives in the last slot in the chain. We recognize the end
1472 because it is < (unsigned) STRING_BLOCK_SIZE. */
1473
1474 #define LAST_MARKED_SIZE 500
1475 Lisp_Object *last_marked[LAST_MARKED_SIZE];
1476 int last_marked_index;
1477
1478 static void
1479 mark_object (objptr)
1480 Lisp_Object *objptr;
1481 {
1482 register Lisp_Object obj;
1483
1484 loop:
1485 obj = *objptr;
1486 loop2:
1487 XUNMARK (obj);
1488
1489 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1490 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1491 return;
1492
1493 last_marked[last_marked_index++] = objptr;
1494 if (last_marked_index == LAST_MARKED_SIZE)
1495 last_marked_index = 0;
1496
1497 #ifdef SWITCH_ENUM_BUG
1498 switch ((int) XGCTYPE (obj))
1499 #else
1500 switch (XGCTYPE (obj))
1501 #endif
1502 {
1503 case Lisp_String:
1504 {
1505 register struct Lisp_String *ptr = XSTRING (obj);
1506
1507 MARK_INTERVAL_TREE (ptr->intervals);
1508 if (ptr->size & MARKBIT)
1509 /* A large string. Just set ARRAY_MARK_FLAG. */
1510 ptr->size |= ARRAY_MARK_FLAG;
1511 else
1512 {
1513 /* A small string. Put this reference
1514 into the chain of references to it.
1515 The address OBJPTR is even, so if the address
1516 includes MARKBIT, put it in the low bit
1517 when we store OBJPTR into the size field. */
1518
1519 if (XMARKBIT (*objptr))
1520 {
1521 XSETFASTINT (*objptr, ptr->size);
1522 XMARK (*objptr);
1523 }
1524 else
1525 XSETFASTINT (*objptr, ptr->size);
1526 if ((EMACS_INT) objptr & 1) abort ();
1527 ptr->size = (EMACS_INT) objptr & ~MARKBIT;
1528 if ((EMACS_INT) objptr & MARKBIT)
1529 ptr->size ++;
1530 }
1531 }
1532 break;
1533
1534 case Lisp_Vector:
1535 case Lisp_Window:
1536 case Lisp_Process:
1537 case Lisp_Window_Configuration:
1538 {
1539 register struct Lisp_Vector *ptr = XVECTOR (obj);
1540 register EMACS_INT size = ptr->size;
1541 /* The reason we use ptr1 is to avoid an apparent hardware bug
1542 that happens occasionally on the FSF's HP 300s.
1543 The bug is that a2 gets clobbered by recursive calls to mark_object.
1544 The clobberage seems to happen during function entry,
1545 perhaps in the moveml instruction.
1546 Yes, this is a crock, but we have to do it. */
1547 struct Lisp_Vector *volatile ptr1 = ptr;
1548 register int i;
1549
1550 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1551 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1552 for (i = 0; i < size; i++) /* and then mark its elements */
1553 mark_object (&ptr1->contents[i]);
1554 }
1555 break;
1556
1557 case Lisp_Compiled:
1558 /* We could treat this just like a vector, but it is better
1559 to save the COMPILED_CONSTANTS element for last and avoid recursion
1560 there. */
1561 {
1562 register struct Lisp_Vector *ptr = XVECTOR (obj);
1563 register EMACS_INT size = ptr->size;
1564 /* See comment above under Lisp_Vector. */
1565 struct Lisp_Vector *volatile ptr1 = ptr;
1566 register int i;
1567
1568 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1569 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1570 for (i = 0; i < size; i++) /* and then mark its elements */
1571 {
1572 if (i != COMPILED_CONSTANTS)
1573 mark_object (&ptr1->contents[i]);
1574 }
1575 /* This cast should be unnecessary, but some Mips compiler complains
1576 (MIPS-ABI + SysVR4, DC/OSx, etc). */
1577 objptr = (Lisp_Object *) &ptr1->contents[COMPILED_CONSTANTS];
1578 goto loop;
1579 }
1580
1581 #ifdef MULTI_FRAME
1582 case Lisp_Frame:
1583 {
1584 /* See comment above under Lisp_Vector for why this is volatile. */
1585 register struct frame *volatile ptr = XFRAME (obj);
1586 register EMACS_INT size = ptr->size;
1587
1588 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1589 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1590
1591 mark_object (&ptr->name);
1592 mark_object (&ptr->focus_frame);
1593 mark_object (&ptr->width);
1594 mark_object (&ptr->height);
1595 mark_object (&ptr->selected_window);
1596 mark_object (&ptr->minibuffer_window);
1597 mark_object (&ptr->param_alist);
1598 mark_object (&ptr->scroll_bars);
1599 mark_object (&ptr->condemned_scroll_bars);
1600 mark_object (&ptr->menu_bar_items);
1601 mark_object (&ptr->menu_bar_vector);
1602 mark_object (&ptr->face_alist);
1603 }
1604 break;
1605 #endif /* MULTI_FRAME */
1606
1607 case Lisp_Symbol:
1608 {
1609 /* See comment above under Lisp_Vector for why this is volatile. */
1610 register struct Lisp_Symbol *volatile ptr = XSYMBOL (obj);
1611 struct Lisp_Symbol *ptrx;
1612
1613 if (XMARKBIT (ptr->plist)) break;
1614 XMARK (ptr->plist);
1615 mark_object ((Lisp_Object *) &ptr->value);
1616 mark_object (&ptr->function);
1617 mark_object (&ptr->plist);
1618 XSETTYPE (*(Lisp_Object *) &ptr->name, Lisp_String);
1619 mark_object (&ptr->name);
1620 ptr = ptr->next;
1621 if (ptr)
1622 {
1623 /* For the benefit of the last_marked log. */
1624 objptr = (Lisp_Object *)&XSYMBOL (obj)->next;
1625 ptrx = ptr; /* Use of ptrx avoids compiler bug on Sun */
1626 XSETSYMBOL (obj, ptrx);
1627 /* We can't goto loop here because *objptr doesn't contain an
1628 actual Lisp_Object with valid datatype field. */
1629 goto loop2;
1630 }
1631 }
1632 break;
1633
1634 case Lisp_Misc:
1635 switch (XMISC (obj)->type)
1636 {
1637 case Lisp_Misc_Marker:
1638 XMARK (XMARKER (obj)->chain);
1639 /* DO NOT mark thru the marker's chain.
1640 The buffer's markers chain does not preserve markers from gc;
1641 instead, markers are removed from the chain when freed by gc. */
1642 break;
1643
1644 case Lisp_Misc_Buffer_Local_Value:
1645 case Lisp_Misc_Some_Buffer_Local_Value:
1646 {
1647 register struct Lisp_Buffer_Local_Value *ptr
1648 = XBUFFER_LOCAL_VALUE (obj);
1649 if (XMARKBIT (ptr->car)) break;
1650 XMARK (ptr->car);
1651 /* If the cdr is nil, avoid recursion for the car. */
1652 if (EQ (ptr->cdr, Qnil))
1653 {
1654 objptr = &ptr->car;
1655 goto loop;
1656 }
1657 mark_object (&ptr->car);
1658 /* See comment above under Lisp_Vector for why not use ptr here. */
1659 objptr = &XBUFFER_LOCAL_VALUE (obj)->cdr;
1660 goto loop;
1661 }
1662
1663 case Lisp_Misc_Intfwd:
1664 case Lisp_Misc_Boolfwd:
1665 case Lisp_Misc_Objfwd:
1666 case Lisp_Misc_Buffer_Objfwd:
1667 /* Don't bother with Lisp_Buffer_Objfwd,
1668 since all markable slots in current buffer marked anyway. */
1669 /* Don't need to do Lisp_Objfwd, since the places they point
1670 are protected with staticpro. */
1671 break;
1672
1673 case Lisp_Misc_Overlay:
1674 {
1675 struct Lisp_Overlay *ptr = XOVERLAY (obj);
1676 if (!XMARKBIT (ptr->plist))
1677 {
1678 XMARK (ptr->plist);
1679 mark_object (&ptr->start);
1680 mark_object (&ptr->end);
1681 objptr = &ptr->plist;
1682 goto loop;
1683 }
1684 }
1685 break;
1686
1687 default:
1688 abort ();
1689 }
1690 break;
1691
1692 case Lisp_Cons:
1693 {
1694 register struct Lisp_Cons *ptr = XCONS (obj);
1695 if (XMARKBIT (ptr->car)) break;
1696 XMARK (ptr->car);
1697 /* If the cdr is nil, avoid recursion for the car. */
1698 if (EQ (ptr->cdr, Qnil))
1699 {
1700 objptr = &ptr->car;
1701 goto loop;
1702 }
1703 mark_object (&ptr->car);
1704 /* See comment above under Lisp_Vector for why not use ptr here. */
1705 objptr = &XCONS (obj)->cdr;
1706 goto loop;
1707 }
1708
1709 #ifdef LISP_FLOAT_TYPE
1710 case Lisp_Float:
1711 XMARK (XFLOAT (obj)->type);
1712 break;
1713 #endif /* LISP_FLOAT_TYPE */
1714
1715 case Lisp_Buffer:
1716 if (!XMARKBIT (XBUFFER (obj)->name))
1717 mark_buffer (obj);
1718 break;
1719
1720 case Lisp_Int:
1721 case Lisp_Subr:
1722 break;
1723
1724 default:
1725 abort ();
1726 }
1727 }
1728
1729 /* Mark the pointers in a buffer structure. */
1730
1731 static void
1732 mark_buffer (buf)
1733 Lisp_Object buf;
1734 {
1735 register struct buffer *buffer = XBUFFER (buf);
1736 register Lisp_Object *ptr;
1737
1738 /* This is the buffer's markbit */
1739 mark_object (&buffer->name);
1740 XMARK (buffer->name);
1741
1742 MARK_INTERVAL_TREE (buffer->intervals);
1743
1744 #if 0
1745 mark_object (buffer->syntax_table);
1746
1747 /* Mark the various string-pointers in the buffer object.
1748 Since the strings may be relocated, we must mark them
1749 in their actual slots. So gc_sweep must convert each slot
1750 back to an ordinary C pointer. */
1751 XSETSTRING (*(Lisp_Object *)&buffer->upcase_table, buffer->upcase_table);
1752 mark_object ((Lisp_Object *)&buffer->upcase_table);
1753 XSETSTRING (*(Lisp_Object *)&buffer->downcase_table, buffer->downcase_table);
1754 mark_object ((Lisp_Object *)&buffer->downcase_table);
1755
1756 XSETSTRING (*(Lisp_Object *)&buffer->sort_table, buffer->sort_table);
1757 mark_object ((Lisp_Object *)&buffer->sort_table);
1758 XSETSTRING (*(Lisp_Object *)&buffer->folding_sort_table, buffer->folding_sort_table);
1759 mark_object ((Lisp_Object *)&buffer->folding_sort_table);
1760 #endif
1761
1762 for (ptr = &buffer->name + 1;
1763 (char *)ptr < (char *)buffer + sizeof (struct buffer);
1764 ptr++)
1765 mark_object (ptr);
1766 }
1767 \f
1768 /* Sweep: find all structures not marked, and free them. */
1769
1770 static void
1771 gc_sweep ()
1772 {
1773 total_string_size = 0;
1774 compact_strings ();
1775
1776 /* Put all unmarked conses on free list */
1777 {
1778 register struct cons_block *cblk;
1779 register int lim = cons_block_index;
1780 register int num_free = 0, num_used = 0;
1781
1782 cons_free_list = 0;
1783
1784 for (cblk = cons_block; cblk; cblk = cblk->next)
1785 {
1786 register int i;
1787 for (i = 0; i < lim; i++)
1788 if (!XMARKBIT (cblk->conses[i].car))
1789 {
1790 num_free++;
1791 *(struct Lisp_Cons **)&cblk->conses[i].car = cons_free_list;
1792 cons_free_list = &cblk->conses[i];
1793 }
1794 else
1795 {
1796 num_used++;
1797 XUNMARK (cblk->conses[i].car);
1798 }
1799 lim = CONS_BLOCK_SIZE;
1800 }
1801 total_conses = num_used;
1802 total_free_conses = num_free;
1803 }
1804
1805 #ifdef LISP_FLOAT_TYPE
1806 /* Put all unmarked floats on free list */
1807 {
1808 register struct float_block *fblk;
1809 register int lim = float_block_index;
1810 register int num_free = 0, num_used = 0;
1811
1812 float_free_list = 0;
1813
1814 for (fblk = float_block; fblk; fblk = fblk->next)
1815 {
1816 register int i;
1817 for (i = 0; i < lim; i++)
1818 if (!XMARKBIT (fblk->floats[i].type))
1819 {
1820 num_free++;
1821 *(struct Lisp_Float **)&fblk->floats[i].type = float_free_list;
1822 float_free_list = &fblk->floats[i];
1823 }
1824 else
1825 {
1826 num_used++;
1827 XUNMARK (fblk->floats[i].type);
1828 }
1829 lim = FLOAT_BLOCK_SIZE;
1830 }
1831 total_floats = num_used;
1832 total_free_floats = num_free;
1833 }
1834 #endif /* LISP_FLOAT_TYPE */
1835
1836 #ifdef USE_TEXT_PROPERTIES
1837 /* Put all unmarked intervals on free list */
1838 {
1839 register struct interval_block *iblk;
1840 register int lim = interval_block_index;
1841 register int num_free = 0, num_used = 0;
1842
1843 interval_free_list = 0;
1844
1845 for (iblk = interval_block; iblk; iblk = iblk->next)
1846 {
1847 register int i;
1848
1849 for (i = 0; i < lim; i++)
1850 {
1851 if (! XMARKBIT (iblk->intervals[i].plist))
1852 {
1853 iblk->intervals[i].parent = interval_free_list;
1854 interval_free_list = &iblk->intervals[i];
1855 num_free++;
1856 }
1857 else
1858 {
1859 num_used++;
1860 XUNMARK (iblk->intervals[i].plist);
1861 }
1862 }
1863 lim = INTERVAL_BLOCK_SIZE;
1864 }
1865 total_intervals = num_used;
1866 total_free_intervals = num_free;
1867 }
1868 #endif /* USE_TEXT_PROPERTIES */
1869
1870 /* Put all unmarked symbols on free list */
1871 {
1872 register struct symbol_block *sblk;
1873 register int lim = symbol_block_index;
1874 register int num_free = 0, num_used = 0;
1875
1876 symbol_free_list = 0;
1877
1878 for (sblk = symbol_block; sblk; sblk = sblk->next)
1879 {
1880 register int i;
1881 for (i = 0; i < lim; i++)
1882 if (!XMARKBIT (sblk->symbols[i].plist))
1883 {
1884 *(struct Lisp_Symbol **)&sblk->symbols[i].value = symbol_free_list;
1885 symbol_free_list = &sblk->symbols[i];
1886 num_free++;
1887 }
1888 else
1889 {
1890 num_used++;
1891 sblk->symbols[i].name
1892 = XSTRING (*(Lisp_Object *) &sblk->symbols[i].name);
1893 XUNMARK (sblk->symbols[i].plist);
1894 }
1895 lim = SYMBOL_BLOCK_SIZE;
1896 }
1897 total_symbols = num_used;
1898 total_free_symbols = num_free;
1899 }
1900
1901 #ifndef standalone
1902 /* Put all unmarked markers on free list.
1903 Dechain each one first from the buffer it points into,
1904 but only if it's a real marker. */
1905 {
1906 register struct marker_block *mblk;
1907 register int lim = marker_block_index;
1908 register int num_free = 0, num_used = 0;
1909
1910 marker_free_list = 0;
1911
1912 for (mblk = marker_block; mblk; mblk = mblk->next)
1913 {
1914 register int i;
1915 for (i = 0; i < lim; i++)
1916 {
1917 Lisp_Object *markword;
1918 switch (mblk->markers[i].type)
1919 {
1920 case Lisp_Misc_Marker:
1921 markword = &mblk->markers[i].u_marker.chain;
1922 break;
1923 case Lisp_Misc_Buffer_Local_Value:
1924 case Lisp_Misc_Some_Buffer_Local_Value:
1925 markword = &mblk->markers[i].u_buffer_local_value.car;
1926 break;
1927 case Lisp_Misc_Overlay:
1928 markword = &mblk->markers[i].u_overlay.plist;
1929 break;
1930 default:
1931 markword = 0;
1932 break;
1933 }
1934 if (markword && !XMARKBIT (*markword))
1935 {
1936 Lisp_Object tem;
1937 if (mblk->markers[i].type == Lisp_Misc_Marker)
1938 {
1939 /* tem1 avoids Sun compiler bug */
1940 struct Lisp_Marker *tem1 = &mblk->markers[i].u_marker;
1941 XSETMARKER (tem, tem1);
1942 unchain_marker (tem);
1943 }
1944 /* We could leave the type alone, since nobody checks it,
1945 but this might catch bugs faster. */
1946 mblk->markers[i].type = Lisp_Misc_Free;
1947 mblk->markers[i].u_free.chain = marker_free_list;
1948 marker_free_list = &mblk->markers[i];
1949 num_free++;
1950 }
1951 else
1952 {
1953 num_used++;
1954 if (markword)
1955 XUNMARK (*markword);
1956 }
1957 }
1958 lim = MARKER_BLOCK_SIZE;
1959 }
1960
1961 total_markers = num_used;
1962 total_free_markers = num_free;
1963 }
1964
1965 /* Free all unmarked buffers */
1966 {
1967 register struct buffer *buffer = all_buffers, *prev = 0, *next;
1968
1969 while (buffer)
1970 if (!XMARKBIT (buffer->name))
1971 {
1972 if (prev)
1973 prev->next = buffer->next;
1974 else
1975 all_buffers = buffer->next;
1976 next = buffer->next;
1977 xfree (buffer);
1978 buffer = next;
1979 }
1980 else
1981 {
1982 XUNMARK (buffer->name);
1983 UNMARK_BALANCE_INTERVALS (buffer->intervals);
1984
1985 #if 0
1986 /* Each `struct Lisp_String *' was turned into a Lisp_Object
1987 for purposes of marking and relocation.
1988 Turn them back into C pointers now. */
1989 buffer->upcase_table
1990 = XSTRING (*(Lisp_Object *)&buffer->upcase_table);
1991 buffer->downcase_table
1992 = XSTRING (*(Lisp_Object *)&buffer->downcase_table);
1993 buffer->sort_table
1994 = XSTRING (*(Lisp_Object *)&buffer->sort_table);
1995 buffer->folding_sort_table
1996 = XSTRING (*(Lisp_Object *)&buffer->folding_sort_table);
1997 #endif
1998
1999 prev = buffer, buffer = buffer->next;
2000 }
2001 }
2002
2003 #endif /* standalone */
2004
2005 /* Free all unmarked vectors */
2006 {
2007 register struct Lisp_Vector *vector = all_vectors, *prev = 0, *next;
2008 total_vector_size = 0;
2009
2010 while (vector)
2011 if (!(vector->size & ARRAY_MARK_FLAG))
2012 {
2013 if (prev)
2014 prev->next = vector->next;
2015 else
2016 all_vectors = vector->next;
2017 next = vector->next;
2018 xfree (vector);
2019 vector = next;
2020 }
2021 else
2022 {
2023 vector->size &= ~ARRAY_MARK_FLAG;
2024 total_vector_size += vector->size;
2025 prev = vector, vector = vector->next;
2026 }
2027 }
2028
2029 /* Free all "large strings" not marked with ARRAY_MARK_FLAG. */
2030 {
2031 register struct string_block *sb = large_string_blocks, *prev = 0, *next;
2032 struct Lisp_String *s;
2033
2034 while (sb)
2035 {
2036 s = (struct Lisp_String *) &sb->chars[0];
2037 if (s->size & ARRAY_MARK_FLAG)
2038 {
2039 ((struct Lisp_String *)(&sb->chars[0]))->size
2040 &= ~ARRAY_MARK_FLAG & ~MARKBIT;
2041 UNMARK_BALANCE_INTERVALS (s->intervals);
2042 total_string_size += ((struct Lisp_String *)(&sb->chars[0]))->size;
2043 prev = sb, sb = sb->next;
2044 }
2045 else
2046 {
2047 if (prev)
2048 prev->next = sb->next;
2049 else
2050 large_string_blocks = sb->next;
2051 next = sb->next;
2052 xfree (sb);
2053 sb = next;
2054 }
2055 }
2056 }
2057 }
2058 \f
2059 /* Compactify strings, relocate references, and free empty string blocks. */
2060
2061 static void
2062 compact_strings ()
2063 {
2064 /* String block of old strings we are scanning. */
2065 register struct string_block *from_sb;
2066 /* A preceding string block (or maybe the same one)
2067 where we are copying the still-live strings to. */
2068 register struct string_block *to_sb;
2069 int pos;
2070 int to_pos;
2071
2072 to_sb = first_string_block;
2073 to_pos = 0;
2074
2075 /* Scan each existing string block sequentially, string by string. */
2076 for (from_sb = first_string_block; from_sb; from_sb = from_sb->next)
2077 {
2078 pos = 0;
2079 /* POS is the index of the next string in the block. */
2080 while (pos < from_sb->pos)
2081 {
2082 register struct Lisp_String *nextstr
2083 = (struct Lisp_String *) &from_sb->chars[pos];
2084
2085 register struct Lisp_String *newaddr;
2086 register EMACS_INT size = nextstr->size;
2087
2088 /* NEXTSTR is the old address of the next string.
2089 Just skip it if it isn't marked. */
2090 if ((EMACS_UINT) size > STRING_BLOCK_SIZE)
2091 {
2092 /* It is marked, so its size field is really a chain of refs.
2093 Find the end of the chain, where the actual size lives. */
2094 while ((EMACS_UINT) size > STRING_BLOCK_SIZE)
2095 {
2096 if (size & 1) size ^= MARKBIT | 1;
2097 size = *(EMACS_INT *)size & ~MARKBIT;
2098 }
2099
2100 total_string_size += size;
2101
2102 /* If it won't fit in TO_SB, close it out,
2103 and move to the next sb. Keep doing so until
2104 TO_SB reaches a large enough, empty enough string block.
2105 We know that TO_SB cannot advance past FROM_SB here
2106 since FROM_SB is large enough to contain this string.
2107 Any string blocks skipped here
2108 will be patched out and freed later. */
2109 while (to_pos + STRING_FULLSIZE (size)
2110 > max (to_sb->pos, STRING_BLOCK_SIZE))
2111 {
2112 to_sb->pos = to_pos;
2113 to_sb = to_sb->next;
2114 to_pos = 0;
2115 }
2116 /* Compute new address of this string
2117 and update TO_POS for the space being used. */
2118 newaddr = (struct Lisp_String *) &to_sb->chars[to_pos];
2119 to_pos += STRING_FULLSIZE (size);
2120
2121 /* Copy the string itself to the new place. */
2122 if (nextstr != newaddr)
2123 bcopy (nextstr, newaddr, size + 1 + sizeof (EMACS_INT)
2124 + INTERVAL_PTR_SIZE);
2125
2126 /* Go through NEXTSTR's chain of references
2127 and make each slot in the chain point to
2128 the new address of this string. */
2129 size = newaddr->size;
2130 while ((EMACS_UINT) size > STRING_BLOCK_SIZE)
2131 {
2132 register Lisp_Object *objptr;
2133 if (size & 1) size ^= MARKBIT | 1;
2134 objptr = (Lisp_Object *)size;
2135
2136 size = XFASTINT (*objptr) & ~MARKBIT;
2137 if (XMARKBIT (*objptr))
2138 {
2139 XSETSTRING (*objptr, newaddr);
2140 XMARK (*objptr);
2141 }
2142 else
2143 XSETSTRING (*objptr, newaddr);
2144 }
2145 /* Store the actual size in the size field. */
2146 newaddr->size = size;
2147
2148 #ifdef USE_TEXT_PROPERTIES
2149 /* Now that the string has been relocated, rebalance its
2150 interval tree, and update the tree's parent pointer. */
2151 if (! NULL_INTERVAL_P (newaddr->intervals))
2152 {
2153 UNMARK_BALANCE_INTERVALS (newaddr->intervals);
2154 XSETSTRING (* (Lisp_Object *) &newaddr->intervals->parent,
2155 newaddr);
2156 }
2157 #endif /* USE_TEXT_PROPERTIES */
2158 }
2159 pos += STRING_FULLSIZE (size);
2160 }
2161 }
2162
2163 /* Close out the last string block still used and free any that follow. */
2164 to_sb->pos = to_pos;
2165 current_string_block = to_sb;
2166
2167 from_sb = to_sb->next;
2168 to_sb->next = 0;
2169 while (from_sb)
2170 {
2171 to_sb = from_sb->next;
2172 xfree (from_sb);
2173 from_sb = to_sb;
2174 }
2175
2176 /* Free any empty string blocks further back in the chain.
2177 This loop will never free first_string_block, but it is very
2178 unlikely that that one will become empty, so why bother checking? */
2179
2180 from_sb = first_string_block;
2181 while (to_sb = from_sb->next)
2182 {
2183 if (to_sb->pos == 0)
2184 {
2185 if (from_sb->next = to_sb->next)
2186 from_sb->next->prev = from_sb;
2187 xfree (to_sb);
2188 }
2189 else
2190 from_sb = to_sb;
2191 }
2192 }
2193 \f
2194 /* Debugging aids. */
2195
2196 DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, 0,
2197 "Return the address of the last byte Emacs has allocated, divided by 1024.\n\
2198 This may be helpful in debugging Emacs's memory usage.\n\
2199 We divide the value by 1024 to make sure it fits in a Lisp integer.")
2200 ()
2201 {
2202 Lisp_Object end;
2203
2204 XSETINT (end, (EMACS_INT) sbrk (0) / 1024);
2205
2206 return end;
2207 }
2208
2209 \f
2210 /* Initialization */
2211
2212 init_alloc_once ()
2213 {
2214 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
2215 pureptr = 0;
2216 #ifdef HAVE_SHM
2217 pure_size = PURESIZE;
2218 #endif
2219 all_vectors = 0;
2220 ignore_warnings = 1;
2221 init_strings ();
2222 init_cons ();
2223 init_symbol ();
2224 init_marker ();
2225 #ifdef LISP_FLOAT_TYPE
2226 init_float ();
2227 #endif /* LISP_FLOAT_TYPE */
2228 INIT_INTERVALS;
2229
2230 ignore_warnings = 0;
2231 gcprolist = 0;
2232 staticidx = 0;
2233 consing_since_gc = 0;
2234 gc_cons_threshold = 100000;
2235 #ifdef VIRT_ADDR_VARIES
2236 malloc_sbrk_unused = 1<<22; /* A large number */
2237 malloc_sbrk_used = 100000; /* as reasonable as any number */
2238 #endif /* VIRT_ADDR_VARIES */
2239 }
2240
2241 init_alloc ()
2242 {
2243 gcprolist = 0;
2244 }
2245
2246 void
2247 syms_of_alloc ()
2248 {
2249 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold,
2250 "*Number of bytes of consing between garbage collections.\n\
2251 Garbage collection can happen automatically once this many bytes have been\n\
2252 allocated since the last garbage collection. All data types count.\n\n\
2253 Garbage collection happens automatically only when `eval' is called.\n\n\
2254 By binding this temporarily to a large number, you can effectively\n\
2255 prevent garbage collection during a part of the program.");
2256
2257 DEFVAR_INT ("pure-bytes-used", &pureptr,
2258 "Number of bytes of sharable Lisp data allocated so far.");
2259
2260 #if 0
2261 DEFVAR_INT ("data-bytes-used", &malloc_sbrk_used,
2262 "Number of bytes of unshared memory allocated in this session.");
2263
2264 DEFVAR_INT ("data-bytes-free", &malloc_sbrk_unused,
2265 "Number of bytes of unshared memory remaining available in this session.");
2266 #endif
2267
2268 DEFVAR_LISP ("purify-flag", &Vpurify_flag,
2269 "Non-nil means loading Lisp code in order to dump an executable.\n\
2270 This means that certain objects should be allocated in shared (pure) space.");
2271
2272 DEFVAR_INT ("undo-limit", &undo_limit,
2273 "Keep no more undo information once it exceeds this size.\n\
2274 This limit is applied when garbage collection happens.\n\
2275 The size is counted as the number of bytes occupied,\n\
2276 which includes both saved text and other data.");
2277 undo_limit = 20000;
2278
2279 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit,
2280 "Don't keep more than this much size of undo information.\n\
2281 A command which pushes past this size is itself forgotten.\n\
2282 This limit is applied when garbage collection happens.\n\
2283 The size is counted as the number of bytes occupied,\n\
2284 which includes both saved text and other data.");
2285 undo_strong_limit = 30000;
2286
2287 /* We build this in advance because if we wait until we need it, we might
2288 not be able to allocate the memory to hold it. */
2289 memory_signal_data
2290 = Fcons (Qerror, Fcons (build_string ("Memory exhausted"), Qnil));
2291 staticpro (&memory_signal_data);
2292
2293 defsubr (&Scons);
2294 defsubr (&Slist);
2295 defsubr (&Svector);
2296 defsubr (&Smake_byte_code);
2297 defsubr (&Smake_list);
2298 defsubr (&Smake_vector);
2299 defsubr (&Smake_string);
2300 defsubr (&Smake_symbol);
2301 defsubr (&Smake_marker);
2302 defsubr (&Spurecopy);
2303 defsubr (&Sgarbage_collect);
2304 defsubr (&Smemory_limit);
2305 }