2022-12-20 21:11:14 +00:00
|
|
|
#ifndef SECP256K1_INT128_STRUCT_IMPL_H
|
|
|
|
#define SECP256K1_INT128_STRUCT_IMPL_H
|
|
|
|
|
|
|
|
#include "int128.h"
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && (defined(_M_X64) || defined(_M_ARM64)) /* MSVC */
|
|
|
|
# include <intrin.h>
|
|
|
|
# if defined(_M_ARM64) || defined(SECP256K1_MSVC_MULH_TEST_OVERRIDE)
|
|
|
|
/* On ARM64 MSVC, use __(u)mulh for the upper half of 64x64 multiplications.
|
|
|
|
(Define SECP256K1_MSVC_MULH_TEST_OVERRIDE to test this code path on X64,
|
|
|
|
which supports both __(u)mulh and _umul128.) */
|
|
|
|
# if defined(SECP256K1_MSVC_MULH_TEST_OVERRIDE)
|
|
|
|
# pragma message(__FILE__ ": SECP256K1_MSVC_MULH_TEST_OVERRIDE is defined, forcing use of __(u)mulh.")
|
|
|
|
# endif
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE uint64_t rustsecp256k1_v0_8_1_umul128(uint64_t a, uint64_t b, uint64_t* hi) {
|
2022-12-20 21:11:14 +00:00
|
|
|
*hi = __umulh(a, b);
|
|
|
|
return a * b;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE int64_t rustsecp256k1_v0_8_1_mul128(int64_t a, int64_t b, int64_t* hi) {
|
2022-12-20 21:11:14 +00:00
|
|
|
*hi = __mulh(a, b);
|
|
|
|
return (uint64_t)a * (uint64_t)b;
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
/* On x84_64 MSVC, use native _(u)mul128 for 64x64->128 multiplications. */
|
2023-03-17 05:22:01 +00:00
|
|
|
# define rustsecp256k1_v0_8_1_umul128 _umul128
|
|
|
|
# define rustsecp256k1_v0_8_1_mul128 _mul128
|
2022-12-20 21:11:14 +00:00
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
/* On other systems, emulate 64x64->128 multiplications using 32x32->64 multiplications. */
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE uint64_t rustsecp256k1_v0_8_1_umul128(uint64_t a, uint64_t b, uint64_t* hi) {
|
2022-12-20 21:11:14 +00:00
|
|
|
uint64_t ll = (uint64_t)(uint32_t)a * (uint32_t)b;
|
|
|
|
uint64_t lh = (uint32_t)a * (b >> 32);
|
|
|
|
uint64_t hl = (a >> 32) * (uint32_t)b;
|
|
|
|
uint64_t hh = (a >> 32) * (b >> 32);
|
|
|
|
uint64_t mid34 = (ll >> 32) + (uint32_t)lh + (uint32_t)hl;
|
|
|
|
*hi = hh + (lh >> 32) + (hl >> 32) + (mid34 >> 32);
|
|
|
|
return (mid34 << 32) + (uint32_t)ll;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE int64_t rustsecp256k1_v0_8_1_mul128(int64_t a, int64_t b, int64_t* hi) {
|
2022-12-20 21:11:14 +00:00
|
|
|
uint64_t ll = (uint64_t)(uint32_t)a * (uint32_t)b;
|
|
|
|
int64_t lh = (uint32_t)a * (b >> 32);
|
|
|
|
int64_t hl = (a >> 32) * (uint32_t)b;
|
|
|
|
int64_t hh = (a >> 32) * (b >> 32);
|
|
|
|
uint64_t mid34 = (ll >> 32) + (uint32_t)lh + (uint32_t)hl;
|
|
|
|
*hi = hh + (lh >> 32) + (hl >> 32) + (mid34 >> 32);
|
|
|
|
return (mid34 << 32) + (uint32_t)ll;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_u128_load(rustsecp256k1_v0_8_1_uint128 *r, uint64_t hi, uint64_t lo) {
|
2022-12-20 21:11:14 +00:00
|
|
|
r->hi = hi;
|
|
|
|
r->lo = lo;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_u128_mul(rustsecp256k1_v0_8_1_uint128 *r, uint64_t a, uint64_t b) {
|
|
|
|
r->lo = rustsecp256k1_v0_8_1_umul128(a, b, &r->hi);
|
2022-12-20 21:11:14 +00:00
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_u128_accum_mul(rustsecp256k1_v0_8_1_uint128 *r, uint64_t a, uint64_t b) {
|
2022-12-20 21:11:14 +00:00
|
|
|
uint64_t lo, hi;
|
2023-03-17 05:22:01 +00:00
|
|
|
lo = rustsecp256k1_v0_8_1_umul128(a, b, &hi);
|
2022-12-20 21:11:14 +00:00
|
|
|
r->lo += lo;
|
|
|
|
r->hi += hi + (r->lo < lo);
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_u128_accum_u64(rustsecp256k1_v0_8_1_uint128 *r, uint64_t a) {
|
2022-12-20 21:11:14 +00:00
|
|
|
r->lo += a;
|
|
|
|
r->hi += r->lo < a;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unsigned (logical) right shift.
|
|
|
|
* Non-constant time in n.
|
|
|
|
*/
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_u128_rshift(rustsecp256k1_v0_8_1_uint128 *r, unsigned int n) {
|
2022-12-20 21:11:14 +00:00
|
|
|
VERIFY_CHECK(n < 128);
|
|
|
|
if (n >= 64) {
|
|
|
|
r->lo = r->hi >> (n-64);
|
|
|
|
r->hi = 0;
|
|
|
|
} else if (n > 0) {
|
|
|
|
r->lo = ((1U * r->hi) << (64-n)) | r->lo >> n;
|
|
|
|
r->hi >>= n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE uint64_t rustsecp256k1_v0_8_1_u128_to_u64(const rustsecp256k1_v0_8_1_uint128 *a) {
|
2022-12-20 21:11:14 +00:00
|
|
|
return a->lo;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE uint64_t rustsecp256k1_v0_8_1_u128_hi_u64(const rustsecp256k1_v0_8_1_uint128 *a) {
|
2022-12-20 21:11:14 +00:00
|
|
|
return a->hi;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_u128_from_u64(rustsecp256k1_v0_8_1_uint128 *r, uint64_t a) {
|
2022-12-20 21:11:14 +00:00
|
|
|
r->hi = 0;
|
|
|
|
r->lo = a;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE int rustsecp256k1_v0_8_1_u128_check_bits(const rustsecp256k1_v0_8_1_uint128 *r, unsigned int n) {
|
2022-12-20 21:11:14 +00:00
|
|
|
VERIFY_CHECK(n < 128);
|
|
|
|
return n >= 64 ? r->hi >> (n - 64) == 0
|
|
|
|
: r->hi == 0 && r->lo >> n == 0;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_i128_load(rustsecp256k1_v0_8_1_int128 *r, int64_t hi, uint64_t lo) {
|
2022-12-20 21:11:14 +00:00
|
|
|
r->hi = hi;
|
|
|
|
r->lo = lo;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_i128_mul(rustsecp256k1_v0_8_1_int128 *r, int64_t a, int64_t b) {
|
2022-12-20 21:11:14 +00:00
|
|
|
int64_t hi;
|
2023-03-17 05:22:01 +00:00
|
|
|
r->lo = (uint64_t)rustsecp256k1_v0_8_1_mul128(a, b, &hi);
|
2022-12-20 21:11:14 +00:00
|
|
|
r->hi = (uint64_t)hi;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_i128_accum_mul(rustsecp256k1_v0_8_1_int128 *r, int64_t a, int64_t b) {
|
2022-12-20 21:11:14 +00:00
|
|
|
int64_t hi;
|
2023-03-17 05:22:01 +00:00
|
|
|
uint64_t lo = (uint64_t)rustsecp256k1_v0_8_1_mul128(a, b, &hi);
|
2022-12-20 21:11:14 +00:00
|
|
|
r->lo += lo;
|
|
|
|
hi += r->lo < lo;
|
|
|
|
/* Verify no overflow.
|
|
|
|
* If r represents a positive value (the sign bit is not set) and the value we are adding is a positive value (the sign bit is not set),
|
|
|
|
* then we require that the resulting value also be positive (the sign bit is not set).
|
|
|
|
* Note that (X <= Y) means (X implies Y) when X and Y are boolean values (i.e. 0 or 1).
|
|
|
|
*/
|
|
|
|
VERIFY_CHECK((r->hi <= 0x7fffffffffffffffu && (uint64_t)hi <= 0x7fffffffffffffffu) <= (r->hi + (uint64_t)hi <= 0x7fffffffffffffffu));
|
|
|
|
/* Verify no underflow.
|
|
|
|
* If r represents a negative value (the sign bit is set) and the value we are adding is a negative value (the sign bit is set),
|
|
|
|
* then we require that the resulting value also be negative (the sign bit is set).
|
|
|
|
*/
|
|
|
|
VERIFY_CHECK((r->hi > 0x7fffffffffffffffu && (uint64_t)hi > 0x7fffffffffffffffu) <= (r->hi + (uint64_t)hi > 0x7fffffffffffffffu));
|
|
|
|
r->hi += hi;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_i128_dissip_mul(rustsecp256k1_v0_8_1_int128 *r, int64_t a, int64_t b) {
|
2022-12-20 21:11:14 +00:00
|
|
|
int64_t hi;
|
2023-03-17 05:22:01 +00:00
|
|
|
uint64_t lo = (uint64_t)rustsecp256k1_v0_8_1_mul128(a, b, &hi);
|
2022-12-20 21:11:14 +00:00
|
|
|
hi += r->lo < lo;
|
|
|
|
/* Verify no overflow.
|
|
|
|
* If r represents a positive value (the sign bit is not set) and the value we are subtracting is a negative value (the sign bit is set),
|
|
|
|
* then we require that the resulting value also be positive (the sign bit is not set).
|
|
|
|
*/
|
|
|
|
VERIFY_CHECK((r->hi <= 0x7fffffffffffffffu && (uint64_t)hi > 0x7fffffffffffffffu) <= (r->hi - (uint64_t)hi <= 0x7fffffffffffffffu));
|
|
|
|
/* Verify no underflow.
|
|
|
|
* If r represents a negative value (the sign bit is set) and the value we are subtracting is a positive value (the sign sign bit is not set),
|
|
|
|
* then we require that the resulting value also be negative (the sign bit is set).
|
|
|
|
*/
|
|
|
|
VERIFY_CHECK((r->hi > 0x7fffffffffffffffu && (uint64_t)hi <= 0x7fffffffffffffffu) <= (r->hi - (uint64_t)hi > 0x7fffffffffffffffu));
|
|
|
|
r->hi -= hi;
|
|
|
|
r->lo -= lo;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_i128_det(rustsecp256k1_v0_8_1_int128 *r, int64_t a, int64_t b, int64_t c, int64_t d) {
|
|
|
|
rustsecp256k1_v0_8_1_i128_mul(r, a, d);
|
|
|
|
rustsecp256k1_v0_8_1_i128_dissip_mul(r, b, c);
|
2022-12-20 21:11:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Signed (arithmetic) right shift.
|
|
|
|
* Non-constant time in n.
|
|
|
|
*/
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_i128_rshift(rustsecp256k1_v0_8_1_int128 *r, unsigned int n) {
|
2022-12-20 21:11:14 +00:00
|
|
|
VERIFY_CHECK(n < 128);
|
|
|
|
if (n >= 64) {
|
|
|
|
r->lo = (uint64_t)((int64_t)(r->hi) >> (n-64));
|
|
|
|
r->hi = (uint64_t)((int64_t)(r->hi) >> 63);
|
|
|
|
} else if (n > 0) {
|
|
|
|
r->lo = ((1U * r->hi) << (64-n)) | r->lo >> n;
|
|
|
|
r->hi = (uint64_t)((int64_t)(r->hi) >> n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE int64_t rustsecp256k1_v0_8_1_i128_to_i64(const rustsecp256k1_v0_8_1_int128 *a) {
|
2022-12-20 21:11:14 +00:00
|
|
|
return (int64_t)a->lo;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE void rustsecp256k1_v0_8_1_i128_from_i64(rustsecp256k1_v0_8_1_int128 *r, int64_t a) {
|
2022-12-20 21:11:14 +00:00
|
|
|
r->hi = (uint64_t)(a >> 63);
|
|
|
|
r->lo = (uint64_t)a;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE int rustsecp256k1_v0_8_1_i128_eq_var(const rustsecp256k1_v0_8_1_int128 *a, const rustsecp256k1_v0_8_1_int128 *b) {
|
2022-12-20 21:11:14 +00:00
|
|
|
return a->hi == b->hi && a->lo == b->lo;
|
|
|
|
}
|
|
|
|
|
2023-03-17 05:22:01 +00:00
|
|
|
static SECP256K1_INLINE int rustsecp256k1_v0_8_1_i128_check_pow2(const rustsecp256k1_v0_8_1_int128 *r, unsigned int n) {
|
2022-12-20 21:11:14 +00:00
|
|
|
VERIFY_CHECK(n < 127);
|
|
|
|
return n >= 64 ? r->hi == (uint64_t)1 << (n - 64) && r->lo == 0
|
|
|
|
: r->hi == 0 && r->lo == (uint64_t)1 << n;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|