* Merged with default branch at rev 16f3633aaa5a.
[cacao.git] / src / mm / cacao-gc / gc.h
1 /* src/mm/cacao-gc/gc.h - main garbage collector header
2
3    Copyright (C) 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25 */
26
27
28 #ifdef GC_CONST
29 # error Why is the BoehmGC header included???
30 #endif
31
32
33 #ifndef _GC_H
34 #define _GC_H
35
36
37 #include "config.h"
38 #include "vm/types.h"
39
40 #if defined(ENABLE_THREADS)
41 # include "threads/native/threads.h"
42 #endif
43
44 #include "toolbox/list.h"
45 #include "vm/jit/replace.h"
46
47
48 /* Configuration Switches *****************************************************/
49
50 #define GCCONF_FINALIZER
51 /*#define GCCONF_HDRFLAG_REFERENCING*/
52
53
54 /* Debugging ******************************************************************/
55
56 #define GC_DEBUGGING
57 /*#define GC_DEBUGGING2*/
58
59 #if !defined(NDEBUG) && defined(GC_DEBUGGING)
60 # include <assert.h>
61 # include "vmcore/options.h"
62 # define GC_LOG(code) if (opt_verbosegc) { code; }
63 # define GC_ASSERT(assertion) assert(assertion)
64 #else
65 # define GC_LOG(code)
66 # define GC_ASSERT(assertion)
67 #endif
68
69 #if !defined(NDEBUG) && defined(GC_DEBUGGING2)
70 # define GC_LOG2(code) GC_LOG(code)
71 #else
72 # define GC_LOG2(code)
73 #endif
74
75
76 /* Development Break **********************************************************/
77
78 #if 0 && defined(ENABLE_THREADS)
79 # error "GC does not work with threads enabled!"
80 #endif
81
82 #if 1 && defined(ENABLE_INTRP)
83 # error "GC does not work with interpreter enabled!"
84 #endif
85
86 #if 1 && defined(ENABLE_JVMTI)
87 # error "GC does not work with JVMTI enabled!"
88 #endif
89
90 #if 1 && !defined(ENABLE_REPLACEMENT)
91 # error "GC does only work with replacement enabled!"
92 #endif
93
94 #if 1 && !defined(ENABLE_HANDLES)
95 # error "GC does only work with handles (indirection cells) enabled!"
96 #endif
97
98 #if 1 && !defined(__ALPHA__) && !defined(__ARM__) && !defined(__I386__) && !defined(__POWERPC__) && !defined(__X86_64__) && !defined(__M68K__) && !defined(__SPARC_64__)
99 # error "GC was only ported to some architectures so far!"
100 #endif
101
102
103 /* Helper Macros **************************************************************/
104
105 #define GC_SET_FLAGS(obj, flags)   ((obj)->hdrflags |=  (flags))
106 #define GC_CLEAR_FLAGS(obj, flags) ((obj)->hdrflags &= ~(flags))
107 #define GC_TEST_FLAGS(obj, flags)  ((obj)->hdrflags  &  (flags))
108
109 #define POINTS_INTO(ptr, ptr_start, ptr_end) \
110         ((void *) (ptr) >= (ptr_start) && (void *) (ptr) < (ptr_end))
111
112 #define GC_ALIGN_SIZE SIZEOF_VOID_P
113 #define GC_ALIGN(val,size) ((((val) + (size) - 1) / (size)) * (size))
114
115
116 /* Global Variables ***********************************************************/
117
118 extern bool gc_pending;
119 extern bool gc_notify_finalizer;
120
121 extern list_t *gc_reflist;
122
123
124 /* Structures *****************************************************************/
125
126 typedef struct list_gcref_entry_t list_gcref_entry_t;
127
128 struct list_gcref_entry_t {
129         listnode_t      linkage;
130         java_object_t **ref;
131 #if !defined(NDEBUG)
132         s4              reftype;
133 #endif
134 };
135
136
137 /* No-Thread specific stuff ***************************************************/
138
139 #if defined(ENABLE_THREADS)
140 # define GC_EXECUTIONSTATE (thread->es)
141 # define GC_SOURCESTATE    (thread->ss)
142 #else
143 # define GC_EXECUTIONSTATE (_no_threads_executionstate)
144 # define GC_SOURCESTATE    (_no_threads_sourcestate)
145
146 extern executionstate_t *_no_threads_executionstate;
147 extern sourcestate_t    *_no_threads_sourcestate;
148
149 #endif
150
151
152 /* Prototypes *****************************************************************/
153
154 void gc_collect(s4 level);
155
156 #if defined(ENABLE_THREADS)
157 bool gc_suspend(threadobject *thread, u1 *pc, u1 *sp);
158 #endif
159
160
161 /* Statistics *****************************************************************/
162
163 #if defined(ENABLE_STATISTICS)
164
165 #define GCSTAT_INIT(cnt)  { (cnt) = 0; }
166 #define GCSTAT_COUNT(cnt) { (cnt)++; }
167 #define GCSTAT_DEC(cnt)   { (cnt)--; GC_ASSERT((cnt) >= 0); }
168 #define GCSTAT_COUNT_MAX(cnt,max) { (cnt)++; if ((cnt) > (max)) (max) = (cnt); }
169
170 extern int gcstat_collections;
171 extern int gcstat_collections_forced;
172 extern int gcstat_mark_depth;
173 extern int gcstat_mark_depth_max;
174 extern int gcstat_mark_count;
175
176 void gcstat_println();
177
178 #else /* defined(ENABLE_STATISTICS) */
179
180 #define GCSTAT_INIT(cnt)
181 #define GCSTAT_COUNT(cnt)
182 #define GCSTAT_DEC(cnt)
183 #define GCSTAT_COUNT_MAX(cnt,max)
184
185 #endif /* defined(ENABLE_STATISTICS) */
186
187
188 #endif /* _GC_H */
189
190 /*
191  * These are local overrides for various environment variables in Emacs.
192  * Please do not remove this and leave it at the end of the file, where
193  * Emacs will automagically detect them.
194  * ---------------------------------------------------------------------
195  * Local variables:
196  * mode: c
197  * indent-tabs-mode: t
198  * c-basic-offset: 4
199  * tab-width: 4
200  * End:
201  * vim:noexpandtab:sw=4:ts=4:
202  */