diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-04-03 02:01:54 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-04-03 02:01:54 -0700 |
commit | 1752233803c403461177e70e8333040ec3ef5317 (patch) | |
tree | 0281ccb7d7f50eb7544246bb4905627181b6f85d /stdlib/awk.tl | |
parent | 1f902ca63eba9071da5d1da2e861fe49028d32b4 (diff) | |
download | txr-1752233803c403461177e70e8333040ec3ef5317.tar.gz txr-1752233803c403461177e70e8333040ec3ef5317.tar.bz2 txr-1752233803c403461177e70e8333040ec3ef5317.zip |
hash: replace modulus with mask.
In most places in the hash module, we reduce a hash
code into the power-of-two sized table using
h & (hash->modulus - 1). In some places we wastefully
modulo operation h % hash->modulus. Why don't we
replace the modulus with a mask so we can just do
h & hash->mask.
* hash.c (struct hash_ops): Replace modulus member with
mask, which has a value one less.
(hash_mark, hash_grow, do_make_hash, make_similar_hash,
copy_hash, gethash_c, gethash_e, remhash, clearhash,
hash_iter_next_impl, hash_iter_peek, do_weak_tables):
Work with mask rather than modulus, preserving existing
behavior.
Diffstat (limited to 'stdlib/awk.tl')
0 files changed, 0 insertions, 0 deletions