Re: [Lldb-commits] [lldb] r202956 - Add support for JIT debugging on Linux using the GDB JIT interface. Patch written with Keno Fischer.

2014-03-12 Thread Andrew MacPherson
Hi Jim, just pinging this again to see if you've had a chance to take a quick look at the ModulesDidLoad patch, let me know if you'd prefer I submit this as a general patch for someone else to review. Thanks! On Fri, Mar 7, 2014 at 10:41 AM, Andrew MacPherson andrew.m...@gmail.comwrote: Hi

[Lldb-commits] [lldb] r203649 - Add some missing defines that are already present in the cmake side.

2014-03-12 Thread Hafiz Abid Qadeer
Author: abidh Date: Wed Mar 12 05:35:00 2014 New Revision: 203649 URL: http://llvm.org/viewvc/llvm-project?rev=203649view=rev Log: Add some missing defines that are already present in the cmake side. This is to help fix mingw build. Modified: lldb/trunk/Makefile

[Lldb-commits] [lldb] r203651 - Replace some _MSC_VER with _WIN32.

2014-03-12 Thread Hafiz Abid Qadeer
Author: abidh Date: Wed Mar 12 05:45:23 2014 New Revision: 203651 URL: http://llvm.org/viewvc/llvm-project?rev=203651view=rev Log: Replace some _MSC_VER with _WIN32. This allows to use some code for mingw which was previously only used for MSVC. Modified:

[Lldb-commits] [lldb] r203652 - Moved a check in HostGetOpt.h.

2014-03-12 Thread Hafiz Abid Qadeer
Author: abidh Date: Wed Mar 12 05:48:19 2014 New Revision: 203652 URL: http://llvm.org/viewvc/llvm-project?rev=203652view=rev Log: Moved a check in HostGetOpt.h. It can be used in multiple files now. Modified: lldb/trunk/include/lldb/Host/HostGetOpt.h

[Lldb-commits] [lldb] r203653 - Add Driver to the build for mingw.

2014-03-12 Thread Hafiz Abid Qadeer
Author: abidh Date: Wed Mar 12 05:51:32 2014 New Revision: 203653 URL: http://llvm.org/viewvc/llvm-project?rev=203653view=rev Log: Add Driver to the build for mingw. Modified: lldb/trunk/tools/Makefile lldb/trunk/tools/driver/Makefile Modified: lldb/trunk/tools/Makefile URL:

[Lldb-commits] [lldb] r203656 - Fix friendship declaration to match actual class declaration.

2014-03-12 Thread Arnaud A. de Grandmaison
Author: aadg Date: Wed Mar 12 06:49:05 2014 New Revision: 203656 URL: http://llvm.org/viewvc/llvm-project?rev=203656view=rev Log: Fix friendship declaration to match actual class declaration. This is a compilation warning fix. No functional change. Modified:

[Lldb-commits] [lldb] r203672 - Add Process/Utility include directory on FreeBSD

2014-03-12 Thread Ed Maste
Author: emaste Date: Wed Mar 12 11:21:57 2014 New Revision: 203672 URL: http://llvm.org/viewvc/llvm-project?rev=203672view=rev Log: Add Process/Utility include directory on FreeBSD Needed after r203667 Modified: lldb/trunk/source/Plugins/Process/FreeBSD/CMakeLists.txt Modified:

Re: [Lldb-commits] [PATCH] Remove use of broken DEBUGSERVER_VERSION_NUM.

2014-03-12 Thread Greg Clayton
Looks good. On Mar 11, 2014, at 2:49 PM, Kuba Ober k...@mareimbrium.org wrote: Since lldb version doesn’t have to be a valid floating point literal, like x.y.z, the uses of DEBUGSERVER_VERSION_NUM are invalid and have to be removed. Cheers, Kuba Ober

[Lldb-commits] [lldb] r203684 - Allow verbose logging in the dwarf log channel.

2014-03-12 Thread Greg Clayton
Author: gclayton Date: Wed Mar 12 12:58:29 2014 New Revision: 203684 URL: http://llvm.org/viewvc/llvm-project?rev=203684view=rev Log: Allow verbose logging in the dwarf log channel. Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp Modified:

[Lldb-commits] [lldb] r203692 - If DWARF debug info and verbose mode is enabled (log enable dwarf info verbose), then dump all DIEs for a compile unit after all DIEs have been parsed for a compile u

2014-03-12 Thread Greg Clayton
Author: gclayton Date: Wed Mar 12 13:26:18 2014 New Revision: 203692 URL: http://llvm.org/viewvc/llvm-project?rev=203692view=rev Log: If DWARF debug info and verbose mode is enabled (log enable dwarf info verbose), then dump all DIEs for a compile unit after all DIEs have been parsed for a

Re: [Lldb-commits] [lldb] r202956 - Add support for JIT debugging on Linux using the GDB JIT interface. Patch written with Keno Fischer.

2014-03-12 Thread jingham
Sorry, got busy. This looks fine. Jim On Mar 12, 2014, at 2:29 AM, Andrew MacPherson andrew.m...@gmail.com wrote: Hi Jim, just pinging this again to see if you've had a chance to take a quick look at the ModulesDidLoad patch, let me know if you'd prefer I submit this as a general patch

[Lldb-commits] [PATCH 3/4] cmake build: Fix building of HasAVX.s

2014-03-12 Thread Kuba Ober
--- tools/debugserver/source/MacOSX/CMakeLists.txt | 6 ++ 1 file changed, 6 insertions(+) diff --git a/tools/debugserver/source/MacOSX/CMakeLists.txt b/tools/debugserver/source/MacOSX/CMakeLists.txt index b955917..8e2ec1c 100644 --- a/tools/debugserver/source/MacOSX/CMakeLists.txt +++

[Lldb-commits] [PATCH 2/4] cmake build: Add missing plugins to the OS X build.

2014-03-12 Thread Kuba Ober
--- source/CMakeLists.txt | 3 +++ source/Plugins/JITLoader/CMakeLists.txt | 3 ++- source/Plugins/Process/CMakeLists.txt | 5 ++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index c562183..ec96a4b 100644 ---

[Lldb-commits] [lldb] r203754 - Add a quick test case for some of the queues debugging support.

2014-03-12 Thread Jason Molenda
Author: jmolenda Date: Thu Mar 13 00:37:51 2014 New Revision: 203754 URL: http://llvm.org/viewvc/llvm-project?rev=203754view=rev Log: Add a quick test case for some of the queues debugging support. It should only run on Darwin systems, and only when a couple of libraries are available. Added:

[Lldb-commits] [lldb] r203755 - Also check if the queues are serial or concurrent.

2014-03-12 Thread Jason Molenda
Author: jmolenda Date: Thu Mar 13 00:43:18 2014 New Revision: 203755 URL: http://llvm.org/viewvc/llvm-project?rev=203755view=rev Log: Also check if the queues are serial or concurrent. Modified: lldb/trunk/test/macosx/queues/TestQueues.py Modified: