* src/mm/cacao-gc/mark.h, src/mm/cacao-gc/heap.h, src/mm/cacao-gc/heap.c,
[cacao.git] / src / mm / cacao-gc / region.c
1 /* mm/cacao-gc/region.c - GC module for region management
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    Contact: cacao@cacaojvm.org
26
27    Authors: Michael Starzinger
28
29    $Id$
30
31 */
32
33
34 #include "config.h"
35 #include "vm/types.h"
36
37 #include "region.h"
38 #include "mm/memory.h"
39 #include "toolbox/logging.h"
40
41
42 /* region_init *****************************************************************
43
44    Allocates the memory for a heap region and initiates the regioninfo struct
45    accordingly.
46
47 *******************************************************************************/
48
49 void *region_create(regioninfo_t *region, u4 size)
50 {
51         u1 *ptr;
52
53         /* some sanity check */
54         GC_ASSERT(region);
55
56         /* allocate memory for the region */
57         ptr = MNEW(u1, size);
58
59         if (ptr == NULL)
60                 return NULL;
61
62         /* initiate structure */
63         region->base = ptr;
64         region->end  = ptr + size;
65         region->ptr  = ptr;
66         region->size = size;
67         region->free = size;
68
69 #if defined(ENABLE_MEMCHECK)
70         /* poison this region */
71         /* TODO: this should really be done MNEW above! */
72         region_invalidate(region);
73 #endif
74
75         GC_LOG( dolog("GC: Region allocated at [ %p ; %p ]", region->base, region->end); );
76
77         return ptr;
78 }
79
80
81 /* region_invalidate ***********************************************************
82
83    Invalidates the free memory area inside a heap region by overwriting it with
84    the clear byte.
85
86    REMEMBER: The region has to be compacted for this to work properly.
87
88 *******************************************************************************/
89
90 #if defined(ENABLE_MEMCHECK)
91 void region_invalidate(regioninfo_t *region)
92 {
93         /* some sanity check */
94         GC_ASSERT(region->free == region->end - region->ptr);
95
96         /* invalidate free memory */
97         memset(region->ptr, MEMORY_CLEAR_BYTE, region->free);
98 }
99 #endif /* defined(ENABLE_MEMCHECK) */
100
101
102 /*
103  * These are local overrides for various environment variables in Emacs.
104  * Please do not remove this and leave it at the end of the file, where
105  * Emacs will automagically detect them.
106  * ---------------------------------------------------------------------
107  * Local variables:
108  * mode: c
109  * indent-tabs-mode: t
110  * c-basic-offset: 4
111  * tab-width: 4
112  * End:
113  * vim:noexpandtab:sw=4:ts=4:
114  */