/* 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. */ #pragma once #include #include #include "common.hpp" #include "virtual_machine.hpp" #include "intrin_portable.h" #include "allocator.hpp" namespace randomx { struct InstructionByteCode { union { int_reg_t* idst; __m128d* fdst; }; union { int_reg_t* isrc; __m128d* fsrc; }; union { uint64_t imm; int64_t simm; }; int_reg_t* creg; uint16_t condition; int16_t target; uint32_t memMask; uint16_t type; uint16_t shift; }; constexpr int asedwfagdewsa = sizeof(InstructionByteCode); template class InterpretedVm : public VmBase { public: using VmBase::mem; using VmBase::scratchpad; using VmBase::program; using VmBase::config; using VmBase::reg; 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(InterpretedVm)); } void run(void* seed) override; void setDataset(randomx_dataset* dataset) override; protected: virtual void datasetRead(uint32_t blockNumber, int_reg_t(&r)[8]); private: void execute(); void precompileProgram(int_reg_t(&r)[8], __m128d (&f)[4], __m128d (&e)[4], __m128d (&a)[4]); void executeBytecode(int_reg_t(&r)[8], __m128d (&f)[4], __m128d (&e)[4], __m128d (&a)[4]); void executeBytecode(int& i, int_reg_t(&r)[8], __m128d (&f)[4], __m128d (&e)[4], __m128d (&a)[4]); void* getScratchpadAddress(InstructionByteCode& ibc); __m128d maskRegisterExponentMantissa(__m128d); InstructionByteCode byteCode[RANDOMX_PROGRAM_SIZE]; }; using InterpretedVmDefault = InterpretedVm, true>; using InterpretedVmHardAes = InterpretedVm, false>; using InterpretedVmLargePage = InterpretedVm; using InterpretedVmLargePageHardAes = InterpretedVm; }