<div dir="ltr">Fair enough, a FIXME sounds reasonable.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Mar 12, 2019 at 10:33 AM Jan Kratochvil via Phabricator <<a href="mailto:reviews@reviews.llvm.org">reviews@reviews.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">jankratochvil added inline comments.<br>
<br>
<br>
================<br>
Comment at: lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp:263<br>
   uint64_t length = data.GetU32(&offset);<br>
-  bool isDwarf64 = (length == 0xffffffff);<br>
-  if (isDwarf64)<br>
----------------<br>
zturner wrote:<br>
> jankratochvil wrote:<br>
> > Here should be an error that DWARF64 is not supported.<br>
> How do we report that error?  This function doesn't return an error code, and neither does the function that calls it (I didn't look higher than that), and we don't build with exceptions.  We can assert, but we try to avoid asserts (although admittedly, we're going to crash anyway).  I can try to do more work to propagate errors up the stack, but at this point this whole file (and even most of the folder that the file is in) is in theory going to be going away soon as we converge on LLVM's DWARF parser, so it may make sense to just deal with the problem at that level.<br>
Just that there should be something, at least a FIXME comment.<br>
There is `dwarf2Data->GetObjectFile()->GetModule()->ReportError()` but it will currently lock up since implementation of multithreaded DWARF reading. But there are AFAIK already many such errors which do not happen in realworld but they would lock up if they did. I agree returning an error value is the proper solution, I have no idea when it is the right time to implement that.<br>
<br>
<br>
<br>
CHANGES SINCE LAST ACTION<br>
  <a href="https://reviews.llvm.org/D59235/new/" rel="noreferrer" target="_blank">https://reviews.llvm.org/D59235/new/</a><br>
<br>
<a href="https://reviews.llvm.org/D59235" rel="noreferrer" target="_blank">https://reviews.llvm.org/D59235</a><br>
<br>
<br>
<br>
</blockquote></div>