Open
Description
As @tycho demonstrates in this repo loading entry points can be made much faster with this patch.
The basic principle is to hash the entry point names (offline) and the name being looked up, and then do a numerical lookup instead of strcmp
compares. One could take this a step further and sort the pre-generated list of hashes sorted and do a binary search look up.
Activity