2018-12-11 21:00:30 +01: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 11:08:01 +02:00
|
|
|
|
2018-12-11 21:00:30 +01:00
|
|
|
#include <cstdint>
|
|
|
|
#include "common.hpp"
|
2019-04-20 11:08:01 +02:00
|
|
|
#include "dataset.hpp"
|
2019-02-09 15:45:26 +01:00
|
|
|
#include "Program.hpp"
|
2018-12-11 21:00:30 +01:00
|
|
|
|
2019-04-20 11:08:01 +02:00
|
|
|
/* Global namespace for C binding */
|
2019-04-20 12:49:24 +02:00
|
|
|
class randomx_vm {
|
|
|
|
public:
|
2019-04-20 11:08:01 +02:00
|
|
|
virtual ~randomx_vm() = 0;
|
|
|
|
virtual bool allocate() = 0;
|
|
|
|
virtual void getFinalResult(void* out, size_t outSize) = 0;
|
|
|
|
virtual void setDataset(randomx_dataset* dataset) { }
|
|
|
|
virtual void setCache(randomx_cache* cache) { }
|
2019-04-20 12:49:24 +02:00
|
|
|
virtual void initScratchpad(void* seed) = 0;
|
|
|
|
virtual void run(void* seed) = 0;
|
|
|
|
void resetRoundingMode();
|
|
|
|
randomx::RegisterFile *getRegisterFile() {
|
|
|
|
return ®
|
|
|
|
}
|
2019-04-20 11:08:01 +02:00
|
|
|
|
2019-04-20 12:49:24 +02:00
|
|
|
protected:
|
|
|
|
void initialize();
|
2019-04-20 11:08:01 +02:00
|
|
|
alignas(64) randomx::Program program;
|
|
|
|
alignas(64) randomx::RegisterFile reg;
|
|
|
|
alignas(16) randomx::ProgramConfiguration config;
|
|
|
|
randomx::MemoryRegisters mem;
|
|
|
|
uint8_t* scratchpad;
|
|
|
|
};
|
2018-12-11 21:00:30 +01:00
|
|
|
|
2019-04-20 11:08:01 +02:00
|
|
|
namespace randomx {
|
|
|
|
|
|
|
|
template<class Allocator, bool softAes>
|
|
|
|
class VmBase : public randomx_vm {
|
2018-12-11 21:00:30 +01:00
|
|
|
public:
|
2019-04-20 11:08:01 +02:00
|
|
|
~VmBase() override;
|
|
|
|
bool allocate() override;
|
2019-04-20 12:49:24 +02:00
|
|
|
void initScratchpad(void* seed) override;
|
2019-04-20 11:08:01 +02:00
|
|
|
void getFinalResult(void* out, size_t outSize) override;
|
2019-04-20 12:49:24 +02:00
|
|
|
protected:
|
|
|
|
void generateProgram(void* seed);
|
2018-12-11 21:00:30 +01:00
|
|
|
};
|
2019-04-20 11:08:01 +02:00
|
|
|
|
2018-12-11 21:00:30 +01:00
|
|
|
}
|