This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 95239b531cd Don't crash if someone tries to visit an empty type stream. new 27f68cfeafa Revert "[CodeView] Provide a common interface for type coll [...]
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/llvm/DebugInfo/CodeView/CVRecord.h | 4 - include/llvm/DebugInfo/CodeView/CVTypeDumper.h | 61 ++++++ include/llvm/DebugInfo/CodeView/CVTypeVisitor.h | 35 +++- ...mTypeCollection.h => RandomAccessTypeVisitor.h} | 45 ++-- include/llvm/DebugInfo/CodeView/SymbolDumper.h | 8 +- include/llvm/DebugInfo/CodeView/TypeCollection.h | 38 ---- include/llvm/DebugInfo/CodeView/TypeDatabase.h | 19 +- include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h | 18 +- include/llvm/DebugInfo/CodeView/TypeIndex.h | 13 -- .../llvm/DebugInfo/CodeView/TypeTableCollection.h | 42 ---- .../llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h | 2 + .../DebugInfo/PDB/Native/PDBTypeServerHandler.h | 1 + lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 40 ++-- lib/DebugInfo/CodeView/CMakeLists.txt | 7 +- lib/DebugInfo/CodeView/CVTypeDumper.cpp | 61 ++++++ lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 190 +++++++---------- .../CodeView/LazyRandomTypeCollection.cpp | 226 --------------------- lib/DebugInfo/CodeView/RandomAccessTypeVisitor.cpp | 89 ++++++++ lib/DebugInfo/CodeView/SymbolDumper.cpp | 13 +- lib/DebugInfo/CodeView/TypeDatabase.cpp | 74 ++----- lib/DebugInfo/CodeView/TypeDumpVisitor.cpp | 13 +- lib/DebugInfo/CodeView/TypeIndex.cpp | 27 --- lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 2 + lib/DebugInfo/CodeView/TypeTableCollection.cpp | 82 -------- lib/DebugInfo/PDB/Native/PDBTypeServerHandler.cpp | 1 - lib/DebugInfo/PDB/Native/TpiStream.cpp | 3 + test/DebugInfo/PDB/pdbdump-headers.test | 4 +- tools/llvm-pdbdump/Analyze.cpp | 1 + tools/llvm-pdbdump/CompactTypeDumpVisitor.cpp | 10 +- tools/llvm-pdbdump/CompactTypeDumpVisitor.h | 8 +- tools/llvm-pdbdump/LLVMOutputStyle.cpp | 120 ++++++----- tools/llvm-pdbdump/LLVMOutputStyle.h | 12 +- tools/llvm-pdbdump/PdbYaml.cpp | 2 + tools/llvm-pdbdump/YAMLOutputStyle.h | 1 + tools/llvm-pdbdump/YamlTypeDumper.cpp | 1 + tools/llvm-pdbdump/llvm-pdbdump.cpp | 3 +- tools/llvm-readobj/COFFDumper.cpp | 58 +++--- .../DebugInfo/CodeView/RandomAccessVisitorTest.cpp | 83 ++++---- 38 files changed, 571 insertions(+), 846 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/CVTypeDumper.h rename include/llvm/DebugInfo/CodeView/{LazyRandomTypeCollection.h => RandomAccess [...] delete mode 100644 include/llvm/DebugInfo/CodeView/TypeCollection.h delete mode 100644 include/llvm/DebugInfo/CodeView/TypeTableCollection.h create mode 100644 lib/DebugInfo/CodeView/CVTypeDumper.cpp delete mode 100644 lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp create mode 100644 lib/DebugInfo/CodeView/RandomAccessTypeVisitor.cpp delete mode 100644 lib/DebugInfo/CodeView/TypeIndex.cpp delete mode 100644 lib/DebugInfo/CodeView/TypeTableCollection.cpp