/* Copyright (c) 2019 tevador This file is part of RandomX. RandomX 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. RandomX 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 RandomX. If not, see. */ #pragma once #include #include "vm_compiled.hpp" namespace randomx { template class CompiledLightVm : public CompiledVm { public: void* operator new(size_t size) { void* ptr = AlignedAllocator::allocMemory(size); if (ptr == nullptr) throw std::bad_alloc(); return ptr; } void operator delete(void* ptr) { AlignedAllocator::freeMemory(ptr, sizeof(CompiledLightVm)); } void setCache(randomx_cache* cache) override; void setDataset(randomx_dataset* dataset) override {} void run(void* seed) override; using CompiledVm::mem; using CompiledVm::compiler; using CompiledVm::program; using CompiledVm::config; }; using CompiledLightVmDefault = CompiledLightVm, true>; using CompiledLightVmHardAes = CompiledLightVm, false>; using CompiledLightVmLargePage = CompiledLightVm; using CompiledLightVmLargePageHardAes = CompiledLightVm; }