* Merged in twisti-branch.
[cacao.git] / src / mm / nogc.c
1 /* src/mm/nogc.c - allocates memory through malloc (no GC)
2
3    Copyright (C) 1996-2005, 2006, 2007 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    $Id: nogc.c 7596 2007-03-28 21:05:53Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <stdlib.h>
33 #include <sys/mman.h>
34
35 #include "vm/types.h"
36
37 #include "boehm-gc/include/gc.h"
38
39 #include "mm/gc-common.h"
40 #include "mm/memory.h"
41
42 #include "toolbox/logging.h"
43
44 #include "vm/builtin.h"
45 #include "vm/exceptions.h"
46 #include "vm/global.h"
47 #include "vm/stringlocal.h"
48
49 #include "vmcore/loader.h"
50 #include "vmcore/options.h"
51
52
53 /* global stuff ***************************************************************/
54
55 #define MMAP_HEAPADDRESS    0x10000000  /* try to map the heap to this addr.  */
56 #define ALIGNSIZE           8
57
58 static void *mmapptr = NULL;
59 static int mmapsize = 0;
60 static void *mmaptop = NULL;
61
62
63 void *heap_allocate(u4 size, bool references, methodinfo *finalizer)
64 {
65         void *m;
66
67         mmapptr = (void *) MEMORY_ALIGN((ptrint) mmapptr, ALIGNSIZE);
68         
69         m = mmapptr;
70         mmapptr = (void *) ((ptrint) mmapptr + size);
71
72         if (mmapptr > mmaptop)
73 <<<<<<< .working
74                 vm_abort("heap_allocate: out of memory");
75 =======
76                 exceptions_throw_outofmemoryerror();
77 >>>>>>> .merge-right.r7379
78
79         MSET(m, 0, u1, size);
80
81         return m;
82 }
83
84
85 void *heap_alloc_uncollectable(u4 size)
86 {
87         return heap_allocate(size, false, NULL);
88 }
89
90
91 void heap_free(void *p)
92 {
93         /* nop */
94 }
95
96
97
98 void gc_init(u4 heapmaxsize, u4 heapstartsize)
99 {
100         heapmaxsize = MEMORY_ALIGN(heapmaxsize, ALIGNSIZE);
101
102         mmapptr = mmap((void *) MMAP_HEAPADDRESS,
103                                    (size_t) heapmaxsize,
104                                    PROT_READ | PROT_WRITE,
105                                    MAP_PRIVATE |
106 # if defined(MAP_ANONYMOUS)
107                                    MAP_ANONYMOUS,
108 # elif defined(MAP_ANON)
109                                    MAP_ANON,
110 # else
111                                    0,
112 # endif
113                                    -1,
114                                    (off_t) 0);
115
116         if (mmapptr == MAP_FAILED)
117 <<<<<<< .working
118                 vm_abort("gc_init: out of memory");
119 =======
120                 exceptions_throw_outofmemoryerror();
121 >>>>>>> .merge-right.r7379
122
123         mmapsize = heapmaxsize;
124         mmaptop = (void *) ((ptrint) mmapptr + mmapsize);
125 }
126
127
128 void gc_call(void)
129 {
130         log_text("GC call: nothing done...");
131         /* nop */
132 }
133
134
135 s8 gc_get_heap_size(void)
136 {
137         return 0;
138 }
139
140
141 s8 gc_get_free_bytes(void)
142 {
143         return 0;
144 }
145
146
147 s8 gc_get_total_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  */