Bug 200214 - valgrind shouldn't need dsymutil
Summary: valgrind shouldn't need dsymutil
Status: REPORTED
Alias: None
Product: valgrind
Classification: Developer tools
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Other
: NOR wishlist
Target Milestone: ---
Assignee: Julian Seward
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-07-14 20:16 UTC by Dan Kegel
Modified: 2009-07-15 02:59 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dan Kegel 2009-07-14 20:16:52 UTC
Version:            (using Devel)
OS:                OS X
Installed from:    Compiled sources

dsymutil is so freaking slow that we can't actually use it
without slowing down our automated build and test cycle
so much that it's not much use.

This means our buildbots have no line numbers in valgrind output,
which means that our developers have trouble using it.

Since apple has shown no interest in speeding up dsymutil,
valgrind may have to bite the bullet and parse the debug
info out of .o files for it to be useful for large projects
on the mac.
Comment 1 Mark Mentovai 2009-07-14 20:25:00 UTC
Breakpad is being enhanced to read DWARF data from .o files when no .dSYM is present, too.
Comment 2 Nicholas Nethercote 2009-07-15 00:13:58 UTC
I think bug 197928 is the most promising way to fix this.  Dan, are you happy if I mark this as a duplicate of bug 197928?
Comment 3 Dan Kegel 2009-07-15 00:20:22 UTC
Sadly, no.  It does not solve the cycle time problem in the case
where an error is occuring.  (Making dsymutil lazy would be
better than a poke in the eye with a sharp stick, but it's not a fix,
and this is not a duplicate bug.)
Comment 4 Nicholas Nethercote 2009-07-15 00:22:59 UTC
Won't it help a lot, though?  Presumably you're only getting small numbers of errors reported?  Or are you suppressing a lot of them (in which case laziness won't help)?
Comment 5 Dan Kegel 2009-07-15 00:49:26 UTC
Won't help a bit.  Once the first error happens, our cycle time
will balloon to longer than the attention span of developers,
and bugs will start piling up, never to be cleared.

And yes, we have tons of suppressions.
Comment 6 Julian Seward 2009-07-15 01:25:59 UTC
Is dsymutil open source?  If so, it would be perhaps informative to know
what it's doing, that takes so long.
Comment 7 Dan Kegel 2009-07-15 02:25:18 UTC
I don't think it is.

Once breakpad implements this feature, though, presumably you could
follow their lead without much trouble.
Comment 8 Mark Mentovai 2009-07-15 02:59:54 UTC
dsymutil is unfortunately not open-source, but Apple gdb is, and it handles this.  Breakpad is also open-source and has a developer currently looking at this problem.