[Lldb-commits] [PATCH] D56897: Install new LLVM license structure and new developer policy.

2019-01-18 Thread Chandler Carruth via Phabricator via lldb-commits
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was automatically updated to reflect the committed changes. Closed by commit rLLDB351631: Install new LLVM license structure and new developer policy. (authored by chandlerc, committed by ). Herald add

[Lldb-commits] [lldb] r351631 - Install new LLVM license structure and new developer policy.

2019-01-18 Thread Chandler Carruth via lldb-commits
Author: chandlerc Date: Fri Jan 18 22:14:24 2019 New Revision: 351631 URL: http://llvm.org/viewvc/llvm-project?rev=351631&view=rev Log: Install new LLVM license structure and new developer policy. This installs the new developer policy and moves all of the license files across all LLVM projects i

[Lldb-commits] [lldb] r351611 - [dotest] Add logging to investigate CI issue.

2019-01-18 Thread Jonas Devlieghere via lldb-commits
Author: jdevlieghere Date: Fri Jan 18 15:05:19 2019 New Revision: 351611 URL: http://llvm.org/viewvc/llvm-project?rev=351611&view=rev Log: [dotest] Add logging to investigate CI issue. We're seeing an odd issue on GreenDragon's lldb-cmake-matrix. Dotest is unable to move a log file (OSError: [Err

[Lldb-commits] [lldb] r351585 - Add BreakpadRecords to the Xcode project.

2019-01-18 Thread Jim Ingham via lldb-commits
Author: jingham Date: Fri Jan 18 12:20:40 2019 New Revision: 351585 URL: http://llvm.org/viewvc/llvm-project?rev=351585&view=rev Log: Add BreakpadRecords to the Xcode project. Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj URL: http:/

[Lldb-commits] [PATCH] D56844: Breakpad: Extract parsing code into a separate file

2019-01-18 Thread Leonard Mosescu via Phabricator via lldb-commits
lemo added a comment. Looks good. A few questions/suggestions inline. Comment at: lldb/trunk/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp:74 + static_assert(sizeof(data) == 20, ""); + // The textual module id encoding should be between 33 and 40 bytes long, + // de

[Lldb-commits] [lldb] r351564 - Make sure to fill in the compiler register number so when we try to backtrace using EH frame, it works.

2019-01-18 Thread Greg Clayton via lldb-commits
Author: gclayton Date: Fri Jan 18 09:06:01 2019 New Revision: 351564 URL: http://llvm.org/viewvc/llvm-project?rev=351564&view=rev Log: Make sure to fill in the compiler register number so when we try to backtrace using EH frame, it works. Prior to this, backtraces could fail due to not being abl

[Lldb-commits] [PATCH] D55718: [ARC] Basic support in gdb-remote process plugin

2019-01-18 Thread Greg Clayton via Phabricator via lldb-commits
clayborg requested changes to this revision. clayborg added inline comments. This revision now requires changes to proceed. Comment at: include/lldb/Core/Architecture.h:118-127 + static constexpr uint8_t max_features_count = 32u; + virtual std::bitset GetFeatures() const { retu

[Lldb-commits] [PATCH] D55718: [ARC] Basic support in gdb-remote process plugin

2019-01-18 Thread Tatyana Krasnukha via Phabricator via lldb-commits
tatyana-krasnukha updated this revision to Diff 182499. tatyana-krasnukha added a comment. After all, I moved ARC configuring routines to the ArchitechtureArc plug-in. Repository: rLLDB LLDB CHANGES SINCE LAST ACTION https://reviews.llvm.org/D55718/new/ https://reviews.llvm.org/D55718 Fil

[Lldb-commits] [PATCH] D56904: [NativePDB] Process virtual bases in the correct order

2019-01-18 Thread Aleksandr Urakov via Phabricator via lldb-commits
aleksandr.urakov marked 2 inline comments as done. aleksandr.urakov added inline comments. Comment at: lit/SymbolFile/NativePDB/tag-types.cpp:5 // Test that we can display tag types. // RUN: %build --compiler=clang-cl --nodefaultlib -o %t.exe -- %s // RUN: env LLDB_USE_NATIVE

[Lldb-commits] [PATCH] D56904: [NativePDB] Process virtual bases in the correct order

2019-01-18 Thread Aleksandr Urakov via Phabricator via lldb-commits
aleksandr.urakov created this revision. aleksandr.urakov added reviewers: zturner, rnk, stella.stamenova. aleksandr.urakov added a project: LLDB. Herald added subscribers: lldb-commits, teemperor, abidh. This patch makes virtual bases to be added in the correct order to the bases list. It is impo

[Lldb-commits] [PATCH] D56844: Breakpad: Extract parsing code into a separate file

2019-01-18 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL351541: Breakpad: Extract parsing code into a separate file (authored by labath, committed by ). Herald added a subscriber: llvm-commits. Repository: rL LLVM CHANGES SINCE LAST ACTION https://reviews

[Lldb-commits] [lldb] r351541 - Breakpad: Extract parsing code into a separate file

2019-01-18 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Jan 18 02:37:04 2019 New Revision: 351541 URL: http://llvm.org/viewvc/llvm-project?rev=351541&view=rev Log: Breakpad: Extract parsing code into a separate file Summary: This centralizes parsing of breakpad records, which was previously spread out over ObjectFileBreakpad a