This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 7d0dde023f8 TargetPassConfig: Keep a reference to an LLVMTargetMachine; NFC new ea64a9b812c [CodeView] Move CodeView YAML code to ObjectYAML.
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/CodeView.h | 14 +- .../{CVSymbolTypes.def => CodeViewSymbols.def} | 0 .../{TypeRecords.def => CodeViewTypes.def} | 0 .../llvm/DebugInfo/CodeView/SymbolDeserializer.h | 2 +- .../llvm/DebugInfo/CodeView/SymbolRecordMapping.h | 2 +- include/llvm/DebugInfo/CodeView/SymbolSerializer.h | 2 +- .../CodeView/SymbolVisitorCallbackPipeline.h | 2 +- .../DebugInfo/CodeView/SymbolVisitorCallbacks.h | 2 +- .../llvm/DebugInfo/CodeView/TypeDatabaseVisitor.h | 2 +- include/llvm/DebugInfo/CodeView/TypeDeserializer.h | 5 +- include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h | 2 +- include/llvm/DebugInfo/CodeView/TypeRecord.h | 36 +- .../llvm/DebugInfo/CodeView/TypeRecordMapping.h | 2 +- include/llvm/DebugInfo/CodeView/TypeSerializer.h | 2 +- include/llvm/DebugInfo/CodeView/TypeTableBuilder.h | 2 +- .../CodeView/TypeVisitorCallbackPipeline.h | 2 +- .../llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h | 6 +- include/llvm/DebugInfo/PDB/Native/RawConstants.h | 1 - include/llvm/DebugInfo/PDB/Native/TpiHashing.h | 2 +- include/llvm/ObjectYAML/CodeViewYAML.h | 141 ++++ include/llvm/Support/YAMLTraits.h | 38 ++ lib/DebugInfo/CodeView/CVSymbolVisitor.cpp | 2 +- lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 4 +- lib/DebugInfo/CodeView/EnumTables.cpp | 4 +- lib/DebugInfo/CodeView/SymbolDumper.cpp | 2 +- lib/DebugInfo/CodeView/TypeDumpVisitor.cpp | 4 +- lib/MC/MCCodeView.cpp | 2 +- lib/ObjectYAML/CMakeLists.txt | 1 + lib/ObjectYAML/CodeViewYAML.cpp | 759 +++++++++++++++++++++ lib/ObjectYAML/LLVMBuild.txt | 2 +- tools/llvm-pdbdump/Analyze.cpp | 2 +- tools/llvm-pdbdump/CMakeLists.txt | 4 +- tools/llvm-pdbdump/CompactTypeDumpVisitor.cpp | 2 +- tools/llvm-pdbdump/PdbYaml.cpp | 180 +---- tools/llvm-pdbdump/PdbYaml.h | 200 +----- tools/llvm-pdbdump/YAMLOutputStyle.cpp | 37 +- tools/llvm-pdbdump/YAMLOutputStyle.h | 2 +- tools/llvm-pdbdump/YamlSerializationContext.h | 39 -- tools/llvm-pdbdump/YamlSymbolDumper.cpp | 3 +- tools/llvm-pdbdump/YamlSymbolDumper.h | 4 +- tools/llvm-pdbdump/YamlTypeDumper.cpp | 589 ---------------- tools/llvm-pdbdump/YamlTypeDumper.h | 116 ---- tools/llvm-pdbdump/llvm-pdbdump.cpp | 16 +- 43 files changed, 1081 insertions(+), 1158 deletions(-) rename include/llvm/DebugInfo/CodeView/{CVSymbolTypes.def => CodeViewSymbols.def} (100%) rename include/llvm/DebugInfo/CodeView/{TypeRecords.def => CodeViewTypes.def} (100%) create mode 100644 include/llvm/ObjectYAML/CodeViewYAML.h create mode 100644 lib/ObjectYAML/CodeViewYAML.cpp delete mode 100644 tools/llvm-pdbdump/YamlSerializationContext.h delete mode 100644 tools/llvm-pdbdump/YamlTypeDumper.cpp delete mode 100644 tools/llvm-pdbdump/YamlTypeDumper.h