HugeAllocator.hxx 5.67 KB
Newer Older
1
/*
2
 * Copyright 2013-2019 Max Kellermann <max.kellermann@gmail.com>
3
 *
4 5 6
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
7
 *
8 9
 * - Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
10
 *
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * - Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the
 * distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
 * FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
28 29
 */

30 31
#ifndef HUGE_ALLOCATOR_HXX
#define HUGE_ALLOCATOR_HXX
32

33
#include "WritableBuffer.hxx"
34

35
#include <cstddef>
36
#include <utility>
37

38 39 40 41 42 43
#ifdef __linux__

/**
 * Allocate a huge amount of memory.  This will be done in a way that
 * allows giving the memory back to the kernel as soon as we don't
 * need it anymore.  On the downside, this call is expensive.
44 45
 *
 * Throws std::bad_alloc on error
46 47 48 49
 *
 * @returns the allocated buffer with a size which may be rounded up
 * (to the next page size), so callers can take advantage of this
 * allocation overhead
50
 */
51
WritableBuffer<void>
52
HugeAllocate(size_t size);
53 54 55 56 57 58

/**
 * @param p an allocation returned by HugeAllocate()
 * @param size the allocation's size as passed to HugeAllocate()
 */
void
59
HugeFree(void *p, size_t size) noexcept;
60

61 62 63 64 65 66 67
/**
 * Control whether this allocation is copied to newly forked child
 * processes.  Disabling that makes forking a little bit cheaper.
 */
void
HugeForkCow(void *p, size_t size, bool enable) noexcept;

68 69 70 71 72 73 74 75 76
/**
 * Discard any data stored in the allocation and give the memory back
 * to the kernel.  After returning, the allocation still exists and
 * can be reused at any time, but its contents are undefined.
 *
 * @param p an allocation returned by HugeAllocate()
 * @param size the allocation's size as passed to HugeAllocate()
 */
void
77
HugeDiscard(void *p, size_t size) noexcept;
78

79
#elif defined(_WIN32)
80 81
#include <windows.h>

82
WritableBuffer<void>
83
HugeAllocate(size_t size);
84 85

static inline void
86
HugeFree(void *p, size_t) noexcept
87 88 89 90
{
	VirtualFree(p, 0, MEM_RELEASE);
}

91 92 93 94 95
static inline void
HugeForkCow(void *, size_t, bool) noexcept
{
}

96
static inline void
97
HugeDiscard(void *p, size_t size) noexcept
98 99 100 101
{
	VirtualAlloc(p, size, MEM_RESET, PAGE_NOACCESS);
}

102 103 104 105
#else

/* not Linux: fall back to standard C calls */

106
#include <cstdint>
107

108
static inline WritableBuffer<void>
109
HugeAllocate(size_t size)
110
{
111
	return {new uint8_t[size], size};
112 113 114
}

static inline void
115
HugeFree(void *_p, size_t) noexcept
116
{
117 118
	auto *p = (uint8_t *)_p;
	delete[] p;
119 120
}

121 122 123 124 125
static inline void
HugeForkCow(void *, size_t, bool) noexcept
{
}

126
static inline void
127
HugeDiscard(void *, size_t) noexcept
128 129 130 131 132
{
}

#endif

133 134 135 136 137 138 139 140 141 142 143
/**
 * Automatic memory management for a dynamic array in "huge" memory.
 */
template<typename T>
class HugeArray {
	typedef WritableBuffer<T> Buffer;
	Buffer buffer{nullptr};

public:
	typedef typename Buffer::size_type size_type;
	typedef typename Buffer::value_type value_type;
144 145
	typedef typename Buffer::reference reference;
	typedef typename Buffer::const_reference const_reference;
146 147 148 149 150 151 152 153
	typedef typename Buffer::iterator iterator;
	typedef typename Buffer::const_iterator const_iterator;

	constexpr HugeArray() = default;

	explicit HugeArray(size_type _size)
		:buffer(Buffer::FromVoidFloor(HugeAllocate(sizeof(value_type) * _size))) {}

154
	constexpr HugeArray(HugeArray &&other) noexcept
155 156
		:buffer(std::exchange(other.buffer, nullptr)) {}

157
	~HugeArray() noexcept {
158 159 160 161 162 163
		if (buffer != nullptr) {
			auto v = buffer.ToVoid();
			HugeFree(v.data, v.size);
		}
	}

164
	HugeArray &operator=(HugeArray &&other) noexcept {
165 166
		using std::swap;
		swap(buffer, other.buffer);
167 168 169 170 171 172 173 174 175 176 177 178 179
		return *this;
	}

	void ForkCow(bool enable) noexcept {
		auto v = buffer.ToVoid();
		HugeForkCow(v.data, v.size, enable);
	}

	void Discard() noexcept {
		auto v = buffer.ToVoid();
		HugeDiscard(v.data, v.size);
	}

180
	constexpr bool operator==(std::nullptr_t) const noexcept {
181 182 183
		return buffer == nullptr;
	}

184
	constexpr bool operator!=(std::nullptr_t) const noexcept {
185 186 187 188 189 190
		return buffer != nullptr;
	}

	/**
	 * Returns the number of allocated elements.
	 */
191
	constexpr size_type size() const noexcept {
192 193 194
		return buffer.size;
	}

195
	reference front() noexcept {
196 197 198
		return buffer.front();
	}

199
	const_reference front() const noexcept {
200 201 202
		return buffer.front();
	}

203
	reference back() noexcept {
204 205 206
		return buffer.back();
	}

207
	const_reference back() const noexcept {
208 209 210 211 212 213
		return buffer.back();
	}

	/**
	 * Returns one element.  No bounds checking.
	 */
214
	reference operator[](size_type i) noexcept {
215 216 217 218 219 220
		return buffer[i];
	}

	/**
	 * Returns one constant element.  No bounds checking.
	 */
221
	const_reference operator[](size_type i) const noexcept {
222 223 224
		return buffer[i];
	}

225
	iterator begin() noexcept {
226 227 228
		return buffer.begin();
	}

229
	constexpr const_iterator begin() const noexcept {
230 231 232
		return buffer.cbegin();
	}

233
	iterator end() noexcept {
234 235 236
		return buffer.end();
	}

237
	constexpr const_iterator end() const noexcept {
238 239 240 241
		return buffer.cend();
	}
};

242
#endif