* Updated header: Added 2006. Changed address of FSF. Changed email
[cacao.git] / src / mm / nogc.c
1 /* src/mm/nogc.c - allocates memory through malloc (no GC)
2
3    Copyright (C) 1996-2005, 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: Christian Thalinger
28
29    Changes:
30
31    $Id: nogc.c 4357 2006-01-22 23:33:38Z twisti $
32
33 */
34
35
36 #include <stdlib.h>
37 #include <sys/mman.h>
38
39 #include "config.h"
40 #include "vm/types.h"
41
42 #include "boehm-gc/include/gc.h"
43
44 #include "mm/boehm.h"
45 #include "toolbox/logging.h"
46 #include "vm/options.h"
47 #include "vm/builtin.h"
48 #include "vm/exceptions.h"
49 #include "vm/global.h"
50 #include "vm/loader.h"
51 #include "vm/stringlocal.h"
52
53
54 /* global stuff ***************************************************************/
55
56 #define MMAP_HEAPADDRESS    0x10000000  /* try to map the heap to this addr.  */
57 #define ALIGNSIZE           8
58
59 static void *mmapptr = NULL;
60 static int mmapsize = 0;
61 static void *mmaptop = NULL;
62
63
64 void *heap_allocate(u4 size, bool references, methodinfo *finalizer)
65 {
66         void *m;
67
68         mmapptr = (void *) ALIGN((ptrint) mmapptr, ALIGNSIZE);
69         
70         m = mmapptr;
71         mmapptr = (void *) ((ptrint) mmapptr + size);
72
73         if (mmapptr > mmaptop)
74                 throw_cacao_exception_exit(string_java_lang_InternalError,
75                                                                    "Out of memory");
76
77         MSET(m, 0, u1, size);
78
79         return m;
80 }
81
82
83 void *heap_alloc_uncollectable(u4 size)
84 {
85         return heap_allocate(size, false, NULL);
86 }
87
88
89 void *nogc_realloc(void *src, s4 len1, s4 len2)
90 {
91         void *p;
92
93         p = heap_allocate(len2, false, NULL);
94
95         MCOPY(p, src, u1, len1);
96
97         return p;
98 }
99
100
101 void heap_free(void *p)
102 {
103         /* nop */
104 }
105
106
107
108 void nogc_init(u4 heapmaxsize, u4 heapstartsize)
109 {
110         heapmaxsize = ALIGN(heapmaxsize, ALIGNSIZE);
111
112         mmapptr = mmap((void *) MMAP_HEAPADDRESS,
113                                    (size_t) heapmaxsize,
114                                    PROT_READ | PROT_WRITE,
115                                    MAP_PRIVATE | MAP_ANONYMOUS,
116                                    -1,
117                                    (off_t) 0);
118
119         if (mmapptr == MAP_FAILED)
120                 throw_cacao_exception_exit(string_java_lang_InternalError,
121                                                                    "Out of memory");
122
123         mmapsize = heapmaxsize;
124         mmaptop = (void *) ((ptrint) mmapptr + mmapsize);
125 }
126
127
128 void gc_init(u4 heapmaxsize, u4 heapstartsize)
129 {
130         /* nop */
131 }
132
133
134 void gc_call(void)
135 {
136         log_text("GC call: nothing done...");
137         /* nop */
138 }
139
140
141 s8 gc_get_heap_size(void)
142 {
143         return 0;
144 }
145
146
147 s8 gc_get_free_bytes(void)
148 {
149         return 0;
150 }
151
152
153 s8 gc_get_max_heap_size(void)
154 {
155         return 0;
156 }
157
158
159 void gc_invoke_finalizers(void)
160 {
161         /* nop */
162 }
163
164
165 void gc_finalize_all(void)
166 {
167         /* nop */
168 }
169
170
171 /*
172  * These are local overrides for various environment variables in Emacs.
173  * Please do not remove this and leave it at the end of the file, where
174  * Emacs will automagically detect them.
175  * ---------------------------------------------------------------------
176  * Local variables:
177  * mode: c
178  * indent-tabs-mode: t
179  * c-basic-offset: 4
180  * tab-width: 4
181  * End:
182  */