[Lldb-commits] [lldb] r314856 - updating svn:ignore

2017-10-03 Thread Leonard Mosescu via lldb-commits
Author: lemo Date: Tue Oct 3 15:30:02 2017 New Revision: 314856 URL: http://llvm.org/viewvc/llvm-project?rev=314856&view=rev Log: updating svn:ignore Modified: lldb/trunk/ (props changed) Propchange: lldb/trunk/ -

[Lldb-commits] [PATCH] D36598: cmake + xcode: prevent gtests from using includes from project root

2017-10-03 Thread Tim Hammerquist via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL314849: cmake + xcode: prevent gtests from using includes from project root (authored by penryu). Changed prior to commit: https://reviews.llvm.org/D36598?vs=112052&id=117587#toc Repository: rL LLVM

[Lldb-commits] [lldb] r314849 - cmake + xcode: prevent gtests from using includes from project root

2017-10-03 Thread Tim Hammerquist via lldb-commits
Author: penryu Date: Tue Oct 3 14:20:18 2017 New Revision: 314849 URL: http://llvm.org/viewvc/llvm-project?rev=314849&view=rev Log: cmake + xcode: prevent gtests from using includes from project root Summary: At present, several gtests in the lldb open source codebase are using #include statemen

[Lldb-commits] [PATCH] D38492: [lldb] Fix initialization of m_debug_cu_index_map

2017-10-03 Thread Alexander Shaposhnikov via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL314832: [lldb] Fix initialization of m_debug_cu_index_map (authored by alexshap). Changed prior to commit: https://reviews.llvm.org/D38492?vs=117470&id=117570#toc Repository: rL LLVM https://reviews

[Lldb-commits] [lldb] r314832 - [lldb] Fix initialization of m_debug_cu_index_map

2017-10-03 Thread Alexander Shaposhnikov via lldb-commits
Author: alexshap Date: Tue Oct 3 12:56:21 2017 New Revision: 314832 URL: http://llvm.org/viewvc/llvm-project?rev=314832&view=rev Log: [lldb] Fix initialization of m_debug_cu_index_map SymbolFileDWARFDwp contains m_debug_cu_index_map which was previously initialized incorrectly: before m_debug_c

[Lldb-commits] [PATCH] D38394: Fix dumping of characters with non-standard sizes

2017-10-03 Thread Zachary Turner via Phabricator via lldb-commits
zturner added inline comments. Comment at: source/Utility/DataExtractor.cpp:566 size_t byte_size) const { - switch (byte_size) { - case 1: -return GetU8(offset_ptr); -break; - case 2: -return GetU16(offset_ptr); -break; - cas

[Lldb-commits] [PATCH] D38394: Fix dumping of characters with non-standard sizes

2017-10-03 Thread Jim Ingham via Phabricator via lldb-commits
jingham added a comment. See inlined comments. Comment at: source/Core/DumpDataExtractor.cpp:275-281 + // Reject invalid item_byte_size. + if (item_byte_size > 8) { +s->Printf("error: unsupported byte size (%" PRIu64 ") for char format", + (ui

[Lldb-commits] [PATCH] D38394: Fix dumping of characters with non-standard sizes

2017-10-03 Thread Petr Pavlu via Phabricator via lldb-commits
petpav01 added a comment. Thank you for the initial review. Comment at: source/Core/DumpDataExtractor.cpp:275-281 + // Reject invalid item_byte_size. + if (item_byte_size > 8) { +s->Printf("error: unsupported byte size (%" PRIu64 ") for char format", +

[Lldb-commits] [PATCH] D38323: Enable breakpoints and read/write GPRs for ppc64le

2017-10-03 Thread Alexandre Yukio Yamashita via Phabricator via lldb-commits
alexandreyy added a comment. Are these changes ok? I am implementing the read/write functions for the other registers. And I will add it later. In https://reviews.llvm.org/D38323#883429, @clayborg wrote: > Looks fine. One main questions for new linux archs in particular: is linux > using the ll

[Lldb-commits] [PATCH] D38492: [lldb] Fix initialization of m_debug_cu_index_map

2017-10-03 Thread Tamas Berghammer via Phabricator via lldb-commits
tberghammer accepted this revision. tberghammer added a comment. This revision is now accepted and ready to land. Looks good, thanks for fixing it. I am slightly confused why it was working for me when I tested it before submission but I must have messed up something during testing. Repository