(mark_object): Mark the menu_bar_items field.
[bpt/emacs.git] / src / alloc.c
1 /* Storage allocation and gc for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 1986, 1988, 1992, 1993 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 #include "config.h"
22 #include "lisp.h"
23 #include "intervals.h"
24 #include "puresize.h"
25 #ifndef standalone
26 #include "buffer.h"
27 #include "window.h"
28 #include "frame.h"
29 #endif
30
31 #include "syssignal.h"
32
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) \
40 do \
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 */
52 int consing_since_gc;
53
54 /* Number of bytes of consing since gc before another gc should be done. */
55 int gc_cons_threshold;
56
57 /* Nonzero during gc */
58 int gc_in_progress;
59
60 #ifndef VIRT_ADDR_VARIES
61 extern
62 #endif /* VIRT_ADDR_VARIES */
63 int malloc_sbrk_used;
64
65 #ifndef VIRT_ADDR_VARIES
66 extern
67 #endif /* VIRT_ADDR_VARIES */
68 int malloc_sbrk_unused;
69
70 /* Two limits controlling how much undo information to keep. */
71 int undo_limit;
72 int undo_strong_limit;
73
74 /* Non-nil means defun should do purecopy on the function definition */
75 Lisp_Object Vpurify_flag;
76
77 #ifndef HAVE_SHM
78 int 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
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. */
90 int pure_size;
91 #endif /* not HAVE_SHM */
92
93 /* Index in pure at which next pure object will be allocated. */
94 int pureptr;
95
96 /* If nonzero, this is a warning delivered by malloc and not yet displayed. */
97 char *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
107 char *stack_copy;
108 int stack_copy_size;
109
110 /* Non-zero means ignore malloc warnings. Set during initialization. */
111 int ignore_warnings;
112
113 static void mark_object (), mark_buffer ();
114 static void clear_marks (), gc_sweep ();
115 static void compact_strings ();
116 \f
117 /* Versions of malloc and realloc that print warnings as memory gets full. */
118
119 Lisp_Object
120 malloc_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 */
131 malloc_warning (str)
132 char *str;
133 {
134 pending_malloc_warning = str;
135 }
136
137 display_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 */
147 memory_full ()
148 {
149 error ("Memory exhausted");
150 }
151
152 /* like malloc and realloc but check for no memory left */
153
154 long *
155 xmalloc (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
166 long *
167 xrealloc (block, size)
168 long *block;
169 int size;
170 {
171 register long *val;
172
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);
177 else
178 val = (long *) realloc (block, size);
179
180 if (!val && size) memory_full ();
181 return val;
182 }
183 \f
184 /* Interval allocation. */
185
186 #ifdef USE_TEXT_PROPERTIES
187 #define INTERVAL_BLOCK_SIZE \
188 ((1020 - sizeof (struct interval_block *)) / sizeof (struct interval))
189
190 struct interval_block
191 {
192 struct interval_block *next;
193 struct interval intervals[INTERVAL_BLOCK_SIZE];
194 };
195
196 struct interval_block *interval_block;
197 static int interval_block_index;
198
199 INTERVAL interval_free_list;
200
201 static void
202 init_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
214 INTERVAL
215 make_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
246 static int total_free_intervals, total_intervals;
247
248 /* Mark the pointers of one interval. */
249
250 static void
251 mark_interval (i, dummy)
252 register INTERVAL i;
253 Lisp_Object dummy;
254 {
255 if (XMARKBIT (i->plist))
256 abort ();
257 mark_object (&i->plist);
258 XMARK (i->plist);
259 }
260
261 static void
262 mark_interval_tree (tree)
263 register INTERVAL tree;
264 {
265 if (XMARKBIT (tree->plist))
266 return;
267
268 traverse_intervals (tree, 1, 0, mark_interval, Qnil);
269 }
270
271 #define MARK_INTERVAL_TREE(i) \
272 { if (!NULL_INTERVAL_P (i)) mark_interval_tree (i); }
273
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 } \
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
295 /* Floating point allocation. */
296
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
311 struct float_block
312 {
313 struct float_block *next;
314 struct Lisp_Float floats[FLOAT_BLOCK_SIZE];
315 };
316
317 struct float_block *float_block;
318 int float_block_index;
319
320 struct Lisp_Float *float_free_list;
321
322 void
323 init_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. */
333 free_float (ptr)
334 struct Lisp_Float *ptr;
335 {
336 XFASTINT (ptr->type) = (int) float_free_list;
337 float_free_list = ptr;
338 }
339
340 Lisp_Object
341 make_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
385 struct cons_block
386 {
387 struct cons_block *next;
388 struct Lisp_Cons conses[CONS_BLOCK_SIZE];
389 };
390
391 struct cons_block *cons_block;
392 int cons_block_index;
393
394 struct Lisp_Cons *cons_free_list;
395
396 void
397 init_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. */
407 free_cons (ptr)
408 struct Lisp_Cons *ptr;
409 {
410 XFASTINT (ptr->car) = (int) cons_free_list;
411 cons_free_list = ptr;
412 }
413
414 DEFUN ("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
445 DEFUN ("list", Flist, Slist, 0, MANY, 0,
446 "Return a newly created list with specified arguments as elements.\n\
447 Any 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;
457 while (!NILP (val_tail))
458 {
459 XCONS (val_tail)->car = *args++;
460 val_tail = XCONS (val_tail)->cdr;
461 }
462 return val;
463 }
464
465 DEFUN ("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
485 struct Lisp_Vector *all_vectors;
486
487 DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0,
488 "Return a newly created vector of length LENGTH, with each element being INIT.\n\
489 See 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
519 DEFUN ("vector", Fvector, Svector, 0, MANY, 0,
520 "Return a newly created vector with specified arguments as elements.\n\
521 Any 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
538 DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0,
539 "Create a byte-code object with specified arguments as elements.\n\
540 The arguments should be the arglist, bytecode-string, constant vector,\n\
541 stack size, (optional) doc string, and (optional) interactive spec.\n\
542 The first four arguments are required; at most six have any\n\
543 significance.")
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;
553 if (!NILP (Vpurify_flag))
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 {
560 if (!NILP (Vpurify_flag))
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
578 struct symbol_block
579 {
580 struct symbol_block *next;
581 struct Lisp_Symbol symbols[SYMBOL_BLOCK_SIZE];
582 };
583
584 struct symbol_block *symbol_block;
585 int symbol_block_index;
586
587 struct Lisp_Symbol *symbol_free_list;
588
589 void
590 init_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
599 DEFUN ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0,
600 "Return a newly allocated uninterned symbol whose name is NAME.\n\
601 Its 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
645 struct marker_block
646 {
647 struct marker_block *next;
648 struct Lisp_Marker markers[MARKER_BLOCK_SIZE];
649 };
650
651 struct marker_block *marker_block;
652 int marker_block_index;
653
654 struct Lisp_Marker *marker_free_list;
655
656 void
657 init_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
666 DEFUN ("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;
672
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
724 struct string_block_head
725 {
726 struct string_block *next, *prev;
727 int pos;
728 };
729
730 struct 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
739 struct string_block *current_string_block;
740
741 /* This points to the oldest string block, the one that starts the chain. */
742
743 struct string_block *first_string_block;
744
745 /* Last string block in chain of those made for individual large strings. */
746
747 struct 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
761 void
762 init_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
773 DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0,
774 "Return a newly created string of length LENGTH, with each element being INIT.\n\
775 Both 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
795 Lisp_Object
796 make_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
806 Lisp_Object
807 build_string (str)
808 char *str;
809 {
810 return make_string (str, strlen (str));
811 }
812
813 Lisp_Object
814 make_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;
862 INITIALIZE_INTERVAL (XSTRING (val), NULL_INTERVAL);
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 that can fit
869 in a string of events, make a string; otherwise, make a vector.
870
871 Any number of arguments, even zero arguments, are allowed. */
872
873 Lisp_Object
874 make_event_array (nargs, args)
875 register int nargs;
876 Lisp_Object *args;
877 {
878 int i;
879
880 for (i = 0; i < nargs; i++)
881 /* The things that fit in a string
882 are characters that are in 0...127 after discarding the meta bit. */
883 if (XTYPE (args[i]) != Lisp_Int
884 || (XUINT (args[i]) & ~CHAR_META) >= 0200)
885 return Fvector (nargs, args);
886
887 /* Since the loop exited, we know that all the things in it are
888 characters, so we can make a string. */
889 {
890 Lisp_Object result = Fmake_string (nargs, make_number (0));
891
892 for (i = 0; i < nargs; i++)
893 {
894 XSTRING (result)->data[i] = XINT (args[i]);
895 /* Move the meta bit to the right place for a string char. */
896 if (XINT (args[i]) & CHAR_META)
897 XSTRING (result)->data[i] |= 0x80;
898 }
899
900 return result;
901 }
902 }
903 \f
904 /* Pure storage management. */
905
906 /* Must get an error if pure storage is full,
907 since if it cannot hold a large string
908 it may be able to hold conses that point to that string;
909 then the string is not protected from gc. */
910
911 Lisp_Object
912 make_pure_string (data, length)
913 char *data;
914 int length;
915 {
916 register Lisp_Object new;
917 register int size = sizeof (int) + INTERVAL_PTR_SIZE + length + 1;
918
919 if (pureptr + size > PURESIZE)
920 error ("Pure Lisp storage exhausted");
921 XSET (new, Lisp_String, PUREBEG + pureptr);
922 XSTRING (new)->size = length;
923 bcopy (data, XSTRING (new)->data, length);
924 XSTRING (new)->data[length] = 0;
925 pureptr += (size + sizeof (int) - 1)
926 / sizeof (int) * sizeof (int);
927 return new;
928 }
929
930 Lisp_Object
931 pure_cons (car, cdr)
932 Lisp_Object car, cdr;
933 {
934 register Lisp_Object new;
935
936 if (pureptr + sizeof (struct Lisp_Cons) > PURESIZE)
937 error ("Pure Lisp storage exhausted");
938 XSET (new, Lisp_Cons, PUREBEG + pureptr);
939 pureptr += sizeof (struct Lisp_Cons);
940 XCONS (new)->car = Fpurecopy (car);
941 XCONS (new)->cdr = Fpurecopy (cdr);
942 return new;
943 }
944
945 #ifdef LISP_FLOAT_TYPE
946
947 Lisp_Object
948 make_pure_float (num)
949 double num;
950 {
951 register Lisp_Object new;
952
953 /* Make sure that PUREBEG + pureptr is aligned on at least a sizeof
954 (double) boundary. Some architectures (like the sparc) require
955 this, and I suspect that floats are rare enough that it's no
956 tragedy for those that do. */
957 {
958 int alignment;
959 char *p = PUREBEG + pureptr;
960
961 #ifdef __GNUC__
962 #if __GNUC__ >= 2
963 alignment = __alignof (struct Lisp_Float);
964 #else
965 alignment = sizeof (struct Lisp_Float);
966 #endif
967 #else
968 alignment = sizeof (struct Lisp_Float);
969 #endif
970 p = (char *) (((unsigned long) p + alignment - 1) & - alignment);
971 pureptr = p - PUREBEG;
972 }
973
974 if (pureptr + sizeof (struct Lisp_Float) > PURESIZE)
975 error ("Pure Lisp storage exhausted");
976 XSET (new, Lisp_Float, PUREBEG + pureptr);
977 pureptr += sizeof (struct Lisp_Float);
978 XFLOAT (new)->data = num;
979 XFLOAT (new)->type = 0; /* bug chasing -wsr */
980 return new;
981 }
982
983 #endif /* LISP_FLOAT_TYPE */
984
985 Lisp_Object
986 make_pure_vector (len)
987 int len;
988 {
989 register Lisp_Object new;
990 register int size = sizeof (struct Lisp_Vector) + (len - 1) * sizeof (Lisp_Object);
991
992 if (pureptr + size > PURESIZE)
993 error ("Pure Lisp storage exhausted");
994
995 XSET (new, Lisp_Vector, PUREBEG + pureptr);
996 pureptr += size;
997 XVECTOR (new)->size = len;
998 return new;
999 }
1000
1001 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
1002 "Make a copy of OBJECT in pure storage.\n\
1003 Recursively copies contents of vectors and cons cells.\n\
1004 Does not copy symbols.")
1005 (obj)
1006 register Lisp_Object obj;
1007 {
1008 register Lisp_Object new, tem;
1009 register int i;
1010
1011 if (NILP (Vpurify_flag))
1012 return obj;
1013
1014 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1015 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1016 return obj;
1017
1018 #ifdef SWITCH_ENUM_BUG
1019 switch ((int) XTYPE (obj))
1020 #else
1021 switch (XTYPE (obj))
1022 #endif
1023 {
1024 case Lisp_Marker:
1025 error ("Attempt to copy a marker to pure storage");
1026
1027 case Lisp_Cons:
1028 return pure_cons (XCONS (obj)->car, XCONS (obj)->cdr);
1029
1030 #ifdef LISP_FLOAT_TYPE
1031 case Lisp_Float:
1032 return make_pure_float (XFLOAT (obj)->data);
1033 #endif /* LISP_FLOAT_TYPE */
1034
1035 case Lisp_String:
1036 return make_pure_string (XSTRING (obj)->data, XSTRING (obj)->size);
1037
1038 case Lisp_Compiled:
1039 case Lisp_Vector:
1040 new = make_pure_vector (XVECTOR (obj)->size);
1041 for (i = 0; i < XVECTOR (obj)->size; i++)
1042 {
1043 tem = XVECTOR (obj)->contents[i];
1044 XVECTOR (new)->contents[i] = Fpurecopy (tem);
1045 }
1046 XSETTYPE (new, XTYPE (obj));
1047 return new;
1048
1049 default:
1050 return obj;
1051 }
1052 }
1053 \f
1054 /* Recording what needs to be marked for gc. */
1055
1056 struct gcpro *gcprolist;
1057
1058 #define NSTATICS 512
1059
1060 Lisp_Object *staticvec[NSTATICS] = {0};
1061
1062 int staticidx = 0;
1063
1064 /* Put an entry in staticvec, pointing at the variable whose address is given */
1065
1066 void
1067 staticpro (varaddress)
1068 Lisp_Object *varaddress;
1069 {
1070 staticvec[staticidx++] = varaddress;
1071 if (staticidx >= NSTATICS)
1072 abort ();
1073 }
1074
1075 struct catchtag
1076 {
1077 Lisp_Object tag;
1078 Lisp_Object val;
1079 struct catchtag *next;
1080 /* jmp_buf jmp; /* We don't need this for GC purposes */
1081 };
1082
1083 struct backtrace
1084 {
1085 struct backtrace *next;
1086 Lisp_Object *function;
1087 Lisp_Object *args; /* Points to vector of args. */
1088 int nargs; /* length of vector */
1089 /* if nargs is UNEVALLED, args points to slot holding list of unevalled args */
1090 char evalargs;
1091 };
1092
1093 /* Two flags that are set during GC in the `size' component
1094 of a string or vector. On some machines, these flags
1095 are defined by the m- file to be different bits. */
1096
1097 /* On vector, means it has been marked.
1098 On string size field or a reference to a string,
1099 means not the last reference in the chain. */
1100
1101 #ifndef ARRAY_MARK_FLAG
1102 #define ARRAY_MARK_FLAG ((MARKBIT >> 1) & ~MARKBIT)
1103 #endif /* no ARRAY_MARK_FLAG */
1104
1105 /* Any slot that is a Lisp_Object can point to a string
1106 and thus can be put on a string's reference-chain
1107 and thus may need to have its ARRAY_MARK_FLAG set.
1108 This includes the slots whose markbits are used to mark
1109 the containing objects. */
1110
1111 #if ARRAY_MARK_FLAG == MARKBIT
1112 you lose
1113 #endif
1114 \f
1115 /* Garbage collection! */
1116
1117 int total_conses, total_markers, total_symbols, total_string_size, total_vector_size;
1118 int total_free_conses, total_free_markers, total_free_symbols;
1119 #ifdef LISP_FLOAT_TYPE
1120 int total_free_floats, total_floats;
1121 #endif /* LISP_FLOAT_TYPE */
1122
1123 DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "",
1124 "Reclaim storage for Lisp objects no longer needed.\n\
1125 Returns info on amount of space in use:\n\
1126 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)\n\
1127 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS\n\
1128 (USED-FLOATS . FREE-FLOATS))\n\
1129 Garbage collection happens automatically if you cons more than\n\
1130 `gc-cons-threshold' bytes of Lisp data since previous garbage collection.")
1131 ()
1132 {
1133 register struct gcpro *tail;
1134 register struct specbinding *bind;
1135 struct catchtag *catch;
1136 struct handler *handler;
1137 register struct backtrace *backlist;
1138 register Lisp_Object tem;
1139 char *omessage = echo_area_glyphs;
1140 char stack_top_variable;
1141 register int i;
1142
1143 /* Save a copy of the contents of the stack, for debugging. */
1144 #if MAX_SAVE_STACK > 0
1145 if (NILP (Vpurify_flag))
1146 {
1147 i = &stack_top_variable - stack_bottom;
1148 if (i < 0) i = -i;
1149 if (i < MAX_SAVE_STACK)
1150 {
1151 if (stack_copy == 0)
1152 stack_copy = (char *) malloc (stack_copy_size = i);
1153 else if (stack_copy_size < i)
1154 stack_copy = (char *) realloc (stack_copy, (stack_copy_size = i));
1155 if (stack_copy)
1156 {
1157 if ((int) (&stack_top_variable - stack_bottom) > 0)
1158 bcopy (stack_bottom, stack_copy, i);
1159 else
1160 bcopy (&stack_top_variable, stack_copy, i);
1161 }
1162 }
1163 }
1164 #endif /* MAX_SAVE_STACK > 0 */
1165
1166 if (!noninteractive)
1167 message1 ("Garbage collecting...");
1168
1169 /* Don't keep command history around forever */
1170 tem = Fnthcdr (make_number (30), Vcommand_history);
1171 if (CONSP (tem))
1172 XCONS (tem)->cdr = Qnil;
1173
1174 /* Likewise for undo information. */
1175 {
1176 register struct buffer *nextb = all_buffers;
1177
1178 while (nextb)
1179 {
1180 /* If a buffer's undo list is Qt, that means that undo is
1181 turned off in that buffer. Calling truncate_undo_list on
1182 Qt tends to return NULL, which effectively turns undo back on.
1183 So don't call truncate_undo_list if undo_list is Qt. */
1184 if (! EQ (nextb->undo_list, Qt))
1185 nextb->undo_list
1186 = truncate_undo_list (nextb->undo_list, undo_limit,
1187 undo_strong_limit);
1188 nextb = nextb->next;
1189 }
1190 }
1191
1192 gc_in_progress = 1;
1193
1194 /* clear_marks (); */
1195
1196 /* In each "large string", set the MARKBIT of the size field.
1197 That enables mark_object to recognize them. */
1198 {
1199 register struct string_block *b;
1200 for (b = large_string_blocks; b; b = b->next)
1201 ((struct Lisp_String *)(&b->chars[0]))->size |= MARKBIT;
1202 }
1203
1204 /* Mark all the special slots that serve as the roots of accessibility.
1205
1206 Usually the special slots to mark are contained in particular structures.
1207 Then we know no slot is marked twice because the structures don't overlap.
1208 In some cases, the structures point to the slots to be marked.
1209 For these, we use MARKBIT to avoid double marking of the slot. */
1210
1211 for (i = 0; i < staticidx; i++)
1212 mark_object (staticvec[i]);
1213 for (tail = gcprolist; tail; tail = tail->next)
1214 for (i = 0; i < tail->nvars; i++)
1215 if (!XMARKBIT (tail->var[i]))
1216 {
1217 mark_object (&tail->var[i]);
1218 XMARK (tail->var[i]);
1219 }
1220 for (bind = specpdl; bind != specpdl_ptr; bind++)
1221 {
1222 mark_object (&bind->symbol);
1223 mark_object (&bind->old_value);
1224 }
1225 for (catch = catchlist; catch; catch = catch->next)
1226 {
1227 mark_object (&catch->tag);
1228 mark_object (&catch->val);
1229 }
1230 for (handler = handlerlist; handler; handler = handler->next)
1231 {
1232 mark_object (&handler->handler);
1233 mark_object (&handler->var);
1234 }
1235 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1236 {
1237 if (!XMARKBIT (*backlist->function))
1238 {
1239 mark_object (backlist->function);
1240 XMARK (*backlist->function);
1241 }
1242 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1243 i = 0;
1244 else
1245 i = backlist->nargs - 1;
1246 for (; i >= 0; i--)
1247 if (!XMARKBIT (backlist->args[i]))
1248 {
1249 mark_object (&backlist->args[i]);
1250 XMARK (backlist->args[i]);
1251 }
1252 }
1253
1254 gc_sweep ();
1255
1256 /* Clear the mark bits that we set in certain root slots. */
1257
1258 for (tail = gcprolist; tail; tail = tail->next)
1259 for (i = 0; i < tail->nvars; i++)
1260 XUNMARK (tail->var[i]);
1261 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1262 {
1263 XUNMARK (*backlist->function);
1264 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1265 i = 0;
1266 else
1267 i = backlist->nargs - 1;
1268 for (; i >= 0; i--)
1269 XUNMARK (backlist->args[i]);
1270 }
1271 XUNMARK (buffer_defaults.name);
1272 XUNMARK (buffer_local_symbols.name);
1273
1274 /* clear_marks (); */
1275 gc_in_progress = 0;
1276
1277 consing_since_gc = 0;
1278 if (gc_cons_threshold < 10000)
1279 gc_cons_threshold = 10000;
1280
1281 if (omessage)
1282 message1 (omessage);
1283 else if (!noninteractive)
1284 message1 ("Garbage collecting...done");
1285
1286 return Fcons (Fcons (make_number (total_conses),
1287 make_number (total_free_conses)),
1288 Fcons (Fcons (make_number (total_symbols),
1289 make_number (total_free_symbols)),
1290 Fcons (Fcons (make_number (total_markers),
1291 make_number (total_free_markers)),
1292 Fcons (make_number (total_string_size),
1293 Fcons (make_number (total_vector_size),
1294
1295 #ifdef LISP_FLOAT_TYPE
1296 Fcons (Fcons (make_number (total_floats),
1297 make_number (total_free_floats)),
1298 Qnil)
1299 #else /* not LISP_FLOAT_TYPE */
1300 Qnil
1301 #endif /* not LISP_FLOAT_TYPE */
1302 )))));
1303 }
1304 \f
1305 #if 0
1306 static void
1307 clear_marks ()
1308 {
1309 /* Clear marks on all conses */
1310 {
1311 register struct cons_block *cblk;
1312 register int lim = cons_block_index;
1313
1314 for (cblk = cons_block; cblk; cblk = cblk->next)
1315 {
1316 register int i;
1317 for (i = 0; i < lim; i++)
1318 XUNMARK (cblk->conses[i].car);
1319 lim = CONS_BLOCK_SIZE;
1320 }
1321 }
1322 /* Clear marks on all symbols */
1323 {
1324 register struct symbol_block *sblk;
1325 register int lim = symbol_block_index;
1326
1327 for (sblk = symbol_block; sblk; sblk = sblk->next)
1328 {
1329 register int i;
1330 for (i = 0; i < lim; i++)
1331 {
1332 XUNMARK (sblk->symbols[i].plist);
1333 }
1334 lim = SYMBOL_BLOCK_SIZE;
1335 }
1336 }
1337 /* Clear marks on all markers */
1338 {
1339 register struct marker_block *sblk;
1340 register int lim = marker_block_index;
1341
1342 for (sblk = marker_block; sblk; sblk = sblk->next)
1343 {
1344 register int i;
1345 for (i = 0; i < lim; i++)
1346 XUNMARK (sblk->markers[i].chain);
1347 lim = MARKER_BLOCK_SIZE;
1348 }
1349 }
1350 /* Clear mark bits on all buffers */
1351 {
1352 register struct buffer *nextb = all_buffers;
1353
1354 while (nextb)
1355 {
1356 XUNMARK (nextb->name);
1357 nextb = nextb->next;
1358 }
1359 }
1360 }
1361 #endif
1362 \f
1363 /* Mark reference to a Lisp_Object.
1364 If the object referred to has not been seen yet, recursively mark
1365 all the references contained in it.
1366
1367 If the object referenced is a short string, the referrencing slot
1368 is threaded into a chain of such slots, pointed to from
1369 the `size' field of the string. The actual string size
1370 lives in the last slot in the chain. We recognize the end
1371 because it is < (unsigned) STRING_BLOCK_SIZE. */
1372
1373 #define LAST_MARKED_SIZE 500
1374 Lisp_Object *last_marked[LAST_MARKED_SIZE];
1375 int last_marked_index;
1376
1377 static void
1378 mark_object (objptr)
1379 Lisp_Object *objptr;
1380 {
1381 register Lisp_Object obj;
1382
1383 obj = *objptr;
1384 XUNMARK (obj);
1385
1386 loop:
1387
1388 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1389 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1390 return;
1391
1392 last_marked[last_marked_index++] = objptr;
1393 if (last_marked_index == LAST_MARKED_SIZE)
1394 last_marked_index = 0;
1395
1396 #ifdef SWITCH_ENUM_BUG
1397 switch ((int) XGCTYPE (obj))
1398 #else
1399 switch (XGCTYPE (obj))
1400 #endif
1401 {
1402 case Lisp_String:
1403 {
1404 register struct Lisp_String *ptr = XSTRING (obj);
1405
1406 MARK_INTERVAL_TREE (ptr->intervals);
1407 if (ptr->size & MARKBIT)
1408 /* A large string. Just set ARRAY_MARK_FLAG. */
1409 ptr->size |= ARRAY_MARK_FLAG;
1410 else
1411 {
1412 /* A small string. Put this reference
1413 into the chain of references to it.
1414 The address OBJPTR is even, so if the address
1415 includes MARKBIT, put it in the low bit
1416 when we store OBJPTR into the size field. */
1417
1418 if (XMARKBIT (*objptr))
1419 {
1420 XFASTINT (*objptr) = ptr->size;
1421 XMARK (*objptr);
1422 }
1423 else
1424 XFASTINT (*objptr) = ptr->size;
1425 if ((int)objptr & 1) abort ();
1426 ptr->size = (int) objptr & ~MARKBIT;
1427 if ((int) objptr & MARKBIT)
1428 ptr->size ++;
1429 }
1430 }
1431 break;
1432
1433 case Lisp_Vector:
1434 case Lisp_Window:
1435 case Lisp_Process:
1436 case Lisp_Window_Configuration:
1437 {
1438 register struct Lisp_Vector *ptr = XVECTOR (obj);
1439 register int size = ptr->size;
1440 struct Lisp_Vector *volatile ptr1 = ptr;
1441 register int i;
1442
1443 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1444 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1445 for (i = 0; i < size; i++) /* and then mark its elements */
1446 {
1447 if (ptr != ptr1)
1448 abort ();
1449 mark_object (&ptr->contents[i]);
1450 }
1451 }
1452 break;
1453
1454 case Lisp_Compiled:
1455 /* We could treat this just like a vector, but it is better
1456 to save the COMPILED_CONSTANTS element for last and avoid recursion
1457 there. */
1458 {
1459 register struct Lisp_Vector *ptr = XVECTOR (obj);
1460 register int size = ptr->size;
1461 struct Lisp_Vector *volatile ptr1 = ptr;
1462 register int i;
1463
1464 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1465 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1466 for (i = 0; i < size; i++) /* and then mark its elements */
1467 {
1468 if (ptr != ptr1)
1469 abort ();
1470 if (i != COMPILED_CONSTANTS)
1471 mark_object (&ptr->contents[i]);
1472 }
1473 objptr = &ptr->contents[COMPILED_CONSTANTS];
1474 obj = *objptr;
1475 goto loop;
1476 }
1477
1478 #ifdef MULTI_FRAME
1479 case Lisp_Frame:
1480 {
1481 register struct frame *ptr = XFRAME (obj);
1482 register int size = ptr->size;
1483
1484 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1485 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1486
1487 mark_object (&ptr->name);
1488 mark_object (&ptr->focus_frame);
1489 mark_object (&ptr->width);
1490 mark_object (&ptr->height);
1491 mark_object (&ptr->selected_window);
1492 mark_object (&ptr->minibuffer_window);
1493 mark_object (&ptr->param_alist);
1494 mark_object (&ptr->scroll_bars);
1495 mark_object (&ptr->condemned_scroll_bars);
1496 mark_object (&ptr->menu_bar_items);
1497 }
1498 break;
1499 #endif /* not MULTI_FRAME */
1500
1501 case Lisp_Symbol:
1502 {
1503 register struct Lisp_Symbol *ptr = XSYMBOL (obj);
1504 struct Lisp_Symbol *ptrx;
1505
1506 if (XMARKBIT (ptr->plist)) break;
1507 XMARK (ptr->plist);
1508 mark_object ((Lisp_Object *) &ptr->value);
1509 mark_object (&ptr->function);
1510 mark_object (&ptr->plist);
1511 XSETTYPE (*(Lisp_Object *) &ptr->name, Lisp_String);
1512 mark_object (&ptr->name);
1513 ptr = ptr->next;
1514 if (ptr)
1515 {
1516 ptrx = ptr; /* Use pf ptrx avoids compiler bug on Sun */
1517 XSETSYMBOL (obj, ptrx);
1518 goto loop;
1519 }
1520 }
1521 break;
1522
1523 case Lisp_Marker:
1524 XMARK (XMARKER (obj)->chain);
1525 /* DO NOT mark thru the marker's chain.
1526 The buffer's markers chain does not preserve markers from gc;
1527 instead, markers are removed from the chain when freed by gc. */
1528 break;
1529
1530 case Lisp_Cons:
1531 case Lisp_Buffer_Local_Value:
1532 case Lisp_Some_Buffer_Local_Value:
1533 {
1534 register struct Lisp_Cons *ptr = XCONS (obj);
1535 if (XMARKBIT (ptr->car)) break;
1536 XMARK (ptr->car);
1537 /* If the cdr is nil, avoid recursion for the car. */
1538 if (EQ (ptr->cdr, Qnil))
1539 {
1540 objptr = &ptr->car;
1541 obj = ptr->car;
1542 XUNMARK (obj);
1543 goto loop;
1544 }
1545 mark_object (&ptr->car);
1546 objptr = &ptr->cdr;
1547 obj = ptr->cdr;
1548 goto loop;
1549 }
1550
1551 #ifdef LISP_FLOAT_TYPE
1552 case Lisp_Float:
1553 XMARK (XFLOAT (obj)->type);
1554 break;
1555 #endif /* LISP_FLOAT_TYPE */
1556
1557 case Lisp_Buffer:
1558 if (!XMARKBIT (XBUFFER (obj)->name))
1559 mark_buffer (obj);
1560 break;
1561
1562 case Lisp_Int:
1563 case Lisp_Void:
1564 case Lisp_Subr:
1565 case Lisp_Intfwd:
1566 case Lisp_Boolfwd:
1567 case Lisp_Objfwd:
1568 case Lisp_Buffer_Objfwd:
1569 case Lisp_Internal_Stream:
1570 /* Don't bother with Lisp_Buffer_Objfwd,
1571 since all markable slots in current buffer marked anyway. */
1572 /* Don't need to do Lisp_Objfwd, since the places they point
1573 are protected with staticpro. */
1574 break;
1575
1576 default:
1577 abort ();
1578 }
1579 }
1580
1581 /* Mark the pointers in a buffer structure. */
1582
1583 static void
1584 mark_buffer (buf)
1585 Lisp_Object buf;
1586 {
1587 register struct buffer *buffer = XBUFFER (buf);
1588 register Lisp_Object *ptr;
1589
1590 /* This is the buffer's markbit */
1591 mark_object (&buffer->name);
1592 XMARK (buffer->name);
1593
1594 MARK_INTERVAL_TREE (buffer->intervals);
1595
1596 #if 0
1597 mark_object (buffer->syntax_table);
1598
1599 /* Mark the various string-pointers in the buffer object.
1600 Since the strings may be relocated, we must mark them
1601 in their actual slots. So gc_sweep must convert each slot
1602 back to an ordinary C pointer. */
1603 XSET (*(Lisp_Object *)&buffer->upcase_table,
1604 Lisp_String, buffer->upcase_table);
1605 mark_object ((Lisp_Object *)&buffer->upcase_table);
1606 XSET (*(Lisp_Object *)&buffer->downcase_table,
1607 Lisp_String, buffer->downcase_table);
1608 mark_object ((Lisp_Object *)&buffer->downcase_table);
1609
1610 XSET (*(Lisp_Object *)&buffer->sort_table,
1611 Lisp_String, buffer->sort_table);
1612 mark_object ((Lisp_Object *)&buffer->sort_table);
1613 XSET (*(Lisp_Object *)&buffer->folding_sort_table,
1614 Lisp_String, buffer->folding_sort_table);
1615 mark_object ((Lisp_Object *)&buffer->folding_sort_table);
1616 #endif
1617
1618 for (ptr = &buffer->name + 1;
1619 (char *)ptr < (char *)buffer + sizeof (struct buffer);
1620 ptr++)
1621 mark_object (ptr);
1622 }
1623 \f
1624 /* Sweep: find all structures not marked, and free them. */
1625
1626 static void
1627 gc_sweep ()
1628 {
1629 total_string_size = 0;
1630 compact_strings ();
1631
1632 /* Put all unmarked conses on free list */
1633 {
1634 register struct cons_block *cblk;
1635 register int lim = cons_block_index;
1636 register int num_free = 0, num_used = 0;
1637
1638 cons_free_list = 0;
1639
1640 for (cblk = cons_block; cblk; cblk = cblk->next)
1641 {
1642 register int i;
1643 for (i = 0; i < lim; i++)
1644 if (!XMARKBIT (cblk->conses[i].car))
1645 {
1646 XFASTINT (cblk->conses[i].car) = (int) cons_free_list;
1647 num_free++;
1648 cons_free_list = &cblk->conses[i];
1649 }
1650 else
1651 {
1652 num_used++;
1653 XUNMARK (cblk->conses[i].car);
1654 }
1655 lim = CONS_BLOCK_SIZE;
1656 }
1657 total_conses = num_used;
1658 total_free_conses = num_free;
1659 }
1660
1661 #ifdef LISP_FLOAT_TYPE
1662 /* Put all unmarked floats on free list */
1663 {
1664 register struct float_block *fblk;
1665 register int lim = float_block_index;
1666 register int num_free = 0, num_used = 0;
1667
1668 float_free_list = 0;
1669
1670 for (fblk = float_block; fblk; fblk = fblk->next)
1671 {
1672 register int i;
1673 for (i = 0; i < lim; i++)
1674 if (!XMARKBIT (fblk->floats[i].type))
1675 {
1676 XFASTINT (fblk->floats[i].type) = (int) float_free_list;
1677 num_free++;
1678 float_free_list = &fblk->floats[i];
1679 }
1680 else
1681 {
1682 num_used++;
1683 XUNMARK (fblk->floats[i].type);
1684 }
1685 lim = FLOAT_BLOCK_SIZE;
1686 }
1687 total_floats = num_used;
1688 total_free_floats = num_free;
1689 }
1690 #endif /* LISP_FLOAT_TYPE */
1691
1692 #ifdef USE_TEXT_PROPERTIES
1693 /* Put all unmarked intervals on free list */
1694 {
1695 register struct interval_block *iblk;
1696 register int lim = interval_block_index;
1697 register int num_free = 0, num_used = 0;
1698
1699 interval_free_list = 0;
1700
1701 for (iblk = interval_block; iblk; iblk = iblk->next)
1702 {
1703 register int i;
1704
1705 for (i = 0; i < lim; i++)
1706 {
1707 if (! XMARKBIT (iblk->intervals[i].plist))
1708 {
1709 iblk->intervals[i].parent = interval_free_list;
1710 interval_free_list = &iblk->intervals[i];
1711 num_free++;
1712 }
1713 else
1714 {
1715 num_used++;
1716 XUNMARK (iblk->intervals[i].plist);
1717 }
1718 }
1719 lim = INTERVAL_BLOCK_SIZE;
1720 }
1721 total_intervals = num_used;
1722 total_free_intervals = num_free;
1723 }
1724 #endif /* USE_TEXT_PROPERTIES */
1725
1726 /* Put all unmarked symbols on free list */
1727 {
1728 register struct symbol_block *sblk;
1729 register int lim = symbol_block_index;
1730 register int num_free = 0, num_used = 0;
1731
1732 symbol_free_list = 0;
1733
1734 for (sblk = symbol_block; sblk; sblk = sblk->next)
1735 {
1736 register int i;
1737 for (i = 0; i < lim; i++)
1738 if (!XMARKBIT (sblk->symbols[i].plist))
1739 {
1740 XFASTINT (sblk->symbols[i].value) = (int) symbol_free_list;
1741 symbol_free_list = &sblk->symbols[i];
1742 num_free++;
1743 }
1744 else
1745 {
1746 num_used++;
1747 sblk->symbols[i].name
1748 = XSTRING (*(Lisp_Object *) &sblk->symbols[i].name);
1749 XUNMARK (sblk->symbols[i].plist);
1750 }
1751 lim = SYMBOL_BLOCK_SIZE;
1752 }
1753 total_symbols = num_used;
1754 total_free_symbols = num_free;
1755 }
1756
1757 #ifndef standalone
1758 /* Put all unmarked markers on free list.
1759 Dechain each one first from the buffer it points into. */
1760 {
1761 register struct marker_block *mblk;
1762 struct Lisp_Marker *tem1;
1763 register int lim = marker_block_index;
1764 register int num_free = 0, num_used = 0;
1765
1766 marker_free_list = 0;
1767
1768 for (mblk = marker_block; mblk; mblk = mblk->next)
1769 {
1770 register int i;
1771 for (i = 0; i < lim; i++)
1772 if (!XMARKBIT (mblk->markers[i].chain))
1773 {
1774 Lisp_Object tem;
1775 tem1 = &mblk->markers[i]; /* tem1 avoids Sun compiler bug */
1776 XSET (tem, Lisp_Marker, tem1);
1777 unchain_marker (tem);
1778 XFASTINT (mblk->markers[i].chain) = (int) marker_free_list;
1779 marker_free_list = &mblk->markers[i];
1780 num_free++;
1781 }
1782 else
1783 {
1784 num_used++;
1785 XUNMARK (mblk->markers[i].chain);
1786 }
1787 lim = MARKER_BLOCK_SIZE;
1788 }
1789
1790 total_markers = num_used;
1791 total_free_markers = num_free;
1792 }
1793
1794 /* Free all unmarked buffers */
1795 {
1796 register struct buffer *buffer = all_buffers, *prev = 0, *next;
1797
1798 while (buffer)
1799 if (!XMARKBIT (buffer->name))
1800 {
1801 if (prev)
1802 prev->next = buffer->next;
1803 else
1804 all_buffers = buffer->next;
1805 next = buffer->next;
1806 free (buffer);
1807 buffer = next;
1808 }
1809 else
1810 {
1811 XUNMARK (buffer->name);
1812 UNMARK_BALANCE_INTERVALS (buffer->intervals);
1813
1814 #if 0
1815 /* Each `struct Lisp_String *' was turned into a Lisp_Object
1816 for purposes of marking and relocation.
1817 Turn them back into C pointers now. */
1818 buffer->upcase_table
1819 = XSTRING (*(Lisp_Object *)&buffer->upcase_table);
1820 buffer->downcase_table
1821 = XSTRING (*(Lisp_Object *)&buffer->downcase_table);
1822 buffer->sort_table
1823 = XSTRING (*(Lisp_Object *)&buffer->sort_table);
1824 buffer->folding_sort_table
1825 = XSTRING (*(Lisp_Object *)&buffer->folding_sort_table);
1826 #endif
1827
1828 prev = buffer, buffer = buffer->next;
1829 }
1830 }
1831
1832 #endif /* standalone */
1833
1834 /* Free all unmarked vectors */
1835 {
1836 register struct Lisp_Vector *vector = all_vectors, *prev = 0, *next;
1837 total_vector_size = 0;
1838
1839 while (vector)
1840 if (!(vector->size & ARRAY_MARK_FLAG))
1841 {
1842 if (prev)
1843 prev->next = vector->next;
1844 else
1845 all_vectors = vector->next;
1846 next = vector->next;
1847 free (vector);
1848 vector = next;
1849 }
1850 else
1851 {
1852 vector->size &= ~ARRAY_MARK_FLAG;
1853 total_vector_size += vector->size;
1854 prev = vector, vector = vector->next;
1855 }
1856 }
1857
1858 /* Free all "large strings" not marked with ARRAY_MARK_FLAG. */
1859 {
1860 register struct string_block *sb = large_string_blocks, *prev = 0, *next;
1861
1862 while (sb)
1863 if (!(((struct Lisp_String *)(&sb->chars[0]))->size & ARRAY_MARK_FLAG))
1864 {
1865 if (prev)
1866 prev->next = sb->next;
1867 else
1868 large_string_blocks = sb->next;
1869 next = sb->next;
1870 free (sb);
1871 sb = next;
1872 }
1873 else
1874 {
1875 ((struct Lisp_String *)(&sb->chars[0]))->size
1876 &= ~ARRAY_MARK_FLAG & ~MARKBIT;
1877 total_string_size += ((struct Lisp_String *)(&sb->chars[0]))->size;
1878 prev = sb, sb = sb->next;
1879 }
1880 }
1881 }
1882 \f
1883 /* Compactify strings, relocate references, and free empty string blocks. */
1884
1885 static void
1886 compact_strings ()
1887 {
1888 /* String block of old strings we are scanning. */
1889 register struct string_block *from_sb;
1890 /* A preceding string block (or maybe the same one)
1891 where we are copying the still-live strings to. */
1892 register struct string_block *to_sb;
1893 int pos;
1894 int to_pos;
1895
1896 to_sb = first_string_block;
1897 to_pos = 0;
1898
1899 /* Scan each existing string block sequentially, string by string. */
1900 for (from_sb = first_string_block; from_sb; from_sb = from_sb->next)
1901 {
1902 pos = 0;
1903 /* POS is the index of the next string in the block. */
1904 while (pos < from_sb->pos)
1905 {
1906 register struct Lisp_String *nextstr
1907 = (struct Lisp_String *) &from_sb->chars[pos];
1908
1909 register struct Lisp_String *newaddr;
1910 register int size = nextstr->size;
1911
1912 /* NEXTSTR is the old address of the next string.
1913 Just skip it if it isn't marked. */
1914 if ((unsigned) size > STRING_BLOCK_SIZE)
1915 {
1916 /* It is marked, so its size field is really a chain of refs.
1917 Find the end of the chain, where the actual size lives. */
1918 while ((unsigned) size > STRING_BLOCK_SIZE)
1919 {
1920 if (size & 1) size ^= MARKBIT | 1;
1921 size = *(int *)size & ~MARKBIT;
1922 }
1923
1924 total_string_size += size;
1925
1926 /* If it won't fit in TO_SB, close it out,
1927 and move to the next sb. Keep doing so until
1928 TO_SB reaches a large enough, empty enough string block.
1929 We know that TO_SB cannot advance past FROM_SB here
1930 since FROM_SB is large enough to contain this string.
1931 Any string blocks skipped here
1932 will be patched out and freed later. */
1933 while (to_pos + STRING_FULLSIZE (size)
1934 > max (to_sb->pos, STRING_BLOCK_SIZE))
1935 {
1936 to_sb->pos = to_pos;
1937 to_sb = to_sb->next;
1938 to_pos = 0;
1939 }
1940 /* Compute new address of this string
1941 and update TO_POS for the space being used. */
1942 newaddr = (struct Lisp_String *) &to_sb->chars[to_pos];
1943 to_pos += STRING_FULLSIZE (size);
1944
1945 /* Copy the string itself to the new place. */
1946 if (nextstr != newaddr)
1947 bcopy (nextstr, newaddr, size + 1 + sizeof (int)
1948 + INTERVAL_PTR_SIZE);
1949
1950 /* Go through NEXTSTR's chain of references
1951 and make each slot in the chain point to
1952 the new address of this string. */
1953 size = newaddr->size;
1954 while ((unsigned) size > STRING_BLOCK_SIZE)
1955 {
1956 register Lisp_Object *objptr;
1957 if (size & 1) size ^= MARKBIT | 1;
1958 objptr = (Lisp_Object *)size;
1959
1960 size = XFASTINT (*objptr) & ~MARKBIT;
1961 if (XMARKBIT (*objptr))
1962 {
1963 XSET (*objptr, Lisp_String, newaddr);
1964 XMARK (*objptr);
1965 }
1966 else
1967 XSET (*objptr, Lisp_String, newaddr);
1968 }
1969 /* Store the actual size in the size field. */
1970 newaddr->size = size;
1971 }
1972 pos += STRING_FULLSIZE (size);
1973 }
1974 }
1975
1976 /* Close out the last string block still used and free any that follow. */
1977 to_sb->pos = to_pos;
1978 current_string_block = to_sb;
1979
1980 from_sb = to_sb->next;
1981 to_sb->next = 0;
1982 while (from_sb)
1983 {
1984 to_sb = from_sb->next;
1985 free (from_sb);
1986 from_sb = to_sb;
1987 }
1988
1989 /* Free any empty string blocks further back in the chain.
1990 This loop will never free first_string_block, but it is very
1991 unlikely that that one will become empty, so why bother checking? */
1992
1993 from_sb = first_string_block;
1994 while (to_sb = from_sb->next)
1995 {
1996 if (to_sb->pos == 0)
1997 {
1998 if (from_sb->next = to_sb->next)
1999 from_sb->next->prev = from_sb;
2000 free (to_sb);
2001 }
2002 else
2003 from_sb = to_sb;
2004 }
2005 }
2006 \f
2007 /* Debugging aids. */
2008
2009 DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, "",
2010 "Return the address of the last byte Emacs has allocated, divided by 1024.\n\
2011 This may be helpful in debugging Emacs's memory usage.\n\
2012 We divide the value by 1024 to make sure it fits in a Lisp integer.")
2013 ()
2014 {
2015 Lisp_Object end;
2016
2017 XSET (end, Lisp_Int, (int) sbrk (0) / 1024);
2018
2019 return end;
2020 }
2021
2022 \f
2023 /* Initialization */
2024
2025 init_alloc_once ()
2026 {
2027 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
2028 pureptr = 0;
2029 #ifdef HAVE_SHM
2030 pure_size = PURESIZE;
2031 #endif
2032 all_vectors = 0;
2033 ignore_warnings = 1;
2034 init_strings ();
2035 init_cons ();
2036 init_symbol ();
2037 init_marker ();
2038 #ifdef LISP_FLOAT_TYPE
2039 init_float ();
2040 #endif /* LISP_FLOAT_TYPE */
2041 INIT_INTERVALS;
2042
2043 ignore_warnings = 0;
2044 gcprolist = 0;
2045 staticidx = 0;
2046 consing_since_gc = 0;
2047 gc_cons_threshold = 100000;
2048 #ifdef VIRT_ADDR_VARIES
2049 malloc_sbrk_unused = 1<<22; /* A large number */
2050 malloc_sbrk_used = 100000; /* as reasonable as any number */
2051 #endif /* VIRT_ADDR_VARIES */
2052 }
2053
2054 init_alloc ()
2055 {
2056 gcprolist = 0;
2057 }
2058
2059 void
2060 syms_of_alloc ()
2061 {
2062 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold,
2063 "*Number of bytes of consing between garbage collections.\n\
2064 Garbage collection can happen automatically once this many bytes have been\n\
2065 allocated since the last garbage collection. All data types count.\n\n\
2066 Garbage collection happens automatically only when `eval' is called.\n\n\
2067 By binding this temporarily to a large number, you can effectively\n\
2068 prevent garbage collection during a part of the program.");
2069
2070 DEFVAR_INT ("pure-bytes-used", &pureptr,
2071 "Number of bytes of sharable Lisp data allocated so far.");
2072
2073 #if 0
2074 DEFVAR_INT ("data-bytes-used", &malloc_sbrk_used,
2075 "Number of bytes of unshared memory allocated in this session.");
2076
2077 DEFVAR_INT ("data-bytes-free", &malloc_sbrk_unused,
2078 "Number of bytes of unshared memory remaining available in this session.");
2079 #endif
2080
2081 DEFVAR_LISP ("purify-flag", &Vpurify_flag,
2082 "Non-nil means loading Lisp code in order to dump an executable.\n\
2083 This means that certain objects should be allocated in shared (pure) space.");
2084
2085 DEFVAR_INT ("undo-limit", &undo_limit,
2086 "Keep no more undo information once it exceeds this size.\n\
2087 This limit is applied when garbage collection happens.\n\
2088 The size is counted as the number of bytes occupied,\n\
2089 which includes both saved text and other data.");
2090 undo_limit = 20000;
2091
2092 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit,
2093 "Don't keep more than this much size of undo information.\n\
2094 A command which pushes past this size is itself forgotten.\n\
2095 This limit is applied when garbage collection happens.\n\
2096 The size is counted as the number of bytes occupied,\n\
2097 which includes both saved text and other data.");
2098 undo_strong_limit = 30000;
2099
2100 defsubr (&Scons);
2101 defsubr (&Slist);
2102 defsubr (&Svector);
2103 defsubr (&Smake_byte_code);
2104 defsubr (&Smake_list);
2105 defsubr (&Smake_vector);
2106 defsubr (&Smake_string);
2107 defsubr (&Smake_symbol);
2108 defsubr (&Smake_marker);
2109 defsubr (&Spurecopy);
2110 defsubr (&Sgarbage_collect);
2111 defsubr (&Smemory_limit);
2112 }