X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftypes.h;h=7c5776ab3baaad266c790e90efc60bf4a7280152;hp=c7ac4c643f4d1d4a559b6b21a6e7b06b3d9795a3;hb=950c8436edc50857b83eb3e0cbaca06407764655;hpb=4eb2d8ce095b284a1e55762548d9821a83a19b3b diff --git a/src/types.h b/src/types.h index c7ac4c64..7c5776ab 100644 --- a/src/types.h +++ b/src/types.h @@ -65,8 +65,9 @@ #if defined(USE_PEXT) # include // Header for _pext_u64() intrinsic +# define pext(b, m) _pext_u64(b, m) #else -# define _pext_u64(b, m) (0) +# define pext(b, m) (0) #endif #ifdef _MSC_VER @@ -273,11 +274,15 @@ inline Score make_score(int mg, int eg) { /// according to the standard a simple cast to short is implementation defined /// and so is a right shift of a signed integer. inline Value mg_value(Score s) { - return Value(((s + 0x8000) & ~0xFFFF) / 0x10000); + + union { uint16_t u; int16_t s; } mg = { uint16_t(unsigned(s + 0x8000) >> 16) }; + return Value(mg.s); } inline Value eg_value(Score s) { - return Value((int)(unsigned(s) & 0x7FFFU) - (int)(unsigned(s) & 0x8000U)); + + union { uint16_t u; int16_t s; } eg = { uint16_t(unsigned(s)) }; + return Value(eg.s); } #define ENABLE_BASE_OPERATORS_ON(T) \