<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Mar 12, 2015 at 1:06 PM, Talin <span dir="ltr"><<a href="mailto:viridia@gmail.com" target="_blank">viridia@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">When developing an LLVM-based frontend, is there a way to automatically verify that the DWARF metadata being emitted is correct? Specifically, I'd like to be able to write some sort of unit test that will fail if the DWARF is invalid. I don't just want to test whether the LLVM metadata statements are well-formed - if I make a change that will cause lldb or gdb to barf, I would like to have at least a 50% chance to catch this beforehand. I can't really run the debugger in a unit test, and even if I could the resulting error message is likely to be poor. This means that the validator would have to incorporate knowledge of the DWARF standard. Is there such a thing?<div><br></div><div>Trying to ensure that DWARF is correct is one of the reasons why I abandoned my earlier LLVM project a few years ago, it was simply too hard then. I'm just wondering if the situation has improved in the last several years.</div></div></blockquote><div><br>Not substantially, that I know of - you can verify the debug info metadata itself (there's a DebugInfoVerifier - I forget what flag you need to pass to run it) & it'll warn and drop the metadata if it's ill-formed, but that doesn't guarantee that a debugger will like what LLVM generates from that metadata.<br><br>We have a buildbot that runs GDB's test suite against Clang to verify that the debug info provided is usefully debuggable.<br><br>- David<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><span class="HOEnZb"><font color="#888888"><br clear="all"><div><br></div>-- <br><div>-- Talin</div>
</font></span></div></div>
<br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
<br></blockquote></div><br></div></div>