blob: eb2d10b3f9d911b5d0fbd607766724d5fa203f8b [file] [log] [blame]
ulan@chromium.org2efb9002012-01-19 15:36:35 +00001// Copyright 2012 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000028// Platform specific code for Linux goes here. For the POSIX comaptible parts
29// the implementation is in platform-posix.cc.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000030
31#include <pthread.h>
32#include <semaphore.h>
33#include <signal.h>
lrn@chromium.org5d00b602011-01-05 09:51:43 +000034#include <sys/prctl.h>
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000035#include <sys/time.h>
36#include <sys/resource.h>
lrn@chromium.org303ada72010-10-27 09:33:13 +000037#include <sys/syscall.h>
ager@chromium.org381abbb2009-02-25 13:23:22 +000038#include <sys/types.h>
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039#include <stdlib.h>
40
41// Ubuntu Dapper requires memory pages to be marked as
42// executable. Otherwise, OS raises an exception when executing code
43// in that page.
44#include <sys/types.h> // mmap & munmap
ager@chromium.org236ad962008-09-25 09:45:57 +000045#include <sys/mman.h> // mmap & munmap
46#include <sys/stat.h> // open
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000047#include <fcntl.h> // open
48#include <unistd.h> // sysconf
ager@chromium.org236ad962008-09-25 09:45:57 +000049#include <strings.h> // index
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000050#include <errno.h>
51#include <stdarg.h>
52
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +000053// GLibc on ARM defines mcontext_t has a typedef for 'struct sigcontext'.
54// Old versions of the C library <signal.h> didn't define the type.
55#if defined(__ANDROID__) && !defined(__BIONIC_HAVE_UCONTEXT_T) && \
56 defined(__arm__) && !defined(__BIONIC_HAVE_STRUCT_SIGCONTEXT)
57#include <asm/sigcontext.h>
58#endif
59
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000060#undef MAP_TYPE
61
62#include "v8.h"
63
64#include "platform.h"
ager@chromium.orga1645e22009-09-09 19:27:10 +000065#include "v8threads.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000066#include "vm-state-inl.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000067
68
kasperl@chromium.org71affb52009-05-26 05:44:31 +000069namespace v8 {
70namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000071
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000072
ager@chromium.orgc4c92722009-11-18 14:12:51 +000073#ifdef __arm__
danno@chromium.org169691d2013-07-15 08:01:13 +000074
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000075bool OS::ArmUsingHardFloat() {
yangguo@chromium.orgc74d6742012-06-29 15:15:45 +000076 // GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
77 // the Floating Point ABI used (PCS stands for Procedure Call Standard).
78 // We use these as well as a couple of other defines to statically determine
79 // what FP ABI used.
80 // GCC versions 4.4 and below don't support hard-fp.
81 // GCC versions 4.5 may support hard-fp without defining __ARM_PCS or
82 // __ARM_PCS_VFP.
83
84#define GCC_VERSION (__GNUC__ * 10000 \
85 + __GNUC_MINOR__ * 100 \
86 + __GNUC_PATCHLEVEL__)
87#if GCC_VERSION >= 40600
88#if defined(__ARM_PCS_VFP)
89 return true;
90#else
91 return false;
92#endif
93
94#elif GCC_VERSION < 40500
95 return false;
96
97#else
98#if defined(__ARM_PCS_VFP)
99 return true;
danno@chromium.org59400602013-08-13 17:09:37 +0000100#elif defined(__ARM_PCS) || defined(__SOFTFP__) || defined(__SOFTFP) || \
101 !defined(__VFP_FP__)
yangguo@chromium.orgc74d6742012-06-29 15:15:45 +0000102 return false;
103#else
104#error "Your version of GCC does not report the FP ABI compiled for." \
105 "Please report it on this issue" \
106 "http://code.google.com/p/v8/issues/detail?id=2140"
107
108#endif
109#endif
110#undef GCC_VERSION
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000111}
yangguo@chromium.orgc74d6742012-06-29 15:15:45 +0000112
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000113#endif // def __arm__
114
115
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000116const char* OS::LocalTimezone(double time) {
ulan@chromium.org77ca49a2013-04-22 09:43:56 +0000117 if (std::isnan(time)) return "";
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000118 time_t tv = static_cast<time_t>(floor(time/msPerSecond));
119 struct tm* t = localtime(&tv);
120 if (NULL == t) return "";
121 return t->tm_zone;
122}
123
124
125double OS::LocalTimeOffset() {
126 time_t tv = time(NULL);
127 struct tm* t = localtime(&tv);
128 // tm_gmtoff includes any daylight savings offset, so subtract it.
129 return static_cast<double>(t->tm_gmtoff * msPerSecond -
130 (t->tm_isdst > 0 ? 3600 * msPerSecond : 0));
131}
132
133
kasper.lund7276f142008-07-30 08:49:36 +0000134void* OS::Allocate(const size_t requested,
135 size_t* allocated,
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000136 bool is_executable) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000137 const size_t msize = RoundUp(requested, AllocateAlignment());
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000138 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000139 void* addr = OS::GetRandomMmapAddr();
ricow@chromium.org9fa09672011-07-25 11:05:35 +0000140 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000141 if (mbase == MAP_FAILED) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000142 LOG(i::Isolate::Current(),
143 StringEvent("OS::Allocate", "mmap failed"));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000144 return NULL;
145 }
146 *allocated = msize;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000147 return mbase;
148}
149
150
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000151class PosixMemoryMappedFile : public OS::MemoryMappedFile {
152 public:
153 PosixMemoryMappedFile(FILE* file, void* memory, int size)
154 : file_(file), memory_(memory), size_(size) { }
155 virtual ~PosixMemoryMappedFile();
156 virtual void* memory() { return memory_; }
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000157 virtual int size() { return size_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000158 private:
159 FILE* file_;
160 void* memory_;
161 int size_;
162};
163
164
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000165OS::MemoryMappedFile* OS::MemoryMappedFile::open(const char* name) {
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +0000166 FILE* file = fopen(name, "r+");
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000167 if (file == NULL) return NULL;
168
169 fseek(file, 0, SEEK_END);
170 int size = ftell(file);
171
172 void* memory =
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000173 mmap(OS::GetRandomMmapAddr(),
174 size,
175 PROT_READ | PROT_WRITE,
176 MAP_SHARED,
177 fileno(file),
178 0);
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000179 return new PosixMemoryMappedFile(file, memory, size);
180}
181
182
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000183OS::MemoryMappedFile* OS::MemoryMappedFile::create(const char* name, int size,
184 void* initial) {
185 FILE* file = fopen(name, "w+");
186 if (file == NULL) return NULL;
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000187 int result = fwrite(initial, size, 1, file);
188 if (result < 1) {
189 fclose(file);
190 return NULL;
191 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000192 void* memory =
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000193 mmap(OS::GetRandomMmapAddr(),
194 size,
195 PROT_READ | PROT_WRITE,
196 MAP_SHARED,
197 fileno(file),
198 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000199 return new PosixMemoryMappedFile(file, memory, size);
200}
201
202
203PosixMemoryMappedFile::~PosixMemoryMappedFile() {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000204 if (memory_) OS::Free(memory_, size_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000205 fclose(file_);
206}
207
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000208
dslomov@chromium.orge97852d2013-09-12 09:02:59 +0000209void OS::LogSharedLibraryAddresses(Isolate* isolate) {
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000210 // This function assumes that the layout of the file is as follows:
211 // hex_start_addr-hex_end_addr rwxp <unused data> [binary_file_name]
212 // If we encounter an unexpected situation we abort scanning further entries.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000213 FILE* fp = fopen("/proc/self/maps", "r");
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000214 if (fp == NULL) return;
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000215
216 // Allocate enough room to be able to store a full file name.
217 const int kLibNameLen = FILENAME_MAX + 1;
218 char* lib_name = reinterpret_cast<char*>(malloc(kLibNameLen));
219
220 // This loop will terminate once the scanning hits an EOF.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000221 while (true) {
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000222 uintptr_t start, end;
223 char attr_r, attr_w, attr_x, attr_p;
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000224 // Parse the addresses and permission bits at the beginning of the line.
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000225 if (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &start, &end) != 2) break;
226 if (fscanf(fp, " %c%c%c%c", &attr_r, &attr_w, &attr_x, &attr_p) != 4) break;
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000227
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000228 int c;
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000229 if (attr_r == 'r' && attr_w != 'w' && attr_x == 'x') {
230 // Found a read-only executable entry. Skip characters until we reach
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000231 // the beginning of the filename or the end of the line.
232 do {
233 c = getc(fp);
yangguo@chromium.org46a2a512013-01-18 16:29:40 +0000234 } while ((c != EOF) && (c != '\n') && (c != '/') && (c != '['));
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000235 if (c == EOF) break; // EOF: Was unexpected, just exit.
236
237 // Process the filename if found.
yangguo@chromium.org46a2a512013-01-18 16:29:40 +0000238 if ((c == '/') || (c == '[')) {
239 // Push the '/' or '[' back into the stream to be read below.
240 ungetc(c, fp);
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000241
242 // Read to the end of the line. Exit if the read fails.
243 if (fgets(lib_name, kLibNameLen, fp) == NULL) break;
244
245 // Drop the newline character read by fgets. We do not need to check
246 // for a zero-length string because we know that we at least read the
yangguo@chromium.org46a2a512013-01-18 16:29:40 +0000247 // '/' or '[' character.
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000248 lib_name[strlen(lib_name) - 1] = '\0';
249 } else {
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000250 // No library name found, just record the raw address range.
251 snprintf(lib_name, kLibNameLen,
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000252 "%08" V8PRIxPTR "-%08" V8PRIxPTR, start, end);
253 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000254 LOG(isolate, SharedLibraryEvent(lib_name, start, end));
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000255 } else {
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000256 // Entry not describing executable data. Skip to end of line to set up
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000257 // reading the next entry.
258 do {
259 c = getc(fp);
260 } while ((c != EOF) && (c != '\n'));
261 if (c == EOF) break;
ager@chromium.org5aa501c2009-06-23 07:57:28 +0000262 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000263 }
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000264 free(lib_name);
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000265 fclose(fp);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000266}
267
268
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000269void OS::SignalCodeMovingGC() {
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000270 // Support for ll_prof.py.
271 //
272 // The Linux profiler built into the kernel logs all mmap's with
273 // PROT_EXEC so that analysis tools can properly attribute ticks. We
274 // do a mmap with a name known by ll_prof.py and immediately munmap
275 // it. This injects a GC marker into the stream of events generated
276 // by the kernel and allows us to synchronize V8 code log and the
277 // kernel log.
278 int size = sysconf(_SC_PAGESIZE);
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +0000279 FILE* f = fopen(FLAG_gc_fake_mmap, "w+");
rossberg@chromium.orgb99c7542013-05-31 11:40:45 +0000280 if (f == NULL) {
281 OS::PrintError("Failed to open %s\n", FLAG_gc_fake_mmap);
282 OS::Abort();
283 }
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000284 void* addr = mmap(OS::GetRandomMmapAddr(),
285 size,
jkummerow@chromium.orgba72ec82013-07-22 09:21:20 +0000286#if defined(__native_client__)
287 // The Native Client port of V8 uses an interpreter,
288 // so code pages don't need PROT_EXEC.
289 PROT_READ,
290#else
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000291 PROT_READ | PROT_EXEC,
jkummerow@chromium.orgba72ec82013-07-22 09:21:20 +0000292#endif
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000293 MAP_PRIVATE,
294 fileno(f),
295 0);
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000296 ASSERT(addr != MAP_FAILED);
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000297 OS::Free(addr, size);
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000298 fclose(f);
whesse@chromium.org4a5224e2010-10-20 12:37:07 +0000299}
300
301
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000302// Constants used for mmap.
303static const int kMmapFd = -1;
304static const int kMmapFdOffset = 0;
305
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +0000306
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000307VirtualMemory::VirtualMemory() : address_(NULL), size_(0) { }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000308
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +0000309
310VirtualMemory::VirtualMemory(size_t size)
311 : address_(ReserveRegion(size)), size_(size) { }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000312
313
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000314VirtualMemory::VirtualMemory(size_t size, size_t alignment)
315 : address_(NULL), size_(0) {
316 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
317 size_t request_size = RoundUp(size + alignment,
318 static_cast<intptr_t>(OS::AllocateAlignment()));
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000319 void* reservation = mmap(OS::GetRandomMmapAddr(),
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000320 request_size,
321 PROT_NONE,
322 MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE,
323 kMmapFd,
324 kMmapFdOffset);
325 if (reservation == MAP_FAILED) return;
326
327 Address base = static_cast<Address>(reservation);
328 Address aligned_base = RoundUp(base, alignment);
329 ASSERT_LE(base, aligned_base);
330
331 // Unmap extra memory reserved before and after the desired block.
332 if (aligned_base != base) {
333 size_t prefix_size = static_cast<size_t>(aligned_base - base);
334 OS::Free(base, prefix_size);
335 request_size -= prefix_size;
336 }
337
338 size_t aligned_size = RoundUp(size, OS::AllocateAlignment());
339 ASSERT_LE(aligned_size, request_size);
340
341 if (aligned_size != request_size) {
342 size_t suffix_size = request_size - aligned_size;
343 OS::Free(aligned_base + aligned_size, suffix_size);
344 request_size -= suffix_size;
345 }
346
347 ASSERT(aligned_size == request_size);
348
349 address_ = static_cast<void*>(aligned_base);
350 size_ = aligned_size;
351}
352
353
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000354VirtualMemory::~VirtualMemory() {
355 if (IsReserved()) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000356 bool result = ReleaseRegion(address(), size());
357 ASSERT(result);
358 USE(result);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000359 }
360}
361
362
363bool VirtualMemory::IsReserved() {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000364 return address_ != NULL;
365}
366
367
368void VirtualMemory::Reset() {
369 address_ = NULL;
370 size_ = 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000371}
372
373
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +0000374bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000375 return CommitRegion(address, size, is_executable);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000376}
377
378
379bool VirtualMemory::Uncommit(void* address, size_t size) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000380 return UncommitRegion(address, size);
381}
382
383
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +0000384bool VirtualMemory::Guard(void* address) {
385 OS::Guard(address, OS::CommitPageSize());
386 return true;
387}
388
389
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000390void* VirtualMemory::ReserveRegion(size_t size) {
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000391 void* result = mmap(OS::GetRandomMmapAddr(),
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000392 size,
393 PROT_NONE,
394 MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE,
395 kMmapFd,
396 kMmapFdOffset);
397
398 if (result == MAP_FAILED) return NULL;
399
400 return result;
401}
402
403
404bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
jkummerow@chromium.orgba72ec82013-07-22 09:21:20 +0000405#if defined(__native_client__)
406 // The Native Client port of V8 uses an interpreter,
407 // so code pages don't need PROT_EXEC.
408 int prot = PROT_READ | PROT_WRITE;
409#else
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000410 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
jkummerow@chromium.orgba72ec82013-07-22 09:21:20 +0000411#endif
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000412 if (MAP_FAILED == mmap(base,
413 size,
414 prot,
415 MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED,
416 kMmapFd,
417 kMmapFdOffset)) {
418 return false;
419 }
420
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000421 return true;
422}
423
424
425bool VirtualMemory::UncommitRegion(void* base, size_t size) {
426 return mmap(base,
427 size,
428 PROT_NONE,
ager@chromium.orga1645e22009-09-09 19:27:10 +0000429 MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE | MAP_FIXED,
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000430 kMmapFd,
431 kMmapFdOffset) != MAP_FAILED;
432}
433
434
435bool VirtualMemory::ReleaseRegion(void* base, size_t size) {
436 return munmap(base, size) == 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000437}
438
439
danno@chromium.org72204d52012-10-31 10:02:10 +0000440bool VirtualMemory::HasLazyCommits() {
441 return true;
442}
443
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000444} } // namespace v8::internal