From a4bf5c046da56cb0e8b6936c106b9b3d3d9b9fd0 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Sat, 22 Mar 2008 02:33:53 +0000 Subject: Add an AllocateRW to match AllocateRWX. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48676 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Win32/Memory.inc | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'lib/System/Win32') diff --git a/lib/System/Win32/Memory.inc b/lib/System/Win32/Memory.inc index eed2b100e6..12627521a3 100644 --- a/lib/System/Win32/Memory.inc +++ b/lib/System/Win32/Memory.inc @@ -46,6 +46,29 @@ MemoryBlock Memory::AllocateRWX(unsigned NumBytes, return result; } +MemoryBlock Memory::AllocateRW(unsigned NumBytes, + const MemoryBlock *NearBlock, + std::string *ErrMsg) { + if (NumBytes == 0) return MemoryBlock(); + + static const long pageSize = Process::GetPageSize(); + unsigned NumPages = (NumBytes+pageSize-1)/pageSize; + + //FIXME: support NearBlock if ever needed on Win64. + + void *pa = VirtualAlloc(NULL, NumPages*pageSize, MEM_COMMIT, + PAGE_READWRITE); + if (pa == NULL) { + MakeErrMsg(ErrMsg, "Can't allocate RWX Memory: "); + return MemoryBlock(); + } + + MemoryBlock result; + result.Address = pa; + result.Size = NumPages*pageSize; + return result; +} + bool Memory::ReleaseRWX(MemoryBlock &M, std::string *ErrMsg) { if (M.Address == 0 || M.Size == 0) return false; if (!VirtualFree(M.Address, 0, MEM_RELEASE)) -- cgit v1.2.3