summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-01-23 06:58:38 -0800
committerKaz Kylheku <kaz@kylheku.com>2019-01-23 06:58:38 -0800
commitb333ea2900a2e7c10d7b5cd35bf250c8e2d8d40f (patch)
treef0cd73c36dd467cefe1506326e6d0c23bda28a8d /hash.c
parentf64d0bb5e0bfff833936d63849f86510a2328fee (diff)
downloadtxr-b333ea2900a2e7c10d7b5cd35bf250c8e2d8d40f.tar.gz
txr-b333ea2900a2e7c10d7b5cd35bf250c8e2d8d40f.tar.bz2
txr-b333ea2900a2e7c10d7b5cd35bf250c8e2d8d40f.zip
Fix some instances of 4 bytes = 32 bits assumption.
* hash.c (equal_hash, eql_hash, cobj_eq_hash_op, hash_hash_op): Multiply object size by CHAR_BIT and switch on number of bits, rather than bytes. * sysif.c (off_t_num): Likewise. * arith.c, ffi.c, itypes.c, rand.c: In numerous #if directive, fix size tests from bytes to bits. * configure: in the test that detects integer types, and in the test for enabling large file offsets, detect one more variable from the system: the value of CHAR_BIT. This turns into SIZEOF_BYTE. We use that value instead of a hard-coded 8.
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/hash.c b/hash.c
index 767c224a..5ff3a5a4 100644
--- a/hash.c
+++ b/hash.c
@@ -216,10 +216,10 @@ ucnum equal_hash(val obj, int *count, ucnum seed)
case SYM:
case PKG:
case ENV:
- switch (sizeof (mem_t *)) {
- case 4:
+ switch (CHAR_BIT * sizeof (mem_t *)) {
+ case 32:
return coerce(ucnum, obj) >> 4;
- case 8: default:
+ case 64: default:
return coerce(ucnum, obj) >> 5;
}
break;
@@ -281,10 +281,10 @@ static ucnum eql_hash(val obj, int *count)
case RNG:
return eql_hash(obj->rn.from, count) + 2 * eql_hash(obj->rn.to, count);
default:
- switch (sizeof (mem_t *)) {
- case 4:
+ switch (CHAR_BIT * sizeof (mem_t *)) {
+ case 32:
return coerce(ucnum, obj) >> 4;
- case 8: default:
+ case 64: default:
return coerce(ucnum, obj) >> 5;
}
}
@@ -293,10 +293,10 @@ static ucnum eql_hash(val obj, int *count)
case TAG_NUM:
return c_num(obj);
case TAG_LIT:
- switch (sizeof (mem_t *)) {
- case 4:
+ switch (CHAR_BIT * sizeof (mem_t *)) {
+ case 32:
return coerce(ucnum, obj) >> 2;
- case 8: default:
+ case 64: default:
return coerce(ucnum, obj) >> 3;
}
}
@@ -315,10 +315,10 @@ ucnum cobj_eq_hash_op(val obj, int *count, ucnum seed)
(void) count;
(void) seed;
- switch (sizeof (mem_t *)) {
- case 4:
+ switch (CHAR_BIT * sizeof (mem_t *)) {
+ case 32:
return coerce(ucnum, obj) >> 4;
- case 8: default:
+ case 64: default:
return coerce(ucnum, obj) >> 5;
}
/* notreached */
@@ -421,10 +421,10 @@ static ucnum hash_hash_op(val obj, int *count, ucnum seed)
if ((*count)-- <= 0)
return 0;
- switch (sizeof (mem_t *)) {
- case 4:
+ switch (CHAR_BIT * sizeof (mem_t *)) {
+ case 32:
out += coerce(ucnum, h->hops) >> 4;
- case 8: default:
+ case 64: default:
out += coerce(ucnum, h->hops) >> 5;
}