public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: John Baldwin <jhb@FreeBSD.org>
To: Tom de Vries <tdevries@suse.de>, Tom Tromey <tom@tromey.com>,
	gdb-patches@sourceware.org
Subject: Re: [PATCH v2 11/18] Do more DWARF reading in the background
Date: Tue, 14 Nov 2023 09:31:39 -0800	[thread overview]
Message-ID: <c15d6033-37ac-40bd-8e01-d13b7bf146b7@FreeBSD.org> (raw)
In-Reply-To: <16a9ae74-af0d-41f7-86b9-8b9b55c45b9f@suse.de>

On 11/13/23 11:39 AM, Tom de Vries wrote:
> On 11/13/23 18:56, John Baldwin wrote:
>> On 11/12/23 11:15 PM, Tom de Vries wrote:
>>> On 11/12/23 21:25, Tom Tromey wrote:
>>>> + /* How much effort should be put into each worker. */ + const size_t
>>>> size_per_thread = total_size / n_worker_threads;
>>>
>>> I've tested the patch series on x86_64-linux, and ran into trouble in
>>> one test-case:
>>> ...
>>> (gdb) file
>>> /data/vries/gdb/leap-15-4/build/gdb/testsuite/outputs/gdb.dwarf2/dw2-dummy-cu/dw2-dummy-cu^M
>>> Reading symbols from
>>> /data/vries/gdb/leap-15-4/build/gdb/testsuite/outputs/gdb.dwarf2/dw2-dummy-cu/dw2-dummy-cu...^M
>>> /data/vries/gdb/src/gdb/dwarf2/read.c:5000: internal-error: do_reading:
>>> Assertion `iter != last' failed.^M
>>> A problem internal to GDB has been detected,^M
>>> further debugging may prove unreliable.^M
>>> ----- Backtrace -----^M
>>> ERROR: Couldn't load dw2-dummy-cu into GDB (GDB internal error).
>>> Resyncing due to internal error.
>>> (gdb) maint expand-symtab^M
>>> 0x5ac476 gdb_internal_backtrace_1^M
>>>            /data/vries/gdb/src/gdb/bt-utils.c:122^M
>>> 0x5ac519 _Z22gdb_internal_backtracev^M
>>>            /data/vries/gdb/src/gdb/bt-utils.c:168^M
>>> 0xd11a89 internal_vproblem^M
>>>            /data/vries/gdb/src/gdb/utils.c:396^M
>>> 0xd11e58 _Z15internal_verrorPKciS0_P13__va_list_tag^M
>>>            /data/vries/gdb/src/gdb/utils.c:476^M
>>> 0x14ca6f0 _Z18internal_error_locPKciS0_z^M
>>>            /data/vries/gdb/src/gdbsupport/errors.cc:58^M
>>> 0x72b01b _ZN19cooked_index_worker10do_readingEv^M
>>>            /data/vries/gdb/src/gdb/dwarf2/read.c:5000^M
>>> ...
>>>
>>> This fixes the test-case for me:
>>> ...
>>> diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
>>> index 385160de0fd..191c2ad7f26 100644
>>> --- a/gdb/dwarf2/read.c
>>> +++ b/gdb/dwarf2/read.c
>>> @@ -4974,7 +4974,8 @@ cooked_index_worker::do_reading ()
>>>         = std::max (gdb::thread_pool::g_thread_pool->thread_count (),
>>> (size_t) 1);
>>>
>>>       /* How much effort should be put into each worker.  */
>>> -  const size_t size_per_thread = total_size / n_worker_threads;
>>> +  const size_t size_per_thread
>>> +    = std::max (total_size / n_worker_threads, (size_t)1);
>>
>> Presumably total_size was zero in that case?
> 
> No, it was 11.
> 
>> Should there be a shortcut
>> to bother queueing a task in that case instead perhaps?  Or alternatively
>> is the issue that total_size is < n_worker_threads?
> 
> Yes, n_worker_threads was 12.
> 
>> If the latter, then
>> a min size of 1 does seem sensible.
>>
> 
> Thanks for the review.

Is it possible that you want size_per_thread to always round up?  That is,
if you had total_size == 23 with n_worker_threads == 12, is there a reason
to prefer size_per_thread being 2 in that case vs 1?  (E.g. if the threads
each do "size_per_thread" items with the last one handling any remainder,
then you'd probably prefer 2 so that 11 threads do 2 and the last thread
does 1 rather than 11 threads doing 1 and the last thread doing 11.)

Looking at the patch, I do think it's the case I described, so perhaps you
want to always round up via:

const size_t size_per_thread
   = (total_size + n_worker_threads - 1) / n_worker_threads;

-- 
John Baldwin


  reply	other threads:[~2023-11-14 17:31 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-12 20:25 [PATCH v2 00/18] Index DWARf " Tom Tromey
2023-11-12 20:25 ` [PATCH v2 01/18] Don't use objfile::intern in DWO code Tom Tromey
2023-11-12 20:25 ` [PATCH v2 02/18] Pre-read DWZ section data Tom Tromey
2023-11-12 20:25 ` [PATCH v2 03/18] Add a couple of bfd_cache_close calls Tom Tromey
2023-11-12 20:25 ` [PATCH v2 04/18] Add thread-safety to gdb's BFD wrappers Tom Tromey
2023-11-12 20:25 ` [PATCH v2 05/18] Refactor complaint thread-safety approach Tom Tromey
2023-11-12 20:25 ` [PATCH v2 06/18] Add quick_symbol_functions::compute_main_name Tom Tromey
2023-11-12 20:25 ` [PATCH v2 07/18] Add gdb::task_group Tom Tromey
2023-11-12 20:25 ` [PATCH v2 08/18] Move cooked_index_storage to cooked-index.h Tom Tromey
2023-11-12 20:25 ` [PATCH v2 09/18] Add "maint set dwarf synchronous" Tom Tromey
2023-11-13 13:43   ` Eli Zaretskii
2023-11-12 20:25 ` [PATCH v2 10/18] Change how cooked index waits for threads Tom Tromey
2023-11-12 20:25 ` [PATCH v2 11/18] Do more DWARF reading in the background Tom Tromey
2023-11-13  7:15   ` Tom de Vries
2023-11-13 17:56     ` John Baldwin
2023-11-13 19:39       ` Tom de Vries
2023-11-14 17:31         ` John Baldwin [this message]
2023-11-21 14:24           ` Tom Tromey
2023-11-12 20:25 ` [PATCH v2 12/18] Simplify the public DWARF API Tom Tromey
2023-11-12 20:25 ` [PATCH v2 13/18] Remove two quick_symbol_functions methods Tom Tromey
2023-11-12 20:25 ` [PATCH v2 14/18] Change current_language to be a macro Tom Tromey
2023-11-12 20:25 ` [PATCH v2 15/18] Lazy language setting Tom Tromey
2023-11-12 20:25 ` [PATCH v2 16/18] Optimize lookup_minimal_symbol_text Tom Tromey
2023-11-12 20:25 ` [PATCH v2 17/18] Avoid language-based lookups in startup path Tom Tromey
2023-11-12 20:25 ` [PATCH v2 18/18] Back out some parallel_for_each features Tom Tromey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c15d6033-37ac-40bd-8e01-d13b7bf146b7@FreeBSD.org \
    --to=jhb@freebsd.org \
    --cc=gdb-patches@sourceware.org \
    --cc=tdevries@suse.de \
    --cc=tom@tromey.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).