This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from cfd8550 Revert "Allow the LTO code generator to strip invalid debug i [...] new 5c11935 Make TypeIterator generic so it can iterate symbols too. new a95bc25 [pdb] Parse the module info stream for each module.
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/CVTypeVisitor.h | 20 +-- include/llvm/DebugInfo/CodeView/RecordIterator.h | 116 ++++++++++++++++ include/llvm/DebugInfo/CodeView/SymbolRecord.h | 7 + include/llvm/DebugInfo/CodeView/TypeDumper.h | 2 +- include/llvm/DebugInfo/CodeView/TypeRecord.h | 4 - include/llvm/DebugInfo/CodeView/TypeStream.h | 85 +----------- include/llvm/DebugInfo/PDB/Raw/ByteStream.h | 2 +- include/llvm/DebugInfo/PDB/Raw/ModStream.h | 46 +++++++ lib/DebugInfo/CodeView/TypeDumper.cpp | 2 +- lib/DebugInfo/PDB/CMakeLists.txt | 7 +- lib/DebugInfo/PDB/Raw/ByteStream.cpp | 18 +-- lib/DebugInfo/PDB/Raw/ModStream.cpp | 55 ++++++++ test/DebugInfo/PDB/pdbdump-headers.test | 168 ++++++++++++++++++++++- tools/llvm-pdbdump/llvm-pdbdump.cpp | 44 ++++-- 14 files changed, 449 insertions(+), 127 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/RecordIterator.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/ModStream.h create mode 100644 lib/DebugInfo/PDB/Raw/ModStream.cpp