This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3beac7c [llvm-cov] Handle native paths correctly in the text index new be73fbc [pdb] Write PDB TPI Stream from Yaml.
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: .../DebugInfo/CodeView/MemoryTypeTableBuilder.h | 8 +- .../llvm/DebugInfo/CodeView/TypeRecordBuilder.h | 3 + .../DebugInfo/CodeView/TypeSerializationVisitor.h | 74 ++++++++++++++ include/llvm/DebugInfo/CodeView/TypeTableBuilder.h | 5 + include/llvm/DebugInfo/MSF/SequencedItemStream.h | 91 +++++++++++++++++ include/llvm/DebugInfo/MSF/StreamArray.h | 1 + include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 2 + include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h | 3 + include/llvm/DebugInfo/PDB/Raw/RawTypes.h | 28 ++++++ include/llvm/DebugInfo/PDB/Raw/TpiStream.h | 4 +- include/llvm/DebugInfo/PDB/Raw/TpiStreamBuilder.h | 76 ++++++++++++++ lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 3 +- lib/CodeGen/AsmPrinter/CodeViewDebug.h | 1 + lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 9 +- lib/DebugInfo/CodeView/TypeRecordBuilder.cpp | 2 +- lib/DebugInfo/CodeView/TypeTableBuilder.cpp | 4 +- lib/DebugInfo/PDB/CMakeLists.txt | 3 +- lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp | 25 +++++ lib/DebugInfo/PDB/Raw/TpiStream.cpp | 109 ++++++++------------- lib/DebugInfo/PDB/Raw/TpiStreamBuilder.cpp | 95 ++++++++++++++++++ test/DebugInfo/PDB/pdbdump-readwrite.test | 15 +-- test/DebugInfo/PDB/pdbdump-write.test | 6 +- tools/llvm-pdbdump/CodeViewYaml.cpp | 41 ++++---- tools/llvm-pdbdump/CodeViewYaml.h | 30 +++--- tools/llvm-pdbdump/PdbYaml.cpp | 63 ++++++++---- tools/llvm-pdbdump/PdbYaml.h | 19 +++- tools/llvm-pdbdump/YAMLOutputStyle.cpp | 3 +- tools/llvm-pdbdump/YamlSerializationContext.h | 36 +++++++ tools/llvm-pdbdump/llvm-pdbdump.cpp | 11 ++- tools/llvm-readobj/llvm-readobj.cpp | 13 ++- 30 files changed, 635 insertions(+), 148 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/TypeSerializationVisitor.h create mode 100644 include/llvm/DebugInfo/MSF/SequencedItemStream.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/TpiStreamBuilder.h create mode 100644 lib/DebugInfo/PDB/Raw/TpiStreamBuilder.cpp create mode 100644 tools/llvm-pdbdump/YamlSerializationContext.h