This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9226f723649 [X86][LWP] Add llvm support for LWP instructions (reapplied). new 6b4b26a1a7c Resubmit r301986 and r301987 "Add codeview::StringTable" new c8e3032271b Create DWARFVerifier.cpp and .h and move all DWARF verifica [...]
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/llvm/DebugInfo/CodeView/StringTable.h | 70 ++++++ include/llvm/DebugInfo/DWARF/DWARFVerifier.h | 49 ++++ include/llvm/DebugInfo/PDB/Native/PDBFile.h | 2 +- include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h | 4 +- include/llvm/DebugInfo/PDB/Native/PDBStringTable.h | 28 ++- .../DebugInfo/PDB/Native/PDBStringTableBuilder.h | 20 +- include/llvm/DebugInfo/PDB/Native/RawTypes.h | 6 +- include/llvm/Support/BinaryStreamReader.h | 4 + include/llvm/Support/BinaryStreamWriter.h | 6 +- lib/DebugInfo/CodeView/CMakeLists.txt | 1 + lib/DebugInfo/CodeView/StringTable.cpp | 65 ++++++ lib/DebugInfo/DWARF/CMakeLists.txt | 1 + lib/DebugInfo/DWARF/DWARFContext.cpp | 15 +- lib/DebugInfo/DWARF/DWARFVerifier.cpp | 252 +++++++++++++++++++++ lib/DebugInfo/PDB/Native/DbiStream.cpp | 2 +- lib/DebugInfo/PDB/Native/PDBFile.cpp | 9 +- lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp | 21 +- lib/DebugInfo/PDB/Native/PDBStringTable.cpp | 94 +++++--- lib/DebugInfo/PDB/Native/PDBStringTableBuilder.cpp | 101 +++++---- lib/Support/BinaryStreamReader.cpp | 13 ++ lib/Support/BinaryStreamWriter.cpp | 13 ++ unittests/DebugInfo/PDB/StringTableBuilderTest.cpp | 4 +- 22 files changed, 663 insertions(+), 117 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/StringTable.h create mode 100644 include/llvm/DebugInfo/DWARF/DWARFVerifier.h create mode 100644 lib/DebugInfo/CodeView/StringTable.cpp create mode 100644 lib/DebugInfo/DWARF/DWARFVerifier.cpp