[Lldb-commits] [PATCH] D27124: [LLDB][MIPS] Fix TestWatchpointIter failure

2016-11-24 Thread Nitesh Jain via lldb-commits
nitesh.jain created this revision. nitesh.jain added reviewers: clayborg, jingham, labath. nitesh.jain added subscribers: jaydeep, bhushan, slthakur, lldb-commits. In case of MIPS, the watchpoint exception occur before associated instruction is executed. When watchpoint hit , we first enable the

[Lldb-commits] [PATCH] D25947: Merge Linux and FreeBSD arm64 register contexts

2016-11-24 Thread Ed Maste via lldb-commits
emaste added a comment. In https://reviews.llvm.org/D25947#597160, @labath wrote: > Ed, if I may suggest, while you are playing with the arm machine, could you > grab us a core file or two? It'd be great to be able to do a basic sanity > check on these things without physical access. I used m

[Lldb-commits] [PATCH] D25947: Merge Linux and FreeBSD arm64 register contexts

2016-11-24 Thread Ed Maste via lldb-commits
emaste added a comment. The tests are not in great shape on FreeBSD/arm64 today, but look roughly equivalent with and without this patch. At https://reviews.llvm.org/rL287887: === Test Result Summary === Test Methods: 1148 Reruns: 16

[Lldb-commits] [lldb] r287896 - Add a couple of tests for the Listener class

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 11:10:10 2016 New Revision: 287896 URL: http://llvm.org/viewvc/llvm-project?rev=287896&view=rev Log: Add a couple of tests for the Listener class I'm considering doing some refactor there, so I am adding these to guard the current behavior. Added: lldb/trunk/u

[Lldb-commits] [lldb] r287893 - Fix TestMiExec.test_lldbmi_exec_next_instruction

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 09:54:15 2016 New Revision: 287893 URL: http://llvm.org/viewvc/llvm-project?rev=287893&view=rev Log: Fix TestMiExec.test_lldbmi_exec_next_instruction The line numbers come out slightly differently when the test is run with gcc-4.9 as a compiler. The test probably s

[Lldb-commits] [lldb] r287887 - Enable MiExecTestCase-test_lldbmi_exec_next_instruction

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 09:16:07 2016 New Revision: 287887 URL: http://llvm.org/viewvc/llvm-project?rev=287887&view=rev Log: Enable MiExecTestCase-test_lldbmi_exec_next_instruction Test passes consistently, at least on linux. Modified: lldb/trunk/packages/Python/lldbsuite/test/tools

[Lldb-commits] [lldb] r287885 - Enable TestMultithreaded-sb_api_listener_event_process_state on linux/gcc

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 09:10:15 2016 New Revision: 287885 URL: http://llvm.org/viewvc/llvm-project?rev=287885&view=rev Log: Enable TestMultithreaded-sb_api_listener_event_process_state on linux/gcc Passing consistently now. Modified: lldb/trunk/packages/Python/lldbsuite/test/api/mu

[Lldb-commits] [lldb] r287884 - Enable TestBitfields on linux with clang

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 09:03:31 2016 New Revision: 287884 URL: http://llvm.org/viewvc/llvm-project?rev=287884&view=rev Log: Enable TestBitfields on linux with clang The test has been passing for a while now. Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/TestBi

[Lldb-commits] [lldb] r287883 - Enable TestRegisterVariables for some configurations

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 08:54:53 2016 New Revision: 287883 URL: http://llvm.org/viewvc/llvm-project?rev=287883&view=rev Log: Enable TestRegisterVariables for some configurations It consistently passes for linux-clang-i386, and linux-gcc-x86_64. Modified: lldb/trunk/packages/Python/l

[Lldb-commits] [lldb] r287881 - Enable WatchpointPythonCommandTestCase-test_continue_in_watchpoint_command

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 08:41:36 2016 New Revision: 287881 URL: http://llvm.org/viewvc/llvm-project?rev=287881&view=rev Log: Enable WatchpointPythonCommandTestCase-test_continue_in_watchpoint_command This test passes consistently on linux, so I am removing the overall XFAIL. If it fails

[Lldb-commits] [lldb] r287880 - Use more chrono in AdbClient

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 08:11:47 2016 New Revision: 287880 URL: http://llvm.org/viewvc/llvm-project?rev=287880&view=rev Log: Use more chrono in AdbClient This refactors AdbClient interface in terms of std::chrono. Modified: lldb/trunk/source/Plugins/Platform/Android/AdbClient.cpp

[Lldb-commits] [lldb] r287879 - Use chrono in AdbClient

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 08:03:57 2016 New Revision: 287879 URL: http://llvm.org/viewvc/llvm-project?rev=287879&view=rev Log: Use chrono in AdbClient This refactors the class implementations to use chrono. I'll follow this up with a refactor of the class interface. Modified: lldb/trun

[Lldb-commits] [lldb] r287867 - Attempt to fix freebsd build after r287864

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 05:22:43 2016 New Revision: 287867 URL: http://llvm.org/viewvc/llvm-project?rev=287867&view=rev Log: Attempt to fix freebsd build after r287864 the chrono library there uses long long as the underlying chrono type, but defines int64_t as long (or the other way arou

[Lldb-commits] [PATCH] D26971: Introduce chrono to more gdb-remote functions

2016-11-24 Thread Pavel Labath via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL287864: Introduce chrono to more gdb-remote functions (authored by labath). Changed prior to commit: https://reviews.llvm.org/D26971?vs=79050&id=79203#toc Repository: rL LLVM https://reviews.llvm.or

[Lldb-commits] [lldb] r287864 - Introduce chrono to more gdb-remote functions

2016-11-24 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Nov 24 04:54:49 2016 New Revision: 287864 URL: http://llvm.org/viewvc/llvm-project?rev=287864&view=rev Log: Introduce chrono to more gdb-remote functions Summary: This replaces the usage of raw integers with duration classes in the gdb-remote packet management functions.

[Lldb-commits] [PATCH] D26676: Patch for lldb bug 26322 “core load hangs”

2016-11-24 Thread Howard Hellyer via lldb-commits
hhellyer added a comment. @labath - Yes sorry about that. To be safe I did the "honest" thing of using arc to pull down the patch from phabriactor and then arc commit to land it to make sure I committed exactly what was reviewed. Somewhere in that it lost the contents of the core files and just

[Lldb-commits] [PATCH] D26676: Patch for lldb bug 26322 “core load hangs”

2016-11-24 Thread Pavel Labath via lldb-commits
labath added a comment. Oh, you fixed it. Thank you. :) https://reviews.llvm.org/D26676 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D26676: Patch for lldb bug 26322 “core load hangs”

2016-11-24 Thread Pavel Labath via lldb-commits
labath added a comment. It fails on the linux buildbot, but not when I run it locally. I am going to investigate the issue. https://reviews.llvm.org/D26676 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mai

[Lldb-commits] [PATCH] D27088: [LLDB][MIPS] Fix TestLldbGdbServer failure for MIPS

2016-11-24 Thread Pavel Labath via lldb-commits
labath requested changes to this revision. labath added a comment. This revision now requires changes to proceed. Looks fine in principle, but please encapsulate this better. Comment at: packages/Python/lldbsuite/test/tools/lldb-server/TestLldbGdbServer.py:569 sel

[Lldb-commits] [PATCH] D27085: [LLDB][MIPS] Fix TestMultipleHits for MIPS

2016-11-24 Thread Pavel Labath via lldb-commits
labath accepted this revision. labath added a comment. This revision is now accepted and ready to land. Thank you. https://reviews.llvm.org/D27085 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listin

[Lldb-commits] [lldb] r287862 - Remove \x13 (^S) character that was likely added by mistake.

2016-11-24 Thread Adrian Kuegel via lldb-commits
Author: akuegel Date: Thu Nov 24 04:01:34 2016 New Revision: 287862 URL: http://llvm.org/viewvc/llvm-project?rev=287862&view=rev Log: Remove \x13 (^S) character that was likely added by mistake. r287386 added a \x13 character inside a string literal. Most likely this was by mistake, so remove it.

[Lldb-commits] [PATCH] D27088: [LLDB][MIPS] Fix TestLldbGdbServer failure for MIPS

2016-11-24 Thread Nitesh Jain via lldb-commits
nitesh.jain created this revision. nitesh.jain added reviewers: clayborg, labath, zturner. nitesh.jain added subscribers: jaydeep, bhushan, slthakur, lldb-commits. In case of MIPS, the floating point register size is based on FR bit of status register(SR) (https://reviews.llvm.org/rL277343). In t