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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
/* Auxiliary routines for the ecm library.
Copyright 2001, 2002, 2003, 2004, 2005 Paul Zimmermann and Alexander Kruppa.
This file is part of the ECM Library.
The ECM Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.
The ECM Library 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the ECM Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
MA 02110-1301, USA.
*/
/* need stdio.h and stdarg.h for gmp.h to declare gmp_vfprintf */
#include <stdio.h>
#include <stdarg.h>
#include <gmp.h>
#include "ecm-impl.h"
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
#ifdef HAVE_LIMITS_H
# include <limits.h>
#else
# ifndef ULONG_MAX
# define LONG_MAX (__GMP_ULONG_MAX / 2)
# endif
#endif
#ifdef HAVE_STDINT
#include <stdint.h>
#else
/* size_t is an unsigned integer so this ought to work */
#ifndef SIZE_MAX
#define SIZE_MAX (~((size_t) 0))
#endif
#endif
#define VERBOSE __ECM(verbose)
static int VERBOSE = OUTPUT_NORMAL;
void
mpz_add_si (mpz_t r, mpz_t s, long i)
{
if (i >= 0)
mpz_add_ui (r, s, (unsigned long) i);
else
mpz_sub_ui (r, s, (unsigned long) (-i));
}
void
mpz_sub_si (mpz_t r, mpz_t s, long i)
{
if (i >= 0)
mpz_sub_ui (r, s, (unsigned long) i);
else
mpz_add_ui (r, s, (unsigned long) (-i));
}
/* Divide RS by 3 */
void
mpz_divby3_1op (mpz_t RS)
{
mp_size_t abssize = mpz_size (RS);
mp_limb_t r;
if (abssize == 0)
return;
r = mpn_divexact_by3 (RS->_mp_d, RS->_mp_d, abssize);
ASSERT (r == 0);
if (RS->_mp_d[abssize - 1] == 0)
RS->_mp_size -= mpz_sgn (RS);
}
/* Convert a double d to a size_t. If d < 0., returns 0. If d > MAX_SIZE,
returns MAX_SIZE. */
size_t
double_to_size (double d)
{
if (d < 0.)
return (size_t) 0;
if (d > (double) SIZE_MAX)
return SIZE_MAX;
return (size_t) d;
}
/* cputime () gives the elapsed time in milliseconds */
#if defined (_WIN32)
/* First case - GetProcessTimes () is the only known way of getting process
* time (as opposed to calendar time) under mingw32 */
#include <windows.h>
long
cputime ()
{
FILETIME lpCreationTime, lpExitTime, lpKernelTime, lpUserTime;
ULARGE_INTEGER n;
HANDLE hProcess = GetCurrentProcess();
GetProcessTimes (hProcess, &lpCreationTime, &lpExitTime, &lpKernelTime,
&lpUserTime);
/* copy FILETIME to a ULARGE_INTEGER as recommended by MSDN docs */
n.u.LowPart = lpUserTime.dwLowDateTime;
n.u.HighPart = lpUserTime.dwHighDateTime;
/* lpUserTime is in units of 100 ns. Return time in milliseconds */
return (long) (n.QuadPart / 10000);
}
#elif defined (HAVE_GETRUSAGE)
/* Next case: getrusage () has higher resolution than clock () and so is
preferred. */
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
# include <sys/resource.h>
#endif
long
cputime ()
{
struct rusage rus;
getrusage (RUSAGE_SELF, &rus);
/* This overflows a 32 bit signed int after 2147483s = 24.85 days */
return rus.ru_utime.tv_sec * 1000L + rus.ru_utime.tv_usec / 1000L;
}
#else
/* Resort to clock (), which on some systems may return calendar time. */
long
cputime ()
{
/* Return time in milliseconds */
return (long) (clock () * (1000. / (double) CLOCKS_PER_SEC));
}
#endif /* defining cputime () */
/* ellapsed time (in milliseconds) between st0 and st1 (values of cputime) */
long
elltime (long st0, long st1)
{
if (st1 >= st0)
return st1 - st0;
else
{
/* A wrap around can only really happen on a system where long int is
32 bit and where we use clock(). So we assume that there was exactly
one wrap-around which "swallowed"
LONG_MAX * (1000. / (double) CLOCKS_PER_SEC) milliseconds. */
return st1 - st0 + (long)(LONG_MAX * (1000. / (double) CLOCKS_PER_SEC));
}
}
/* Get real (wall-clock) time in milliseconds */
long
realtime ()
{
#ifdef HAVE_GETTIMEOFDAY
struct timeval tv;
if (gettimeofday(&tv, NULL) != 0)
return 0L;
return (long) tv.tv_sec * 1000L + (long) tv.tv_usec / 1000L;
#else
return 0L;
#endif
}
int
get_verbose ()
{
return VERBOSE;
}
/* Tests if loglevel gets printed with the current verbose setting */
int
test_verbose (int loglevel)
{
return (loglevel <= VERBOSE);
}
void
set_verbose (int v)
{
VERBOSE = v;
}
int
inc_verbose ()
{
VERBOSE ++;
return VERBOSE;
}
int
outputf (int loglevel, char *format, ...)
{
va_list ap;
int n = 0;
va_start (ap, format);
MEMORY_TAG; /* For gmp_*printf's temp allocs */
if (loglevel != OUTPUT_ERROR && loglevel <= VERBOSE)
{
n = gmp_vfprintf (ECM_STDOUT, format, ap);
fflush (ECM_STDOUT);
}
else if (loglevel == OUTPUT_ERROR)
n = gmp_vfprintf (ECM_STDERR, format, ap);
MEMORY_UNTAG;
va_end (ap);
return n;
}
void
writechkfile (char *chkfilename, int method, double p, mpmod_t modulus,
mpres_t A, mpres_t x, mpres_t z)
{
FILE *chkfile;
char *methodname;
mpz_t t;
outputf (OUTPUT_DEVVERBOSE, "Writing checkpoint to %s at p = %.0f\n",
chkfilename, p);
switch (method)
{
case ECM_ECM : methodname = "ECM"; break;
case ECM_PM1 : methodname = "P-1"; break;
case ECM_PP1 : methodname = "P+1"; break;
default:
outputf (OUTPUT_ERROR, "writechkfile: Invalid method\n");
return;
}
chkfile = fopen (chkfilename, "w");
if (chkfile == NULL)
{
outputf (OUTPUT_ERROR, "Error opening checkpoint file %s\n",
chkfilename);
return;
}
mpz_init (t);
gmp_fprintf (chkfile, "METHOD=%s; B1=%.0f; N=%Zd;",
methodname, p, modulus->orig_modulus);
mpres_get_z (t, x, modulus);
gmp_fprintf (chkfile, " X=0x%Zx;", t);
if (method == ECM_ECM)
{
mpres_get_z (t, z, modulus);
gmp_fprintf (chkfile, " Z=0x%Zx;", t);
mpres_get_z (t, A, modulus);
gmp_fprintf (chkfile, " A=0x%Zx;", t);
}
fprintf (chkfile, "\n");
mpz_clear (t);
fflush (chkfile);
fclose (chkfile);
}
|