[Lldb-commits] [lldb] r271618 - Fix makefile for TestExternCSymbols

2016-06-02 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Thu Jun 2 20:03:04 2016 New Revision: 271618 URL: http://llvm.org/viewvc/llvm-project?rev=271618=rev Log: Fix makefile for TestExternCSymbols Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/extern_c/Makefile Modified:

[Lldb-commits] [lldb] r271551 - Fixed a problem where we couldn't call extern "C" functions.

2016-06-02 Thread Sean Callanan via lldb-commits
Author: spyffe Date: Thu Jun 2 12:59:47 2016 New Revision: 271551 URL: http://llvm.org/viewvc/llvm-project?rev=271551=rev Log: Fixed a problem where we couldn't call extern "C" functions. Some compilers do not mark up C++ functions as extern "C" in the DWARF, so LLDB has to fall back (if it is

[Lldb-commits] [lldb] r271545 - LLDB needs to be able to handle DW_AT_GNU_dwo_name that are relative to the DW_AT_comp_dir when using -gmodules with DWARF in .o files on darwin.

2016-06-02 Thread Greg Clayton via lldb-commits
Author: gclayton Date: Thu Jun 2 12:22:42 2016 New Revision: 271545 URL: http://llvm.org/viewvc/llvm-project?rev=271545=rev Log: LLDB needs to be able to handle DW_AT_GNU_dwo_name that are relative to the DW_AT_comp_dir when using -gmodules with DWARF in .o files on darwin. Modified:

[Lldb-commits] [lldb] r271543 - Fixed a problem where -gmodules debug info would be loaded by the DWO file support accidentally and cause 1000s of files to be mapped into LLDB's address space for each

2016-06-02 Thread Greg Clayton via lldb-commits
Author: gclayton Date: Thu Jun 2 12:19:39 2016 New Revision: 271543 URL: http://llvm.org/viewvc/llvm-project?rev=271543=rev Log: Fixed a problem where -gmodules debug info would be loaded by the DWO file support accidentally and cause 1000s of files to be mapped into LLDB's address space for

Re: [Lldb-commits] [PATCH] D20565: Add MemoryRegionInfo to SB API

2016-06-02 Thread Greg Clayton via lldb-commits
clayborg requested changes to this revision. clayborg added a comment. This revision now requires changes to proceed. So a bit more cleanup. We should always have a valid object inside of a SBMemoryRegionInfo or SBMemoryRegionInfoList so there is no need to ever check the m_opaque_ap to see if

Re: [Lldb-commits] [PATCH] D20565: Add MemoryRegionInfo to SB API

2016-06-02 Thread Howard Hellyer via lldb-commits
hhellyer updated this revision to Diff 59352. hhellyer added a comment. Made sure an object was always constructed for the std::unique_ptr in SBMemoryRegionInfo.cpp. Removed unused constructor from SBMemoryRegionInfo.h. http://reviews.llvm.org/D20565 Files: include/lldb/API/LLDB.h