This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 80848054d [LLDB] - Simplify. NFC. new 308c757dc Create a SymbolFile plugin for cross-platform PDB access.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/Utility/LLDBAssert.h | 3 +- .../NativePDB/Inputs/breakpoints.lldbinit | 6 + .../NativePDB/Inputs/disassembly.lldbinit | 2 + .../NativePDB/Inputs/source-list.lldbinit | 3 + lit/SymbolFile/NativePDB/disassembly.cpp | 38 ++ lit/SymbolFile/NativePDB/lit.local.cfg | 1 + lit/SymbolFile/NativePDB/simple-breakpoints.cpp | 63 +++ lit/SymbolFile/NativePDB/source-list.cpp | 42 ++ lit/lit.cfg | 5 +- source/Plugins/SymbolFile/CMakeLists.txt | 1 + source/Plugins/SymbolFile/NativePDB/CMakeLists.txt | 16 + .../SymbolFile/NativePDB/CompileUnitIndex.cpp | 229 ++++++++ .../SymbolFile/NativePDB/CompileUnitIndex.h | 99 ++++ source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp | 202 +++++++ source/Plugins/SymbolFile/NativePDB/PdbIndex.h | 161 ++++++ source/Plugins/SymbolFile/NativePDB/PdbSymUid.h | 202 +++++++ source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp | 258 +++++++++ source/Plugins/SymbolFile/NativePDB/PdbUtil.h | 53 ++ .../SymbolFile/NativePDB/SymbolFileNativePDB.cpp | 619 +++++++++++++++++++++ .../SymbolFile/NativePDB/SymbolFileNativePDB.h | 181 ++++++ source/Plugins/SymbolFile/PDB/CMakeLists.txt | 1 + source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp | 26 +- 22 files changed, 2205 insertions(+), 6 deletions(-) create mode 100644 lit/SymbolFile/NativePDB/Inputs/breakpoints.lldbinit create mode 100644 lit/SymbolFile/NativePDB/Inputs/disassembly.lldbinit create mode 100644 lit/SymbolFile/NativePDB/Inputs/source-list.lldbinit create mode 100644 lit/SymbolFile/NativePDB/disassembly.cpp create mode 100644 lit/SymbolFile/NativePDB/lit.local.cfg create mode 100644 lit/SymbolFile/NativePDB/simple-breakpoints.cpp create mode 100644 lit/SymbolFile/NativePDB/source-list.cpp create mode 100644 source/Plugins/SymbolFile/NativePDB/CMakeLists.txt create mode 100644 source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp create mode 100644 source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.h create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbIndex.h create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbSymUid.h create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbUtil.h create mode 100644 source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp create mode 100644 source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h