123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- #define _GNU_SOURCE
- #include <assert.h>
- #include <limits.h>
- #include <stdbool.h>
- #include <stdio.h>
- #include <stdint.h>
- #include <string.h>
- #include <unistd.h>
- #include <linux/random.h>
- #include <sys/syscall.h>
- #include <sys/time.h>
- #include <gmp.h>
- #define INIT_TIMEIT() \
- struct timeval __start, __end; \
- double __sdiff = 0, __udiff = 0
- #define START_TIMEIT() \
- gettimeofday(&__start, NULL)
- #define END_TIMEIT() \
- gettimeofday(&__end, NULL); \
- __sdiff += (__end.tv_sec - __start.tv_sec); \
- __udiff += (__end.tv_usec - __start.tv_usec)
- #define GET_TIMEIT() \
- __sdiff + __udiff * 1e-6
- #define TIMEIT_FORMAT "%lf"
- const static char* p_str =
- "0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
- "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
- "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
- "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
- "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
- "505CAF";
- const static char* g_str =
- "11510609";
- mpz_t p, g;
- uint32_t gg = 11510609;
- static inline ssize_t
- getrandom(void *buffer, size_t length, unsigned int flags)
- {
- return syscall(SYS_getrandom, buffer, length, flags);
- }
- uint32_t convert(uint64_t * nn)
- {
- uint32_t steps = 0;
-
- #define strip_size 8
- #define distinguished(x) ((x[23] & (~(ULLONG_MAX >> strip_size)))) == 0
- #define lbindex(x) __builtin_clzll(x);
- while (!distinguished(nn)) {
-
- uint64_t x = nn[23];
- if (x == 0) return steps;
- uint32_t first_bit = lbindex(x);
- uint32_t second_bit = 0;
- while (x != 0) {
-
- x &= ~(0x8000000000000000 >> first_bit);
- if (x == 0) {
- const uint32_t w = 64 - first_bit;
- if (w > strip_size) {
- return steps + first_bit + 1;
- } else {
-
- const uint64_t a = mpn_lshift(nn, nn, 24, 36) * gg;
- mpn_add_1(nn, nn, 24, a);
- steps += 36;
- }
- } else {
- second_bit = lbindex(x);
- if (second_bit - first_bit > strip_size) {
- return steps + first_bit + 1;
- } else {
- first_bit = second_bit;
- }
- }
- }
- }
- return steps;
- }
- uint32_t naif_convert(mpz_t n)
- {
- uint32_t i;
- mpz_t t;
- mpz_init_set_ui(t, 1);
- mpz_mul_2exp(t, t, 1536-strip_size);
- for (i = 0; mpz_cmp(n, t) > -1; i++) {
- mpz_mul_2exp(n, n, 1);
- mpz_mod(n, n, p);
- }
- mpz_clear(t);
- return i;
- }
- int main()
- {
- mpz_init_set_str(p, p_str, 0);
- mpz_init_set_str(g, g_str, 10);
- gmp_randstate_t _rstate;
- unsigned long int _rseed;
- gmp_randinit_default(_rstate);
- getrandom(&_rseed, sizeof(unsigned long int), GRND_NONBLOCK);
- gmp_randseed_ui(_rstate, _rseed);
- mpz_t n, n0;
- mpz_inits(n, n0, NULL);
- INIT_TIMEIT();
- uint32_t converted;
- for (int i=0; i < 1e5; i++) {
- mpz_urandomm(n0, _rstate, p);
- mpz_set(n, n0);
- START_TIMEIT();
- converted = convert(n->_mp_d);
- END_TIMEIT();
- mpz_set(n, n0);
- assert(converted == naif_convert(n));
- }
- printf(TIMEIT_FORMAT "\n", GET_TIMEIT());
-
-
-
-
-
-
-
- mpz_clears(n, n0, p, g, NULL);
- return 0;
- }
|