aboutsummaryrefslogtreecommitdiff
path: root/gmp-6.3.0/mini-gmp/tests/t-div_2exp.c
blob: 53d3f2b84d9b1f8500e41a970d7cb4dc9e9f707c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*

Copyright 2012, Free Software Foundation, Inc.

This file is part of the GNU MP Library test suite.

The GNU MP Library test suite 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.

The GNU MP Library test suite 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
the GNU MP Library test suite.  If not, see https://www.gnu.org/licenses/.  */

#include <assert.h>
#include <stdlib.h>
#include <stdio.h>

#include "testutils.h"

#define MAXBITS 400
#define COUNT 10000

typedef void div_func (mpz_t, const mpz_t, mp_bitcnt_t);

void
testmain (int argc, char **argv)
{
  unsigned i;
  mpz_t a, res, ref;
  mp_bitcnt_t b;

  mpz_init (a);
  mpz_init (res);
  mpz_init (ref);

  for (i = 0; i < COUNT; i++)
    {
      unsigned j;
      for (j = 0; j < 6; j++)
	{
	  static const enum hex_random_op ops[6] =
	    {
	      OP_CDIV_Q_2, OP_CDIV_R_2,
	      OP_FDIV_Q_2, OP_FDIV_R_2,
	      OP_TDIV_Q_2, OP_TDIV_R_2
	    };
	  static const char *name[6] =
	    {
	      "cdiv_q", "cdiv_r",
	      "fdiv_q", "fdiv_r",
	      "tdiv_q", "tdiv_r"
	    };
	  static div_func * const div [6] =
	    {
	      mpz_cdiv_q_2exp, mpz_cdiv_r_2exp,
	      mpz_fdiv_q_2exp, mpz_fdiv_r_2exp,
	      mpz_tdiv_q_2exp, mpz_tdiv_r_2exp
	    };

	  mini_random_bit_op (ops[j], MAXBITS, a, &b, ref);
	  div[j] (res, a, b);
	  if (mpz_cmp (ref, res))
	    {
	      fprintf (stderr, "mpz_%s_2exp failed:\n", name[j]);
	      dump ("a", a);
	      fprintf (stderr, "b: %lu\n", b);
	      dump ("r", res);
	      dump ("ref", ref);
	      abort ();
	    }
	}
    }
  mpz_clear (a);
  mpz_clear (res);
  mpz_clear (ref);
}