[Lldb-commits] [PATCH] D47838: [lldb-mi] Re-implement MI -exec-step command.

2018-06-10 Thread Alexander Polyakov via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL334364: [lldb-mi] Re-implement MI -exec-step command. (authored by apolyakov, committed by ). Herald added a subscriber: llvm-commits. Changed prior to commit: https://reviews.llvm.org/D47838?vs=150632&

[Lldb-commits] [lldb] r334364 - [lldb-mi] Re-implement MI -exec-step command.

2018-06-10 Thread Alexander Polyakov via lldb-commits
Author: apolyakov Date: Sun Jun 10 07:58:29 2018 New Revision: 334364 URL: http://llvm.org/viewvc/llvm-project?rev=334364&view=rev Log: [lldb-mi] Re-implement MI -exec-step command. Summary: Now -exec-step uses SB API instead of HandleCommand hack. Reviewers: aprantl, clayborg, labath, stella.st

[Lldb-commits] [PATCH] D47992: [lldb-mi] Correct error processing in exec-next command.

2018-06-10 Thread Alexander Polyakov via Phabricator via lldb-commits
apolyakov added a comment. This patch uses changes from https://reviews.llvm.org/D47991. Is allows to: (gdb) -file-exec-and-symbols "bash" ^done (gdb) =library-loaded,id="/bin/bash",target-name="/bin/bash",host-name="/bin/bash",symbols-loaded="0",loaded_addr="-",size="0" -exec-next

[Lldb-commits] [PATCH] D47992: [lldb-mi] Correct error processing in exec-next command.

2018-06-10 Thread Alexander Polyakov via Phabricator via lldb-commits
apolyakov created this revision. apolyakov added reviewers: aprantl, clayborg, labath. Herald added a subscriber: ki.stfu. https://reviews.llvm.org/D47992 Files: tools/lldb-mi/MICmdCmdExec.cpp tools/lldb-mi/MICmdCmdExec.h Index: tools/lldb-mi/MICmdCmdExec.h =

[Lldb-commits] [PATCH] D47991: Add method SBThread::StepOver with SBError parameter.

2018-06-10 Thread Alexander Polyakov via Phabricator via lldb-commits
apolyakov added a comment. Also, I suggest to make similar things in other SBThread methods like StepOut etc. https://reviews.llvm.org/D47991 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/l

[Lldb-commits] [PATCH] D47991: Add method SBThread::StepOver with SBError parameter.

2018-06-10 Thread Alexander Polyakov via Phabricator via lldb-commits
apolyakov created this revision. apolyakov added reviewers: aprantl, clayborg, labath. The new method will allow to get error messages from StepOver function. https://reviews.llvm.org/D47991 Files: include/lldb/API/SBThread.h source/API/SBThread.cpp Index: source/API/SBThread.cpp