Adrian Prantl via llvm-dev
2017-Sep-08 21:25 UTC
[llvm-dev] [RFC] llvm-dwarfdump's command line interface
I would like to grow llvm-dwarfdump to become a drop-in replacement for the dwarfdump utility that is currently shipping on Darwin. (You can search the web for "darwin dwarfdump manpage" to see the currently supported feature set.) Doing this means implementing the missing features, such as the ability to print only subsets of DIEs, looking up DIEs by name or address, and the option to produce more diff-friendly output. I'm fairly certain that these additional features will be beneficial on all LLVM-suported platforms. To turn it into a drop-in replacement on Darwin, I will also need to re-orgnize the command line interface a bit. In particular (and this is pretty much the only difference) $ llvm-dwarfdump --debug-dump=info $ llvm-dwarfdump --debug-dump=apple-objc becomes $ dwarfdump --debug-info $ dwarfdump --apple-objc respectively. My question is, how attached are users on other platforms to the current command line interface? I could easily create a separate command line parser for Darwin that mimicks Darwin dwarfdump (like llvm-objdump does), or we could just change the command line interface for llvm-dwarfdump. I know that there is also a dwarfdump utility on Linux (based on libdwarf?) that has an entirely different command line interface from both llvm-dwarfdump and Darwin dwarfdump. Do people see value in keeping the llvm-dwarfdump command line interface or would changing it to the above format be acceptable? thanks for your input! Adrian
David Blaikie via llvm-dev
2017-Sep-08 21:32 UTC
[llvm-dev] [RFC] llvm-dwarfdump's command line interface
On Fri, Sep 8, 2017 at 2:25 PM Adrian Prantl <aprantl at apple.com> wrote:> I would like to grow llvm-dwarfdump to become a drop-in replacement for > the dwarfdump utility that is currently shipping on Darwin. (You can search > the web for "darwin dwarfdump manpage" to see the currently supported > feature set.)For anyone looking: http://www.manpagez.com/man/1/dwarfdump/> Doing this means implementing the missing features, such as the ability to > print only subsets of DIEs, looking up DIEs by name or address, and the > option to produce more diff-friendly output. I'm fairly certain that these > additional features will be beneficial on all LLVM-suported platforms. > To turn it into a drop-in replacement on Darwin, I will also need to > re-orgnize the command line interface a bit. In particular (and this is > pretty much the only difference) > > $ llvm-dwarfdump --debug-dump=info > $ llvm-dwarfdump --debug-dump=apple-objc > > becomes > > $ dwarfdump --debug-info > $ dwarfdump --apple-objc > > respectively. > My question is, how attached are users on other platforms to the current > command line interface?I'm not especially attached - though I imagine it's pretty cheap to support both (though I don't personally mind if you want to migrate from one to the other - will just take a bit to relearn the muscle memory). One other thing: If we're moving towards a point where llvm-dwarfdump is not just a tool for LLVM developers but a shipping product, might be worth being a bit more rigorous about testing for it (historically sometimes dwarfdump functionality hasn't been tested - committed along with the LLVM functionality it was implemented to test - or the only testing is with checked in object files, which are a bit hard to maintain). Either looking at the DWARF YAML support and maybe fleshing it out a bit/making it more usable, or maybe assembly based tests? Not sure.> I could easily create a separate command line parser for Darwin that > mimicks Darwin dwarfdump (like llvm-objdump does), or we could just change > the command line interface for llvm-dwarfdump. I know that there is also a > dwarfdump utility on Linux (based on libdwarf?) that has an entirely > different command line interface from both llvm-dwarfdump and Darwin > dwarfdump. > Do people see value in keeping the llvm-dwarfdump command line interface > or would changing it to the above format be acceptable? > > thanks for your input! > Adrian >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170908/14cd1737/attachment.html>
Adrian Prantl via llvm-dev
2017-Sep-08 21:39 UTC
[llvm-dev] [RFC] llvm-dwarfdump's command line interface
> On Sep 8, 2017, at 2:32 PM, David Blaikie <dblaikie at gmail.com> wrote: > > > > On Fri, Sep 8, 2017 at 2:25 PM Adrian Prantl <aprantl at apple.com <mailto:aprantl at apple.com>> wrote: > I would like to grow llvm-dwarfdump to become a drop-in replacement for the dwarfdump utility that is currently shipping on Darwin. (You can search the web for "darwin dwarfdump manpage" to see the currently supported feature set.) > > For anyone looking: http://www.manpagez.com/man/1/dwarfdump/ <http://www.manpagez.com/man/1/dwarfdump/> > > Doing this means implementing the missing features, such as the ability to print only subsets of DIEs, looking up DIEs by name or address, and the option to produce more diff-friendly output. I'm fairly certain that these additional features will be beneficial on all LLVM-suported platforms. > To turn it into a drop-in replacement on Darwin, I will also need to re-orgnize the command line interface a bit. In particular (and this is pretty much the only difference) > > $ llvm-dwarfdump --debug-dump=info > $ llvm-dwarfdump --debug-dump=apple-objc > > becomes > > $ dwarfdump --debug-info > $ dwarfdump --apple-objc > > respectively. > My question is, how attached are users on other platforms to the current command line interface? > > I'm not especially attached - though I imagine it's pretty cheap to support both (though I don't personally mind if you want to migrate from one to the other - will just take a bit to relearn the muscle memory).If we're looking for the path of least resistance, we could even support both variants as aliases at the same time, since they don't conflict.> One other thing: If we're moving towards a point where llvm-dwarfdump is not just a tool for LLVM developers but a shipping product, might be worth being a bit more rigorous about testing for it (historically sometimes dwarfdump functionality hasn't been tested - committed along with the LLVM functionality it was implemented to test - or the only testing is with checked in object files, which are a bit hard to maintain).Fully agreed, and indeed with all recent patches that went into llvm-dwarfdump we are already moving in that direction.> Either looking at the DWARF YAML support and maybe fleshing it out a bit/making it more usable, or maybe assembly based tests? Not sure.I'm trying to figure this out right now by looking at https://reviews.llvm.org/D36993 <https://reviews.llvm.org/D36993> ... -- adrian> I could easily create a separate command line parser for Darwin that mimicks Darwin dwarfdump (like llvm-objdump does), or we could just change the command line interface for llvm-dwarfdump. I know that there is also a dwarfdump utility on Linux (based on libdwarf?) that has an entirely different command line interface from both llvm-dwarfdump and Darwin dwarfdump. > Do people see value in keeping the llvm-dwarfdump command line interface or would changing it to the above format be acceptable? > > thanks for your input! > Adrian-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170908/9413b9bc/attachment.html>
Robinson, Paul via llvm-dev
2017-Sep-08 21:40 UTC
[llvm-dev] [RFC] llvm-dwarfdump's command line interface
Sony delivers the GNU objdump and a proprietary utility which have DWARF-dumping features. So in that sense, we don't mind what you do with llvm-dwarfdump. Being able to extract subtrees sounds like a cool feature, I will say; Katya was just asking me about that yesterday. We have a longer term ideal (I won't call it a plan, although it might be considered an intention) to deliver the LLVM utilities instead, so more robust testing along the lines Dave suggested would be beneficial. --paulr From: David Blaikie [mailto:dblaikie at gmail.com] Sent: Friday, September 08, 2017 2:33 PM To: Adrian Prantl; llvm-dev Cc: Eric Christopher; Robinson, Paul; Jonas Devlieghere Subject: Re: [RFC] llvm-dwarfdump's command line interface On Fri, Sep 8, 2017 at 2:25 PM Adrian Prantl <aprantl at apple.com<mailto:aprantl at apple.com>> wrote: I would like to grow llvm-dwarfdump to become a drop-in replacement for the dwarfdump utility that is currently shipping on Darwin. (You can search the web for "darwin dwarfdump manpage" to see the currently supported feature set.) For anyone looking: http://www.manpagez.com/man/1/dwarfdump/ Doing this means implementing the missing features, such as the ability to print only subsets of DIEs, looking up DIEs by name or address, and the option to produce more diff-friendly output. I'm fairly certain that these additional features will be beneficial on all LLVM-suported platforms. To turn it into a drop-in replacement on Darwin, I will also need to re-orgnize the command line interface a bit. In particular (and this is pretty much the only difference) $ llvm-dwarfdump --debug-dump=info $ llvm-dwarfdump --debug-dump=apple-objc becomes $ dwarfdump --debug-info $ dwarfdump --apple-objc respectively. My question is, how attached are users on other platforms to the current command line interface? I'm not especially attached - though I imagine it's pretty cheap to support both (though I don't personally mind if you want to migrate from one to the other - will just take a bit to relearn the muscle memory). One other thing: If we're moving towards a point where llvm-dwarfdump is not just a tool for LLVM developers but a shipping product, might be worth being a bit more rigorous about testing for it (historically sometimes dwarfdump functionality hasn't been tested - committed along with the LLVM functionality it was implemented to test - or the only testing is with checked in object files, which are a bit hard to maintain). Either looking at the DWARF YAML support and maybe fleshing it out a bit/making it more usable, or maybe assembly based tests? Not sure. I could easily create a separate command line parser for Darwin that mimicks Darwin dwarfdump (like llvm-objdump does), or we could just change the command line interface for llvm-dwarfdump. I know that there is also a dwarfdump utility on Linux (based on libdwarf?) that has an entirely different command line interface from both llvm-dwarfdump and Darwin dwarfdump. Do people see value in keeping the llvm-dwarfdump command line interface or would changing it to the above format be acceptable? thanks for your input! Adrian -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170908/375e3b80/attachment-0001.html>
Reid Kleckner via llvm-dev
2017-Sep-09 15:13 UTC
[llvm-dev] [RFC] llvm-dwarfdump's command line interface
+1 for the shorter options. On Sep 8, 2017 2:25 PM, "Adrian Prantl via llvm-dev" < llvm-dev at lists.llvm.org> wrote:> I would like to grow llvm-dwarfdump to become a drop-in replacement for > the dwarfdump utility that is currently shipping on Darwin. (You can search > the web for "darwin dwarfdump manpage" to see the currently supported > feature set.) Doing this means implementing the missing features, such as > the ability to print only subsets of DIEs, looking up DIEs by name or > address, and the option to produce more diff-friendly output. I'm fairly > certain that these additional features will be beneficial on all > LLVM-suported platforms. > To turn it into a drop-in replacement on Darwin, I will also need to > re-orgnize the command line interface a bit. In particular (and this is > pretty much the only difference) > > $ llvm-dwarfdump --debug-dump=info > $ llvm-dwarfdump --debug-dump=apple-objc > > becomes > > $ dwarfdump --debug-info > $ dwarfdump --apple-objc > > respectively. > My question is, how attached are users on other platforms to the current > command line interface? I could easily create a separate command line > parser for Darwin that mimicks Darwin dwarfdump (like llvm-objdump does), > or we could just change the command line interface for llvm-dwarfdump. I > know that there is also a dwarfdump utility on Linux (based on libdwarf?) > that has an entirely different command line interface from both > llvm-dwarfdump and Darwin dwarfdump. > Do people see value in keeping the llvm-dwarfdump command line interface > or would changing it to the above format be acceptable? > > thanks for your input! > Adrian > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170909/9bdb5734/attachment.html>
Davide Italiano via llvm-dev
2017-Sep-11 18:49 UTC
[llvm-dev] [RFC] llvm-dwarfdump's command line interface
On Fri, Sep 8, 2017 at 2:32 PM, David Blaikie via llvm-dev <llvm-dev at lists.llvm.org> wrote:> > > On Fri, Sep 8, 2017 at 2:25 PM Adrian Prantl <aprantl at apple.com> wrote: >> >> I would like to grow llvm-dwarfdump to become a drop-in replacement for >> the dwarfdump utility that is currently shipping on Darwin. (You can search >> the web for "darwin dwarfdump manpage" to see the currently supported >> feature set.) > > > For anyone looking: http://www.manpagez.com/man/1/dwarfdump/ > >> >> Doing this means implementing the missing features, such as the ability to >> print only subsets of DIEs, looking up DIEs by name or address, and the >> option to produce more diff-friendly output. I'm fairly certain that these >> additional features will be beneficial on all LLVM-suported platforms. >> To turn it into a drop-in replacement on Darwin, I will also need to >> re-orgnize the command line interface a bit. In particular (and this is >> pretty much the only difference) >> >> $ llvm-dwarfdump --debug-dump=info >> $ llvm-dwarfdump --debug-dump=apple-objc >> >> becomes >> >> $ dwarfdump --debug-info >> $ dwarfdump --apple-objc >> >> respectively. >> My question is, how attached are users on other platforms to the current >> command line interface? > > > I'm not especially attached - though I imagine it's pretty cheap to support > both (though I don't personally mind if you want to migrate from one to the > other - will just take a bit to relearn the muscle memory). > > One other thing: If we're moving towards a point where llvm-dwarfdump is not > just a tool for LLVM developers but a shipping product, might be worth being > a bit more rigorous about testing for it (historically sometimes dwarfdump > functionality hasn't been tested - committed along with the LLVM > functionality it was implemented to test - or the only testing is with > checked in object files, which are a bit hard to maintain). Either looking > at the DWARF YAML support and maybe fleshing it out a bit/making it more > usable, or maybe assembly based tests? Not sure. >In my opinion assembly-based testing is the way forward. We used this in lld and it went a long way. YAML I think it's fine to simulate what MC can't emit (e.g. broken object files). YAML IMHO, introduces an obfuscation layer (at least for me, but maybe I spent too much time looking at object files). Also, we found out issues with YAML when reducing testcases with obj2yaml/yaml2obj (in particular, the mapping is not isomorphic & loses interesting information). Thanks, -- Davide
Apparently Analagous Threads
- [RFC] llvm-dwarfdump's command line interface
- [LLVMdev] Parsing dwarf debug info of an GAS assembly file
- [lldb-dev] Adding DWARF5 accelerator table support to llvm
- [lldb-dev] Adding DWARF5 accelerator table support to llvm
- [LLVMdev] Parsing dwarf debug info of an GAS assembly file