Skip to content

rts: Specialize hashing at call site rather than in struct.

Ben Gamari requested to merge wip/D4889 into master

Separate word and string hash tables on the type level, and do not store the hashing function. Thus when a different hash function is desire it is provided upon accessing the table. This is worst case the same as before the change, and in the majority of cases is better. Also mark the functions for aggressive inlining to improve performance.

See Trac #13165

Previously Differential Revision https://phabricator.haskell.org/D4889

Edited by Ben Gamari

Merge request reports