2018-12-11 20:00:30 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2018 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<http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2019-04-20 09:08:01 +00:00
|
|
|
|
2018-12-11 20:00:30 +00:00
|
|
|
#include <cstdint>
|
|
|
|
#include "common.hpp"
|
2019-04-20 14:53:06 +00:00
|
|
|
#include "program.hpp"
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-04-20 09:08:01 +00:00
|
|
|
/* Global namespace for C binding */
|
2019-04-20 10:49:24 +00:00
|
|
|
class randomx_vm {
|
|
|
|
public:
|
2019-04-20 09:08:01 +00:00
|
|
|
virtual ~randomx_vm() = 0;
|
2019-04-21 13:04:17 +00:00
|
|
|
virtual void allocate() = 0;
|
2019-04-20 09:08:01 +00:00
|
|
|
virtual void getFinalResult(void* out, size_t outSize) = 0;
|
|
|
|
virtual void setDataset(randomx_dataset* dataset) { }
|
|
|
|
virtual void setCache(randomx_cache* cache) { }
|
2019-04-20 10:49:24 +00:00
|
|
|
virtual void initScratchpad(void* seed) = 0;
|
|
|
|
virtual void run(void* seed) = 0;
|
|
|
|
void resetRoundingMode();
|
|
|
|
randomx::RegisterFile *getRegisterFile() {
|
|
|
|
return ®
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
void initialize();
|
2019-04-20 09:08:01 +00:00
|
|
|
alignas(64) randomx::Program program;
|
|
|
|
alignas(64) randomx::RegisterFile reg;
|
|
|
|
alignas(16) randomx::ProgramConfiguration config;
|
|
|
|
randomx::MemoryRegisters mem;
|
|
|
|
uint8_t* scratchpad;
|
2019-04-28 10:44:28 +00:00
|
|
|
union {
|
|
|
|
randomx_cache* cachePtr = nullptr;
|
|
|
|
randomx_dataset* datasetPtr;
|
|
|
|
};
|
2019-04-26 14:05:30 +00:00
|
|
|
uint32_t datasetOffset;
|
2019-04-20 09:08:01 +00:00
|
|
|
};
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-04-20 09:08:01 +00:00
|
|
|
namespace randomx {
|
|
|
|
|
|
|
|
template<class Allocator, bool softAes>
|
|
|
|
class VmBase : public randomx_vm {
|
2018-12-11 20:00:30 +00:00
|
|
|
public:
|
2019-04-20 09:08:01 +00:00
|
|
|
~VmBase() override;
|
2019-04-21 13:04:17 +00:00
|
|
|
void allocate() override;
|
2019-04-20 10:49:24 +00:00
|
|
|
void initScratchpad(void* seed) override;
|
2019-04-20 09:08:01 +00:00
|
|
|
void getFinalResult(void* out, size_t outSize) override;
|
2019-04-20 10:49:24 +00:00
|
|
|
protected:
|
|
|
|
void generateProgram(void* seed);
|
2018-12-11 20:00:30 +00:00
|
|
|
};
|
2019-04-20 09:08:01 +00:00
|
|
|
|
2018-12-11 20:00:30 +00:00
|
|
|
}
|