Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Simon Marchi <simark@simark.ca>
To: Tom Tromey <tom@tromey.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH 2/2] Free multidicts from blockvector
Date: Fri, 24 Oct 2025 12:25:12 -0400	[thread overview]
Message-ID: <42123ec4-5b99-410d-bde1-3b506117cea6@simark.ca> (raw)
In-Reply-To: <87ecqsie88.fsf@tromey.com>

On 10/24/25 10:08 AM, Tom Tromey wrote:
> Simon> Ideally it would be struct block's just to call that.  You could add a
> Simon> destructor to struct block and call it explicitly here.  It would be the
> Simon> same result, but would be more correct encapsulation-wise.  But I guess
> Simon> this is fine too for the time being.
> 
> Tom> Yeah.  I have kind of an aversion to explicit destructor calls.
> Tom> Though maybe not for any good reason.
> 
> I was thinking about this last night and realized there's a bigger
> issue, which is that blocks are allocated on an obstack:
> 
>     struct block : public allocate_on_obstack<block>
> 
> and
> 
>     block = new (&m_objfile->objfile_obstack) struct block;
> 
> but allocate_on_obstack requires that the object be trivially
> destructible.
> 
> Maybe this could be remedied by resurrecting Jan's obstack allocator;
> making an "obstack_ptr" class that explicitly calls the destructor but
> not 'delete'; and finally changing blockvector to hold these.

I guess that this restriction of "objects allocated on obstack must be
trivially destructible" is a bit artificial and arbitrary?  It is
technically fine to allocate on obstack an object having a destructor,
as long as you ensure the destructor is called at some point.  I guess
the restriction was put because it's easy to forget and error prone.
This obstack_ptr you talk about (obstack_unique_ptr?) sounds like a good
way to automate it.

I was wondering if we needed to keep allocating these on an obstack, but
my understanding is that obstack is a good choice here because:

 - We can't use a vector<block> to store them, since the blocks
   themselves can't move, as that would break the parent (superblock)
   relationship

 - There is a ton of blocks created, so it's nice to be able to free
   their memory in O(1).  Unfortunately, having to free
   block::m_multidict means that part is O(n), but the less we have to
   do in O(n) the better I guess?

Simon

  reply	other threads:[~2025-10-24 16:27 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-23 17:17 [PATCH 0/2] Fix memory leak with .debug_types Tom Tromey
2025-10-23 17:17 ` [PATCH 1/2] Two bug fixes in mdict_free Tom Tromey
2025-10-23 18:26   ` Simon Marchi
2025-10-23 18:32     ` Simon Marchi
2025-10-23 18:49       ` Tom Tromey
2025-10-23 17:17 ` [PATCH 2/2] Free multidicts from blockvector Tom Tromey
2025-10-23 18:31   ` Simon Marchi
2025-10-23 18:52     ` Tom Tromey
2025-10-24 14:08       ` Tom Tromey
2025-10-24 16:25         ` Simon Marchi [this message]
2025-10-24 18:04           ` 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=42123ec4-5b99-410d-bde1-3b506117cea6@simark.ca \
    --to=simark@simark.ca \
    --cc=gdb-patches@sourceware.org \
    --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