summaryrefslogtreecommitdiffstats
path: root/tests/012/parse.tl
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2023-06-19 20:02:12 -0700
committerKaz Kylheku <kaz@kylheku.com>2023-06-19 20:02:12 -0700
commit96f428d5e3f77c21ba625fdbe3ca1fd3afda1755 (patch)
tree575d97f7c9e71ec8806080e29c3e8839d079124c /tests/012/parse.tl
parent7c6eba0aa30cad6c2115d5d05d11333a4489bfd4 (diff)
downloadtxr-96f428d5e3f77c21ba625fdbe3ca1fd3afda1755.tar.gz
txr-96f428d5e3f77c21ba625fdbe3ca1fd3afda1755.tar.bz2
txr-96f428d5e3f77c21ba625fdbe3ca1fd3afda1755.zip
hash: bug: initial hash mask miscalculation.
Hash tables are supposed to start with a mask of 255, which is the 256 modulus less one. However, due to a coding mistake, they get a modulus of 252. Now this still works. It just has a few zero bits in it: 1111 1100 rather than 11111111. When this grows by doubling in size, we get 1 1111 1001, 11 1111 0011 and so on. Now this still all works, because hash values AND-ed with such a mask are no greater than that mask. The table isn't accessed out of bounds. It's just inefficiently used. * hash.c (do_make_hash, make_similar_hash, clearhash): When converting the power-of-two modulus, which is a Lisp word, to the integer mask, subtract 1 from the integer value, not the original Lisp word.
Diffstat (limited to 'tests/012/parse.tl')
0 files changed, 0 insertions, 0 deletions