[Lldb-commits] [lldb] 2606918 - Revert "[LLDB/API] Expose args and env from SBProcessInfo."

2021-06-05 Thread Bruce Mitchener via lldb-commits
Author: Bruce Mitchener Date: 2021-06-05T15:50:49+07:00 New Revision: 2606918f467519f1634a67ee386211e99665fd23 URL: https://github.com/llvm/llvm-project/commit/2606918f467519f1634a67ee386211e99665fd23 DIFF:

[Lldb-commits] [lldb] 8d33437 - [LLDB/API] Expose args and env from SBProcessInfo.

2021-06-05 Thread Bruce Mitchener via lldb-commits
Author: Bruce Mitchener Date: 2021-06-05T13:42:18+07:00 New Revision: 8d33437d030af27fff21dd3fd0e66893b0148217 URL: https://github.com/llvm/llvm-project/commit/8d33437d030af27fff21dd3fd0e66893b0148217 DIFF:

[Lldb-commits] [lldb] 251a5d9 - [lldb/API] Expose triple for SBProcessInfo.

2021-06-01 Thread Bruce Mitchener via lldb-commits
Author: Bruce Mitchener Date: 2021-06-02T11:35:11+07:00 New Revision: 251a5d9d5239c0402e0ab68718aa194c2b4f04bb URL: https://github.com/llvm/llvm-project/commit/251a5d9d5239c0402e0ab68718aa194c2b4f04bb DIFF:

[Lldb-commits] [lldb] 36597e4 - [lldb] Fix typos. NFC.

2021-05-30 Thread Bruce Mitchener via lldb-commits
Author: Bruce Mitchener Date: 2021-05-31T06:48:57+07:00 New Revision: 36597e4719e9de6d374f7953aad83234d42ca181 URL: https://github.com/llvm/llvm-project/commit/36597e4719e9de6d374f7953aad83234d42ca181 DIFF:

[Lldb-commits] [lldb] r347637 - Add support for the Dylan language to ClangASTContext

2018-11-26 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Mon Nov 26 21:37:27 2018 New Revision: 347637 URL: http://llvm.org/viewvc/llvm-project?rev=347637=rev Log: Add support for the Dylan language to ClangASTContext Summary: This change adds eLanguageTypeDylan to the set of languages supported by ClangASTContext. Debug info

[Lldb-commits] [lldb] r343825 - Fix typos.

2018-10-04 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Oct 4 15:33:39 2018 New Revision: 343825 URL: http://llvm.org/viewvc/llvm-project?rev=343825=rev Log: Fix typos. Reviewers: lldb-commits Subscribers: srhines, ki.stfu Differential Revision: https://reviews.llvm.org/D52884 Modified:

[Lldb-commits] [lldb] r333400 - Remove Linux-specific includes for posix/FileSystem.cpp

2018-05-29 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Tue May 29 02:14:40 2018 New Revision: 333400 URL: http://llvm.org/viewvc/llvm-project?rev=333400=rev Log: Remove Linux-specific includes for posix/FileSystem.cpp Summary: This improves the process of cross-compiling from macOS to Linux since these files aren't used / needed

[Lldb-commits] [lldb] r333399 - Typo fixes.

2018-05-29 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Tue May 29 02:10:46 2018 New Revision: 99 URL: http://llvm.org/viewvc/llvm-project?rev=99=rev Log: Typo fixes. Reviewers: javed.absar Subscribers: ki.stfu, JDevlieghere, lldb-commits Differential Revision: https://reviews.llvm.org/D47421 Modified:

[Lldb-commits] [lldb] r311399 - lldb-argdumper doesn't need lldbCore.

2017-08-21 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Mon Aug 21 15:54:49 2017 New Revision: 311399 URL: http://llvm.org/viewvc/llvm-project?rev=311399=rev Log: lldb-argdumper doesn't need lldbCore. Summary: lldb-argdumper only needs lldbUtility to successfully build and link. Reviewers: beanz, zturner, labath Subscribers:

[Lldb-commits] [lldb] r308716 - Fix typo in error message in 'platform status'.

2017-07-21 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Fri Jul 21 00:08:20 2017 New Revision: 308716 URL: http://llvm.org/viewvc/llvm-project?rev=308716=rev Log: Fix typo in error message in 'platform status'. Modified: lldb/trunk/source/Commands/CommandObjectPlatform.cpp Modified:

[Lldb-commits] [lldb] r308480 - Expose hit count via SBBreakpointLocation.

2017-07-19 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Wed Jul 19 07:31:19 2017 New Revision: 308480 URL: http://llvm.org/viewvc/llvm-project?rev=308480=rev Log: Expose hit count via SBBreakpointLocation. Summary: SBBreakpointLocation exposed the ignore count, but didn't expose the hit count. Both values were exposed by

[Lldb-commits] [lldb] r308426 - Fix typos in documentation.

2017-07-19 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Wed Jul 19 02:35:58 2017 New Revision: 308426 URL: http://llvm.org/viewvc/llvm-project?rev=308426=rev Log: Fix typos in documentation. Reviewers: lldb-commits Subscribers: lldb-commits Differential Revision: https://reviews.llvm.org/D31282 Modified:

[Lldb-commits] [lldb] r298585 - Fix warnings from clang build on macOS.

2017-03-23 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Mar 23 04:52:26 2017 New Revision: 298585 URL: http://llvm.org/viewvc/llvm-project?rev=298585=rev Log: Fix warnings from clang build on macOS. Reviewers: lldb-commits Subscribers: lldb-commits Differential Revision: https://reviews.llvm.org/D31279 Modified:

Re: [Lldb-commits] [PATCH] D23977: Support of lldb on Kfreebsd

2016-08-28 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. Comment at: cmake/LLDBDependencies.cmake:168 @@ -167,3 +167,3 @@ # On FreeBSD/NetBSD backtrace() is provided by libexecinfo, not libc. -if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR CMAKE_SYSTEM_NAME MATCHES "NetBSD") +if ((CMAKE_SYSTEM_NAME

Re: [Lldb-commits] [lldb] r253317 - Add Pythonic language binding wrapper generation script.

2015-11-17 Thread Bruce Mitchener via lldb-commits
Stepping one step back further in the thread ... On Wed, Nov 18, 2015 at 8:35 AM, Zachary Turner via lldb-commits < lldb-commits@lists.llvm.org> wrote: > Moving this back over to the list since I'm sure others have some input > here. Also +lldb-dev since it has more visibility than

Re: [Lldb-commits] [PATCH] D14531: Add more autotools/gmake NetBSD glue

2015-11-14 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL253153: Add more autotools/gmake NetBSD glue (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D14531?vs=39789=40222#toc Repository: rL LLVM http://reviews.llvm.org/D14531

[Lldb-commits] [lldb] r253153 - Add more autotools/gmake NetBSD glue

2015-11-14 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Sat Nov 14 20:00:09 2015 New Revision: 253153 URL: http://llvm.org/viewvc/llvm-project?rev=253153=rev Log: Add more autotools/gmake NetBSD glue Summary: This diff approaches building the project natively on NetBSD with the autoconf/gmake framework. Patch by Kamil

Re: [Lldb-commits] [PATCH] D14529: Use library discovery for curses and panel

2015-11-14 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL253151: Use library discovery for curses and panel (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D14529?vs=39787=40220#toc Repository: rL LLVM

[Lldb-commits] [lldb] r253151 - Use library discovery for curses and panel

2015-11-14 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Sat Nov 14 19:53:23 2015 New Revision: 253151 URL: http://llvm.org/viewvc/llvm-project?rev=253151=rev Log: Use library discovery for curses and panel Summary: This approach is tunable with custom paths for curses library. It also detects whether there are requirements met.

[Lldb-commits] [lldb] r253152 - Allow to override python-config executable name from command line

2015-11-14 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Sat Nov 14 19:56:21 2015 New Revision: 253152 URL: http://llvm.org/viewvc/llvm-project?rev=253152=rev Log: Allow to override python-config executable name from command line Summary: pkgsrc (on NetBSD) ships with python2.7-config. Patch by Kamil Rytarowski. Thanks!

[Lldb-commits] [lldb] r252403 - Add more NetBSD platform glue for lldb

2015-11-07 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Sat Nov 7 09:31:54 2015 New Revision: 252403 URL: http://llvm.org/viewvc/llvm-project?rev=252403=rev Log: Add more NetBSD platform glue for lldb Summary: These changes are still incomplete, but we are almost there. Changes: - CMake and gmake code - SWIG code - minor code

Re: [Lldb-commits] [PATCH] D14042: Add more NetBSD platform glue for lldb

2015-11-07 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL252403: Add more NetBSD platform glue for lldb (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D14042?vs=39639=39640#toc Repository: rL LLVM http://reviews.llvm.org/D14042

Re: [Lldb-commits] [PATCH] D14042: Add more NetBSD platform glue for lldb

2015-11-06 Thread Bruce Mitchener via lldb-commits
brucem added a comment. Kamil, please rebase forward and I'll land it. The semicolons in Python are gone now. And so is the need for that block of Python at all. Repository: rL LLVM http://reviews.llvm.org/D14042 ___ lldb-commits mailing list

Re: [Lldb-commits] [PATCH] D14417: Make lldb::endian::InlHostByteOrder() private.

2015-11-06 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL252396: Make lldb::endian::InlHostByteOrder() private. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D14417?vs=39473=39630#toc Repository: rL LLVM

[Lldb-commits] [lldb] r252396 - Make lldb::endian::InlHostByteOrder() private.

2015-11-06 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Fri Nov 6 22:40:13 2015 New Revision: 252396 URL: http://llvm.org/viewvc/llvm-project?rev=252396=rev Log: Make lldb::endian::InlHostByteOrder() private. Summary: Since this is within the lldb namespace, the compiler tries to export a symbol for it. Unfortunately, since it

Re: [Lldb-commits] [PATCH] D14415: [swig] Simplify check_lldb_swig_executable_file_exists.

2015-11-06 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL252330: [swig] Remove check_lldb_swig_executable_file_exists. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D14415?vs=39558=39562#toc Repository: rL LLVM

Re: [Lldb-commits] [PATCH] D14415: [swig] Simplify check_lldb_swig_executable_file_exists.

2015-11-06 Thread Bruce Mitchener via lldb-commits
brucem updated this revision to Diff 39558. brucem added a comment. Instead of simplifying, just remove. Expand scope of removal as well. http://reviews.llvm.org/D14415 Files: scripts/Python/buildSwigPython.py scripts/buildSwigWrapperClasses.py Index: scripts/buildSwigWrapperClasses.py

Re: [Lldb-commits] [PATCH] D14415: [swig] Simplify check_lldb_swig_executable_file_exists.

2015-11-06 Thread Bruce Mitchener via lldb-commits
brucem added a comment. Well, I'm pretty sure ... but I don't know if someone in some configuration or set of build arrangements might use it. It might also be used if we ever make the Makefiles or xcode projects use these scripts. http://reviews.llvm.org/D14415

Re: [Lldb-commits] [PATCH] D14037: Reuse native curses(8) library on NetBSD

2015-11-05 Thread Bruce Mitchener via lldb-commits
brucem added a reviewer: clayborg. brucem added a comment. I'd like to land this given approval. Repository: rL LLVM http://reviews.llvm.org/D14037 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D14042: Add more NetBSD platform glue for lldb

2015-11-05 Thread Bruce Mitchener via lldb-commits
brucem added a reviewer: emaste. brucem added a comment. emaste, are you okay with this and willing to approve it? It looks good to me. Repository: rL LLVM http://reviews.llvm.org/D14042 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D14375: [swig] Start of pylint on python build scripts.

2015-11-05 Thread Bruce Mitchener via lldb-commits
brucem added inline comments. Comment at: scripts/Python/buildSwigPython.py:293 @@ +292,3 @@ +# LLDBWrapPython.cpp file. +# Args:vDictArg - (R) Program input parameters. +# vstrSwigOpFileNamePath - (R) LLDBWrapPython.cpp file. I shouldn't

Re: [Lldb-commits] [PATCH] D14375: [swig] Start of pylint on python build scripts.

2015-11-05 Thread Bruce Mitchener via lldb-commits
brucem added a comment. Even if it were, in some of the files, almost every line would change anyway due to semicolons and then due to incorrect whitespace. http://reviews.llvm.org/D14375 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [lldb] r252238 - Fix cmake build on Mac OS X.

2015-11-05 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Nov 5 17:48:41 2015 New Revision: 252238 URL: http://llvm.org/viewvc/llvm-project?rev=252238=rev Log: Fix cmake build on Mac OS X. PlatformDarwin uses Host/XML.h which needs to find libxml2, and so it needs to be told how to find the headers. Modified:

Re: [Lldb-commits] [PATCH] D14037: Reuse native curses(8) library on NetBSD

2015-11-05 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL252250: Reuse native curses(8) library on NetBSD (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D14037?vs=39440=39444#toc Repository: rL LLVM http://reviews.llvm.org/D14037

[Lldb-commits] [lldb] r252250 - Reuse native curses(8) library on NetBSD

2015-11-05 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Nov 5 18:21:18 2015 New Revision: 252250 URL: http://llvm.org/viewvc/llvm-project?rev=252250=rev Log: Reuse native curses(8) library on NetBSD Summary: The reason for it is limit of detecting ncurses on various systems. For example, Ubuntu ships with and linkage from ,

[Lldb-commits] [PATCH] D14417: Make lldb::endian::InlHostByteOrder() private.

2015-11-05 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added a reviewer: clayborg. brucem added a subscriber: lldb-commits. Herald added a subscriber: emaste. Since this is within the lldb namespace, the compiler tries to export a symbol for it. Unfortunately, since it is inlined, the symbol is hidden and this

[Lldb-commits] [PATCH] D14415: [swig] Simplify check_lldb_swig_executable_file_exists.

2015-11-05 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added reviewers: zturner, domipheus. brucem added a subscriber: lldb-commits. Remove per-platform variants of this in favor of just having Windows and Unix. The code that was previously specific to Linux can be further simplified and used on all non-Windows

Re: [Lldb-commits] [PATCH] D14182: Centos 5 compile fixes for lldb

2015-10-29 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. brucem requested changes to this revision. brucem added a reviewer: brucem. Comment at: tools/lldb/source/Host/linux/HostThreadLinux.cpp:33 @@ -32,3 +32,3 @@ { -#if (defined(__GLIBC__) && defined(_GNU_SOURCE)) || defined(__ANDROID__) +#if

Re: [Lldb-commits] [PATCH] D13715: Add initial gmake glue for the NetBSD platform

2015-10-23 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL251171: Add initial gmake glue for the NetBSD platform (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13715?vs=37957=38289#toc Repository: rL LLVM

[Lldb-commits] [lldb] r251171 - Add initial gmake glue for the NetBSD platform

2015-10-23 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Fri Oct 23 20:28:24 2015 New Revision: 251171 URL: http://llvm.org/viewvc/llvm-project?rev=251171=rev Log: Add initial gmake glue for the NetBSD platform Summary: These changes aren't everything what is needed for the autotools target, but it's significantly approaching it.

[Lldb-commits] [lldb] r251164 - Add initial CMake glue for the NetBSD platform

2015-10-23 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Fri Oct 23 19:27:04 2015 New Revision: 251164 URL: http://llvm.org/viewvc/llvm-project?rev=251164=rev Log: Add initial CMake glue for the NetBSD platform Summary: These changes aren't everything what is needed for the CMake target, but it's significantly approaching it.

[Lldb-commits] [lldb] r251166 - [lldb-mi] Fix unused variable warning.

2015-10-23 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Fri Oct 23 19:30:18 2015 New Revision: 251166 URL: http://llvm.org/viewvc/llvm-project?rev=251166=rev Log: [lldb-mi] Fix unused variable warning. Modified: lldb/trunk/tools/lldb-mi/MICmnLLDBDebugger.cpp Modified: lldb/trunk/tools/lldb-mi/MICmnLLDBDebugger.cpp URL:

Re: [Lldb-commits] [PATCH] D13981: Disable the strict-aliasing warnings produced by gcc

2015-10-22 Thread Bruce Mitchener via lldb-commits
brucem added a comment. It might be worthwhile to have a "janitor" where we can not enable things like this so that it is more clear that this is something we'd like to clean up over time. It would be pretty easy to just have a `if (NOT LLDB_JANITOR_MODE AND CXX_SUPPORTS_NO_STRICT_ALIASING)`

Re: [Lldb-commits] [Diffusion] rL250335: Fix codesign command with cmake.

2015-10-22 Thread Bruce Mitchener via lldb-commits
brucem added a comment. +1 to what @labath said. Users: sas (Author) dawn (Auditor) http://reviews.llvm.org/rL250335 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [PATCH] D13715: Add initial gmake glue for the NetBSD platform

2015-10-21 Thread Bruce Mitchener via lldb-commits
brucem added a comment. I think this looks good to me if no one disagrees. Repository: rL LLVM http://reviews.llvm.org/D13715 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [Diffusion] rL250335: Fix codesign command with cmake.

2015-10-21 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. brucem added a comment. You are correct: ``-E env`` is new after 3.0. (Not in 3.0, but it is in 3.2.) I think the minimum supported cmake is actually older then 3.0 (2.8.something) ... Users: sas (Author) dawn (Auditor) http://reviews.llvm.org/rL250335

Re: [Lldb-commits] [PATCH] D13699: RenderScript command for printing allocation contents.

2015-10-13 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. brucem added a comment. I don't know much about this, but would it make sense for this to be using any of the Value / SBValue and data formatter infrastructure? Repository: rL LLVM http://reviews.llvm.org/D13699

Re: [Lldb-commits] [PATCH] D13707: Remove definition of ~PlatformNetBSD(), since its declaration is marked as '= default'

2015-10-13 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. brucem accepted this revision. brucem added a reviewer: brucem. brucem added a comment. This revision is now accepted and ready to land. lgtm. will land shortly for you. Repository: rL LLVM http://reviews.llvm.org/D13707

Re: [Lldb-commits] [PATCH] D13707: Remove definition of ~PlatformNetBSD(), since its declaration is marked as '= default'

2015-10-13 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL250249: Remove definition of ~PlatformNetBSD(), since its declaration is marked as '=… (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13707?vs=37284=37298#toc Repository: rL

[Lldb-commits] [lldb] r250146 - Preliminary NetBSD support

2015-10-12 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Tue Oct 13 00:04:13 2015 New Revision: 250146 URL: http://llvm.org/viewvc/llvm-project?rev=250146=rev Log: Preliminary NetBSD support Summary: This adds platform code without the cmake/gmake glue to the existing infrastructure. The missing and incompatibility ptrace(2)

Re: [Lldb-commits] [PATCH] D13574: [LLDB] Fix Clang-tidy misc-use-override warnings in some files in include/lldb/Core; other minor fixes.

2015-10-09 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL249928: [LLDB] Fix Clang-tidy misc-use-override warnings in some files in… (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13574?vs=36894=37014#toc Repository: rL LLVM

[Lldb-commits] [lldb] r249928 - [LLDB] Fix Clang-tidy misc-use-override warnings in some files in include/lldb/Core; other minor fixes.

2015-10-09 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Fri Oct 9 20:11:45 2015 New Revision: 249928 URL: http://llvm.org/viewvc/llvm-project?rev=249928=rev Log: [LLDB] Fix Clang-tidy misc-use-override warnings in some files in include/lldb/Core; other minor fixes. Summary: This is second attempt based on current code. I

[Lldb-commits] [lldb] r249924 - Fix namespace closing comment.

2015-10-09 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Fri Oct 9 19:45:34 2015 New Revision: 249924 URL: http://llvm.org/viewvc/llvm-project?rev=249924=rev Log: Fix namespace closing comment. This is closing namespace lldb_utility, not lldb. Modified: lldb/trunk/include/lldb/Utility/PseudoTerminal.h Modified:

Re: [Lldb-commits] [PATCH] D13334: Preliminary NetBSD support

2015-10-09 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. brucem added a comment. Unless someone else (@emaste?) objects, I think this looks fine to land and iterate on trunk as discussed in the mailing list thread. Just one minor comment based on cleanups that are on-going on trunk now. Comment

[Lldb-commits] [PATCH] D13581: Remove long-forgotten plugin virtuals.

2015-10-09 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added reviewers: clayborg, labath, emaste. brucem added a subscriber: lldb-commits. Herald added a subscriber: emaste. EnablePluginLogging, GetPluginCommandHelp and ExecutePluginCommand aren't implemented or used anywhere, so remove them from the Hexagon and

Re: [Lldb-commits] [PATCH] D13580: [debugserver, cmake] Add DEPENDS to custom commands.

2015-10-09 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL249860: [debugserver,cmake] Add DEPENDS to custom commands. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13580?vs=36925=36965#toc Repository: rL LLVM

[Lldb-commits] [lldb] r249840 - Remove long-forgotten plugin virtuals.

2015-10-09 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Fri Oct 9 10:37:10 2015 New Revision: 249840 URL: http://llvm.org/viewvc/llvm-project?rev=249840=rev Log: Remove long-forgotten plugin virtuals. Summary: EnablePluginLogging, GetPluginCommandHelp and ExecutePluginCommand aren't implemented or used anywhere, so remove them

Re: [Lldb-commits] [PATCH] D13520: Make CMake display more readable paths to Python binaries on Windows

2015-10-08 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL249671: Make CMake display more readable paths to Python binaries on Windows (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13520?vs=36764=36832#toc Repository: rL LLVM

Re: [Lldb-commits] [PATCH] D12257: [LLDB] Fix Clang-tidy misc-use-override warnings in remaining files in include/lldb/Interpreter, unify closing inclusion guards, formatting

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem requested changes to this revision. brucem added a comment. This revision now requires changes to proceed. Same issue here with whitespace and needing to be rebased forward. Repository: rL LLVM http://reviews.llvm.org/D12257 ___

[Lldb-commits] [lldb] r249671 - Make CMake display more readable paths to Python binaries on Windows

2015-10-08 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Oct 8 03:50:20 2015 New Revision: 249671 URL: http://llvm.org/viewvc/llvm-project?rev=249671=rev Log: Make CMake display more readable paths to Python binaries on Windows Summary: Previously CMake would display messages like these: ``` -- LLDB Found PythonExecutable:

Re: [Lldb-commits] [PATCH] D13548: [LLDB][MIPS] fix watchpoint searched on client side for same masked variables

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. brucem requested changes to this revision. brucem added a reviewer: brucem. This revision now requires changes to proceed. Comment at: source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp:2108 @@ -2107,1 +2107,3 @@

Re: [Lldb-commits] [PATCH] D13535: Fix cmake build on OSX after r249434.

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem added a comment. I think what needs to happen is that you take the `add_custom_command` and then create a target that will execute the command and only do it once ... I'll provide an example from something else shortly. (I was about to request changes here when you committed it and

Re: [Lldb-commits] [PATCH] D13535: Fix cmake build on OSX after r249434.

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem added a comment. I don't know what's broken for you. My build hasn't had any issues on Mac OS X using cmake. Repository: rL LLVM http://reviews.llvm.org/D13535 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D13552: Fix handling of LLDB_VERS_GENERATED_FILE.

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem added a comment. I did NOT test this with a full rebuild as it is nearly my bedtime. I did test it with an incremental build as well as rm'ing the generated file and touching the (new) dependencies to make sure that the vers file got regenerated. http://reviews.llvm.org/D13552

[Lldb-commits] [PATCH] D13552: Fix handling of LLDB_VERS_GENERATED_FILE.

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added reviewers: dawn, sas, clayborg, zturner. brucem added a subscriber: lldb-commits. This is Darwin only. The symbol defined by ${LLDB_VERS_GENERATED_FILE} is used by source/lldb.cpp, so anything that uses lldb.cpp (which is in lldbBase) should also have

Re: [Lldb-commits] [PATCH] D13535: Fix cmake build on OSX after r249434.

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem added a comment. The way to do this correctly is something like ADD_CUSTOM_COMMAND( OUTPUT whatever.output.file.c COMMAND ... whatever ... DEPENDS ... whatever ... ) ADD_CUSTOM_TARGET(whatever-target-name ALL DEPENDS

Re: [Lldb-commits] [PATCH] D13552: Fix handling of LLDB_VERS_GENERATED_FILE.

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem added a comment. I have a full build from clean going with this. I'm pretty sure that it will be fine. I'll check this into SVN after I wake up if someone agrees that it looks good. http://reviews.llvm.org/D13552 ___ lldb-commits mailing

Re: [Lldb-commits] [PATCH] D13574: [LLDB] Fix Clang-tidy misc-use-override warnings in some files in include/lldb/Core; other minor fixes.

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem added a comment. I'd like to hear from @clayborg about the whitespace changes here. Repository: rL LLVM http://reviews.llvm.org/D13574 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D13577: Fix build with python disabled after r249597

2015-10-08 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. brucem added a comment. Getting rid of a lot of the `#ifndef LLDB_DISABLE_PYTHON` checks had been on my list of things I wanted to clean up. Since you regularly build with this configuration (and I never do), I suspect that a lot more of those checks could go

Re: [Lldb-commits] [PATCH] D13552: Fix handling of LLDB_VERS_GENERATED_FILE.

2015-10-08 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL249806: Fix handling of LLDB_VERS_GENERATED_FILE. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13552?vs=36851=36923#toc Repository: rL LLVM http://reviews.llvm.org/D13552

Re: [Lldb-commits] [PATCH] D12220: [LLDB] Fix Clang-tidy misc-use-override warnings in source/Plugins/ABI, unify closing inclusion guards, protected members position

2015-10-07 Thread Bruce Mitchener via lldb-commits
brucem requested changes to this revision. brucem added a comment. This revision now requires changes to proceed. This also has the whitespace changes and needs rebasing forward. (And a question for someone about the nature of one of the changes.) Comment at:

Re: [Lldb-commits] [PATCH] D12611: [LLDB] Fix Clang-tidy modernize-use-override warnings in source/Plugins/JITLoader, Language, LanguageRuntime and Process; unify closing inclusion guards

2015-10-07 Thread Bruce Mitchener via lldb-commits
brucem requested changes to this revision. brucem added a comment. This revision now requires changes to proceed. Could you rebase this forward so that it applies cleanly? Repository: rL LLVM http://reviews.llvm.org/D12611 ___ lldb-commits

Re: [Lldb-commits] [PATCH] D12611: [LLDB] Fix Clang-tidy modernize-use-override warnings in source/Plugins/JITLoader, Language, LanguageRuntime and Process; unify closing inclusion guards

2015-10-07 Thread Bruce Mitchener via lldb-commits
brucem accepted this revision. brucem added a comment. This revision is now accepted and ready to land. I can land this for you. I'd like it to go in as I have another patch myself that addresses almost all of the Plugins directory, so if I land this, I'll rebase on top of it and submit mine

Re: [Lldb-commits] [PATCH] D13535: Fix cmake build on OSX after r249434.

2015-10-07 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. Comment at: tools/lldb-server/CMakeLists.txt:42 @@ +41,3 @@ + if (LLDB_VERS_GENERATED_FILE) +add_dependencies(lldb-server swig_wrapper) + endif() Why is this needed? Repository: rL LLVM http://reviews.llvm.org/D13535

[Lldb-commits] [PATCH] D13506: Remove unused virtuals from ABISysV_ppc*

2015-10-07 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added reviewers: clayborg, jingham, jhibbits, emaste. brucem added a subscriber: lldb-commits. The StackUsesFrames and FunctionCallsChangeCFA virtual functions aren't used anywhere and aren't overridden by anything. They were introduced when the ABISysV_ppc*

Re: [Lldb-commits] [PATCH] D13503: commands: Use override instead of virtual.

2015-10-07 Thread Bruce Mitchener via lldb-commits
brucem marked 2 inline comments as done. brucem added a comment. http://reviews.llvm.org/D13503 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [PATCH] D13506: Remove unused virtuals from ABISysV_ppc*

2015-10-07 Thread Bruce Mitchener via lldb-commits
brucem added a comment. There's nothing to test here short of "Does it compile?" as these functions aren't actually used anywhere. I'm cleaning out dead virtuals in various patches. http://reviews.llvm.org/D13506 ___ lldb-commits mailing list

[Lldb-commits] [lldb] r249570 - Reduce header inclusion in Expression.

2015-10-07 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Wed Oct 7 12:22:54 2015 New Revision: 249570 URL: http://llvm.org/viewvc/llvm-project?rev=249570=rev Log: Reduce header inclusion in Expression. Reviewers: spyffe Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D1 Modified:

Re: [Lldb-commits] [PATCH] D13333: Reduce header inclusion in Expression.

2015-10-07 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL249570: Reduce header inclusion in Expression. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D1?vs=36760=36762#toc Repository: rL LLVM http://reviews.llvm.org/D1

Re: [Lldb-commits] [PATCH] D13506: Remove unused virtuals from ABISysV_ppc*

2015-10-07 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL249563: Remove unused virtuals from ABISysV_ppc* (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13506?vs=36726=36753#toc Repository: rL LLVM http://reviews.llvm.org/D13506

[Lldb-commits] [lldb] r249563 - Remove unused virtuals from ABISysV_ppc*

2015-10-07 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Wed Oct 7 11:48:33 2015 New Revision: 249563 URL: http://llvm.org/viewvc/llvm-project?rev=249563=rev Log: Remove unused virtuals from ABISysV_ppc* Summary: The StackUsesFrames and FunctionCallsChangeCFA virtual functions aren't used anywhere and aren't overridden by

Re: [Lldb-commits] [PATCH] D13333: Reduce header inclusion in Expression.

2015-10-07 Thread Bruce Mitchener via lldb-commits
brucem updated this revision to Diff 36760. brucem added a comment. Rebase forward. http://reviews.llvm.org/D1 Files: include/lldb/Expression/ExpressionParser.h include/lldb/Expression/ExpressionVariable.h include/lldb/Expression/FunctionCaller.h

Re: [Lldb-commits] [PATCH] D13463: Remove GetShortPluginName.

2015-10-06 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL249452: Remove GetShortPluginName. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13463?vs=36602=36649#toc Repository: rL LLVM http://reviews.llvm.org/D13463 Files:

[Lldb-commits] [lldb] r249452 - Remove GetShortPluginName.

2015-10-06 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Tue Oct 6 15:15:27 2015 New Revision: 249452 URL: http://llvm.org/viewvc/llvm-project?rev=249452=rev Log: Remove GetShortPluginName. Summary: This was deprecated and removed. Reviewers: clayborg Subscribers: lldb-commits Differential Revision:

[Lldb-commits] [PATCH] D13462: Fix virtual/override warnings in new MIPS code.

2015-10-06 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added reviewers: bhushan, tberghammer. brucem added a subscriber: lldb-commits. http://reviews.llvm.org/D13462 Files: source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h Index: source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h

[Lldb-commits] [PATCH] D13463: Remove GetShortPluginName.

2015-10-06 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added a reviewer: clayborg. brucem added a subscriber: lldb-commits. This was deprecated and removed. http://reviews.llvm.org/D13463 Files: source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h

[Lldb-commits] [lldb] r249387 - Fix segmentation fault in lldb_private::Symbols::LocateExecutableSymbolFile()

2015-10-06 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Tue Oct 6 05:17:34 2015 New Revision: 249387 URL: http://llvm.org/viewvc/llvm-project?rev=249387=rev Log: Fix segmentation fault in lldb_private::Symbols::LocateExecutableSymbolFile() Summary: When `module_spec.GetFileSpec().GetDirectory().AsCString()` returned a `nullptr`

[Lldb-commits] [lldb] r249405 - Fix virtual/override warnings in new MIPS code.

2015-10-06 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Tue Oct 6 09:19:32 2015 New Revision: 249405 URL: http://llvm.org/viewvc/llvm-project?rev=249405=rev Log: Fix virtual/override warnings in new MIPS code. Reviewers: bhushan, tberghammer Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D13462

Re: [Lldb-commits] [PATCH] D13462: Fix virtual/override warnings in new MIPS code.

2015-10-06 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL249405: Fix virtual/override warnings in new MIPS code. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13462?vs=36601=36622#toc Repository: rL LLVM

Re: [Lldb-commits] [PATCH] D13234: Use the correct Python lib for each build configuration generated by the Visual Studio CMake generator

2015-10-01 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL248991: Use the correct Python lib for each build configuration generated by the… (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13234?vs=36072=36196#toc Repository: rL LLVM

[Lldb-commits] [lldb] r248991 - Use the correct Python lib for each build configuration generated by the Visual Studio CMake generator

2015-10-01 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Oct 1 02:47:38 2015 New Revision: 248991 URL: http://llvm.org/viewvc/llvm-project?rev=248991=rev Log: Use the correct Python lib for each build configuration generated by the Visual Studio CMake generator Summary: Previously `CMAKE_BUILD_TYPE` was used to determine

Re: [Lldb-commits] [PATCH] D13237: Add a Post-Build Event on Windows to copy the correct custom Python DLL to the LLDB binaries dir

2015-10-01 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL248992: Add a Post-Build Event on Windows to copy the correct custom Python DLL to… (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D13237?vs=35948=36197#toc Repository: rL

[Lldb-commits] [lldb] r248992 - Add a Post-Build Event on Windows to copy the correct custom Python DLL to the LLDB binaries dir

2015-10-01 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Oct 1 02:55:44 2015 New Revision: 248992 URL: http://llvm.org/viewvc/llvm-project?rev=248992=rev Log: Add a Post-Build Event on Windows to copy the correct custom Python DLL to the LLDB binaries dir Summary: After a developer builds LLDB from source on Windows

[Lldb-commits] [PATCH] D13333: Reduce header inclusion in Expression.

2015-10-01 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added a reviewer: spyffe. brucem added a subscriber: lldb-commits. http://reviews.llvm.org/D1 Files: include/lldb/Expression/ExpressionParser.h include/lldb/Expression/ExpressionVariable.h include/lldb/Expression/FunctionCaller.h

Re: [Lldb-commits] [PATCH] D13234: Use the correct Python lib for each build configuration generated by the Visual Studio CMake generator

2015-09-29 Thread Bruce Mitchener via lldb-commits
brucem added a comment. This looks good to me and like the correct fix. Leaving it for zturner to give the official nod of approval though. Repository: rL LLVM http://reviews.llvm.org/D13234 ___ lldb-commits mailing list

Re: [Lldb-commits] [PATCH] D13201: Fix segmentation fault in lldb_private::Symbols::LocateExecutableSymbolFile()

2015-09-28 Thread Bruce Mitchener via lldb-commits
brucem added a comment. Talking to Vadim (enlight) offline, this happened when debugging an inferior on a Linux target from a Windows host. He had only copied the executable back to the Windows host, so the shared libraries involved weren't present on his system. I'm not sure if this is the

Re: [Lldb-commits] [PATCH] D12994: Improve support of the ncurses dependency on NetBSD

2015-09-28 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. brucem added a comment. Some mostly superficial comments. I'd like to hear if anyone else has an opinion about using a Config.h generated by cmake & autotools. I'm also not sure offhand how this would impact the Xcode build that the Apple folks use. And I

Re: [Lldb-commits] [PATCH] D12748: Include platform agnostic in the place of

2015-09-28 Thread Bruce Mitchener via lldb-commits
brucem added a subscriber: brucem. Comment at: tools/lldb-server/lldb-gdbserver.cpp:10 @@ -9,1 +9,3 @@ +#include + I suspect that this should `#include "lldb/Host/HostGetOpt.h"` instead, and that it should be down below with the other Host includes.

Re: [Lldb-commits] [PATCH] D13158: Allow to construct CMIUtilString using std::string directly (MI)

2015-09-25 Thread Bruce Mitchener via lldb-commits
brucem added inline comments. Comment at: tools/lldb-mi/MICmdInterpreter.cpp:166 @@ -165,3 +165,3 @@ m_miCmdData.strMiCmdToken = strNum.c_str(); } Can this one be changed too? http://reviews.llvm.org/D13158

Re: [Lldb-commits] [Diffusion] rL248338: Move the "run" alias from process launch --shell to process launch --shell…

2015-09-24 Thread Bruce Mitchener via lldb-commits
brucem added a comment. Yes. With a change that I'm going to submit for review: batavia:build-llvm bruce$ bin/lldb bin/clang (lldb) target create "bin/clang" Current executable set to 'bin/clang' (x86_64). (lldb) b main Breakpoint 1: where = clang`main, address = 0x00012890

  1   2   >