<div dir="ltr"><div><div>Is there really a requirement that .debug_aranges must cover every debug section in the entire program? I couldn't find this in the DWARF spec. Seems like LLDB should try .debug_aranges first then fallback gracefully. The way it is currently, if you link in any object file that happens to have a .debug_aranges section, then you can't debug the rest of the program with LLDB. The test below demonstrates the problem. Note that gcc generates a .debug_aranges section and clang does not.<br>
-----------------------------------<br>#clang --version<br>clang version 3.4 (188254)<br>Target: x86_64-unknown-linux-gnu<br>Thread model: posix<br><br>#gcc --version<br>gcc (Debian 4.7.2-5) 4.7.2<br>Copyright (C) 2012 Free Software Foundation, Inc.<br>
This is free software; see the source for copying conditions.  There is NO<br>warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.<br><br>#cat a.c<br>int a() {<br>  return 0;<br>}<br><br>#cat main.c<br>
extern int a();<br>int main() {<br>  return a();<br>}<br><br>#gcc -c -g a.c -o a.o<br><br>#clang -g a.o main.c -o test<br><br>#lldb test<br>Current executable set to 'test' (x86_64).<br>(lldb) b main.c:3<br>Breakpoint 1: no locations (pending).<br>
WARNING:  Unable to resolve breakpoint to any actual locations.<br>(lldb) b a.c:2<br>Breakpoint 2: where = test`a + 4 at a.c:2, address = 0x00000000004004b0<br>-----------------------------------<br><br></div>Note how LLDB can only set breakpoints in code that correspond to object files that have .debug_aranges info.<br>
<br></div>-Kal<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/8/9 Greg Clayton <span dir="ltr"><<a href="mailto:gclayton@apple.com" target="_blank">gclayton@apple.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
It sounds like the .debug_aranges section the compiler is generating is not correct, and that is what is messing everything up. If we have a .debug_aranges section, we use it. If it is missing, then we auto generate it by pulling in all DWARF and calculating it by hand. This is bad because it consumes time and memory to pull in all DWARF just to generate the address ranges.<br>

<br>
File a bug against clang with your repro steps.<br>
<span class="HOEnZb"><font color="#888888"><br>
Greg<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
On Aug 8, 2013, at 8:21 AM, Kal Conley <<a href="mailto:kcconley@gmail.com">kcconley@gmail.com</a>> wrote:<br>
<br>
> I figured out how to reproduce this. Just compile with clang -fsanitize=address any program and you should see what I am seeing.<br>
> -Kal<br>
><br>
><br>
> 2013/8/8 Kal Conley <<a href="mailto:kcconley@gmail.com">kcconley@gmail.com</a>><br>
> I am not able to post the source/binary of this inferior. I built it with clang-3.4. If I build with g++4.7 lldb loads the source information correctly, so this may be a clang bug if you think the generated dwarf info is wrong. On the other hand gdb does handle this binary without a problem.<br>

> -Kal<br>
><br>
><br>
> 2013/8/8 Malea, Daniel <<a href="mailto:daniel.malea@intel.com">daniel.malea@intel.com</a>><br>
><br>
> Hmm, what compiler/version are you using to build the inferior you are trying to debug? Any chance you can file a bug at <a href="http://llvm.org/bugs" target="_blank">llvm.org/bugs</a> and attach the problematic binary?<br>

><br>
> Thanks,<br>
> Dan<br>
><br>
> From: Kal Conley <<a href="mailto:kcconley@gmail.com">kcconley@gmail.com</a>><br>
> Date: Thursday, 8 August, 2013 8:03 AM<br>
> To: Andrew Kaylor <<a href="mailto:andrew.kaylor@intel.com">andrew.kaylor@intel.com</a>><br>
> Cc: "<a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a>" <<a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a>>, Daniel Malea <<a href="mailto:daniel.malea@intel.com">daniel.malea@intel.com</a>><br>

><br>
> Subject: Re: [lldb-dev] lldb problems on linux<br>
><br>
> If I apply the following to ignore .debug_aranges source debugging works again:<br>
><br>
> Index: source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp<br>
> ===================================================================<br>
> --- source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp    (Revision 187863)<br>
> +++ source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp    (Arbeitskopie)<br>
> @@ -58,7 +58,7 @@<br>
><br>
>          m_cu_aranges_ap.reset (new DWARFDebugAranges());<br>
>          const DataExtractor &debug_aranges_data = m_dwarf2Data->get_debug_aranges_data();<br>
> -        if (debug_aranges_data.GetByteSize() > 0)<br>
> +        if (0 && debug_aranges_data.GetByteSize() > 0)<br>
>          {<br>
>              if (log)<br>
>                  log->Printf ("DWARFDebugInfo::GetCompileUnitAranges() for \"%s\" from .debug_aranges",<br>
><br>
><br>
><br>
> 2013/8/8 Kal Conley <<a href="mailto:kcconley@gmail.com">kcconley@gmail.com</a>><br>
> I enabled logging... I am seeing this when I run<br>
> (lldb) b main.cc:14<br>
><br>
> <... Lots of other info ...><br>
> main-thread Address            Line   Column File   ISA Flags<br>
> main-thread ------------------ ------ ------ ------ --- -------------<br>
> main-thread 0x00000000004afa70      8      0      1   0  is_stmt<br>
> main-thread 0x00000000004afd2e     14      0      1   0  is_stmt prologue_end<br>
> main-thread 0x00000000004afd69     16      0      1   0  is_stmt<br>
> main-thread 0x00000000004afd94     20      0      1   0  is_stmt<br>
> main-thread 0x00000000004afda3     23      0      1   0  is_stmt<br>
> main-thread 0x00000000004afe6c     24      0      1   0  is_stmt<br>
> main-thread 0x00000000004b017b     24      0      1   0  is_stmt end_sequence<br>
> main-thread 0x00000000004b0180   2292      0      2   0  is_stmt<br>
> main-thread 0x00000000004b02b3   2292      0      2   0  is_stmt prologue_end<br>
> main-thread 0x00000000004b0322   2292      0      2   0  is_stmt end_sequence<br>
> main-thread 0x00000000004b0330    494      0     78   0  is_stmt<br>
> main-thread 0x00000000004b0409    494      0     78   0  is_stmt prologue_end<br>
> main-thread 0x00000000004b04a1    494      0     78   0  is_stmt end_sequence<br>
> main-thread 0x00000000004b04b0   2292      0      2   0  is_stmt<br>
> main-thread 0x00000000004b05e3   2292      0      2   0  is_stmt prologue_end<br>
> main-thmain-thread DWARFDebugInfo::GetCompileUnitAranges() for "/home/kal/test/test" from .debug_aranges<br>
> main-thread DWARFDebugAranges::Sort(minimize = 1) with 23 entriesread 0x00000000004b0671   2292      0      2   0  is_stmt end_sequence<br>
> main-thread DWARFDebugAranges::Sort() 11 entries after minimizing (12 entries combined for 192 bytes saved)<br>
> main-thread 0x00000000: [0x45d670 - 0x45d7a4)<br>
> main-thread 0x00021392: [0x45d7b0 - 0x45d7be)<br>
> main-thread 0x00000000: [0x45dbf0 - 0x465c0c)<br>
> main-thread 0x0001d8d4: [0x465c10 - 0x467120)<br>
> main-thread 0x00021392: [0x467120 - 0x468172)<br>
> main-thread 0x0002429a: [0x468180 - 0x485d9c)<br>
> main-thread 0x0005cd35: [0x485da0 - 0x485e1f)<br>
> main-thread 0x0005dd15: [0x485e20 - 0x4865e5)<br>
> main-thread 0x0005fff2: [0x4865f0 - 0x486b7c)<br>
> main-thread 0x00061b4e: [0x486b80 - 0x487eff)<br>
> main-thread 0x00064a9d: [0x487f00 - 0x488295)<br>
> Breakpoint 1: no locations (pending).<br>
> WARNING:  Unable to resolve breakpoint to any actual locations.<br>
><br>
> The address 0x00000000004afd2e for line 14 is correct. If i run "b main" I also get there. But that address isn't in the Aranges list.<br>
> -Kal<br>
><br>
><br>
> 2013/8/7 Kaylor, Andrew <<a href="mailto:andrew.kaylor@intel.com">andrew.kaylor@intel.com</a>><br>
><br>
> I agree that logging is the best place to start.  Without a better idea of what’s failing, it’s hard to say where to start.<br>
><br>
><br>
><br>
> You could try something like setting a breakpoint in the CommandObjectBreakpointSet::DoExecute() function, and stepping through from there.  I think that’s likely to get you to the beginning of the DWARF processing if setting a breakpoint is the first thing you do after creating the target (or specifying it on the command line).  It’s a long and winding road from there to the meaty bits, but without some hints from the log output it’s hard to say where a wrong turn might have been taken.<br>

><br>
><br>
><br>
> SymbolFileDWARF::ParseCompileUnit() is another potentially interesting starting place, but I think there’s a good chance you won’t get there if you aren’t seeing any source information.<br>
><br>
><br>
><br>
> -Andy<br>
><br>
><br>
><br>
> From: Malea, Daniel<br>
> Sent: Wednesday, August 07, 2013 1:14 PM<br>
> To: Kal Conley<br>
> Cc: Kaylor, Andrew; <a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a><br>
><br>
><br>
> Subject: Re: [lldb-dev] lldb problems on linux<br>
><br>
><br>
><br>
> Enabling logging is probably a good first place to start. If you're not seeing source information, then maybe lldb is unable to parse some stuff that clang is generating… to see what the DWARF parser is doing, you can:<br>

><br>
><br>
><br>
> (lldb) log enable dwarf all<br>
><br>
><br>
><br>
> There's many logging categories that can be enabled; some are quite verbose..to see all of them, do:<br>
><br>
><br>
><br>
> (lldb) log list<br>
><br>
><br>
><br>
> Also, with the '-f' option, you can dump the output to a file for easier perusal.<br>
><br>
><br>
><br>
><br>
><br>
> Cheers,<br>
><br>
> Dan<br>
><br>
><br>
><br>
> From: Kal Conley <<a href="mailto:kcconley@gmail.com">kcconley@gmail.com</a>><br>
> Date: Wednesday, 7 August, 2013 2:44 PM<br>
> To: Daniel Malea <<a href="mailto:daniel.malea@intel.com">daniel.malea@intel.com</a>><br>
> Cc: Andrew Kaylor <<a href="mailto:andrew.kaylor@intel.com">andrew.kaylor@intel.com</a>>, "<a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a>" <<a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a>><br>

> Subject: Re: [lldb-dev] lldb problems on linux<br>
><br>
><br>
><br>
> I am still seeing issues with source-level debugging. "target modules dump sections" has symbol entries. Also source level debugging is working in gdb, so I know that symbols are available.<br>
> The strange thing is, I tried the same thing with a simple "Hello world" program and source level debugging worked. Both programs are being compiled with clang-3.4.<br>
><br>
> Can someone give me a tip where I can should put breakpoints in LLDB to debug this?<br>
><br>
> Thanks,<br>
> -Kal<br>
><br>
> Am 8/7/13 12:04 AM, schrieb Kal Conley:<br>
><br>
> Hi Dan,<br>
> Sorry I wasn't clear. My fix fixes the test suite issue. The only remaining issue is the source debugging issue. I haven't got to look into that yet. I am on Debian Wheezy.<br>
> -Kal<br>
><br>
> Am 8/6/13 11:44 PM, schrieb Malea, Daniel:<br>
><br>
> Thank you Kal for the fix! Much appreciated :)<br>
><br>
><br>
><br>
> I committed it in r187818.<br>
><br>
><br>
><br>
> So, just to clarify, you're still unable to run the test suite after the fix? Which distro are you on?<br>
><br>
><br>
><br>
><br>
><br>
> Thanks,<br>
><br>
> Dan<br>
><br>
><br>
><br>
> From: Kal Conley <<a href="mailto:kcconley@gmail.com">kcconley@gmail.com</a>><br>
> Date: Tuesday, 6 August, 2013 5:27 PM<br>
> To: Andrew Kaylor <<a href="mailto:andrew.kaylor@intel.com">andrew.kaylor@intel.com</a>>, "<a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a>" <<a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a>><br>

> Subject: Re: [lldb-dev] lldb problems on linux<br>
><br>
><br>
><br>
> Hi Andy,<br>
> So I figured out the python issue. Host::GetLLDBPath() is broken. It was failing for me because I am building in Release mode. It only works in Debug mode by luck :) The problem is lines 1035+ in source/Host/common/Host.cpp. llvm::Twine should only be used for temporary objects! See <a href="http://llvm.org/docs/ProgrammersManual.html#dss-twine" target="_blank">http://llvm.org/docs/ProgrammersManual.html#dss-twine</a><br>

><br>
> I have attached a patch this fixes the issue. I haven't found time to investigate my other issue yet.<br>
><br>
> Thanks!<br>
> -Kal<br>
><br>
> Am 8/6/13 4:29 PM, schrieb Kaylor, Andrew:<br>
><br>
> Hmm…  I’ve never seen the -P option print the wrong path.  Looking at the code (in Host::GetLLDBPath) it doesn’t even look possible for it to print what you’re seeing.<br>
><br>
><br>
><br>
> On the other hand, the second directory you mention should be the correct one.  If you set PYTHONPATH to that does “python -c ‘import lldb’” work?<br>
><br>
><br>
><br>
> -Andy<br>
><br>
><br>
><br>
> From: Kal Conley [mailto:<a href="mailto:kcconley@gmail.com">kcconley@gmail.com</a>]<br>
> Sent: Tuesday, August 06, 2013 2:00 AM<br>
> To: Kaylor, Andrew<br>
> Cc: <a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a><br>
> Subject: Re: [lldb-dev] lldb problems on linux<br>
><br>
><br>
><br>
> Hi Andy,<br>
> I tried<br>
> export PYTHONPATH=`$llvm/build/Debug+Asserts/bin/lldb -P`<br>
> but it didn't work for me. If I run `build/bin/lldb -P` it outputs "build/lib7/site-packages" which doesn't exist.<br>
> There is a directory build/lib/python-2.7/site-packages but if I set the PYTHONPATH to this directory I get the same errors.<br>
><br>
> I can import lldb; in python successfully though.<br>
><br>
> Any other ideas?<br>
><br>
> -Kal<br>
><br>
><br>
><br>
> 2013/8/5 Kaylor, Andrew <<a href="mailto:andrew.kaylor@intel.com">andrew.kaylor@intel.com</a>><br>
><br>
> Hi Kal,<br>
><br>
><br>
><br>
> For the second problem, you need to set the PYTHONPATH environment variable.  Try this:<br>
><br>
><br>
><br>
> export PYTHONPATH=`$llvm/build/Debug+Asserts/bin/lldb -P`<br>
><br>
><br>
><br>
> Regarding the source information, I would start by using the following command within lldb (after you have created the target you want to debug):<br>
><br>
><br>
><br>
> target modules dump sections<br>
><br>
><br>
><br>
> If you don’t see debug sections in that list, then that’s the problem.  If you do, try enabling DWARF logging (‘log enable dwarf all’) and see if anything obvious turns up in the output when you try to set a breakpoint.<br>

><br>
><br>
><br>
> -Andy<br>
><br>
><br>
><br>
> From: <a href="mailto:lldb-dev-bounces@cs.uiuc.edu">lldb-dev-bounces@cs.uiuc.edu</a> [mailto:<a href="mailto:lldb-dev-bounces@cs.uiuc.edu">lldb-dev-bounces@cs.uiuc.edu</a>] On Behalf Of Kal Conley<br>
> Sent: Sunday, August 04, 2013 11:27 AM<br>
> To: <a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a><br>
><br>
><br>
> Subject: [lldb-dev] lldb problems on linux<br>
><br>
><br>
><br>
> Hi,<br>
><br>
> I recently build lldb from trunk (revision 187708) and source-level debugging isn't working for me. It seems its not loading any source information. What is the best way to troubleshoot this?<br>
><br>
> Also make check-lldb doesn't work on Linux when building with CMake. I just get error:<br>
><br>
> This script requires lldb.py to be in either /home/user/tools/llvm_3.4~svn187708/tools/lldb/build/Debug/LLDB.framework/Resources/Python, /home/user/tools/llvm_3.4~svn187708/tools/lldb/build/Release/LLDB.framework/Resources/Python, or /home/user/tools/llvm_3.4~svn187708/tools/lldb/build/BuildAndIntegration/LLDB.framework/Resources/Python<br>

><br>
> I get the same error with lldb-3.3.<br>
><br>
><br>
><br>
> Thanks!<br>
><br>
><br>
><br>
><br>
><br>
><br>
><br>
><br>
><br>
><br>
><br>
><br>
><br>
</div></div><div class="HOEnZb"><div class="h5">> _______________________________________________<br>
> lldb-dev mailing list<br>
> <a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev</a><br>
<br>
</div></div></blockquote></div><br></div>