[Lldb-commits] [lldb] r246569 - XFAIL TestHelloWorld on Windows.

2015-09-01 Thread Zachary Turner via lldb-commits
Author: zturner Date: Tue Sep 1 13:24:49 2015 New Revision: 246569 URL: http://llvm.org/viewvc/llvm-project?rev=246569=rev Log: XFAIL TestHelloWorld on Windows. https://llvm.org/pr24600 Modified: lldb/trunk/test/python_api/hello_world/TestHelloWorld.py Modified:

Re: [Lldb-commits] [PATCH] D11102: Set the default language to use when evaluating to that of the frame's CU.

2015-09-01 Thread Dawn Perchik via lldb-commits
dawn updated the summary for this revision. dawn set the repository for this revision to rL LLVM. dawn updated this revision to Diff 33721. Repository: rL LLVM http://reviews.llvm.org/D11102 Files: include/lldb/Target/StackFrame.h source/Commands/CommandObjectExpression.cpp

[Lldb-commits] [lldb] r246563 - When looking up types, find the first type we can import rather than just taking

2015-09-01 Thread Sean Callanan via lldb-commits
Author: spyffe Date: Tue Sep 1 13:00:35 2015 New Revision: 246563 URL: http://llvm.org/viewvc/llvm-project?rev=246563=rev Log: When looking up types, find the first type we can import rather than just taking the first type we find and failing if it can't be imported. Modified:

Re: [Lldb-commits] [PATCH] D12420: Make ProcessGDBRemote get a //copy// of platform Unix signals.

2015-09-01 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL246557: Make ProcessGDBRemote get a //copy// of platform Unix signals. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D12420?vs=33485=33707#toc Repository: rL LLVM

[Lldb-commits] [lldb] r246570 - Un-XFAIL a couple tests that are now passing.

2015-09-01 Thread Zachary Turner via lldb-commits
Author: zturner Date: Tue Sep 1 13:25:05 2015 New Revision: 246570 URL: http://llvm.org/viewvc/llvm-project?rev=246570=rev Log: Un-XFAIL a couple tests that are now passing. Modified: lldb/trunk/test/settings/quoting/TestQuoting.py Modified: lldb/trunk/test/settings/quoting/TestQuoting.py

[Lldb-commits] [lldb] r246568 - Add support for language plugins to provide data formatters (second attempt)

2015-09-01 Thread Enrico Granata via lldb-commits
Author: enrico Date: Tue Sep 1 13:22:39 2015 New Revision: 246568 URL: http://llvm.org/viewvc/llvm-project?rev=246568=rev Log: Add support for language plugins to provide data formatters (second attempt) Historically, data formatters all exist in a global repository (the category map) On top

[Lldb-commits] [lldb] r246558 - Implement DoReadMemory for Windows mini dumps.

2015-09-01 Thread Adrian McCarthy via lldb-commits
Author: amccarth Date: Tue Sep 1 11:59:31 2015 New Revision: 246558 URL: http://llvm.org/viewvc/llvm-project?rev=246558=rev Log: Implement DoReadMemory for Windows mini dumps. Differential Revision: http://reviews.llvm.org/D12507 Modified:

Re: [Lldb-commits] [PATCH] D12515: Use -Wno-vla-extension globally.

2015-09-01 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL246605: Use -Wno-vla-extension globally. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D12515?vs=33660=33755#toc Repository: rL LLVM http://reviews.llvm.org/D12515 Files:

[Lldb-commits] [lldb] r246613 - Use Language::LanguageIsCPlusPlus instead of doing the same switch over language

2015-09-01 Thread Enrico Granata via lldb-commits
Author: enrico Date: Tue Sep 1 20:28:24 2015 New Revision: 246613 URL: http://llvm.org/viewvc/llvm-project?rev=246613=rev Log: Use Language::LanguageIsCPlusPlus instead of doing the same switch over language Modified: lldb/trunk/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp

[Lldb-commits] [lldb] r246614 - Add a Language::ForAllLanguages helper function

2015-09-01 Thread Enrico Granata via lldb-commits
Author: enrico Date: Tue Sep 1 20:31:10 2015 New Revision: 246614 URL: http://llvm.org/viewvc/llvm-project?rev=246614=rev Log: Add a Language::ForAllLanguages helper function Modified: lldb/trunk/include/lldb/Target/Language.h lldb/trunk/source/Target/Language.cpp Modified:

[Lldb-commits] [lldb] r246616 - Move more functionality from the LanguageRuntimes to the Languages.

2015-09-01 Thread Jim Ingham via lldb-commits
Author: jingham Date: Tue Sep 1 20:59:14 2015 New Revision: 246616 URL: http://llvm.org/viewvc/llvm-project?rev=246616=rev Log: Move more functionality from the LanguageRuntimes to the Languages. Modified: lldb/trunk/include/lldb/Target/CPPLanguageRuntime.h

[Lldb-commits] [lldb] r246611 - Move things from the LanguageRuntime that obviously belong in the new Language plugin instead.

2015-09-01 Thread Jim Ingham via lldb-commits
Author: jingham Date: Tue Sep 1 20:06:46 2015 New Revision: 246611 URL: http://llvm.org/viewvc/llvm-project?rev=246611=rev Log: Move things from the LanguageRuntime that obviously belong in the new Language plugin instead. Modified: lldb/trunk/include/lldb/Target/Language.h

[Lldb-commits] [lldb] r246606 - [debugserver] Fix sign comparison warning.

2015-09-01 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Tue Sep 1 18:45:14 2015 New Revision: 246606 URL: http://llvm.org/viewvc/llvm-project?rev=246606=rev Log: [debugserver] Fix sign comparison warning. Summary: Comparing m_page_size against kInvalidPageSize was resulting in a warning about comparing integers with different

[Lldb-commits] [lldb] r246609 - Simplify find_first_of & find_last_of on single char.

2015-09-01 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Tue Sep 1 18:57:17 2015 New Revision: 246609 URL: http://llvm.org/viewvc/llvm-project?rev=246609=rev Log: Simplify find_first_of & find_last_of on single char. Summary: When calling find_first_of and find_last_of on a single character, we can instead just call find / rfind

[Lldb-commits] [lldb] r246612 - Move the functions that FormatManager uses to actually load formatters into their own file

2015-09-01 Thread Enrico Granata via lldb-commits
Author: enrico Date: Tue Sep 1 20:21:31 2015 New Revision: 246612 URL: http://llvm.org/viewvc/llvm-project?rev=246612=rev Log: Move the functions that FormatManager uses to actually load formatters into their own file These are useful helpers over the low-level API of the FormattersContainer,

[Lldb-commits] [lldb] r246578 - Have the Process hold a weak_ptr to the Target.

2015-09-01 Thread Zachary Turner via lldb-commits
Author: zturner Date: Tue Sep 1 15:02:29 2015 New Revision: 246578 URL: http://llvm.org/viewvc/llvm-project?rev=246578=rev Log: Have the Process hold a weak_ptr to the Target. Modified: lldb/trunk/include/lldb/Target/Process.h lldb/trunk/include/lldb/lldb-private-interfaces.h

[Lldb-commits] [lldb] r246597 - std::initializer_list is not safe to return from a function, as copies are not guaranteed to extend the lifetime of the underlying storage

2015-09-01 Thread Enrico Granata via lldb-commits
Author: enrico Date: Tue Sep 1 17:24:35 2015 New Revision: 246597 URL: http://llvm.org/viewvc/llvm-project?rev=246597=rev Log: std::initializer_list is not safe to return from a function, as copies are not guaranteed to extend the lifetime of the underlying storage Modified:

Re: [Lldb-commits] [lldb] r246518 - Attempt at fixing the CMake build

2015-09-01 Thread Pavel Labath via lldb-commits
Hello, the cmake fixes seem fine, but something about your changes broke all libcxx tests, regardless of the build system: osx/xcode: < http://lab.llvm.org:8011/builders/lldb-x86_64-darwin-13.4/builds/5309>, linux/cmake: <

Re: [Lldb-commits] [PATCH] D12356: [MIPS64] Emulate MSA branch instructions

2015-09-01 Thread Tamas Berghammer via lldb-commits
tberghammer accepted this revision. tberghammer added a comment. LGTM Repository: rL LLVM http://reviews.llvm.org/D12356 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] r246536 - Revert "Add support for language plugins to provide data formatters"

2015-09-01 Thread Pavel Labath via lldb-commits
Author: labath Date: Tue Sep 1 04:02:54 2015 New Revision: 246536 URL: http://llvm.org/viewvc/llvm-project?rev=246536=rev Log: Revert "Add support for language plugins to provide data formatters" This reverts r246515 (and related cmake fixes) as it breaks all libcxx tests. Removed:

Re: [Lldb-commits] [PATCH] D12356: [MIPS64] Emulate MSA branch instructions

2015-09-01 Thread Jaydeep Patil via lldb-commits
jaydeep accepted this revision. jaydeep added a comment. This revision is now accepted and ready to land. Looks good to me Repository: rL LLVM http://reviews.llvm.org/D12356 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D12531: Fix tab completion for command arguments containing spaces

2015-09-01 Thread Pavel Labath via lldb-commits
labath added inline comments. Comment at: source/Interpreter/Options.cpp:996 @@ +995,3 @@ +{ +if (c == ' ' || c == '\\') +s.push_back('\\'); If there is any chance quotes will appear here (', ", `), you will need to escape