[Lldb-commits] [lldb] r256067 - [TestCPPAuto] On linux, we need -fno-limit-debug-info.

2015-12-18 Thread Siva Chandra via lldb-commits
Author: sivachandra Date: Fri Dec 18 18:52:29 2015 New Revision: 256067 URL: http://llvm.org/viewvc/llvm-project?rev=256067&view=rev Log: [TestCPPAuto] On linux, we need -fno-limit-debug-info. Summary: Also xfailed for GCC as there is an problem with debug info generation. Reviewers: granata.enr

Re: [Lldb-commits] [PATCH] D15657: [TestCPPAuto] On linux, we need -fno-limit-debug-info.

2015-12-18 Thread Siva Chandra via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL256067: [TestCPPAuto] On linux, we need -fno-limit-debug-info. (authored by sivachandra). Changed prior to commit: http://reviews.llvm.org/D15657?vs=43283&id=43284#toc Repository: rL LLVM http://rev

[Lldb-commits] [PATCH] D15657: [TestCPPAuto] On linux, we need -fno-limit-debug-info.

2015-12-18 Thread Siva Chandra via lldb-commits
sivachandra created this revision. sivachandra added a reviewer: granata.enrico. sivachandra added a subscriber: lldb-commits. Also xfailed for GCC as there is an problem with debug info generation. http://reviews.llvm.org/D15657 Files: packages/Python/lldbsuite/test/lang/cpp/auto/Makefile p

[Lldb-commits] [lldb] r256062 - Xcode: remove --test-subdir test reduction from previous check-in

2015-12-18 Thread Todd Fiala via lldb-commits
Author: tfiala Date: Fri Dec 18 17:22:15 2015 New Revision: 256062 URL: http://llvm.org/viewvc/llvm-project?rev=256062&view=rev Log: Xcode: remove --test-subdir test reduction from previous check-in That was not meant to go in, as it was for testing my last change. Modified: lldb/trunk/lldb.

[Lldb-commits] [lldb] r256059 - Xcode build: pass in vt100 to the Python test runner.

2015-12-18 Thread Todd Fiala via lldb-commits
Author: tfiala Date: Fri Dec 18 17:12:19 2015 New Revision: 256059 URL: http://llvm.org/viewvc/llvm-project?rev=256059&view=rev Log: Xcode build: pass in vt100 to the Python test runner. Some of the Green Dragon tests were failing because they didn't have a TERM set. Modified: lldb/trunk/lld

[Lldb-commits] [lldb] r256053 - __ne__ is the actual Python operator; __neq__ is a typo

2015-12-18 Thread Enrico Granata via lldb-commits
Author: enrico Date: Fri Dec 18 16:46:58 2015 New Revision: 256053 URL: http://llvm.org/viewvc/llvm-project?rev=256053&view=rev Log: __ne__ is the actual Python operator; __neq__ is a typo Modified: lldb/trunk/scripts/Python/python-extensions.swig Modified: lldb/trunk/scripts/Python/python-e

[Lldb-commits] [lldb] r256051 - Add support for seeing through clang::AutoType in ClangASTContext

2015-12-18 Thread Enrico Granata via lldb-commits
Author: enrico Date: Fri Dec 18 16:41:25 2015 New Revision: 256051 URL: http://llvm.org/viewvc/llvm-project?rev=256051&view=rev Log: Add support for seeing through clang::AutoType in ClangASTContext This allows LLDB to deal correctly with expression result variables declared via the C++11 'auto'

[Lldb-commits] [lldb] r256043 - remove xcshareddata exclusion from .gitignore; add desktop and lldb-python-testsuite shared schemes used by Xcode buildbot

2015-12-18 Thread Todd Fiala via lldb-commits
Author: tfiala Date: Fri Dec 18 16:08:24 2015 New Revision: 256043 URL: http://llvm.org/viewvc/llvm-project?rev=256043&view=rev Log: remove xcshareddata exclusion from .gitignore; add desktop and lldb-python-testsuite shared schemes used by Xcode buildbot Added: lldb/trunk/lldb.xcodeproj/xcs

[Lldb-commits] [lldb] r256042 - Turns out, many people define structs named Point that do not share the same names that this formatter uses for fields; use the {} syntax to make it so that a failure t

2015-12-18 Thread Enrico Granata via lldb-commits
Author: enrico Date: Fri Dec 18 16:04:47 2015 New Revision: 256042 URL: http://llvm.org/viewvc/llvm-project?rev=256042&view=rev Log: Turns out, many people define structs named Point that do not share the same names that this formatter uses for fields; use the {} syntax to make it so that a fail

Re: [Lldb-commits] [lldb] r255603 - Fix a bug where language categories would hold on to their caches even after changes

2015-12-18 Thread Enrico Granata via lldb-commits
Adding packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates Adding packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile Adding packages/Python/lldbsuite/test/functionalities/data-formatter/lang

[Lldb-commits] [lldb] r256034 - Add a test case that validates that my change in r255603 does the right thing

2015-12-18 Thread Enrico Granata via lldb-commits
Author: enrico Date: Fri Dec 18 15:35:21 2015 New Revision: 256034 URL: http://llvm.org/viewvc/llvm-project?rev=256034&view=rev Log: Add a test case that validates that my change in r255603 does the right thing Added: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/

[Lldb-commits] [lldb] r256033 - Add API to support retrieving the formatters category for a specific language

2015-12-18 Thread Enrico Granata via lldb-commits
Author: enrico Date: Fri Dec 18 15:25:24 2015 New Revision: 256033 URL: http://llvm.org/viewvc/llvm-project?rev=256033&view=rev Log: Add API to support retrieving the formatters category for a specific language Modified: lldb/trunk/include/lldb/API/SBDebugger.h lldb/trunk/packages/Pytho

[Lldb-commits] [lldb] r256027 - Xcode build: add a lldb-python-test-suite target.

2015-12-18 Thread Todd Fiala via lldb-commits
Author: tfiala Date: Fri Dec 18 14:44:45 2015 New Revision: 256027 URL: http://llvm.org/viewvc/llvm-project?rev=256027&view=rev Log: Xcode build: add a lldb-python-test-suite target. The llvm.org Green Dragon OS X lldb builder will be using this target to run the LLDB Python test suite. Modified

[Lldb-commits] [lldb] r256006 - mark TestGlobalVariables.py as XFAIL on OS X dwarf.

2015-12-18 Thread Todd Fiala via lldb-commits
Author: tfiala Date: Fri Dec 18 12:40:33 2015 New Revision: 256006 URL: http://llvm.org/viewvc/llvm-project?rev=256006&view=rev Log: mark TestGlobalVariables.py as XFAIL on OS X dwarf. tracking bug: https://llvm.org/bugs/show_bug.cgi?id=25872 Modified: lldb/trunk/packages/Python/lldbsuite/t

[Lldb-commits] [lldb] r256000 - Fix the emulation of arm strd instruction

2015-12-18 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Fri Dec 18 09:35:08 2015 New Revision: 256000 URL: http://llvm.org/viewvc/llvm-project?rev=256000&view=rev Log: Fix the emulation of arm strd instruction The incorrect instruction emulation caused issues in the stack unwinding code when strd was used to push 2 register t

Re: [Lldb-commits] [PATCH] D15533: Make the aarch64 lldb-server capable of debugging arm32 applications

2015-12-18 Thread Tamas Berghammer via lldb-commits
tberghammer added a comment. I don't fully understand how the ptrace API works in the aarch64 Linux kernel but based on my experiments the arm specific ptrace calls aren't working (returning -EIO for a reason unknown to me at the moment). Because of this, the current watchpoint implementation i