2 * Copyright (c) 1996-1998 by Silicon Graphics. All rights reserved.
4 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
5 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
7 * Permission is hereby granted to use or copy this program
8 * for any purpose, provided the above notices are retained on all copies.
9 * Permission to modify the code and to distribute modified code is granted,
10 * provided the above notices are retained, and a notice that the code was
11 * modified is included with the above copyright notice.
15 // This is a revision of gc_alloc.h for SGI STL versions > 3.0
16 // Unlike earlier versions, it supplements the standard "alloc.h"
17 // instead of replacing it.
19 // This is sloppy about variable names used in header files.
20 // It also doesn't yet understand the new header file names or
23 // This assumes the collector has been compiled with -DATOMIC_UNCOLLECTABLE.
24 // The user should also consider -DREDIRECT_MALLOC=GC_uncollectable_malloc,
25 // to ensure that object allocated through malloc are traced.
27 // Some of this could be faster in the explicit deallocation case.
28 // In particular, we spend too much time clearing objects on the
29 // free lists. That could be avoided.
31 // This uses template classes with static members, and hence does not work
32 // with g++ 2.7.2 and earlier.
34 // Unlike its predecessor, this one simply defines
36 // single_client_gc_alloc
38 // single_client_traceable_alloc
40 // It does not redefine alloc. Nor does it change the default allocator,
41 // though the user may wish to do so. (The argument against changing
42 // the default allocator is that it may introduce subtle link compatibility
43 // problems. The argument for changing it is that the usual default
44 // allocator is usually a very bad choice for a garbage collected environment.)
46 // This code assumes that the collector itself has been compiled with a
47 // compiler that defines __STDC__ .
55 # include <stack> // A more portable way to get stl_alloc.h .
57 # include <bits/stl_alloc.h>
58 # ifndef __STL_BEGIN_NAMESPACE
59 # define __STL_BEGIN_NAMESPACE namespace std {
60 # define __STL_END_NAMESPACE };
62 #ifndef __STL_USE_STD_ALLOCATORS
63 #define __STL_USE_STD_ALLOCATORS
67 /* A hack to deal with gcc 3.1. If you are using gcc3.1 and later, */
68 /* you should probably really use gc_allocator.h instead. */
69 #if defined (__GNUC__) && \
70 (__GNUC > 3 || (__GNUC__ == 3 && (__GNUC_MINOR__ >= 1)))
71 # define simple_alloc __simple_alloc
81 // The following need to match collector data structures.
82 // We can't include gc_priv.h, since that pulls in way too much stuff.
83 // This should eventually be factored out into another include file.
86 extern void ** const GC_objfreelist_ptr
;
87 extern void ** const GC_aobjfreelist_ptr
;
88 extern void ** const GC_uobjfreelist_ptr
;
89 extern void ** const GC_auobjfreelist_ptr
;
91 extern void GC_incr_words_allocd(size_t words
);
92 extern void GC_incr_mem_freed(size_t words
);
94 extern char * GC_generic_malloc_words_small(size_t word
, int kind
);
97 // Object kinds; must match PTRFREE, NORMAL, UNCOLLECTABLE, and
98 // AUNCOLLECTABLE in gc_priv.h.
100 enum { GC_PTRFREE
= 0, GC_NORMAL
= 1, GC_UNCOLLECTABLE
= 2,
101 GC_AUNCOLLECTABLE
= 3 };
103 enum { GC_max_fast_bytes
= 255 };
105 enum { GC_bytes_per_word
= sizeof(char *) };
107 enum { GC_byte_alignment
= 8 };
109 enum { GC_word_alignment
= GC_byte_alignment
/GC_bytes_per_word
};
111 inline void * &GC_obj_link(void * p
)
112 { return *reinterpret_cast<void **>(p
); }
114 // Compute a number of words >= n+1 bytes.
115 // The +1 allows for pointers one past the end.
116 inline size_t GC_round_up(size_t n
)
118 return ((n
+ GC_byte_alignment
)/GC_byte_alignment
)*GC_word_alignment
;
121 // The same but don't allow for extra byte.
122 inline size_t GC_round_up_uncollectable(size_t n
)
124 return ((n
+ GC_byte_alignment
- 1)/GC_byte_alignment
)*GC_word_alignment
;
128 class GC_aux_template
{
130 // File local count of allocated words. Occasionally this is
131 // added into the global count. A separate count is necessary since the
132 // real one must be updated with a procedure call.
133 static size_t GC_words_recently_allocd
;
135 // Same for uncollectable mmory. Not yet reflected in either
136 // GC_words_recently_allocd or GC_non_gc_bytes.
137 static size_t GC_uncollectable_words_recently_allocd
;
139 // Similar counter for explicitly deallocated memory.
140 static size_t GC_mem_recently_freed
;
142 // Again for uncollectable memory.
143 static size_t GC_uncollectable_mem_recently_freed
;
145 static void * GC_out_of_line_malloc(size_t nwords
, int kind
);
149 size_t GC_aux_template
<dummy
>::GC_words_recently_allocd
= 0;
152 size_t GC_aux_template
<dummy
>::GC_uncollectable_words_recently_allocd
= 0;
155 size_t GC_aux_template
<dummy
>::GC_mem_recently_freed
= 0;
158 size_t GC_aux_template
<dummy
>::GC_uncollectable_mem_recently_freed
= 0;
161 void * GC_aux_template
<dummy
>::GC_out_of_line_malloc(size_t nwords
, int kind
)
163 GC_words_recently_allocd
+= GC_uncollectable_words_recently_allocd
;
165 GC_bytes_per_word
* GC_uncollectable_words_recently_allocd
;
166 GC_uncollectable_words_recently_allocd
= 0;
168 GC_mem_recently_freed
+= GC_uncollectable_mem_recently_freed
;
170 GC_bytes_per_word
* GC_uncollectable_mem_recently_freed
;
171 GC_uncollectable_mem_recently_freed
= 0;
173 GC_incr_words_allocd(GC_words_recently_allocd
);
174 GC_words_recently_allocd
= 0;
176 GC_incr_mem_freed(GC_mem_recently_freed
);
177 GC_mem_recently_freed
= 0;
179 return GC_generic_malloc_words_small(nwords
, kind
);
182 typedef GC_aux_template
<0> GC_aux
;
184 // A fast, single-threaded, garbage-collected allocator
185 // We assume the first word will be immediately overwritten.
186 // In this version, deallocation is not a noop, and explicit
187 // deallocation is likely to help performance.
189 class single_client_gc_alloc_template
{
191 static void * allocate(size_t n
)
193 size_t nwords
= GC_round_up(n
);
197 if (n
> GC_max_fast_bytes
) return GC_malloc(n
);
198 flh
= GC_objfreelist_ptr
+ nwords
;
199 if (0 == (op
= *flh
)) {
200 return GC_aux::GC_out_of_line_malloc(nwords
, GC_NORMAL
);
202 *flh
= GC_obj_link(op
);
203 GC_aux::GC_words_recently_allocd
+= nwords
;
206 static void * ptr_free_allocate(size_t n
)
208 size_t nwords
= GC_round_up(n
);
212 if (n
> GC_max_fast_bytes
) return GC_malloc_atomic(n
);
213 flh
= GC_aobjfreelist_ptr
+ nwords
;
214 if (0 == (op
= *flh
)) {
215 return GC_aux::GC_out_of_line_malloc(nwords
, GC_PTRFREE
);
217 *flh
= GC_obj_link(op
);
218 GC_aux::GC_words_recently_allocd
+= nwords
;
221 static void deallocate(void *p
, size_t n
)
223 size_t nwords
= GC_round_up(n
);
226 if (n
> GC_max_fast_bytes
) {
229 flh
= GC_objfreelist_ptr
+ nwords
;
230 GC_obj_link(p
) = *flh
;
231 memset(reinterpret_cast<char *>(p
) + GC_bytes_per_word
, 0,
232 GC_bytes_per_word
* (nwords
- 1));
234 GC_aux::GC_mem_recently_freed
+= nwords
;
237 static void ptr_free_deallocate(void *p
, size_t n
)
239 size_t nwords
= GC_round_up(n
);
242 if (n
> GC_max_fast_bytes
) {
245 flh
= GC_aobjfreelist_ptr
+ nwords
;
246 GC_obj_link(p
) = *flh
;
248 GC_aux::GC_mem_recently_freed
+= nwords
;
253 typedef single_client_gc_alloc_template
<0> single_client_gc_alloc
;
255 // Once more, for uncollectable objects.
257 class single_client_traceable_alloc_template
{
259 static void * allocate(size_t n
)
261 size_t nwords
= GC_round_up_uncollectable(n
);
265 if (n
> GC_max_fast_bytes
) return GC_malloc_uncollectable(n
);
266 flh
= GC_uobjfreelist_ptr
+ nwords
;
267 if (0 == (op
= *flh
)) {
268 return GC_aux::GC_out_of_line_malloc(nwords
, GC_UNCOLLECTABLE
);
270 *flh
= GC_obj_link(op
);
271 GC_aux::GC_uncollectable_words_recently_allocd
+= nwords
;
274 static void * ptr_free_allocate(size_t n
)
276 size_t nwords
= GC_round_up_uncollectable(n
);
280 if (n
> GC_max_fast_bytes
) return GC_malloc_atomic_uncollectable(n
);
281 flh
= GC_auobjfreelist_ptr
+ nwords
;
282 if (0 == (op
= *flh
)) {
283 return GC_aux::GC_out_of_line_malloc(nwords
, GC_AUNCOLLECTABLE
);
285 *flh
= GC_obj_link(op
);
286 GC_aux::GC_uncollectable_words_recently_allocd
+= nwords
;
289 static void deallocate(void *p
, size_t n
)
291 size_t nwords
= GC_round_up_uncollectable(n
);
294 if (n
> GC_max_fast_bytes
) {
297 flh
= GC_uobjfreelist_ptr
+ nwords
;
298 GC_obj_link(p
) = *flh
;
300 GC_aux::GC_uncollectable_mem_recently_freed
+= nwords
;
303 static void ptr_free_deallocate(void *p
, size_t n
)
305 size_t nwords
= GC_round_up_uncollectable(n
);
308 if (n
> GC_max_fast_bytes
) {
311 flh
= GC_auobjfreelist_ptr
+ nwords
;
312 GC_obj_link(p
) = *flh
;
314 GC_aux::GC_uncollectable_mem_recently_freed
+= nwords
;
319 typedef single_client_traceable_alloc_template
<0> single_client_traceable_alloc
;
321 template < int dummy
>
322 class gc_alloc_template
{
324 static void * allocate(size_t n
) { return GC_malloc(n
); }
325 static void * ptr_free_allocate(size_t n
)
326 { return GC_malloc_atomic(n
); }
327 static void deallocate(void *, size_t) { }
328 static void ptr_free_deallocate(void *, size_t) { }
331 typedef gc_alloc_template
< 0 > gc_alloc
;
333 template < int dummy
>
334 class traceable_alloc_template
{
336 static void * allocate(size_t n
) { return GC_malloc_uncollectable(n
); }
337 static void * ptr_free_allocate(size_t n
)
338 { return GC_malloc_atomic_uncollectable(n
); }
339 static void deallocate(void *p
, size_t) { GC_free(p
); }
340 static void ptr_free_deallocate(void *p
, size_t) { GC_free(p
); }
343 typedef traceable_alloc_template
< 0 > traceable_alloc
;
345 // We want to specialize simple_alloc so that it does the right thing
346 // for all pointerfree types. At the moment there is no portable way to
347 // even approximate that. The following approximation should work for
348 // SGI compilers, and recent versions of g++.
350 # define __GC_SPECIALIZE(T,alloc) \
351 class simple_alloc<T, alloc> { \
353 static T *allocate(size_t n) \
354 { return 0 == n? 0 : \
355 reinterpret_cast<T*>(alloc::ptr_free_allocate(n * sizeof (T))); } \
356 static T *allocate(void) \
357 { return reinterpret_cast<T*>(alloc::ptr_free_allocate(sizeof (T))); } \
358 static void deallocate(T *p, size_t n) \
359 { if (0 != n) alloc::ptr_free_deallocate(p, n * sizeof (T)); } \
360 static void deallocate(T *p) \
361 { alloc::ptr_free_deallocate(p, sizeof (T)); } \
364 __STL_BEGIN_NAMESPACE
366 __GC_SPECIALIZE(char, gc_alloc
)
367 __GC_SPECIALIZE(int, gc_alloc
)
368 __GC_SPECIALIZE(unsigned, gc_alloc
)
369 __GC_SPECIALIZE(float, gc_alloc
)
370 __GC_SPECIALIZE(double, gc_alloc
)
372 __GC_SPECIALIZE(char, traceable_alloc
)
373 __GC_SPECIALIZE(int, traceable_alloc
)
374 __GC_SPECIALIZE(unsigned, traceable_alloc
)
375 __GC_SPECIALIZE(float, traceable_alloc
)
376 __GC_SPECIALIZE(double, traceable_alloc
)
378 __GC_SPECIALIZE(char, single_client_gc_alloc
)
379 __GC_SPECIALIZE(int, single_client_gc_alloc
)
380 __GC_SPECIALIZE(unsigned, single_client_gc_alloc
)
381 __GC_SPECIALIZE(float, single_client_gc_alloc
)
382 __GC_SPECIALIZE(double, single_client_gc_alloc
)
384 __GC_SPECIALIZE(char, single_client_traceable_alloc
)
385 __GC_SPECIALIZE(int, single_client_traceable_alloc
)
386 __GC_SPECIALIZE(unsigned, single_client_traceable_alloc
)
387 __GC_SPECIALIZE(float, single_client_traceable_alloc
)
388 __GC_SPECIALIZE(double, single_client_traceable_alloc
)
392 #ifdef __STL_USE_STD_ALLOCATORS
394 __STL_BEGIN_NAMESPACE
397 struct _Alloc_traits
<_Tp
, gc_alloc
>
399 static const bool _S_instanceless
= true;
400 typedef simple_alloc
<_Tp
, gc_alloc
> _Alloc_type
;
401 typedef __allocator
<_Tp
, gc_alloc
> allocator_type
;
404 inline bool operator==(const gc_alloc
&,
410 inline bool operator!=(const gc_alloc
&,
417 struct _Alloc_traits
<_Tp
, single_client_gc_alloc
>
419 static const bool _S_instanceless
= true;
420 typedef simple_alloc
<_Tp
, single_client_gc_alloc
> _Alloc_type
;
421 typedef __allocator
<_Tp
, single_client_gc_alloc
> allocator_type
;
424 inline bool operator==(const single_client_gc_alloc
&,
425 const single_client_gc_alloc
&)
430 inline bool operator!=(const single_client_gc_alloc
&,
431 const single_client_gc_alloc
&)
437 struct _Alloc_traits
<_Tp
, traceable_alloc
>
439 static const bool _S_instanceless
= true;
440 typedef simple_alloc
<_Tp
, traceable_alloc
> _Alloc_type
;
441 typedef __allocator
<_Tp
, traceable_alloc
> allocator_type
;
444 inline bool operator==(const traceable_alloc
&,
445 const traceable_alloc
&)
450 inline bool operator!=(const traceable_alloc
&,
451 const traceable_alloc
&)
457 struct _Alloc_traits
<_Tp
, single_client_traceable_alloc
>
459 static const bool _S_instanceless
= true;
460 typedef simple_alloc
<_Tp
, single_client_traceable_alloc
> _Alloc_type
;
461 typedef __allocator
<_Tp
, single_client_traceable_alloc
> allocator_type
;
464 inline bool operator==(const single_client_traceable_alloc
&,
465 const single_client_traceable_alloc
&)
470 inline bool operator!=(const single_client_traceable_alloc
&,
471 const single_client_traceable_alloc
&)
478 #endif /* __STL_USE_STD_ALLOCATORS */
480 #endif /* GC_ALLOC_H */