Reid Spencer | cbad701 | 2004-09-11 04:59:30 +0000 | [diff] [blame^] | 1 | //===- AIX/Memory.cpp - AIX Memory Implementation ---------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Reid Spencer and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file provides the AIX specific implementation of various Memory |
| 11 | // management utilities |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | // Include the generic unix implementation |
| 16 | #include "../Unix/Memory.cpp" |
| 17 | #include "llvm/System/Process.h" |
| 18 | #include <sys/types.h> |
| 19 | #include <sys/mman.h> |
| 20 | |
| 21 | namespace llvm { |
| 22 | using namespace sys; |
| 23 | |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | //=== WARNING: Implementation here must contain only AIX specific code |
| 26 | //=== and must not be generic UNIX code (see ../Unix/Memory.cpp) |
| 27 | //===----------------------------------------------------------------------===// |
| 28 | |
| 29 | void* Memory::AllocateRWX(Memory& M, unsigned NumBytes) { |
| 30 | if (NumBytes == 0) return 0; |
| 31 | |
| 32 | static const long pageSize = Process::GetPageSize(); |
| 33 | unsigned NumPages = (NumBytes+pageSize-1)/pageSize; |
| 34 | |
| 35 | void *pa = mmap(0, pageSize*NumPages, PROT_READ|PROT_WRITE|PROT_EXEC, |
| 36 | MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); |
| 37 | if (pa == (void*)-1) { |
| 38 | throw std::string("Can't allocate RWX Memory: ") + strerror(errno); |
| 39 | } |
| 40 | M.Address = pa; |
| 41 | M.AllocSize = NumPages*pageSize; |
| 42 | return pa; |
| 43 | } |
| 44 | |
| 45 | void Memory::ReleaseRWX(Memory& M) { |
| 46 | if (M.Address == 0 || M.AllocSize == 0) return; |
| 47 | if (0 != munmap(M.Address, M.AllocSize)) { |
| 48 | throw std::string("Can't release RWX Memory: ") + sterror(errno); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | } |
| 53 | |
| 54 | // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab |