summaryrefslogtreecommitdiff
path: root/lib/Support/Windows/Memory.inc
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-10-15 01:58:16 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-10-15 01:58:16 +0000
commitc5c36765e6ff3207576571e6c75b6e44cd5e9331 (patch)
tree182b1e3c2c9569ae1bf0d0e90917897774a2098d /lib/Support/Windows/Memory.inc
parent513b1f47c1ddef0638bd63399bf64965e592c2bf (diff)
downloadllvm-c5c36765e6ff3207576571e6c75b6e44cd5e9331.tar.gz
llvm-c5c36765e6ff3207576571e6c75b6e44cd5e9331.tar.bz2
llvm-c5c36765e6ff3207576571e6c75b6e44cd5e9331.tar.xz
Windows/Memory.inc: Support the ability to allocate memory "near" another block of memory on Win32. It has fixed FIXME.
Thanks to Aaron Ballman! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142039 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Windows/Memory.inc')
-rw-r--r--lib/Support/Windows/Memory.inc9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/Support/Windows/Memory.inc b/lib/Support/Windows/Memory.inc
index 8609d39dd6..fcc72837c4 100644
--- a/lib/Support/Windows/Memory.inc
+++ b/lib/Support/Windows/Memory.inc
@@ -32,11 +32,16 @@ MemoryBlock Memory::AllocateRWX(size_t NumBytes,
static const size_t pageSize = Process::GetPageSize();
size_t NumPages = (NumBytes+pageSize-1)/pageSize;
- //FIXME: support NearBlock if ever needed on Win64.
+ PVOID start = NearBlock ? static_cast<unsigned char *>(NearBlock->base()) +
+ NearBlock->size() : NULL;
- void *pa = VirtualAlloc(NULL, NumPages*pageSize, MEM_COMMIT,
+ void *pa = VirtualAlloc(start, NumPages*pageSize, MEM_RESERVE | MEM_COMMIT,
PAGE_EXECUTE_READWRITE);
if (pa == NULL) {
+ if (NearBlock) {
+ // Try again without the NearBlock hint
+ return AllocateRWX(NumBytes, NULL, ErrMsg);
+ }
MakeErrMsg(ErrMsg, "Can't allocate RWX Memory: ");
return MemoryBlock();
}