mirror of
https://github.com/xmrig/xmrig.git
synced 2026-01-12 19:32:44 -05:00
Compare commits
5 Commits
9fbdcc0ef0
...
v6.21.3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7897f10c48 | ||
|
|
da2fb331b3 | ||
|
|
57f3e9c3da | ||
|
|
1efe7e9562 | ||
|
|
caae7c64f0 |
@@ -1,3 +1,6 @@
|
|||||||
|
# v6.21.3
|
||||||
|
- [#3462](https://github.com/xmrig/xmrig/pull/3462) RandomX: correct memcpy size for JIT initialization.
|
||||||
|
|
||||||
# v6.21.2
|
# v6.21.2
|
||||||
- The dependencies of all prebuilt releases have been updated. Support for old Ubuntu releases has been dropped.
|
- The dependencies of all prebuilt releases have been updated. Support for old Ubuntu releases has been dropped.
|
||||||
- [#2800](https://github.com/xmrig/xmrig/issues/2800) Fixed donation with GhostRider algorithm for builds without KawPow algorithm.
|
- [#2800](https://github.com/xmrig/xmrig/issues/2800) Fixed donation with GhostRider algorithm for builds without KawPow algorithm.
|
||||||
|
|||||||
@@ -1078,6 +1078,6 @@ void JitCompilerA64::h_NOP(Instruction& instr, uint32_t& codePos)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
InstructionGeneratorA64 JitCompilerA64::engine[257] = {};
|
InstructionGeneratorA64 JitCompilerA64::engine[256] = {};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ namespace randomx {
|
|||||||
void enableWriting() const;
|
void enableWriting() const;
|
||||||
void enableExecution() const;
|
void enableExecution() const;
|
||||||
|
|
||||||
static InstructionGeneratorA64 engine[257];
|
static InstructionGeneratorA64 engine[256];
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const bool hugePages;
|
const bool hugePages;
|
||||||
|
|||||||
@@ -1443,6 +1443,6 @@ namespace randomx {
|
|||||||
emitByte(0x90, code, codePos);
|
emitByte(0x90, code, codePos);
|
||||||
}
|
}
|
||||||
|
|
||||||
alignas(64) InstructionGeneratorX86 JitCompilerX86::engine[257] = {};
|
alignas(64) InstructionGeneratorX86 JitCompilerX86::engine[256] = {};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ namespace randomx {
|
|||||||
void enableWriting() const;
|
void enableWriting() const;
|
||||||
void enableExecution() const;
|
void enableExecution() const;
|
||||||
|
|
||||||
alignas(64) static InstructionGeneratorX86 engine[257];
|
alignas(64) static InstructionGeneratorX86 engine[256];
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int registerUsage[RegistersCount] = {};
|
int registerUsage[RegistersCount] = {};
|
||||||
|
|||||||
@@ -260,8 +260,7 @@ typedef void(randomx::JitCompilerX86::* InstructionGeneratorX86_2)(const randomx
|
|||||||
|
|
||||||
#define JIT_HANDLE(x, prev) do { \
|
#define JIT_HANDLE(x, prev) do { \
|
||||||
const InstructionGeneratorX86_2 p = &randomx::JitCompilerX86::h_##x; \
|
const InstructionGeneratorX86_2 p = &randomx::JitCompilerX86::h_##x; \
|
||||||
static_assert(sizeof(p) == sizeof(randomx::JitCompilerX86::engine[k]), "Pointer size mismatch"); \
|
memcpy(randomx::JitCompilerX86::engine + k, &p, sizeof(randomx::JitCompilerX86::engine[k])); \
|
||||||
memcpy(randomx::JitCompilerX86::engine + k, &p, sizeof(p)); \
|
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#elif (XMRIG_ARM == 8)
|
#elif (XMRIG_ARM == 8)
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
#define APP_ID "xmrig"
|
#define APP_ID "xmrig"
|
||||||
#define APP_NAME "XMRig"
|
#define APP_NAME "XMRig"
|
||||||
#define APP_DESC "XMRig miner"
|
#define APP_DESC "XMRig miner"
|
||||||
#define APP_VERSION "6.21.3-dev"
|
#define APP_VERSION "6.21.3"
|
||||||
#define APP_DOMAIN "xmrig.com"
|
#define APP_DOMAIN "xmrig.com"
|
||||||
#define APP_SITE "www.xmrig.com"
|
#define APP_SITE "www.xmrig.com"
|
||||||
#define APP_COPYRIGHT "Copyright (C) 2016-2024 xmrig.com"
|
#define APP_COPYRIGHT "Copyright (C) 2016-2024 xmrig.com"
|
||||||
|
|||||||
Reference in New Issue
Block a user