This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2b704b0e543 AMDGPU: Remove deprecated and unused elf definitions new 11d1678b59b [CodeView] Handle Cross Module Imports and Exports. new 2c2bad997e3 test: fix hexagon 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: include/llvm/DebugInfo/CodeView/CodeView.h | 18 +++ .../DebugInfo/CodeView/DebugCrossExSubsection.h | 64 +++++++++ .../DebugInfo/CodeView/DebugCrossImpSubsection.h | 88 ++++++++++++ .../DebugInfo/CodeView/DebugSubsectionVisitor.h | 12 ++ .../llvm/ObjectYAML/CodeViewYAMLDebugSections.h | 5 + lib/DebugInfo/CodeView/CMakeLists.txt | 10 +- lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp | 49 +++++++ lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp | 91 ++++++++++++ lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp | 2 + lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp | 14 ++ lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp | 4 +- lib/DebugInfo/PDB/Native/PublicsStream.cpp | 10 +- lib/ObjectYAML/CodeViewYAMLDebugSections.cpp | 155 +++++++++++++++++++-- lib/ObjectYAML/CodeViewYAMLSymbols.cpp | 13 ++ .../PDB/Inputs/cross-module-import-export.yaml | 24 ++++ test/DebugInfo/PDB/cross-module-import-export.test | 60 ++++++++ test/Object/objc-imageinfo-coff.ll | 1 + test/Object/objc-imageinfo-elf.ll | 1 + test/Object/objc-imageinfo-macho.ll | 1 + tools/llvm-pdbdump/C13DebugFragmentVisitor.cpp | 32 ++++- tools/llvm-pdbdump/C13DebugFragmentVisitor.h | 10 ++ tools/llvm-pdbdump/LLVMOutputStyle.cpp | 28 ++++ tools/llvm-pdbdump/YAMLOutputStyle.cpp | 1 - 23 files changed, 666 insertions(+), 27 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h create mode 100644 include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h create mode 100644 lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp create mode 100644 lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp create mode 100644 test/DebugInfo/PDB/Inputs/cross-module-import-export.yaml create mode 100644 test/DebugInfo/PDB/cross-module-import-export.test