[Lldb-commits] [PATCH] Let lldb dump line tables for DWARF v3

2014-04-08 Thread Matthew Gardiner
Hi people, I have been looking into the support for ARM binary images by lldb. One of the ARM tool chains I use produces .debug_line tables as specified by DWARF v3. With lldb and llvm-dwarfdump built from the top of the tree, I observed that the dwarfdump tool dumps the line table, but lldb

Re: [Lldb-commits] [PATCH] Let lldb dump line tables for DWARF v3

2014-04-08 Thread Ed Maste
On 8 April 2014 05:54, Matthew Gardiner m...@csr.com wrote: Hi people, I have been looking into the support for ARM binary images by lldb. One of the ARM tool chains I use produces .debug_line tables as specified by DWARF v3. With lldb and llvm-dwarfdump built from the top of the tree, I

[Lldb-commits] [lldb] r205769 - Improve demangler to compile with MSVC.

2014-04-08 Thread Virgile Bello
Author: xen2 Date: Tue Apr 8 09:46:44 2014 New Revision: 205769 URL: http://llvm.org/viewvc/llvm-project?rev=205769view=rev Log: Improve demangler to compile with MSVC. Modified: lldb/trunk/source/Core/Mangled.cpp Modified: lldb/trunk/source/Core/Mangled.cpp URL:

[Lldb-commits] [lldb] r205770 - Added i686 architecture (ArchSpec::Core::eCore_x86_32_i686).

2014-04-08 Thread Virgile Bello
Author: xen2 Date: Tue Apr 8 09:48:48 2014 New Revision: 205770 URL: http://llvm.org/viewvc/llvm-project?rev=205770view=rev Log: Added i686 architecture (ArchSpec::Core::eCore_x86_32_i686). Modified: lldb/trunk/include/lldb/Core/ArchSpec.h lldb/trunk/source/Core/ArchSpec.cpp Modified:

Re: [Lldb-commits] [lldb] r205769 - Improve demangler to compile with MSVC.

2014-04-08 Thread Ed Maste
On 8 April 2014 10:46, Virgile Bello virgile.be...@gmail.com wrote: Author: xen2 Date: Tue Apr 8 09:46:44 2014 New Revision: 205769 URL: http://llvm.org/viewvc/llvm-project?rev=205769view=rev Log: Improve demangler to compile with MSVC. I reverted this as it breaks the build on FreeBSD:

[Lldb-commits] [lldb] r205782 - Fix the GetArrayElementType() call so it will not crash when called on a non-array thing

2014-04-08 Thread Enrico Granata
Author: enrico Date: Tue Apr 8 13:36:09 2014 New Revision: 205782 URL: http://llvm.org/viewvc/llvm-project?rev=205782view=rev Log: Fix the GetArrayElementType() call so it will not crash when called on a non-array thing Also, the stride is now a pointer so one can avoid passing it if it's not

[Lldb-commits] [lldb] r205790 - This function should be const.

2014-04-08 Thread Jim Ingham
Author: jingham Date: Tue Apr 8 15:24:45 2014 New Revision: 205790 URL: http://llvm.org/viewvc/llvm-project?rev=205790view=rev Log: This function should be const. Modified: lldb/trunk/include/lldb/Breakpoint/BreakpointOptions.h lldb/trunk/source/Breakpoint/BreakpointOptions.cpp

[Lldb-commits] [lldb] r205803 - Fix the behavior when hand-calling a function times out on one thread,

2014-04-08 Thread Jim Ingham
Author: jingham Date: Tue Apr 8 16:33:21 2014 New Revision: 205803 URL: http://llvm.org/viewvc/llvm-project?rev=205803view=rev Log: Fix the behavior when hand-calling a function times out on one thread, but by the time we go to halt, it has already stopped by hitting the function end

Re: [Lldb-commits] [PATCH] Revert r205480 and rename enums defined in llvm/Support/MachO.h

2014-04-08 Thread jingham
That looks okay to me, please commit. Jim On Apr 8, 2014, at 3:20 PM, Akira Hatanaka ahata...@gmail.com wrote: This patch reverts the workaround introduced in r205480 that was required to avoid collision between enums defined in llvm/Support/MachO.h and macros defined in system header

[Lldb-commits] [lldb] r205825 - Fixed a problem where IRForTarget wasn't ignoring

2014-04-08 Thread Sean Callanan
Author: spyffe Date: Tue Apr 8 19:59:41 2014 New Revision: 205825 URL: http://llvm.org/viewvc/llvm-project?rev=205825view=rev Log: Fixed a problem where IRForTarget wasn't ignoring dbg_value intrinsics appropriately. rdar://problem/16504649 Modified: