This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from fcca759d2 [dotest] Make a missing FileCheck binary a warning, not an error new a6f382722 Changing test names in TestDataFormatterLibcxxVariant.py and [...] new deee4ae77 Resubmit "Add SymbolFileNativePDB plugin."
The 2 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 +- .../variant/TestDataFormatterLibcxxVariant.py | 2 +- .../TestStdFunctionStepIntoCallable.py | 2 +- source/Plugins/SymbolFile/CMakeLists.txt | 1 + source/Plugins/SymbolFile/NativePDB/CMakeLists.txt | 16 + .../SymbolFile/NativePDB/CompileUnitIndex.cpp | 227 ++++++++ .../SymbolFile/NativePDB/CompileUnitIndex.h | 99 ++++ source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp | 203 +++++++ 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 | 58 ++ .../SymbolFile/NativePDB/SymbolFileNativePDB.cpp | 620 +++++++++++++++++++++ .../SymbolFile/NativePDB/SymbolFileNativePDB.h | 181 ++++++ source/Plugins/SymbolFile/PDB/CMakeLists.txt | 1 + source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp | 26 +- 24 files changed, 2212 insertions(+), 8 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