0.9.2.42:
[sbcl.git] / src / runtime / gc-internal.h
1 /*
2  * garbage collection - shared definitions for modules "inside" the GC system
3  */
4
5 /*
6  * This software is part of the SBCL system. See the README file for
7  * more information.
8  *
9  * This software is derived from the CMU CL system, which was
10  * written at Carnegie Mellon University and released into the
11  * public domain. The software is in the public domain and is
12  * provided with absolutely no warranty. See the COPYING and CREDITS
13  * files for more information.
14  */
15
16 #ifndef _GC_INTERNAL_H_
17 #define _GC_INTERNAL_H_
18
19 /* disabling gc assertions made no discernable difference to GC speed,
20  * last I tried it - dan 2003.12.21 */
21 #if 1
22 #define gc_assert(ex) do { \
23         if (!(ex)) gc_abort(); \
24 } while (0)
25 #else
26 #define gc_assert(ex)
27 #endif
28 #define gc_abort() lose("GC invariant lost, file \"%s\", line %d", \
29                         __FILE__, __LINE__)
30
31 #define CEILING(x,y) (((x) + ((y) - 1)) & (~((y) - 1)))
32
33 static inline unsigned long
34 NWORDS(unsigned long x, unsigned long n_bits)
35 {
36     /* A good compiler should be able to constant-fold this whole thing,
37        even with the conditional. */
38     if(n_bits <= N_WORD_BITS) {
39         unsigned long elements_per_word = N_WORD_BITS/n_bits;
40
41         return CEILING(x, elements_per_word)/elements_per_word;
42     }
43     else {
44         /* FIXME: should have some sort of assertion that N_WORD_BITS
45            evenly divides n_bits */
46         return x * (n_bits/N_WORD_BITS);
47     }
48 }
49
50 /* FIXME: Shouldn't this be defined in sbcl.h? */
51
52 /* FIXME (1) this could probably be defined using something like
53  *  sizeof(lispobj)*floor(sizeof(struct simple_fun)/sizeof(lispobj))
54  *    -  FUN_POINTER_LOWTAG
55  * as I'm reasonably sure that simple_fun->code must always be the
56  * last slot in the object
57
58  * FIXME (2) it also appears in purify.c, and it has a different value
59  * for SPARC users in that bit
60  */
61
62 #define FUN_RAW_ADDR_OFFSET (6*sizeof(lispobj) - FUN_POINTER_LOWTAG)
63
64 /* values for the *_alloc_* parameters */
65 #define FREE_PAGE_FLAG 0
66 #define BOXED_PAGE_FLAG 1
67 #define UNBOXED_PAGE_FLAG 2
68 #define OPEN_REGION_PAGE_FLAG 4
69
70 #define ALLOC_BOXED 0
71 #define ALLOC_UNBOXED 1
72 #define ALLOC_QUICK 1
73
74 void *gc_general_alloc(long nbytes,int unboxed_p,int quick_p);
75
76 extern long (*scavtab[256])(lispobj *where, lispobj object);
77 extern lispobj (*transother[256])(lispobj object);
78 extern long (*sizetab[256])(lispobj *where);
79
80 extern struct weak_pointer *weak_pointers; /* in gc-common.c */
81
82 extern void scavenge(lispobj *start, long n_words);
83 extern void scan_weak_pointers(void);
84
85 lispobj  copy_large_unboxed_object(lispobj object, long nwords);
86 lispobj  copy_unboxed_object(lispobj object, long nwords);
87 lispobj  copy_large_object(lispobj object, long nwords);
88 lispobj  copy_object(lispobj object, long nwords);
89
90 lispobj *search_read_only_space(void *pointer);
91 lispobj *search_static_space(void *pointer);
92 lispobj *search_dynamic_space(void *pointer);
93
94 lispobj *gc_search_space(lispobj *start, size_t words, lispobj *pointer);
95
96 #include "fixnump.h"
97
98 #ifdef LISP_FEATURE_GENCGC
99 #include "gencgc-internal.h"
100 #else
101 #include "cheneygc-internal.h"
102 #endif
103
104 #endif /* _GC_INTERNAL_H_ */