| Index: src/platform-win32.cc
|
| diff --git a/src/platform-win32.cc b/src/platform-win32.cc
|
| index c441b96ce48fedfab29d49a4f0c8d0d157e4bf57..c67b6939f439337e654451f1d6e00927923ad8f7 100644
|
| --- a/src/platform-win32.cc
|
| +++ b/src/platform-win32.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
| +// Copyright 2011 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -1465,24 +1465,57 @@ void OS::ReleaseStore(volatile AtomicWord* ptr, AtomicWord value) {
|
| }
|
|
|
|
|
| -bool VirtualMemory::IsReserved() {
|
| - return address_ != NULL;
|
| -}
|
| +VirtualMemory::VirtualMemory() : address_(NULL), size_(0) { }
|
| +
|
|
|
| +VirtualMemory::VirtualMemory(size_t size)
|
| + : address_(ReserveRegion(size)), size_(size) { }
|
|
|
| -VirtualMemory::VirtualMemory(size_t size) {
|
| - address_ = ReserveRegion(size);
|
| - size_ = size;
|
| +
|
| +VirtualMemory::VirtualMemory(size_t size, size_t alignment)
|
| + : address_(NULL), size_(0) {
|
| + ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
|
| + size_t request_size = RoundUp(size + alignment,
|
| + static_cast<intptr_t>(OS::AllocateAlignment()));
|
| + void* address = ReserveRegion(reserve_size);
|
| + if (address == NULL) return;
|
| + Address base = RoundUp(static_cast<Address>(address), alignment);
|
| + // Try reducing the size by freeing and then reallocating a specific area.
|
| + ReleaseRegion(address, request_size);
|
| + address = VirtualAlloc(base, size, MEM_RESERVE, PAGE_NOACCESS);
|
| + if (address != NULL) {
|
| + request_size = size;
|
| + ASSERT(base == static_cast<Address>(address));
|
| + } else {
|
| + // Resizing failed, just go with a bigger area.
|
| + address = ReserveRegion(reserve_size);
|
| + if (address == NULL) return;
|
| + }
|
| + address_ = address;
|
| + size_ = request_size;
|
| }
|
|
|
|
|
| VirtualMemory::~VirtualMemory() {
|
| if (IsReserved()) {
|
| - if (0 == VirtualFree(address(), 0, MEM_RELEASE)) address_ = NULL;
|
| + bool result = ReleaseRegion(address_, size_);
|
| + ASSERT(result);
|
| + USE(result);
|
| }
|
| }
|
|
|
|
|
| +bool VirtualMemory::IsReserved() {
|
| + return address_ != NULL;
|
| +}
|
| +
|
| +
|
| +void VirtualMemory::Reset() {
|
| + address_ = NULL;
|
| + size_ = 0;
|
| +}
|
| +
|
| +
|
| bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {
|
| if (CommitRegion(address, size, is_executable)) {
|
| UpdateAllocatedSpaceLimits(address, static_cast<int>(size));
|
| @@ -1515,12 +1548,12 @@ bool VirtualMemory::CommitRegion(void* base, size_t size, bool is_executable) {
|
|
|
|
|
| bool VirtualMemory::UncommitRegion(void* base, size_t size) {
|
| - return VirtualFree(base, size, MEM_DECOMMIT) != false;
|
| + return VirtualFree(base, size, MEM_DECOMMIT) != 0;
|
| }
|
|
|
|
|
| bool VirtualMemory::ReleaseRegion(void* base, size_t size) {
|
| - return VirtualFree(base, size, MEM_DECOMMIT) != false;
|
| + return VirtualFree(base, 0, MEM_RELEASE) != 0;
|
| }
|
|
|
|
|
|
|