This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFA/dwarf] Optimize partial DIE reading for uninteresting DIEs


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?

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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]