aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/CryptonightR_JIT.c
Commit message (Collapse)AuthorAgeFilesLines
* CryptonightR_JIT: fix return value on errorselene2019-07-041-3/+3
| | | | | The value was positive rather than zero, but the caller only checks for negative errors
* crypto: fix PaX issue on NetBSD with CNv4 JITmoneromooo-monero2019-03-071-0/+13
|
* CryptonightR: define out i386/x86_64 specific code on other archsmoneromooo-monero2019-03-051-0/+4
|
* slow-hash: fix build on armmoneromooo-monero2019-03-051-0/+4
|
* crypto: clear cache after generating random programmoneromooo-monero2019-03-041-0/+3
|
* CNv4 JIT compiler for x86-64 and testsSChernykh2019-03-041-0/+99
Minimalistic JIT code generator for random math sequence in CryptonightR. Usage: - Allocate writable and executable memory - Call v4_generate_JIT_code with "buf" pointed to memory allocated on the previous step - Call the generated code instead of "v4_random_math(code, r)", omit the "code" parameter