mirror of
https://github.com/xmrig/xmrig.git
synced 2025-12-06 15:42:38 -05:00
RISC-V JIT compiler
This commit is contained in:
@@ -80,6 +80,13 @@ if (WITH_RANDOMX)
|
|||||||
else()
|
else()
|
||||||
set_property(SOURCE src/crypto/randomx/jit_compiler_a64_static.S PROPERTY LANGUAGE C)
|
set_property(SOURCE src/crypto/randomx/jit_compiler_a64_static.S PROPERTY LANGUAGE C)
|
||||||
endif()
|
endif()
|
||||||
|
elseif (XMRIG_RISCV AND CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||||
|
list(APPEND SOURCES_CRYPTO
|
||||||
|
src/crypto/randomx/jit_compiler_rv64_static.S
|
||||||
|
src/crypto/randomx/jit_compiler_rv64.cpp
|
||||||
|
)
|
||||||
|
# cheat because cmake and ccache hate each other
|
||||||
|
set_property(SOURCE src/crypto/randomx/jit_compiler_rv64_static.S PROPERTY LANGUAGE C)
|
||||||
else()
|
else()
|
||||||
list(APPEND SOURCES_CRYPTO
|
list(APPEND SOURCES_CRYPTO
|
||||||
src/crypto/randomx/jit_compiler_fallback.cpp
|
src/crypto/randomx/jit_compiler_fallback.cpp
|
||||||
|
|||||||
@@ -111,6 +111,10 @@ namespace randomx {
|
|||||||
#define RANDOMX_HAVE_COMPILER 1
|
#define RANDOMX_HAVE_COMPILER 1
|
||||||
class JitCompilerA64;
|
class JitCompilerA64;
|
||||||
using JitCompiler = JitCompilerA64;
|
using JitCompiler = JitCompilerA64;
|
||||||
|
#elif defined(__riscv) && defined(__riscv_xlen) && (__riscv_xlen == 64)
|
||||||
|
#define RANDOMX_HAVE_COMPILER 1
|
||||||
|
class JitCompilerRV64;
|
||||||
|
using JitCompiler = JitCompilerRV64;
|
||||||
#else
|
#else
|
||||||
#define RANDOMX_HAVE_COMPILER 0
|
#define RANDOMX_HAVE_COMPILER 0
|
||||||
class JitCompilerFallback;
|
class JitCompilerFallback;
|
||||||
|
|||||||
@@ -32,6 +32,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
#include "crypto/randomx/jit_compiler_x86.hpp"
|
#include "crypto/randomx/jit_compiler_x86.hpp"
|
||||||
#elif defined(__aarch64__)
|
#elif defined(__aarch64__)
|
||||||
#include "crypto/randomx/jit_compiler_a64.hpp"
|
#include "crypto/randomx/jit_compiler_a64.hpp"
|
||||||
|
#elif defined(__riscv) && defined(__riscv_xlen) && (__riscv_xlen == 64)
|
||||||
|
#include "crypto/randomx/jit_compiler_rv64.hpp"
|
||||||
#else
|
#else
|
||||||
#include "crypto/randomx/jit_compiler_fallback.hpp"
|
#include "crypto/randomx/jit_compiler_fallback.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
1164
src/crypto/randomx/jit_compiler_rv64.cpp
Normal file
1164
src/crypto/randomx/jit_compiler_rv64.cpp
Normal file
File diff suppressed because it is too large
Load Diff
144
src/crypto/randomx/jit_compiler_rv64.hpp
Normal file
144
src/crypto/randomx/jit_compiler_rv64.hpp
Normal file
@@ -0,0 +1,144 @@
|
|||||||
|
/*
|
||||||
|
Copyright (c) 2023 tevador <tevador@gmail.com>
|
||||||
|
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
* Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
* Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
* Neither the name of the copyright holder nor the
|
||||||
|
names of its contributors may be used to endorse or promote products
|
||||||
|
derived from this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
#include <cstring>
|
||||||
|
#include <vector>
|
||||||
|
#include "crypto/randomx/common.hpp"
|
||||||
|
#include "crypto/randomx/jit_compiler_rv64_static.hpp"
|
||||||
|
|
||||||
|
namespace randomx {
|
||||||
|
|
||||||
|
struct CodeBuffer {
|
||||||
|
uint8_t* code;
|
||||||
|
int32_t codePos;
|
||||||
|
int32_t rcpCount;
|
||||||
|
|
||||||
|
void emit(const uint8_t* src, int32_t len) {
|
||||||
|
memcpy(&code[codePos], src, len);
|
||||||
|
codePos += len;
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename T>
|
||||||
|
void emit(T src) {
|
||||||
|
memcpy(&code[codePos], &src, sizeof(src));
|
||||||
|
codePos += sizeof(src);
|
||||||
|
}
|
||||||
|
|
||||||
|
void emitAt(int32_t codePos, const uint8_t* src, int32_t len) {
|
||||||
|
memcpy(&code[codePos], src, len);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename T>
|
||||||
|
void emitAt(int32_t codePos, T src) {
|
||||||
|
memcpy(&code[codePos], &src, sizeof(src));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
struct CompilerState : public CodeBuffer {
|
||||||
|
int32_t instructionOffsets[RANDOMX_PROGRAM_MAX_SIZE];
|
||||||
|
int registerUsage[RegistersCount];
|
||||||
|
};
|
||||||
|
|
||||||
|
class Program;
|
||||||
|
struct ProgramConfiguration;
|
||||||
|
class SuperscalarProgram;
|
||||||
|
class Instruction;
|
||||||
|
|
||||||
|
#define HANDLER_ARGS randomx::CompilerState& state, randomx::Instruction isn, int i
|
||||||
|
typedef void(*InstructionGeneratorRV64)(HANDLER_ARGS);
|
||||||
|
|
||||||
|
class JitCompilerRV64 {
|
||||||
|
public:
|
||||||
|
JitCompilerRV64(bool hugePagesEnable, bool optimizedInitDatasetEnable);
|
||||||
|
~JitCompilerRV64();
|
||||||
|
|
||||||
|
void prepare() {}
|
||||||
|
void generateProgram(Program&, ProgramConfiguration&, uint32_t);
|
||||||
|
void generateProgramLight(Program&, ProgramConfiguration&, uint32_t);
|
||||||
|
|
||||||
|
template<size_t N>
|
||||||
|
void generateSuperscalarHash(SuperscalarProgram(&programs)[N]);
|
||||||
|
|
||||||
|
void generateDatasetInitCode() {}
|
||||||
|
|
||||||
|
ProgramFunc* getProgramFunc() {
|
||||||
|
return (ProgramFunc*)entryProgram;
|
||||||
|
}
|
||||||
|
DatasetInitFunc* getDatasetInitFunc() {
|
||||||
|
return (DatasetInitFunc*)entryDataInit;
|
||||||
|
}
|
||||||
|
uint8_t* getCode() {
|
||||||
|
return state.code;
|
||||||
|
}
|
||||||
|
size_t getCodeSize();
|
||||||
|
|
||||||
|
void enableWriting() const;
|
||||||
|
void enableExecution() const;
|
||||||
|
|
||||||
|
static InstructionGeneratorRV64 engine[256];
|
||||||
|
private:
|
||||||
|
CompilerState state;
|
||||||
|
void* entryDataInit;
|
||||||
|
void* entryProgram;
|
||||||
|
|
||||||
|
public:
|
||||||
|
static void v1_IADD_RS(HANDLER_ARGS);
|
||||||
|
static void v1_IADD_M(HANDLER_ARGS);
|
||||||
|
static void v1_ISUB_R(HANDLER_ARGS);
|
||||||
|
static void v1_ISUB_M(HANDLER_ARGS);
|
||||||
|
static void v1_IMUL_R(HANDLER_ARGS);
|
||||||
|
static void v1_IMUL_M(HANDLER_ARGS);
|
||||||
|
static void v1_IMULH_R(HANDLER_ARGS);
|
||||||
|
static void v1_IMULH_M(HANDLER_ARGS);
|
||||||
|
static void v1_ISMULH_R(HANDLER_ARGS);
|
||||||
|
static void v1_ISMULH_M(HANDLER_ARGS);
|
||||||
|
static void v1_IMUL_RCP(HANDLER_ARGS);
|
||||||
|
static void v1_INEG_R(HANDLER_ARGS);
|
||||||
|
static void v1_IXOR_R(HANDLER_ARGS);
|
||||||
|
static void v1_IXOR_M(HANDLER_ARGS);
|
||||||
|
static void v1_IROR_R(HANDLER_ARGS);
|
||||||
|
static void v1_IROL_R(HANDLER_ARGS);
|
||||||
|
static void v1_ISWAP_R(HANDLER_ARGS);
|
||||||
|
static void v1_FSWAP_R(HANDLER_ARGS);
|
||||||
|
static void v1_FADD_R(HANDLER_ARGS);
|
||||||
|
static void v1_FADD_M(HANDLER_ARGS);
|
||||||
|
static void v1_FSUB_R(HANDLER_ARGS);
|
||||||
|
static void v1_FSUB_M(HANDLER_ARGS);
|
||||||
|
static void v1_FSCAL_R(HANDLER_ARGS);
|
||||||
|
static void v1_FMUL_R(HANDLER_ARGS);
|
||||||
|
static void v1_FDIV_M(HANDLER_ARGS);
|
||||||
|
static void v1_FSQRT_R(HANDLER_ARGS);
|
||||||
|
static void v1_CBRANCH(HANDLER_ARGS);
|
||||||
|
static void v1_CFROUND(HANDLER_ARGS);
|
||||||
|
static void v1_ISTORE(HANDLER_ARGS);
|
||||||
|
static void v1_NOP(HANDLER_ARGS);
|
||||||
|
};
|
||||||
|
}
|
||||||
1236
src/crypto/randomx/jit_compiler_rv64_static.S
Normal file
1236
src/crypto/randomx/jit_compiler_rv64_static.S
Normal file
File diff suppressed because it is too large
Load Diff
53
src/crypto/randomx/jit_compiler_rv64_static.hpp
Normal file
53
src/crypto/randomx/jit_compiler_rv64_static.hpp
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
Copyright (c) 2023 tevador <tevador@gmail.com>
|
||||||
|
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
* Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
* Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
* Neither the name of the copyright holder nor the
|
||||||
|
names of its contributors may be used to endorse or promote products
|
||||||
|
derived from this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
extern "C" {
|
||||||
|
void randomx_riscv64_literals();
|
||||||
|
void randomx_riscv64_literals_end();
|
||||||
|
void randomx_riscv64_data_init();
|
||||||
|
void randomx_riscv64_fix_data_call();
|
||||||
|
void randomx_riscv64_prologue();
|
||||||
|
void randomx_riscv64_loop_begin();
|
||||||
|
void randomx_riscv64_data_read();
|
||||||
|
void randomx_riscv64_data_read_light();
|
||||||
|
void randomx_riscv64_fix_loop_call();
|
||||||
|
void randomx_riscv64_spad_store();
|
||||||
|
void randomx_riscv64_spad_store_hardaes();
|
||||||
|
void randomx_riscv64_spad_store_softaes();
|
||||||
|
void randomx_riscv64_loop_end();
|
||||||
|
void randomx_riscv64_fix_continue_loop();
|
||||||
|
void randomx_riscv64_epilogue();
|
||||||
|
void randomx_riscv64_softaes();
|
||||||
|
void randomx_riscv64_program_end();
|
||||||
|
void randomx_riscv64_ssh_init();
|
||||||
|
void randomx_riscv64_ssh_load();
|
||||||
|
void randomx_riscv64_ssh_prefetch();
|
||||||
|
void randomx_riscv64_ssh_end();
|
||||||
|
}
|
||||||
@@ -39,6 +39,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
#include "crypto/randomx/jit_compiler_x86_static.hpp"
|
#include "crypto/randomx/jit_compiler_x86_static.hpp"
|
||||||
#elif (XMRIG_ARM == 8)
|
#elif (XMRIG_ARM == 8)
|
||||||
#include "crypto/randomx/jit_compiler_a64_static.hpp"
|
#include "crypto/randomx/jit_compiler_a64_static.hpp"
|
||||||
|
#elif defined(__riscv) && defined(__riscv_xlen) && (__riscv_xlen == 64)
|
||||||
|
#include "crypto/randomx/jit_compiler_rv64_static.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "backend/cpu/Cpu.h"
|
#include "backend/cpu/Cpu.h"
|
||||||
@@ -190,7 +192,7 @@ RandomX_ConfigurationBase::RandomX_ConfigurationBase()
|
|||||||
# endif
|
# endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (XMRIG_ARM == 8)
|
#if (XMRIG_ARM == 8) || defined(XMRIG_RISCV)
|
||||||
static uint32_t Log2(size_t value) { return (value > 1) ? (Log2(value / 2) + 1) : 0; }
|
static uint32_t Log2(size_t value) { return (value > 1) ? (Log2(value / 2) + 1) : 0; }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -274,6 +276,14 @@ typedef void(randomx::JitCompilerX86::* InstructionGeneratorX86_2)(const randomx
|
|||||||
|
|
||||||
#define JIT_HANDLE(x, prev) randomx::JitCompilerA64::engine[k] = &randomx::JitCompilerA64::h_##x
|
#define JIT_HANDLE(x, prev) randomx::JitCompilerA64::engine[k] = &randomx::JitCompilerA64::h_##x
|
||||||
|
|
||||||
|
#elif defined(XMRIG_RISCV)
|
||||||
|
|
||||||
|
Log2_ScratchpadL1 = Log2(ScratchpadL1_Size);
|
||||||
|
Log2_ScratchpadL2 = Log2(ScratchpadL2_Size);
|
||||||
|
Log2_ScratchpadL3 = Log2(ScratchpadL3_Size);
|
||||||
|
|
||||||
|
#define JIT_HANDLE(x, prev) randomx::JitCompilerRV64::engine[k] = &randomx::JitCompilerRV64::v1_##x
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#define JIT_HANDLE(x, prev)
|
#define JIT_HANDLE(x, prev)
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ struct RandomX_ConfigurationBase
|
|||||||
uint32_t ScratchpadL3Mask_Calculated;
|
uint32_t ScratchpadL3Mask_Calculated;
|
||||||
uint32_t ScratchpadL3Mask64_Calculated;
|
uint32_t ScratchpadL3Mask64_Calculated;
|
||||||
|
|
||||||
# if (XMRIG_ARM == 8)
|
# if (XMRIG_ARM == 8) || defined(XMRIG_RISCV)
|
||||||
uint32_t Log2_ScratchpadL1;
|
uint32_t Log2_ScratchpadL1;
|
||||||
uint32_t Log2_ScratchpadL2;
|
uint32_t Log2_ScratchpadL2;
|
||||||
uint32_t Log2_ScratchpadL3;
|
uint32_t Log2_ScratchpadL3;
|
||||||
|
|||||||
Reference in New Issue
Block a user