[Lldb-commits] [lldb] r310512 - Add remainder of unittests to Xcode project

2017-08-09 Thread Tim Hammerquist via lldb-commits
Author: penryu Date: Wed Aug 9 12:44:18 2017 New Revision: 310512 URL: http://llvm.org/viewvc/llvm-project?rev=310512=rev Log: Add remainder of unittests to Xcode project Resolves a few build settings required to run DWARF tests as well. rdar://problem/33664378 Modified:

[Lldb-commits] [PATCH] D35223: Report inferior SIGSEGV/SIGILL/SIGBUS/SIGFPE as a signal instead of an exception on freebsd

2017-08-09 Thread Ed Maste via Phabricator via lldb-commits
emaste accepted this revision. emaste added a comment. This revision is now accepted and ready to land. Still would appreciate diffs uploaded with full context - i.e., Note that you can upload patches created through various diff tools, including git and svn. To make reviews easier, please

[Lldb-commits] [PATCH] D34776: Make i386-*-freebsd expression work on JIT path

2017-08-09 Thread Ed Maste via Phabricator via lldb-commits
emaste added a comment. I've committed this to FreeBSD's copy of lldb in r322326 . @labath if you're happy with this patch I will commit to lldb for @karnajitw. I'm not sure how the patch ended up with a conflict, but it's just a whitespace issue.

[Lldb-commits] [PATCH] D35784: [LLDB][MIPS] The symbol with NOTYPE doesn't contain any valid address

2017-08-09 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. It would be a good idea to see what this $debug_ranges627 symbol actually is. It seems like a stray linker symbol that wasn't stripped? It would be a good idea to figure out what this symbol is so we can determine how to deal with it correctly.

[Lldb-commits] [PATCH] D35784: [LLDB][MIPS] The symbol with NOTYPE doesn't contain any valid address

2017-08-09 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. I think a better solution is to not give the symbol's address a valid section in the first place. This would be done in ObjectFileELF.cpp when . It doesn't seem like the section is valid because $debug_ranges627 shouldn't have an address that matches something in

[Lldb-commits] [PATCH] D35223: Report inferior SIGSEGV/SIGILL/SIGBUS/SIGFPE as a signal instead of an exception on freebsd

2017-08-09 Thread Karnajit Wangkhem via Phabricator via lldb-commits
karnajitw updated this revision to Diff 110438. karnajitw added a comment. Herald added a subscriber: krytarowski. Updated the diff to include the changes that were required in the test part. Please verify. Repository: rL LLVM https://reviews.llvm.org/D35223 Files:

[Lldb-commits] [PATCH] D36496: Fix VASprintfTest.cpp for Darwin, add checks

2017-08-09 Thread Tim Hammerquist via Phabricator via lldb-commits
penryu added a comment. Committed revision 310499. Closing revision https://reviews.llvm.org/D36496 'Fix VASprintfTest.cpp for Darwin, add checks'... https://reviews.llvm.org/D36496 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [lldb] r310499 - Fix VASprintfTest.cpp for Darwin, add checks

2017-08-09 Thread Tim Hammerquist via lldb-commits
Author: penryu Date: Wed Aug 9 10:27:02 2017 New Revision: 310499 URL: http://llvm.org/viewvc/llvm-project?rev=310499=rev Log: Fix VASprintfTest.cpp for Darwin, add checks Summary: The EncodingError test ensures that trying to encode a multibyte wchar with a given codepage fails. If setlocale()

[Lldb-commits] [PATCH] D35784: [LLDB][MIPS] The symbol with NOTYPE doesn't contain any valid address

2017-08-09 Thread Nitesh Jain via Phabricator via lldb-commits
nitesh.jain updated this revision to Diff 110364. nitesh.jain retitled this revision from "[LLD][MIPS] Fix Address::GetAddressClass() to return correct AddressClass based on the load address" to "[LLDB][MIPS] The symbol with NOTYPE doesn't contain any valid address".

[Lldb-commits] [lldb] r310452 - Expose active and available platform lists via SBDebugger API

2017-08-09 Thread Vadim Macagon via lldb-commits
Author: enlight Date: Wed Aug 9 02:20:40 2017 New Revision: 310452 URL: http://llvm.org/viewvc/llvm-project?rev=310452=rev Log: Expose active and available platform lists via SBDebugger API Summary: The available platform list was previously only accessible via the `platform list` command, this

[Lldb-commits] [PATCH] D35760: Expose active and available platform lists via SBDebugger API

2017-08-09 Thread Vadim Macagon via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL310452: Expose active and available platform lists via SBDebugger API (authored by enlight). Changed prior to commit: https://reviews.llvm.org/D35760?vs=108276=110336#toc Repository: rL LLVM