2 * This module contains allocation functions for the garbage collector.
4 * Copyright: Copyright (C) 2005-2006 Digital Mars, www.digitalmars.com.
7 * This software is provided 'as-is', without any express or implied
8 * warranty. In no event will the authors be held liable for any damages
9 * arising from the use of this software.
11 * Permission is granted to anyone to use this software for any purpose,
12 * including commercial applications, and to alter it and redistribute it
13 * freely, in both source and binary form, subject to the following
16 * o The origin of this software must not be misrepresented; you must not
17 * claim that you wrote the original software. If you use this software
18 * in a product, an acknowledgment in the product documentation would be
19 * appreciated but is not required.
20 * o Altered source versions must be plainly marked as such, and must not
21 * be misrepresented as being the original software.
22 * o This notice may not be removed or altered from any source
24 * Authors: Walter Bright, David Friedman, Sean Kelly
43 LPVOID VirtualAlloc(LPVOID, DWORD, DWORD, DWORD);
44 WINBOOL VirtualFree(LPVOID, DWORD, DWORD);
46 else version (Posix) {
47 version (linux) enum: bool { OPTIONAL_LARGEFILE_SUPPORT = true }
48 else version (solaris) enum: bool { OPTIONAL_LARGEFILE_SUPPORT = true }
49 else enum: bool { OPTIONAL_LARGEFILE_SUPPORT = false }
50 static if (OPTIONAL_LARGEFILE_SUPPORT)
51 enum: bool { USE_LARGEFILE64 = ((void*).sizeof == 4) }
53 enum: bool { USE_LARGEFILE64 = false }
54 static if (USE_LARGEFILE64 || (void*).sizeof > int.sizeof)
67 const MAP_FAILED = cast(void*) -1;
68 // Non-standard, but needed
69 version (linux) { enum: int { MAP_ANON = 0x20 } }
70 else version (darwin) { enum: int { MAP_ANON = 0x1000 } }
71 else version (freebsd) { enum: int { MAP_ANON = 0x1000 } }
72 else version (solaris) { enum: int { MAP_ANON = 0x100 } }
73 void* mmap(void*, size_t, int, int, int, off_t);
74 int munmap(void*, size_t);
82 static if (is(typeof(VirtualAlloc)))
87 void *os_mem_map(size_t nbytes)
89 return VirtualAlloc(null, nbytes, MEM_RESERVE, PAGE_READWRITE);
99 int os_mem_commit(void *base, size_t offset, size_t nbytes)
102 p = VirtualAlloc(base + offset, nbytes, MEM_COMMIT, PAGE_READWRITE);
103 return cast(int)(p is null);
113 int os_mem_decommit(void *base, size_t offset, size_t nbytes)
115 return cast(int)(VirtualFree(base + offset, nbytes, MEM_DECOMMIT) == 0);
120 * Unmap memory allocated with os_mem_map().
121 * Memory must have already been decommitted.
126 int os_mem_unmap(void *base, size_t nbytes)
128 return cast(int)(VirtualFree(base, 0, MEM_RELEASE) == 0);
131 else static if (is(typeof(mmap)) && is(typeof(MAP_ANON)))
133 void *os_mem_map(size_t nbytes)
136 p = mmap(null, nbytes, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
137 return (p == MAP_FAILED) ? null : p;
141 int os_mem_commit(void *base, size_t offset, size_t nbytes)
147 int os_mem_decommit(void *base, size_t offset, size_t nbytes)
153 int os_mem_unmap(void *base, size_t nbytes)
155 return munmap(base, nbytes);
158 else static if (is(typeof(malloc)))
160 // NOTE: This assumes malloc granularity is at least (void*).sizeof. If
161 // (req_size + PAGESIZE) is allocated, and the pointer is rounded up
162 // to PAGESIZE alignment, there will be space for a void* at the end
163 // after PAGESIZE bytes used by the GC.
166 import gcx; // for PAGESIZE
169 const size_t PAGE_MASK = PAGESIZE - 1;
172 void *os_mem_map(size_t nbytes)
174 p = cast(byte *) malloc(nbytes + PAGESIZE);
175 q = p + ((PAGESIZE - ((cast(size_t) p & PAGE_MASK))) & PAGE_MASK);
176 * cast(void**)(q + nbytes) = p;
181 int os_mem_commit(void *base, size_t offset, size_t nbytes)
187 int os_mem_decommit(void *base, size_t offset, size_t nbytes)
193 int os_mem_unmap(void *base, size_t nbytes)
195 free( *cast(void**)( cast(byte*) base + nbytes ) );
201 static assert(false, "No supported allocation methods available.");