2018-12-11 20:00:30 +00:00
|
|
|
/*
|
|
|
|
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<http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-04-20 14:53:06 +00:00
|
|
|
|
2019-04-26 09:07:47 +00:00
|
|
|
#pragma STDC FENV_ACCESS ON
|
2018-12-11 20:00:30 +00:00
|
|
|
#include <cfenv>
|
|
|
|
#include <cmath>
|
2019-02-09 14:45:26 +00:00
|
|
|
#include "common.hpp"
|
2019-04-20 14:53:06 +00:00
|
|
|
#include "intrin_portable.h"
|
|
|
|
#include "blake2/endian.h"
|
2018-12-11 20:00:30 +00:00
|
|
|
|
|
|
|
#if defined(__SIZEOF_INT128__)
|
|
|
|
typedef unsigned __int128 uint128_t;
|
|
|
|
typedef __int128 int128_t;
|
2019-02-04 16:07:00 +00:00
|
|
|
uint64_t mulh(uint64_t a, uint64_t b) {
|
2018-12-11 20:00:30 +00:00
|
|
|
return ((uint128_t)a * b) >> 64;
|
|
|
|
}
|
2019-02-04 16:07:00 +00:00
|
|
|
int64_t smulh(int64_t a, int64_t b) {
|
2018-12-11 20:00:30 +00:00
|
|
|
return ((int128_t)a * b) >> 64;
|
|
|
|
}
|
2019-02-04 16:07:00 +00:00
|
|
|
#define HAVE_MULH
|
|
|
|
#define HAVE_SMULH
|
2018-12-11 20:00:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#define HAS_VALUE(X) X ## 0
|
|
|
|
#define EVAL_DEFINE(X) HAS_VALUE(X)
|
|
|
|
#include <intrin.h>
|
|
|
|
#include <stdlib.h>
|
2019-02-04 16:07:00 +00:00
|
|
|
|
|
|
|
uint64_t rotl(uint64_t x, int c) {
|
|
|
|
return _rotl64(x, c);
|
|
|
|
}
|
|
|
|
uint64_t rotr(uint64_t x , int c) {
|
|
|
|
return _rotr64(x, c);
|
|
|
|
}
|
|
|
|
#define HAVE_ROTL
|
|
|
|
#define HAVE_ROTR
|
|
|
|
|
2018-12-11 20:00:30 +00:00
|
|
|
#if EVAL_DEFINE(__MACHINEARM64_X64(1))
|
2019-02-04 16:07:00 +00:00
|
|
|
uint64_t mulh(uint64_t a, uint64_t b) {
|
|
|
|
return __umulh(a, b);
|
|
|
|
}
|
|
|
|
#define HAVE_MULH
|
2018-12-11 20:00:30 +00:00
|
|
|
#endif
|
2019-02-04 16:07:00 +00:00
|
|
|
|
2018-12-11 20:00:30 +00:00
|
|
|
#if EVAL_DEFINE(__MACHINEX64(1))
|
2019-02-04 16:07:00 +00:00
|
|
|
int64_t smulh(int64_t a, int64_t b) {
|
2018-12-11 20:00:30 +00:00
|
|
|
int64_t hi;
|
|
|
|
_mul128(a, b, &hi);
|
|
|
|
return hi;
|
|
|
|
}
|
2019-02-04 16:07:00 +00:00
|
|
|
#define HAVE_SMULH
|
2018-12-11 20:00:30 +00:00
|
|
|
#endif
|
2019-02-04 16:07:00 +00:00
|
|
|
|
2019-04-22 16:20:46 +00:00
|
|
|
static void setRoundMode_(uint32_t mode) {
|
2019-02-04 16:07:00 +00:00
|
|
|
_controlfp(mode, _MCW_RC);
|
2018-12-11 20:00:30 +00:00
|
|
|
}
|
2019-02-04 16:07:00 +00:00
|
|
|
#define HAVE_SETROUNDMODE_IMPL
|
2018-12-11 20:00:30 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-04 16:07:00 +00:00
|
|
|
#ifndef HAVE_SETROUNDMODE_IMPL
|
2019-04-22 16:20:46 +00:00
|
|
|
static void setRoundMode_(uint32_t mode) {
|
2019-02-04 16:07:00 +00:00
|
|
|
fesetround(mode);
|
|
|
|
}
|
2018-12-11 20:00:30 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-04 16:07:00 +00:00
|
|
|
#ifndef HAVE_ROTR
|
|
|
|
uint64_t rotr(uint64_t a, int b) {
|
2018-12-11 20:00:30 +00:00
|
|
|
return (a >> b) | (a << (64 - b));
|
|
|
|
}
|
2019-04-20 14:53:06 +00:00
|
|
|
#define HAVE_ROTR
|
2018-12-11 20:00:30 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-04 16:07:00 +00:00
|
|
|
#ifndef HAVE_ROTL
|
|
|
|
uint64_t rotl(uint64_t a, int b) {
|
2018-12-11 20:00:30 +00:00
|
|
|
return (a << b) | (a >> (64 - b));
|
|
|
|
}
|
2019-04-20 14:53:06 +00:00
|
|
|
#define HAVE_ROTL
|
2018-12-11 20:00:30 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-04 16:07:00 +00:00
|
|
|
#ifndef HAVE_MULH
|
2018-12-11 20:00:30 +00:00
|
|
|
#define LO(x) ((x)&0xffffffff)
|
|
|
|
#define HI(x) ((x)>>32)
|
2019-02-04 16:07:00 +00:00
|
|
|
uint64_t mulh(uint64_t a, uint64_t b) {
|
2018-12-11 20:00:30 +00:00
|
|
|
uint64_t ah = HI(a), al = LO(a);
|
|
|
|
uint64_t bh = HI(b), bl = LO(b);
|
|
|
|
uint64_t x00 = al * bl;
|
|
|
|
uint64_t x01 = al * bh;
|
|
|
|
uint64_t x10 = ah * bl;
|
|
|
|
uint64_t x11 = ah * bh;
|
|
|
|
uint64_t m1 = LO(x10) + LO(x01) + HI(x00);
|
|
|
|
uint64_t m2 = HI(x10) + HI(x01) + LO(x11) + HI(m1);
|
|
|
|
uint64_t m3 = HI(x11) + HI(m2);
|
|
|
|
|
|
|
|
return (m3 << 32) + LO(m2);
|
|
|
|
}
|
2019-02-04 16:07:00 +00:00
|
|
|
#define HAVE_MULH
|
2018-12-11 20:00:30 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-04 16:07:00 +00:00
|
|
|
#ifndef HAVE_SMULH
|
|
|
|
int64_t smulh(int64_t a, int64_t b) {
|
|
|
|
int64_t hi = mulh(a, b);
|
2018-12-11 20:00:30 +00:00
|
|
|
if (a < 0LL) hi -= b;
|
|
|
|
if (b < 0LL) hi -= a;
|
|
|
|
return hi;
|
|
|
|
}
|
2019-02-04 16:07:00 +00:00
|
|
|
#define HAVE_SMULH
|
2018-12-11 20:00:30 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-04 16:07:00 +00:00
|
|
|
void setRoundMode(uint32_t rcflag) {
|
|
|
|
switch (rcflag & 3) {
|
2019-02-09 14:45:26 +00:00
|
|
|
case RoundDown:
|
2019-04-22 16:20:46 +00:00
|
|
|
setRoundMode_(FE_DOWNWARD);
|
2019-02-09 14:45:26 +00:00
|
|
|
break;
|
|
|
|
case RoundUp:
|
2019-04-22 16:20:46 +00:00
|
|
|
setRoundMode_(FE_UPWARD);
|
2019-02-09 14:45:26 +00:00
|
|
|
break;
|
|
|
|
case RoundToZero:
|
2019-04-22 16:20:46 +00:00
|
|
|
setRoundMode_(FE_TOWARDZERO);
|
2019-02-09 14:45:26 +00:00
|
|
|
break;
|
|
|
|
case RoundToNearest:
|
2019-04-22 16:20:46 +00:00
|
|
|
setRoundMode_(FE_TONEAREST);
|
2019-02-09 14:45:26 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
UNREACHABLE;
|
2019-02-04 16:07:00 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-02-04 16:07:00 +00:00
|
|
|
void initFpu() {
|
|
|
|
#ifdef __SSE2__
|
|
|
|
_mm_setcsr(0x9FC0); //Flush to zero, denormals are zero, default rounding mode, all exceptions disabled
|
|
|
|
#else
|
|
|
|
setRoundMode(FE_TONEAREST);
|
|
|
|
#endif
|
|
|
|
}
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
union double_ser_t {
|
|
|
|
double f;
|
|
|
|
uint64_t i;
|
|
|
|
};
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
double loadDoublePortable(const void* addr) {
|
|
|
|
double_ser_t ds;
|
|
|
|
ds.i = load64(addr);
|
|
|
|
return ds.f;
|
|
|
|
}
|