2019-03-08 14:34:34 +00:00
|
|
|
/*
|
2019-05-18 12:21:47 +00:00
|
|
|
Copyright (c) 2018-2019, 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.
|
2019-03-08 14:34:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
//Cache size in KiB. Must be a power of 2.
|
2019-05-06 16:14:00 +00:00
|
|
|
#define RANDOMX_ARGON_MEMORY 262144
|
2019-03-08 14:34:34 +00:00
|
|
|
|
|
|
|
//Number of Argon2d iterations for Cache initialization
|
|
|
|
#define RANDOMX_ARGON_ITERATIONS 3
|
|
|
|
|
|
|
|
//Number of parallel lanes for Cache initialization
|
|
|
|
#define RANDOMX_ARGON_LANES 1
|
|
|
|
|
|
|
|
//Argon2d salt
|
|
|
|
#define RANDOMX_ARGON_SALT "RandomX\x03"
|
|
|
|
|
2019-04-27 21:52:26 +00:00
|
|
|
//Number of random Cache accesses per Dataset item. Minimum is 2.
|
2019-03-22 11:53:16 +00:00
|
|
|
#define RANDOMX_CACHE_ACCESSES 8
|
2019-03-08 14:34:34 +00:00
|
|
|
|
2019-04-28 14:42:45 +00:00
|
|
|
//Target latency for SuperscalarHash (in cycles of the reference CPU).
|
2019-04-11 22:02:22 +00:00
|
|
|
#define RANDOMX_SUPERSCALAR_LATENCY 170
|
2019-04-28 14:42:45 +00:00
|
|
|
|
|
|
|
//The maximum size of a SuperscalarHash program (number of instructions).
|
2019-04-11 22:02:22 +00:00
|
|
|
#define RANDOMX_SUPERSCALAR_MAX_SIZE 512
|
2019-03-28 14:27:10 +00:00
|
|
|
|
2019-04-26 14:05:30 +00:00
|
|
|
//Dataset base size in bytes. Must be a power of 2.
|
2019-05-06 16:14:00 +00:00
|
|
|
#define RANDOMX_DATASET_BASE_SIZE 2147483648
|
2019-04-26 14:05:30 +00:00
|
|
|
|
|
|
|
//Dataset extra size. Must be divisible by 64.
|
|
|
|
#define RANDOMX_DATASET_EXTRA_SIZE 33554368
|
2019-03-08 14:34:34 +00:00
|
|
|
|
|
|
|
//Number of instructions in a RandomX program
|
|
|
|
#define RANDOMX_PROGRAM_SIZE 256
|
|
|
|
|
|
|
|
//Number of iterations during VM execution
|
|
|
|
#define RANDOMX_PROGRAM_ITERATIONS 2048
|
|
|
|
|
|
|
|
//Number of chained VM executions per hash
|
2019-03-10 22:14:03 +00:00
|
|
|
#define RANDOMX_PROGRAM_COUNT 8
|
2019-03-08 14:34:34 +00:00
|
|
|
|
|
|
|
//Scratchpad L3 size in bytes. Must be a power of 2.
|
2019-05-06 16:14:00 +00:00
|
|
|
#define RANDOMX_SCRATCHPAD_L3 2097152
|
2019-03-08 14:34:34 +00:00
|
|
|
|
|
|
|
//Scratchpad L2 size in bytes. Must be a power of two and less than or equal to RANDOMX_SCRATCHPAD_L3.
|
2019-05-06 16:14:00 +00:00
|
|
|
#define RANDOMX_SCRATCHPAD_L2 262144
|
2019-03-08 14:34:34 +00:00
|
|
|
|
|
|
|
//Scratchpad L1 size in bytes. Must be a power of two and less than or equal to RANDOMX_SCRATCHPAD_L2.
|
2019-05-06 16:14:00 +00:00
|
|
|
#define RANDOMX_SCRATCHPAD_L1 16384
|
2019-03-08 14:34:34 +00:00
|
|
|
|
2019-05-03 12:02:40 +00:00
|
|
|
//Jump condition mask size in bits.
|
2019-04-30 12:09:46 +00:00
|
|
|
#define RANDOMX_JUMP_BITS 8
|
2019-03-17 22:09:11 +00:00
|
|
|
|
2019-05-03 12:02:40 +00:00
|
|
|
//Jump condition mask offset in bits.
|
|
|
|
#define RANDOMX_JUMP_OFFSET 8
|
|
|
|
|
2019-03-08 14:34:34 +00:00
|
|
|
/*
|
|
|
|
Instruction frequencies (per 256 opcodes)
|
|
|
|
Total sum of frequencies must be 256
|
|
|
|
*/
|
|
|
|
|
2019-04-30 12:09:46 +00:00
|
|
|
#define RANDOMX_FREQ_IADD_RS 25
|
2019-03-10 22:14:03 +00:00
|
|
|
#define RANDOMX_FREQ_IADD_M 7
|
2019-04-30 12:09:46 +00:00
|
|
|
#define RANDOMX_FREQ_ISUB_R 16
|
2019-03-10 22:14:03 +00:00
|
|
|
#define RANDOMX_FREQ_ISUB_M 7
|
|
|
|
#define RANDOMX_FREQ_IMUL_R 16
|
|
|
|
#define RANDOMX_FREQ_IMUL_M 4
|
|
|
|
#define RANDOMX_FREQ_IMULH_R 4
|
|
|
|
#define RANDOMX_FREQ_IMULH_M 1
|
|
|
|
#define RANDOMX_FREQ_ISMULH_R 4
|
|
|
|
#define RANDOMX_FREQ_ISMULH_M 1
|
|
|
|
#define RANDOMX_FREQ_IMUL_RCP 8
|
|
|
|
#define RANDOMX_FREQ_INEG_R 2
|
2019-04-16 16:58:44 +00:00
|
|
|
#define RANDOMX_FREQ_IXOR_R 15
|
|
|
|
#define RANDOMX_FREQ_IXOR_M 5
|
2019-03-10 22:14:03 +00:00
|
|
|
#define RANDOMX_FREQ_IROR_R 10
|
|
|
|
#define RANDOMX_FREQ_IROL_R 0
|
|
|
|
#define RANDOMX_FREQ_ISWAP_R 4
|
|
|
|
|
|
|
|
#define RANDOMX_FREQ_FSWAP_R 8
|
|
|
|
#define RANDOMX_FREQ_FADD_R 20
|
|
|
|
#define RANDOMX_FREQ_FADD_M 5
|
|
|
|
#define RANDOMX_FREQ_FSUB_R 20
|
|
|
|
#define RANDOMX_FREQ_FSUB_M 5
|
|
|
|
#define RANDOMX_FREQ_FSCAL_R 6
|
|
|
|
#define RANDOMX_FREQ_FMUL_R 20
|
|
|
|
#define RANDOMX_FREQ_FDIV_M 4
|
|
|
|
#define RANDOMX_FREQ_FSQRT_R 6
|
|
|
|
|
2019-04-30 12:09:46 +00:00
|
|
|
#define RANDOMX_FREQ_CBRANCH 16
|
2019-03-10 22:14:03 +00:00
|
|
|
#define RANDOMX_FREQ_CFROUND 1
|
2019-04-29 21:38:23 +00:00
|
|
|
|
2019-03-10 22:14:03 +00:00
|
|
|
#define RANDOMX_FREQ_ISTORE 16
|
|
|
|
|
|
|
|
#define RANDOMX_FREQ_NOP 0
|
|
|
|
/* ------
|
|
|
|
256
|
|
|
|
*/
|