diff options
author | Tom Tromey <tom@tromey.com> | 2017-11-02 12:48:44 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-11-09 08:31:40 -0700 |
commit | e793c052f9d9548442a46817998a46cbca4ccb70 (patch) | |
tree | 18fe42c0649c4b6290b6dc6c27d4efe0d67c08c3 /gdb/psymtab.c | |
parent | 7e8835c5f44931d02ecd8c8ba3d167e891981d24 (diff) | |
download | gdb-e793c052f9d9548442a46817998a46cbca4ccb70.zip gdb-e793c052f9d9548442a46817998a46cbca4ccb70.tar.gz gdb-e793c052f9d9548442a46817998a46cbca4ccb70.tar.bz2 |
Simplify the psymbol hash function
This patch simplifies the psymbol_hash function, by changing it not to
examine the contents of the symbol's name. This change just mirrors
what psymbol_compare already does -- it is checking for name equality,
which is ok because symbol names are interned in symbol_set_names.
This change speeds up psymbol reading. "gdb -nx -batch gdb"
previously took ~1.8 seconds on my machine, and with this patch it now
takes ~1.7 seconds.
gdb/ChangeLog
2017-11-09 Tom Tromey <tom@tromey.com>
* psymtab.c (psymbol_hash): Do not hash string contents.
(psymbol_compare): Add comment.
Diffstat (limited to 'gdb/psymtab.c')
-rw-r--r-- | gdb/psymtab.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/psymtab.c b/gdb/psymtab.c index 29d40dc..06a65bf 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -1548,7 +1548,9 @@ psymbol_hash (const void *addr, int length) h = hash_continue (&lang, sizeof (unsigned int), h); h = hash_continue (&domain, sizeof (unsigned int), h); h = hash_continue (&theclass, sizeof (unsigned int), h); - h = hash_continue (psymbol->ginfo.name, strlen (psymbol->ginfo.name), h); + /* Note that psymbol names are interned via symbol_set_names, so + there's no need to hash the contents of the name here. */ + h = hash_continue (&psymbol->ginfo.name, sizeof (psymbol->ginfo.name), h); return h; } @@ -1568,6 +1570,9 @@ psymbol_compare (const void *addr1, const void *addr2, int length) && sym1->ginfo.language == sym2->ginfo.language && PSYMBOL_DOMAIN (sym1) == PSYMBOL_DOMAIN (sym2) && PSYMBOL_CLASS (sym1) == PSYMBOL_CLASS (sym2) + /* Note that psymbol names are interned via + symbol_set_names, so there's no need to compare the + contents of the name here. */ && sym1->ginfo.name == sym2->ginfo.name); } |