This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 08c98a90f51 Support: Remove MSVC 2013 workarounds in ThreadPool class. new 16e473d50a9 [codeview] Make obj2yaml/yaml2obj support .debug$S/T sections. new 7eef7f8a9b6 Add some #includes to appease the build.
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: .../DebugInfo/CodeView/DebugFrameDataSubsection.h | 1 + .../DebugInfo/CodeView/DebugSubsectionRecord.h | 7 +- .../DebugInfo/CodeView/DebugSubsectionVisitor.h | 80 ++---- .../llvm/DebugInfo/CodeView/StringsAndChecksums.h | 104 +++++++ .../PDB/Native/DbiModuleDescriptorBuilder.h | 2 +- .../DebugInfo/PDB/Native/PDBStringTableBuilder.h | 5 +- include/llvm/ObjectYAML/COFFYAML.h | 4 + .../llvm/ObjectYAML/CodeViewYAMLDebugSections.h | 25 +- include/llvm/ObjectYAML/CodeViewYAMLTypes.h | 3 + lib/DebugInfo/CodeView/CMakeLists.txt | 3 +- .../CodeView/DebugStringTableSubsection.cpp | 5 + lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp | 2 +- lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp | 37 +-- lib/DebugInfo/CodeView/StringsAndChecksums.cpp | 48 ++++ .../PDB/Native/DbiModuleDescriptorBuilder.cpp | 2 +- lib/DebugInfo/PDB/Native/PDBStringTableBuilder.cpp | 5 + lib/ObjectYAML/COFFYAML.cpp | 11 +- lib/ObjectYAML/CodeViewYAMLDebugSections.cpp | 313 ++++++++++----------- lib/ObjectYAML/CodeViewYAMLTypes.cpp | 40 +++ tools/llvm-pdbutil/LLVMOutputStyle.cpp | 27 +- tools/llvm-pdbutil/YAMLOutputStyle.cpp | 7 +- tools/llvm-pdbutil/llvm-pdbutil.cpp | 17 +- tools/obj2yaml/coff2yaml.cpp | 57 ++++ tools/yaml2obj/yaml2coff.cpp | 83 ++++++ 24 files changed, 587 insertions(+), 301 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/StringsAndChecksums.h create mode 100644 lib/DebugInfo/CodeView/StringsAndChecksums.cpp