HugeAllocator.hxx 3.65 KB
Newer Older
1
/*
2
 * Copyright (C) 2013-2017 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 "Compiler.h"
34

35
#include <utility>
36

37 38 39 40 41 42 43 44 45 46 47
#include <stddef.h>

#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.
 */
gcc_malloc
void *
48
HugeAllocate(size_t size);
49 50 51 52 53 54

/**
 * @param p an allocation returned by HugeAllocate()
 * @param size the allocation's size as passed to HugeAllocate()
 */
void
55
HugeFree(void *p, size_t size) noexcept;
56 57 58 59 60 61 62 63 64 65

/**
 * 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
66
HugeDiscard(void *p, size_t size) noexcept;
67

68 69 70 71
#elif defined(WIN32)
#include <windows.h>

gcc_malloc
72
void *
73
HugeAllocate(size_t size);
74 75

static inline void
76
HugeFree(void *p, gcc_unused size_t size) noexcept
77 78 79 80 81
{
	VirtualFree(p, 0, MEM_RELEASE);
}

static inline void
82
HugeDiscard(void *p, size_t size) noexcept
83 84 85 86
{
	VirtualAlloc(p, size, MEM_RESET, PAGE_NOACCESS);
}

87 88 89 90
#else

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

91
#include <stdint.h>
92 93 94

gcc_malloc
static inline void *
95
HugeAllocate(size_t size)
96
{
97
	return new uint8_t[size];
98 99 100
}

static inline void
101
HugeFree(void *_p, size_t) noexcept
102
{
103 104
	auto *p = (uint8_t *)_p;
	delete[] p;
105 106 107
}

static inline void
108
HugeDiscard(void *, size_t) noexcept
109 110 111 112 113
{
}

#endif

114 115 116 117 118 119 120 121 122 123
/**
 * Automatic huge memory allocation management.
 */
class HugeAllocation {
	void *data = nullptr;
	size_t size;

public:
	HugeAllocation() = default;

124
	HugeAllocation(size_t _size)
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
		:data(HugeAllocate(_size)), size(_size) {}

	HugeAllocation(HugeAllocation &&src) noexcept
		:data(src.data), size(src.size) {
		src.data = nullptr;
	}

	~HugeAllocation() {
		if (data != nullptr)
			HugeFree(data, size);
	}

	HugeAllocation &operator=(HugeAllocation &&src) noexcept {
		std::swap(data, src.data);
		std::swap(size, src.size);
		return *this;
	}

	void Discard() noexcept {
		HugeDiscard(data, size);
	}

	void reset() noexcept {
		if (data != nullptr) {
			HugeFree(data, size);
			data = nullptr;
		}
	}

	void *get() noexcept {
		return data;
	}
};

159
#endif