1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Avoid explicit 64-bit constants; construct them by multiplication at

compile-time.
This commit is contained in:
hniksic 2005-04-01 10:22:38 -08:00
parent 30e4a33756
commit e65ff5729a
6 changed files with 98 additions and 112 deletions

View File

@ -1,3 +1,14 @@
2005-03-31 Hrvoje Niksic <hniksic@xemacs.org>
* utils.c (number_to_string): Avoid explicit 64-bit constants;
construct them by multiplication at compile-time.
* utils.c, elsewhere: Don't append "L" to 32-bit integer
constants; we aren't really compilable on 16-bit systems anyway.
* hash.c (prime_size): Remove primes larger than 2^31, but include
2^31-1, which is prime.
2005-03-30 Hrvoje Niksic <hniksic@xemacs.org> 2005-03-30 Hrvoje Niksic <hniksic@xemacs.org>
* utils.c (string_set_to_array): New function. * utils.c (string_set_to_array): New function.

View File

@ -648,7 +648,7 @@ select_fd (int fd, double maxtime, int wait_for)
wr = &fdset; wr = &fdset;
tmout.tv_sec = (long) maxtime; tmout.tv_sec = (long) maxtime;
tmout.tv_usec = 1000000L * (maxtime - (long) maxtime); tmout.tv_usec = 1000000 * (maxtime - (long) maxtime);
do do
result = select (fd + 1, rd, wr, NULL, &tmout); result = select (fd + 1, rd, wr, NULL, &tmout);

View File

@ -253,7 +253,7 @@ getftp (struct url *u, wgint *len, wgint restval, ccon *con)
char *tms, *tmrate; char *tms, *tmrate;
int cmd = con->cmd; int cmd = con->cmd;
int pasv_mode_open = 0; int pasv_mode_open = 0;
wgint expected_bytes = 0L; wgint expected_bytes = 0;
int rest_failed = 0; int rest_failed = 0;
int flags; int flags;
wgint rd_size; wgint rd_size;

View File

@ -214,7 +214,7 @@ struct hash_table {
static int static int
prime_size (int size, int *prime_offset) prime_size (int size, int *prime_offset)
{ {
static const unsigned long primes [] = { static const int primes[] = {
13, 19, 29, 41, 59, 79, 107, 149, 197, 263, 347, 457, 599, 787, 1031, 13, 19, 29, 41, 59, 79, 107, 149, 197, 263, 347, 457, 599, 787, 1031,
1361, 1777, 2333, 3037, 3967, 5167, 6719, 8737, 11369, 14783, 1361, 1777, 2333, 3037, 3967, 5167, 6719, 8737, 11369, 14783,
19219, 24989, 32491, 42257, 54941, 71429, 92861, 120721, 156941, 19219, 24989, 32491, 42257, 54941, 71429, 92861, 120721, 156941,
@ -223,8 +223,7 @@ prime_size (int size, int *prime_offset)
10445899, 13579681, 17653589, 22949669, 29834603, 38784989, 10445899, 13579681, 17653589, 22949669, 29834603, 38784989,
50420551, 65546729, 85210757, 110774011, 144006217, 187208107, 50420551, 65546729, 85210757, 110774011, 144006217, 187208107,
243370577, 316381771, 411296309, 534685237, 695090819, 903618083, 243370577, 316381771, 411296309, 534685237, 695090819, 903618083,
1174703521, 1527114613, 1985248999, 1174703521, 1527114613, 1837299131, 2147483647
(unsigned long)0x99d43ea5, (unsigned long)0xc7fa5177
}; };
int i; int i;

View File

@ -1144,7 +1144,7 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
auth_tried_already = 0; auth_tried_already = 0;
/* Initialize certain elements of struct http_stat. */ /* Initialize certain elements of struct http_stat. */
hs->len = 0L; hs->len = 0;
hs->contlen = -1; hs->contlen = -1;
hs->res = -1; hs->res = -1;
hs->newloc = NULL; hs->newloc = NULL;
@ -1771,7 +1771,7 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
if (!(*dt & RETROKF) || (*dt & HEAD_ONLY)) if (!(*dt & RETROKF) || (*dt & HEAD_ONLY))
{ {
/* In case the caller cares to look... */ /* In case the caller cares to look... */
hs->len = 0L; hs->len = 0;
hs->res = 0; hs->res = 0;
xfree_null (type); xfree_null (type);
/* Pre-1.10 Wget used CLOSE_INVALIDATE here. Now we trust the /* Pre-1.10 Wget used CLOSE_INVALIDATE here. Now we trust the

View File

@ -1313,78 +1313,40 @@ numdigit (wgint number)
return cnt; return cnt;
} }
#define ONE_DIGIT(figure) *p++ = n / (figure) + '0' #define PR(mask) *p++ = n / (mask) + '0'
#define ONE_DIGIT_ADVANCE(figure) (ONE_DIGIT (figure), n %= (figure))
#define DIGITS_1(figure) ONE_DIGIT (figure) /* DIGITS_<D> is used to print a D-digit number and should be called
#define DIGITS_2(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_1 ((figure) / 10) with mask==10^(D-1). It prints n/mask (the first digit), reducing
#define DIGITS_3(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_2 ((figure) / 10) n to n%mask (the remaining digits), and calling DIGITS_<D-1>.
#define DIGITS_4(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_3 ((figure) / 10) Recursively this continues until DIGITS_1 is invoked. */
#define DIGITS_5(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_4 ((figure) / 10)
#define DIGITS_6(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_5 ((figure) / 10)
#define DIGITS_7(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_6 ((figure) / 10)
#define DIGITS_8(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_7 ((figure) / 10)
#define DIGITS_9(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_8 ((figure) / 10)
#define DIGITS_10(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_9 ((figure) / 10)
/* DIGITS_<11-20> are only used on machines with 64-bit numbers. */ #define DIGITS_1(mask) PR (mask)
#define DIGITS_2(mask) PR (mask), n %= (mask), DIGITS_1 ((mask) / 10)
#define DIGITS_3(mask) PR (mask), n %= (mask), DIGITS_2 ((mask) / 10)
#define DIGITS_4(mask) PR (mask), n %= (mask), DIGITS_3 ((mask) / 10)
#define DIGITS_5(mask) PR (mask), n %= (mask), DIGITS_4 ((mask) / 10)
#define DIGITS_6(mask) PR (mask), n %= (mask), DIGITS_5 ((mask) / 10)
#define DIGITS_7(mask) PR (mask), n %= (mask), DIGITS_6 ((mask) / 10)
#define DIGITS_8(mask) PR (mask), n %= (mask), DIGITS_7 ((mask) / 10)
#define DIGITS_9(mask) PR (mask), n %= (mask), DIGITS_8 ((mask) / 10)
#define DIGITS_10(mask) PR (mask), n %= (mask), DIGITS_9 ((mask) / 10)
#define DIGITS_11(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_10 ((figure) / 10) /* DIGITS_<11-20> are only used on machines with 64-bit wgints. */
#define DIGITS_12(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_11 ((figure) / 10)
#define DIGITS_13(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_12 ((figure) / 10)
#define DIGITS_14(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_13 ((figure) / 10)
#define DIGITS_15(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_14 ((figure) / 10)
#define DIGITS_16(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_15 ((figure) / 10)
#define DIGITS_17(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_16 ((figure) / 10)
#define DIGITS_18(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_17 ((figure) / 10)
#define DIGITS_19(figure) ONE_DIGIT_ADVANCE (figure); DIGITS_18 ((figure) / 10)
/* It is annoying that we have three different syntaxes for 64-bit constants: #define DIGITS_11(mask) PR (mask), n %= (mask), DIGITS_10 ((mask) / 10)
- nnnL for 64-bit systems, where they are of type long; #define DIGITS_12(mask) PR (mask), n %= (mask), DIGITS_11 ((mask) / 10)
- nnnLL for 32-bit systems that support long long; #define DIGITS_13(mask) PR (mask), n %= (mask), DIGITS_12 ((mask) / 10)
- nnnI64 for MS compiler on Windows, which doesn't support long long. */ #define DIGITS_14(mask) PR (mask), n %= (mask), DIGITS_13 ((mask) / 10)
#define DIGITS_15(mask) PR (mask), n %= (mask), DIGITS_14 ((mask) / 10)
#if SIZEOF_LONG > 4 #define DIGITS_16(mask) PR (mask), n %= (mask), DIGITS_15 ((mask) / 10)
/* If long is large enough, use long constants. */ #define DIGITS_17(mask) PR (mask), n %= (mask), DIGITS_16 ((mask) / 10)
# define C10000000000 10000000000L #define DIGITS_18(mask) PR (mask), n %= (mask), DIGITS_17 ((mask) / 10)
# define C100000000000 100000000000L #define DIGITS_19(mask) PR (mask), n %= (mask), DIGITS_18 ((mask) / 10)
# define C1000000000000 1000000000000L
# define C10000000000000 10000000000000L
# define C100000000000000 100000000000000L
# define C1000000000000000 1000000000000000L
# define C10000000000000000 10000000000000000L
# define C100000000000000000 100000000000000000L
# define C1000000000000000000 1000000000000000000L
#else
# if SIZEOF_LONG_LONG != 0
/* Otherwise, if long long is available, use long long constants. */
# define C10000000000 10000000000LL
# define C100000000000 100000000000LL
# define C1000000000000 1000000000000LL
# define C10000000000000 10000000000000LL
# define C100000000000000 100000000000000LL
# define C1000000000000000 1000000000000000LL
# define C10000000000000000 10000000000000000LL
# define C100000000000000000 100000000000000000LL
# define C1000000000000000000 1000000000000000000LL
# else
# if defined(WINDOWS)
/* Use __int64 constants under Windows. */
# define C10000000000 10000000000I64
# define C100000000000 100000000000I64
# define C1000000000000 1000000000000I64
# define C10000000000000 10000000000000I64
# define C100000000000000 100000000000000I64
# define C1000000000000000 1000000000000000I64
# define C10000000000000000 10000000000000000I64
# define C100000000000000000 100000000000000000I64
# define C1000000000000000000 1000000000000000000I64
# endif
# endif
#endif
/* SPRINTF_WGINT is used by number_to_string to handle pathological /* SPRINTF_WGINT is used by number_to_string to handle pathological
cases and to portably support strange sizes of wgint. */ cases and to portably support strange sizes of wgint. Ideally this
would just use "%j" and intmax_t, but many systems don't support
it, so it's used only if nothing else works. */
#if SIZEOF_LONG >= SIZEOF_WGINT #if SIZEOF_LONG >= SIZEOF_WGINT
# define SPRINTF_WGINT(buf, n) sprintf (buf, "%ld", (long) (n)) # define SPRINTF_WGINT(buf, n) sprintf (buf, "%ld", (long) (n))
#else #else
@ -1393,10 +1355,15 @@ numdigit (wgint number)
# else # else
# ifdef WINDOWS # ifdef WINDOWS
# define SPRINTF_WGINT(buf, n) sprintf (buf, "%I64", (__int64) (n)) # define SPRINTF_WGINT(buf, n) sprintf (buf, "%I64", (__int64) (n))
# else
# define SPRINTF_WGINT(buf, n) sprintf (buf, "%j", (intmax_t) (n))
# endif # endif
# endif # endif
#endif #endif
/* Shorthand for casting to wgint. */
#define W wgint
/* Print NUMBER to BUFFER in base 10. This is equivalent to /* Print NUMBER to BUFFER in base 10. This is equivalent to
`sprintf(buffer, "%lld", (long long) number)', only typically much `sprintf(buffer, "%lld", (long long) number)', only typically much
faster and portable to machines without long long. faster and portable to machines without long long.
@ -1433,8 +1400,7 @@ number_to_string (char *buffer, wgint number)
{ {
if (n < -WGINT_MAX) if (n < -WGINT_MAX)
{ {
/* We cannot print a '-' and assign -n to n because -n would /* -n would overflow. Have sprintf deal with this. */
overflow. Let sprintf deal with this border case. */
SPRINTF_WGINT (buffer, n); SPRINTF_WGINT (buffer, n);
p += strlen (buffer); p += strlen (buffer);
return p; return p;
@ -1444,31 +1410,37 @@ number_to_string (char *buffer, wgint number)
n = -n; n = -n;
} }
if (n < 10) { DIGITS_1 (1); } /* Use the DIGITS_ macro appropriate for N's number of digits. That
else if (n < 100) { DIGITS_2 (10); } way printing any N is fully open-coded without a loop or jump.
else if (n < 1000) { DIGITS_3 (100); } (Also see description of DIGITS_*.) */
else if (n < 10000) { DIGITS_4 (1000); }
else if (n < 100000) { DIGITS_5 (10000); } if (n < 10) DIGITS_1 (1);
else if (n < 1000000) { DIGITS_6 (100000); } else if (n < 100) DIGITS_2 (10);
else if (n < 10000000) { DIGITS_7 (1000000); } else if (n < 1000) DIGITS_3 (100);
else if (n < 100000000) { DIGITS_8 (10000000); } else if (n < 10000) DIGITS_4 (1000);
else if (n < 1000000000) { DIGITS_9 (100000000); } else if (n < 100000) DIGITS_5 (10000);
else if (n < 1000000) DIGITS_6 (100000);
else if (n < 10000000) DIGITS_7 (1000000);
else if (n < 100000000) DIGITS_8 (10000000);
else if (n < 1000000000) DIGITS_9 (100000000);
#if SIZEOF_WGINT == 4 #if SIZEOF_WGINT == 4
/* wgint is four bytes long: we're done. */ /* wgint is 32 bits wide: no number has more than 10 digits. */
/* ``if (1)'' serves only to preserve editor indentation. */ else DIGITS_10 (1000000000);
else if (1) { DIGITS_10 (1000000000); }
#else #else
/* wgint is 64 bits long -- make sure to process all the digits. */ /* wgint is 64 bits wide: handle numbers with more than 9 decimal
else if (n < C10000000000) { DIGITS_10 (1000000000); } digits. Constants are constructed by compile-time multiplication
else if (n < C100000000000) { DIGITS_11 (C10000000000); } to avoid dealing with different notations for 64-bit constants
else if (n < C1000000000000) { DIGITS_12 (C100000000000); } (nnnL, nnnLL, and nnnI64, depending on the compiler). */
else if (n < C10000000000000) { DIGITS_13 (C1000000000000); } else if (n < 10*(W)1000000000) DIGITS_10 (1000000000);
else if (n < C100000000000000) { DIGITS_14 (C10000000000000); } else if (n < 100*(W)1000000000) DIGITS_11 (10*(W)1000000000);
else if (n < C1000000000000000) { DIGITS_15 (C100000000000000); } else if (n < 1000*(W)1000000000) DIGITS_12 (100*(W)1000000000);
else if (n < C10000000000000000) { DIGITS_16 (C1000000000000000); } else if (n < 10000*(W)1000000000) DIGITS_13 (1000*(W)1000000000);
else if (n < C100000000000000000) { DIGITS_17 (C10000000000000000); } else if (n < 100000*(W)1000000000) DIGITS_14 (10000*(W)1000000000);
else if (n < C1000000000000000000) { DIGITS_18 (C100000000000000000); } else if (n < 1000000*(W)1000000000) DIGITS_15 (100000*(W)1000000000);
else { DIGITS_19 (C1000000000000000000); } else if (n < 10000000*(W)1000000000) DIGITS_16 (1000000*(W)1000000000);
else if (n < 100000000*(W)1000000000) DIGITS_17 (10000000*(W)1000000000);
else if (n < 1000000000*(W)1000000000) DIGITS_18 (100000000*(W)1000000000);
else DIGITS_19 (1000000000*(W)1000000000);
#endif #endif
*p = '\0'; *p = '\0';
@ -1477,9 +1449,8 @@ number_to_string (char *buffer, wgint number)
return p; return p;
} }
#undef ONE_DIGIT #undef PR
#undef ONE_DIGIT_ADVANCE #undef W
#undef DIGITS_1 #undef DIGITS_1
#undef DIGITS_2 #undef DIGITS_2
#undef DIGITS_3 #undef DIGITS_3
@ -1589,7 +1560,7 @@ struct wget_timer {
time, yields elapsed time. */ time, yields elapsed time. */
wget_sys_time start; wget_sys_time start;
/* The most recent elapsed time, calculated by wtimer_elapsed(). /* The most recent elapsed time, calculated by wtimer_update().
Measured in milliseconds. */ Measured in milliseconds. */
double elapsed_last; double elapsed_last;
@ -1697,7 +1668,7 @@ wtimer_sys_set (wget_sys_time *wst)
} }
/* Reset timer WT. This establishes the starting point from which /* Reset timer WT. This establishes the starting point from which
wtimer_elapsed() will return the number of elapsed milliseconds. wtimer_read() will return the number of elapsed milliseconds.
It is allowed to reset a previously used timer. */ It is allowed to reset a previously used timer. */
void void
@ -2037,7 +2008,7 @@ alarm_set (double timeout)
struct itimerval itv; struct itimerval itv;
xzero (itv); xzero (itv);
itv.it_value.tv_sec = (long) timeout; itv.it_value.tv_sec = (long) timeout;
itv.it_value.tv_usec = 1000000L * (timeout - (long)timeout); itv.it_value.tv_usec = 1000000 * (timeout - (long)timeout);
if (itv.it_value.tv_sec == 0 && itv.it_value.tv_usec == 0) if (itv.it_value.tv_sec == 0 && itv.it_value.tv_usec == 0)
/* Ensure that we wait for at least the minimum interval. /* Ensure that we wait for at least the minimum interval.
Specifying zero would mean "wait forever". */ Specifying zero would mean "wait forever". */
@ -2089,8 +2060,8 @@ alarm_cancel (void)
* It works with both SYSV and BSD signals because it doesn't * It works with both SYSV and BSD signals because it doesn't
depend on the default setting of SA_RESTART. depend on the default setting of SA_RESTART.
* It doesn't special handler setup beyond a simple call to * It doesn't require special handler setup beyond a simple call
signal(). (It does use sigsetjmp/siglongjmp, but they're to signal(). (It does use sigsetjmp/siglongjmp, but they're
optional.) optional.)
The only downside is that, if FUN allocates internal resources that The only downside is that, if FUN allocates internal resources that
@ -2159,7 +2130,7 @@ xsleep (double seconds)
the terminal was being resized.) */ the terminal was being resized.) */
struct timespec sleep, remaining; struct timespec sleep, remaining;
sleep.tv_sec = (long) seconds; sleep.tv_sec = (long) seconds;
sleep.tv_nsec = 1000000000L * (seconds - (long) seconds); sleep.tv_nsec = 1000000000 * (seconds - (long) seconds);
while (nanosleep (&sleep, &remaining) < 0 && errno == EINTR) while (nanosleep (&sleep, &remaining) < 0 && errno == EINTR)
/* If nanosleep has been interrupted by a signal, adjust the /* If nanosleep has been interrupted by a signal, adjust the
sleeping period and return to sleep. */ sleeping period and return to sleep. */
@ -2175,12 +2146,17 @@ xsleep (double seconds)
sleep (seconds); sleep (seconds);
seconds -= (long) seconds; seconds -= (long) seconds;
} }
usleep (seconds * 1000000L); usleep (seconds * 1000000);
#else /* not HAVE_USLEEP */ #else /* not HAVE_USLEEP */
#ifdef HAVE_SELECT #ifdef HAVE_SELECT
/* Note that, although Windows supports select, this sleeping
strategy doesn't work there because Winsock's select doesn't
implement timeout when it is passed NULL pointers for all fd
sets. (But it does work under Cygwin, which implements its own
select.) */
struct timeval sleep; struct timeval sleep;
sleep.tv_sec = (long) seconds; sleep.tv_sec = (long) seconds;
sleep.tv_usec = 1000000L * (seconds - (long) seconds); sleep.tv_usec = 1000000 * (seconds - (long) seconds);
select (0, NULL, NULL, NULL, &sleep); select (0, NULL, NULL, NULL, &sleep);
/* If select returns -1 and errno is EINTR, it means we were /* If select returns -1 and errno is EINTR, it means we were
interrupted by a signal. But without knowing how long we've interrupted by a signal. But without knowing how long we've