This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a984fc7 [MC] Handle discardable COFF sections in assembly new a9d16c9 [pdb] Write TPI hash values to the TPI stream. new b5689e7 [pdb] Get rid of Data and RawData in CVType.
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/CVRecord.h | 35 +++++-- include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h | 4 +- include/llvm/DebugInfo/CodeView/CVTypeVisitor.h | 3 +- include/llvm/DebugInfo/CodeView/TypeDeserializer.h | 19 ++-- include/llvm/DebugInfo/CodeView/TypeDumper.h | 15 +-- include/llvm/DebugInfo/CodeView/TypeRecord.h | 5 + .../DebugInfo/CodeView/TypeSerializationVisitor.h | 28 +++--- .../CodeView/TypeVisitorCallbackPipeline.h | 33 +++++-- .../llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h | 26 ++--- include/llvm/DebugInfo/MSF/MSFBuilder.h | 6 +- include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h | 8 +- include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h | 7 +- include/llvm/DebugInfo/PDB/Raw/RawConstants.h | 2 + include/llvm/DebugInfo/PDB/Raw/TpiHashing.h | 90 +++++++++++++++++ include/llvm/DebugInfo/PDB/Raw/TpiStream.h | 2 +- include/llvm/DebugInfo/PDB/Raw/TpiStreamBuilder.h | 16 ++- lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 69 +++++++++---- lib/DebugInfo/CodeView/TypeDumper.cpp | 72 +++++++++----- lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 25 ++--- lib/DebugInfo/MSF/MSFBuilder.cpp | 11 ++- lib/DebugInfo/PDB/CMakeLists.txt | 1 + lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp | 15 ++- lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp | 12 ++- lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp | 15 ++- lib/DebugInfo/PDB/Raw/TpiHashing.cpp | 110 +++++++++++++++++++++ lib/DebugInfo/PDB/Raw/TpiStream.cpp | 96 +----------------- lib/DebugInfo/PDB/Raw/TpiStreamBuilder.cpp | 64 +++++++++++- test/DebugInfo/PDB/pdbdump-readwrite.test | 8 +- test/DebugInfo/PDB/pdbdump-write.test | 4 +- tools/llvm-pdbdump/CodeViewYaml.cpp | 59 +++++++++-- tools/llvm-pdbdump/CodeViewYaml.h | 12 ++- tools/llvm-pdbdump/LLVMOutputStyle.cpp | 6 +- tools/llvm-pdbdump/PdbYaml.cpp | 3 + tools/llvm-pdbdump/PdbYaml.h | 4 + tools/llvm-pdbdump/llvm-pdbdump.cpp | 39 ++------ 35 files changed, 634 insertions(+), 290 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Raw/TpiHashing.h create mode 100644 lib/DebugInfo/PDB/Raw/TpiHashing.cpp