* m4/assertion.m4: Fixed copyright header.
[cacao.git] / src / mm / codememory.c
1 /* src/mm/codememory.c - code memory management
2
3    Copyright (C) 1996-2005, 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #include "config.h"
27
28 #include <stdint.h>
29 #include <stdlib.h>
30 #include <sys/mman.h> /* REMOVEME */
31
32 #include "threads/lock-common.h"
33 #include "threads/threads-common.h"
34
35 #include "mm/codememory.h"
36 #include "mm/memory.h"
37
38 #include "vmcore/options.h"
39
40 #if defined(ENABLE_STATISTICS)
41 # include "vmcore/statistics.h"
42 #endif
43
44 #include "vmcore/system.h"
45
46 #include "vm/global.h"
47
48
49 /* global code memory variables ***********************************************/
50
51 #define DEFAULT_CODE_MEMORY_SIZE    128 * 1024 /* defaulting to 128kB         */
52
53 #if defined(ENABLE_THREADS)
54 static java_object_t *lock_code_memory = NULL;
55 #endif
56 static void          *code_memory      = NULL;
57 static int            code_memory_size = 0;
58 static int            pagesize         = 0;
59
60
61 /* codememory_init *************************************************************
62
63    Initialize the code memory subsystem.
64
65 *******************************************************************************/
66
67 void codememory_init(void)
68 {
69 #if defined(ENABLE_THREADS)
70         /* create lock for code memory */
71
72         lock_code_memory = NEW(java_object_t);
73
74         lock_init_object_lock(lock_code_memory);
75 #endif
76
77         /* Get the pagesize of this architecture. */
78
79         pagesize = system_getpagesize();
80 }
81
82
83 /* codememory_get **************************************************************
84
85    Allocates memory from the heap via mmap and make the memory read-,
86    write-, and executeable.
87
88 *******************************************************************************/
89
90 void *codememory_get(size_t size)
91 {
92         void *p;
93
94         LOCK_MONITOR_ENTER(lock_code_memory);
95
96         size = MEMORY_ALIGN(size, ALIGNSIZE);
97
98         /* check if enough memory is available */
99
100         if (size > code_memory_size) {
101                 /* set default code size */
102
103                 code_memory_size = DEFAULT_CODE_MEMORY_SIZE;
104
105                 /* do we need more? */
106
107                 if (size > code_memory_size)
108                         code_memory_size = size;
109
110                 /* align the size of the memory to be allocated */
111
112                 code_memory_size = MEMORY_ALIGN(code_memory_size, pagesize);
113
114 #if defined(ENABLE_STATISTICS)
115                 if (opt_stat) {
116                         codememusage += code_memory_size;
117
118                         if (codememusage > maxcodememusage)
119                                 maxcodememusage = codememusage;
120                 }
121 #endif
122
123                 /* allocate the memory */
124
125                 p = system_mmap_anonymous(NULL, code_memory_size,
126                                                                   PROT_READ | PROT_WRITE | PROT_EXEC,
127                                                                   MAP_PRIVATE);
128
129                 /* set global code memory pointer */
130
131                 code_memory = p;
132         }
133
134         /* get a memory chunk of the allocated memory */
135
136         p = code_memory;
137
138         code_memory       = (void *) ((ptrint) code_memory + size);
139         code_memory_size -= size;
140
141         LOCK_MONITOR_EXIT(lock_code_memory);
142
143         return p;
144 }
145
146
147 /* codememory_release **********************************************************
148
149    Release the code memory and return it to the code memory
150    management.
151
152    IN:
153        p ...... pointer to the code memory
154            size ... size of the code memory
155
156 *******************************************************************************/
157
158 void codememory_release(void *p, size_t size)
159 {
160         /* do nothing */
161 }
162
163
164 /*
165  * These are local overrides for various environment variables in Emacs.
166  * Please do not remove this and leave it at the end of the file, where
167  * Emacs will automagically detect them.
168  * ---------------------------------------------------------------------
169  * Local variables:
170  * mode: c
171  * indent-tabs-mode: t
172  * c-basic-offset: 4
173  * tab-width: 4
174  * End:
175  * vim:noexpandtab:sw=4:ts=4:
176  */