[Lldb-commits] [lldb] r294804 - Fix the lldb_private::Function::GetDescription to print out the name and mangled name correctly. Previously this was getting the function type's name which was not corr

2017-02-10 Thread Greg Clayton via lldb-commits
Author: gclayton Date: Fri Feb 10 17:32:06 2017 New Revision: 294804 URL: http://llvm.org/viewvc/llvm-project?rev=294804=rev Log: Fix the lldb_private::Function::GetDescription to print out the name and mangled name correctly. Previously this was getting the function type's name which was not

[Lldb-commits] [lldb] r294768 - Fix another build issue with shared libraries on Linux

2017-02-10 Thread Chris Bieneman via lldb-commits
Author: cbieneman Date: Fri Feb 10 12:39:26 2017 New Revision: 294768 URL: http://llvm.org/viewvc/llvm-project?rev=294768=rev Log: Fix another build issue with shared libraries on Linux In r294767, I added these dependencies in the wrong place. Modified:

[Lldb-commits] [lldb] r294767 - Fix another build issue with shared libraries on Linux

2017-02-10 Thread Chris Bieneman via lldb-commits
Author: cbieneman Date: Fri Feb 10 12:37:02 2017 New Revision: 294767 URL: http://llvm.org/viewvc/llvm-project?rev=294767=rev Log: Fix another build issue with shared libraries on Linux Modified: lldb/trunk/source/Plugins/UnwindAssembly/x86/CMakeLists.txt Modified:

[Lldb-commits] [lldb] r294763 - Fix build issue with shared libraries reported via email

2017-02-10 Thread Chris Bieneman via lldb-commits
Author: cbieneman Date: Fri Feb 10 11:47:55 2017 New Revision: 294763 URL: http://llvm.org/viewvc/llvm-project?rev=294763=rev Log: Fix build issue with shared libraries reported via email Modified: lldb/trunk/source/Plugins/UnwindAssembly/x86/CMakeLists.txt Modified:

[Lldb-commits] [lldb] r294744 - Really fix windows build

2017-02-10 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 10 07:04:32 2017 New Revision: 294744 URL: http://llvm.org/viewvc/llvm-project?rev=294744=rev Log: Really fix windows build this time I have actually tried that it compiles on windows. Modified:

[Lldb-commits] [PATCH] D29823: Clean up debug logging

2017-02-10 Thread Pavel Labath via Phabricator via lldb-commits
labath created this revision. We've had two ways to print a "debug" log message. - Log::GetDebug() was testing a Stream flag which was never set. - Log::Debug() was checking for the presence of "log enable --debug" flag. Given that these two were used very rarely and we already have a

[Lldb-commits] [lldb] r294743 - Fix darwin and windows builds broken by r294736

2017-02-10 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 10 06:32:43 2017 New Revision: 294743 URL: http://llvm.org/viewvc/llvm-project?rev=294743=rev Log: Fix darwin and windows builds broken by r294736 Update the platform-specific log classes to match the new interface. Modified:

[Lldb-commits] [lldb] r294741 - UriParser cleanup

2017-02-10 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 10 06:21:22 2017 New Revision: 294741 URL: http://llvm.org/viewvc/llvm-project?rev=294741=rev Log: UriParser cleanup - move the header file to the include folder - enclose the class in the proper namespace Added: lldb/trunk/include/lldb/Utility/UriParser.h

[Lldb-commits] [lldb] r294738 - Add a format_provider for the Timeout class

2017-02-10 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 10 05:49:33 2017 New Revision: 294738 URL: http://llvm.org/viewvc/llvm-project?rev=294738=rev Log: Add a format_provider for the Timeout class and use it in the appropriate log statements. Formatting of chrono types in log messages was very clunky. This should make

[Lldb-commits] [PATCH] D29615: Convert Log class to llvm streams

2017-02-10 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL294736: Convert Log class to llvm streams (authored by labath). Changed prior to commit: https://reviews.llvm.org/D29615?vs=87349=87978#toc Repository: rL LLVM https://reviews.llvm.org/D29615

[Lldb-commits] [lldb] r294737 - Improve asserts in TestWatchpointIgnoreCount

2017-02-10 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 10 05:49:25 2017 New Revision: 294737 URL: http://llvm.org/viewvc/llvm-project?rev=294737=rev Log: Improve asserts in TestWatchpointIgnoreCount This test is flaky on the windows->android bot. Change assertTrue to assertEqual in the hope better error messages will

[Lldb-commits] [lldb] r294739 - Switch TestPacketSpeedJSON to use the llvm chrono formatter

2017-02-10 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 10 05:49:40 2017 New Revision: 294739 URL: http://llvm.org/viewvc/llvm-project?rev=294739=rev Log: Switch TestPacketSpeedJSON to use the llvm chrono formatter Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp

[Lldb-commits] [lldb] r294736 - Convert Log class to llvm streams

2017-02-10 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 10 05:49:21 2017 New Revision: 294736 URL: http://llvm.org/viewvc/llvm-project?rev=294736=rev Log: Convert Log class to llvm streams Summary: This converts LLDB's logging to use llvm streams instead of lldb_private::Stream and friends. The changes are mostly