From: Daniel Jacobowitz <drow@false.org>
To: Jim Blandy <jimb@redhat.com>
Cc: gdb-patches@sources.redhat.com, Elena Zannoni <ezannoni@redhat.com>
Subject: Re: [RFA/dwarf] Optimize partial DIE reading for uninteresting DIEs
Date: Thu, 26 Feb 2004 23:12:00 -0000 [thread overview]
Message-ID: <20040226231255.GC8487@nevyn.them.org> (raw)
In-Reply-To: <vt21xohlblp.fsf@zenia.home>
On Thu, Feb 26, 2004 at 05:28:18PM -0500, Jim Blandy wrote:
> Daniel Jacobowitz <drow@false.org> writes:
>
> > read_partial_die is a pretty heavyweight function. One of the largest
> > indicators of this is how high read_uleb128 shows up in startup profiles.
> > This patch provides an alternative for DIEs we know are uninteresting: we
> > can just read in the abbrev, and the sibling pointer if any.
> >
> > Performancewise, on mainline this is a bit of a wash for typical code.
> > That's because we read every file-scope or namespace-scope DIE using
> > read_partial_die before we decide if it's interesting. A followup patch to
> > use peek_die_abbrev for that provides a several percent improvement in GDB
> > startup time.
>
> Hmm. If I'm reading this right, the only real difference between
> calling skip_children and calling locate_pdi_sibling is that the
> former calls skip_one_die to get past the attributes, while the latter
> calls read_partial_die. Is that right?
>
> skip_one_die:
> - stops skipping attributes as soon as it sees a sibling pointer,
> - doesn't read the attributes' values, and
> - doesn't examine the attributes to fill in a partial_die_info
> structure.
>
> But none of that really sounds too expensive, so I'm not surprised
> that this change alone is a wash, and I'm curious to see the followup
> patch. You haven't posted that yet, right?
Only the version for the intercu branch. The reason this is a wash is,
as I said above, only because this function is not called as often as
it could be. The followup is to use it in place of read_partial_die in
a more common case - when the DIE is something we won't build partial
symbols for. For instance, types that we know will not have names. We
can read just the abbrev and then skip everything else. I could do
considerably better than the current implementation, too, though I'm
not sure it's worthwhile.
You're mistaken about the expense. In particular read_unsigned_leb128
is much slower than skip_uleb128 because of the computations to build
the result; IIRC variable shifts are expensive. Yes, this was measured
with an optimized build and a non-intrusive profiler. There's also the
different memory access patterns.
> It bothers me that the patch would give us two separate form parsers.
> It would be nicer if we could just have one function that knows how to
> get the proper value of each attribute. Would it be possible for
> skip_one_die to call read_attribute, instead of writing out its own
> switch? Yes, that would allocate space for the blocks on
> dwarf2_tmp_obstack, but I think there are comments in
> dwarf2_build_psymtabs_hard explaining that this isn't significant.
> For most everything, read_attribute_value just hands out pointers into
> the info or string buffer. And you're still not going to be reading
> past any sibling attributes, so in the common case you'll never read
> much anyway.
Most of the speedup comes from not reading in the attribute values,
though.
--
Daniel Jacobowitz
MontaVista Software Debian GNU/Linux Developer
next prev parent reply other threads:[~2004-02-26 23:12 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-02-25 3:06 Daniel Jacobowitz
2004-02-26 22:28 ` Jim Blandy
2004-02-26 23:12 ` Daniel Jacobowitz [this message]
2004-02-27 2:58 ` Jim Blandy
2004-02-27 3:03 ` Daniel Jacobowitz
2004-03-19 0:09 ` Daniel Jacobowitz
2004-03-09 19:58 ` Daniel Jacobowitz
2004-03-19 0:09 ` Jim Blandy
2004-03-10 14:56 ` Jim Blandy
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=20040226231255.GC8487@nevyn.them.org \
--to=drow@false.org \
--cc=ezannoni@redhat.com \
--cc=gdb-patches@sources.redhat.com \
--cc=jimb@redhat.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