Files
xmrig/src/crypto/common/VirtualMemory.h

98 lines
3.1 KiB
C
Raw Normal View History

/* XMRig
* Copyright 2010 Jeff Garzik <jgarzik@pobox.com>
* Copyright 2012-2014 pooler <pooler@litecoinpool.org>
* Copyright 2014 Lucas Jones <https://github.com/lucasjones>
* Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet>
* Copyright 2016 Jay D Dee <jayddee246@gmail.com>
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
* Copyright 2018 Lee Clagett <https://github.com/vtnerd>
* Copyright 2018-2019 SChernykh <https://github.com/SChernykh>
* Copyright 2018-2019 tevador <tevador@gmail.com>
* Copyright 2016-2019 XMRig <https://github.com/xmrig>, <support@xmrig.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef XMRIG_VIRTUALMEMORY_H
#define XMRIG_VIRTUALMEMORY_H
2019-10-06 14:40:42 +07:00
#include "base/tools/Object.h"
2019-10-06 17:49:15 +07:00
#include <bitset>
2019-10-06 14:40:42 +07:00
#include <cstddef>
#include <cstdint>
2019-07-17 14:54:08 +07:00
#include <utility>
namespace xmrig {
class VirtualMemory
{
public:
2019-10-06 17:49:15 +07:00
XMRIG_DISABLE_COPY_MOVE_DEFAULT(VirtualMemory)
2019-10-06 14:40:42 +07:00
2019-10-07 12:36:40 +07:00
VirtualMemory(size_t size, bool hugePages, bool usePool, uint32_t node = 0, size_t alignSize = 64);
~VirtualMemory();
2019-10-06 17:49:15 +07:00
inline bool isHugePages() const { return m_flags.test(FLAG_HUGEPAGES); }
inline size_t size() const { return m_size; }
inline uint8_t *scratchpad() const { return m_scratchpad; }
2019-07-17 14:54:08 +07:00
inline std::pair<size_t, size_t> hugePages() const
{
2019-10-06 14:40:42 +07:00
return { isHugePages() ? (align(size()) / 2097152) : 0, align(size()) / 2097152 };
2019-07-17 14:54:08 +07:00
}
2019-10-06 17:49:15 +07:00
static bool isHugepagesAvailable();
static uint32_t bindToNUMANode(int64_t affinity);
static void *allocateExecutableMemory(size_t size);
static void *allocateLargePagesMemory(size_t size);
2019-10-07 12:36:40 +07:00
static void destroy();
static void flushInstructionCache(void *p, size_t size);
static void freeLargePagesMemory(void *p, size_t size);
2019-10-07 23:38:01 +07:00
static void init(size_t poolSize, bool hugePages);
static void protectExecutableMemory(void *p, size_t size);
static void unprotectExecutableMemory(void *p, size_t size);
static inline constexpr size_t align(size_t pos, size_t align = 2097152) { return ((pos - 1) / align + 1) * align; }
private:
enum Flags {
2019-10-06 17:49:15 +07:00
FLAG_HUGEPAGES,
FLAG_LOCK,
FLAG_EXTERNAL,
FLAG_MAX
};
2019-10-21 23:01:30 +07:00
static void osInit(bool hugePages);
2019-10-07 12:36:40 +07:00
bool allocateLargePagesMemory();
void freeLargePagesMemory();
const size_t m_size;
const uint32_t m_node;
2019-10-06 17:49:15 +07:00
std::bitset<FLAG_MAX> m_flags;
2019-10-07 12:36:40 +07:00
uint8_t *m_scratchpad = nullptr;
};
} /* namespace xmrig */
#endif /* XMRIG_VIRTUALMEMORY_H */