From patchwork Tue Oct 29 21:56:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Simon Marchi (Code Review)" X-Patchwork-Id: 35461 Received: (qmail 47303 invoked by alias); 29 Oct 2019 21:56:31 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 47205 invoked by uid 89); 29 Oct 2019 21:56:31 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-20.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_STOCKGEN autolearn=ham version=3.3.1 spammy= X-HELO: mx1.osci.io Received: from polly.osci.io (HELO mx1.osci.io) (8.43.85.229) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 29 Oct 2019 21:56:29 +0000 Received: by mx1.osci.io (Postfix, from userid 994) id 8024F20D63; Tue, 29 Oct 2019 17:56:27 -0400 (EDT) Received: from gnutoolchain-gerrit.osci.io (gnutoolchain-gerrit.osci.io [8.43.85.239]) by mx1.osci.io (Postfix) with ESMTP id ABB4420468; Tue, 29 Oct 2019 17:56:24 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by gnutoolchain-gerrit.osci.io (Postfix) with ESMTP id A2A3C20AF6; Tue, 29 Oct 2019 17:56:24 -0400 (EDT) X-Gerrit-PatchSet: 3 Date: Tue, 29 Oct 2019 17:56:24 -0400 From: "Christian Biesinger (Code Review)" To: Christian Biesinger , Tom Tromey , gdb-patches@sourceware.org Auto-Submitted: auto-generated X-Gerrit-MessageType: newpatchset Subject: [review v3] Compute msymbol hash codes in parallel X-Gerrit-Change-Id: Ifaa3346e9998f05743bff9e2eaad3f83b954d071 X-Gerrit-Change-Number: 308 X-Gerrit-ChangeURL: X-Gerrit-Commit: a754095fe11269f22060c1e1af12493a70a216c6 In-Reply-To: References: Reply-To: cbiesinger@google.com, tromey@sourceware.org, cbiesinger@google.com, gdb-patches@sourceware.org MIME-Version: 1.0 Content-Disposition: inline User-Agent: Gerrit/3.0.3-74-g460fb0f7e9 Message-Id: <20191029215624.A2A3C20AF6@gnutoolchain-gerrit.osci.io> Change URL: https://gnutoolchain-gerrit.osci.io/r/c/binutils-gdb/+/308 ...................................................................... Compute msymbol hash codes in parallel This is for the msymbol_hash and msymbol_demangled_hash hashtables in objfile_per_bfd_storage. This basically computes those hash codes together with the demangled symbol name in the background, before it inserts the symbols in the hash table. gdb/ChangeLog: 2019-09-30 Christian Biesinger * minsyms.c (add_minsym_to_hash_table): Use a previously computed hash code if possible. (add_minsym_to_demangled_hash_table): Likewise. (minimal_symbol_reader::install): Compute the hash codes for msymbol on the background thread. * symtab.h (struct minimal_symbol) : Add these fields. Change-Id: Ifaa3346e9998f05743bff9e2eaad3f83b954d071 --- M gdb/minsyms.c 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/gdb/minsyms.c b/gdb/minsyms.c index c53094b..0244171 100644 --- a/gdb/minsyms.c +++ b/gdb/minsyms.c @@ -141,12 +141,12 @@ /* Add the minimal symbol SYM to an objfile's minsym hash table, TABLE. */ static void add_minsym_to_hash_table (struct minimal_symbol *sym, - struct minimal_symbol **table) + struct minimal_symbol **table, + unsigned int hash_value) { if (sym->hash_next == NULL) { - unsigned int hash - = msymbol_hash (MSYMBOL_LINKAGE_NAME (sym)) % MINIMAL_SYMBOL_HASH_SIZE; + unsigned int hash = hash_value % MINIMAL_SYMBOL_HASH_SIZE; sym->hash_next = table[hash]; table[hash] = sym; @@ -157,18 +157,16 @@ TABLE. */ static void add_minsym_to_demangled_hash_table (struct minimal_symbol *sym, - struct objfile *objfile) + struct objfile *objfile, + unsigned int hash_value) { if (sym->demangled_hash_next == NULL) { - unsigned int hash = search_name_hash (MSYMBOL_LANGUAGE (sym), - MSYMBOL_SEARCH_NAME (sym)); - objfile->per_bfd->demangled_hash_languages.set (MSYMBOL_LANGUAGE (sym)); struct minimal_symbol **table = objfile->per_bfd->msymbol_demangled_hash; - unsigned int hash_index = hash % MINIMAL_SYMBOL_HASH_SIZE; + unsigned int hash_index = hash_value % MINIMAL_SYMBOL_HASH_SIZE; sym->demangled_hash_next = table[hash_index]; table[hash_index] = sym; } @@ -1253,6 +1251,8 @@ { size_t name_length; hashval_t mangled_name_hash; + unsigned int minsym_hash; + unsigned int minsym_demangled_hash; }; /* Build (or rebuild) the minimal symbol hash tables. This is necessary @@ -1260,7 +1260,9 @@ thus causing the internal minimal_symbol pointers to become jumbled. */ static void -build_minimal_symbol_hash_tables (struct objfile *objfile) +build_minimal_symbol_hash_tables + (struct objfile *objfile, + const std::vector& hash_values) { int i; struct minimal_symbol *msym; @@ -1273,17 +1275,20 @@ } /* Now, (re)insert the actual entries. */ - for ((i = objfile->per_bfd->minimal_symbol_count, + int mcount = objfile->per_bfd->minimal_symbol_count; + for ((i = 0, msym = objfile->per_bfd->msymbols.get ()); - i > 0; - i--, msym++) + i < mcount; + i++, msym++) { msym->hash_next = 0; - add_minsym_to_hash_table (msym, objfile->per_bfd->msymbol_hash); + add_minsym_to_hash_table (msym, objfile->per_bfd->msymbol_hash, + hash_values[i].minsym_hash); msym->demangled_hash_next = 0; if (MSYMBOL_SEARCH_NAME (msym) != MSYMBOL_LINKAGE_NAME (msym)) - add_minsym_to_demangled_hash_table (msym, objfile); + add_minsym_to_demangled_hash_table + (msym, objfile, hash_values[i].minsym_demangled_hash); } } @@ -1395,6 +1400,11 @@ hash_values[idx].mangled_name_hash = fast_hash (msym->name, hash_values[idx].name_length); } + hash_values[idx].minsym_hash + = msymbol_hash (MSYMBOL_LINKAGE_NAME (msym)); + hash_values[idx].minsym_demangled_hash + = search_name_hash (MSYMBOL_LANGUAGE (msym), + MSYMBOL_SEARCH_NAME (msym)); } { /* To limit how long we hold the lock, we only acquire it here @@ -1413,7 +1423,7 @@ } }); - build_minimal_symbol_hash_tables (m_objfile); + build_minimal_symbol_hash_tables (m_objfile, hash_values); } }