This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9484675111b [InstCombine] Add tests to demonstrate the miscompile in PR33078. new d32a382ebb8 Resubmit "[CodeView] Provide a common interface for type co [...]
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 +--- ...essTypeVisitor.h => LazyRandomTypeCollection.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 | 41 ++-- lib/DebugInfo/CodeView/CMakeLists.txt | 7 +- lib/DebugInfo/CodeView/CVTypeDumper.cpp | 61 ------ lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 188 ++++++++++------- .../CodeView/LazyRandomTypeCollection.cpp | 229 +++++++++++++++++++++ lib/DebugInfo/CodeView/RandomAccessTypeVisitor.cpp | 89 -------- lib/DebugInfo/CodeView/SymbolDumper.cpp | 13 +- lib/DebugInfo/CodeView/TypeDatabase.cpp | 75 +++++-- lib/DebugInfo/CodeView/TypeDumpVisitor.cpp | 13 +- lib/DebugInfo/CodeView/TypeIndex.cpp | 27 +++ lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 2 - lib/DebugInfo/CodeView/TypeTableCollection.cpp | 83 ++++++++ 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 | 119 +++++------ 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 | 1 + tools/llvm-readobj/COFFDumper.cpp | 58 +++--- .../DebugInfo/CodeView/RandomAccessVisitorTest.cpp | 83 ++++---- 38 files changed, 849 insertions(+), 569 deletions(-) delete mode 100644 include/llvm/DebugInfo/CodeView/CVTypeDumper.h rename include/llvm/DebugInfo/CodeView/{RandomAccessTypeVisitor.h => LazyRandomTyp [...] create mode 100644 include/llvm/DebugInfo/CodeView/TypeCollection.h create mode 100644 include/llvm/DebugInfo/CodeView/TypeTableCollection.h delete mode 100644 lib/DebugInfo/CodeView/CVTypeDumper.cpp create mode 100644 lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp delete mode 100644 lib/DebugInfo/CodeView/RandomAccessTypeVisitor.cpp create mode 100644 lib/DebugInfo/CodeView/TypeIndex.cpp create mode 100644 lib/DebugInfo/CodeView/TypeTableCollection.cpp