[Lldb-commits] [lldb] r346093 - NativeProcessProtocol: Simplify breakpoint setting code

2018-11-04 Thread Pavel Labath via lldb-commits
Author: labath Date: Sun Nov 4 02:58:08 2018 New Revision: 346093 URL: http://llvm.org/viewvc/llvm-project?rev=346093=rev Log: NativeProcessProtocol: Simplify breakpoint setting code Summary: A fairly simple operation as setting a breakpoint (writing a breakpoint opcode) at a given address was

[Lldb-commits] [PATCH] D54056: Add SetAllowJIT (the SBExpressionOptions equivalent of "expression --allow-jit")

2018-11-04 Thread Jan Kratochvil via Phabricator via lldb-commits
jankratochvil added a comment. In https://reviews.llvm.org/D54056#1286635, @davide wrote: > I don't think anybody will look at this until Monday, so if you want a quick > fix you might consider renaming the test yourself. Checked in as: https://reviews.llvm.org/rLLDB346089 Repository: rL

[Lldb-commits] [PATCH] D52941: NativeProcessProtocol: Simplify breakpoint setting code

2018-11-04 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL346093: NativeProcessProtocol: Simplify breakpoint setting code (authored by labath, committed by ). Herald added a subscriber: llvm-commits. Repository: rL LLVM https://reviews.llvm.org/D52941

[Lldb-commits] [PATCH] D52941: NativeProcessProtocol: Simplify breakpoint setting code

2018-11-04 Thread Pavel Labath via Phabricator via lldb-commits
labath added a comment. thanks. https://reviews.llvm.org/D52941 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] r346089 - Fix duplicate testcase filename

2018-11-04 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sat Nov 3 23:13:09 2018 New Revision: 346089 URL: http://llvm.org/viewvc/llvm-project?rev=346089=rev Log: Fix duplicate testcase filename dotest.py started reporting: Exception: Found multiple tests with the name TestSampleTest.py After the commit of:

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Pavel Labath via Phabricator via lldb-commits
labath added inline comments. Comment at: lldb/source/Commands/CommandObjectTarget.cpp:2275 +SymbolFile *sf = m->GetSymbolVendor()->GetSymbolFile(); +sf->DumpClangAST(); + } The dump function should take the output stream from the `result`

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Pavel Labath via Phabricator via lldb-commits
labath added a comment. In https://reviews.llvm.org/D54072#1286748, @zturner wrote: > Unfortunately then color output is impossible. Where else would the output > be expected to go? If you execute the command over the SB API (SBCommandInterpreter::HandleCommand) then it will go into the

Re: [Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via lldb-commits
I tried that one and it didn’t show color, bit maybe I need to add an overload of dumpColor that allows to pass a raw_ostream On Sun, Nov 4, 2018 at 6:25 AM Raphael Isemann via Phabricator < revi...@reviews.llvm.org> wrote: > teemperor added a comment. > > I think Pavel's point is to call the

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor added a comment. I think Pavel's point is to call the `dump` overload which allows specifying our own custom raw_ostream: https://clang.llvm.org/doxygen/classclang_1_1Decl.html#a278b3b87b6f9d3b20ed566a8684341a6 And our raw_ostream is configured by LLDB to correctly choose if we want

[Lldb-commits] [PATCH] D49776: Update framework-header-fix to force system sed

2018-11-04 Thread Dave Lee via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL346099: Update framework-header-fix to force system sed (authored by kastiglione, committed by ). Herald added a subscriber: llvm-commits. Changed prior to commit:

[Lldb-commits] [lldb] r346100 - Fix NetBSD build after "Move path resolution logic out of FileSpec"

2018-11-04 Thread Kamil Rytarowski via lldb-commits
Author: kamil Date: Sun Nov 4 08:53:16 2018 New Revision: 346100 URL: http://llvm.org/viewvc/llvm-project?rev=346100=rev Log: Fix NetBSD build after "Move path resolution logic out of FileSpec" D53915 Modified: lldb/trunk/source/Host/netbsd/Host.cpp

[Lldb-commits] [lldb] r346094 - Fix log statement in r346093

2018-11-04 Thread Pavel Labath via lldb-commits
Author: labath Date: Sun Nov 4 04:54:29 2018 New Revision: 346094 URL: http://llvm.org/viewvc/llvm-project?rev=346094=rev Log: Fix log statement in r346093 Thanks to Dávid Bolvanský for pointing that out. Modified: lldb/trunk/source/Host/common/NativeProcessProtocol.cpp Modified:

[Lldb-commits] [PATCH] D49776: Update framework-header-fix to force system sed

2018-11-04 Thread Dave Lee via Phabricator via lldb-commits
kastiglione added a comment. @Keith I screwed up and committed without amending the commit message to attribute you as the author :( Repository: rL LLVM https://reviews.llvm.org/D49776 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via lldb-commits
Ok so probably this commands output will not go to a log file when logging is enabled? I can’t think of any other side effects. Given that the immediate use case for this is interactive investigation and testing, the first of which is helped by color output and the second of which doesn’t need

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via Phabricator via lldb-commits
zturner added a comment. The issue is that clang writes directly to stderr https://reviews.llvm.org/D54072 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via Phabricator via lldb-commits
zturner added a subscriber: davide. zturner added a comment. Ok so probably this commands output will not go to a log file when logging is enabled? I can’t think of any other side effects. Given that the immediate use case for this is interactive investigation and testing, the first of which is

Re: [Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via lldb-commits
The issue is that clang writes directly to stderr On Sun, Nov 4, 2018 at 5:38 AM Pavel Labath via Phabricator < revi...@reviews.llvm.org> wrote: > labath added a comment. > > In https://reviews.llvm.org/D54072#1286748, @zturner wrote: > > > Unfortunately then color output is impossible. Where

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor added a comment. Yeah it uses the color settings of the diagnostic engine which are probably set to false in LLDB. I think activating colors there should fix the issue. https://reviews.llvm.org/D54072 ___ lldb-commits mailing list

[Lldb-commits] [lldb] r346099 - Update framework-header-fix to force system sed

2018-11-04 Thread Dave Lee via lldb-commits
Author: kastiglione Date: Sun Nov 4 07:55:28 2018 New Revision: 346099 URL: http://llvm.org/viewvc/llvm-project?rev=346099=rev Log: Update framework-header-fix to force system sed Summary: There are 2 changes here: 1. Use system sed instead of the sed found in the user's path. This fixes

[Lldb-commits] [PATCH] D49776: Update framework-header-fix to force system sed

2018-11-04 Thread Keith Smiley via Phabricator via lldb-commits
keith added a subscriber: kastiglione. keith added a comment. No worries, thanks! - Keith Smiley Repository: rL LLVM https://reviews.llvm.org/D49776 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [PATCH] D54053: [NativePDB] Add the ability to create clang record decls from mangled names.

2018-11-04 Thread Zachary Turner via Phabricator via lldb-commits
zturner added a comment. So I tried to go down this route, but alas, I still can't come up with a good way to make color output work, because the Stream is not a `StreamFile` object, it is a `StreamString` object, even when the output is going to a terminal. We could have an argument such as

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via Phabricator via lldb-commits
zturner added a comment. So I tried to go down this route, but alas, I still can't come up with a good way to make color output work, because the Stream is not a `StreamFile` object, it is a `StreamString` object, even when the output is going to a terminal. We could have an argument such as

[Lldb-commits] [PATCH] D54084: [LLDB] Fix FreeBSD/Darwin build

2018-11-04 Thread Tatyana Krasnukha via Phabricator via lldb-commits
tatyana-krasnukha accepted this revision. tatyana-krasnukha added a comment. This revision is now accepted and ready to land. Thank you! LGTM, though I'm not able to test it under any of these systems. https://reviews.llvm.org/D54084 ___

[Lldb-commits] [lldb] r346109 - [LLDB] Fix FreeBSD/Darwin build

2018-11-04 Thread David Carlier via lldb-commits
Author: devnexen Date: Sun Nov 4 15:19:25 2018 New Revision: 346109 URL: http://llvm.org/viewvc/llvm-project?rev=346109=rev Log: [LLDB] Fix FreeBSD/Darwin build Reviewers: JDevlieghere, tatyana-krasnukha Reviwed By: tatyana-krasnukha Differential Revision: https://reviews.llvm.org/D54084

[Lldb-commits] [PATCH] D54084: [LLDB] Fix FreeBSD/Darwin build

2018-11-04 Thread David CARLIER via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rLLDB346109: [LLDB] Fix FreeBSD/Darwin build (authored by devnexen, committed by ). Repository: rLLDB LLDB https://reviews.llvm.org/D54084 Files: source/Plugins/Process/Darwin/NativeProcessDarwin.cpp

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via Phabricator via lldb-commits
zturner added a comment. In https://reviews.llvm.org/D54072#1286811, @zturner wrote: > So I tried to go down this route, but alas, I still can't come up with a good > way to make color output work, because the Stream is not a `StreamFile` > object, it is a `StreamString` object, even when the

Re: [Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via lldb-commits
Unfortunately then color output is impossible. Where else would the output be expected to go? On Sun, Nov 4, 2018 at 2:23 AM Pavel Labath via Phabricator < revi...@reviews.llvm.org> wrote: > labath added inline comments. > > > > Comment at:

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via Phabricator via lldb-commits
zturner added a subscriber: vsk. zturner added a comment. Unfortunately then color output is impossible. Where else would the output be expected to go? https://reviews.llvm.org/D54072 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [PATCH] D54072: Add a command to dump a module's clang ast.

2018-11-04 Thread Zachary Turner via Phabricator via lldb-commits
zturner added a comment. I tried that one and it didn’t show color, bit maybe I need to add an overload of dumpColor that allows to pass a raw_ostream https://reviews.llvm.org/D54072 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [PATCH] D54084: [LLDB] Fix FreeBSD build

2018-11-04 Thread David CARLIER via Phabricator via lldb-commits
devnexen created this revision. devnexen added reviewers: JDevlieghere, tatyana-krasnukha. devnexen created this object with visibility "All Users". Herald added subscribers: lldb-commits, emaste. ResolvePath is no longer into FileSpec class Repository: rLLDB LLDB

[Lldb-commits] [PATCH] D54084: [LLDB] Fix FreeBSD build

2018-11-04 Thread Tatyana Krasnukha via Phabricator via lldb-commits
tatyana-krasnukha added inline comments. Comment at: source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp:378 namespace fs = llvm::sys::fs; - if (working_dir && (!working_dir.ResolvePath() || - !fs::is_directory(working_dir.GetPath( { + if (working_dir

[Lldb-commits] [PATCH] D54084: [LLDB] Fix FreeBSD build

2018-11-04 Thread Tatyana Krasnukha via Phabricator via lldb-commits
tatyana-krasnukha added a comment. Could you please make the same fix for NativeProcessDarwin (`NativeProcessProtocol::Launch`) as well? Repository: rLLDB LLDB https://reviews.llvm.org/D54084 ___ lldb-commits mailing list

[Lldb-commits] [PATCH] D54084: [LLDB] Fix FreeBSD/Darwin build

2018-11-04 Thread David CARLIER via Phabricator via lldb-commits
devnexen updated this revision to Diff 172535. devnexen retitled this revision from "[LLDB] Fix FreeBSD build" to "[LLDB] Fix FreeBSD/Darwin build". https://reviews.llvm.org/D54084 Files: source/Plugins/Process/Darwin/NativeProcessDarwin.cpp source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp

[Lldb-commits] [PATCH] D54084: [LLDB] Fix FreeBSD/Darwin build

2018-11-04 Thread David CARLIER via Phabricator via lldb-commits
devnexen added a comment. Can't test under Darwin but reproduced similar changes. https://reviews.llvm.org/D54084 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits