1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
/**
* Contains OS-level routines needed by the garbage collector.
*
* Copyright: D Language Foundation 2005 - 2021.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright, David Friedman, Sean Kelly, Leandro Lucarella
*/
module core.internal.gc.os;
version (Windows)
{
import core.sys.windows.winbase : GetCurrentThreadId, VirtualAlloc, VirtualFree;
import core.sys.windows.winnt : MEM_COMMIT, MEM_RELEASE, MEM_RESERVE, PAGE_READWRITE;
alias int pthread_t;
pthread_t pthread_self() nothrow
{
return cast(pthread_t) GetCurrentThreadId();
}
//version = GC_Use_Alloc_Win32;
}
else version (Posix)
{
version (OSX)
version = Darwin;
else version (iOS)
version = Darwin;
else version (TVOS)
version = Darwin;
else version (WatchOS)
version = Darwin;
import core.sys.posix.sys.mman;
import core.stdc.stdlib;
/// Possible results for the wait_pid() function.
enum ChildStatus
{
done, /// The process has finished successfully
running, /// The process is still running
error /// There was an error waiting for the process
}
/**
* Wait for a process with PID pid to finish.
*
* If block is false, this function will not block, and return ChildStatus.running if
* the process is still running. Otherwise it will return always ChildStatus.done
* (unless there is an error, in which case ChildStatus.error is returned).
*/
ChildStatus wait_pid(pid_t pid, bool block = true) nothrow @nogc
{
import core.exception : onForkError;
int status = void;
pid_t waited_pid = void;
// In the case where we are blocking, we need to consider signals
// arriving while we wait, and resume the waiting if EINTR is returned
do {
errno = 0;
waited_pid = waitpid(pid, &status, block ? 0 : WNOHANG);
}
while (waited_pid == -1 && errno == EINTR);
if (waited_pid == 0)
return ChildStatus.running;
else if (errno == ECHILD)
return ChildStatus.done; // someone called posix.syswait
else if (waited_pid != pid || status != 0)
onForkError();
return ChildStatus.done;
}
public import core.sys.posix.unistd: pid_t, fork;
import core.sys.posix.sys.wait: waitpid, WNOHANG;
import core.stdc.errno: errno, EINTR, ECHILD;
//version = GC_Use_Alloc_MMap;
}
else
{
import core.stdc.stdlib;
//version = GC_Use_Alloc_Malloc;
}
/+
static if (is(typeof(VirtualAlloc)))
version = GC_Use_Alloc_Win32;
else static if (is(typeof(mmap)))
version = GC_Use_Alloc_MMap;
else static if (is(typeof(valloc)))
version = GC_Use_Alloc_Valloc;
else static if (is(typeof(malloc)))
version = GC_Use_Alloc_Malloc;
else static assert(false, "No supported allocation methods available.");
+/
static if (is(typeof(VirtualAlloc))) // version (GC_Use_Alloc_Win32)
{
/**
* Indicates if an implementation supports fork().
*
* The value shown here is just demostrative, the real value is defined based
* on the OS it's being compiled in.
* enum HaveFork = true;
*/
enum HaveFork = false;
/**
* Map memory.
*/
void *os_mem_map(size_t nbytes) nothrow @nogc
{
return VirtualAlloc(null, nbytes, MEM_RESERVE | MEM_COMMIT,
PAGE_READWRITE);
}
/**
* Unmap memory allocated with os_mem_map().
* Returns:
* 0 success
* !=0 failure
*/
int os_mem_unmap(void *base, size_t nbytes) nothrow @nogc
{
return cast(int)(VirtualFree(base, 0, MEM_RELEASE) == 0);
}
}
else static if (is(typeof(mmap))) // else version (GC_Use_Alloc_MMap)
{
enum HaveFork = true;
void *os_mem_map(size_t nbytes, bool share = false) nothrow @nogc
{ void *p;
auto map_f = share ? MAP_SHARED : MAP_PRIVATE;
p = mmap(null, nbytes, PROT_READ | PROT_WRITE, map_f | MAP_ANON, -1, 0);
return (p == MAP_FAILED) ? null : p;
}
int os_mem_unmap(void *base, size_t nbytes) nothrow @nogc
{
return munmap(base, nbytes);
}
}
else static if (is(typeof(valloc))) // else version (GC_Use_Alloc_Valloc)
{
enum HaveFork = false;
void *os_mem_map(size_t nbytes) nothrow @nogc
{
return valloc(nbytes);
}
int os_mem_unmap(void *base, size_t nbytes) nothrow @nogc
{
free(base);
return 0;
}
}
else static if (is(typeof(malloc))) // else version (GC_Use_Alloc_Malloc)
{
// NOTE: This assumes malloc granularity is at least (void*).sizeof. If
// (req_size + PAGESIZE) is allocated, and the pointer is rounded up
// to PAGESIZE alignment, there will be space for a void* at the end
// after PAGESIZE bytes used by the GC.
enum HaveFork = false;
import core.internal.gc.impl.conservative.gc;
const size_t PAGE_MASK = PAGESIZE - 1;
void *os_mem_map(size_t nbytes) nothrow @nogc
{ byte *p, q;
p = cast(byte *) malloc(nbytes + PAGESIZE);
if (!p)
return null;
q = p + ((PAGESIZE - ((cast(size_t) p & PAGE_MASK))) & PAGE_MASK);
* cast(void**)(q + nbytes) = p;
return q;
}
int os_mem_unmap(void *base, size_t nbytes) nothrow @nogc
{
free( *cast(void**)( cast(byte*) base + nbytes ) );
return 0;
}
}
else
{
static assert(false, "No supported allocation methods available.");
}
/**
Check for any kind of memory pressure.
Params:
mapped = the amount of memory mapped by the GC in bytes
Returns:
true if memory is scarce
*/
// TODO: get virtual mem sizes and current usage from OS
// TODO: compare current RSS and avail. physical memory
bool isLowOnMem(size_t mapped) nothrow @nogc
{
version (Windows)
{
import core.sys.windows.winbase : GlobalMemoryStatusEx, MEMORYSTATUSEX;
MEMORYSTATUSEX stat;
stat.dwLength = stat.sizeof;
const success = GlobalMemoryStatusEx(&stat) != 0;
assert(success, "GlobalMemoryStatusEx() failed");
if (!success)
return false;
// dwMemoryLoad is the 'approximate percentage of physical memory that is in use'
// https://docs.microsoft.com/en-us/windows/win32/api/sysinfoapi/ns-sysinfoapi-memorystatusex
const percentPhysicalRAM = stat.ullTotalPhys / 100;
return (stat.dwMemoryLoad >= 95 && mapped > percentPhysicalRAM)
|| (stat.dwMemoryLoad >= 90 && mapped > 10 * percentPhysicalRAM);
}
else
{
enum GB = 2 ^^ 30;
version (D_LP64)
return false;
else version (Darwin)
{
// 80 % of available 4GB is used for GC (excluding malloc and mmap)
enum size_t limit = 4UL * GB * 8 / 10;
return mapped > limit;
}
else
{
// be conservative and assume 3GB
enum size_t limit = 3UL * GB * 8 / 10;
return mapped > limit;
}
}
}
/**
Get the size of available physical memory
Params:
avail = if supported on the current platform, return the currently unused memory
rather than the installed physical memory
Returns:
size of installed physical RAM
*/
version (Windows)
{
ulong os_physical_mem(bool avail) nothrow @nogc
{
import core.sys.windows.winbase : GlobalMemoryStatus, MEMORYSTATUS;
MEMORYSTATUS stat;
GlobalMemoryStatus(&stat);
return avail ? stat.dwAvailPhys : stat.dwTotalPhys; // limited to 4GB for Win32
}
}
else version (Darwin)
{
extern (C) int sysctl(const int* name, uint namelen, void* oldp, size_t* oldlenp, const void* newp, size_t newlen) @nogc nothrow;
ulong os_physical_mem(bool avail) nothrow @nogc
{
enum
{
CTL_HW = 6,
HW_MEMSIZE = 24,
}
int[2] mib = [ CTL_HW, HW_MEMSIZE ];
ulong system_memory_bytes;
size_t len = system_memory_bytes.sizeof;
if (sysctl(mib.ptr, 2, &system_memory_bytes, &len, null, 0) != 0)
return 0;
return system_memory_bytes;
}
}
else version (Posix)
{
ulong os_physical_mem(bool avail) nothrow @nogc
{
import core.sys.posix.unistd;
const pageSize = sysconf(_SC_PAGESIZE);
static if (__traits(compiles, _SC_AVPHYS_PAGES)) // not available on all platforms
const sc = avail ? _SC_AVPHYS_PAGES : _SC_PHYS_PAGES;
else
const sc = _SC_PHYS_PAGES;
const pages = sysconf(sc);
return pageSize * pages;
}
}
|